diff --git a/edamfu/edamfu/__init__.py b/edamfu/edamfu/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/edamfu/edamfu/cli.py b/edamfu/edamfu/cli.py new file mode 100644 index 0000000..e69de29 diff --git a/edamfu/edamfu/core.py b/edamfu/edamfu/core.py new file mode 100644 index 0000000..efbb003 --- /dev/null +++ b/edamfu/edamfu/core.py @@ -0,0 +1,23 @@ +import shutil +import tempfile + +from edamfu.tree import reorder_root, add_comments + +from edamfu.utils import ( + escape_irrelevant_xml_entities_in_text, + unescape_irrelevant_xml_entities_in_text, + prettify_xml, +) + + +def reformat(input_file_path, output_file_path): + temp_edam_file = tempfile.NamedTemporaryFile(delete=False) + temp_edam_file.close() + shutil.copy2(input_file_path, temp_edam_file.name) + escape_irrelevant_xml_entities_in_text(temp_edam_file.name) + reorder_root(temp_edam_file.name) + add_comments(temp_edam_file.name) + unescape_irrelevant_xml_entities_in_text(temp_edam_file.name) + prettify_xml(temp_edam_file.name) + shutil.copy2(temp_edam_file.name, output_file_path) + return output_file_path diff --git a/edamfu/edamfu/reorder.py b/edamfu/edamfu/reorder.py new file mode 100644 index 0000000..6cc9d7f --- /dev/null +++ b/edamfu/edamfu/reorder.py @@ -0,0 +1,11 @@ +import shutil +from edamfu.core import reformat + +# Input file: +xml_file_path = ( + "/home/hmenager/edamfu/tests/EDAM_dev.owl" # Replace with the path to your XML file +) +# Processed file +sorted_path = "/home/hmenager/edamfu/tests/EDAM_dev.processed.owl" + +reformat(xml_file_path, sorted_path) diff --git a/edamfu/edamfu/reorder_lxml.py b/edamfu/edamfu/reorder_lxml.py new file mode 100644 index 0000000..81109c4 --- /dev/null +++ b/edamfu/edamfu/reorder_lxml.py @@ -0,0 +1,122 @@ +from lxml import etree +import re +from copy import copy + +def get_element_sort_key(elem, order_mapping): + first_key = order_mapping.get(elem.tag, {}).get("element_order", 0) + if elem.tag == "{http://www.w3.org/2002/07/owl#}Class": + secondary_key = elem.get("{http://www.w3.org/1999/02/22-rdf-syntax-ns#}about") + elif elem.tag == "{http://www.w3.org/2002/07/owl#}Axiom": + annotated_source = elem.find("{http://www.w3.org/2002/07/owl#}annotatedSource") + secondary_key = annotated_source.get("{http://www.w3.org/1999/02/22-rdf-syntax-ns#}resource") if annotated_source is not None else "zzz" + else: + secondary_key = "zzz" + return (first_key, secondary_key) + + +## A +## C +## C1 +## C2 +## B +## B1 +## B2 +def reorder_elements(element, order_mapping): + ## element=A + sorted_elements = sorted(element, key=lambda elem: get_element_sort_key(elem, order_mapping)) + ## element=A, sorted_elements=[B,C] + new_element = etree.Element(element.tag, attrib=element.attrib) + if element.text: + new_element.text = etree.CDATA(element.text) + for child in sorted_elements: + child = reorder_elements(child, order_mapping) + new_element.extend(sorted_elements) + print(new_element.tag, len(new_element.getchildren())) + ontology = new_element.iter("{http://www.w3.org/2002/07/owl#}Ontology") + return new_element + +def add_comments(xml_file_path): + tree = etree.parse(xml_file_path) + root = tree.getroot() + for class_element in root.findall("{http://www.w3.org/2002/07/owl#}*"): + class_uri = class_element.get("{http://www.w3.org/1999/02/22-rdf-syntax-ns#}about") + root.insert(list(root).index(class_element), etree.Comment(f" {class_uri} ")) + with open(xml_file_path, "wb") as f: + tree.write(f, encoding="utf-8", xml_declaration=True) + print(f"Comments added to '{xml_file_path}'.") + + +def reorder_root(xml_file_path, order_mapping, namespaces): + # etree.register_namespace(None, "http://edamontology.org/") + # etree.register_namespace("dc", "http://purl.org/dc/elements/1.1/") + # etree.register_namespace("dcterms", "http://purl.org/dc/terms/") + # etree.register_namespace("owl", "http://www.w3.org/2002/07/owl#") + # etree.register_namespace("rdf", "http://www.w3.org/1999/02/22-rdf-syntax-ns#") + # etree.register_namespace("skos", "http://www.w3.org/2004/02/skos/core#") + # etree.register_namespace("xml", "http://www.w3.org/XML/1998/namespace") + # etree.register_namespace("xsd", "http://www.w3.org/2001/XMLSchema#") + # etree.register_namespace("doap", "http://usefulinc.com/ns/doap#") + # etree.register_namespace("foaf", "http://xmlns.com/foaf/0.1/") + # etree.register_namespace("rdfs", "http://www.w3.org/2000/01/rdf-schema#") + # etree.register_namespace("oboInOwl", "http://www.geneontology.org/formats/oboInOwl#") + # etree.register_namespace("oboLegacy", "http://purl.obolibrary.org/obo/") + + tree = etree.parse(xml_file_path, parser=etree.XMLParser(resolve_entities=False, remove_comments=True)) + root = tree.getroot() + etree.strip_elements(root, etree.Comment, with_tail=True) + new_root = reorder_elements(root, order_mapping) + ontology = new_root.iter("{http://www.w3.org/2002/07/owl#}Ontology") + for el in ontology: + print("##", el) + + #escape_special_characters(new_root) + + sorted_path = "/home/hmenager/edamfu/tests/EDAM_dev.sorted-lxml.owl" + + with open(sorted_path, "wb") as f: + f.write(etree.tostring(new_root, xml_declaration=True)) + + print(f"XML elements reordered and saved to '{sorted_path}'.") + return sorted_path + +def prettify_xml(file_path): + with open(file_path, 'r') as file: + file_content = file.read() + modified_content = file_content.replace('" />', '"/>') + modified_content = modified_content.replace('--><', '-->\n\n <') + modified_content = modified_content.replace('>\n \n\n\n \n\n +""" + + +OBJECT_PROPERTY_COMMENT = """ + + + + +""" + +CLASSES_COMMENT = """ + + + + +""" + + +def escape_irrelevant_xml_entities_in_text(file_path): + """ + Escapes "legacy" XML entities in the text of the file + This is useful to avoid adding differences due to the automated conversion + of these entities by the XML parser + Note: this function must be called before the XML file is parsed, and once + the processing is done, `unescape_irrelevant_xml_entities_in_text` must be + call to revert the temporary changes + :param file_path: the path to the file to process + """ + with open(file_path, "r") as file: + file_content = file.read() + for entity, replacement in IRRELEVANT_ENTITIES_DICT.items(): + file_content = file_content.replace(entity, replacement) + with open(file_path, "w") as file: + file.write(file_content) + + +def unescape_irrelevant_xml_entities_in_text(file_path): + """ + Reverse function to unescapes "legacy" XML entities in the text of the file, + see `escape_irrelevant_xml_entities_in_text` for more details. + :param file_path: the path to the file to process + """ + with open(file_path, "r") as file: + file_content = file.read() + for entity, replacement in REVERSED_IRRELEVANT_ENTITIES_DICT.items(): + file_content = file_content.replace(entity, replacement) + with open(file_path, "w") as file: + file.write(file_content) + + +def add_after_last(s, old, new): + pattern = re.compile(old, re.DOTALL) + matches = pattern.findall(s) + if matches: + li = s.rsplit(matches[-1], 1) + new_s = matches[-1] + new + return new_s.join(li) + + +def prettify_xml(file_path): + """ + Adjust spaces in the file to follow EDAM source "conventions" + :param file_path: the path to the file to process + """ + with open(file_path, "r") as file: + file_content = file.read() + # no trailing whitespaces at the end of an element's attributes list + modified_content = file_content.replace('" />', '"/>') + # normalize line breaks after an element comment + modified_content = modified_content.replace("--><", "-->\n\n <") + # normalize line breaks before an element comment + modified_content = modified_content.replace(">\n \n", + "\n", + " \n", + " \n", + " beta12orEarlier\n", + " beta12orEarlier\n", + " \n", + " A bioinformatics package or tool, e.g. a standalone application or web service.\n", + " \n", + " \n", + " Tool\n", + " true\n", + " \n", + " \n", + "\n", + "\n", + " \n", + "\n", + " \n", + " \n", + " beta12orEarlier\n", + " beta12orEarlier\n", + " \n", + " A digital data archive typically based around a relational model but sometimes using an object-oriented, tree or graph-based model.\n", + " \n", + " \n", + " Database\n", + " true\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "\"\"\"" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "b7e77467-4816-4447-8828-a88d05adfce0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\t\n", + " \n", + "\t\n", + "\t\t\n", + " \n", + "\t\t\n", + "\t\t\n", + " \n", + "\t\t\n", + "\t\t\n", + " \n", + "\t\tbeta12orEarlier\n", + "\t\t\n", + " \n", + "\t\tbeta12orEarlier\n", + "\t\t\n", + " \n", + "\t\t\n", + "\t\t\n", + " \n", + "\t\tA digital data archive typically based around a relational model but sometimes using an object-oriented, tree or graph-based model.\n", + "\t\t\n", + " \n", + "\t\t\n", + "\t\t\n", + " \n", + "\t\t\n", + "\t\t\n", + " \n", + "\t\tDatabase\n", + "\t\t\n", + " \n", + "\t\ttrue\n", + "\t\t\n", + " \n", + "\t\n", + "\t\n", + " \n", + "\t\n", + "\t\t\n", + " \n", + "\t\t\n", + "\t\t\n", + " \n", + "\t\t\n", + "\t\t\n", + " \n", + "\t\tbeta12orEarlier\n", + "\t\t\n", + " \n", + "\t\tbeta12orEarlier\n", + "\t\t\n", + " \n", + "\t\t\n", + "\t\t\n", + " \n", + "\t\tA bioinformatics package or tool, e.g. a standalone application or web service.\n", + "\t\t\n", + " \n", + "\t\t\n", + "\t\t\n", + " \n", + "\t\t\n", + "\t\t\n", + " \n", + "\t\tTool\n", + "\t\t\n", + " \n", + "\t\ttrue\n", + "\t\t\n", + " \n", + "\t\n", + "\t\n", + " \n", + "\t\n", + "\t\t\n", + " \n", + "\t\t\n", + "\t\t\n", + " \n", + "\t\n", + "\t\n", + "\n", + "\n", + "\n" + ] + } + ], + "source": [ + "from rdflib import Graph, URIRef, RDF, OWL, Namespace\n", + "\n", + "from rdflib.plugins.serializers.rdfxml import XMLSerializer\n", + "\n", + "from io import BytesIO\n", + "\n", + "import xml.dom.minidom\n", + "\n", + "def create_owl_elements(input_owl_string):\n", + " try:\n", + " # Define custom namespace prefixes\n", + " edam_namespace = Namespace(\"http://edamontology.org/\")\n", + " dc_namespace = Namespace(\"http://purl.org/dc/elements/1.1/\")\n", + " dcterms_namespace = Namespace(\"http://purl.org/dc/terms/\")\n", + " owl_namespace = Namespace(\"http://www.w3.org/2002/07/owl#\")\n", + " rdf_namespace = Namespace(\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\")\n", + " skos_namespace = Namespace(\"http://www.w3.org/2004/02/skos/core#\")\n", + " xml_namespace = Namespace(\"http://www.w3.org/XML/1998/namespace\")\n", + " xsd_namespace = Namespace(\"http://www.w3.org/2001/XMLSchema#\")\n", + " doap_namespace = Namespace(\"http://usefulinc.com/ns/doap#\")\n", + " foaf_namespace = Namespace(\"http://xmlns.com/foaf/0.1/\")\n", + " rdfs_namespace = Namespace(\"http://www.w3.org/2000/01/rdf-schema#\")\n", + " oboInOwl_namespace = Namespace(\"http://www.geneontology.org/formats/oboInOwl#\")\n", + " oboLegacy_namespace = Namespace(\"http://purl.obolibrary.org/obo/\")\n", + "\n", + " # Load the RDF graph from the input string with explicit namespaces\n", + " namespaces = {\n", + " \"\": edam_namespace,\n", + " \"dc\": dc_namespace,\n", + " \"dcterms\": dcterms_namespace,\n", + " \"owl\": owl_namespace,\n", + " \"rdf\": rdf_namespace,\n", + " \"skos\": skos_namespace,\n", + " \"xml\": xml_namespace,\n", + " \"xsd\": xsd_namespace,\n", + " \"doap\": doap_namespace,\n", + " \"foaf\": foaf_namespace,\n", + " \"rdfs\": rdfs_namespace,\n", + " \"oboInOwl\": oboInOwl_namespace,\n", + " \"oboLegacy\": oboLegacy_namespace, \n", + " }\n", + " graph = Graph()\n", + " graph.parse(data=input_owl_string, format=\"xml\", namespaces=namespaces)\n", + "\n", + "\n", + " # Create a new graph for the result\n", + " result_graph = Graph()\n", + " # Replace namespace prefixes in the result graph to use the \"canonical\" ones\n", + " for prefix, namespace in namespaces.items():\n", + " result_graph.bind(prefix, namespace, replace=True)\n", + "\n", + " # Iterate through each class in the input graph\n", + " for class_uri in graph.subjects(RDF.type, OWL.Class):\n", + " class_element = URIRef(class_uri)\n", + "\n", + " # Add owl:Class triple\n", + " result_graph.add((class_element, RDF.type, OWL.Class))\n", + "\n", + " # Add other properties to the owl:Class element\n", + " for triple in graph.triples((class_uri, None, None)):\n", + " result_graph.add((class_element, triple[1], triple[2]))\n", + "\n", + " # Create an XMLSerializer instance\n", + " serializer = XMLSerializer(result_graph)\n", + "\n", + " # Use BytesIO to create an in-memory file-like object for bytes\n", + " stream = BytesIO()\n", + "\n", + " # Serialize the modified graph to the in-memory stream\n", + " serializer.serialize(stream)\n", + "\n", + " # Get the resulting string from the stream\n", + " result_string = xml.dom.minidom.parseString(stream.getvalue()).toprettyxml()\n", + " \n", + " return result_string\n", + "\n", + " except Exception as e:\n", + " print(f\"An error occurred: {e}\")\n", + " return None\n", + "\n", + "# Perform reformatting and get the resulting OWL string\n", + "result_owl_string = create_owl_elements(input_owl_string)\n", + "\n", + "if result_owl_string is not None:\n", + " print(result_owl_string)\n", + "else:\n", + " print(\"Error processing OWL data.\")\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "78f33183-ee5d-4e7e-8329-79b0f6388e2b", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/edamfu/requirements.txt b/edamfu/requirements.txt new file mode 100644 index 0000000..bbbc5e5 --- /dev/null +++ b/edamfu/requirements.txt @@ -0,0 +1,99 @@ +anyio==4.2.0 +argon2-cffi==23.1.0 +argon2-cffi-bindings==21.2.0 +arrow==1.3.0 +asttokens==2.4.1 +async-lru==2.0.4 +attrs==23.2.0 +Babel==2.14.0 +beautifulsoup4==4.12.3 +bleach==6.1.0 +certifi==2024.2.2 +cffi==1.16.0 +charset-normalizer==3.3.2 +comm==0.2.1 +debugpy==1.8.0 +decorator==5.1.1 +defusedxml==0.7.1 +executing==2.0.1 +fastjsonschema==2.19.1 +fqdn==1.5.1 +h11==0.14.0 +httpcore==1.0.2 +httpx==0.26.0 +idna==3.6 +ipykernel==6.29.2 +ipython==8.21.0 +ipywidgets==8.1.1 +isodate==0.6.1 +isoduration==20.11.0 +jedi==0.19.1 +Jinja2==3.1.3 +json5==0.9.14 +jsonpointer==2.4 +jsonschema==4.21.1 +jsonschema-specifications==2023.12.1 +jupyter==1.0.0 +jupyter-console==6.6.3 +jupyter-events==0.9.0 +jupyter-lsp==2.2.2 +jupyter_client==8.6.0 +jupyter_core==5.7.1 +jupyter_server==2.12.5 +jupyter_server_terminals==0.5.2 +jupyterlab==4.1.0 +jupyterlab-widgets==3.0.9 +jupyterlab_pygments==0.3.0 +jupyterlab_server==2.25.2 +MarkupSafe==2.1.5 +matplotlib-inline==0.1.6 +mistune==3.0.2 +nbclient==0.9.0 +nbconvert==7.16.0 +nbformat==5.9.2 +nest-asyncio==1.6.0 +notebook==7.0.7 +notebook_shim==0.2.3 +overrides==7.7.0 +packaging==23.2 +pandocfilters==1.5.1 +parso==0.8.3 +pexpect==4.9.0 +platformdirs==4.2.0 +prometheus-client==0.19.0 +prompt-toolkit==3.0.43 +psutil==5.9.8 +ptyprocess==0.7.0 +pure-eval==0.2.2 +pycparser==2.21 +Pygments==2.17.2 +pyparsing==3.1.1 +python-dateutil==2.8.2 +python-json-logger==2.0.7 +PyYAML==6.0.1 +pyzmq==25.1.2 +qtconsole==5.5.1 +QtPy==2.4.1 +rdflib==7.0.0 +referencing==0.33.0 +requests==2.31.0 +rfc3339-validator==0.1.4 +rfc3986-validator==0.1.1 +rpds-py==0.17.1 +Send2Trash==1.8.2 +six==1.16.0 +sniffio==1.3.0 +soupsieve==2.5 +stack-data==0.6.3 +terminado==0.18.0 +tinycss2==1.2.1 +tornado==6.4 +traitlets==5.14.1 +types-python-dateutil==2.8.19.20240106 +uri-template==1.3.0 +urllib3==2.2.0 +wcwidth==0.2.13 +webcolors==1.13 +webencodings==0.5.1 +websocket-client==1.7.0 +widgetsnbextension==4.0.9 diff --git a/edamfu/setup.py b/edamfu/setup.py new file mode 100644 index 0000000..34c0b4c --- /dev/null +++ b/edamfu/setup.py @@ -0,0 +1,20 @@ +from setuptools import setup, find_packages + +setup( + name='edamfu', + version='1.0.0', + author='Your Name', + author_email='your_email@example.com', + description='A Python module for working with edamfu', + packages=['edamfu'], + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + ], +) diff --git a/edamfu/tests/EDAM_dev.owl b/edamfu/tests/EDAM_dev.owl new file mode 100644 index 0000000..012e3c5 --- /dev/null +++ b/edamfu/tests/EDAM_dev.owl @@ -0,0 +1,60979 @@ + + + + 4040 + 03.10.2023 11:14 UTC + EDAM http://edamontology.org/ "EDAM relations, concept properties, and subsets" + EDAM_data http://edamontology.org/data_ "EDAM types of data" + EDAM_format http://edamontology.org/format_ "EDAM data formats" + EDAM_operation http://edamontology.org/operation_ "EDAM operations" + EDAM_topic http://edamontology.org/topic_ "EDAM topics" + EDAM is particularly suitable for semantic annotations and categorisation of diverse resources related to data analysis and management: e.g. tools, workflows, learning materials, or standards. EDAM is also useful in data management itself, for recording provenance metadata of processed data. + EDAM is a community project and its development can be followed and contributed to at https://github.com/edamontology/edamontology. + https://github.com/edamontology/edamontology/graphs/contributors and many more! + Hervé Ménager + Jon Ison + Matúš Kalaš + application/rdf+xml + + + + EDAM - The ontology of data analysis and management + EDAM is a domain ontology of data analysis and data management in bio- and other sciences, and science-based applications. It comprises concepts related to analysis, modelling, optimisation, and data life-cycle. Targetting usability by diverse users, the structure of EDAM is relatively simple, divided into 4 main sections: Topic, Operation, Data (incl. Identifier), and Format. + 1.26_dev + + + + + + + + + + + Matúš Kalaš + + + + + + + + + + + + + + + + + + 1.13 + true + Publication reference + 'Citation' concept property ('citation' metadata tag) contains a dereferenceable URI, preferably including a DOI, pointing to a citeable publication of the given data format. + Publication + + Citation + + + + + + + + + + + + + + true + Version in which a concept was created. + + Created in + + + + + + + + true + A comment explaining why the comment should be or was deprecated, including name of person commenting (jison, mkalas etc.). + + deprecation_comment + + + + + + + + true + 'Documentation' trailing modifier (qualifier, 'documentation') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to a page with explanation, description, documentation, or specification of the given data format. + Specification + + Documentation + + + + + + + + true + 'Example' concept property ('example' metadata tag) lists examples of valid values of types of identifiers (accessions). Applicable to some other types of data, too. + + Separated by bar ('|'). For more complex data and data formats, it can be a link to a website with examples, instead. + Example + + + + + + + + true + 'File extension' concept property ('file_extension' metadata tag) lists examples of usual file extensions of formats. + + N.B.: File extensions that are not correspondigly defined at http://filext.com are recorded in EDAM only if not in conflict with http://filext.com, and/or unique and usual within life-science computing. + Separated by bar ('|'), without a dot ('.') prefix, preferably not all capital characters. + File extension + + + + + + + + true + "Supported by the given data format" here means, that the given format enables representation of data that satisfies the information standard. + 'Information standard' trailing modifier (qualifier, 'information_standard') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to an information standard supported by the given data format. + Minimum information checklist + Minimum information standard + + Information standard + + + + + + + + true + When 'true', the concept has been proposed to be deprecated. + + deprecation_candidate + + + + + + + + true + When 'true', the concept has been proposed to be refactored. + + refactor_candidate + + + + + + + + true + When 'true', the concept has been proposed or is supported within Debian as a tag. + + isdebtag + + + + + + + + true + 'Media type' trailing modifier (qualifier, 'media_type') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to a page specifying a media type of the given data format. + MIME type + + Media type + + + + + + + + + + + + + + true + Whether terms associated with this concept are recommended for use in annotation. + + notRecommendedForAnnotation + + + + + + + + true + Version in which a concept was made obsolete. + + Obsolete since + + + + + + + + true + EDAM concept URI of the erstwhile "parent" of a now deprecated concept. + + Old parent + + + + + + + + true + EDAM concept URI of an erstwhile related concept (by has_input, has_output, has_topic, is_format_of, etc.) of a now deprecated concept. + + Old related + + + + + + + + true + 'Ontology used' concept property ('ontology_used' metadata tag) of format concepts links to a domain ontology that is used inside the given data format, or contains a note about ontology use within the format. + + Ontology used + + + + + + + + true + 'Organisation' trailing modifier (qualifier, 'organisation') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to an organisation that developed, standardised, and maintains the given data format. + Organization + + Organisation + + + + + + + + true + A comment explaining the proposed refactoring, including name of person commenting (jison, mkalas etc.). + + refactor_comment + + + + + + + + true + 'Regular expression' concept property ('regex' metadata tag) specifies the allowed values of types of identifiers (accessions). Applicable to some other types of data, too. + + Regular expression + + + + + + + + Related term + + 'Related term' concept property ('related_term'; supposedly a synonym modifier in OBO format) states a related term - not necessarily closely semantically related - that users (also non-specialists) may use when searching. + + + + + + + + + true + 'Repository' trailing modifier (qualifier, 'repository') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to the public source-code repository where the given data format is developed or maintained. + Public repository + Source-code repository + + Repository + + + + + + + + true + Name of thematic editor (http://biotools.readthedocs.io/en/latest/governance.html#registry-editors) responsible for this concept and its children. + + thematic_editor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_format B' defines for the subject A, that it has the object B as its data format. + + false + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is (or is in a role of) 'Data', or an input, output, input or output argument of an 'Operation'. Object B can either be a concept that is a 'Format', or in unexpected cases an entity outside of an ontology that is a 'Format' or is in the role of a 'Format'. In EDAM, 'has_format' is not explicitly defined between EDAM concepts, only the inverse 'is_format_of'. + has format + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_function B' defines for the subject A, that it has the object B as its function. + OBO_REL:bearer_of + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is (or is in a role of) a function, or an entity outside of an ontology that is (or is in a role of) a function specification. In the scope of EDAM, 'has_function' serves only for relating annotated entities outside of EDAM with 'Operation' concepts. + has function + + + + + + + + OBO_REL:bearer_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:bearer_of' is narrower in the sense that it only relates ontological categories (concepts) that are an 'independent_continuant' (snap:IndependentContinuant) with ontological categories that are a 'specifically_dependent_continuant' (snap:SpecificallyDependentContinuant), and broader in the sense that it relates with any borne objects not just functions of the subject. + + + + + true + In very unusual cases. + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_identifier B' defines for the subject A, that it has the object B as its identifier. + + false + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is an 'Identifier', or an entity outside of an ontology that is an 'Identifier' or is in the role of an 'Identifier'. In EDAM, 'has_identifier' is not explicitly defined between EDAM concepts, only the inverse 'is_identifier_of'. + has identifier + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_input B' defines for the subject A, that it has the object B as a necessary or actual input or input argument. + OBO_REL:has_participant + + true + Subject A can either be concept that is or has an 'Operation' function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that has an 'Operation' function or is an 'Operation'. Object B can be any concept or entity. In EDAM, only 'has_input' is explicitly defined between EDAM concepts ('Operation' 'has_input' 'Data'). The inverse, 'is_input_of', is not explicitly defined. + has input + + + + + + + OBO_REL:has_participant + 'OBO_REL:has_participant' is narrower in the sense that it only relates ontological categories (concepts) that are a 'process' (span:Process) with ontological categories that are a 'continuant' (snap:Continuant), and broader in the sense that it relates with any participating objects not just inputs or input arguments of the subject. + + + + + true + In very unusual cases. + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_output B' defines for the subject A, that it has the object B as a necessary or actual output or output argument. + OBO_REL:has_participant + + true + Subject A can either be concept that is or has an 'Operation' function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that has an 'Operation' function or is an 'Operation'. Object B can be any concept or entity. In EDAM, only 'has_output' is explicitly defined between EDAM concepts ('Operation' 'has_output' 'Data'). The inverse, 'is_output_of', is not explicitly defined. + has output + + + + + + + OBO_REL:has_participant + 'OBO_REL:has_participant' is narrower in the sense that it only relates ontological categories (concepts) that are a 'process' (span:Process) with ontological categories that are a 'continuant' (snap:Continuant), and broader in the sense that it relates with any participating objects not just outputs or output arguments of the subject. It is also not clear whether an output (result) actually participates in the process that generates it. + + + + + true + In very unusual cases. + + + + + + + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_topic B' defines for the subject A, that it has the object B as its topic (A is in the scope of a topic B). + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is a 'Topic', or in unexpected cases an entity outside of an ontology that is a 'Topic' or is in the role of a 'Topic'. In EDAM, only 'has_topic' is explicitly defined between EDAM concepts ('Operation' or 'Data' 'has_topic' 'Topic'). The inverse, 'is_topic_of', is not explicitly defined. + has topic + + + + + + + + + true + In very unusual cases. + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_format_of B' defines for the subject A, that it is a data format of the object B. + OBO_REL:quality_of + + false + Subject A can either be a concept that is a 'Format', or in unexpected cases an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is a 'Format' or is in the role of a 'Format'. Object B can be any concept or entity outside of an ontology that is (or is in a role of) 'Data', or an input, output, input or output argument of an 'Operation'. In EDAM, only 'is_format_of' is explicitly defined between EDAM concepts ('Format' 'is_format_of' 'Data'). The inverse, 'has_format', is not explicitly defined. + is format of + + + + + + OBO_REL:quality_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:quality_of' might be seen narrower in the sense that it only relates subjects that are a 'quality' (snap:Quality) with objects that are an 'independent_continuant' (snap:IndependentContinuant), and is broader in the sense that it relates any qualities of the object. + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_function_of B' defines for the subject A, that it is a function of the object B. + OBO_REL:function_of + OBO_REL:inheres_in + + true + Subject A can either be concept that is (or is in a role of) a function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is (or is in a role of) a function specification. Object B can be any concept or entity. Within EDAM itself, 'is_function_of' is not used. + is function of + + + + + + + OBO_REL:function_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:function_of' only relates subjects that are a 'function' (snap:Function) with objects that are an 'independent_continuant' (snap:IndependentContinuant), so for example no processes. It does not define explicitly that the subject is a function of the object. + + + + + OBO_REL:inheres_in + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:inheres_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'specifically_dependent_continuant' (snap:SpecificallyDependentContinuant) with ontological categories that are an 'independent_continuant' (snap:IndependentContinuant), and broader in the sense that it relates any borne subjects not just functions. + + + + + true + In very unusual cases. + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_identifier_of B' defines for the subject A, that it is an identifier of the object B. + + false + Subject A can either be a concept that is an 'Identifier', or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is an 'Identifier' or is in the role of an 'Identifier'. Object B can be any concept or entity outside of an ontology. In EDAM, only 'is_identifier_of' is explicitly defined between EDAM concepts (only 'Identifier' 'is_identifier_of' 'Data'). The inverse, 'has_identifier', is not explicitly defined. + is identifier of + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_input_of B' defines for the subject A, that it as a necessary or actual input or input argument of the object B. + OBO_REL:participates_in + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is or has an 'Operation' function, or an entity outside of an ontology that has an 'Operation' function or is an 'Operation'. In EDAM, 'is_input_of' is not explicitly defined between EDAM concepts, only the inverse 'has_input'. + is input of + + + + + + + OBO_REL:participates_in + 'OBO_REL:participates_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'continuant' (snap:Continuant) with ontological categories that are a 'process' (span:Process), and broader in the sense that it relates any participating subjects not just inputs or input arguments. + + + + + true + In very unusual cases. + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_output_of B' defines for the subject A, that it as a necessary or actual output or output argument of the object B. + OBO_REL:participates_in + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is or has an 'Operation' function, or an entity outside of an ontology that has an 'Operation' function or is an 'Operation'. In EDAM, 'is_output_of' is not explicitly defined between EDAM concepts, only the inverse 'has_output'. + is output of + + + + + + + OBO_REL:participates_in + 'OBO_REL:participates_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'continuant' (snap:Continuant) with ontological categories that are a 'process' (span:Process), and broader in the sense that it relates any participating subjects not just outputs or output arguments. It is also not clear whether an output (result) actually participates in the process that generates it. + + + + + true + In very unusual cases. + + + + + + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_topic_of B' defines for the subject A, that it is a topic of the object B (a topic A is the scope of B). + OBO_REL:quality_of + + true + Subject A can either be a concept that is a 'Topic', or in unexpected cases an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is a 'Topic' or is in the role of a 'Topic'. Object B can be any concept or entity outside of an ontology. In EDAM, 'is_topic_of' is not explicitly defined between EDAM concepts, only the inverse 'has_topic'. + is topic of + + + + + + OBO_REL:quality_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:quality_of' might be seen narrower in the sense that it only relates subjects that are a 'quality' (snap:Quality) with objects that are an 'independent_continuant' (snap:IndependentContinuant), and is broader in the sense that it relates any qualities of the object. + + + + + true + In very unusual cases. + + + + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A type of computational resource used in bioinformatics. + + Resource type + true + + + + + + + + + + + + beta12orEarlier + true + Information, represented in an information artefact (data record) that is 'understandable' by dedicated computational tools that can use the data as input or produce it as output. + Data record + Data set + Datum + + + Data + + + + + + + + + + + + + Data record + EDAM does not distinguish a data record (a tool-understandable information artefact) from data or datum (its content, the tool-understandable encoding of an information). + + + + + Data set + EDAM does not distinguish the multiplicity of data, such as one data item (datum) versus a collection of data (data set). + + + + + Datum + EDAM does not distinguish the multiplicity of data, such as one data item (datum) versus a collection of data (data set). + + + + + + + + + beta12orEarlier + beta12orEarlier + + A bioinformatics package or tool, e.g. a standalone application or web service. + + + Tool + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A digital data archive typically based around a relational model but sometimes using an object-oriented, tree or graph-based model. + + + Database + true + + + + + + + + + + + + + + + beta12orEarlier + An ontology of biological or bioinformatics concepts and relations, a controlled vocabulary, structured glossary etc. + + + Ontology + + + + + + + + + beta12orEarlier + 1.5 + + + A directory on disk from which files are read. + + Directory metadata + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controlled vocabulary from National Library of Medicine. The MeSH thesaurus is used to index articles in biomedical journals for the Medline/PubMED databases. + + MeSH vocabulary + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controlled vocabulary for gene names (symbols) from HUGO Gene Nomenclature Committee. + + HGNC vocabulary + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Compendium of controlled vocabularies for the biomedical domain (Unified Medical Language System). + + UMLS vocabulary + true + + + + + + + + + + + + + + + + beta12orEarlier + true + A text token, number or something else which identifies an entity, but which may not be persistent (stable) or unique (the same identifier may identify multiple things). + ID + + + + Identifier + + + + + + + + + Almost exact but limited to identifying resources, and being unambiguous. + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An entry (retrievable via URL) from a biological database. + + Database entry + true + + + + + + + + + beta12orEarlier + Mass of a molecule. + + + Molecular mass + + + + + + + + + beta12orEarlier + PDBML:pdbx_formal_charge + Net charge of a molecule. + + + Molecular charge + + + + + + + + + beta12orEarlier + A specification of a chemical structure. + Chemical structure specification + + + Chemical formula + + + + + + + + + beta12orEarlier + A QSAR quantitative descriptor (name-value pair) of chemical structure. + + + QSAR descriptors have numeric values that quantify chemical information encoded in a symbolic representation of a molecule. They are used in quantitative structure activity relationship (QSAR) applications. Many subtypes of individual descriptors (not included in EDAM) cover various types of protein properties. + QSAR descriptor + + + + + + + + + beta12orEarlier + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw molecular sequence (string of characters) which might include ambiguity, unknown positions and non-sequence characters. + + + Non-sequence characters may be used for example for gaps and translation stop. + Raw sequence + true + + + + + + + + + beta12orEarlier + SO:2000061 + A molecular sequence and associated metadata. + + + Sequence record + http://purl.bioontology.org/ontology/MSH/D058977 + + + + + + + + + beta12orEarlier + A collection of one or typically multiple molecular sequences (which can include derived data or metadata) that do not (typically) correspond to molecular sequence database records or entries and which (typically) are derived from some analytical method. + Alignment reference + SO:0001260 + + + An example is an alignment reference; one or a set of reference molecular sequences, structures, or profiles used for alignment of genomic, transcriptomic, or proteomic experimental data. + This concept may be used for arbitrary sequence sets and associated data arising from processing. + Sequence set + + + + + + + + + beta12orEarlier + 1.5 + + + A character used to replace (mask) other characters in a molecular sequence. + + Sequence mask character + true + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of sequence masking to perform. + + Sequence masking is where specific characters or positions in a molecular sequence are masked (replaced) with an another (mask character). The mask type indicates what is masked, for example regions that are not of interest or which are information-poor including acidic protein regions, basic protein regions, proline-rich regions, low compositional complexity regions, short-periodicity internal repeats, simple repeats and low complexity regions. Masked sequences are used in database search to eliminate statistically significant but biologically uninteresting hits. + Sequence mask type + true + + + + + + + + + beta12orEarlier + 1.20 + + + The strand of a DNA sequence (forward or reverse). + + The forward or 'top' strand might specify a sequence is to be used as given, the reverse or 'bottom' strand specifying the reverse complement of the sequence is to be used. + DNA sense specification + true + + + + + + + + + beta12orEarlier + 1.5 + + + A specification of sequence length(s). + + Sequence length specification + true + + + + + + + + + beta12orEarlier + 1.5 + + + Basic or general information concerning molecular sequences. + + This is used for such things as a report including the sequence identifier, type and length. + Sequence metadata + true + + + + + + + + + beta12orEarlier + How the annotation of a sequence feature (for example in EMBL or Swiss-Prot) was derived. + + + This might be the name and version of a software tool, the name of a database, or 'curated' to indicate a manual annotation (made by a human). + Sequence feature source + + + + + + + + + beta12orEarlier + A report of sequence hits and associated data from searching a database of sequences (for example a BLAST search). This will typically include a list of scores (often with statistical evaluation) and a set of alignments for the hits. + Database hits (sequence) + Sequence database hits + Sequence database search results + Sequence search hits + + + The score list includes the alignment score, percentage of the query sequence matched, length of the database sequence entry in this alignment, identifier of the database sequence entry, excerpt of the database sequence entry description etc. + Sequence search results + + + + + + + + + + beta12orEarlier + Report on the location of matches ("hits") between sequences, sequence profiles, motifs (conserved or functional patterns) and other types of sequence signatures. + Profile-profile alignment + Protein secondary database search results + Search results (protein secondary database) + Sequence motif hits + Sequence motif matches + Sequence profile alignment + Sequence profile hits + Sequence profile matches + Sequence-profile alignment + + + A "profile-profile alignment" is an alignment of two sequence profiles, each profile typically representing a sequence alignment. + A "sequence-profile alignment" is an alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment). + This includes reports of hits from a search of a protein secondary or domain database. Data associated with the search or alignment might also be included, e.g. ranked list of best-scoring sequences, a graphical representation of scores etc. + Sequence signature matches + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data files used by motif or profile methods. + + Sequence signature model + true + + + + + + + + + + + + + + + beta12orEarlier + Data concerning concerning specific or conserved pattern in molecular sequences and the classifiers used for their identification, including sequence motifs, profiles or other diagnostic element. + + + This can include metadata about a motif or sequence profile such as its name, length, technical details about the profile construction, and so on. + Sequence signature data + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment of exact matches between subsequences (words) within two or more molecular sequences. + + Sequence alignment (words) + true + + + + + + + + + beta12orEarlier + A dotplot of sequence similarities identified from word-matching or character comparison. + + + Dotplot + + + + + + + + + + + + + + + beta12orEarlier + Alignment of multiple molecular sequences. + Multiple sequence alignment + msa + + + Sequence alignment + + http://purl.bioontology.org/ontology/MSH/D016415 + http://semanticscience.org/resource/SIO_010066 + + + + + + + + + beta12orEarlier + 1.5 + + + Some simple value controlling a sequence alignment (or similar 'match') operation. + + Sequence alignment parameter + true + + + + + + + + + beta12orEarlier + A value representing molecular sequence similarity. + + + Sequence similarity score + + + + + + + + + beta12orEarlier + 1.5 + + + Report of general information on a sequence alignment, typically include a description, sequence identifiers and alignment score. + + Sequence alignment metadata + true + + + + + + + + + beta12orEarlier + An informative report of molecular sequence alignment-derived data or metadata. + Sequence alignment metadata + + + Use this for any computer-generated reports on sequence alignments, and for general information (metadata) on a sequence alignment, such as a description, sequence identifiers and alignment score. + Sequence alignment report + + + + + + + + + beta12orEarlier + "Sequence-profile alignment" and "Profile-profile alignment" are synonymous with "Sequence signature matches" which was already stated as including matches (alignment) and other data. + 1.25 or earlier + + A profile-profile alignment (each profile typically representing a sequence alignment). + + + Profile-profile alignment + true + + + + + + + + + beta12orEarlier + "Sequence-profile alignment" and "Profile-profile alignment" are synonymous with "Sequence signature matches" which was already stated as including matches (alignment) and other data. + 1.24 + + Alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment). + + + Sequence-profile alignment + true + + + + + + + + + beta12orEarlier + Moby:phylogenetic_distance_matrix + A matrix of estimated evolutionary distance between molecular sequences, such as is suitable for phylogenetic tree calculation. + Phylogenetic distance matrix + + + Methods might perform character compatibility analysis or identify patterns of similarity in an alignment or data matrix. + Sequence distance matrix + + + + + + + + + beta12orEarlier + Basic character data from which a phylogenetic tree may be generated. + + + As defined, this concept would also include molecular sequences, microsatellites, polymorphisms (RAPDs, RFLPs, or AFLPs), restriction sites and fragments + Phylogenetic character data + http://www.evolutionaryontology.org/cdao.owl#Character + + + + + + + + + + + + + + + beta12orEarlier + Moby:Tree + Moby:myTree + Moby:phylogenetic_tree + The raw data (not just an image) from which a phylogenetic tree is directly generated or plotted, such as topology, lengths (in time or in expected amounts of variance) and a confidence interval for each length. + Phylogeny + + + A phylogenetic tree is usually constructed from a set of sequences from which an alignment (or data matrix) is calculated. See also 'Phylogenetic tree image'. + Phylogenetic tree + http://purl.bioontology.org/ontology/MSH/D010802 + http://www.evolutionaryontology.org/cdao.owl#Tree + + + + + + + + + beta12orEarlier + Matrix of integer or floating point numbers for amino acid or nucleotide sequence comparison. + Substitution matrix + + + The comparison matrix might include matrix name, optional comment, height and width (or size) of matrix, an index row/column (of characters) and data rows/columns (of integers or floats). + Comparison matrix + + + + + + + + + beta12orEarlier + beta12orEarlier + + Predicted or actual protein topology represented as a string of protein secondary structure elements. + + + The location and size of the secondary structure elements and intervening loop regions is usually indicated. + Protein topology + true + + + + + + + + + beta12orEarlier + 1.8 + + Secondary structure (predicted or real) of a protein. + + + Protein features report (secondary structure) + true + + + + + + + + + beta12orEarlier + 1.8 + + Super-secondary structure of protein sequence(s). + + + Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc. + Protein features report (super-secondary) + true + + + + + + + + + beta12orEarlier + true + Alignment of the (1D representations of) secondary structure of two or more proteins. + Secondary structure alignment (protein) + + + Protein secondary structure alignment + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on protein secondary structure alignment-derived data or metadata. + + Secondary structure alignment metadata (protein) + true + + + + + + + + + + + + + + + beta12orEarlier + Moby:RNAStructML + An informative report of secondary structure (predicted or real) of an RNA molecule. + Secondary structure (RNA) + + + This includes thermodynamically stable or evolutionarily conserved structures such as knots, pseudoknots etc. + RNA secondary structure + + + + + + + + + beta12orEarlier + true + Moby:RNAStructAlignmentML + Alignment of the (1D representations of) secondary structure of two or more RNA molecules. + Secondary structure alignment (RNA) + + + RNA secondary structure alignment + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report of RNA secondary structure alignment-derived data or metadata. + + Secondary structure alignment metadata (RNA) + true + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a macromolecular tertiary (3D) structure or part of a structure. + Coordinate model + Structure data + + + The coordinate data may be predicted or real. + Structure + http://purl.bioontology.org/ontology/MSH/D015394 + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An entry from a molecular tertiary (3D) structure database. + + Tertiary structure record + true + + + + + + + + + beta12orEarlier + 1.8 + + + Results (hits) from searching a database of tertiary structure. + + Structure database search results + true + + + + + + + + + + + + + + + beta12orEarlier + Alignment (superimposition) of molecular tertiary (3D) structures. + + + A tertiary structure alignment will include the untransformed coordinates of one macromolecule, followed by the second (or subsequent) structure(s) with all the coordinates transformed (by rotation / translation) to give a superposition. + Structure alignment + + + + + + + + + beta12orEarlier + An informative report of molecular tertiary structure alignment-derived data. + + + This is a broad data type and is used a placeholder for other, more specific types. + Structure alignment report + + + + + + + + + beta12orEarlier + A value representing molecular structure similarity, measured from structure alignment or some other type of structure comparison. + + + Structure similarity score + + + + + + + + + + + + + + + beta12orEarlier + Some type of structural (3D) profile or template (representing a structure or structure alignment). + 3D profile + Structural (3D) profile + + + Structural profile + + + + + + + + + beta12orEarlier + A 3D profile-3D profile alignment (each profile representing structures or a structure alignment). + Structural profile alignment + + + Structural (3D) profile alignment + + + + + + + + + beta12orEarlier + 1.5 + + + An alignment of a sequence to a 3D profile (representing structures or a structure alignment). + + Sequence-3D profile alignment + true + + + + + + + + + beta12orEarlier + Matrix of values used for scoring sequence-structure compatibility. + + + Protein sequence-structure scoring matrix + + + + + + + + + beta12orEarlier + An alignment of molecular sequence to structure (from threading sequence(s) through 3D structure or representation of structure(s)). + + + Sequence-structure alignment + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific amino acid. + + Amino acid annotation + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific peptide. + + Peptide annotation + true + + + + + + + + + beta12orEarlier + An informative human-readable report about one or more specific protein molecules or protein structural domains, derived from analysis of primary (sequence or structural) data. + Gene product annotation + + + Protein report + + + + + + + + + beta12orEarlier + A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a protein molecule or model. + Protein physicochemical property + Protein properties + Protein sequence statistics + + + This is a broad data type and is used a placeholder for other, more specific types. Data may be based on analysis of nucleic acid sequence or structural data, for example reports on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure, protein flexibility or motion, and protein architecture (spatial arrangement of secondary structure). + Protein property + + + + + + + + + beta12orEarlier + 1.8 + + 3D structural motifs in a protein. + + Protein structural motifs and surfaces + true + + + + + + + + + beta12orEarlier + 1.5 + + + Data concerning the classification of the sequences and/or structures of protein structural domain(s). + + Protein domain classification + true + + + + + + + + + beta12orEarlier + 1.8 + + structural domains or 3D folds in a protein or polypeptide chain. + + + Protein features report (domains) + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on architecture (spatial arrangement of secondary structure) of a protein structure. + + Protein architecture report + true + + + + + + + + + beta12orEarlier + 1.8 + + A report on an analysis or model of protein folding properties, folding pathways, residues or sites that are key to protein folding, nucleation or stabilisation centers etc. + + + Protein folding report + true + + + + + + + + + beta12orEarlier + beta13 + + + Data on the effect of (typically point) mutation on protein folding, stability, structure and function. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein features (mutation) + true + + + + + + + + + beta12orEarlier + Protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc. + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein interaction raw data + + + + + + + + + + + + + + + beta12orEarlier + Data concerning the interactions (predicted or known) within or between a protein, structural domain or part of a protein. This includes intra- and inter-residue contacts and distances, as well as interactions with other proteins and non-protein entities such as nucleic acid, metal atoms, water, ions etc. + Protein interaction record + Protein interaction report + Protein report (interaction) + Protein-protein interaction data + Atom interaction data + Protein non-covalent interactions report + Residue interaction data + + + Protein interaction data + + + + + + + + + + + + + + + beta12orEarlier + Protein classification data + An informative report on a specific protein family or other classification or group of protein sequences or structures. + Protein family annotation + + + Protein family report + + + + + + + + + beta12orEarlier + The maximum initial velocity or rate of a reaction. It is the limiting velocity as substrate concentrations get very large. + + + Vmax + + + + + + + + + beta12orEarlier + Km is the concentration (usually in Molar units) of substrate that leads to half-maximal velocity of an enzyme-catalysed reaction. + + + Km + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific nucleotide base. + + Nucleotide base annotation + true + + + + + + + + + beta12orEarlier + Nucleic acid structural properties stiffness, curvature, twist/roll data or other conformational parameters or properties. + A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a nucleic acid molecule. + Nucleic acid physicochemical property + GC-content + Nucleic acid property (structural) + Nucleic acid structural property + + + This is a broad data type and is used a placeholder for other, more specific types. + Nucleic acid property + + + + + + + + + + + + + + + beta12orEarlier + Data derived from analysis of codon usage (typically a codon usage table) of DNA sequences. + Codon usage report + + + This is a broad data type and is used a placeholder for other, more specific types. + Codon usage data + + + + + + + + + beta12orEarlier + Moby:GeneInfo + Moby:gene + Moby_namespace:Human_Readable_Description + A report on predicted or actual gene structure, regions which make an RNA product and features such as promoters, coding regions, splice sites etc. + Gene and transcript structure (report) + Gene annotation + Gene features report + Gene function (report) + Gene structure (repot) + Nucleic acid features (gene and transcript structure) + + + This includes any report on a particular locus or gene. This might include the gene name, description, summary and so on. It can include details about the function of a gene, such as its encoded protein or a functional classification of the gene sequence along according to the encoded protein(s). + Gene report + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on the classification of nucleic acid / gene sequences according to the functional classification of their gene products. + + Gene classification + true + + + + + + + + + beta12orEarlier + 1.8 + + stable, naturally occurring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms. + + + DNA variation + true + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific chromosome. + + + This includes basic information. e.g. chromosome number, length, karyotype features, chromosome sequence etc. + Chromosome report + + + + + + + + + beta12orEarlier + A human-readable collection of information about the set of genes (or allelic forms) present in an individual, organism or cell and associated with a specific physical characteristic, or a report concerning an organisms traits and phenotypes. + Genotype/phenotype annotation + + + Genotype/phenotype report + + + + + + + + + beta12orEarlier + 1.8 + + PCR experiments, e.g. quantitative real-time PCR. + + + PCR experiment report + true + + + + + + + + + + beta12orEarlier + Fluorescence trace data generated by an automated DNA sequencer, which can be interpreted as a molecular sequence (reads), given associated sequencing metadata such as base-call quality scores. + + + This is the raw data produced by a DNA sequencing machine. + Sequence trace + + + + + + + + + beta12orEarlier + An assembly of fragments of a (typically genomic) DNA sequence. + Contigs + SO:0000353 + SO:0001248 + + + Typically, an assembly is a collection of contigs (for example ESTs and genomic DNA fragments) that are ordered, aligned and merged. Annotation of the assembled sequence might be included. + Sequence assembly + + + + + + SO:0001248 + Perhaps surprisingly, the definition of 'SO:assembly' is narrower than the 'SO:sequence_assembly'. + + + + + + + + + beta12orEarlier + Radiation hybrid scores (RH) scores for one or more markers. + Radiation Hybrid (RH) scores + + + Radiation Hybrid (RH) scores are used in Radiation Hybrid mapping. + RH scores + + + + + + + + + beta12orEarlier + A human-readable collection of information about the linkage of alleles. + Gene annotation (linkage) + Linkage disequilibrium (report) + + + This includes linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome). + Genetic linkage report + + + + + + + + + beta12orEarlier + Data quantifying the level of expression of (typically) multiple genes, derived for example from microarray experiments. + Gene expression pattern + + + Gene expression profile + + + + + + + + + beta12orEarlier + 1.8 + + microarray experiments including conditions, protocol, sample:data relationships etc. + + + Microarray experiment report + true + + + + + + + + + beta12orEarlier + beta13 + + + Data on oligonucleotide probes (typically for use with DNA microarrays). + + Oligonucleotide probe data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Output from a serial analysis of gene expression (SAGE) experiment. + + SAGE experimental data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Massively parallel signature sequencing (MPSS) data. + + MPSS experimental data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Sequencing by synthesis (SBS) data. + + SBS experimental data + true + + + + + + + + + beta12orEarlier + 1.14 + + Tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. Typically this is the sequencing-based expression profile annotated with gene identifiers. + + + Sequence tag profile (with gene assignment) + true + + + + + + + + + beta12orEarlier + Protein X-ray crystallographic data + X-ray crystallography data. + + + Electron density map + + + + + + + + + beta12orEarlier + Nuclear magnetic resonance (NMR) raw data, typically for a protein. + Protein NMR data + + + Raw NMR data + + + + + + + + + beta12orEarlier + Protein secondary structure from protein coordinate or circular dichroism (CD) spectroscopic data. + CD spectrum + Protein circular dichroism (CD) spectroscopic data + + + CD spectra + + + + + + + + + + + + + + + beta12orEarlier + Volume map data from electron microscopy. + 3D volume map + EM volume map + Electron microscopy volume map + + + Volume map + + + + + + + + + beta12orEarlier + 1.19 + + Annotation on a structural 3D model (volume map) from electron microscopy. + + + Electron microscopy model + true + + + + + + + + + + + + + + + beta12orEarlier + Two-dimensional gel electrophoresis image. + + + 2D PAGE image + + + + + + + + + + + + + + + beta12orEarlier + Spectra from mass spectrometry. + Mass spectrometry spectra + + + Mass spectrum + + + + + + + + + + + + + + + + beta12orEarlier + A set of peptide masses (peptide mass fingerprint) from mass spectrometry. + Peak list + Protein fingerprint + Molecular weights standard fingerprint + + + A molecular weight standard fingerprint is standard protonated molecular masses e.g. from trypsin (modified porcine trypsin, Promega) and keratin peptides. + Peptide mass fingerprint + + + + + + + + + + + + + + + + beta12orEarlier + Protein or peptide identifications with evidence supporting the identifications, for example from comparing a peptide mass fingerprint (from mass spectrometry) to a sequence database, or the set of typical spectra one obtains when running a protein through a mass spectrometer. + 'Protein identification' + Peptide spectrum match + + + Peptide identification + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report about a specific biological pathway or network, typically including a map (diagram) of the pathway. + + Pathway or network annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A map (typically a diagram) of a biological pathway. + + Biological pathway map + true + + + + + + + + + beta12orEarlier + 1.5 + + + A definition of a data resource serving one or more types of data, including metadata and links to the resource or data proper. + + Data resource definition + true + + + + + + + + + beta12orEarlier + Basic information, annotation or documentation concerning a workflow (but not the workflow itself). + + + Workflow metadata + + + + + + + + + + + + + + + beta12orEarlier + A biological model represented in mathematical terms. + Biological model + + + Mathematical model + + + + + + + + + beta12orEarlier + A value representing estimated statistical significance of some observed data; typically sequence database hits. + + + Statistical estimate score + + + + + + + + + beta12orEarlier + 1.5 + + + Resource definition for an EMBOSS database. + + EMBOSS database resource definition + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a version of software or data, for example name, version number and release date. + + Development status / maturity may be part of the version information, for example in case of tools, standards, or some data records. + Version information + true + + + + + + + + + beta12orEarlier + A mapping of the accession numbers (or other database identifier) of entries between (typically) two biological or biomedical databases. + + + The cross-mapping is typically a table where each row is an accession number and each column is a database being cross-referenced. The cells give the accession number or identifier of the corresponding entry in a database. If a cell in the table is not filled then no mapping could be found for the database. Additional information might be given on version, date etc. + Database cross-mapping + + + + + + + + + + + + + + + beta12orEarlier + An index of data of biological relevance. + + + Data index + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information concerning an analysis of an index of biological data. + Database index annotation + + + Data index report + + + + + + + + + beta12orEarlier + Basic information on bioinformatics database(s) or other data sources such as name, type, description, URL etc. + + + Database metadata + + + + + + + + + beta12orEarlier + Basic information about one or more bioinformatics applications or packages, such as name, type, description, or other documentation. + + + Tool metadata + + + + + + + + + beta12orEarlier + 1.5 + + + Textual metadata on a submitted or completed job. + + Job metadata + true + + + + + + + + + beta12orEarlier + Textual metadata on a software author or end-user, for example a person or other software. + + + User metadata + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific chemical compound. + Chemical compound annotation + Chemical structure report + Small molecule annotation + + + Small molecule report + + + + + + + + + beta12orEarlier + A human-readable collection of information about a particular strain of organism cell line including plants, virus, fungi and bacteria. The data typically includes strain number, organism type, growth conditions, source and so on. + Cell line annotation + Organism strain data + + + Cell line report + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific scent. + + Scent annotation + true + + + + + + + + + beta12orEarlier + A term (name) from an ontology. + Ontology class name + Ontology terms + + + Ontology term + + + + + + + + + beta12orEarlier + Data concerning or derived from a concept from a biological ontology. + Ontology class metadata + Ontology term metadata + + + Ontology concept data + + + + + + + + + beta12orEarlier + Moby:BooleanQueryString + Moby:Global_Keyword + Moby:QueryString + Moby:Wildcard_Query + Keyword(s) or phrase(s) used (typically) for text-searching purposes. + Phrases + Term + + + Boolean operators (AND, OR and NOT) and wildcard characters may be allowed. + Keyword + + + + + + + + + beta12orEarlier + Moby:GCP_SimpleCitation + Moby:Publication + Bibliographic data that uniquely identifies a scientific article, book or other published material. + Bibliographic reference + Reference + + + A bibliographic reference might include information such as authors, title, journal name, date and (possibly) a link to the abstract or full-text of the article if available. + Citation + + + + + + + + + + beta12orEarlier + A scientific text, typically a full text article from a scientific journal. + Article text + Scientific article + + + Article + + + + + + + + + + beta12orEarlier + A human-readable collection of information resulting from text mining. + Text mining output + + + A text mining abstract will typically include an annotated a list of words or sentences extracted from one or more scientific articles. + Text mining report + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of a biological entity or phenomenon. + + Entity identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of a data resource. + + Data resource identifier + true + + + + + + + + + beta12orEarlier + true + An identifier that identifies a particular type of data. + Identifier (typed) + + + + This concept exists only to assist EDAM maintenance and navigation in graphical browsers. It does not add semantic information. This branch provides an alternative organisation of the concepts nested under 'Accession' and 'Name'. All concepts under here are already included under 'Accession' or 'Name'. + Identifier (by type of entity) + + + + + + + + + beta12orEarlier + true + An identifier of a bioinformatics tool, e.g. an application or web service. + + + + Tool identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a discrete entity (any biological thing with a distinct, discrete physical existence). + + Discrete entity identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of an entity feature (a physical part or region of a discrete biological entity, or a feature that can be mapped to such a thing). + + Entity feature identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a collection of discrete biological entities. + + Entity collection identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a physical, observable biological occurrence or event. + + Phenomenon identifier + true + + + + + + + + + beta12orEarlier + true + Name or other identifier of a molecule. + + + + Molecule identifier + + + + + + + + + beta12orEarlier + true + Identifier (e.g. character symbol) of a specific atom. + Atom identifier + + + + Atom ID + + + + + + + + + + beta12orEarlier + true + Name of a specific molecule. + + + + Molecule name + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type a molecule. + + For example, 'Protein', 'DNA', 'RNA' etc. + Molecule type + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Unique identifier of a chemical compound. + + Chemical identifier + true + + + + + + + + + + + + + + + + beta12orEarlier + Name of a chromosome. + + + + Chromosome name + + + + + + + + + beta12orEarlier + true + Identifier of a peptide chain. + + + + Peptide identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a protein. + + + + Protein identifier + + + + + + + + + + beta12orEarlier + Unique name of a chemical compound. + Chemical name + + + + Compound name + + + + + + + + + beta12orEarlier + Unique registry number of a chemical compound. + + + + Chemical registry number + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Code word for a ligand, for example from a PDB file. + + Ligand identifier + true + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a drug. + + + + Drug identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an amino acid. + Residue identifier + + + + Amino acid identifier + + + + + + + + + beta12orEarlier + true + Name or other identifier of a nucleotide. + + + + Nucleotide identifier + + + + + + + + + beta12orEarlier + true + Identifier of a monosaccharide. + + + + Monosaccharide identifier + + + + + + + + + beta12orEarlier + Unique name from Chemical Entities of Biological Interest (ChEBI) of a chemical compound. + ChEBI chemical name + + + + This is the recommended chemical name for use for example in database annotation. + Chemical name (ChEBI) + + + + + + + + + beta12orEarlier + IUPAC recommended name of a chemical compound. + IUPAC chemical name + + + + Chemical name (IUPAC) + + + + + + + + + beta12orEarlier + International Non-proprietary Name (INN or 'generic name') of a chemical compound, assigned by the World Health Organisation (WHO). + INN chemical name + + + + Chemical name (INN) + + + + + + + + + beta12orEarlier + Brand name of a chemical compound. + Brand chemical name + + + + Chemical name (brand) + + + + + + + + + beta12orEarlier + Synonymous name of a chemical compound. + Synonymous chemical name + + + + Chemical name (synonymous) + + + + + + + + + + + beta12orEarlier + CAS registry number of a chemical compound; a unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service. + CAS chemical registry number + Chemical registry number (CAS) + + + + CAS number + + + + + + + + + + beta12orEarlier + Beilstein registry number of a chemical compound. + Beilstein chemical registry number + + + + Chemical registry number (Beilstein) + + + + + + + + + + beta12orEarlier + Gmelin registry number of a chemical compound. + Gmelin chemical registry number + + + + Chemical registry number (Gmelin) + + + + + + + + + beta12orEarlier + 3-letter code word for a ligand (HET group) from a PDB file, for example ATP. + Component identifier code + Short ligand name + + + + HET group name + + + + + + + + + beta12orEarlier + String of one or more ASCII characters representing an amino acid. + + + + Amino acid name + + + + + + + + + + beta12orEarlier + String of one or more ASCII characters representing a nucleotide. + + + + Nucleotide code + + + + + + + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_strand_id + WHATIF: chain + Identifier of a polypeptide chain from a protein. + Chain identifier + PDB chain identifier + PDB strand id + Polypeptide chain identifier + Protein chain identifier + + + + This is typically a character (for the chain) appended to a PDB identifier, e.g. 1cukA + Polypeptide chain ID + + + + + + + + + + beta12orEarlier + Name of a protein. + + + + Protein name + + + + + + + + + beta12orEarlier + Name or other identifier of an enzyme or record from a database of enzymes. + + + + Enzyme identifier + + + + + + + + + + beta12orEarlier + [0-9]+\.-\.-\.-|[0-9]+\.[0-9]+\.-\.-|[0-9]+\.[0-9]+\.[0-9]+\.-|[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+ + Moby:Annotated_EC_Number + Moby:EC_Number + An Enzyme Commission (EC) number of an enzyme. + EC + EC code + Enzyme Commission number + + + + EC number + + + + + + + + + + beta12orEarlier + Name of an enzyme. + + + + Enzyme name + + + + + + + + + beta12orEarlier + Name of a restriction enzyme. + + + + Restriction enzyme name + + + + + + + + + beta12orEarlier + 1.5 + + + A specification (partial or complete) of one or more positions or regions of a molecular sequence or map. + + Sequence position specification + true + + + + + + + + + beta12orEarlier + A unique identifier of molecular sequence feature, for example an ID of a feature that is unique within the scope of the GFF file. + + + + Sequence feature ID + + + + + + + + + beta12orEarlier + PDBML:_atom_site.id + WHATIF: PDBx_atom_site + WHATIF: number + A position of one or more points (base or residue) in a sequence, or part of such a specification. + SO:0000735 + + + Sequence position + + + + + + + + + beta12orEarlier + Specification of range(s) of sequence positions. + + + Sequence range + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of an nucleic acid feature. + + Nucleic acid feature identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a protein feature. + + Protein feature identifier + true + + + + + + + + + beta12orEarlier + The type of a sequence feature, typically a term or accession from the Sequence Ontology, for example an EMBL or Swiss-Prot sequence feature key. + Sequence feature method + Sequence feature type + + + A feature key indicates the biological nature of the feature or information about changes to or versions of the sequence. + Sequence feature key + + + + + + + + + beta12orEarlier + Typically one of the EMBL or Swiss-Prot feature qualifiers. + + + Feature qualifiers hold information about a feature beyond that provided by the feature key and location. + Sequence feature qualifier + + + + + + + + + + + beta12orEarlier + A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user. Typically an EMBL or Swiss-Prot feature label. + Sequence feature name + + + A feature label identifies a feature of a sequence database entry. When used with the database name and the entry's primary accession number, it is a unique identifier of that feature. + Sequence feature label + + + + + + + + + + beta12orEarlier + The name of a sequence feature-containing entity adhering to the standard feature naming scheme used by all EMBOSS applications. + UFO + + + EMBOSS Uniform Feature Object + + + + + + + + + beta12orEarlier + beta12orEarlier + + + String of one or more ASCII characters representing a codon. + + Codon name + true + + + + + + + + + + + + + + + beta12orEarlier + true + Moby:GeneAccessionList + An identifier of a gene, such as a name/symbol or a unique identifier of a gene in a database. + + + + Gene identifier + + + + + + + + + beta12orEarlier + Moby_namespace:Global_GeneCommonName + Moby_namespace:Global_GeneSymbol + The short name of a gene; a single word that does not contain white space characters. It is typically derived from the gene name. + + + + Gene symbol + + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs:LocusID + http://www.geneontology.org/doc/GO.xrf_abbs:NCBI_Gene + An NCBI unique identifier of a gene. + Entrez gene ID + Gene identifier (Entrez) + Gene identifier (NCBI) + NCBI gene ID + NCBI geneid + + + + Gene ID (NCBI) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An NCBI RefSeq unique identifier of a gene. + + Gene identifier (NCBI RefSeq) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An NCBI UniGene unique identifier of a gene. + + Gene identifier (NCBI UniGene) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An Entrez unique identifier of a gene. + + Gene identifier (Entrez) + true + + + + + + + + + + beta12orEarlier + Identifier of a gene or feature from the CGD database. + CGD ID + + + + Gene ID (CGD) + + + + + + + + + + beta12orEarlier + Identifier of a gene from DictyBase. + + + + Gene ID (DictyBase) + + + + + + + + + + + beta12orEarlier + Unique identifier for a gene (or other feature) from the Ensembl database. + Gene ID (Ensembl) + + + + Ensembl gene ID + + + + + + + + + + + beta12orEarlier + S[0-9]+ + Identifier of an entry from the SGD database. + SGD identifier + + + + Gene ID (SGD) + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9\.-]* + Moby_namespace:GeneDB + Identifier of a gene from the GeneDB database. + GeneDB identifier + + + + Gene ID (GeneDB) + + + + + + + + + + + beta12orEarlier + Identifier of an entry from the TIGR database. + + + + TIGR identifier + + + + + + + + + + beta12orEarlier + Gene:[0-9]{7} + Identifier of an gene from the TAIR database. + + + + TAIR accession (gene) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a protein structural domain. + + + + This is typically a character or string concatenated with a PDB identifier and a chain identifier. + Protein domain ID + + + + + + + + + + beta12orEarlier + Identifier of a protein domain (or other node) from the SCOP database. + + + + SCOP domain identifier + + + + + + + + + beta12orEarlier + 1nr3A00 + Identifier of a protein domain from CATH. + CATH domain identifier + + + + CATH domain ID + + + + + + + + + beta12orEarlier + A SCOP concise classification string (sccs) is a compact representation of a SCOP domain classification. + + + + An scss includes the class (alphabetical), fold, superfamily and family (all numerical) to which a given domain belongs. + SCOP concise classification string (sccs) + + + + + + + + + beta12orEarlier + 33229 + Unique identifier (number) of an entry in the SCOP hierarchy, for example 33229. + SCOP unique identifier + sunid + + + + A sunid uniquely identifies an entry in the SCOP hierarchy, including leaves (the SCOP domains) and higher level nodes including entries corresponding to the protein level. + SCOP sunid + + + + + + + + + beta12orEarlier + 3.30.1190.10.1.1.1.1.1 + A code number identifying a node from the CATH database. + CATH code + CATH node identifier + + + + CATH node ID + + + + + + + + + beta12orEarlier + The name of a biological kingdom (Bacteria, Archaea, or Eukaryotes). + + + + Kingdom name + + + + + + + + + beta12orEarlier + The name of a species (typically a taxonomic group) of organism. + Organism species + + + + Species name + + + + + + + + + + beta12orEarlier + The name of a strain of an organism variant, typically a plant, virus or bacterium. + + + + Strain name + + + + + + + + + beta12orEarlier + true + A string of characters that name or otherwise identify a resource on the Internet. + URIs + + + URI + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a biological or bioinformatics database. + Database identifier + + + + Database ID + + + + + + + + + beta12orEarlier + The name of a directory. + + + + Directory name + + + + + + + + + beta12orEarlier + The name (or part of a name) of a file (of any type). + + + + File name + + + + + + + + + + + + + + + + beta12orEarlier + Name of an ontology of biological or bioinformatics concepts and relations. + + + + Ontology name + + + + + + + + + beta12orEarlier + Moby:Link + Moby:URL + A Uniform Resource Locator (URL). + + + URL + + + + + + + + + beta12orEarlier + A Uniform Resource Name (URN). + + + URN + + + + + + + + + beta12orEarlier + A Life Science Identifier (LSID) - a unique identifier of some data. + Life Science Identifier + + + LSIDs provide a standard way to locate and describe data. An LSID is represented as a Uniform Resource Name (URN) with the following format: URN:LSID:<Authority>:<Namespace>:<ObjectID>[:<Version>] + LSID + + + + + + + + + + beta12orEarlier + The name of a biological or bioinformatics database. + + + + Database name + + + + + + + + + beta12orEarlier + beta13 + + + The name of a molecular sequence database. + + Sequence database name + true + + + + + + + + + beta12orEarlier + The name of a file (of any type) with restricted possible values. + + + + Enumerated file name + + + + + + + + + beta12orEarlier + The extension of a file name. + + + + A file extension is the characters appearing after the final '.' in the file name. + File name extension + + + + + + + + + beta12orEarlier + The base name of a file. + + + + A file base name is the file name stripped of its directory specification and extension. + File base name + + + + + + + + + + + + + + + + beta12orEarlier + Name of a QSAR descriptor. + + + + QSAR descriptor name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of an entry from a database where the same type of identifier is used for objects (data) of different semantic type. + + This concept is required for completeness. It should never have child concepts. + Database entry identifier + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of molecular sequence(s) or entries from a molecular sequence database. + + + + Sequence identifier + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a set of molecular sequence(s). + + + + Sequence set ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Identifier of a sequence signature (motif or profile) for example from a database of sequence patterns. + + Sequence signature identifier + true + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a molecular sequence alignment, for example a record from an alignment database. + + + + Sequence alignment ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of a phylogenetic distance matrix. + + Phylogenetic distance matrix identifier + true + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a phylogenetic tree for example from a phylogenetic tree database. + + + + Phylogenetic tree ID + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a comparison matrix. + Substitution matrix identifier + + + + Comparison matrix identifier + + + + + + + + + beta12orEarlier + true + A unique and persistent identifier of a molecular tertiary structure, typically an entry from a structure database. + + + + Structure ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier or name of a structural (3D) profile or template (representing a structure or structure alignment). + Structural profile identifier + + + + Structural (3D) profile ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of tertiary structure alignments. + + + + Structure alignment ID + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an index of amino acid physicochemical and biochemical property data. + + + + Amino acid index ID + + + + + + + + + + + + + + + beta12orEarlier + true + Molecular interaction ID + Identifier of a report of protein interactions from a protein interaction database (typically). + + + + Protein interaction ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a protein family. + Protein secondary database record identifier + + + + Protein family identifier + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Unique name of a codon usage table. + + + + Codon usage table name + + + + + + + + + + beta12orEarlier + true + Identifier of a transcription factor (or a TF binding site). + + + + Transcription factor identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of microarray data. + + + + Experiment annotation ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of electron microscopy data. + + + + Electron microscopy model ID + + + + + + + + + + + + + + + beta12orEarlier + true + Accession of a report of gene expression (e.g. a gene expression profile) from a database. + Gene expression profile identifier + + + + Gene expression report ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of genotypes and phenotypes. + + + + Genotype and phenotype annotation ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of biological pathways or networks. + + + + Pathway or network identifier + + + + + + + + + beta12orEarlier + true + Identifier of a biological or biomedical workflow, typically from a database of workflows. + + + + Workflow ID + + + + + + + + + beta12orEarlier + true + Identifier of a data type definition from some provider. + Data resource definition identifier + + + + Data resource definition ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a mathematical model, typically an entry from a database. + Biological model identifier + + + + Biological model ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of chemicals. + Chemical compound identifier + Compound ID + Small molecule identifier + + + + Compound identifier + + + + + + + + + beta12orEarlier + A unique (typically numerical) identifier of a concept in an ontology of biological or bioinformatics concepts and relations. + + + + Ontology concept ID + + + + + + + + + + + + + + + beta12orEarlier + true + Unique identifier of a scientific article. + Article identifier + + + + Article ID + + + + + + + + + + beta12orEarlier + FB[a-zA-Z_0-9]{2}[0-9]{7} + Identifier of an object from the FlyBase database. + + + + FlyBase ID + + + + + + + + + + beta12orEarlier + Name of an object from the WormBase database, usually a human-readable name. + + + + WormBase name + + + + + + + + + beta12orEarlier + Class of an object from the WormBase database. + + + + A WormBase class describes the type of object such as 'sequence' or 'protein'. + WormBase class + + + + + + + + + beta12orEarlier + true + A persistent, unique identifier of a molecular sequence database entry. + Sequence accession number + + + + Sequence accession + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing a type of molecular sequence. + + Sequence type might reflect the molecule (protein, nucleic acid etc) or the sequence itself (gapped, ambiguous etc). + Sequence type + true + + + + + + + + + + beta12orEarlier + The name of a sequence-based entity adhering to the standard sequence naming scheme used by all EMBOSS applications. + EMBOSS USA + + + + EMBOSS Uniform Sequence Address + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a protein sequence database entry. + Protein sequence accession number + + + + Sequence accession (protein) + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a nucleotide sequence database entry. + Nucleotide sequence accession number + + + + Sequence accession (nucleic acid) + + + + + + + + + + beta12orEarlier + (NC|AC|NG|NT|NW|NZ|NM|NR|XM|XR|NP|AP|XP|YP|ZP)_[0-9]+ + Accession number of a RefSeq database entry. + RefSeq ID + + + + RefSeq accession + + + + + + + + + beta12orEarlier + 1.0 + + + Accession number of a UniProt (protein sequence) database entry. May contain version or isoform number. + + UniProt accession (extended) + true + + + + + + + + + + beta12orEarlier + An identifier of PIR sequence database entry. + PIR ID + PIR accession number + + + + PIR identifier + + + + + + + + + beta12orEarlier + 1.2 + + Identifier of a TREMBL sequence database entry. + + + TREMBL accession + true + + + + + + + + + beta12orEarlier + Primary identifier of a Gramene database entry. + Gramene primary ID + + + + Gramene primary identifier + + + + + + + + + + beta12orEarlier + Identifier of a (nucleic acid) entry from the EMBL/GenBank/DDBJ databases. + + + + EMBL/GenBank/DDBJ ID + + + + + + + + + + beta12orEarlier + A unique identifier of an entry (gene cluster) from the NCBI UniGene database. + UniGene ID + UniGene cluster ID + UniGene identifier + + + + Sequence cluster ID (UniGene) + + + + + + + + + + + beta12orEarlier + Identifier of a dbEST database entry. + dbEST ID + + + + dbEST accession + + + + + + + + + + beta12orEarlier + Identifier of a dbSNP database entry. + dbSNP identifier + + + + dbSNP ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The EMBOSS type of a molecular sequence. + + See the EMBOSS documentation (http://emboss.sourceforge.net/) for a definition of what this includes. + EMBOSS sequence type + true + + + + + + + + + beta12orEarlier + 1.5 + + + List of EMBOSS Uniform Sequence Addresses (EMBOSS listfile). + + EMBOSS listfile + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a cluster of molecular sequence(s). + + + + Sequence cluster ID + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the COG database. + COG ID + + + + Sequence cluster ID (COG) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a sequence motif, for example an entry from a motif database. + + + + Sequence motif identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a sequence profile. + + + + A sequence profile typically represents a sequence alignment. + Sequence profile ID + + + + + + + + + beta12orEarlier + Identifier of an entry from the ELMdb database of protein functional sites. + + + + ELM ID + + + + + + + + + beta12orEarlier + PS[0-9]{5} + Accession number of an entry from the Prosite database. + Prosite ID + + + + Prosite accession number + + + + + + + + + + + + + + + + beta12orEarlier + Unique identifier or name of a HMMER hidden Markov model. + + + + HMMER hidden Markov model ID + + + + + + + + + + beta12orEarlier + Unique identifier or name of a profile from the JASPAR database. + + + + JASPAR profile ID + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a sequence alignment. + + Possible values include for example the EMBOSS alignment types, BLAST alignment types and so on. + Sequence alignment type + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The type of a BLAST sequence alignment. + + BLAST sequence alignment type + true + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a phylogenetic tree. + + For example 'nj', 'upgmp' etc. + Phylogenetic tree type + true + + + + + + + + + + beta12orEarlier + Accession number of an entry from the TreeBASE database. + + + + TreeBASE study accession number + + + + + + + + + + beta12orEarlier + Accession number of an entry from the TreeFam database. + + + + TreeFam accession number + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a comparison matrix. + + For example 'blosum', 'pam', 'gonnet', 'id' etc. Comparison matrix type may be required where a series of matrices of a certain type are used. + Comparison matrix type + true + + + + + + + + + + + + + + + + beta12orEarlier + Unique name or identifier of a comparison matrix. + Substitution matrix name + + + + See for example http://www.ebi.ac.uk/Tools/webservices/help/matrix. + Comparison matrix name + + + + + + + + + + beta12orEarlier + [0-9][a-zA-Z_0-9]{3} + An identifier of an entry from the PDB database. + PDB identifier + PDBID + + + + A PDB identification code which consists of 4 characters, the first of which is a digit in the range 0 - 9; the remaining 3 are alphanumeric, and letters are upper case only. (source: https://cdn.rcsb.org/wwpdb/docs/documentation/file-format/PDB_format_1996.pdf) + PDB ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the AAindex database. + + + + AAindex ID + + + + + + + + + + beta12orEarlier + Accession number of an entry from the BIND database. + + + + BIND accession number + + + + + + + + + + beta12orEarlier + EBI\-[0-9]+ + Accession number of an entry from the IntAct database. + + + + IntAct accession number + + + + + + + + + + beta12orEarlier + Name of a protein family. + + + + Protein family name + + + + + + + + + + + + + + + beta12orEarlier + Name of an InterPro entry, usually indicating the type of protein matches for that entry. + + + + InterPro entry name + + + + + + + + + + + + + + + + beta12orEarlier + IPR015590 + IPR[0-9]{6} + Primary accession number of an InterPro entry. + InterPro primary accession + InterPro primary accession number + + + + Every InterPro entry has a unique accession number to provide a persistent citation of database records. + InterPro accession + + + + + + + + + + + + + + + beta12orEarlier + Secondary accession number of an InterPro entry. + InterPro secondary accession number + + + + InterPro secondary accession + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the Gene3D database. + + + + Gene3D ID + + + + + + + + + + beta12orEarlier + PIRSF[0-9]{6} + Unique identifier of an entry from the PIRSF database. + + + + PIRSF ID + + + + + + + + + + beta12orEarlier + PR[0-9]{5} + The unique identifier of an entry in the PRINTS database. + + + + PRINTS code + + + + + + + + + + beta12orEarlier + PF[0-9]{5} + Accession number of a Pfam entry. + + + + Pfam accession number + + + + + + + + + + beta12orEarlier + SM[0-9]{5} + Accession number of an entry from the SMART database. + + + + SMART accession number + + + + + + + + + + beta12orEarlier + Unique identifier (number) of a hidden Markov model from the Superfamily database. + + + + Superfamily hidden Markov model number + + + + + + + + + + beta12orEarlier + Accession number of an entry (family) from the TIGRFam database. + TIGRFam accession number + + + + TIGRFam ID + + + + + + + + + + beta12orEarlier + PD[0-9]+ + A ProDom domain family accession number. + + + + ProDom is a protein domain family database. + ProDom accession number + + + + + + + + + + beta12orEarlier + Identifier of an entry from the TRANSFAC database. + + + + TRANSFAC accession number + + + + + + + + + beta12orEarlier + [AEP]-[a-zA-Z_0-9]{4}-[0-9]+ + Accession number of an entry from the ArrayExpress database. + ArrayExpress experiment ID + + + + ArrayExpress accession number + + + + + + + + + beta12orEarlier + [0-9]+ + PRIDE experiment accession number. + + + + PRIDE experiment accession number + + + + + + + + + + beta12orEarlier + Identifier of an entry from the EMDB electron microscopy database. + + + + EMDB ID + + + + + + + + + + beta12orEarlier + [GDS|GPL|GSE|GSM][0-9]+ + Accession number of an entry from the GEO database. + + + + GEO accession number + + + + + + + + + + beta12orEarlier + Identifier of an entry from the GermOnline database. + + + + GermOnline ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the EMAGE database. + + + + EMAGE ID + + + + + + + + + beta12orEarlier + true + Accession number of an entry from a database of disease. + + + + Disease ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the HGVbase database. + + + + HGVbase ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry from the HIVDB database. + + HIVDB identifier + true + + + + + + + + + + beta12orEarlier + [*#+%^]?[0-9]{6} + Identifier of an entry from the OMIM database. + + + + OMIM ID + + + + + + + + + + + beta12orEarlier + Unique identifier of an object from one of the KEGG databases (excluding the GENES division). + + + + KEGG object identifier + + + + + + + + + + beta12orEarlier + REACT_[0-9]+(\.[0-9]+)? + Identifier of an entry from the Reactome database. + Reactome ID + + + + Pathway ID (reactome) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry from the aMAZE database. + + Pathway ID (aMAZE) + true + + + + + + + + + + + beta12orEarlier + Identifier of an pathway from the BioCyc biological pathways database. + BioCyc pathway ID + + + + Pathway ID (BioCyc) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the INOH database. + INOH identifier + + + + Pathway ID (INOH) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the PATIKA database. + PATIKA ID + + + + Pathway ID (PATIKA) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the CPDB (ConsensusPathDB) biological pathways database, which is an identifier from an external database integrated into CPDB. + CPDB ID + + + + This concept refers to identifiers used by the databases collated in CPDB; CPDB identifiers are not independently defined. + Pathway ID (CPDB) + + + + + + + + + + beta12orEarlier + PTHR[0-9]{5} + Identifier of a biological pathway from the Panther Pathways database. + Panther Pathways ID + + + + Pathway ID (Panther) + + + + + + + + + + + + + + + + beta12orEarlier + MIR:00100005 + MIR:[0-9]{8} + Unique identifier of a MIRIAM data resource. + + + + This is the identifier used internally by MIRIAM for a data type. + MIRIAM identifier + + + + + + + + + + + + + + + beta12orEarlier + The name of a data type from the MIRIAM database. + + + + MIRIAM data type name + + + + + + + + + + + + + + + + + beta12orEarlier + urn:miriam:pubmed:16333295|urn:miriam:obo.go:GO%3A0045202 + The URI (URL or URN) of a data entity from the MIRIAM database. + identifiers.org synonym + + + + A MIRIAM URI consists of the URI of the MIRIAM data type (PubMed, UniProt etc) followed by the identifier of an element of that data type, for example PMID for a publication or an accession number for a GO term. + MIRIAM URI + + + + + + + + + beta12orEarlier + UniProt|Enzyme Nomenclature + The primary name of a data type from the MIRIAM database. + + + + The primary name of a MIRIAM data type is taken from a controlled vocabulary. + MIRIAM data type primary name + + + + + UniProt|Enzyme Nomenclature + A protein entity has the MIRIAM data type 'UniProt', and an enzyme has the MIRIAM data type 'Enzyme Nomenclature'. + + + + + + + + + beta12orEarlier + A synonymous name of a data type from the MIRIAM database. + + + + A synonymous name for a MIRIAM data type taken from a controlled vocabulary. + MIRIAM data type synonymous name + + + + + + + + + + beta12orEarlier + Unique identifier of a Taverna workflow. + + + + Taverna workflow ID + + + + + + + + + + beta12orEarlier + Name of a biological (mathematical) model. + + + + Biological model name + + + + + + + + + + beta12orEarlier + (BIOMD|MODEL)[0-9]{10} + Unique identifier of an entry from the BioModel database. + + + + BioModel ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Chemical structure specified in PubChem Compound Identification (CID), a non-zero integer identifier for a unique chemical structure. + PubChem compound accession identifier + + + + PubChem CID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the ChemSpider database. + + + + ChemSpider ID + + + + + + + + + + beta12orEarlier + CHEBI:[0-9]+ + Identifier of an entry from the ChEBI database. + ChEBI IDs + ChEBI identifier + + + + ChEBI ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the BioPax ontology. + + + + BioPax concept ID + + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a concept from The Gene Ontology. + GO concept identifier + + + + GO concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the MeSH vocabulary. + + + + MeSH concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the HGNC controlled vocabulary. + + + + HGNC concept ID + + + + + + + + + + + beta12orEarlier + 9662|3483|182682 + [1-9][0-9]{0,8} + A stable unique identifier for each taxon (for a species, a family, an order, or any other group in the NCBI taxonomy database. + NCBI tax ID + NCBI taxonomy identifier + + + + NCBI taxonomy ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the Plant Ontology (PO). + + + + Plant Ontology concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the UMLS vocabulary. + + + + UMLS concept ID + + + + + + + + + + beta12orEarlier + FMA:[0-9]+ + An identifier of a concept from Foundational Model of Anatomy. + + + + Classifies anatomical entities according to their shared characteristics (genus) and distinguishing characteristics (differentia). Specifies the part-whole and spatial relationships of the entities, morphological transformation of the entities during prenatal development and the postnatal life cycle and principles, rules and definitions according to which classes and relationships in the other three components of FMA are represented. + FMA concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the EMAP mouse ontology. + + + + EMAP concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the ChEBI ontology. + + + + ChEBI concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the MGED ontology. + + + + MGED concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the myGrid ontology. + + + + The ontology is provided as two components, the service ontology and the domain ontology. The domain ontology acts provides concepts for core bioinformatics data types and their relations. The service ontology describes the physical and operational features of web services. + myGrid concept ID + + + + + + + + + + beta12orEarlier + 4963447 + [1-9][0-9]{0,8} + PubMed unique identifier of an article. + PMID + + + + PubMed ID + + + + + + + + + + beta12orEarlier + (doi\:)?[0-9]{2}\.[0-9]{4}/.* + Digital Object Identifier (DOI) of a published article. + Digital Object Identifier + + + + DOI + + + + + + + + + + beta12orEarlier + Medline UI (unique identifier) of an article. + Medline unique identifier + + + + The use of Medline UI has been replaced by the PubMed unique identifier. + Medline UI + + + + + + + + + beta12orEarlier + The name of a computer package, application, method or function. + + + + Tool name + + + + + + + + + beta12orEarlier + The unique name of a signature (sequence classifier) method. + + + + Signature methods from http://www.ebi.ac.uk/Tools/InterProScan/help.html#results include BlastProDom, FPrintScan, HMMPIR, HMMPfam, HMMSmart, HMMTigr, ProfileScan, ScanRegExp, SuperFamily and HAMAP. + Tool name (signature) + + + + + + + + + beta12orEarlier + The name of a BLAST tool. + BLAST name + + + + This include 'blastn', 'blastp', 'blastx', 'tblastn' and 'tblastx'. + Tool name (BLAST) + + + + + + + + + beta12orEarlier + The name of a FASTA tool. + + + + This includes 'fasta3', 'fastx3', 'fasty3', 'fastf3', 'fasts3' and 'ssearch'. + Tool name (FASTA) + + + + + + + + + beta12orEarlier + The name of an EMBOSS application. + + + + Tool name (EMBOSS) + + + + + + + + + beta12orEarlier + The name of an EMBASSY package. + + + + Tool name (EMBASSY package) + + + + + + + + + beta12orEarlier + A QSAR constitutional descriptor. + QSAR constitutional descriptor + + + QSAR descriptor (constitutional) + + + + + + + + + beta12orEarlier + A QSAR electronic descriptor. + QSAR electronic descriptor + + + QSAR descriptor (electronic) + + + + + + + + + beta12orEarlier + A QSAR geometrical descriptor. + QSAR geometrical descriptor + + + QSAR descriptor (geometrical) + + + + + + + + + beta12orEarlier + A QSAR topological descriptor. + QSAR topological descriptor + + + QSAR descriptor (topological) + + + + + + + + + beta12orEarlier + A QSAR molecular descriptor. + QSAR molecular descriptor + + + QSAR descriptor (molecular) + + + + + + + + + beta12orEarlier + Any collection of multiple protein sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries. + + + Sequence set (protein) + + + + + + + + + beta12orEarlier + Any collection of multiple nucleotide sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries. + + + Sequence set (nucleic acid) + + + + + + + + + + + + + + + beta12orEarlier + A set of sequences that have been clustered or otherwise classified as belonging to a group including (typically) sequence cluster information. + + + The cluster might include sequences identifiers, short descriptions, alignment and summary information. + Sequence cluster + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A file of intermediate results from a PSIBLAST search that is used for priming the search in the next PSIBLAST iteration. + + A Psiblast checkpoint file uses ASN.1 Binary Format and usually has the extension '.asn'. + Psiblast checkpoint file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Sequences generated by HMMER package in FASTA-style format. + + HMMER synthetic sequences set + true + + + + + + + + + + + + + + + beta12orEarlier + A protein sequence cleaved into peptide fragments (by enzymatic or chemical cleavage) with fragment masses. + + + Proteolytic digest + + + + + + + + + beta12orEarlier + SO:0000412 + Restriction digest fragments from digesting a nucleotide sequence with restriction sites using a restriction endonuclease. + + + Restriction digest + + + + + + + + + beta12orEarlier + Oligonucleotide primer(s) for PCR and DNA amplification, for example a minimal primer set. + + + PCR primers + + + + + + + + + beta12orEarlier + beta12orEarlier + + + File of sequence vectors used by EMBOSS vectorstrip application, or any file in same format. + + vectorstrip cloning vector definition file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A library of nucleotide sequences to avoid during hybridisation events. Hybridisation of the internal oligo to sequences in this library is avoided, rather than priming from them. The file is in a restricted FASTA format. + + Primer3 internal oligo mishybridizing library + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A nucleotide sequence library of sequences to avoid during amplification (for example repetitive sequences, or possibly the sequences of genes in a gene family that should not be amplified. The file must is in a restricted FASTA format. + + Primer3 mispriming library file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + File of one or more pairs of primer sequences, as used by EMBOSS primersearch application. + + primersearch primer pairs sequence record + true + + + + + + + + + + beta12orEarlier + A cluster of protein sequences. + Protein sequence cluster + + + The sequences are typically related, for example a family of sequences. + Sequence cluster (protein) + + + + + + + + + + beta12orEarlier + A cluster of nucleotide sequences. + Nucleotide sequence cluster + + + The sequences are typically related, for example a family of sequences. + Sequence cluster (nucleic acid) + + + + + + + + + beta12orEarlier + The size (length) of a sequence, subsequence or region in a sequence, or range(s) of lengths. + + + Sequence length + + + + + + + + + beta12orEarlier + 1.5 + + + Size of a sequence word. + + Word size is used for example in word-based sequence database search methods. + Word size + true + + + + + + + + + beta12orEarlier + 1.5 + + + Size of a sequence window. + + A window is a region of fixed size but not fixed position over a molecular sequence. It is typically moved (computationally) over a sequence during scoring. + Window size + true + + + + + + + + + beta12orEarlier + 1.5 + + + Specification of range(s) of length of sequences. + + Sequence length range + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Report on basic information about a molecular sequence such as name, accession number, type (nucleic or protein), length, description etc. + + + Sequence information report + true + + + + + + + + + beta12orEarlier + An informative report about non-positional sequence features, typically a report on general molecular sequence properties derived from sequence analysis. + Sequence properties report + + + Sequence property + + + + + + + + + beta12orEarlier + Annotation of positional features of molecular sequence(s), i.e. that can be mapped to position(s) in the sequence. + Feature record + Features + General sequence features + Sequence features report + SO:0000110 + + + This includes annotation of positional sequence features, organised into a standard feature table, or any other report of sequence features. General feature reports are a source of sequence feature table information although internal conversion would be required. + Sequence features + http://purl.bioontology.org/ontology/MSH/D058977 + + + + + + + + + beta12orEarlier + beta13 + + + Comparative data on sequence features such as statistics, intersections (and data on intersections), differences etc. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Sequence features (comparative) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report of general sequence properties derived from protein sequence data. + + Sequence property (protein) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report of general sequence properties derived from nucleotide sequence data. + + Sequence property (nucleic acid) + true + + + + + + + + + beta12orEarlier + A report on sequence complexity, for example low-complexity or repeat regions in sequences. + Sequence property (complexity) + + + Sequence complexity report + + + + + + + + + beta12orEarlier + A report on ambiguity in molecular sequence(s). + Sequence property (ambiguity) + + + Sequence ambiguity report + + + + + + + + + beta12orEarlier + A report (typically a table) on character or word composition / frequency of a molecular sequence(s). + Sequence composition + Sequence property (composition) + + + Sequence composition report + + + + + + + + + beta12orEarlier + A report on peptide fragments of certain molecular weight(s) in one or more protein sequences. + + + Peptide molecular weight hits + + + + + + + + + beta12orEarlier + A plot of third base position variability in a nucleotide sequence. + + + Base position variability plot + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A table of character or word composition / frequency of a molecular sequence. + + Sequence composition table + true + + + + + + + + + + beta12orEarlier + A table of base frequencies of a nucleotide sequence. + + + Base frequencies table + + + + + + + + + + beta12orEarlier + A table of word composition of a nucleotide sequence. + + + Base word frequencies table + + + + + + + + + + beta12orEarlier + A table of amino acid frequencies of a protein sequence. + Sequence composition (amino acid frequencies) + + + Amino acid frequencies table + + + + + + + + + + beta12orEarlier + A table of amino acid word composition of a protein sequence. + Sequence composition (amino acid words) + + + Amino acid word frequencies table + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation of a molecular sequence in DAS format. + + DAS sequence feature annotation + true + + + + + + + + + beta12orEarlier + Annotation of positional sequence features, organised into a standard feature table. + Sequence feature table + + + Feature table + + + + + + + + + + + + + + + beta12orEarlier + A map of (typically one) DNA sequence annotated with positional or non-positional features. + DNA map + + + Map + + + + + + + + + beta12orEarlier + An informative report on intrinsic positional features of a nucleotide sequence, formatted to be machine-readable. + Feature table (nucleic acid) + Nucleic acid feature table + Genome features + Genomic features + + + This includes nucleotide sequence feature annotation in any known sequence feature table format and any other report of nucleic acid features. + Nucleic acid features + + + + + + + + + + beta12orEarlier + An informative report on intrinsic positional features of a protein sequence. + Feature table (protein) + Protein feature table + + + This includes protein sequence feature annotation in any known sequence feature table format and any other report of protein features. + Protein features + + + + + + + + + beta12orEarlier + Moby:GeneticMap + A map showing the relative positions of genetic markers in a nucleic acid sequence, based on estimation of non-physical distance such as recombination frequencies. + Linkage map + + + A genetic (linkage) map indicates the proximity of two genes on a chromosome, whether two genes are linked and the frequency they are transmitted together to an offspring. They are limited to genetic markers of traits observable only in whole organisms. + Genetic map + + + + + + + + + beta12orEarlier + A map of genetic markers in a contiguous, assembled genomic sequence, with the sizes and separation of markers measured in base pairs. + + + A sequence map typically includes annotation on significant subsequences such as contigs, haplotypes and genes. The contigs shown will (typically) be a set of small overlapping clones representing a complete chromosomal segment. + Sequence map + + + + + + + + + beta12orEarlier + A map of DNA (linear or circular) annotated with physical features or landmarks such as restriction sites, cloned DNA fragments, genes or genetic markers, along with the physical distances between them. + + + Distance in a physical map is measured in base pairs. A physical map might be ordered relative to a reference map (typically a genetic map) in the process of genome sequencing. + Physical map + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image of a sequence with matches to signatures, motifs or profiles. + + + Sequence signature map + true + + + + + + + + + beta12orEarlier + A map showing banding patterns derived from direct observation of a stained chromosome. + Chromosome map + Cytogenic map + Cytologic map + + + This is the lowest-resolution physical map and can provide only rough estimates of physical (base pair) distances. Like a genetic map, they are limited to genetic markers of traits observable only in whole organisms. + Cytogenetic map + + + + + + + + + beta12orEarlier + A gene map showing distances between loci based on relative cotransduction frequencies. + + + DNA transduction map + + + + + + + + + beta12orEarlier + Sequence map of a single gene annotated with genetic features such as introns, exons, untranslated regions, polyA signals, promoters, enhancers and (possibly) mutations defining alleles of a gene. + + + Gene map + + + + + + + + + beta12orEarlier + Sequence map of a plasmid (circular DNA). + + + Plasmid map + + + + + + + + + beta12orEarlier + Sequence map of a whole genome. + + + Genome map + + + + + + + + + + beta12orEarlier + Image of the restriction enzyme cleavage sites (restriction sites) in a nucleic acid sequence. + + + Restriction map + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image showing matches between protein sequence(s) and InterPro Entries. + + + The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. Each protein is represented as a scaled horizontal line with colored bars indicating the position of the matches. + InterPro compact match image + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image showing detailed information on matches between protein sequence(s) and InterPro Entries. + + + The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. + InterPro detailed match image + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image showing the architecture of InterPro domains in a protein sequence. + + + The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. Domain architecture is shown as a series of non-overlapping domains in the protein. + InterPro architecture image + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + SMART protein schematic in PNG format. + + SMART protein schematic + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Images based on GlobPlot prediction of intrinsic disordered regions and globular domains in protein sequences. + + + GlobPlot domain image + true + + + + + + + + + beta12orEarlier + 1.8 + + Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more sequences. + + + Sequence motif matches + true + + + + + + + + + beta12orEarlier + 1.5 + + + Location of short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences. + + The report might include derived data map such as classification, annotation, organisation, periodicity etc. + Sequence features (repeats) + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on predicted or actual gene structure, regions which make an RNA product and features such as promoters, coding regions, splice sites etc. + + Gene and transcript structure (report) + true + + + + + + + + + beta12orEarlier + 1.8 + + regions of a nucleic acid sequence containing mobile genetic elements. + + + Mobile genetic elements + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on quadruplex-forming motifs in a nucleotide sequence. + + Nucleic acid features (quadruplexes) + true + + + + + + + + + beta12orEarlier + 1.8 + + Report on nucleosome formation potential or exclusion sequence(s). + + + Nucleosome exclusion sequences + true + + + + + + + + + beta12orEarlier + beta13 + + A report on exonic splicing enhancers (ESE) in an exon. + + + Gene features (exonic splicing enhancer) + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on microRNA sequence (miRNA) or precursor, microRNA targets, miRNA binding sites in an RNA sequence etc. + + Nucleic acid features (microRNA) + true + + + + + + + + + beta12orEarlier + 1.8 + + protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. + + + Coding region + true + + + + + + + + + beta12orEarlier + beta13 + + + A report on selenocysteine insertion sequence (SECIS) element in a DNA sequence. + + Gene features (SECIS element) + true + + + + + + + + + beta12orEarlier + 1.8 + + transcription factor binding sites (TFBS) in a DNA sequence. + + + Transcription factor binding sites + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on predicted or known key residue positions (sites) in a protein sequence, such as binding or functional sites. + + Use this concept for collections of specific sites which are not necessarily contiguous, rather than contiguous stretches of amino acids. + Protein features (sites) + true + + + + + + + + + beta12orEarlier + 1.8 + + signal peptides or signal peptide cleavage sites in protein sequences. + + + Protein features report (signal peptides) + true + + + + + + + + + beta12orEarlier + 1.8 + + cleavage sites (for a proteolytic enzyme or agent) in a protein sequence. + + + Protein features report (cleavage sites) + true + + + + + + + + + beta12orEarlier + 1.8 + + post-translation modifications in a protein sequence, typically describing the specific sites involved. + + + Protein features (post-translation modifications) + true + + + + + + + + + beta12orEarlier + 1.8 + + catalytic residues (active site) of an enzyme. + + + Protein features report (active sites) + true + + + + + + + + + beta12orEarlier + 1.8 + + ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids. + + + Protein features report (binding sites) + true + + + + + + + + + beta12orEarlier + beta13 + + A report on antigenic determinant sites (epitopes) in proteins, from sequence and / or structural data. + + + Epitope mapping is commonly done during vaccine design. + Protein features (epitopes) + true + + + + + + + + + beta12orEarlier + 1.8 + + RNA and DNA-binding proteins and binding sites in protein sequences. + + + Protein features report (nucleic acid binding sites) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on epitopes that bind to MHC class I molecules. + + MHC Class I epitopes report + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on predicted epitopes that bind to MHC class II molecules. + + MHC Class II epitopes report + true + + + + + + + + + beta12orEarlier + beta13 + + A report or plot of PEST sites in a protein sequence. + + + 'PEST' motifs target proteins for proteolytic degradation and reduce the half-lives of proteins dramatically. + Protein features (PEST sites) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Scores from a sequence database search (for example a BLAST search). + + Sequence database hits scores list + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignments from a sequence database search (for example a BLAST search). + + Sequence database hits alignments list + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on the evaluation of the significance of sequence similarity scores from a sequence database search (for example a BLAST search). + + Sequence database hits evaluation data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alphabet for the motifs (patterns) that MEME will search for. + + MEME motif alphabet + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + MEME background frequencies file. + + MEME background frequencies file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + File of directives for ordering and spacing of MEME motifs. + + MEME motifs directive file + true + + + + + + + + + beta12orEarlier + Dirichlet distribution used by hidden Markov model analysis programs. + + + Dirichlet distribution + + + + + + + + + beta12orEarlier + 1.4 + + + + Emission and transition counts of a hidden Markov model, generated once HMM has been determined, for example after residues/gaps have been assigned to match, delete and insert states. + + HMM emission and transition counts + true + + + + + + + + + beta12orEarlier + Regular expression pattern. + + + Regular expression + + + + + + + + + + + + + + + beta12orEarlier + Any specific or conserved pattern (typically expressed as a regular expression) in a molecular sequence. + + + Sequence motif + + + + + + + + + + + + + + + beta12orEarlier + Some type of statistical model representing a (typically multiple) sequence alignment. + + + Sequence profile + http://semanticscience.org/resource/SIO_010531 + + + + + + + + + beta12orEarlier + An informative report about a specific or conserved protein sequence pattern. + InterPro entry + Protein domain signature + Protein family signature + Protein region signature + Protein repeat signature + Protein site signature + + + Protein signature + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A nucleotide regular expression pattern from the Prosite database. + + Prosite nucleotide pattern + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A protein regular expression pattern from the Prosite database. + + Prosite protein pattern + true + + + + + + + + + beta12orEarlier + A profile (typically representing a sequence alignment) that is a simple matrix of nucleotide (or amino acid) counts per position. + PFM + + + Position frequency matrix + + + + + + + + + beta12orEarlier + A profile (typically representing a sequence alignment) that is weighted matrix of nucleotide (or amino acid) counts per position. + PWM + + + Contributions of individual sequences to the matrix might be uneven (weighted). + Position weight matrix + + + + + + + + + beta12orEarlier + A profile (typically representing a sequence alignment) derived from a matrix of nucleotide (or amino acid) counts per position that reflects information content at each position. + ICM + + + Information content matrix + + + + + + + + + beta12orEarlier + A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states. For example, a hidden Markov model representation of a set or alignment of sequences. + HMM + + + Hidden Markov model + + + + + + + + + beta12orEarlier + One or more fingerprints (sequence classifiers) as used in the PRINTS database. + + + Fingerprint + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A protein signature of the type used in the EMBASSY Signature package. + + Domainatrix signature + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + NULL hidden Markov model representation used by the HMMER package. + + HMMER NULL hidden Markov model + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein family signature (sequence classifier) from the InterPro database. + + Protein family signatures cover all domains in the matching proteins and span >80% of the protein length and with no adjacent protein domain signatures or protein region signatures. + Protein family signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein domain signature (sequence classifier) from the InterPro database. + + Protein domain signatures identify structural or functional domains or other units with defined boundaries. + Protein domain signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein region signature (sequence classifier) from the InterPro database. + + A protein region signature defines a region which cannot be described as a protein family or domain signature. + Protein region signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein repeat signature (sequence classifier) from the InterPro database. + + A protein repeat signature is a repeated protein motif, that is not in single copy expected to independently fold into a globular domain. + Protein repeat signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein site signature (sequence classifier) from the InterPro database. + + A protein site signature is a classifier for a specific site in a protein. + Protein site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein conserved site signature (sequence classifier) from the InterPro database. + + A protein conserved site signature is any short sequence pattern that may contain one or more unique residues and is cannot be described as a active site, binding site or post-translational modification. + Protein conserved site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein active site signature (sequence classifier) from the InterPro database. + + A protein active site signature corresponds to an enzyme catalytic pocket. An active site typically includes non-contiguous residues, therefore multiple signatures may be required to describe an active site. ; residues involved in enzymatic reactions for which mutational data is typically available. + Protein active site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein binding site signature (sequence classifier) from the InterPro database. + + A protein binding site signature corresponds to a site that reversibly binds chemical compounds, which are not themselves substrates of the enzymatic reaction. This includes enzyme cofactors and residues involved in electron transport or protein structure modification. + Protein binding site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein post-translational modification signature (sequence classifier) from the InterPro database. + + A protein post-translational modification signature corresponds to sites that undergo modification of the primary structure, typically to activate or de-activate a function. For example, methylation, sumoylation, glycosylation etc. The modification might be permanent or reversible. + Protein post-translational modification signature + true + + + + + + + + + beta12orEarlier + true + Alignment of exactly two molecular sequences. + Sequence alignment (pair) + + + Pair sequence alignment + http://semanticscience.org/resource/SIO_010068 + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of more than two molecular sequences. + + Sequence alignment (multiple) + true + + + + + + + + + beta12orEarlier + Alignment of multiple nucleotide sequences. + Sequence alignment (nucleic acid) + DNA sequence alignment + RNA sequence alignment + + + Nucleic acid sequence alignment + + + + + + + + + beta12orEarlier + Alignment of multiple protein sequences. + Sequence alignment (protein) + + + Protein sequence alignment + + + + + + + + + beta12orEarlier + Alignment of multiple molecular sequences of different types. + Sequence alignment (hybrid) + + + Hybrid sequence alignments include for example genomic DNA to EST, cDNA or mRNA. + Hybrid sequence alignment + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment of exactly two nucleotide sequences. + + Sequence alignment (nucleic acid pair) + true + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment of exactly two protein sequences. + + Sequence alignment (protein pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of exactly two molecular sequences of different types. + + Hybrid sequence alignment (pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of more than two nucleotide sequences. + + Multiple nucleotide sequence alignment + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of more than two protein sequences. + + Multiple protein sequence alignment + true + + + + + + + + + beta12orEarlier + A simple floating point number defining the penalty for opening or extending a gap in an alignment. + + + Alignment score or penalty + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Whether end gaps are scored or not. + + Score end gaps control + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controls the order of sequences in an output sequence alignment. + + Aligned sequence order + true + + + + + + + + + beta12orEarlier + A penalty for opening a gap in an alignment. + + + Gap opening penalty + + + + + + + + + beta12orEarlier + A penalty for extending a gap in an alignment. + + + Gap extension penalty + + + + + + + + + beta12orEarlier + A penalty for gaps that are close together in an alignment. + + + Gap separation penalty + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + A penalty for gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences. + + Terminal gap penalty + true + + + + + + + + + beta12orEarlier + The score for a 'match' used in various sequence database search applications with simple scoring schemes. + + + Match reward score + + + + + + + + + beta12orEarlier + The score (penalty) for a 'mismatch' used in various alignment and sequence database search applications with simple scoring schemes. + + + Mismatch penalty score + + + + + + + + + beta12orEarlier + This is the threshold drop in score at which extension of word alignment is halted. + + + Drop off score + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for opening a gap in an alignment. + + Gap opening penalty (integer) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for opening a gap in an alignment. + + Gap opening penalty (float) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for extending a gap in an alignment. + + Gap extension penalty (integer) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for extending a gap in an alignment. + + Gap extension penalty (float) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for gaps that are close together in an alignment. + + Gap separation penalty (integer) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for gaps that are close together in an alignment. + + Gap separation penalty (float) + true + + + + + + + + + beta12orEarlier + A number defining the penalty for opening gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences. + + + Terminal gap opening penalty + + + + + + + + + beta12orEarlier + A number defining the penalty for extending gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences. + + + Terminal gap extension penalty + + + + + + + + + beta12orEarlier + Sequence identity is the number (%) of matches (identical characters) in positions from an alignment of two molecular sequences. + + + Sequence identity + + + + + + + + + beta12orEarlier + Sequence similarity is the similarity (expressed as a percentage) of two molecular sequences calculated from their alignment, a scoring matrix for scoring characters substitutions and penalties for gap insertion and extension. + + + Data Type is float probably. + Sequence similarity + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data on molecular sequence alignment quality (estimated accuracy). + + Sequence alignment metadata (quality report) + true + + + + + + + + + beta12orEarlier + 1.4 + + + Data on character conservation in a molecular sequence alignment. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. Use this concept for calculated substitution rates, relative site variability, data on sites with biased properties, highly conserved or very poorly conserved sites, regions, blocks etc. + Sequence alignment report (site conservation) + true + + + + + + + + + beta12orEarlier + 1.4 + + + Data on correlations between sites in a molecular sequence alignment, typically to identify possible covarying positions and predict contacts or structural constraints in protein structures. + + Sequence alignment report (site correlation) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of molecular sequences to a Domainatrix signature (representing a sequence alignment). + + Sequence-profile alignment (Domainatrix signature) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment of molecular sequence(s) to a hidden Markov model(s). + + Sequence-profile alignment (HMM) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment of molecular sequences to a protein fingerprint from the PRINTS database. + + Sequence-profile alignment (fingerprint) + true + + + + + + + + + beta12orEarlier + Continuous quantitative data that may be read during phylogenetic tree calculation. + Phylogenetic continuous quantitative characters + Quantitative traits + + + Phylogenetic continuous quantitative data + + + + + + + + + beta12orEarlier + Character data with discrete states that may be read during phylogenetic tree calculation. + Discrete characters + Discretely coded characters + Phylogenetic discrete states + + + Phylogenetic discrete data + + + + + + + + + beta12orEarlier + One or more cliques of mutually compatible characters that are generated, for example from analysis of discrete character data, and are used to generate a phylogeny. + Phylogenetic report (cliques) + + + Phylogenetic character cliques + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic invariants data for testing alternative tree topologies. + Phylogenetic report (invariants) + + + Phylogenetic invariants + + + + + + + + + beta12orEarlier + 1.5 + + + A report of data concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees. + + This is a broad data type and is used for example for reports on confidence, shape or stratigraphic (age) data derived from phylogenetic tree analysis. + Phylogenetic report + true + + + + + + + + + beta12orEarlier + A model of DNA substitution that explains a DNA sequence alignment, derived from phylogenetic tree analysis. + Phylogenetic tree report (DNA substitution model) + Sequence alignment report (DNA substitution model) + Substitution model + + + DNA substitution model + + + + + + + + + beta12orEarlier + 1.4 + + + Data about the shape of a phylogenetic tree. + + Phylogenetic tree report (tree shape) + true + + + + + + + + + beta12orEarlier + 1.4 + + + Data on the confidence of a phylogenetic tree. + + Phylogenetic tree report (tree evaluation) + true + + + + + + + + + beta12orEarlier + Distances, such as Branch Score distance, between two or more phylogenetic trees. + Phylogenetic tree report (tree distances) + + + Phylogenetic tree distances + + + + + + + + + beta12orEarlier + 1.4 + + + Molecular clock and stratigraphic (age) data derived from phylogenetic tree analysis. + + Phylogenetic tree report (tree stratigraphic) + true + + + + + + + + + beta12orEarlier + Independent contrasts for characters used in a phylogenetic tree, or covariances, regressions and correlations between characters for those contrasts. + Phylogenetic report (character contrasts) + + + Phylogenetic character contrasts + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of integer numbers for sequence comparison. + + Comparison matrix (integers) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of floating point numbers for sequence comparison. + + Comparison matrix (floats) + true + + + + + + + + + beta12orEarlier + Matrix of integer or floating point numbers for nucleotide comparison. + Nucleotide comparison matrix + Nucleotide substitution matrix + + + Comparison matrix (nucleotide) + + + + + + + + + + beta12orEarlier + Matrix of integer or floating point numbers for amino acid comparison. + Amino acid comparison matrix + Amino acid substitution matrix + + + Comparison matrix (amino acid) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of integer numbers for nucleotide comparison. + + Nucleotide comparison matrix (integers) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of floating point numbers for nucleotide comparison. + + Nucleotide comparison matrix (floats) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of integer numbers for amino acid comparison. + + Amino acid comparison matrix (integers) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of floating point numbers for amino acid comparison. + + Amino acid comparison matrix (floats) + true + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a nucleic acid tertiary (3D) structure. + + + Nucleic acid structure + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a protein tertiary (3D) structure, or part of a structure, possibly in complex with other molecules. + Protein structures + + + Protein structure + + + + + + + + + beta12orEarlier + The structure of a protein in complex with a ligand, typically a small molecule such as an enzyme substrate or cofactor, but possibly another macromolecule. + + + This includes interactions of proteins with atoms, ions and small molecules or macromolecules such as nucleic acids or other polypeptides. For stable inter-polypeptide interactions use 'Protein complex' instead. + Protein-ligand complex + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a carbohydrate (3D) structure. + + + Carbohydrate structure + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the (3D) structure of a small molecule, such as any common chemical compound. + CHEBI:23367 + + + Small molecule structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a DNA tertiary (3D) structure. + + + DNA structure + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for an RNA tertiary (3D) structure. + + + RNA structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a tRNA tertiary (3D) structure, including tmRNA, snoRNAs etc. + + + tRNA structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the tertiary (3D) structure of a polypeptide chain. + + + Protein chain + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the tertiary (3D) structure of a protein domain. + + + Protein domain + + + + + + + + + beta12orEarlier + 1.5 + + + 3D coordinate and associated data for a protein tertiary (3D) structure (all atoms). + + Protein structure (all atoms) + true + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a protein tertiary (3D) structure (typically C-alpha atoms only). + Protein structure (C-alpha atoms) + + + C-beta atoms from amino acid side-chains may be included. + C-alpha trace + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (all atoms). + + Protein chain (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (typically C-alpha atoms only). + + C-beta atoms from amino acid side-chains may be included. + Protein chain (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a protein domain tertiary (3D) structure (all atoms). + + Protein domain (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a protein domain tertiary (3D) structure (typically C-alpha atoms only). + + C-beta atoms from amino acid side-chains may be included. + Protein domain (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + Alignment (superimposition) of exactly two molecular tertiary (3D) structures. + Pair structure alignment + + + Structure alignment (pair) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of more than two molecular tertiary (3D) structures. + + Structure alignment (multiple) + true + + + + + + + + + beta12orEarlier + Alignment (superimposition) of protein tertiary (3D) structures. + Structure alignment (protein) + + + Protein structure alignment + + + + + + + + + beta12orEarlier + Alignment (superimposition) of nucleic acid tertiary (3D) structures. + Structure alignment (nucleic acid) + + + Nucleic acid structure alignment + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures. + + Structure alignment (protein pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of more than two protein tertiary (3D) structures. + + Multiple protein tertiary structure alignment + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment (superimposition) of protein tertiary (3D) structures (all atoms considered). + + Structure alignment (protein all atoms) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment (superimposition) of protein tertiary (3D) structures (typically C-alpha atoms only considered). + + C-beta atoms from amino acid side-chains may be considered. + Structure alignment (protein C-alpha atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered). + + Pairwise protein tertiary structure alignment (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered). + + C-beta atoms from amino acid side-chains may be included. + Pairwise protein tertiary structure alignment (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered). + + Multiple protein tertiary structure alignment (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered). + + C-beta atoms from amino acid side-chains may be included. + Multiple protein tertiary structure alignment (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment (superimposition) of exactly two nucleic acid tertiary (3D) structures. + + Structure alignment (nucleic acid pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of more than two nucleic acid tertiary (3D) structures. + + Multiple nucleic acid tertiary structure alignment + true + + + + + + + + + beta12orEarlier + Alignment (superimposition) of RNA tertiary (3D) structures. + Structure alignment (RNA) + + + RNA structure alignment + + + + + + + + + beta12orEarlier + Matrix to transform (rotate/translate) 3D coordinates, typically the transformation necessary to superimpose two molecular structures. + + + Structural transformation matrix + + + + + + + + + beta12orEarlier + beta12orEarlier + + + DaliLite hit table of protein chain tertiary structure alignment data. + + The significant and top-scoring hits for regions of the compared structures is shown. Data such as Z-Scores, number of aligned residues, root-mean-square deviation (RMSD) of atoms and sequence identity are given. + DaliLite hit table + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A score reflecting structural similarities of two molecules. + + Molecular similarity score + true + + + + + + + + + beta12orEarlier + Root-mean-square deviation (RMSD) is calculated to measure the average distance between superimposed macromolecular coordinates. + RMSD + + + Root-mean-square deviation + + + + + + + + + beta12orEarlier + A measure of the similarity between two ligand fingerprints. + + + A ligand fingerprint is derived from ligand structural data from a Protein DataBank file. It reflects the elements or groups present or absent, covalent bonds and bond orders and the bonded environment in terms of SATIS codes and BLEEP atom types. + Tanimoto similarity score + + + + + + + + + beta12orEarlier + A matrix of 3D-1D scores reflecting the probability of amino acids to occur in different tertiary structural environments. + + + 3D-1D scoring matrix + + + + + + + + + + beta12orEarlier + A table of 20 numerical values which quantify a property (e.g. physicochemical or biochemical) of the common amino acids. + + + Amino acid index + + + + + + + + + beta12orEarlier + Chemical classification (small, aliphatic, aromatic, polar, charged etc) of amino acids. + Chemical classes (amino acids) + + + Amino acid index (chemical classes) + + + + + + + + + beta12orEarlier + Statistical protein contact potentials. + Contact potentials (amino acid pair-wise) + + + Amino acid pair-wise contact potentials + + + + + + + + + beta12orEarlier + Molecular weights of amino acids. + Molecular weight (amino acids) + + + Amino acid index (molecular weight) + + + + + + + + + beta12orEarlier + Hydrophobic, hydrophilic or charge properties of amino acids. + Hydropathy (amino acids) + + + Amino acid index (hydropathy) + + + + + + + + + beta12orEarlier + Experimental free energy values for the water-interface and water-octanol transitions for the amino acids. + White-Wimley data (amino acids) + + + Amino acid index (White-Wimley data) + + + + + + + + + beta12orEarlier + Van der Waals radii of atoms for different amino acid residues. + van der Waals radii (amino acids) + + + Amino acid index (van der Waals radii) + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on a specific enzyme. + + Enzyme report + true + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on a specific restriction enzyme such as enzyme reference data. + + This might include name of enzyme, organism, isoschizomers, methylation, source, suppliers, literature references, or data on restriction enzyme patterns such as name of enzyme, recognition site, length of pattern, number of cuts made by enzyme, details of blunt or sticky end cut etc. + Restriction enzyme report + true + + + + + + + + + beta12orEarlier + List of molecular weight(s) of one or more proteins or peptides, for example cut by proteolytic enzymes or reagents. + + + The report might include associated data such as frequency of peptide fragment molecular weights. + Peptide molecular weights + + + + + + + + + beta12orEarlier + Report on the hydrophobic moment of a polypeptide sequence. + + + Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation. + Peptide hydrophobic moment + + + + + + + + + beta12orEarlier + The aliphatic index of a protein. + + + The aliphatic index is the relative protein volume occupied by aliphatic side chains. + Protein aliphatic index + + + + + + + + + beta12orEarlier + A protein sequence with annotation on hydrophobic or hydrophilic / charged regions, hydrophobicity plot etc. + + + Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation. + Protein sequence hydropathy plot + + + + + + + + + beta12orEarlier + A plot of the mean charge of the amino acids within a window of specified length as the window is moved along a protein sequence. + + + Protein charge plot + + + + + + + + + beta12orEarlier + The solubility or atomic solvation energy of a protein sequence or structure. + Protein solubility data + + + Protein solubility + + + + + + + + + beta12orEarlier + Data on the crystallizability of a protein sequence. + Protein crystallizability data + + + Protein crystallizability + + + + + + + + + beta12orEarlier + Data on the stability, intrinsic disorder or globularity of a protein sequence. + Protein globularity data + + + Protein globularity + + + + + + + + + + beta12orEarlier + The titration curve of a protein. + + + Protein titration curve + + + + + + + + + beta12orEarlier + The isoelectric point of one proteins. + + + Protein isoelectric point + + + + + + + + + beta12orEarlier + The pKa value of a protein. + + + Protein pKa value + + + + + + + + + beta12orEarlier + The hydrogen exchange rate of a protein. + + + Protein hydrogen exchange rate + + + + + + + + + beta12orEarlier + The extinction coefficient of a protein. + + + Protein extinction coefficient + + + + + + + + + beta12orEarlier + The optical density of a protein. + + + Protein optical density + + + + + + + + + beta12orEarlier + beta13 + + + An informative report on protein subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or destination (exported / extracellular proteins). + + Protein subcellular localisation + true + + + + + + + + + beta12orEarlier + An report on allergenicity / immunogenicity of peptides and proteins. + Peptide immunogenicity + Peptide immunogenicity report + + + This includes data on peptide ligands that elicit an immune response (immunogens), allergic cross-reactivity, predicted antigenicity (Hopp and Woods plot) etc. These data are useful in the development of peptide-specific antibodies or multi-epitope vaccines. Methods might use sequence data (for example motifs) and / or structural data. + Peptide immunogenicity data + + + + + + + + + beta12orEarlier + beta13 + + + A report on the immunogenicity of MHC class I or class II binding peptides. + + MHC peptide immunogenicity report + true + + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific protein 3D structure(s) or structural domains. + Protein property (structural) + Protein report (structure) + Protein structural property + Protein structure report (domain) + Protein structure-derived report + + + Protein structure report + + + + + + + + + beta12orEarlier + Report on the quality of a protein three-dimensional model. + Protein property (structural quality) + Protein report (structural quality) + Protein structure report (quality evaluation) + Protein structure validation report + + + Model validation might involve checks for atomic packing, steric clashes, agreement with electron density maps etc. + Protein structural quality report + + + + + + + + + beta12orEarlier + 1.12 + + Data on inter-atomic or inter-residue contacts, distances and interactions in protein structure(s) or on the interactions of protein atoms or residues with non-protein groups. + + + Protein non-covalent interactions report + true + + + + + + + + + beta12orEarlier + 1.4 + + + Informative report on flexibility or motion of a protein structure. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein flexibility or motion report + true + + + + + + + + + beta12orEarlier + Data on the solvent accessible or buried surface area of a protein structure. + + + This concept covers definitions of the protein surface, interior and interfaces, accessible and buried residues, surface accessible pockets, interior inaccessible cavities etc. + Protein solvent accessibility + + + + + + + + + beta12orEarlier + 1.4 + + + Data on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein surface report + true + + + + + + + + + beta12orEarlier + Phi/psi angle data or a Ramachandran plot of a protein structure. + + + Ramachandran plot + + + + + + + + + beta12orEarlier + Data on the net charge distribution (dipole moment) of a protein structure. + + + Protein dipole moment + + + + + + + + + + beta12orEarlier + A matrix of distances between amino acid residues (for example the C-alpha atoms) in a protein structure. + + + Protein distance matrix + + + + + + + + + beta12orEarlier + An amino acid residue contact map for a protein structure. + + + Protein contact map + + + + + + + + + beta12orEarlier + Report on clusters of contacting residues in protein structures such as a key structural residue network. + + + Protein residue 3D cluster + + + + + + + + + beta12orEarlier + Patterns of hydrogen bonding in protein structures. + + + Protein hydrogen bonds + + + + + + + + + beta12orEarlier + 1.4 + + + Non-canonical atomic interactions in protein structures. + + Protein non-canonical interactions + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a node from the CATH database. + + The report (for example http://www.cathdb.info/cathnode/1.10.10.10) includes CATH code (of the node and upper levels in the hierarchy), classification text (of appropriate levels in hierarchy), list of child nodes, representative domain and other relevant data and links. + CATH node + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a node from the SCOP database. + + SCOP node + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + An EMBASSY domain classification file (DCF) of classification and other data for domains from SCOP or CATH, in EMBL-like format. + + + EMBASSY domain classification + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'class' node from the CATH database. + + CATH class + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'architecture' node from the CATH database. + + CATH architecture + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'topology' node from the CATH database. + + CATH topology + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'homologous superfamily' node from the CATH database. + + CATH homologous superfamily + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'structurally similar group' node from the CATH database. + + CATH structurally similar group + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'functional category' node from the CATH database. + + CATH functional category + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on known protein structural domains or folds that are recognised (identified) in protein sequence(s). + + Methods use some type of mapping between sequence and fold, for example secondary structure prediction and alignment, profile comparison, sequence properties, homologous sequence search, kernel machines etc. Domains and folds might be taken from SCOP or CATH. + Protein fold recognition report + true + + + + + + + + + beta12orEarlier + 1.8 + + protein-protein interaction(s), including interactions between protein domains. + + + Protein-protein interaction report + true + + + + + + + + + beta12orEarlier + An informative report on protein-ligand (small molecule) interaction(s). + Protein-drug interaction report + + + Protein-ligand interaction report + + + + + + + + + beta12orEarlier + 1.8 + + protein-DNA/RNA interaction(s). + + + Protein-nucleic acid interactions report + true + + + + + + + + + beta12orEarlier + Nucleic acid melting curve: a melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Shows the proportion of nucleic acid which are double-stranded versus temperature. + Nucleic acid probability profile: a probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Shows the probability of a base pair not being melted (i.e. remaining as double-stranded DNA) at a specified temperature + Nucleic acid stitch profile: stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA). A stitch profile diagram shows partly melted DNA conformations (with probabilities) at a range of temperatures. For example, a stitch profile might show possible loop openings with their location, size, probability and fluctuations at a given temperature. + Nucleic acid temperature profile: a temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Plots melting temperature versus base position. + Data on the dissociation characteristics of a double-stranded nucleic acid molecule (DNA or a DNA/RNA hybrid) during heating. + Nucleic acid stability profile + Melting map + Nucleic acid melting curve + + + A melting (stability) profile calculated the free energy required to unwind and separate the nucleic acid strands, plotted for sliding windows over a sequence. + Nucleic acid melting profile + + + + + + + + + beta12orEarlier + Enthalpy of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + + Nucleic acid enthalpy + + + + + + + + + beta12orEarlier + Entropy of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + + Nucleic acid entropy + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Melting temperature of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + Nucleic acid melting temperature + true + + + + + + + + + beta12orEarlier + 1.21 + + Stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + + Nucleic acid stitch profile + true + + + + + + + + + beta12orEarlier + DNA base pair stacking energies data. + + + DNA base pair stacking energies data + + + + + + + + + beta12orEarlier + DNA base pair twist angle data. + + + DNA base pair twist angle data + + + + + + + + + beta12orEarlier + DNA base trimer roll angles data. + + + DNA base trimer roll angles data + + + + + + + + + beta12orEarlier + beta12orEarlier + + + RNA parameters used by the Vienna package. + + Vienna RNA parameters + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Structure constraints used by the Vienna package. + + Vienna RNA structure constraints + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + RNA concentration data used by the Vienna package. + + Vienna RNA concentration data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + RNA calculated energy data generated by the Vienna package. + + Vienna RNA calculated energy + true + + + + + + + + + + beta12orEarlier + Dotplot of RNA base pairing probability matrix. + + + Such as generated by the Vienna package. + Base pairing probability matrix dotplot + + + + + + + + + beta12orEarlier + A human-readable collection of information about RNA/DNA folding, minimum folding energies for DNA or RNA sequences, energy landscape of RNA mutants etc. + Nucleic acid report (folding model) + Nucleic acid report (folding) + RNA secondary structure folding classification + RNA secondary structure folding probabilities + + + Nucleic acid folding report + + + + + + + + + + + + + + + beta12orEarlier + Table of codon usage data calculated from one or more nucleic acid sequences. + + + A codon usage table might include the codon usage table name, optional comments and a table with columns for codons and corresponding codon usage data. A genetic code can be extracted from or represented by a codon usage table. + Codon usage table + + + + + + + + + beta12orEarlier + A genetic code for an organism. + + + A genetic code need not include detailed codon usage information. + Genetic code + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple measure of synonymous codon usage bias often used to predict gene expression levels. + + Codon adaptation index + true + + + + + + + + + beta12orEarlier + A plot of the synonymous codon usage calculated for windows over a nucleotide sequence. + Synonymous codon usage statistic plot + + + Codon usage bias plot + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The effective number of codons used in a gene sequence. This reflects how far codon usage of a gene departs from equal usage of synonymous codons. + + Nc statistic + true + + + + + + + + + beta12orEarlier + The differences in codon usage fractions between two codon usage tables. + + + Codon usage fraction difference + + + + + + + + + beta12orEarlier + A human-readable collection of information about the influence of genotype on drug response. + + + The report might correlate gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity. + Pharmacogenomic test report + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific disease. + + + For example, an informative report on a specific tumor including nature and origin of the sample, anatomic site, organ or tissue, tumor type, including morphology and/or histologic type, and so on. + Disease report + + + + + + + + + beta12orEarlier + 1.8 + + A report on linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome). + + + Linkage disequilibrium (report) + true + + + + + + + + + + beta12orEarlier + A graphical 2D tabular representation of expression data, typically derived from an omics experiment. A heat map is a table where rows and columns correspond to different features and contexts (for example, cells or samples) and the cell colour represents the level of expression of a gene that context. + + + Heat map + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Affymetrix library file of information about which probes belong to which probe set. + + Affymetrix probe sets library file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Affymetrix library file of information about the probe sets such as the gene name with which the probe set is associated. + GIN file + + Affymetrix probe sets information library file + true + + + + + + + + + beta12orEarlier + 1.12 + + Standard protonated molecular masses from trypsin (modified porcine trypsin, Promega) and keratin peptides, used in EMBOSS. + + + Molecular weights standard fingerprint + true + + + + + + + + + beta12orEarlier + 1.8 + + A report typically including a map (diagram) of a metabolic pathway. + + + This includes carbohydrate, energy, lipid, nucleotide, amino acid, glycan, PK/NRP, cofactor/vitamin, secondary metabolite, xenobiotics etc. + Metabolic pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + genetic information processing pathways. + + + Genetic information processing pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + environmental information processing pathways. + + + Environmental information processing pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + A report typically including a map (diagram) of a signal transduction pathway. + + + Signal transduction pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + Topic concernning cellular process pathways. + + + Cellular process pathways report + true + + + + + + + + + beta12orEarlier + 1.8 + + disease pathways, typically of human disease. + + + Disease pathway or network report + true + + + + + + + + + beta12orEarlier + 1.21 + + A report typically including a map (diagram) of drug structure relationships. + + + Drug structure relationship map + true + + + + + + + + + beta12orEarlier + 1.8 + + + networks of protein interactions. + + Protein interaction networks + true + + + + + + + + + beta12orEarlier + 1.5 + + + An entry (data type) from the Minimal Information Requested in the Annotation of Biochemical Models (MIRIAM) database of data resources. + + A MIRIAM entry describes a MIRIAM data type including the official name, synonyms, root URI, identifier pattern (regular expression applied to a unique identifier of the data type) and documentation. Each data type can be associated with several resources. Each resource is a physical location of a service (typically a database) providing information on the elements of a data type. Several resources may exist for each data type, provided the same (mirrors) or different information. MIRIAM provides a stable and persistent reference to its data types. + MIRIAM datatype + true + + + + + + + + + beta12orEarlier + A simple floating point number defining the lower or upper limit of an expectation value (E-value). + Expectation value + + + An expectation value (E-Value) is the expected number of observations which are at least as extreme as observations expected to occur by random chance. The E-value describes the number of hits with a given score or better that are expected to occur at random when searching a database of a particular size. It decreases exponentially with the score (S) of a hit. A low E value indicates a more significant score. + E-value + + + + + + + + + beta12orEarlier + The z-value is the number of standard deviations a data value is above or below a mean value. + + + A z-value might be specified as a threshold for reporting hits from database searches. + Z-value + + + + + + + + + beta12orEarlier + The P-value is the probability of obtaining by random chance a result that is at least as extreme as an observed result, assuming a NULL hypothesis is true. + + + A z-value might be specified as a threshold for reporting hits from database searches. + P-value + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a database (or ontology) version, for example name, version number and release date. + + Database version information + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on an application version, for example name, version number and release date. + + Tool version information + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Information on a version of the CATH database. + + CATH version information + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Cross-mapping of Swiss-Prot codes to PDB identifiers. + + Swiss-Prot to PDB mapping + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Cross-references from a sequence record to other databases. + + Sequence database cross-references + true + + + + + + + + + beta12orEarlier + 1.5 + + + Metadata on the status of a submitted job. + + Values for EBI services are 'DONE' (job has finished and the results can then be retrieved), 'ERROR' (the job failed or no results where found), 'NOT_FOUND' (the job id is no longer available; job results might be deleted, 'PENDING' (the job is in a queue waiting processing), 'RUNNING' (the job is currently being processed). + Job status + true + + + + + + + + + beta12orEarlier + 1.0 + + + The (typically numeric) unique identifier of a submitted job. + + Job ID + true + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of job, for example interactive or non-interactive. + + Job type + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report of tool-specific metadata on some analysis or process performed, for example a log of diagnostic or error messages. + + Tool log + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + DaliLite log file describing all the steps taken by a DaliLite alignment of two protein structures. + + DaliLite log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + STRIDE log file. + + STRIDE log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + NACCESS log file. + + NACCESS log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS wordfinder log file. + + EMBOSS wordfinder log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS (EMBASSY) domainatrix application log file. + + EMBOSS domainatrix log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS (EMBASSY) sites application log file. + + EMBOSS sites log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS (EMBASSY) supermatcher error file. + + EMBOSS supermatcher error file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS megamerger log file. + + EMBOSS megamerger log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS megamerger log file. + + EMBOSS whichdb log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS vectorstrip log file. + + EMBOSS vectorstrip log file + true + + + + + + + + + beta12orEarlier + A username on a computer system or a website. + + + + Username + + + + + + + + + beta12orEarlier + A password on a computer system, or a website. + + + + Password + + + + + + + + + beta12orEarlier + Moby:Email + Moby:EmailAddress + A valid email address of an end-user. + + + + Email address + + + + + + + + + beta12orEarlier + The name of a person. + + + + Person name + + + + + + + + + beta12orEarlier + 1.5 + + + Number of iterations of an algorithm. + + Number of iterations + true + + + + + + + + + beta12orEarlier + 1.5 + + + Number of entities (for example database hits, sequences, alignments etc) to write to an output file. + + Number of output entities + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controls the order of hits (reported matches) in an output file from a database search. + + Hit sort order + true + + + + + + + + + + + + + + + beta12orEarlier + A drug structure relationship map is report (typically a map diagram) of drug structure relationships. + A human-readable collection of information about a specific drug. + Drug annotation + Drug structure relationship map + + + Drug report + + + + + + + + + beta12orEarlier + An image (for viewing or printing) of a phylogenetic tree including (typically) a plot of rooted or unrooted phylogenies, cladograms, circular trees or phenograms and associated information. + + + See also 'Phylogenetic tree' + Phylogenetic tree image + + + + + + + + + beta12orEarlier + Image of RNA secondary structure, knots, pseudoknots etc. + + + RNA secondary structure image + + + + + + + + + beta12orEarlier + Image of protein secondary structure. + + + Protein secondary structure image + + + + + + + + + beta12orEarlier + Image of one or more molecular tertiary (3D) structures. + + + Structure image + + + + + + + + + beta12orEarlier + Image of two or more aligned molecular sequences possibly annotated with alignment features. + + + Sequence alignment image + + + + + + + + + beta12orEarlier + An image of the structure of a small chemical compound. + Small molecule structure image + Chemical structure sketch + Small molecule sketch + + + The molecular identifier and formula are typically included. + Chemical structure image + + + + + + + + + + + + + + + beta12orEarlier + A fate map is a plan of early stage of an embryo such as a blastula, showing areas that are significance to development. + + + Fate map + + + + + + + + + + beta12orEarlier + An image of spots from a microarray experiment. + + + Microarray spots image + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the BioPax ontology. + + BioPax term + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition from The Gene Ontology (GO). + + GO + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the MeSH vocabulary. + + MeSH + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the HGNC controlled vocabulary. + + HGNC + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the NCBI taxonomy vocabulary. + + NCBI taxonomy vocabulary + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the Plant Ontology (PO). + + Plant ontology term + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the UMLS vocabulary. + + UMLS + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from Foundational Model of Anatomy. + + Classifies anatomical entities according to their shared characteristics (genus) and distinguishing characteristics (differentia). Specifies the part-whole and spatial relationships of the entities, morphological transformation of the entities during prenatal development and the postnatal life cycle and principles, rules and definitions according to which classes and relationships in the other three components of FMA are represented. + FMA + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the EMAP mouse ontology. + + EMAP + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the ChEBI ontology. + + ChEBI + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the MGED ontology. + + MGED + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the myGrid ontology. + + The ontology is provided as two components, the service ontology and the domain ontology. The domain ontology acts provides concepts for core bioinformatics data types and their relations. The service ontology describes the physical and operational features of web services. + myGrid + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition for a biological process from the Gene Ontology (GO). + + Data Type is an enumerated string. + GO (biological process) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition for a molecular function from the Gene Ontology (GO). + + Data Type is an enumerated string. + GO (molecular function) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition for a cellular component from the Gene Ontology (GO). + + Data Type is an enumerated string. + GO (cellular component) + true + + + + + + + + + beta12orEarlier + 1.5 + + + A relation type defined in an ontology. + + Ontology relation type + true + + + + + + + + + beta12orEarlier + The definition of a concept from an ontology. + Ontology class definition + + + Ontology concept definition + + + + + + + + + beta12orEarlier + 1.4 + + + A comment on a concept from an ontology. + + Ontology concept comment + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Reference for a concept from an ontology. + + Ontology concept reference + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Information on a published article provided by the doc2loc program. + + The doc2loc output includes the url, format, type and availability code of a document for every service provider. + doc2loc document information + true + + + + + + + + + beta12orEarlier + PDBML:PDB_residue_no + WHATIF: pdb_number + A residue identifier (a string) from a PDB file. + + + PDB residue number + + + + + + + + + beta12orEarlier + Cartesian coordinate of an atom (in a molecular structure). + Cartesian coordinate + + + Atomic coordinate + + + + + + + + + beta12orEarlier + 1.21 + + Cartesian x coordinate of an atom (in a molecular structure). + + + Atomic x coordinate + true + + + + + + + + + beta12orEarlier + 1.21 + + Cartesian y coordinate of an atom (in a molecular structure). + + + Atomic y coordinate + true + + + + + + + + + beta12orEarlier + 1.21 + + Cartesian z coordinate of an atom (in a molecular structure). + + + Atomic z coordinate + true + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_atom_name + WHATIF: PDBx_auth_atom_id + WHATIF: PDBx_type_symbol + WHATIF: alternate_atom + WHATIF: atom_type + Identifier (a string) of a specific atom from a PDB file for a molecular structure. + + + + PDB atom name + + + + + + + + + beta12orEarlier + Data on a single atom from a protein structure. + Atom data + CHEBI:33250 + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein atom + + + + + + + + + beta12orEarlier + Data on a single amino acid residue position in a protein structure. + Residue + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein residue + + + + + + + + + + beta12orEarlier + Name of an atom. + + + + Atom name + + + + + + + + + beta12orEarlier + WHATIF: type + Three-letter amino acid residue names as used in PDB files. + + + + PDB residue name + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_model_num + WHATIF: model_number + Identifier of a model structure from a PDB file. + Model number + + + + PDB model number + + + + + + + + + beta12orEarlier + beta13 + + + Summary of domain classification information for a CATH domain. + + The report (for example http://www.cathdb.info/domain/1cukA01) includes CATH codes for levels in the hierarchy for the domain, level descriptions and relevant data and links. + CATH domain report + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database (based on ATOM records in PDB) for CATH domains (clustered at different levels of sequence identity). + + CATH representative domain sequences (ATOM) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database (based on COMBS sequence data) for CATH domains (clustered at different levels of sequence identity). + + CATH representative domain sequences (COMBS) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database for all CATH domains (based on PDB ATOM records). + + CATH domain sequences (ATOM) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database for all CATH domains (based on COMBS sequence data). + + CATH domain sequences (COMBS) + true + + + + + + + + + beta12orEarlier + Information on an molecular sequence version. + Sequence version information + + + Sequence version + + + + + + + + + beta12orEarlier + A numerical value, that is some type of scored value arising for example from a prediction method. + + + Score + + + + + + + + + beta12orEarlier + beta13 + + + Report on general functional properties of specific protein(s). + + For properties that can be mapped to a sequence, use 'Sequence report' instead. + Protein report (function) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Aspergillus Genome Database. + + Gene name (ASPGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Candida Genome Database. + + Gene name (CGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from dictyBase database. + + Gene name (dictyBase) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Primary name of a gene from EcoGene Database. + + Gene name (EcoGene primary) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from MaizeGDB (maize genes) database. + + Gene name (MaizeGDB) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Saccharomyces Genome Database. + + Gene name (SGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Tetrahymena Genome Database. + + Gene name (TGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene from E.coli Genetic Stock Center. + + Gene name (CGSC) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene approved by the HUGO Gene Nomenclature Committee. + + Gene name (HGNC) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene from the Mouse Genome Database. + + Gene name (MGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene from Bacillus subtilis Genome Sequence Project. + + Gene name (Bacillus subtilis) + true + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: ApiDB_PlasmoDB + Identifier of a gene from PlasmoDB Plasmodium Genome Resource. + + + + Gene ID (PlasmoDB) + + + + + + + + + + beta12orEarlier + Identifier of a gene from EcoGene Database. + EcoGene Accession + EcoGene ID + + + + Gene ID (EcoGene) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: FB + http://www.geneontology.org/doc/GO.xrf_abbs: FlyBase + Gene identifier from FlyBase database. + + + + Gene ID (FlyBase) + + + + + + + + + beta12orEarlier + beta13 + + + Gene identifier from Glossina morsitans GeneDB database. + + Gene ID (GeneDB Glossina morsitans) + true + + + + + + + + + beta12orEarlier + beta13 + + + Gene identifier from Leishmania major GeneDB database. + + Gene ID (GeneDB Leishmania major) + true + + + + + + + + + beta12orEarlier + beta13 + + + http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Pfalciparum + Gene identifier from Plasmodium falciparum GeneDB database. + + Gene ID (GeneDB Plasmodium falciparum) + true + + + + + + + + + beta12orEarlier + beta13 + + + http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Spombe + Gene identifier from Schizosaccharomyces pombe GeneDB database. + + Gene ID (GeneDB Schizosaccharomyces pombe) + true + + + + + + + + + beta12orEarlier + beta13 + + + http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Tbrucei + Gene identifier from Trypanosoma brucei GeneDB database. + + Gene ID (GeneDB Trypanosoma brucei) + true + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: GR_GENE + http://www.geneontology.org/doc/GO.xrf_abbs: GR_gene + Gene identifier from Gramene database. + + + + Gene ID (Gramene) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: PAMGO_VMD + http://www.geneontology.org/doc/GO.xrf_abbs: VMD + Gene identifier from Virginia Bioinformatics Institute microbial database. + + + + Gene ID (Virginia microbial) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: SGN + Gene identifier from Sol Genomics Network. + + + + Gene ID (SGN) + + + + + + + + + + + beta12orEarlier + WBGene[0-9]{8} + http://www.geneontology.org/doc/GO.xrf_abbs: WB + http://www.geneontology.org/doc/GO.xrf_abbs: WormBase + Gene identifier used by WormBase database. + + + + Gene ID (WormBase) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Any name (other than the recommended one) for a gene. + + Gene synonym + true + + + + + + + + + + beta12orEarlier + The name of an open reading frame attributed by a sequencing project. + + + + ORF name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A component of a larger sequence assembly. + + Sequence assembly component + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on a chromosome aberration such as abnormalities in chromosome structure. + + Chromosome annotation (aberration) + true + + + + + + + + + beta12orEarlier + true + An identifier of a clone (cloned molecular sequence) from a database. + + + + Clone ID + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_ins_code + WHATIF: insertion_code + An insertion code (part of the residue number) for an amino acid residue from a PDB file. + + + PDB insertion code + + + + + + + + + beta12orEarlier + WHATIF: PDBx_occupancy + The fraction of an atom type present at a site in a molecular structure. + + + The sum of the occupancies of all the atom types at a site should not normally significantly exceed 1.0. + Atomic occupancy + + + + + + + + + beta12orEarlier + WHATIF: PDBx_B_iso_or_equiv + Isotropic B factor (atomic displacement parameter) for an atom from a PDB file. + + + Isotropic B factor + + + + + + + + + beta12orEarlier + A cytogenetic map showing chromosome banding patterns in mutant cell lines relative to the wild type. + Deletion-based cytogenetic map + + + A cytogenetic map is built from a set of mutant cell lines with sub-chromosomal deletions and a reference wild-type line ('genome deletion panel'). The panel is used to map markers onto the genome by comparing mutant to wild-type banding patterns. Markers are linked (occur in the same deleted region) if they share the same banding pattern (presence or absence) as the deletion panel. + Deletion map + + + + + + + + + beta12orEarlier + A genetic map which shows the approximate location of quantitative trait loci (QTL) between two or more markers. + Quantitative trait locus map + + + QTL map + + + + + + + + + beta12orEarlier + Moby:Haplotyping_Study_obj + A map of haplotypes in a genome or other sequence, describing common patterns of genetic variation. + + + Haplotype map + + + + + + + + + beta12orEarlier + 1.21 + + Data describing a set of multiple genetic or physical maps, typically sharing a common set of features which are mapped. + + + Map set data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + + A feature which may mapped (positioned) on a genetic or other type of map. + + Mappable features may be based on Gramene's notion of map features; see http://www.gramene.org/db/cmap/feature_type_info. + Map feature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A designation of the type of map (genetic map, physical map, sequence map etc) or map set. + + Map types may be based on Gramene's notion of a map type; see http://www.gramene.org/db/cmap/map_type_info. + Map type + true + + + + + + + + + beta12orEarlier + The name of a protein fold. + + + + Protein fold name + + + + + + + + + beta12orEarlier + Moby:BriefTaxonConcept + Moby:PotentialTaxon + The name of a group of organisms belonging to the same taxonomic rank. + Taxonomic rank + Taxonomy rank + + + + For a complete list of taxonomic ranks see https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary. + Taxon + + + + + + + + + + + + + + + beta12orEarlier + true + A unique identifier of a (group of) organisms. + + + + Organism identifier + + + + + + + + + beta12orEarlier + The name of a genus of organism. + + + + Genus name + + + + + + + + + beta12orEarlier + Moby:GCP_Taxon + Moby:TaxonName + Moby:TaxonScientificName + Moby:TaxonTCS + Moby:iANT_organism-xml + The full name for a group of organisms, reflecting their biological classification and (usually) conforming to a standard nomenclature. + Taxonomic information + Taxonomic name + + + + Name components correspond to levels in a taxonomic hierarchy (e.g. 'Genus', 'Species', etc.) Meta information such as a reference where the name was defined and a date might be included. + Taxonomic classification + + + + + + + + + + beta12orEarlier + Moby_namespace:iHOPorganism + A unique identifier for an organism used in the iHOP database. + + + + iHOP organism ID + + + + + + + + + beta12orEarlier + Common name for an organism as used in the GenBank database. + + + + Genbank common name + + + + + + + + + beta12orEarlier + The name of a taxon from the NCBI taxonomy database. + + + + NCBI taxon + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An alternative for a word. + + Synonym + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A common misspelling of a word. + + Misspelling + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An abbreviation of a phrase or word. + + Acronym + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term which is likely to be misleading of its meaning. + + Misnomer + true + + + + + + + + + beta12orEarlier + Moby:Author + Information on the authors of a published work. + + + + Author ID + + + + + + + + + beta12orEarlier + An identifier representing an author in the DragonDB database. + + + + DragonDB author identifier + + + + + + + + + beta12orEarlier + Moby:DescribedLink + A URI along with annotation describing the data found at the address. + + + Annotated URI + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A controlled vocabulary for words and phrases that can appear in the keywords field (KW line) of entries from the UniProt database. + + UniProt keywords + true + + + + + + + + + + beta12orEarlier + Moby_namespace:GENEFARM_GeneID + Identifier of a gene from the GeneFarm database. + + + + Gene ID (GeneFarm) + + + + + + + + + + beta12orEarlier + Moby_namespace:Blattner_number + The blattner identifier for a gene. + + + + Blattner number + + + + + + + + + beta12orEarlier + beta13 + + + Moby_namespace:MIPS_GE_Maize + Identifier for genetic elements in MIPS Maize database. + + Gene ID (MIPS Maize) + true + + + + + + + + + beta12orEarlier + beta13 + + + Moby_namespace:MIPS_GE_Medicago + Identifier for genetic elements in MIPS Medicago database. + + Gene ID (MIPS Medicago) + true + + + + + + + + + beta12orEarlier + 1.3 + + + The name of an Antirrhinum Gene from the DragonDB database. + + Gene name (DragonDB) + true + + + + + + + + + beta12orEarlier + 1.3 + + + A unique identifier for an Arabidopsis gene, which is an acronym or abbreviation of the gene name. + + Gene name (Arabidopsis) + true + + + + + + + + + + + + beta12orEarlier + Moby_namespace:iHOPsymbol + A unique identifier of a protein or gene used in the iHOP database. + + + + iHOP symbol + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from the GeneFarm database. + + Gene name (GeneFarm) + true + + + + + + + + + + + + + + + beta12orEarlier + true + A unique name or other identifier of a genetic locus, typically conforming to a scheme that names loci (such as predicted genes) depending on their position in a molecular sequence, for example a completely sequenced genome or chromosome. + Locus identifier + Locus name + + + + Locus ID + + + + + + + + + + beta12orEarlier + AT[1-5]G[0-9]{5} + http://www.geneontology.org/doc/GO.xrf_abbs:AGI_LocusCode + Locus identifier for Arabidopsis Genome Initiative (TAIR, TIGR and MIPS databases). + AGI ID + AGI identifier + AGI locus code + Arabidopsis gene loci number + + + + Locus ID (AGI) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: ASPGD + http://www.geneontology.org/doc/GO.xrf_abbs: ASPGDID + Identifier for loci from ASPGD (Aspergillus Genome Database). + + + + Locus ID (ASPGD) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: Broad_MGG + Identifier for loci from Magnaporthe grisea Database at the Broad Institute. + + + + Locus ID (MGG) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: CGD + http://www.geneontology.org/doc/GO.xrf_abbs: CGDID + Identifier for loci from CGD (Candida Genome Database). + CGD locus identifier + CGDID + + + + Locus ID (CGD) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: JCVI_CMR + http://www.geneontology.org/doc/GO.xrf_abbs: TIGR_CMR + Locus identifier for Comprehensive Microbial Resource at the J. Craig Venter Institute. + + + + Locus ID (CMR) + + + + + + + + + + beta12orEarlier + Moby_namespace:LocusID + http://www.geneontology.org/doc/GO.xrf_abbs: NCBI_locus_tag + Identifier for loci from NCBI database. + Locus ID (NCBI) + + + + NCBI locus tag + + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: SGD + http://www.geneontology.org/doc/GO.xrf_abbs: SGDID + Identifier for loci from SGD (Saccharomyces Genome Database). + SGDID + + + + Locus ID (SGD) + + + + + + + + + + beta12orEarlier + Moby_namespace:MMP_Locus + Identifier of loci from Maize Mapping Project. + + + + Locus ID (MMP) + + + + + + + + + + beta12orEarlier + Moby_namespace:DDB_gene + Identifier of locus from DictyBase (Dictyostelium discoideum). + + + + Locus ID (DictyBase) + + + + + + + + + + beta12orEarlier + Moby_namespace:EntrezGene_EntrezGeneID + Moby_namespace:EntrezGene_ID + Identifier of a locus from EntrezGene database. + + + + Locus ID (EntrezGene) + + + + + + + + + + beta12orEarlier + Moby_namespace:MaizeGDB_Locus + Identifier of locus from MaizeGDB (Maize genome database). + + + + Locus ID (MaizeGDB) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Moby:SO_QTL + A stretch of DNA that is closely linked to the genes underlying a quantitative trait (a phenotype that varies in degree and depends upon the interactions between multiple genes and their environment). + + A QTL sometimes but does not necessarily correspond to a gene. + Quantitative trait locus + true + + + + + + + + + + beta12orEarlier + Moby_namespace:GeneId + Identifier of a gene from the KOME database. + + + + Gene ID (KOME) + + + + + + + + + + beta12orEarlier + Moby:Tropgene_locus + Identifier of a locus from the Tropgene database. + + + + Locus ID (Tropgene) + + + + + + + + + beta12orEarlier + true + An alignment of molecular sequences, structures or profiles derived from them. + + + Alignment + + + + + + + + + beta12orEarlier + Data for an atom (in a molecular structure). + General atomic property + + + Atomic property + + + + + + + + + beta12orEarlier + Moby_namespace:SP_KW + http://www.geneontology.org/doc/GO.xrf_abbs: SP_KW + A word or phrase that can appear in the keywords field (KW line) of entries from the UniProt database. + + + UniProt keyword + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A name for a genetic locus conforming to a scheme that names loci (such as predicted genes) depending on their position in a molecular sequence, for example a completely sequenced genome or chromosome. + + Ordered locus name + true + + + + + + + + + + + beta12orEarlier + Moby:GCP_MapInterval + Moby:GCP_MapPoint + Moby:GCP_MapPosition + Moby:GenePosition + Moby:HitPosition + Moby:Locus + Moby:MapPosition + Moby:Position + PDBML:_atom_site.id + A position in a map (for example a genetic map), either a single position (point) or a region / interval. + Locus + Map position + + + This includes positions in genomes based on a reference sequence. A position may be specified for any mappable object, i.e. anything that may have positional information such as a physical position in a chromosome. Data might include sequence region name, strand, coordinate system name, assembly name, start position and end position. + Sequence coordinates + + + + + + + + + beta12orEarlier + Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all amino acids. + Amino acid data + + + Amino acid property + + + + + + + + + beta12orEarlier + beta13 + + + A human-readable collection of information which (typically) is generated or collated by hand and which describes a biological entity, phenomena or associated primary (e.g. sequence or structural) data, as distinct from the primary data itself and computer-generated reports derived from it. + + This is a broad data type and is used a placeholder for other, more specific types. + Annotation + true + + + + + + + + + + + + + + + beta12orEarlier + Data describing a molecular map (genetic or physical) or a set of such maps, including various attributes of, data extracted from or derived from the analysis of them, but excluding the map(s) themselves. This includes metadata for map sets that share a common set of features which are mapped. + Map attribute + Map set data + + + Map data + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data used by the Vienna RNA analysis package. + + Vienna RNA structural data + true + + + + + + + + + beta12orEarlier + 1.5 + + + Data used to replace (mask) characters in a molecular sequence. + + Sequence mask parameter + true + + + + + + + + + + beta12orEarlier + Data concerning chemical reaction(s) catalysed by enzyme(s). + + + This is a broad data type and is used a placeholder for other, more specific types. + Enzyme kinetics data + + + + + + + + + beta12orEarlier + A plot giving an approximation of the kinetics of an enzyme-catalysed reaction, assuming simple kinetics (i.e. no intermediate or product inhibition, allostericity or cooperativity). It plots initial reaction rate to the substrate concentration (S) from which the maximum rate (vmax) is apparent. + + + Michaelis Menten plot + + + + + + + + + beta12orEarlier + A plot based on the Michaelis Menten equation of enzyme kinetics plotting the ratio of the initial substrate concentration (S) against the reaction velocity (v). + + + Hanes Woolf plot + + + + + + + + + beta12orEarlier + beta13 + + + + Raw data from or annotation on laboratory experiments. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Experimental data + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a genome version. + + Genome version information + true + + + + + + + + + beta12orEarlier + Typically a human-readable summary of body of facts or information indicating why a statement is true or valid. This may include a computational prediction, laboratory experiment, literature reference etc. + + + Evidence + + + + + + + + + beta12orEarlier + 1.8 + + A molecular sequence and minimal metadata, typically an identifier of the sequence and/or a comment. + + + Sequence record lite + true + + + + + + + + + + + + + + + beta12orEarlier + One or more molecular sequences, possibly with associated annotation. + Sequences + + + This concept is a placeholder of concepts for primary sequence data including raw sequences and sequence records. It should not normally be used for derivatives such as sequence alignments, motifs or profiles. + Sequence + http://purl.bioontology.org/ontology/MSH/D008969 + http://purl.org/biotop/biotop.owl#BioMolecularSequenceInformation + + + + + + + + + beta12orEarlier + 1.8 + + A nucleic acid sequence and minimal metadata, typically an identifier of the sequence and/or a comment. + + + Nucleic acid sequence record (lite) + true + + + + + + + + + beta12orEarlier + 1.8 + + A protein sequence and minimal metadata, typically an identifier of the sequence and/or a comment. + + + Protein sequence record (lite) + true + + + + + + + + + beta12orEarlier + A human-readable collection of information including annotation on a biological entity or phenomena, computer-generated reports of analysis of primary data (e.g. sequence or structural), and metadata (data about primary data) or any other free (essentially unformatted) text, as distinct from the primary data itself. + Document + Record + + + You can use this term by default for any textual report, in case you can't find another, more specific term. Reports may be generated automatically or collated by hand and can include metadata on the origin, source, history, ownership or location of some thing. + Report + http://semanticscience.org/resource/SIO_000148 + + + + + + + + + beta12orEarlier + General data for a molecule. + General molecular property + + + Molecular property (general) + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning molecular structural data. + + This is a broad data type and is used a placeholder for other, more specific types. + Structural data + true + + + + + + + + + beta12orEarlier + A nucleotide sequence motif. + Nucleic acid sequence motif + DNA sequence motif + RNA sequence motif + + + Sequence motif (nucleic acid) + + + + + + + + + beta12orEarlier + An amino acid sequence motif. + Protein sequence motif + + + Sequence motif (protein) + + + + + + + + + beta12orEarlier + 1.5 + + + Some simple value controlling a search operation, typically a search of a database. + + Search parameter + true + + + + + + + + + beta12orEarlier + A report of hits from searching a database of some type. + Database hits + Search results + + + Database search results + + + + + + + + + beta12orEarlier + 1.5 + + + The secondary structure assignment (predicted or real) of a nucleic acid or protein. + + Secondary structure + true + + + + + + + + + beta12orEarlier + An array of numerical values. + Array + + + This is a broad data type and is used a placeholder for other, more specific types. + Matrix + + + + + + + + + beta12orEarlier + 1.8 + + + Data concerning, extracted from, or derived from the analysis of molecular alignment of some type. + + This is a broad data type and is used a placeholder for other, more specific types. + Alignment data + true + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific nucleic acid molecules. + + + Nucleic acid report + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more molecular tertiary (3D) structures. It might include annotation on the structure, a computer-generated report of analysis of structural data, and metadata (data about primary data) or any other free (essentially unformatted) text, as distinct from the primary data itself. + Structure-derived report + + + Structure report + + + + + + + + + beta12orEarlier + 1.21 + + + + A report on nucleic acid structure-derived data, describing structural properties of a DNA molecule, or any other annotation or information about specific nucleic acid 3D structure(s). + + Nucleic acid structure data + true + + + + + + + + + beta12orEarlier + A report on the physical (e.g. structural) or chemical properties of molecules, or parts of a molecule. + Physicochemical property + SO:0000400 + + + Molecular property + + + + + + + + + beta12orEarlier + Structural data for DNA base pairs or runs of bases, such as energy or angle data. + + + DNA base structural data + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a database (or ontology) entry version, such as name (or other identifier) or parent database, unique identifier of entry, data, author and so on. + + Database entry version information + true + + + + + + + + + beta12orEarlier + true + A persistent (stable) and unique identifier, typically identifying an object (entry) from a database. + + + + Accession + http://semanticscience.org/resource/SIO_000675 + http://semanticscience.org/resource/SIO_000731 + + + + + + + + + beta12orEarlier + 1.8 + + single nucleotide polymorphism (SNP) in a DNA sequence. + + + SNP + true + + + + + + + + + beta12orEarlier + Reference to a dataset (or a cross-reference between two datasets), typically one or more entries in a biological database or ontology. + + + A list of database accessions or identifiers are usually included. + Data reference + + + + + + + + + beta12orEarlier + true + An identifier of a submitted job. + + + + Job identifier + http://wsio.org/data_009 + + + + + + + + + beta12orEarlier + true + + A name of a thing, which need not necessarily uniquely identify it. + Symbolic name + + + + Name + "http://www.w3.org/2000/01/rdf-schema#label + http://semanticscience.org/resource/SIO_000116 + http://usefulinc.com/ns/doap#name + + + + + + Closely related, but focusing on labeling and human readability but not on identification. + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a thing, typically an enumerated string (a string with one of a limited set of values). + + Type + http://purl.org/dc/elements/1.1/type + true + + + + + + + + + beta12orEarlier + Authentication data usually used to log in into an account on an information system such as a web application or a database. + + + + Account authentication + + + + + + + + + + beta12orEarlier + A three-letter code used in the KEGG databases to uniquely identify organisms. + + + + KEGG organism code + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the KEGG GENES database. + + Gene name (KEGG GENES) + true + + + + + + + + + + beta12orEarlier + Identifier of an object from one of the BioCyc databases. + + + + BioCyc ID + + + + + + + + + + + beta12orEarlier + Identifier of a compound from the BioCyc chemical compounds database. + BioCyc compound ID + BioCyc compound identifier + + + + Compound ID (BioCyc) + + + + + + + + + + + beta12orEarlier + Identifier of a biological reaction from the BioCyc reactions database. + + + + Reaction ID (BioCyc) + + + + + + + + + + + beta12orEarlier + Identifier of an enzyme from the BioCyc enzymes database. + BioCyc enzyme ID + + + + Enzyme ID (BioCyc) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a biological reaction from a database. + + + + Reaction ID + + + + + + + + + beta12orEarlier + true + An identifier that is re-used for data objects of fundamentally different types (typically served from a single database). + + + + This branch provides an alternative organisation of the concepts nested under 'Accession' and 'Name'. All concepts under here are already included under 'Accession' or 'Name'. + Identifier (hybrid) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a molecular property. + + + + Molecular property identifier + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a codon usage table, for example a genetic code. + Codon usage table identifier + + + + Codon usage table ID + + + + + + + + + beta12orEarlier + Primary identifier of an object from the FlyBase database. + + + + FlyBase primary identifier + + + + + + + + + beta12orEarlier + Identifier of an object from the WormBase database. + + + + WormBase identifier + + + + + + + + + + + beta12orEarlier + CE[0-9]{5} + Protein identifier used by WormBase database. + + + + WormBase wormpep ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on a trinucleotide sequence that encodes an amino acid including the triplet sequence, the encoded amino acid or whether it is a start or stop codon. + + Nucleic acid features (codon) + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a map of a molecular sequence. + + + + Map identifier + + + + + + + + + beta12orEarlier + true + An identifier of a software end-user on a website or a database (typically a person or an entity). + + + + Person identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Name or other identifier of a nucleic acid molecule. + + + + Nucleic acid identifier + + + + + + + + + beta12orEarlier + 1.20 + + + Frame for translation of DNA (3 forward and 3 reverse frames relative to a chromosome). + + Translation frame specification + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a genetic code. + + + + Genetic code identifier + + + + + + + + + + beta12orEarlier + Informal name for a genetic code, typically an organism name. + + + + Genetic code name + + + + + + + + + + beta12orEarlier + Name of a file format such as HTML, PNG, PDF, EMBL, GenBank and so on. + + + + File format name + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing a type of sequence profile such as frequency matrix, Gribskov profile, hidden Markov model etc. + + Sequence profile type + true + + + + + + + + + beta12orEarlier + Name of a computer operating system such as Linux, PC or Mac. + + + + Operating system name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A type of point or block mutation, including insertion, deletion, change, duplication and moves. + + Mutation type + true + + + + + + + + + beta12orEarlier + A logical operator such as OR, AND, XOR, and NOT. + + + + Logical operator + + + + + + + + + beta12orEarlier + 1.5 + + + A control of the order of data that is output, for example the order of sequences in an alignment. + + Possible options including sorting by score, rank, by increasing P-value (probability, i.e. most statistically significant hits given first) and so on. + Results sort order + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple parameter that is a toggle (boolean value), typically a control for a modal tool. + + Toggle + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The width of an output sequence or alignment. + + Sequence width + true + + + + + + + + + beta12orEarlier + A penalty for introducing or extending a gap in an alignment. + + + Gap penalty + + + + + + + + + beta12orEarlier + A temperature concerning nucleic acid denaturation, typically the temperature at which the two strands of a hybridised or double stranded nucleic acid (DNA or RNA/DNA) molecule separate. + Melting temperature + + + Nucleic acid melting temperature + + + + + + + + + beta12orEarlier + The concentration of a chemical compound. + + + Concentration + + + + + + + + + beta12orEarlier + 1.5 + + + Size of the incremental 'step' a sequence window is moved over a sequence. + + Window step size + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An image of a graph generated by the EMBOSS suite. + + EMBOSS graph + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An application report generated by the EMBOSS suite. + + EMBOSS report + true + + + + + + + + + beta12orEarlier + 1.5 + + + An offset for a single-point sequence position. + + Sequence offset + true + + + + + + + + + beta12orEarlier + 1.5 + + + A value that serves as a threshold for a tool (usually to control scoring or output). + + Threshold + true + + + + + + + + + beta12orEarlier + beta13 + + + An informative report on a transcription factor protein. + + This might include conformational or physicochemical properties, as well as sequence information for transcription factor(s) binding sites. + Protein report (transcription factor) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a category of biological or bioinformatics database. + + Database category name + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name of a sequence profile. + + Sequence profile name + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Specification of one or more colors. + + Color + true + + + + + + + + + beta12orEarlier + 1.5 + + + A parameter that is used to control rendering (drawing) to a device or image. + + Rendering parameter + true + + + + + + + + + + beta12orEarlier + Any arbitrary name of a molecular sequence. + + + + Sequence name + + + + + + + + + beta12orEarlier + 1.5 + + + A temporal date. + + Date + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Word composition data for a molecular sequence. + + Word composition + true + + + + + + + + + beta12orEarlier + A plot of Fickett testcode statistic (identifying protein coding regions) in a nucleotide sequences. + + + Fickett testcode plot + + + + + + + + + + beta12orEarlier + A plot of sequence similarities identified from word-matching or character comparison. + Sequence conservation report + + + Use this concept for calculated substitution rates, relative site variability, data on sites with biased properties, highly conserved or very poorly conserved sites, regions, blocks etc. + Sequence similarity plot + + + + + + + + + beta12orEarlier + An image of peptide sequence sequence looking down the axis of the helix for highlighting amphipathicity and other properties. + + + Helical wheel + + + + + + + + + beta12orEarlier + An image of peptide sequence sequence in a simple 3,4,3,4 repeating pattern that emulates at a simple level the arrangement of residues around an alpha helix. + + + Useful for highlighting amphipathicity and other properties. + Helical net + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A plot of general physicochemical properties of a protein sequence. + + Protein sequence properties plot + true + + + + + + + + + + beta12orEarlier + A plot of pK versus pH for a protein. + + + Protein ionisation curve + + + + + + + + + + beta12orEarlier + A plot of character or word composition / frequency of a molecular sequence. + + + Sequence composition plot + + + + + + + + + + beta12orEarlier + Density plot (of base composition) for a nucleotide sequence. + + + Nucleic acid density plot + + + + + + + + + beta12orEarlier + Image of a sequence trace (nucleotide sequence versus probabilities of each of the 4 bases). + + + Sequence trace image + + + + + + + + + beta12orEarlier + 1.5 + + + A report on siRNA duplexes in mRNA. + + Nucleic acid features (siRNA) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A collection of multiple molecular sequences and (typically) associated metadata that is intended for sequential processing. + + This concept may be used for sequence sets that are expected to be read and processed a single sequence at a time. + Sequence set (stream) + true + + + + + + + + + beta12orEarlier + Secondary identifier of an object from the FlyBase database. + + + + Secondary identifier are used to handle entries that were merged with or split from other entries in the database. + FlyBase secondary identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The number of a certain thing. + + Cardinality + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A single thing. + + Exactly 1 + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + One or more things. + + 1 or more + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Exactly two things. + + Exactly 2 + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Two or more things. + + 2 or more + true + + + + + + + + + beta12orEarlier + A fixed-size datum calculated (by using a hash function) for a molecular sequence, typically for purposes of error detection or indexing. + Hash + Hash code + Hash sum + Hash value + + + Sequence checksum + + + + + + + + + beta12orEarlier + 1.8 + + chemical modification of a protein. + + + Protein features report (chemical modifications) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Data on an error generated by computer system or tool. + + Error + true + + + + + + + + + beta12orEarlier + Basic information on any arbitrary database entry. + + + Database entry metadata + + + + + + + + + beta12orEarlier + beta13 + + + A cluster of similar genes. + + Gene cluster + true + + + + + + + + + beta12orEarlier + 1.8 + + A molecular sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database. + + + Sequence record full + true + + + + + + + + + beta12orEarlier + true + An identifier of a plasmid in a database. + + + + Plasmid identifier + + + + + + + + + + beta12orEarlier + true + A unique identifier of a specific mutation catalogued in a database. + + + + Mutation ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Information describing the mutation itself, the organ site, tissue and type of lesion where the mutation has been identified, description of the patient origin and life-style. + + Mutation annotation (basic) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on the prevalence of mutation(s), including data on samples and mutation prevalence (e.g. by tumour type).. + + Mutation annotation (prevalence) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on mutation prognostic data, such as information on patient cohort, the study settings and the results of the study. + + Mutation annotation (prognostic) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on the functional properties of mutant proteins including transcriptional activities, promotion of cell growth and tumorigenicity, dominant negative effects, capacity to induce apoptosis, cell-cycle arrest or checkpoints in human cells and so on. + + Mutation annotation (functional) + true + + + + + + + + + beta12orEarlier + The number of a codon, for instance, at which a mutation is located. + + + Codon number + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific tumor including nature and origin of the sample, anatomic site, organ or tissue, tumor type, including morphology and/or histologic type, and so on. + + Tumor annotation + true + + + + + + + + + beta12orEarlier + 1.5 + + + Basic information about a server on the web, such as an SRS server. + + Server metadata + true + + + + + + + + + beta12orEarlier + The name of a field in a database. + + + + Database field name + + + + + + + + + + beta12orEarlier + Unique identifier of a sequence cluster from the SYSTERS database. + SYSTERS cluster ID + + + + Sequence cluster ID (SYSTERS) + + + + + + + + + + + + + + + beta12orEarlier + Data concerning a biological ontology. + + + Ontology metadata + + + + + + + + + beta12orEarlier + beta13 + + + Raw SCOP domain classification data files. + + These are the parsable data files provided by SCOP. + Raw SCOP domain classification + true + + + + + + + + + beta12orEarlier + beta13 + + + Raw CATH domain classification data files. + + These are the parsable data files provided by CATH. + Raw CATH domain classification + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on the types of small molecules or 'heterogens' (non-protein groups) that are represented in PDB files. + + Heterogen annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Phylogenetic property values data. + + Phylogenetic property values + true + + + + + + + + + beta12orEarlier + 1.5 + + + A collection of sequences output from a bootstrapping (resampling) procedure. + + Bootstrapping is often performed in phylogenetic analysis. + Sequence set (bootstrapped) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A consensus phylogenetic tree derived from comparison of multiple trees. + + Phylogenetic consensus tree + true + + + + + + + + + beta12orEarlier + 1.5 + + + A data schema for organising or transforming data of some type. + + Schema + true + + + + + + + + + beta12orEarlier + 1.5 + + + A DTD (document type definition). + + DTD + true + + + + + + + + + beta12orEarlier + 1.5 + + + An XML Schema. + + XML Schema + true + + + + + + + + + beta12orEarlier + 1.5 + + + A relax-NG schema. + + Relax-NG schema + true + + + + + + + + + beta12orEarlier + 1.5 + + + An XSLT stylesheet. + + XSLT stylesheet + true + + + + + + + + + + beta12orEarlier + The name of a data type. + + + + Data resource definition name + + + + + + + + + beta12orEarlier + Name of an OBO file format such as OBO-XML, plain and so on. + + + + OBO file format name + + + + + + + + + + beta12orEarlier + Identifier for genetic elements in MIPS database. + MIPS genetic element identifier + + + + Gene ID (MIPS) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of protein sequence(s) or protein sequence database entries. + + Sequence identifier (protein) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of nucleotide sequence(s) or nucleotide sequence database entries. + + Sequence identifier (nucleic acid) + true + + + + + + + + + beta12orEarlier + An accession number of an entry from the EMBL sequence database. + EMBL ID + EMBL accession number + EMBL identifier + + + + EMBL accession + + + + + + + + + + + + + + + beta12orEarlier + An identifier of a polypeptide in the UniProt database. + UniProt entry name + UniProt identifier + UniProtKB entry name + UniProtKB identifier + + + + UniProt ID + + + + + + + + + beta12orEarlier + Accession number of an entry from the GenBank sequence database. + GenBank ID + GenBank accession number + GenBank identifier + + + + GenBank accession + + + + + + + + + beta12orEarlier + Secondary (internal) identifier of a Gramene database entry. + Gramene internal ID + Gramene internal identifier + Gramene secondary ID + + + + Gramene secondary identifier + + + + + + + + + beta12orEarlier + true + An identifier of an entry from a database of molecular sequence variation. + + + + Sequence variation ID + + + + + + + + + + beta12orEarlier + true + A unique (and typically persistent) identifier of a gene in a database, that is (typically) different to the gene name/symbol. + Gene accession + Gene code + + + + Gene ID + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the AceView genes database. + + Gene name (AceView) + true + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: ECK + Identifier of an E. coli K-12 gene from EcoGene Database. + E. coli K-12 gene identifier + ECK accession + + + + Gene ID (ECK) + + + + + + + + + + beta12orEarlier + Identifier for a gene approved by the HUGO Gene Nomenclature Committee. + HGNC ID + + + + Gene ID (HGNC) + + + + + + + + + + beta12orEarlier + The name of a gene, (typically) assigned by a person and/or according to a naming scheme. It may contain white space characters and is typically more intuitive and readable than a gene symbol. It (typically) may be used to identify similar genes in different species and to derive a gene symbol. + Allele name + + + + Gene name + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the NCBI genes database. + + Gene name (NCBI) + true + + + + + + + + + beta12orEarlier + A specification of a chemical structure in SMILES format. + + + SMILES string + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the STRING database of protein-protein interactions. + + + + STRING ID + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific virus. + + Virus annotation + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on the taxonomy of a specific virus. + + Virus annotation (taxonomy) + true + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a biological reaction from the SABIO-RK reactions database. + + + + Reaction ID (SABIO-RK) + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific carbohydrate 3D structure(s). + + + Carbohydrate report + + + + + + + + + + beta12orEarlier + A series of digits that are assigned consecutively to each sequence record processed by NCBI. The GI number bears no resemblance to the Accession number of the sequence record. + NCBI GI number + + + + Nucleotide sequence GI number is shown in the VERSION field of the database record. Protein sequence GI number is shown in the CDS/db_xref field of a nucleotide database record, and the VERSION field of a protein database record. + GI number + + + + + + + + + + beta12orEarlier + An identifier assigned to sequence records processed by NCBI, made of the accession number of the database record followed by a dot and a version number. + NCBI accession.version + accession.version + + + + Nucleotide sequence version contains two letters followed by six digits, a dot, and a version number (or for older nucleotide sequence records, the format is one letter followed by five digits, a dot, and a version number). Protein sequence version contains three letters followed by five digits, a dot, and a version number. + NCBI version + + + + + + + + + beta12orEarlier + The name of a cell line. + + + + Cell line name + + + + + + + + + beta12orEarlier + The exact name of a cell line. + + + + Cell line name (exact) + + + + + + + + + beta12orEarlier + The truncated name of a cell line. + + + + Cell line name (truncated) + + + + + + + + + beta12orEarlier + The name of a cell line without any punctuation. + + + + Cell line name (no punctuation) + + + + + + + + + beta12orEarlier + The assonant name of a cell line. + + + + Cell line name (assonant) + + + + + + + + + + beta12orEarlier + true + A unique, persistent identifier of an enzyme. + Enzyme accession + + + + Enzyme ID + + + + + + + + + + beta12orEarlier + Identifier of an enzyme from the REBASE enzymes database. + + + + REBASE enzyme number + + + + + + + + + + beta12orEarlier + DB[0-9]{5} + Unique identifier of a drug from the DrugBank database. + + + + DrugBank ID + + + + + + + + + beta12orEarlier + A unique identifier assigned to NCBI protein sequence records. + protein gi + protein gi number + + + + Nucleotide sequence GI number is shown in the VERSION field of the database record. Protein sequence GI number is shown in the CDS/db_xref field of a nucleotide database record, and the VERSION field of a protein database record. + GI number (protein) + + + + + + + + + beta12orEarlier + A score derived from the alignment of two sequences, which is then normalised with respect to the scoring system. + + + Bit scores are normalised with respect to the scoring system and therefore can be used to compare alignment scores from different searches. + Bit score + + + + + + + + + beta12orEarlier + 1.20 + + + Phase for translation of DNA (0, 1 or 2) relative to a fragment of the coding sequence. + + Translation phase specification + true + + + + + + + + + beta12orEarlier + Data concerning or describing some core computational resource, as distinct from primary data. This includes metadata on the origin, source, history, ownership or location of some thing. + Provenance metadata + + + This is a broad data type and is used a placeholder for other, more specific types. + Resource metadata + + + + + + + + + + + + + + + beta12orEarlier + Any arbitrary identifier of an ontology. + + + + Ontology identifier + + + + + + + + + + beta12orEarlier + The name of a concept in an ontology. + + + + Ontology concept name + + + + + + + + + beta12orEarlier + An identifier of a build of a particular genome. + + + + Genome build identifier + + + + + + + + + beta12orEarlier + The name of a biological pathway or network. + + + + Pathway or network name + + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]{2,3}[0-9]{5} + Identifier of a pathway from the KEGG pathway database. + KEGG pathway ID + + + + Pathway ID (KEGG) + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+ + Identifier of a pathway from the NCI-Nature pathway database. + + + + Pathway ID (NCI-Nature) + + + + + + + + + + + beta12orEarlier + Identifier of a pathway from the ConsensusPathDB pathway database. + + + + Pathway ID (ConsensusPathDB) + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef database. + UniRef cluster id + UniRef entry accession + + + + Sequence cluster ID (UniRef) + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef100 database. + UniRef100 cluster id + UniRef100 entry accession + + + + Sequence cluster ID (UniRef100) + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef90 database. + UniRef90 cluster id + UniRef90 entry accession + + + + Sequence cluster ID (UniRef90) + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef50 database. + UniRef50 cluster id + UniRef50 entry accession + + + + Sequence cluster ID (UniRef50) + + + + + + + + + + + + + + + beta12orEarlier + Data concerning or derived from an ontology. + Ontological data + + + This is a broad data type and is used a placeholder for other, more specific types. + Ontology data + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific RNA family or other group of classified RNA sequences. + RNA family annotation + + + RNA family report + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an RNA family, typically an entry from a RNA sequence classification database. + + + + RNA family identifier + + + + + + + + + + beta12orEarlier + Stable accession number of an entry (RNA family) from the RFAM database. + + + + RFAM accession + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing a type of protein family signature (sequence classifier) from the InterPro database. + + Protein signature type + true + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on protein domain-DNA/RNA interaction(s). + + Domain-nucleic acid interaction report + true + + + + + + + + + beta12orEarlier + 1.8 + + + An informative report on protein domain-protein domain interaction(s). + + Domain-domain interactions + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data on indirect protein domain-protein domain interaction(s). + + Domain-domain interaction (indirect) + true + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a nucleotide or protein sequence database entry. + + + + Sequence accession (hybrid) + + + + + + + + + beta12orEarlier + beta13 + + Data concerning two-dimensional polygel electrophoresis. + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + 2D PAGE data + true + + + + + + + + + beta12orEarlier + 1.8 + + two-dimensional gel electrophoresis experiments, gels or spots in a gel. + + + 2D PAGE report + true + + + + + + + + + beta12orEarlier + true + A persistent, unique identifier of a biological pathway or network (typically a database entry). + + + + Pathway or network accession + + + + + + + + + beta12orEarlier + Alignment of the (1D representations of) secondary structure of two or more molecules. + + + Secondary structure alignment + + + + + + + + + + + beta12orEarlier + Identifier of an object from the ASTD database. + + + + ASTD ID + + + + + + + + + beta12orEarlier + Identifier of an exon from the ASTD database. + + + + ASTD ID (exon) + + + + + + + + + beta12orEarlier + Identifier of an intron from the ASTD database. + + + + ASTD ID (intron) + + + + + + + + + beta12orEarlier + Identifier of a polyA signal from the ASTD database. + + + + ASTD ID (polya) + + + + + + + + + beta12orEarlier + Identifier of a transcription start site from the ASTD database. + + + + ASTD ID (tss) + + + + + + + + + beta12orEarlier + 1.8 + + An informative report on individual spot(s) from a two-dimensional (2D PAGE) gel. + + + 2D PAGE spot report + true + + + + + + + + + beta12orEarlier + true + Unique identifier of a spot from a two-dimensional (protein) gel. + + + + Spot ID + + + + + + + + + + beta12orEarlier + Unique identifier of a spot from a two-dimensional (protein) gel in the SWISS-2DPAGE database. + + + + Spot serial number + + + + + + + + + + beta12orEarlier + Unique identifier of a spot from a two-dimensional (protein) gel from a HSC-2DPAGE database. + + + + Spot ID (HSC-2DPAGE) + + + + + + + + + beta12orEarlier + beta13 + + + Data on the interaction of a protein (or protein domain) with specific structural (3D) and/or sequence motifs. + + Protein-motif interaction + true + + + + + + + + + beta12orEarlier + true + Identifier of a strain of an organism variant, typically a plant, virus or bacterium. + + + + Strain identifier + + + + + + + + + + beta12orEarlier + A unique identifier of an item from the CABRI database. + + + + CABRI accession + + + + + + + + + beta12orEarlier + 1.8 + + Report of genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods. + + + Experiment report (genotyping) + true + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of genotype experiment metadata. + + + + Genotype experiment ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the EGA database. + + + + EGA accession + + + + + + + + + + beta12orEarlier + IPI[0-9]{8} + Identifier of a protein entry catalogued in the International Protein Index (IPI) database. + + + + IPI protein ID + + + + + + + + + beta12orEarlier + Accession number of a protein from the RefSeq database. + RefSeq protein ID + + + + RefSeq accession (protein) + + + + + + + + + + beta12orEarlier + Identifier of an entry (promoter) from the EPD database. + EPD identifier + + + + EPD ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the TAIR database. + + + + TAIR accession + + + + + + + + + beta12orEarlier + Identifier of an Arabidopsis thaliana gene from the TAIR database. + + + + TAIR accession (At gene) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the UniSTS database. + + + + UniSTS accession + + + + + + + + + + beta12orEarlier + Identifier of an entry from the UNITE database. + + + + UNITE accession + + + + + + + + + + beta12orEarlier + Identifier of an entry from the UTR database. + + + + UTR accession + + + + + + + + + + beta12orEarlier + UPI[A-F0-9]{10} + Accession number of a UniParc (protein sequence) database entry. + UPI + UniParc ID + + + + UniParc accession + + + + + + + + + + beta12orEarlier + Identifier of an entry from the Rouge or HUGE databases. + + + + mFLJ/mKIAA number + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific fungus. + + Fungi annotation + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific fungus anamorph. + + Fungi annotation (anamorph) + true + + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the Ensembl database. + Ensembl ID (protein) + Protein ID (Ensembl) + + + + Ensembl protein ID + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific toxin. + + Toxin annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on a membrane protein. + + Protein report (membrane protein) + true + + + + + + + + + beta12orEarlier + 1.12 + + An informative report on tentative or known protein-drug interaction(s). + + + Protein-drug interaction report + true + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning a map of molecular sequence(s). + + This is a broad data type and is used a placeholder for other, more specific types. + Map data + true + + + + + + + + + beta12orEarlier + Data concerning phylogeny, typically of molecular sequences, including reports of information concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees. + + + This is a broad data type and is used a placeholder for other, more specific types. + Phylogenetic data + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning one or more protein molecules. + + This is a broad data type and is used a placeholder for other, more specific types. + Protein data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning one or more nucleic acid molecules. + + This is a broad data type and is used a placeholder for other, more specific types. + Nucleic acid data + true + + + + + + + + + + + + + + + beta12orEarlier + Data concerning, extracted from, or derived from the analysis of a scientific text (or texts) such as a full text article from a scientific journal. + Article data + Scientific text data + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. It includes concepts that are best described as scientific text or closely concerned with or derived from text. + Text data + + + + + + + + + beta12orEarlier + 1.16 + + + Typically a simple numerical or string value that controls the operation of a tool. + + Parameter + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning a specific type of molecule. + + This is a broad data type and is used a placeholder for other, more specific types. + Molecular data + true + + + + + + + + + beta12orEarlier + 1.5 + + + + An informative report on a specific molecule. + + Molecule report + true + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific organism. + Organism annotation + + + Organism report + + + + + + + + + beta12orEarlier + A human-readable collection of information about about how a scientific experiment or analysis was carried out that results in a specific set of data or results used for further analysis or to test a specific hypothesis. + Experiment annotation + Experiment metadata + Experiment report + + + Protocol + + + + + + + + + beta12orEarlier + An attribute of a molecular sequence, possibly in reference to some other sequence. + Sequence parameter + + + Sequence attribute + + + + + + + + + beta12orEarlier + Output from a serial analysis of gene expression (SAGE), massively parallel signature sequencing (MPSS) or sequencing by synthesis (SBS) experiment. In all cases this is a list of short sequence tags and the number of times it is observed. + Sequencing-based expression profile + Sequence tag profile (with gene assignment) + + + SAGE, MPSS and SBS experiments are usually performed to study gene expression. The sequence tags are typically subsequently annotated (after a database search) with the mRNA (and therefore gene) the tag was extracted from. + This includes tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. Typically this is the sequencing-based expression profile annotated with gene identifiers. + Sequence tag profile + + + + + + + + + beta12orEarlier + Data concerning a mass spectrometry measurement. + + + Mass spectrometry data + + + + + + + + + beta12orEarlier + Raw data from experimental methods for determining protein structure. + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein structure raw data + + + + + + + + + beta12orEarlier + true + An identifier of a mutation. + + + + Mutation identifier + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning an alignment of two or more molecular sequences, structures or derived data. + + This is a broad data type and is used a placeholder for other, more specific types. This includes entities derived from sequences and structures such as motifs and profiles. + Alignment data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning an index of data. + + This is a broad data type and is used a placeholder for other, more specific types. + Data index data + true + + + + + + + + + beta12orEarlier + Single letter amino acid identifier, e.g. G. + + + + Amino acid name (single letter) + + + + + + + + + beta12orEarlier + Three letter amino acid identifier, e.g. GLY. + + + + Amino acid name (three letter) + + + + + + + + + beta12orEarlier + Full name of an amino acid, e.g. Glycine. + + + + Amino acid name (full name) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a toxin. + + + + Toxin identifier + + + + + + + + + + beta12orEarlier + Unique identifier of a toxin from the ArachnoServer database. + + + + ArachnoServer ID + + + + + + + + + beta12orEarlier + 1.5 + + + A simple summary of expressed genes. + + Expressed gene list + true + + + + + + + + + + beta12orEarlier + Unique identifier of a monomer from the BindingDB database. + + + + BindingDB Monomer ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept from the GO ontology. + + GO concept name + true + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a 'biological process' concept from the the Gene Ontology. + + + + GO concept ID (biological process) + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a 'molecular function' concept from the the Gene Ontology. + + + + GO concept ID (molecular function) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept for a cellular component from the GO ontology. + + GO concept name (cellular component) + true + + + + + + + + + beta12orEarlier + An image arising from a Northern Blot experiment. + + + Northern blot image + + + + + + + + + beta12orEarlier + true + Unique identifier of a blot from a Northern Blot. + + + + Blot ID + + + + + + + + + + beta12orEarlier + Unique identifier of a blot from a Northern Blot from the BlotBase database. + + + + BlotBase blot ID + + + + + + + + + beta12orEarlier + Raw data on a biological hierarchy, describing the hierarchy proper, hierarchy components and possibly associated annotation. + Hierarchy annotation + + + Hierarchy + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry from a database of biological hierarchies. + + Hierarchy identifier + true + + + + + + + + + + beta12orEarlier + Identifier of an entry from the Brite database of biological hierarchies. + + + + Brite hierarchy ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A type (represented as a string) of cancer. + + Cancer type + true + + + + + + + + + + beta12orEarlier + A unique identifier for an organism used in the BRENDA database. + + + + BRENDA organism ID + + + + + + + + + beta12orEarlier + The name of a taxon using the controlled vocabulary of the UniGene database. + UniGene organism abbreviation + + + + UniGene taxon + + + + + + + + + beta12orEarlier + The name of a taxon using the controlled vocabulary of the UTRdb database. + + + + UTRdb taxon + + + + + + + + + beta12orEarlier + true + An identifier of a catalogue of biological resources. + Catalogue identifier + + + + Catalogue ID + + + + + + + + + + beta12orEarlier + The name of a catalogue of biological resources from the CABRI database. + + + + CABRI catalogue name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on protein secondary structure alignment-derived data or metadata. + + Secondary structure alignment metadata + true + + + + + + + + + beta12orEarlier + Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19. + 1.5 + + + An informative report on the physical, chemical or other information concerning the interaction of two or more molecules (or parts of molecules). + + Molecule interaction report + true + + + + + + + + + + + + + + + beta12orEarlier + Primary data about a specific biological pathway or network (the nodes and connections within the pathway or network). + Network + Pathway + + + Pathway or network + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning one or more small molecules. + + This is a broad data type and is used a placeholder for other, more specific types. + Small molecule data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning a particular genotype, phenotype or a genotype / phenotype relation. + + Genotype and phenotype data + true + + + + + + + + + + + + + + + beta12orEarlier + Image, hybridisation or some other data arising from a study of feature/molecule expression, typically profiling or quantification. + Gene expression data + Gene product profile + Gene product quantification data + Gene transcription profile + Gene transcription quantification data + Metabolite expression data + Microarray data + Non-coding RNA profile + Non-coding RNA quantification data + Protein expression data + RNA profile + RNA quantification data + RNA-seq data + Transcriptome profile + Transcriptome quantification data + mRNA profile + mRNA quantification data + Protein profile + Protein quantification data + Proteome profile + Proteome quantification data + + + Expression data + + + + + + + + + + beta12orEarlier + C[0-9]+ + Unique identifier of a chemical compound from the KEGG database. + KEGG compound ID + KEGG compound identifier + + + + Compound ID (KEGG) + + + + + + + + + + beta12orEarlier + Name (not necessarily stable) an entry (RNA family) from the RFAM database. + + + + RFAM name + + + + + + + + + + beta12orEarlier + R[0-9]+ + Identifier of a biological reaction from the KEGG reactions database. + + + + Reaction ID (KEGG) + + + + + + + + + + + beta12orEarlier + D[0-9]+ + Unique identifier of a drug from the KEGG Drug database. + + + + Drug ID (KEGG) + + + + + + + + + + beta12orEarlier + ENS[A-Z]*[FPTG][0-9]{11} + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl database. + Ensembl IDs + + + + Ensembl ID + + + + + + + + + + + + + + + + beta12orEarlier + [A-Z][0-9]+(\.[-[0-9]+])? + An identifier of a disease from the International Classification of Diseases (ICD) database. + + + + ICD identifier + + + + + + + + + + beta12orEarlier + [0-9A-Za-z]+:[0-9]+:[0-9]{1,5}(\.[0-9])? + Unique identifier of a sequence cluster from the CluSTr database. + CluSTr ID + CluSTr cluster ID + + + + Sequence cluster ID (CluSTr) + + + + + + + + + + + beta12orEarlier + G[0-9]+ + Unique identifier of a glycan ligand from the KEGG GLYCAN database (a subset of KEGG LIGAND). + + + + KEGG Glycan ID + + + + + + + + + + beta12orEarlier + [0-9]+\.[A-Z]\.[0-9]+\.[0-9]+\.[0-9]+ + A unique identifier of a family from the transport classification database (TCDB) of membrane transport proteins. + TC number + + + + OBO file for regular expression. + TCDB ID + + + + + + + + + + beta12orEarlier + MINT\-[0-9]{1,5} + Unique identifier of an entry from the MINT database of protein-protein interactions. + + + + MINT ID + + + + + + + + + + beta12orEarlier + DIP[\:\-][0-9]{3}[EN] + Unique identifier of an entry from the DIP database of protein-protein interactions. + + + + DIP ID + + + + + + + + + + beta12orEarlier + A[0-9]{6} + Unique identifier of a protein listed in the UCSD-Nature Signaling Gateway Molecule Pages database. + + + + Signaling Gateway protein ID + + + + + + + + + beta12orEarlier + true + Identifier of a protein modification catalogued in a database. + + + + Protein modification ID + + + + + + + + + + beta12orEarlier + AA[0-9]{4} + Identifier of a protein modification catalogued in the RESID database. + + + + RESID ID + + + + + + + + + + beta12orEarlier + [0-9]{4,7} + Identifier of an entry from the RGD database. + + + + RGD ID + + + + + + + + + + beta12orEarlier + AASequence:[0-9]{10} + Identifier of a protein sequence from the TAIR database. + + + + TAIR accession (protein) + + + + + + + + + + beta12orEarlier + HMDB[0-9]{5} + Identifier of a small molecule metabolite from the Human Metabolome Database (HMDB). + HMDB ID + + + + Compound ID (HMDB) + + + + + + + + + + beta12orEarlier + LM(FA|GL|GP|SP|ST|PR|SL|PK)[0-9]{4}([0-9a-zA-Z]{4})? + Identifier of an entry from the LIPID MAPS database. + LM ID + + + + LIPID MAPS ID + + + + + + + + + + beta12orEarlier + PAp[0-9]{8} + PDBML:pdbx_PDB_strand_id + Identifier of a peptide from the PeptideAtlas peptide databases. + + + + PeptideAtlas ID + + + + + + + + + beta12orEarlier + 1.7 + + Identifier of a report of molecular interactions from a database (typically). + + + Molecular interaction ID + true + + + + + + + + + + beta12orEarlier + [0-9]+ + A unique identifier of an interaction from the BioGRID database. + + + + BioGRID interaction ID + + + + + + + + + + beta12orEarlier + S[0-9]{2}\.[0-9]{3} + Unique identifier of a peptidase enzyme from the MEROPS database. + MEROPS ID + + + + Enzyme ID (MEROPS) + + + + + + + + + beta12orEarlier + true + An identifier of a mobile genetic element. + + + + Mobile genetic element ID + + + + + + + + + + beta12orEarlier + mge:[0-9]+ + An identifier of a mobile genetic element from the Aclame database. + + + + ACLAME ID + + + + + + + + + + beta12orEarlier + PWY[a-zA-Z_0-9]{2}\-[0-9]{3} + Identifier of an entry from the Saccharomyces genome database (SGD). + + + + SGD ID + + + + + + + + + beta12orEarlier + true + Unique identifier of a book. + + + + Book ID + + + + + + + + + + beta12orEarlier + (ISBN)?(-13|-10)?[:]?[ ]?([0-9]{2,3}[ -]?)?[0-9]{1,5}[ -]?[0-9]{1,7}[ -]?[0-9]{1,6}[ -]?([0-9]|X) + The International Standard Book Number (ISBN) is for identifying printed books. + + + + ISBN + + + + + + + + + + beta12orEarlier + B[0-9]{5} + Identifier of a metabolite from the 3DMET database. + 3DMET ID + + + + Compound ID (3DMET) + + + + + + + + + + beta12orEarlier + ([A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9])_.*|([OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9]_.*)|(GAG_.*)|(MULT_.*)|(PFRAG_.*)|(LIP_.*)|(CAT_.*) + A unique identifier of an interaction from the MatrixDB database. + + + + MatrixDB interaction ID + + + + + + + + + + + beta12orEarlier + [0-9]+ + A unique identifier for pathways, reactions, complexes and small molecules from the cPath (Pathway Commons) database. + + + + These identifiers are unique within the cPath database, however, they are not stable between releases. + cPath ID + + + + + + + + + + beta12orEarlier + true + [0-9]+ + Identifier of an assay from the PubChem database. + + + + PubChem bioassay ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the PubChem database. + PubChem identifier + + + + PubChem ID + + + + + + + + + + beta12orEarlier + M[0-9]{4} + Identifier of an enzyme reaction mechanism from the MACie database. + MACie entry number + + + + Reaction ID (MACie) + + + + + + + + + + beta12orEarlier + MI[0-9]{7} + Identifier for a gene from the miRBase database. + miRNA ID + miRNA identifier + miRNA name + + + + Gene ID (miRBase) + + + + + + + + + + beta12orEarlier + ZDB\-GENE\-[0-9]+\-[0-9]+ + Identifier for a gene from the Zebrafish information network genome (ZFIN) database. + + + + Gene ID (ZFIN) + + + + + + + + + + beta12orEarlier + [0-9]{5} + Identifier of an enzyme-catalysed reaction from the Rhea database. + + + + Reaction ID (Rhea) + + + + + + + + + + beta12orEarlier + UPA[0-9]{5} + Identifier of a biological pathway from the Unipathway database. + upaid + + + + Pathway ID (Unipathway) + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a small molecular from the ChEMBL database. + ChEMBL ID + + + + Compound ID (ChEMBL) + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+ + Unique identifier of an entry from the Ligand-gated ion channel (LGICdb) database. + + + + LGICdb identifier + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a biological reaction (kinetics entry) from the SABIO-RK reactions database. + + + + Reaction kinetics ID (SABIO-RK) + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of an entry from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + PharmGKB ID + + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of a pathway from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + Pathway ID (PharmGKB) + + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of a disease from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + Disease ID (PharmGKB) + + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of a drug from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + Drug ID (PharmGKB) + + + + + + + + + + beta12orEarlier + DAP[0-9]+ + Identifier of a drug from the Therapeutic Target Database (TTD). + + + + Drug ID (TTD) + + + + + + + + + + beta12orEarlier + TTDS[0-9]+ + Identifier of a target protein from the Therapeutic Target Database (TTD). + + + + Target ID (TTD) + + + + + + + + + beta12orEarlier + true + A unique identifier of a type or group of cells. + + + + Cell type identifier + + + + + + + + + + beta12orEarlier + [0-9]+ + A unique identifier of a neuron from the NeuronDB database. + + + + NeuronDB ID + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+ + A unique identifier of a neuron from the NeuroMorpho database. + + + + NeuroMorpho ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a chemical from the ChemIDplus database. + ChemIDplus ID + + + + Compound ID (ChemIDplus) + + + + + + + + + + beta12orEarlier + SMP[0-9]{5} + Identifier of a pathway from the Small Molecule Pathway Database (SMPDB). + + + + Pathway ID (SMPDB) + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the BioNumbers database of key numbers and associated data in molecular biology. + + + + BioNumbers ID + + + + + + + + + + beta12orEarlier + T3D[0-9]+ + Unique identifier of a toxin from the Toxin and Toxin Target Database (T3DB) database. + + + + T3DB ID + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a carbohydrate. + + + + Carbohydrate identifier + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the GlycomeDB database. + + + + GlycomeDB ID + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+[0-9]+ + Identifier of an entry from the LipidBank database. + + + + LipidBank ID + + + + + + + + + + beta12orEarlier + cd[0-9]{5} + Identifier of a conserved domain from the Conserved Domain Database. + + + + CDD ID + + + + + + + + + + beta12orEarlier + [0-9]{1,5} + An identifier of an entry from the MMDB database. + MMDB accession + + + + MMDB ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Unique identifier of an entry from the iRefIndex database of protein-protein interactions. + + + + iRefIndex ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Unique identifier of an entry from the ModelDB database. + + + + ModelDB ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a signaling pathway from the Database of Quantitative Cellular Signaling (DQCS). + + + + Pathway ID (DQCS) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database (Homo sapiens division). + + Ensembl ID (Homo sapiens) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Bos taurus' division). + + Ensembl ID ('Bos taurus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Canis familiaris' division). + + Ensembl ID ('Canis familiaris') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Cavia porcellus' division). + + Ensembl ID ('Cavia porcellus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona intestinalis' division). + + Ensembl ID ('Ciona intestinalis') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona savignyi' division). + + Ensembl ID ('Ciona savignyi') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Danio rerio' division). + + Ensembl ID ('Danio rerio') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Dasypus novemcinctus' division). + + Ensembl ID ('Dasypus novemcinctus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Echinops telfairi' division). + + Ensembl ID ('Echinops telfairi') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Erinaceus europaeus' division). + + Ensembl ID ('Erinaceus europaeus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Felis catus' division). + + Ensembl ID ('Felis catus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gallus gallus' division). + + Ensembl ID ('Gallus gallus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gasterosteus aculeatus' division). + + Ensembl ID ('Gasterosteus aculeatus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Homo sapiens' division). + + Ensembl ID ('Homo sapiens') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Loxodonta africana' division). + + Ensembl ID ('Loxodonta africana') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Macaca mulatta' division). + + Ensembl ID ('Macaca mulatta') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Monodelphis domestica' division). + + Ensembl ID ('Monodelphis domestica') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Mus musculus' division). + + Ensembl ID ('Mus musculus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Myotis lucifugus' division). + + Ensembl ID ('Myotis lucifugus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ornithorhynchus anatinus' division). + + Ensembl ID ("Ornithorhynchus anatinus") + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryctolagus cuniculus' division). + + Ensembl ID ('Oryctolagus cuniculus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryzias latipes' division). + + Ensembl ID ('Oryzias latipes') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Otolemur garnettii' division). + + Ensembl ID ('Otolemur garnettii') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Pan troglodytes' division). + + Ensembl ID ('Pan troglodytes') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Rattus norvegicus' division). + + Ensembl ID ('Rattus norvegicus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Spermophilus tridecemlineatus' division). + + Ensembl ID ('Spermophilus tridecemlineatus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Takifugu rubripes' division). + + Ensembl ID ('Takifugu rubripes') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Tupaia belangeri' division). + + Ensembl ID ('Tupaia belangeri') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Xenopus tropicalis' division). + + Ensembl ID ('Xenopus tropicalis') + true + + + + + + + + + + beta12orEarlier + Identifier of a protein domain (or other node) from the CATH database. + + + + CATH identifier + + + + + + + + + beta12orEarlier + 2.10.10.10 + A code number identifying a family from the CATH database. + + + + CATH node ID (family) + + + + + + + + + + beta12orEarlier + Identifier of an enzyme from the CAZy enzymes database. + CAZy ID + + + + Enzyme ID (CAZy) + + + + + + + + + + beta12orEarlier + A unique identifier assigned by the I.M.A.G.E. consortium to a clone (cloned molecular sequence). + I.M.A.G.E. cloneID + IMAGE cloneID + + + + Clone ID (IMAGE) + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a 'cellular component' concept from the Gene Ontology. + GO concept identifier (cellular compartment) + + + + GO concept ID (cellular component) + + + + + + + + + beta12orEarlier + Name of a chromosome as used in the BioCyc database. + + + + Chromosome name (BioCyc) + + + + + + + + + + beta12orEarlier + An identifier of a gene expression profile from the CleanEx database. + + + + CleanEx entry name + + + + + + + + + beta12orEarlier + An identifier of (typically a list of) gene expression experiments catalogued in the CleanEx database. + + + + CleanEx dataset code + + + + + + + + + beta12orEarlier + A human-readable collection of information concerning a genome as a whole. + + + Genome report + + + + + + + + + + beta12orEarlier + Unique identifier for a protein complex from the CORUM database. + CORUM complex ID + + + + Protein ID (CORUM) + + + + + + + + + + beta12orEarlier + Unique identifier of a position-specific scoring matrix from the CDD database. + + + + CDD PSSM-ID + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the CuticleDB database. + CuticleDB ID + + + + Protein ID (CuticleDB) + + + + + + + + + + beta12orEarlier + Identifier of a predicted transcription factor from the DBD database. + + + + DBD ID + + + + + + + + + + + + + + + beta12orEarlier + General annotation on an oligonucleotide probe, or a set of probes. + Oligonucleotide probe sets annotation + + + Oligonucleotide probe annotation + + + + + + + + + + beta12orEarlier + true + Identifier of an oligonucleotide from a database. + + + + Oligonucleotide ID + + + + + + + + + + beta12orEarlier + Identifier of an oligonucleotide probe from the dbProbe database. + + + + dbProbe ID + + + + + + + + + beta12orEarlier + Physicochemical property data for one or more dinucleotides. + + + Dinucleotide property + + + + + + + + + + beta12orEarlier + Identifier of an dinucleotide property from the DiProDB database. + + + + DiProDB ID + + + + + + + + + beta12orEarlier + 1.8 + + disordered structure in a protein. + + + Protein features report (disordered structure) + true + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the DisProt database. + DisProt ID + + + + Protein ID (DisProt) + + + + + + + + + beta12orEarlier + 1.5 + + + Annotation on an embryo or concerning embryological development. + + Embryo report + true + + + + + + + + + + + beta12orEarlier + Unique identifier for a gene transcript from the Ensembl database. + Transcript ID (Ensembl) + + + + Ensembl transcript ID + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on one or more small molecules that are enzyme inhibitors. + + Inhibitor annotation + true + + + + + + + + + beta12orEarlier + true + Moby:GeneAccessionList + An identifier of a promoter of a gene that is catalogued in a database. + + + + Promoter ID + + + + + + + + + beta12orEarlier + Identifier of an EST sequence. + + + + EST accession + + + + + + + + + + beta12orEarlier + Identifier of an EST sequence from the COGEME database. + + + + COGEME EST ID + + + + + + + + + + beta12orEarlier + Identifier of a unisequence from the COGEME database. + + + + A unisequence is a single sequence assembled from ESTs. + COGEME unisequence ID + + + + + + + + + + beta12orEarlier + Accession number of an entry (protein family) from the GeneFarm database. + GeneFarm family ID + + + + Protein family ID (GeneFarm) + + + + + + + + + beta12orEarlier + The name of a family of organism. + + + + Family name + + + + + + + + + beta12orEarlier + beta13 + + + The name of a genus of viruses. + + Genus name (virus) + true + + + + + + + + + beta12orEarlier + beta13 + + + The name of a family of viruses. + + Family name (virus) + true + + + + + + + + + beta12orEarlier + beta13 + + + The name of a SwissRegulon database. + + Database name (SwissRegulon) + true + + + + + + + + + + beta12orEarlier + A feature identifier as used in the SwissRegulon database. + + + + This can be name of a gene, the ID of a TFBS, or genomic coordinates in form "chr:start..end". + Sequence feature ID (SwissRegulon) + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the NMPDR database. + + + + A FIG ID consists of four parts: a prefix, genome id, locus type and id number. + FIG ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the Xenbase database. + + + + Gene ID (Xenbase) + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the Genolist database. + + + + Gene ID (Genolist) + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the Genolist genes database. + + Gene name (Genolist) + true + + + + + + + + + + beta12orEarlier + Identifier of an entry (promoter) from the ABS database. + ABS identifier + + + + ABS ID + + + + + + + + + + beta12orEarlier + Identifier of a transcription factor from the AraC-XylS database. + + + + AraC-XylS ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name of an entry (gene) from the HUGO database. + + Gene name (HUGO) + true + + + + + + + + + + beta12orEarlier + Identifier of a locus from the PseudoCAP database. + + + + Locus ID (PseudoCAP) + + + + + + + + + + beta12orEarlier + Identifier of a locus from the UTR database. + + + + Locus ID (UTR) + + + + + + + + + + beta12orEarlier + Unique identifier of a monosaccharide from the MonosaccharideDB database. + + + + MonosaccharideDB ID + + + + + + + + + beta12orEarlier + beta13 + + + The name of a subdivision of the Collagen Mutation Database (CMD) database. + + Database name (CMD) + true + + + + + + + + + beta12orEarlier + beta13 + + + The name of a subdivision of the Osteogenesis database. + + Database name (Osteogenesis) + true + + + + + + + + + beta12orEarlier + true + An identifier of a particular genome. + + + + Genome identifier + + + + + + + + + + + beta12orEarlier + 1.26 + An identifier of a particular genome. + + + GenomeReviews ID + true + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the GlycoMapsDB (Glycosciences.de) database. + + + + GlycoMap ID + + + + + + + + + beta12orEarlier + A conformational energy map of the glycosidic linkages in a carbohydrate molecule. + + + Carbohydrate conformational map + + + + + + + + + + beta12orEarlier + The name of a transcription factor. + + + + Transcription factor name + + + + + + + + + + beta12orEarlier + Identifier of a membrane transport proteins from the transport classification database (TCDB). + + + + TCID + + + + + + + + + beta12orEarlier + PF[0-9]{5} + Name of a domain from the Pfam database. + + + + Pfam domain name + + + + + + + + + + beta12orEarlier + CL[0-9]{4} + Accession number of a Pfam clan. + + + + Pfam clan ID + + + + + + + + + + beta12orEarlier + Identifier for a gene from the VectorBase database. + VectorBase ID + + + + Gene ID (VectorBase) + + + + + + + + + beta12orEarlier + Identifier of an entry from the UTRSite database of regulatory motifs in eukaryotic UTRs. + + + + UTRSite ID + + + + + + + + + + + + + + + beta12orEarlier + An informative report about a specific or conserved pattern in a molecular sequence, such as its context in genes or proteins, its role, origin or method of construction, etc. + Sequence motif report + Sequence profile report + + + Sequence signature report + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on a particular locus. + + Locus annotation + true + + + + + + + + + beta12orEarlier + Official name of a protein as used in the UniProt database. + + + + Protein name (UniProt) + + + + + + + + + beta12orEarlier + 1.5 + + + One or more terms from one or more controlled vocabularies which are annotations on an entity. + + The concepts are typically provided as a persistent identifier or some other link the source ontologies. Evidence of the validity of the annotation might be included. + Term ID list + true + + + + + + + + + + beta12orEarlier + Name of a protein family from the HAMAP database. + + + + HAMAP ID + + + + + + + + + beta12orEarlier + 1.12 + + + Basic information concerning an identifier of data (typically including the identifier itself). For example, a gene symbol with information concerning its provenance. + + Identifier with metadata + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation about a gene symbol. + + Gene symbol annotation + true + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a RNA transcript. + + + + Transcript ID + + + + + + + + + + beta12orEarlier + Identifier of an RNA transcript from the H-InvDB database. + + + + HIT ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene cluster in the H-InvDB database. + + + + HIX ID + + + + + + + + + + beta12orEarlier + Identifier of a antibody from the HPA database. + + + + HPA antibody id + + + + + + + + + + beta12orEarlier + Identifier of a human major histocompatibility complex (HLA) or other protein from the IMGT/HLA database. + + + + IMGT/HLA ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene assigned by the J. Craig Venter Institute (JCVI). + + + + Gene ID (JCVI) + + + + + + + + + beta12orEarlier + The name of a kinase protein. + + + + Kinase name + + + + + + + + + + beta12orEarlier + Identifier of a physical entity from the ConsensusPathDB database. + + + + ConsensusPathDB entity ID + + + + + + + + + + beta12orEarlier + Name of a physical entity from the ConsensusPathDB database. + + + + ConsensusPathDB entity name + + + + + + + + + + beta12orEarlier + The number of a strain of algae and protozoa from the CCAP database. + + + + CCAP strain number + + + + + + + + + beta12orEarlier + true + An identifier of stock from a catalogue of biological resources. + + + + Stock number + + + + + + + + + + beta12orEarlier + A stock number from The Arabidopsis information resource (TAIR). + + + + Stock number (TAIR) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the RNA editing database (REDIdb). + + + + REDIdb ID + + + + + + + + + beta12orEarlier + Name of a domain from the SMART database. + + + + SMART domain name + + + + + + + + + + beta12orEarlier + Accession number of an entry (family) from the PANTHER database. + Panther family ID + + + + Protein family ID (PANTHER) + + + + + + + + + + beta12orEarlier + A unique identifier for a virus from the RNAVirusDB database. + + + + Could list (or reference) other taxa here from https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary. + RNAVirusDB ID + + + + + + + + + beta12orEarlier + true + An accession of annotation on a (group of) viruses (catalogued in a database). + + + + Virus ID + Virus identifier + + + + + + + + + + beta12orEarlier + An identifier of a genome project assigned by NCBI. + + + + NCBI Genome Project ID + + + + + + + + + + beta12orEarlier + A unique identifier of a whole genome assigned by the NCBI. + + + + NCBI genome accession + + + + + + + + + beta12orEarlier + 1.8 + + Data concerning, extracted from, or derived from the analysis of a sequence profile, such as its name, length, technical details about the profile or it's construction, the biological role or annotation, and so on. + + + Sequence profile data + true + + + + + + + + + + beta12orEarlier + Unique identifier for a membrane protein from the TopDB database. + TopDB ID + + + + Protein ID (TopDB) + + + + + + + + + beta12orEarlier + true + Identifier of a two-dimensional (protein) gel. + Gel identifier + + + + Gel ID + + + + + + + + + + beta12orEarlier + Name of a reference map gel from the SWISS-2DPAGE database. + + + + Reference map name (SWISS-2DPAGE) + + + + + + + + + + beta12orEarlier + Unique identifier for a peroxidase protein from the PeroxiBase database. + PeroxiBase ID + + + + Protein ID (PeroxiBase) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the SISYPHUS database of tertiary structure alignments. + + + + SISYPHUS ID + + + + + + + + + + + beta12orEarlier + true + Accession of an open reading frame (catalogued in a database). + + + + ORF ID + + + + + + + + + beta12orEarlier + true + An identifier of an open reading frame. + + + + ORF identifier + + + + + + + + + + beta12orEarlier + Identifier of an entry from the GlycosciencesDB database. + LInear Notation for Unique description of Carbohydrate Sequences ID + + + + + LINUCS ID + [1-9][0-9]* + + + + + + + + + + beta12orEarlier + Unique identifier for a ligand-gated ion channel protein from the LGICdb database. + LGICdb ID + + + + Protein ID (LGICdb) + + + + + + + + + + beta12orEarlier + Identifier of an EST sequence from the MaizeDB database. + + + + MaizeDB ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the MfunGD database. + + + + Gene ID (MfunGD) + + + + + + + + + + + + + + + + beta12orEarlier + An identifier of a disease from the Orpha database. + + + + Orpha number + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the EcID database. + + + + Protein ID (EcID) + + + + + + + + + + beta12orEarlier + A unique identifier of a cDNA molecule catalogued in the RefSeq database. + + + + Clone ID (RefSeq) + + + + + + + + + + beta12orEarlier + Unique identifier for a cone snail toxin protein from the ConoServer database. + + + + Protein ID (ConoServer) + + + + + + + + + + beta12orEarlier + Identifier of a GeneSNP database entry. + + + + GeneSNP ID + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a lipid. + + + + Lipid identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + A flat-file (textual) data archive. + + + Databank + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A web site providing data (web pages) on a common theme to a HTTP client. + + + Web portal + true + + + + + + + + + + beta12orEarlier + Identifier for a gene from the VBASE2 database. + VBASE2 ID + + + + Gene ID (VBASE2) + + + + + + + + + + beta12orEarlier + A unique identifier for a virus from the DPVweb database. + DPVweb virus ID + + + + DPVweb ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a pathway from the BioSystems pathway database. + + + + Pathway ID (BioSystems) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data concerning a proteomics experiment. + + Experimental data (proteomics) + true + + + + + + + + + beta12orEarlier + An abstract of a scientific article. + + + Abstract + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a lipid structure. + + + Lipid structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the (3D) structure of a drug. + + + Drug structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the (3D) structure of a toxin. + + + Toxin structure + + + + + + + + + + beta12orEarlier + A simple matrix of numbers, where each value (or column of values) is derived derived from analysis of the corresponding position in a sequence alignment. + PSSM + + + Position-specific scoring matrix + + + + + + + + + beta12orEarlier + A matrix of distances between molecular entities, where a value (distance) is (typically) derived from comparison of two entities and reflects their similarity. + + + Distance matrix + + + + + + + + + beta12orEarlier + Distances (values representing similarity) between a group of molecular structures. + + + Structural distance matrix + + + + + + + + + beta12orEarlier + 1.5 + + + Bibliographic data concerning scientific article(s). + + Article metadata + true + + + + + + + + + beta12orEarlier + A concept from a biological ontology. + + + This includes any fields from the concept definition such as concept name, definition, comments and so on. + Ontology concept + + + + + + + + + beta12orEarlier + A numerical measure of differences in the frequency of occurrence of synonymous codons in DNA sequences. + + + Codon usage bias + + + + + + + + + beta12orEarlier + 1.8 + + Northern Blot experiments. + + + Northern blot report + true + + + + + + + + + beta12orEarlier + A map showing distance between genetic markers estimated by radiation-induced breaks in a chromosome. + RH map + + + The radiation method can break very closely linked markers providing a more detailed map. Most genetic markers and subsequences may be located to a defined map position and with a more precise estimates of distance than a linkage map. + Radiation hybrid map + + + + + + + + + beta12orEarlier + A simple list of data identifiers (such as database accessions), possibly with additional basic information on the addressed data. + + + ID list + + + + + + + + + beta12orEarlier + Gene frequencies data that may be read during phylogenetic tree calculation. + + + Phylogenetic gene frequencies data + + + + + + + + + beta12orEarlier + beta13 + + + A set of sub-sequences displaying some type of polymorphism, typically indicating the sequence in which they occur, their position and other metadata. + + Sequence set (polymorphic) + true + + + + + + + + + beta12orEarlier + 1.5 + + + An entry (resource) from the DRCAT bioinformatics resource catalogue. + + DRCAT resource + true + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a multi-protein complex; two or more polypeptides chains in a stable, functional association with one another. + + + Protein complex + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a protein (3D) structural motif; any group of contiguous or non-contiguous amino acid residues but typically those forming a feature with a structural or functional role. + + + Protein structural motif + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific lipid 3D structure(s). + + + Lipid report + + + + + + + + + beta12orEarlier + 1.4 + + + Image of one or more molecular secondary structures. + + Secondary structure image + true + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on general information, properties or features of one or more molecular secondary structures. + + Secondary structure report + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + DNA sequence-specific feature annotation (not in a feature table). + + DNA features + true + + + + + + + + + beta12orEarlier + 1.5 + + + Features concerning RNA or regions of DNA that encode an RNA molecule. + + RNA features report + true + + + + + + + + + beta12orEarlier + Biological data that has been plotted as a graph of some type, or plotting instructions for rendering such a graph. + Graph data + + + Plot + + + + + + + + + + beta12orEarlier + A protein sequence and associated metadata. + Sequence record (protein) + + + Protein sequence record + + + + + + + + + + beta12orEarlier + A nucleic acid sequence and associated metadata. + Nucleotide sequence record + Sequence record (nucleic acid) + DNA sequence record + RNA sequence record + + + Nucleic acid sequence record + + + + + + + + + beta12orEarlier + 1.8 + + A protein sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database. + + + Protein sequence record (full) + true + + + + + + + + + beta12orEarlier + 1.8 + + A nucleic acid sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database. + + + Nucleic acid sequence record (full) + true + + + + + + + + + beta12orEarlier + true + Accession of a mathematical model, typically an entry from a database. + + + + Biological model accession + + + + + + + + + + beta12orEarlier + The name of a type or group of cells. + + + + Cell type name + + + + + + + + + beta12orEarlier + true + Accession of a type or group of cells (catalogued in a database). + Cell type ID + + + + Cell type accession + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of chemicals. + Chemical compound accession + Small molecule accession + + + + Compound accession + + + + + + + + + beta12orEarlier + true + Accession of a drug. + + + + Drug accession + + + + + + + + + + beta12orEarlier + Name of a toxin. + + + + Toxin name + + + + + + + + + beta12orEarlier + true + Accession of a toxin (catalogued in a database). + + + + Toxin accession + + + + + + + + + beta12orEarlier + true + Accession of a monosaccharide (catalogued in a database). + + + + Monosaccharide accession + + + + + + + + + + beta12orEarlier + Common name of a drug. + + + + Drug name + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of carbohydrates. + + + + Carbohydrate accession + + + + + + + + + beta12orEarlier + true + Accession of a specific molecule (catalogued in a database). + + + + Molecule accession + + + + + + + + + beta12orEarlier + true + Accession of a data definition (catalogued in a database). + + + + Data resource definition accession + + + + + + + + + beta12orEarlier + true + An accession of a particular genome (in a database). + + + + Genome accession + + + + + + + + + beta12orEarlier + true + An accession of a map of a molecular sequence (deposited in a database). + + + + Map accession + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of lipids. + + + + Lipid accession + + + + + + + + + + beta12orEarlier + true + Accession of a peptide deposited in a database. + + + + Peptide ID + + + + + + + + + + beta12orEarlier + true + Accession of a protein deposited in a database. + Protein accessions + + + + Protein accession + + + + + + + + + beta12orEarlier + true + An accession of annotation on a (group of) organisms (catalogued in a database). + + + + Organism accession + + + + + + + + + + beta12orEarlier + Moby:BriefOccurrenceRecord + Moby:FirstEpithet + Moby:InfraspecificEpithet + Moby:OccurrenceRecord + Moby:Organism_Name + Moby:OrganismsLongName + Moby:OrganismsShortName + The name of an organism (or group of organisms). + + + + Organism name + + + + + + + + + beta12orEarlier + true + Accession of a protein family (that is deposited in a database). + + + + Protein family accession + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of transcription factors or binding sites. + + + + Transcription factor accession + + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a strain of an organism variant, typically a plant, virus or bacterium. + + + + Strain accession + + + + + + + + + + beta12orEarlier + 1.26 + true + An accession of annotation on a (group of) viruses (catalogued in a database). + + + Virus identifier + true + + + + + + + + + beta12orEarlier + Metadata on sequence features. + + + Sequence features metadata + + + + + + + + + + beta12orEarlier + Identifier of a Gramene database entry. + + + + Gramene identifier + + + + + + + + + beta12orEarlier + An identifier of an entry from the DDBJ sequence database. + DDBJ ID + DDBJ accession number + DDBJ identifier + + + + DDBJ accession + + + + + + + + + beta12orEarlier + An identifier of an entity from the ConsensusPathDB database. + + + + ConsensusPathDB identifier + + + + + + + + + beta12orEarlier + 1.8 + + + Data concerning, extracted from, or derived from the analysis of molecular sequence(s). + + This is a broad data type and is used a placeholder for other, more specific types. + Sequence data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning codon usage. + + This is a broad data type and is used a placeholder for other, more specific types. + Codon usage + true + + + + + + + + + beta12orEarlier + 1.5 + + + + Data derived from the analysis of a scientific text such as a full text article from a scientific journal. + + Article report + true + + + + + + + + + beta12orEarlier + An informative report of information about molecular sequence(s), including basic information (metadata), and reports generated from molecular sequence analysis, including positional features and non-positional properties. + Sequence-derived report + + + Sequence report + + + + + + + + + beta12orEarlier + Data concerning the properties or features of one or more protein secondary structures. + + + Protein secondary structure + + + + + + + + + + beta12orEarlier + A Hopp and Woods plot of predicted antigenicity of a peptide or protein. + + + Hopp and Woods plot + + + + + + + + + beta12orEarlier + 1.21 + + + A melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA). + + + Nucleic acid melting curve + true + + + + + + + + + beta12orEarlier + 1.21 + + A probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). + + + Nucleic acid probability profile + true + + + + + + + + + beta12orEarlier + 1.21 + + A temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). + + + Nucleic acid temperature profile + true + + + + + + + + + beta12orEarlier + 1.8 + + A report typically including a map (diagram) of a gene regulatory network. + + + Gene regulatory network report + true + + + + + + + + + beta12orEarlier + 1.8 + + An informative report on a two-dimensional (2D PAGE) gel. + + + 2D PAGE gel report + true + + + + + + + + + beta12orEarlier + 1.14 + + General annotation on a set of oligonucleotide probes, such as the gene name with which the probe set is associated and which probes belong to the set. + + + Oligonucleotide probe sets annotation + true + + + + + + + + + beta12orEarlier + 1.5 + + + An image from a microarray experiment which (typically) allows a visualisation of probe hybridisation and gene-expression data. + + Microarray image + true + + + + + + + + + beta12orEarlier + Data (typically biological or biomedical) that has been rendered into an image, typically for display on screen. + Image data + + + Image + http://semanticscience.org/resource/SIO_000079 + http://semanticscience.org/resource/SIO_000081 + + + + + + + + + + beta12orEarlier + Image of a molecular sequence, possibly with sequence features or properties shown. + + + Sequence image + + + + + + + + + beta12orEarlier + A report on protein properties concerning hydropathy. + Protein hydropathy report + + + Protein hydropathy data + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning a computational workflow. + + Workflow data + true + + + + + + + + + beta12orEarlier + 1.5 + + + A computational workflow. + + Workflow + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning molecular secondary structure data. + + Secondary structure data + true + + + + + + + + + beta12orEarlier + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw protein sequence (string of characters). + + + Protein sequence (raw) + true + + + + + + + + + beta12orEarlier + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw nucleic acid sequence. + + + Nucleic acid sequence (raw) + true + + + + + + + + + beta12orEarlier + + One or more protein sequences, possibly with associated annotation. + Amino acid sequence + Amino acid sequences + Protein sequences + + + Protein sequence + http://purl.org/biotop/biotop.owl#AminoAcidSequenceInformation + + + + + + + + + beta12orEarlier + One or more nucleic acid sequences, possibly with associated annotation. + Nucleic acid sequences + Nucleotide sequence + Nucleotide sequences + DNA sequence + + + Nucleic acid sequence + http://purl.org/biotop/biotop.owl#NucleotideSequenceInformation + + + + + + + + + beta12orEarlier + Data concerning a biochemical reaction, typically data and more general annotation on the kinetics of enzyme-catalysed reaction. + Enzyme kinetics annotation + Reaction annotation + + + This is a broad data type and is used a placeholder for other, more specific types. + Reaction data + + + + + + + + + beta12orEarlier + Data concerning small peptides. + Peptide data + + + Peptide property + + + + + + + + + beta12orEarlier + Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19. + 1.5 + + + An informative report concerning the classification of protein sequences or structures. + + This is a broad data type and is used a placeholder for other, more specific types. + Protein classification + true + + + + + + + + + beta12orEarlier + 1.8 + + Data concerning specific or conserved pattern in molecular sequences. + + + This is a broad data type and is used a placeholder for other, more specific types. + Sequence motif data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning models representing a (typically multiple) sequence alignment. + + This is a broad data type and is used a placeholder for other, more specific types. + Sequence profile data + true + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning a specific biological pathway or network. + + Pathway or network data + true + + + + + + + + + + + + + + + beta12orEarlier + An informative report concerning or derived from the analysis of a biological pathway or network, such as a map (diagram) or annotation. + + + Pathway or network report + + + + + + + + + beta12orEarlier + A thermodynamic or kinetic property of a nucleic acid molecule. + Nucleic acid property (thermodynamic or kinetic) + Nucleic acid thermodynamic property + + + Nucleic acid thermodynamic data + + + + + + + + + beta12orEarlier + Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19. + 1.5 + + + Data concerning the classification of nucleic acid sequences or structures. + + This is a broad data type and is used a placeholder for other, more specific types. + Nucleic acid classification + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on a classification of molecular sequences, structures or other entities. + + This can include an entire classification, components such as classifiers, assignments of entities to a classification and so on. + Classification report + true + + + + + + + + + beta12orEarlier + 1.8 + + key residues involved in protein folding. + + + Protein features report (key folding sites) + true + + + + + + + + + beta12orEarlier + Geometry data for a protein structure, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc. + Torsion angle data + + + Protein geometry data + + + + + + + + + + beta12orEarlier + An image of protein structure. + Structure image (protein) + + + Protein structure image + + + + + + + + + beta12orEarlier + Weights for sequence positions or characters in phylogenetic analysis where zero is defined as unweighted. + + + Phylogenetic character weights + + + + + + + + + beta12orEarlier + Annotation of one particular positional feature on a biomolecular (typically genome) sequence, suitable for import and display in a genome browser. + Genome annotation track + Genome track + Genome-browser track + Genomic track + Sequence annotation track + + + Annotation track + + + + + + + + + + beta12orEarlier + + P43353|Q7M1G0|Q9C199|A5A6J6 + [OPQ][0-9][A-Z0-9]{3}[0-9]|[A-NR-Z][0-9]([A-Z][A-Z0-9]{2}[0-9]){1,2} + Accession number of a UniProt (protein sequence) database entry. + UniProt accession number + UniProt entry accession + UniProtKB accession + UniProtKB accession number + Swiss-Prot entry accession + TrEMBL entry accession + + + + UniProt accession + + + + + + + + + + beta12orEarlier + 16 + [1-9][0-9]? + Identifier of a genetic code in the NCBI list of genetic codes. + + + + NCBI genetic code ID + + + + + + + + + + + + + + + beta12orEarlier + Identifier of a concept in an ontology of biological or bioinformatics concepts and relations. + + + + Ontology concept identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept for a biological process from the GO ontology. + + GO concept name (biological process) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept for a molecular function from the GO ontology. + + GO concept name (molecular function) + true + + + + + + + + + + + + + + + beta12orEarlier + Data concerning the classification, identification and naming of organisms. + Taxonomic data + + + This is a broad data type and is used a placeholder for other, more specific types. + Taxonomy + + + + + + + + + + beta13 + EMBL/GENBANK/DDBJ coding feature protein identifier, issued by International collaborators. + + + + This qualifier consists of a stable ID portion (3+5 format with 3 position letters and 5 numbers) plus a version number after the decimal point. When the protein sequence encoded by the CDS changes, only the version number of the /protein_id value is incremented; the stable part of the /protein_id remains unchanged and as a result will permanently be associated with a given protein; this qualifier is valid only on CDS features which translate into a valid protein. + Protein ID (EMBL/GenBank/DDBJ) + + + + + + + + + beta13 + 1.5 + + A type of data that (typically) corresponds to entries from the primary biological databases and which is (typically) the primary input or output of a tool, i.e. the data the tool processes or generates, as distinct from metadata and identifiers which describe and identify such core data, parameters that control the behaviour of tools, reports of derivative data generated by tools and annotation. + + + Core data entities typically have a format and may be identified by an accession number. + Core data + true + + + + + + + + + + + + + + + beta13 + true + Name or other identifier of molecular sequence feature(s). + + + + Sequence feature identifier + + + + + + + + + + + + + + + beta13 + true + An identifier of a molecular tertiary structure, typically an entry from a structure database. + + + + Structure identifier + + + + + + + + + + + + + + + beta13 + true + An identifier of an array of numerical values, such as a comparison matrix. + + + + Matrix identifier + + + + + + + + + beta13 + 1.8 + + A report (typically a table) on character or word composition / frequency of protein sequence(s). + + + Protein sequence composition + true + + + + + + + + + beta13 + 1.8 + + A report (typically a table) on character or word composition / frequency of nucleic acid sequence(s). + + + Nucleic acid sequence composition (report) + true + + + + + + + + + beta13 + 1.5 + + + A node from a classification of protein structural domain(s). + + Protein domain classification node + true + + + + + + + + + beta13 + Duplicates http://edamontology.org/data_1002, hence deprecated. + 1.23 + + Unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service. + + + CAS number + true + + + + + + + + + + beta13 + Unique identifier of a drug conforming to the Anatomical Therapeutic Chemical (ATC) Classification System, a drug classification system controlled by the WHO Collaborating Centre for Drug Statistics Methodology (WHOCC). + + + + ATC code + + + + + + + + + beta13 + A unique, unambiguous, alphanumeric identifier of a chemical substance as catalogued by the Substance Registration System of the Food and Drug Administration (FDA). + Unique Ingredient Identifier + + + + UNII + + + + + + + + + beta13 + 1.5 + + + Basic information concerning geographical location or time. + + Geotemporal metadata + true + + + + + + + + + beta13 + Metadata concerning the software, hardware or other aspects of a computer system. + + + System metadata + + + + + + + + + beta13 + 1.15 + + A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user. + + + Sequence feature name + true + + + + + + + + + beta13 + Raw data such as measurements or other results from laboratory experiments, as generated from laboratory hardware. + Experimental measurement data + Experimentally measured data + Measured data + Measurement + Measurement data + Measurement metadata + Raw experimental data + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Experimental measurement + + + + + + + + + + beta13 + Raw data (typically MIAME-compliant) for hybridisations from a microarray experiment. + + + Such data as found in Affymetrix CEL or GPR files. + Raw microarray data + + + + + + + + + + + + + + + beta13 + Data generated from processing and analysis of probe set data from a microarray experiment. + Gene annotation (expression) + Gene expression report + Microarray probe set data + + + Such data as found in Affymetrix .CHP files or data from other software such as RMA or dChip. + Processed microarray data + + + + + + + + + + beta13 + The final processed (normalised) data for a set of hybridisations in a microarray experiment. + Gene expression data matrix + Normalised microarray data + + + This combines data from all hybridisations. + Gene expression matrix + + + + + + + + + beta13 + Annotation on a biological sample, for example experimental factors and their values. + + + This might include compound and dose in a dose response experiment. + Sample annotation + + + + + + + + + beta13 + Annotation on the array itself used in a microarray experiment. + + + This might include gene identifiers, genomic coordinates, probe oligonucleotide sequences etc. + Microarray metadata + + + + + + + + + beta13 + 1.8 + + Annotation on laboratory and/or data processing protocols used in an microarray experiment. + + + This might describe e.g. the normalisation methods used to process the raw data. + Microarray protocol annotation + true + + + + + + + + + beta13 + Data concerning the hybridisations measured during a microarray experiment. + + + Microarray hybridisation data + + + + + + + + + beta13 + 1.5 + + + A report of regions in a molecular sequence that are biased to certain characters. + + Sequence features (compositionally-biased regions) + true + + + + + + + + + beta13 + 1.5 + + A report on features in a nucleic acid sequence that indicate changes to or differences between sequences. + + + Nucleic acid features (difference and change) + true + + + + + + + + + + beta13 + The report may be based on analysis of nucleic acid sequence or structural data, or any annotation or information about specific nucleic acid 3D structure(s) or such structures in general. + A human-readable collection of information about regions within a nucleic acid sequence which form secondary or tertiary (3D) structures. + Nucleic acid features (structure) + Quadruplexes (report) + Stem loop (report) + d-loop (report) + + + Nucleic acid structure report + + + + + + + + + beta13 + 1.8 + + short repetitive subsequences (repeat sequences) in a protein sequence. + + + Protein features report (repeats) + true + + + + + + + + + beta13 + 1.8 + + Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more protein sequences. + + + Sequence motif matches (protein) + true + + + + + + + + + beta13 + 1.8 + + Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more nucleic acid sequences. + + + Sequence motif matches (nucleic acid) + true + + + + + + + + + beta13 + 1.5 + + + A report on displacement loops in a mitochondrial DNA sequence. + + A displacement loop is a region of mitochondrial DNA in which one of the strands is displaced by an RNA molecule. + Nucleic acid features (d-loop) + true + + + + + + + + + beta13 + 1.5 + + + A report on stem loops in a DNA sequence. + + A stem loop is a hairpin structure; a double-helical structure formed when two complementary regions of a single strand of RNA or DNA molecule form base-pairs. + Nucleic acid features (stem loop) + true + + + + + + + + + beta13 + An informative report on features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules. This includes reports on a specific gene transcript, clone or EST. + Clone or EST (report) + Gene transcript annotation + Nucleic acid features (mRNA features) + Transcript (report) + mRNA (report) + mRNA features + + + This includes 5'untranslated region (5'UTR), coding sequences (CDS), exons, intervening sequences (intron) and 3'untranslated regions (3'UTR). + Gene transcript report + + + + + + + + + beta13 + 1.8 + + features of non-coding or functional RNA molecules, including tRNA and rRNA. + + + Non-coding RNA + true + + + + + + + + + beta13 + 1.5 + + + Features concerning transcription of DNA into RNA including the regulation of transcription. + + This includes promoters, CAAT signals, TATA signals, -35 signals, -10 signals, GC signals, primer binding sites for initiation of transcription or reverse transcription, enhancer, attenuator, terminators and ribosome binding sites. + Transcriptional features (report) + true + + + + + + + + + beta13 + 1.5 + + + A report on predicted or actual immunoglobulin gene structure including constant, switch and variable regions and diversity, joining and variable segments. + + Nucleic acid features (immunoglobulin gene structure) + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'class' node from the SCOP database. + + SCOP class + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'fold' node from the SCOP database. + + SCOP fold + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'superfamily' node from the SCOP database. + + SCOP superfamily + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'family' node from the SCOP database. + + SCOP family + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'protein' node from the SCOP database. + + SCOP protein + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'species' node from the SCOP database. + + SCOP species + true + + + + + + + + + beta13 + 1.8 + + mass spectrometry experiments. + + + Mass spectrometry experiment + true + + + + + + + + + beta13 + Nucleic acid classification + A human-readable collection of information about a particular family of genes, typically a set of genes with similar sequence that originate from duplication of a common ancestor gene, or any other classification of nucleic acid sequences or structures that reflects gene structure. + Gene annotation (homology information) + Gene annotation (homology) + Gene family annotation + Gene homology (report) + Homology information + + + This includes reports on on gene homologues between species. + Gene family report + + + + + + + + + beta13 + An image of a protein. + + + Protein image + + + + + + + + + beta13 + 1.24 + + + + + An alignment of protein sequences and/or structures. + + Protein alignment + true + + + + + + + + + 1.0 + 1.8 + + sequencing experiment, including samples, sampling, preparation, sequencing, and analysis. + + + NGS experiment + true + + + + + + + + + 1.1 + An informative report about a DNA sequence assembly. + Assembly report + + + This might include an overall quality assessment of the assembly and summary statistics including counts, average length and number of bases for reads, matches and non-matches, contigs, reads in pairs etc. + Sequence assembly report + + + + + + + + + 1.1 + An index of a genome sequence. + + + Many sequence alignment tasks involving many or very large sequences rely on a precomputed index of the sequence to accelerate the alignment. + Genome index + + + + + + + + + 1.1 + 1.8 + + Report concerning genome-wide association study experiments. + + + GWAS report + true + + + + + + + + + 1.2 + The position of a cytogenetic band in a genome. + + + Information might include start and end position in a chromosome sequence, chromosome identifier, name of band and so on. + Cytoband position + + + + + + + + + + + 1.2 + CL_[0-9]{7} + Cell type ontology concept ID. + CL ID + + + + Cell type ontology ID + + + + + + + + + 1.2 + Mathematical model of a network, that contains biochemical kinetics. + + + Kinetic model + + + + + + + + + + 1.3 + Identifier of a COSMIC database entry. + COSMIC identifier + + + + COSMIC ID + + + + + + + + + + 1.3 + Identifier of a HGMD database entry. + HGMD identifier + + + + HGMD ID + + + + + + + + + 1.3 + true + Unique identifier of sequence assembly. + Sequence assembly version + + + + Sequence assembly ID + + + + + + + + + 1.3 + 1.5 + + + A label (text token) describing a type of sequence feature such as gene, transcript, cds, exon, repeat, simple, misc, variation, somatic variation, structural variation, somatic structural variation, constrained or regulatory. + + Sequence feature type + true + + + + + + + + + 1.3 + 1.5 + + + An informative report on gene homologues between species. + + Gene homology (report) + true + + + + + + + + + + + 1.3 + ENSGT00390000003602 + Unique identifier for a gene tree from the Ensembl database. + Ensembl ID (gene tree) + + + + Ensembl gene tree ID + + + + + + + + + 1.3 + A phylogenetic tree that is an estimate of the character's phylogeny. + + + Gene tree + + + + + + + + + 1.3 + A phylogenetic tree that reflects phylogeny of the taxa from which the characters (used in calculating the tree) were sampled. + + + Species tree + + + + + + + + + + + + + + + 1.3 + true + Name or other identifier of an entry from a biosample database. + Sample accession + + + + Sample ID + + + + + + + + + + 1.3 + Identifier of an object from the MGI database. + + + + MGI accession + + + + + + + + + 1.3 + Name of a phenotype. + Phenotype + Phenotypes + + + + Phenotype name + + + + + + + + + 1.4 + A HMM transition matrix contains the probabilities of switching from one HMM state to another. + HMM transition matrix + + + Consider for example an HMM with two states (AT-rich and GC-rich). The transition matrix will hold the probabilities of switching from the AT-rich to the GC-rich state, and vica versa. + Transition matrix + + + + + + + + + 1.4 + A HMM emission matrix holds the probabilities of choosing the four nucleotides (A, C, G and T) in each of the states of a HMM. + HMM emission matrix + + + Consider for example an HMM with two states (AT-rich and GC-rich). The emission matrix holds the probabilities of choosing each of the four nucleotides (A, C, G and T) in the AT-rich state and in the GC-rich state. + Emission matrix + + + + + + + + + 1.4 + 1.15 + + A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states. + + + Hidden Markov model + true + + + + + + + + + 1.4 + true + An identifier of a data format. + + + Format identifier + + + + + + + + + 1.5 + Raw biological or biomedical image generated by some experimental technique. + + + Raw image + http://semanticscience.org/resource/SIO_000081 + + + + + + + + + 1.5 + Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all carbohydrates. + Carbohydrate data + + + Carbohydrate property + + + + + + + + + 1.5 + 1.8 + + Report concerning proteomics experiments. + + + Proteomics experiment report + true + + + + + + + + + 1.5 + 1.8 + + RNAi experiments. + + + RNAi report + true + + + + + + + + + 1.5 + 1.8 + + biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction. + + + Simulation experiment report + true + + + + + + + + + + + + + + + 1.7 + An imaging technique that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body. + MRT image + Magnetic resonance imaging image + Magnetic resonance tomography image + NMRI image + Nuclear magnetic resonance imaging image + + + MRI image + + + + + + + + + + + + + + + 1.7 + An image from a cell migration track assay. + + + Cell migration track image + + + + + + + + + 1.7 + Rate of association of a protein with another protein or some other molecule. + kon + + + Rate of association + + + + + + + + + 1.7 + Multiple gene identifiers in a specific order. + + + Such data are often used for genome rearrangement tools and phylogenetic tree labeling. + Gene order + + + + + + + + + 1.7 + The spectrum of frequencies of electromagnetic radiation emitted from a molecule as a result of some spectroscopy experiment. + Spectra + + + Spectrum + + + + + + + + + + + + + + + 1.7 + Spectral information for a molecule from a nuclear magnetic resonance experiment. + NMR spectra + + + NMR spectrum + + + + + + + + + 1.8 + 1.21 + + A sketch of a small molecule made with some specialised drawing package. + + + Chemical structure sketches are used for presentational purposes but also as inputs to various analysis software. + Chemical structure sketch + true + + + + + + + + + 1.8 + An informative report about a specific or conserved nucleic acid sequence pattern. + + + Nucleic acid signature + + + + + + + + + 1.8 + A DNA sequence. + DNA sequences + + + DNA sequence + + + + + + + + + 1.8 + An RNA sequence. + RNA sequences + + + RNA sequence + + + + + + + + + 1.8 + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw RNA sequence. + + + RNA sequence (raw) + true + + + + + + + + + 1.8 + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw DNA sequence. + + + DNA sequence (raw) + true + + + + + + + + + + + + + + + 1.8 + Data on gene sequence variations resulting large-scale genotyping and DNA sequencing projects. + Gene sequence variations + + + Variations are stored along with a reference genome. + Sequence variations + + + + + + + + + 1.8 + A list of publications such as scientic papers or books. + + + Bibliography + + + + + + + + + 1.8 + A mapping of supplied textual terms or phrases to ontology concepts (URIs). + + + Ontology mapping + + + + + + + + + 1.9 + Any data concerning a specific biological or biomedical image. + Image-associated data + Image-related data + + + This can include basic provenance and technical information about the image, scientific annotation and so on. + Image metadata + + + + + + + + + 1.9 + A human-readable collection of information concerning a clinical trial. + Clinical trial information + + + Clinical trial report + + + + + + + + + 1.10 + A report about a biosample. + Biosample report + + + Reference sample report + + + + + + + + + 1.10 + Accession number of an entry from the Gene Expression Atlas. + + + + Gene Expression Atlas Experiment ID + + + + + + + + + + + + + + + 1.12 + true + Identifier of an entry from a database of disease. + + + + Disease identifier + + + + + + + + + + 1.12 + The name of some disease. + + + + Disease name + + + + + + + + + 1.12 + Some material that is used for educational (training) purposes. + OER + Open educational resource + + + Training material + + + + + + + + + 1.12 + A training course available for use on the Web. + On-line course + MOOC + Massive open online course + + + Online course + + + + + + + + + 1.12 + Any free or plain text, typically for human consumption and in English. Can instantiate also as a textual search query. + Free text + Plain text + Textual search query + + + Text + + + + + + + + + + 1.14 + Machine-readable biodiversity data. + Biodiversity information + OTU table + + + Biodiversity data + + + + + + + + + 1.14 + A human-readable collection of information concerning biosafety data. + Biosafety information + + + Biosafety report + + + + + + + + + 1.14 + A report about any kind of isolation of biological material. + Geographic location + Isolation source + + + Isolation report + + + + + + + + + 1.14 + Information about the ability of an organism to cause disease in a corresponding host. + Pathogenicity + + + Pathogenicity report + + + + + + + + + 1.14 + Information about the biosafety classification of an organism according to corresponding law. + Biosafety level + + + Biosafety classification + + + + + + + + + 1.14 + A report about localisation of the isolaton of biological material e.g. country or coordinates. + + + Geographic location + + + + + + + + + 1.14 + A report about any kind of isolation source of biological material e.g. blood, water, soil. + + + Isolation source + + + + + + + + + 1.14 + Experimentally determined parameter of the physiology of an organism, e.g. substrate spectrum. + + + Physiology parameter + + + + + + + + + 1.14 + Experimentally determined parameter of the morphology of an organism, e.g. size & shape. + + + Morphology parameter + + + + + + + + + 1.14 + Experimental determined parameter for the cultivation of an organism. + Cultivation conditions + Carbon source + Culture media composition + Nitrogen source + Salinity + Temperature + pH value + + + Cultivation parameter + + + + + + + + + 1.15 + Data concerning a sequencing experiment, that may be specified as an input to some tool. + + + Sequencing metadata name + + + + + + + + + 1.15 + An identifier of a flow cell of a sequencing machine. + + + A flow cell is used to immobilise, amplify and sequence millions of molecules at once. In Illumina machines, a flowcell is composed of 8 "lanes" which allows 8 experiments in a single analysis. + Flow cell identifier + + + + + + + + + 1.15 + An identifier of a lane within a flow cell of a sequencing machine, within which millions of sequences are immobilised, amplified and sequenced. + + + Lane identifier + + + + + + + + + 1.15 + A number corresponding to the number of an analysis performed by a sequencing machine. For example, if it's the 13th analysis, the run is 13. + + + Run number + + + + + + + + + 1.15 + Data concerning ecology; for example measurements and reports from the study of interactions among organisms and their environment. + + + This is a broad data type and is used a placeholder for other, more specific types. + Ecological data + + + + + + + + + 1.15 + The mean species diversity in sites or habitats at a local scale. + α-diversity + + + Alpha diversity data + + + + + + + + + 1.15 + The ratio between regional and local species diversity. + True beta diversity + β-diversity + + + Beta diversity data + + + + + + + + + 1.15 + The total species diversity in a landscape. + ɣ-diversity + + + Gamma diversity data + + + + + + + + + + 1.15 + A plot in which community data (e.g. species abundance data) is summarised. Similar species and samples are plotted close together, and dissimilar species and samples are plotted placed far apart. + + + Ordination plot + + + + + + + + + 1.16 + A ranked list of categories (usually ontology concepts), each associated with a statistical metric of over-/under-representation within the studied data. + Enrichment report + Over-representation report + Functional enrichment report + + + Over-representation data + + + + + + + + + + + + + + + 1.16 + GO-term report + A ranked list of Gene Ontology concepts, each associated with a p-value, concerning or derived from the analysis of e.g. a set of genes or proteins. + GO-term enrichment report + Gene ontology concept over-representation report + Gene ontology enrichment report + Gene ontology term enrichment report + + + GO-term enrichment data + + + + + + + + + 1.16 + Score for localization of one or more post-translational modifications in peptide sequence measured by mass spectrometry. + False localisation rate + PTM localisation + PTM score + + + Localisation score + + + + + + + + + + 1.16 + Identifier of a protein modification catalogued in the Unimod database. + + + + Unimod ID + + + + + + + + + 1.16 + Identifier for mass spectrometry proteomics data in the proteomexchange.org repository. + + + + ProteomeXchange ID + + + + + + + + + 1.16 + Groupings of expression profiles according to a clustering algorithm. + Clustered gene expression profiles + + + Clustered expression profiles + + + + + + + + + + 1.16 + An identifier of a concept from the BRENDA ontology. + + + + BRENDA ontology concept ID + + + + + + + + + + 1.16 + A text (such as a scientific article), annotated with notes, data and metadata, such as recognised entities, concepts, and their relations. + + + Annotated text + + + + + + + + + 1.16 + A structured query, in form of a script, that defines a database search task. + + + Query script + + + + + + + + + + + + + + + 1.19 + Structural 3D model (volume map) from electron microscopy. + + + 3D EM Map + + + + + + + + + + + + + + + 1.19 + Annotation on a structural 3D EM Map from electron microscopy. This might include one or several locations in the map of the known features of a particular macromolecule. + + + 3D EM Mask + + + + + + + + + + + + + + + 1.19 + Raw DDD movie acquisition from electron microscopy. + + + EM Movie + + + + + + + + + + + + + + + 1.19 + Raw acquisition from electron microscopy or average of an aligned DDD movie. + + + EM Micrograph + + + + + + + + + + + + + + + 1.21 + Data coming from molecular simulations, computer "experiments" on model molecules. + + + Typically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic). + Molecular simulation data + + + + + + + + + + 1.21 + Identifier of an entry from the RNA central database of annotated human miRNAs. + + + + There are canonical and taxon-specific forms of RNAcentral ID. Canonical form e.g. urs_9or10digits identifies an RNA sequence (within the RNA central database) which may appear in multiple sequences. Taxon-specific form identifies a sequence in the specific taxon (e.g. urs_9or10digits_taxonID). + RNA central ID + + + + + + + + + 1.21 + A human-readable systematic collection of patient (or population) health information in a digital format. + EHR + EMR + Electronic medical record + + + Electronic health record + + + + + + + + + 1.22 + Data coming from molecular simulations, computer "experiments" on model molecules. Typically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic). + + + Simulation + + + + + + + + + 1.22 + Dynamic information of a structure molecular system coming from a molecular simulation: XYZ 3D coordinates (sometimes with their associated velocities) for every atom along time. + + + Trajectory data + + + + + + + + + 1.22 + Force field parameters: charges, masses, radii, bond lengths, bond dihedrals, etc. define the structural molecular system, and are essential for the proper description and simulation of a molecular system. + + + Forcefield parameters + + + + + + + + + 1.22 + Static information of a structure molecular system that is needed for a molecular simulation: the list of atoms, their non-bonded parameters for Van der Waals and electrostatic interactions, and the complete connectivity in terms of bonds, angles and dihedrals. + + + Topology data + + + + + + + + + 1.22 + Visualization of distribution of quantitative data, e.g. expression data, by histograms, violin plots and density plots. + Density plot + + + Histogram + + + + + + + + + 1.23 + Report of the quality control review that was made of factors involved in a procedure. + QC metrics + QC report + Quality control metrics + Quality control report + + + + + + + + + 1.23 + A table of unnormalized values representing summarised read counts per genomic region (e.g. gene, transcript, peak). + Read count matrix + + + Count matrix + + + + + + + + + 1.24 + Alignment (superimposition) of DNA tertiary (3D) structures. + Structure alignment (DNA) + + + DNA structure alignment + + + + + + + + + 1.24 + A score derived from the P-value to ensure correction for multiple tests. The Q-value provides an estimate of the positive False Discovery Rate (pFDR), i.e. the rate of false positives among all the cases reported positive: pFDR = FP / (FP + TP). + Adjusted P-value + FDR + Padj + pFDR + + + Q-values are widely used in high-throughput data analysis (e.g. detection of differentially expressed genes from transcriptome data). + Q-value + + + + + + + + + + + 1.24 + A profile HMM is a variant of a Hidden Markov model that is derived specifically from a set of (aligned) biological sequences. Profile HMMs provide the basis for a position-specific scoring system, which can be used to align sequences and search databases for related sequences. + + + Profile HMM + + + + + + + + + + + + 1.24 + + WP[0-9]+ + Identifier of a pathway from the WikiPathways pathway database. + WikiPathways ID + WikiPathways pathway ID + + + + Pathway ID (WikiPathways) + + + + + + + + + + + + + + + 1.24 + A ranked list of pathways, each associated with z-score, p-value or similar, concerning or derived from the analysis of e.g. a set of genes or proteins. + Pathway analysis results + Pathway enrichment report + Pathway over-representation report + Pathway report + Pathway term enrichment report + + + Pathway overrepresentation data + + + + + + + + + 1.26 + + + \d{4}-\d{4}-\d{4}-\d{3}(\d|X) + Identifier of a researcher registered with the ORCID database. Used to identify author IDs. + + + + + ORCID Identifier + + + + + + + + + + beta12orEarlier + + + + Chemical structure specified in Simplified Molecular Input Line Entry System (SMILES) line notation. + + + SMILES + + + + + + + + + + + beta12orEarlier + Chemical structure specified in IUPAC International Chemical Identifier (InChI) line notation. + + + InChI + + + + + + + + + + beta12orEarlier + Chemical structure specified by Molecular Formula (MF), including a count of each element in a compound. + + + The general MF query format consists of a series of valid atomic symbols, with an optional number or range. + mf + + + + + + + + + + beta12orEarlier + The InChIKey (hashed InChI) is a fixed length (25 character) condensed digital representation of an InChI chemical structure specification. It uniquely identifies a chemical compound. + + + An InChIKey identifier is not human- nor machine-readable but is more suitable for web searches than an InChI chemical structure specification. + InChIKey + + + + + + + + + beta12orEarlier + SMILES ARbitrary Target Specification (SMARTS) format for chemical structure specification, which is a subset of the SMILES line notation. + + + smarts + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence with possible ambiguity, unknown positions and non-sequence characters. + + + Non-sequence characters may be used for example for gaps. + nucleotide + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Nucleotide_sequence + + + + + + + + + + beta12orEarlier + Alphabet for a protein sequence with possible ambiguity, unknown positions and non-sequence characters. + + + Non-sequence characters may be used for gaps and translation stop. + protein + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Amino_acid_sequence + + + + + + + + + + beta12orEarlier + Alphabet for the consensus of two or more molecular sequences. + + + consensus + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure nucleotide + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence (characters ACGTU only) with possible unknown positions but without ambiguity or non-sequence characters . + + + unambiguous pure nucleotide + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence with possible ambiguity, unknown positions and non-sequence characters. + + + dna + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#DNA_sequence + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence with possible ambiguity, unknown positions and non-sequence characters. + + + rna + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#RNA_sequence + + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence (characters ACGT only) with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure dna + + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure dna + + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence (characters ACGU only) with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure rna sequence + + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure rna + + + + + + + + + + beta12orEarlier + Alphabet for any protein sequence with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure protein + + + + + + + + + + beta12orEarlier + Alphabet for any protein sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure protein + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from UniGene. + + A UniGene entry includes a set of transcript sequences assigned to the same transcription locus (gene or expressed pseudogene), with information on protein similarities, gene expression, cDNA clone reagents, and genomic location. + UniGene entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the COG database of clusters of (related) protein sequences. + + COG sequence cluster format + true + + + + + + + + + + beta12orEarlier + Format for sequence positions (feature location) as used in DDBJ/EMBL/GenBank database. + Feature location + + + EMBL feature location + + + + + + + + + + beta12orEarlier + Report format for tandem repeats in a nucleotide sequence (format generated by the Sanger Centre quicktandem program). + + + quicktandem + + + + + + + + + + beta12orEarlier + Report format for inverted repeats in a nucleotide sequence (format generated by the Sanger Centre inverted program). + + + Sanger inverted repeats + + + + + + + + + + beta12orEarlier + Report format for tandem repeats in a sequence (an EMBOSS report format). + + + EMBOSS repeat + + + + + + + + + + beta12orEarlier + Format of a report on exon-intron structure generated by EMBOSS est2genome. + + + est2genome format + + + + + + + + + + beta12orEarlier + Report format for restriction enzyme recognition sites used by EMBOSS restrict program. + + + restrict format + + + + + + + + + + beta12orEarlier + Report format for restriction enzyme recognition sites used by EMBOSS restover program. + + + restover format + + + + + + + + + + beta12orEarlier + Report format for restriction enzyme recognition sites used by REBASE database. + + + REBASE restriction sites + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using FASTA. + + + This includes (typically) score data, alignment data and a histogram (of observed and expected distribution of E values.) + FASTA search results format + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using some variant of BLAST. + + + This includes score data, alignment data and summary table. + BLAST results + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using some variant of MSPCrunch. + + + mspcrunch + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using some variant of Smith Waterman. + + + Smith-Waterman format + + + + + + + + + + beta12orEarlier + Format of EMBASSY domain hits file (DHF) of hits (sequences) with domain classification information. + + + The hits are relatives to a SCOP or CATH family and are found from a search of a sequence database. + dhf + + + + + + + + + + beta12orEarlier + Format of EMBASSY ligand hits file (LHF) of database hits (sequences) with ligand classification information. + + + The hits are putative ligand-binding sequences and are found from a search of a sequence database. + lhf + + + + + + + + + + beta12orEarlier + Results format for searches of the InterPro database. + + + InterPro hits format + + + + + + + + + beta12orEarlier + Format of results of a search of the InterPro database showing matches of query protein sequence(s) to InterPro entries. + + + The report includes a classification of regions in a query protein sequence which are assigned to a known InterPro protein family or group. + InterPro protein view report format + + + + + + + + + beta12orEarlier + Format of results of a search of the InterPro database showing matches between protein sequence(s) and signatures for an InterPro entry. + + + The table presents matches between query proteins (rows) and signature methods (columns) for this entry. Alternatively the sequence(s) might be from from the InterPro entry itself. The match position in the protein sequence and match status (true positive, false positive etc) are indicated. + InterPro match table format + + + + + + + + + + beta12orEarlier + Dirichlet distribution HMMER format. + + + HMMER Dirichlet prior + + + + + + + + + + beta12orEarlier + Dirichlet distribution MEME format. + + + MEME Dirichlet prior + + + + + + + + + + beta12orEarlier + Format of a report from the HMMER package on the emission and transition counts of a hidden Markov model. + + + HMMER emission and transition + + + + + + + + + + beta12orEarlier + Format of a regular expression pattern from the Prosite database. + + + prosite-pattern + + + + + + + + + + beta12orEarlier + Format of an EMBOSS sequence pattern. + + + EMBOSS sequence pattern + + + + + + + + + + beta12orEarlier + A motif in the format generated by the MEME program. + + + meme-motif + + + + + + + + + + beta12orEarlier + Sequence profile (sequence classifier) format used in the PROSITE database. + + + prosite-profile + + + + + + + + + + beta12orEarlier + A profile (sequence classifier) in the format used in the JASPAR database. + + + JASPAR format + + + + + + + + + + beta12orEarlier + Format of the model of random sequences used by MEME. + + + MEME background Markov model + + + + + + + + + + beta12orEarlier + Format of a hidden Markov model representation used by the HMMER package. + + + HMMER format + + + + + + + + + + + beta12orEarlier + FASTA-style format for multiple sequences aligned by HMMER package to an HMM. + + + HMMER-aln + + + + + + + + + + beta12orEarlier + Format of multiple sequences aligned by DIALIGN package. + + + DIALIGN format + + + + + + + + + + beta12orEarlier + EMBASSY 'domain alignment file' (DAF) format, containing a sequence alignment of protein domains belonging to the same SCOP or CATH family. + + + The format is clustal-like and includes annotation of domain family classification information. + daf + + + + + + + + + + beta12orEarlier + Format for alignment of molecular sequences to MEME profiles (position-dependent scoring matrices) as generated by the MAST tool from the MEME package. + + + Sequence-MEME profile alignment + + + + + + + + + + beta12orEarlier + Format used by the HMMER package for an alignment of a sequence against a hidden Markov model database. + + + HMMER profile alignment (sequences versus HMMs) + + + + + + + + + + beta12orEarlier + Format used by the HMMER package for of an alignment of a hidden Markov model against a sequence database. + + + HMMER profile alignment (HMM versus sequences) + + + + + + + + + + beta12orEarlier + Format of PHYLIP phylogenetic distance matrix data. + + + Data Type must include the distance matrix, probably as pairs of sequence identifiers with a distance (integer or float). + Phylip distance matrix + + + + + + + + + + beta12orEarlier + Dendrogram (tree file) format generated by ClustalW. + + + ClustalW dendrogram + + + + + + + + + + beta12orEarlier + Raw data file format used by Phylip from which a phylogenetic tree is directly generated or plotted. + + + Phylip tree raw + + + + + + + + + + beta12orEarlier + PHYLIP file format for continuous quantitative character data. + + + Phylip continuous quantitative characters + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of phylogenetic property data. + + Phylogenetic property values format + true + + + + + + + + + + beta12orEarlier + PHYLIP file format for phylogenetics character frequency data. + + + Phylip character frequencies format + + + + + + + + + + beta12orEarlier + Format of PHYLIP discrete states data. + + + Phylip discrete states format + + + + + + + + + + beta12orEarlier + Format of PHYLIP cliques data. + + + Phylip cliques format + + + + + + + + + + beta12orEarlier + Phylogenetic tree data format used by the PHYLIP program. + + + Phylip tree format + + + + + + + + + + beta12orEarlier + The format of an entry from the TreeBASE database of phylogenetic data. + + + TreeBASE format + + + + + + + + + + beta12orEarlier + The format of an entry from the TreeFam database of phylogenetic data. + + + TreeFam format + + + + + + + + + + beta12orEarlier + Format for distances, such as Branch Score distance, between two or more phylogenetic trees as used by the Phylip package. + + + Phylip tree distance format + + + + + + + + + + beta12orEarlier + Format of an entry from the DSSP database (Dictionary of Secondary Structure in Proteins). + + + The DSSP database is built using the DSSP application which defines secondary structure, geometrical features and solvent exposure of proteins, given atomic coordinates in PDB format. + dssp + + + + + + + + + + beta12orEarlier + Entry format of the HSSP database (Homology-derived Secondary Structure in Proteins). + + + hssp + + + + + + + + + + beta12orEarlier + Format of RNA secondary structure in dot-bracket notation, originally generated by the Vienna RNA package/server. + Vienna RNA format + Vienna RNA secondary structure format + + + Dot-bracket format + + + + + + + + + + beta12orEarlier + Format of local RNA secondary structure components with free energy values, generated by the Vienna RNA package/server. + + + Vienna local RNA secondary structure format + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Format of an entry (or part of an entry) from the PDB database. + PDB entry format + + + PDB database entry format + + + + + + + + + + beta12orEarlier + Entry format of PDB database in PDB format. + PDB format + + + PDB + + + + + + + + + + beta12orEarlier + Entry format of PDB database in mmCIF format. + + + mmCIF + + + + + + + + + + beta12orEarlier + Entry format of PDB database in PDBML (XML) format. + + + PDBML + + + + + + + + + beta12orEarlier + beta12orEarlier + + Format of a matrix of 3D-1D scores used by the EMBOSS Domainatrix applications. + + + Domainatrix 3D-1D scoring matrix format + true + + + + + + + + + + beta12orEarlier + Amino acid index format used by the AAindex database. + + + aaindex + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from IntEnz (The Integrated Relational Enzyme Database). + + IntEnz is the master copy of the Enzyme Nomenclature, the recommendations of the NC-IUBMB on the Nomenclature and Classification of Enzyme-Catalysed Reactions. + IntEnz enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the BRENDA enzyme database. + + BRENDA enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the KEGG REACTION database of biochemical reactions. + + KEGG REACTION enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the KEGG ENZYME database. + + KEGG ENZYME enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the proto section of the REBASE enzyme database. + + REBASE proto enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the withrefm section of the REBASE enzyme database. + + REBASE withrefm enzyme report format + true + + + + + + + + + + beta12orEarlier + Format of output of the Pcons Model Quality Assessment Program (MQAP). + + + Pcons ranks protein models by assessing their quality based on the occurrence of recurring common three-dimensional structural patterns. Pcons returns a score reflecting the overall global quality and a score for each individual residue in the protein reflecting the local residue quality. + Pcons report format + + + + + + + + + + beta12orEarlier + Format of output of the ProQ protein model quality predictor. + + + ProQ is a neural network-based predictor that predicts the quality of a protein model based on the number of structural features. + ProQ report format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of SMART domain assignment data. + + The SMART output file includes data on genetically mobile domains / analysis of domain architectures, including phyletic distributions, functional class, tertiary structures and functionally important residues. + SMART domain assignment report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the BIND database of protein interaction. + + BIND entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the IntAct database of protein interaction. + + IntAct entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the InterPro database of protein signatures (sequence classifiers) and classified sequences. + + This includes signature metadata, sequence references and a reference to the signature itself. There is normally a header (entry accession numbers and name), abstract, taxonomy information, example proteins etc. Each entry also includes a match list which give a number of different views of the signature matches for the sequences in each InterPro entry. + InterPro entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the textual abstract of signatures in an InterPro entry and its protein matches. + + References are included and a functional inference is made where possible. + InterPro entry abstract format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Gene3D protein secondary database. + + Gene3D entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the PIRSF protein secondary database. + + PIRSF entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the PRINTS protein secondary database. + + PRINTS entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Panther library of protein families and subfamilies. + + Panther Families and HMMs entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Pfam protein secondary database. + + Pfam entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the SMART protein secondary database. + + SMART entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Superfamily protein secondary database. + + Superfamily entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the TIGRFam protein secondary database. + + TIGRFam entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the ProDom protein domain classification database. + + ProDom entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the FSSP database. + + FSSP entry format + true + + + + + + + + + + beta12orEarlier + A report format for the kinetics of enzyme-catalysed reaction(s) in a format generated by EMBOSS findkm. This includes Michaelis Menten plot, Hanes Woolf plot, Michaelis Menten constant (Km) and maximum velocity (Vmax). + + + findkm + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of Ensembl genome database. + + Ensembl gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of DictyBase genome database. + + DictyBase gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of Candida Genome database. + + CGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of DragonDB genome database. + + DragonDB gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of EcoCyc genome database. + + EcoCyc gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of FlyBase genome database. + + FlyBase gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of Gramene genome database. + + Gramene gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of KEGG GENES genome database. + + KEGG GENES gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Maize genetics and genomics database (MaizeGDB). + + MaizeGDB gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Mouse Genome Database (MGD). + + MGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Rat Genome Database (RGD). + + RGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Saccharomyces Genome Database (SGD). + + SGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Sanger GeneDB genome database. + + GeneDB gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of The Arabidopsis Information Resource (TAIR) genome database. + + TAIR gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the WormBase genomes database. + + WormBase gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Zebrafish Information Network (ZFIN) genome database. + + ZFIN gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the TIGR genome database. + + TIGR gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the dbSNP database. + + dbSNP polymorphism report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the OMIM database of genotypes and phenotypes. + + OMIM entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a record from the HGVbase database of genotypes and phenotypes. + + HGVbase entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a record from the HIVDB database of genotypes and phenotypes. + + HIVDB entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the KEGG DISEASE database. + + KEGG DISEASE entry format + true + + + + + + + + + + beta12orEarlier + Report format on PCR primers and hybridisation oligos as generated by Whitehead primer3 program. + + + Primer3 primer + + + + + + + + + + beta12orEarlier + A format of raw sequence read data from an Applied Biosystems sequencing machine. + + + ABI + + + + + + + + + + beta12orEarlier + Format of MIRA sequence trace information file. + + + mira + + + + + + + + + + beta12orEarlier + + caf + + Common Assembly Format (CAF). A sequence assembly format including contigs, base-call qualities, and other metadata. + + + CAF + + + + + + + + + + beta12orEarlier + + Sequence assembly project file EXP format. + Affymetrix EXP format + + + EXP + + + + + + + + + + beta12orEarlier + + + Staden Chromatogram Files format (SCF) of base-called sequence reads, qualities, and other metadata. + + + SCF + + + + + + + + + + beta12orEarlier + + + PHD sequence trace format to store serialised chromatogram data (reads). + + + PHD + + + + + + + + + + + + + + + + beta12orEarlier + Format of Affymetrix data file of raw image data. + Affymetrix image data file format + + + dat + + + + + + + + + + + + + + + + beta12orEarlier + Format of Affymetrix data file of information about (raw) expression levels of the individual probes. + Affymetrix probe raw data format + + + cel + + + + + + + + + + beta12orEarlier + Format of affymetrix gene cluster files (hc-genes.txt, hc-chips.txt) from hierarchical clustering. + + + affymetrix + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the ArrayExpress microarrays database. + + ArrayExpress entry format + true + + + + + + + + + + beta12orEarlier + Affymetrix data file format for information about experimental conditions and protocols. + Affymetrix experimental conditions data file format + + + affymetrix-exp + + + + + + + + + + + + + + + + beta12orEarlier + + chp + Format of Affymetrix data file of information about (normalised) expression levels of the individual probes. + Affymetrix probe normalised data format + + + CHP + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the Electron Microscopy DataBase (EMDB). + + EMDB entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG PATHWAY database of pathway maps for molecular interactions and reaction networks. + + KEGG PATHWAY entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the MetaCyc metabolic pathways database. + + MetaCyc entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of a report from the HumanCyc metabolic pathways database. + + HumanCyc entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the INOH signal transduction pathways database. + + INOH entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the PATIKA biological pathways database. + + PATIKA entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the reactome biological pathways database. + + Reactome entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the aMAZE biological pathways and molecular interactions database. + + aMAZE entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the CPDB database. + + CPDB entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the Panther Pathways database. + + Panther Pathways entry format + true + + + + + + + + + + beta12orEarlier + Format of Taverna workflows. + + + Taverna workflow format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of mathematical models from the BioModel database. + + Models are annotated and linked to relevant data resources, such as publications, databases of compounds and pathways, controlled vocabularies, etc. + BioModel mathematical model format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG LIGAND chemical database. + + KEGG LIGAND entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG COMPOUND database. + + KEGG COMPOUND entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG PLANT database. + + KEGG PLANT entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG GLYCAN database. + + KEGG GLYCAN entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from PubChem. + + PubChem entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from a database of chemical structures and property predictions. + + ChemSpider entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from Chemical Entities of Biological Interest (ChEBI). + + ChEBI includes an ontological classification defining relations between entities or classes of entities. + ChEBI entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the MSDchem ligand dictionary. + + MSDchem ligand dictionary entry format + true + + + + + + + + + + beta12orEarlier + The format of an entry from the HET group dictionary (HET groups from PDB files). + + + HET group dictionary entry format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG DRUG database. + + KEGG DRUG entry format + true + + + + + + + + + + beta12orEarlier + Format of bibliographic reference as used by the PubMed database. + + + PubMed citation + + + + + + + + + + beta12orEarlier + Format for abstracts of scientific articles from the Medline database. + + + Bibliographic reference information including citation information is included + Medline Display Format + + + + + + + + + + beta12orEarlier + CiteXplore 'core' citation format including title, journal, authors and abstract. + + + CiteXplore-core + + + + + + + + + + beta12orEarlier + CiteXplore 'all' citation format includes all known details such as Mesh terms and cross-references. + + + CiteXplore-all + + + + + + + + + + beta12orEarlier + Article format of the PubMed Central database. + + + pmc + + + + + + + + + + + beta12orEarlier + The format of iHOP (Information Hyperlinked over Proteins) text-mining result. + + + iHOP format + + + + + + + + + + + + + beta12orEarlier + OSCAR format of annotated chemical text. + + + OSCAR (Open-Source Chemistry Analysis Routines) software performs chemistry-specific parsing of chemical documents. It attempts to identify chemical names, ontology concepts, and chemical data from a document. + OSCAR format + + + + + + + + + beta12orEarlier + beta13 + + + Format of an ATOM record (describing data for an individual atom) from a PDB file. + + PDB atom record format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of CATH domain classification information for a polypeptide chain. + + The report (for example http://www.cathdb.info/chain/1cukA) includes chain identifiers, domain identifiers and CATH codes for domains in a given protein chain. + CATH chain report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of CATH domain classification information for a protein PDB file. + + The report (for example http://www.cathdb.info/pdb/1cuk) includes chain identifiers, domain identifiers and CATH codes for domains in a given PDB file. + CATH PDB report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry (gene) format of the NCBI database. + + NCBI gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Moby:GI_Gene + Report format for biological functions associated with a gene name and its alternative names (synonyms, homonyms), as generated by the GeneIlluminator service. + + This includes a gene name and abbreviation of the name which may be in a name space indicating the gene status and relevant organisation. + GeneIlluminator gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Moby:BacMapGeneCard + Format of a report on the DNA and protein sequences for a given gene label from a bacterial chromosome maps from the BacMap database. + + BacMap gene card format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on Escherichia coli genes, proteins and molecules from the CyberCell Database (CCDB). + + ColiCard report format + true + + + + + + + + + + beta12orEarlier + Map of a plasmid (circular DNA) in PlasMapper TextMap format. + + + PlasMapper TextMap + + + + + + + + + + beta12orEarlier + Phylogenetic tree Newick (text) format. + nh + + + newick + + + + + + + + + + beta12orEarlier + Phylogenetic tree TreeCon (text) format. + + + TreeCon format + + + + + + + + + + beta12orEarlier + Phylogenetic tree Nexus (text) format. + + + Nexus format + + + + + + + + + + + beta12orEarlier + true + A defined way or layout of representing and structuring data in a computer file, blob, string, message, or elsewhere. + Data format + Data model + Exchange format + File format + + + The main focus in EDAM lies on formats as means of structuring data exchanged between different tools or resources. The serialisation, compression, or encoding of concrete data formats/models is not in scope of EDAM. Format 'is format of' Data. + Format + + + + + + + + + + + + + + + + + + + Data model + A defined data format has its implicit or explicit data model, and EDAM does not distinguish the two. Some data models, however, do not have any standard way of serialisation into an exchange format, and those are thus not considered formats in EDAM. (Remark: even broader - or closely related - term to 'Data model' would be an 'Information model'.) + + + + + File format + File format denotes only formats of a computer file, but the same formats apply also to data blobs or exchanged messages. + + + + + + + + + beta12orEarlier + beta13 + + + Data format for an individual atom. + + Atomic data format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a molecular sequence record. + + + Sequence record format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for molecular sequence feature information. + + + Sequence feature annotation format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for molecular sequence alignment information. + + + Alignment format + + + + + + + + + + beta12orEarlier + ACEDB sequence format. + + + acedb + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Clustalw output format. + + clustal sequence format + true + + + + + + + + + + beta12orEarlier + Codata entry format. + + + codata + + + + + + + + + beta12orEarlier + Fasta format variant with database name before ID. + + + dbid + + + + + + + + + + beta12orEarlier + EMBL entry format. + EMBL + EMBL sequence format + + + EMBL format + + + + + + + + + + beta12orEarlier + Staden experiment file format. + + + Staden experiment format + + + + + + + + + + beta12orEarlier + FASTA format including NCBI-style IDs. + FASTA format + FASTA sequence format + + + FASTA + + + + + + + + + beta12orEarlier + fastq + fq + FASTQ short read format ignoring quality scores. + FASTAQ + fq + + + FASTQ + + + + + + + + + beta12orEarlier + FASTQ Illumina 1.3 short read format. + + + FASTQ-illumina + + + + + + + + + beta12orEarlier + FASTQ short read format with phred quality. + + + FASTQ-sanger + + + + + + + + + beta12orEarlier + FASTQ Solexa/Illumina 1.0 short read format. + + + FASTQ-solexa + + + + + + + + + + beta12orEarlier + Fitch program format. + + + fitch program + + + + + + + + + + beta12orEarlier + GCG sequence file format. + GCG SSF + + + GCG SSF (single sequence file) file format. + GCG + + + + + + + + + + beta12orEarlier + Genbank entry format. + GenBank + + + GenBank format + + + + + + + + + beta12orEarlier + Genpept protein entry format. + + + Currently identical to refseqp format + genpept + + + + + + + + + + beta12orEarlier + GFF feature file format with sequence in the header. + + + GFF2-seq + + + + + + + + + + beta12orEarlier + GFF3 feature file format with sequence. + + + GFF3-seq + + + + + + + + + beta12orEarlier + FASTA sequence format including NCBI-style GIs. + + + giFASTA format + + + + + + + + + + beta12orEarlier + Hennig86 output sequence format. + + + hennig86 + + + + + + + + + + beta12orEarlier + Intelligenetics sequence format. + + + ig + + + + + + + + + + beta12orEarlier + Intelligenetics sequence format (strict version). + + + igstrict + + + + + + + + + + beta12orEarlier + Jackknifer interleaved and non-interleaved sequence format. + + + jackknifer + + + + + + + + + + beta12orEarlier + Mase program sequence format. + + + mase format + + + + + + + + + + beta12orEarlier + Mega interleaved and non-interleaved sequence format. + + + mega-seq + + + + + + + + + beta12orEarlier + GCG MSF (multiple sequence file) file format. + + + GCG MSF + + + + + + + + + beta12orEarlier + pir + NBRF/PIR entry sequence format. + nbrf + pir + + + nbrf/pir + + + + + + + + + + + beta12orEarlier + Nexus/paup interleaved sequence format. + + + nexus-seq + + + + + + + + + + + beta12orEarlier + PDB sequence format (ATOM lines). + + + pdb format in EMBOSS. + pdbatom + + + + + + + + + + + beta12orEarlier + PDB nucleotide sequence format (ATOM lines). + + + pdbnuc format in EMBOSS. + pdbatomnuc + + + + + + + + + + + beta12orEarlier + PDB nucleotide sequence format (SEQRES lines). + + + pdbnucseq format in EMBOSS. + pdbseqresnuc + + + + + + + + + + + beta12orEarlier + PDB sequence format (SEQRES lines). + + + pdbseq format in EMBOSS. + pdbseqres + + + + + + + + + beta12orEarlier + Plain old FASTA sequence format (unspecified format for IDs). + + + Pearson format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Phylip interleaved sequence format. + + phylip sequence format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + PHYLIP non-interleaved sequence format. + + phylipnon sequence format + true + + + + + + + + + + beta12orEarlier + Raw sequence format with no non-sequence characters. + + + raw + + + + + + + + + + beta12orEarlier + Refseq protein entry sequence format. + + + Currently identical to genpept format + refseqp + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Selex sequence format. + + selex sequence format + true + + + + + + + + + + beta12orEarlier + + + + + Staden suite sequence format. + + + Staden format + + + + + + + + + + beta12orEarlier + + Stockholm multiple sequence alignment format (used by Pfam and Rfam). + + + Stockholm format + + + + + + + + + + + beta12orEarlier + DNA strider output sequence format. + + + strider format + + + + + + + + + beta12orEarlier + UniProtKB entry sequence format. + SwissProt format + UniProt format + + + UniProtKB format + + + + + + + + + beta12orEarlier + txt + Plain text sequence format (essentially unformatted). + + + plain text format (unformatted) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Treecon output sequence format. + + treecon sequence format + true + + + + + + + + + + beta12orEarlier + NCBI ASN.1-based sequence format. + + + ASN.1 sequence format + + + + + + + + + + beta12orEarlier + DAS sequence (XML) format (any type). + das sequence format + + + DAS format + + + + + + + + + + beta12orEarlier + DAS sequence (XML) format (nucleotide-only). + + + The use of this format is deprecated. + dasdna + + + + + + + + + + beta12orEarlier + EMBOSS debugging trace sequence format of full internal data content. + + + debug-seq + + + + + + + + + + beta12orEarlier + Jackknifer output sequence non-interleaved format. + + + jackknifernon + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Mega non-interleaved output sequence format. + + meganon sequence format + true + + + + + + + + + beta12orEarlier + NCBI FASTA sequence format with NCBI-style IDs. + + + There are several variants of this. + NCBI format + + + + + + + + + + + beta12orEarlier + Nexus/paup non-interleaved sequence format. + + + nexusnon + + + + + + + + + beta12orEarlier + + + General Feature Format (GFF) of sequence features. + + + GFF2 + + + + + + + + + beta12orEarlier + + + + Generic Feature Format version 3 (GFF3) of sequence features. + + + GFF3 + + + + + + + + + beta12orEarlier + 1.7 + + PIR feature format. + + + pir + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Swiss-Prot feature format. + + swiss feature + true + + + + + + + + + + beta12orEarlier + DAS GFF (XML) feature format. + DASGFF feature + das feature + + + DASGFF + + + + + + + + + + beta12orEarlier + EMBOSS debugging trace feature format of full internal data content. + + + debug-feat + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBL feature format. + + EMBL feature + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Genbank feature format. + + GenBank feature + true + + + + + + + + + + beta12orEarlier + ClustalW format for (aligned) sequences. + clustal + + + ClustalW format + + + + + + + + + + beta12orEarlier + EMBOSS alignment format for debugging trace of full internal data content. + + + debug + + + + + + + + + + beta12orEarlier + Fasta format for (aligned) sequences. + + + FASTA-aln + + + + + + + + + beta12orEarlier + Pearson MARKX0 alignment format. + + + markx0 + + + + + + + + + beta12orEarlier + Pearson MARKX1 alignment format. + + + markx1 + + + + + + + + + beta12orEarlier + Pearson MARKX10 alignment format. + + + markx10 + + + + + + + + + beta12orEarlier + Pearson MARKX2 alignment format. + + + markx2 + + + + + + + + + beta12orEarlier + Pearson MARKX3 alignment format. + + + markx3 + + + + + + + + + + beta12orEarlier + Alignment format for start and end of matches between sequence pairs. + + + match + + + + + + + + + beta12orEarlier + Mega format for (typically aligned) sequences. + + + mega + + + + + + + + + beta12orEarlier + Mega non-interleaved format for (typically aligned) sequences. + + + meganon + + + + + + + + + beta12orEarlier + beta12orEarlier + + + MSF format for (aligned) sequences. + + msf alignment format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Nexus/paup format for (aligned) sequences. + + nexus alignment format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Nexus/paup non-interleaved format for (aligned) sequences. + + nexusnon alignment format + true + + + + + + + + + beta12orEarlier + EMBOSS simple sequence pairwise alignment format. + + + pair + + + + + + + + + beta12orEarlier + http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format + Phylip format for (aligned) sequences. + PHYLIP + PHYLIP interleaved format + ph + phy + + + PHYLIP format + + + + + + + + + beta12orEarlier + http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format + Phylip non-interleaved format for (aligned) sequences. + PHYLIP sequential format + phylipnon + + + PHYLIP sequential + + + + + + + + + + beta12orEarlier + Alignment format for score values for pairs of sequences. + + + scores format + + + + + + + + + + + beta12orEarlier + SELEX format for (aligned) sequences. + + + selex + + + + + + + + + + beta12orEarlier + EMBOSS simple multiple alignment format. + + + EMBOSS simple format + + + + + + + + + + beta12orEarlier + Simple multiple sequence (alignment) format for SRS. + + + srs format + + + + + + + + + + beta12orEarlier + Simple sequence pair (alignment) format for SRS. + + + srspair + + + + + + + + + + beta12orEarlier + T-Coffee program alignment format. + + + T-Coffee format + + + + + + + + + + + beta12orEarlier + Treecon format for (aligned) sequences. + + + TreeCon-seq + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a phylogenetic tree. + + + Phylogenetic tree format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a biological pathway or network. + + + Biological pathway or network format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a sequence-profile alignment. + + + Sequence-profile alignment format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data format for a sequence-HMM profile alignment. + + Sequence-profile alignment (HMM) format + true + + + + + + + + + + + + + + + beta12orEarlier + Data format for an amino acid index. + + + Amino acid index format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a full-text scientific article. + Literature format + + + Article format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format of a report from text mining. + + + Text mining report format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for reports on enzyme kinetics. + + + Enzyme kinetics report format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on a chemical compound. + Chemical compound annotation format + Chemical structure format + Small molecule report format + Small molecule structure format + + + Chemical data format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on a particular locus, gene, gene system or groups of genes. + Gene features format + + + Gene annotation format + + + + + + + + + beta12orEarlier + true + Format of a workflow. + Programming language + Script format + + + Workflow format + + + + + + + + + beta12orEarlier + true + Data format for a molecular tertiary structure. + + + Tertiary structure format + + + + + + + + + beta12orEarlier + 1.2 + + + Data format for a biological model. + + Biological model format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Text format of a chemical formula. + + + Chemical formula format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of raw (unplotted) phylogenetic data. + + + Phylogenetic character data format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic continuous quantitative character data. + + + Phylogenetic continuous quantitative character format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic discrete states data. + + + Phylogenetic discrete states format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic cliques data. + + + Phylogenetic tree report (cliques) format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic invariants data. + + + Phylogenetic tree report (invariants) format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation format for electron microscopy models. + + Electron microscopy model format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format for phylogenetic tree distance data. + + + Phylogenetic tree report (tree distances) format + + + + + + + + + beta12orEarlier + 1.0 + + + Format for sequence polymorphism data. + + Polymorphism report format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format for reports on a protein family. + + + Protein family report format + + + + + + + + + + + + + + + beta12orEarlier + true + Format for molecular interaction data. + Molecular interaction format + + + Protein interaction format + + + + + + + + + + + + + + + beta12orEarlier + true + Format for sequence assembly data. + + + Sequence assembly format + + + + + + + + + beta12orEarlier + Format for information about a microarray experimental per se (not the data generated from that experiment). + + + Microarray experiment data format + + + + + + + + + + + + + + + beta12orEarlier + Format for sequence trace data (i.e. including base call information). + + + Sequence trace format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a file of gene expression data, e.g. a gene expression matrix or profile. + Gene expression data format + + + Gene expression report format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on genotype / phenotype information. + + Genotype and phenotype annotation format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a map of (typically one) molecular sequence annotated with features. + + + Map format + + + + + + + + + beta12orEarlier + true + Format of a report on PCR primers or hybridisation oligos in a nucleic acid sequence. + + + Nucleic acid features (primers) format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report of general information about a specific protein. + + + Protein report format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report of general information about a specific enzyme. + + Protein report (enzyme) format + true + + + + + + + + + + + + + + + beta12orEarlier + Format of a matrix of 3D-1D scores (amino acid environment probabilities). + + + 3D-1D scoring matrix format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on the quality of a protein three-dimensional model. + + + Protein structure report (quality evaluation) format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on sequence hits and associated data from searching a sequence database. + + + Database hits (sequence) format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a matrix of genetic distances between molecular sequences. + + + Sequence distance matrix format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a sequence motif. + + + Sequence motif format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a sequence profile. + + + Sequence profile format + + + + + + + + + + + + + + + beta12orEarlier + Format of a hidden Markov model. + + + Hidden Markov model format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format of a dirichlet distribution. + + + Dirichlet distribution format + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for the emission and transition counts of a hidden Markov model. + + + HMM emission and transition counts format + + + + + + + + + + + + + + + beta12orEarlier + true + Format for secondary structure (predicted or real) of an RNA molecule. + + + RNA secondary structure format + + + + + + + + + beta12orEarlier + true + Format for secondary structure (predicted or real) of a protein molecule. + + + Protein secondary structure format + + + + + + + + + + + + + + + beta12orEarlier + true + Format used to specify range(s) of sequence positions. + + + Sequence range format + + + + + + + + + + beta12orEarlier + Alphabet for molecular sequence with possible unknown positions but without non-sequence characters. + + + pure + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions but possibly with non-sequence characters. + + + unpure + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions but without ambiguity characters. + + + unambiguous sequence + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions and possible ambiguity characters. + + + ambiguous + + + + + + + + + beta12orEarlier + true + Format used for map of repeats in molecular (typically nucleotide) sequences. + + + Sequence features (repeats) format + + + + + + + + + beta12orEarlier + true + Format used for report on restriction enzyme recognition sites in nucleotide sequences. + + + Nucleic acid features (restriction sites) format + + + + + + + + + beta12orEarlier + 1.10 + + Format used for report on coding regions in nucleotide sequences. + + + Gene features (coding region) format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format used for clusters of molecular sequences. + + + Sequence cluster format + + + + + + + + + beta12orEarlier + Format used for clusters of protein sequences. + + + Sequence cluster format (protein) + + + + + + + + + beta12orEarlier + Format used for clusters of nucleotide sequences. + + + Sequence cluster format (nucleic acid) + + + + + + + + + beta12orEarlier + beta13 + + + Format used for clusters of genes. + + Gene cluster format + true + + + + + + + + + + beta12orEarlier + A text format resembling EMBL entry format. + + + This concept may be used for the many non-standard EMBL-like text formats. + EMBL-like (text) + + + + + + + + + + beta12orEarlier + A text format resembling FASTQ short read format. + + + This concept may be used for non-standard FASTQ short read-like formats. + FASTQ-like format (text) + + + + + + + + + beta12orEarlier + XML format for EMBL entries. + + https://fairsharing.org/bsg-s001452/ + + + true + EMBLXML + + + + + + + + + beta12orEarlier + Specific XML format for EMBL entries (only uses certain sections). + + https://fairsharing.org/bsg-s001452/ + + + true + cdsxml + + + + + + + + + beta12orEarlier + INSDSeq provides the elements of a sequence as presented in the GenBank/EMBL/DDBJ-style flatfile formats, with a small amount of additional structure. + + + INSD XML + INSDC XML + + INSDSeq + + + + + + + + + beta12orEarlier + Geneseq sequence format. + + + geneseq + + + + + + + + + + beta12orEarlier + A text sequence format resembling uniprotkb entry format. + + + UniProt-like (text) + + + + + + + + + beta12orEarlier + 1.8 + + UniProt entry sequence format. + + + UniProt format + true + + + + + + + + + beta12orEarlier + 1.8 + + + ipi sequence format. + + ipi + true + + + + + + + + + + beta12orEarlier + Abstract format used by MedLine database. + + + medline + + + + + + + + + + + + + + + beta12orEarlier + true + Format used for ontologies. + + + Ontology format + + + + + + + + + beta12orEarlier + A serialisation format conforming to the Open Biomedical Ontologies (OBO) model. + + + OBO format + + + + + + + + + + beta12orEarlier + A serialisation format conforming to the Web Ontology Language (OWL) model. + + + OWL format + + + + + + + + + + beta12orEarlier + A text format resembling FASTA format. + + + This concept may also be used for the many non-standard FASTA-like formats. + FASTA-like (text) + http://filext.com/file-extension/FASTA + + + + + + + + + beta12orEarlier + 1.8 + + Data format for a molecular sequence record, typically corresponding to a full entry from a molecular sequence database. + + + Sequence record full format + true + + + + + + + + + beta12orEarlier + 1.8 + + Data format for a molecular sequence record 'lite', typically molecular sequence and minimal metadata, such as an identifier of the sequence and/or a comment. + + + Sequence record lite format + true + + + + + + + + + beta12orEarlier + An XML format for EMBL entries. + + + This is a placeholder for other more specific concepts. It should not normally be used for annotation. + EMBL format (XML) + + + + + + + + + + beta12orEarlier + A text format resembling GenBank entry (plain text) format. + + + This concept may be used for the non-standard GenBank-like text formats. + GenBank-like format (text) + + + + + + + + + beta12orEarlier + Text format for a sequence feature table. + + + Sequence feature table format (text) + + + + + + + + + beta12orEarlier + 1.0 + + + Format of a report on organism strain data / cell line. + + Strain data format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format for a report of strain data as used for CIP database entries. + + CIP strain data format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + PHYLIP file format for phylogenetic property data. + + phylip property values + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format (HTML) for the STRING database of protein interaction. + + STRING entry format (HTML) + true + + + + + + + + + + beta12orEarlier + Entry format (XML) for the STRING database of protein interaction. + + + STRING entry format (XML) + + + + + + + + + + beta12orEarlier + GFF feature format (of indeterminate version). + + + GFF + + + + + + + + + beta12orEarlier + + + + Gene Transfer Format (GTF), a restricted version of GFF. + + + GTF + + + + + + + + + + beta12orEarlier + FASTA format wrapped in HTML elements. + + + FASTA-HTML + + + + + + + + + + beta12orEarlier + EMBL entry format wrapped in HTML elements. + + + EMBL-HTML + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the BioCyc enzyme database. + + BioCyc enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the Enzyme nomenclature database (ENZYME). + + ENZYME enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on a gene from the PseudoCAP database. + + PseudoCAP gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on a gene from the GeneCards database. + + GeneCards gene report format + true + + + + + + + + + + beta12orEarlier + Textual format. + Plain text format + txt + + + Data in text format can be compressed into binary format, or can be a value of an XML element or attribute. Markup formats are not considered textual (or more precisely, not plain-textual). + Textual format + http://filext.com/file-extension/TXT + http://www.iana.org/assignments/media-types/media-types.xhtml#text + http://www.iana.org/assignments/media-types/text/plain + + + + + + + + + + + + + + + + beta12orEarlier + HTML format. + Hypertext Markup Language + + + HTML + http://filext.com/file-extension/HTML + + + + + + + + + + beta12orEarlier + xml + + + + eXtensible Markup Language (XML) format. + eXtensible Markup Language + + + Data in XML format can be serialised into text, or binary format. + XML + + + + + + + + + beta12orEarlier + true + Binary format. + + + Only specific native binary formats are listed under 'Binary format' in EDAM. Generic binary formats - such as any data being zipped, or any XML data being serialised into the Efficient XML Interchange (EXI) format - are not modelled in EDAM. Refer to http://wsio.org/compression_004. + Binary format + + + + + + + + + beta12orEarlier + beta13 + + + Typical textual representation of a URI. + + URI format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the NCI-Nature pathways database. + + NCI-Nature pathway entry format + true + + + + + + + + + beta12orEarlier + true + A placeholder concept for visual navigation by dividing data formats by the content of the data that is represented. + Format (typed) + + + This concept exists only to assist EDAM maintenance and navigation in graphical browsers. It does not add semantic information. The concept branch under 'Format (typed)' provides an alternative organisation of the concepts nested under the other top-level branches ('Binary', 'HTML', 'RDF', 'Text' and 'XML'. All concepts under here are already included under those branches. + Format (by type of data) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + + + + + + + Any ontology allowed, none mandatory. Preferably with URIs but URIs are not mandatory. Non-ontology terms are also allowed as the last resort in case of a lack of suitable ontology. + + 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioXSD in XML' is the XML format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'. + + + BioXSD-schema-based XML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, Web services, and object-oriented programming. + BioJSON + BioXSD + BioXSD XML + BioXSD XML format + BioXSD data model + BioXSD format + BioXSD in XML + BioXSD in XML format + BioXSD+XML + BioXSD/GTrack + BioXSD|GTrack + BioYAML + + + BioXSD (XML) + + + + + + + + + + + beta12orEarlier + A serialisation format conforming to the Resource Description Framework (RDF) model. + Resource Description Framework format + RDF + Resource Description Framework + + + RDF format + + + + + + + + + + + beta12orEarlier + Genbank entry format wrapped in HTML elements. + + + GenBank-HTML + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on protein features (domain composition). + + Protein features (domains) format + true + + + + + + + + + beta12orEarlier + A format resembling EMBL entry (plain text) format. + + + This concept may be used for the many non-standard EMBL-like formats. + EMBL-like format + + + + + + + + + beta12orEarlier + A format resembling FASTQ short read format. + + + This concept may be used for non-standard FASTQ short read-like formats. + FASTQ-like format + + + + + + + + + beta12orEarlier + A format resembling FASTA format. + + + This concept may be used for the many non-standard FASTA-like formats. + FASTA-like + + + + + + + + + + beta12orEarlier + A sequence format resembling uniprotkb entry format. + + + uniprotkb-like format + + + + + + + + + + + + + + + beta12orEarlier + Format for a sequence feature table. + + + Sequence feature table format + + + + + + + + + + beta12orEarlier + OBO ontology text format. + + + OBO + + + + + + + + + + beta12orEarlier + OBO ontology XML format. + + + OBO-XML + + + + + + + + + beta12orEarlier + Data format for a molecular sequence record (text). + + + Sequence record format (text) + + + + + + + + + beta12orEarlier + Data format for a molecular sequence record (XML). + + + Sequence record format (XML) + + + + + + + + + beta12orEarlier + XML format for a sequence feature table. + + + Sequence feature table format (XML) + + + + + + + + + beta12orEarlier + Text format for molecular sequence alignment information. + + + Alignment format (text) + + + + + + + + + beta12orEarlier + XML format for molecular sequence alignment information. + + + Alignment format (XML) + + + + + + + + + beta12orEarlier + Text format for a phylogenetic tree. + + + Phylogenetic tree format (text) + + + + + + + + + beta12orEarlier + XML format for a phylogenetic tree. + + + Phylogenetic tree format (XML) + + + + + + + + + + beta12orEarlier + An XML format resembling EMBL entry format. + + + This concept may be used for the any non-standard EMBL-like XML formats. + EMBL-like (XML) + + + + + + + + + beta12orEarlier + A format resembling GenBank entry (plain text) format. + + + This concept may be used for the non-standard GenBank-like formats. + GenBank-like format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the STRING database of protein interaction. + + STRING entry format + true + + + + + + + + + beta12orEarlier + Text format for sequence assembly data. + + + Sequence assembly format (text) + + + + + + + + + beta12orEarlier + beta13 + + + Text format (representation) of amino acid residues. + + Amino acid identifier format + true + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence without any unknown positions or ambiguity characters. + + + completely unambiguous + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence (characters ACGTU only) without unknown positions, ambiguity or non-sequence characters . + + + completely unambiguous pure nucleotide + + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence (characters ACGT only) without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure dna + + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence (characters ACGU only) without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure rna sequence + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a raw molecular sequence (i.e. the alphabet used). + + + Raw sequence format + http://www.onto-med.de/ontologies/gfo.owl#Symbol_sequence + + + + + + + + + + + beta12orEarlier + + + BAM format, the binary, BGZF-formatted compressed version of SAM format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data. + + + BAM + + + + + + + + + + + beta12orEarlier + + + Sequence Alignment/Map (SAM) format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data. + + + The format supports short and long reads (up to 128Mbp) produced by different sequencing platforms and is used to hold mapped data within the GATK and across the Broad Institute, the Sanger Centre, and throughout the 1000 Genomes project. + SAM + + + + + + + + + + beta12orEarlier + + + Systems Biology Markup Language (SBML), the standard XML format for models of biological processes such as for example metabolism, cell signaling, and gene regulation. + + + SBML + + + + + + + + + + beta12orEarlier + Alphabet for any protein sequence without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure protein + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a bibliographic reference. + + + Bibliographic reference format + + + + + + + + + + + + + + + beta12orEarlier + Format of a sequence annotation track. + + + Sequence annotation track format + + + + + + + + + + + + + + + beta12orEarlier + Data format for molecular sequence alignment information that can hold sequence alignment(s) of only 2 sequences. + + + Alignment format (pair only) + + + + + + + + + + + + + + + beta12orEarlier + true + Format of sequence variation annotation. + + + Sequence variation annotation format + + + + + + + + + + beta12orEarlier + Some variant of Pearson MARKX alignment format. + + + markx0 variant + + + + + + + + + + + beta12orEarlier + Some variant of Mega format for (typically aligned) sequences. + + + mega variant + + + + + + + + + + + beta12orEarlier + Some variant of Phylip format for (aligned) sequences. + + + Phylip format variant + + + + + + + + + + beta12orEarlier + AB1 binary format of raw DNA sequence reads (output of Applied Biosystems' sequencing analysis software). Contains an electropherogram and the DNA base sequence. + + + AB1 uses the generic binary Applied Biosystems, Inc. Format (ABIF). + AB1 + + + + + + + + + + beta12orEarlier + + + ACE sequence assembly format including contigs, base-call qualities, and other metadata (version Aug 1998 and onwards). + + + ACE + + + + + + + + + + beta12orEarlier + + + Browser Extensible Data (BED) format of sequence annotation track, typically to be displayed in a genome browser. + + + BED detail format includes 2 additional columns (http://genome.ucsc.edu/FAQ/FAQformat#format1.7) and BED 15 includes 3 additional columns for experiment scores (http://genomewiki.ucsc.edu/index.php/Microarray_track). + BED + + + + + + + + + + beta12orEarlier + + + bigBed format for large sequence annotation tracks, similar to textual BED format. + + + bigBed + + + + + + + + + + beta12orEarlier + + wig + + Wiggle format (WIG) of a sequence annotation track that consists of a value for each sequence position. Typically to be displayed in a genome browser. + + + WIG + + + + + + + + + + beta12orEarlier + + + bigWig format for large sequence annotation tracks that consist of a value for each sequence position. Similar to textual WIG format. + + + bigWig + + + + + + + + + + + beta12orEarlier + + + PSL format of alignments, typically generated by BLAT or psLayout. Can be displayed in a genome browser like a sequence annotation track. + + + PSL + + + + + + + + + + + beta12orEarlier + + + Multiple Alignment Format (MAF) supporting alignments of whole genomes with rearrangements, directions, multiple pieces to the alignment, and so forth. + + + Typically generated by Multiz and TBA aligners; can be displayed in a genome browser like a sequence annotation track. This should not be confused with MIRA Assembly Format or Mutation Annotation Format. + MAF + + + + + + + + + + beta12orEarlier + + + + 2bit binary format of nucleotide sequences using 2 bits per nucleotide. In addition encodes unknown nucleotides and lower-case 'masking'. + + + 2bit + + + + + + + + + + beta12orEarlier + + + .nib (nibble) binary format of a nucleotide sequence using 4 bits per nucleotide (including unknown) and its lower-case 'masking'. + + + .nib + + + + + + + + + + beta12orEarlier + + gp + + genePred table format for gene prediction tracks. + + + genePred format has 3 main variations (http://genome.ucsc.edu/FAQ/FAQformat#format9 http://www.broadinstitute.org/software/igv/genePred). They reflect UCSC Browser DB tables. + genePred + + + + + + + + + + beta12orEarlier + + + Personal Genome SNP (pgSnp) format for sequence variation tracks (indels and polymorphisms), supported by the UCSC Genome Browser. + + + pgSnp + + + + + + + + + + beta12orEarlier + + + axt format of alignments, typically produced from BLASTZ. + + + axt + + + + + + + + + + beta12orEarlier + + lav + + LAV format of alignments generated by BLASTZ and LASTZ. + + + LAV + + + + + + + + + + beta12orEarlier + + + Pileup format of alignment of sequences (e.g. sequencing reads) to (a) reference sequence(s). Contains aligned bases per base of the reference sequence(s). + + + Pileup + + + + + + + + + + beta12orEarlier + + + Variant Call Format (VCF) is tabular format for storing genomic sequence variations. + 1000 Genomes Project has its own specification for encoding structural variations in VCF (https://www.internationalgenome.org/wiki/Analysis/Variant%20Call%20Format/VCF%20(Variant%20Call%20Format)%20version%204.0/encoding-structural-variants). This is based on VCF version 4.0 and not directly compatible with VCF version 4.3. + vcf + vcf.gz + + + VCF + + + + + + + + + + beta12orEarlier + + + Sequence Read Format (SRF) of sequence trace data. Supports submission to the NCBI Short Read Archive. + + + SRF + + + + + + + + + + beta12orEarlier + + + ZTR format for storing chromatogram data from DNA sequencing instruments. + + + ZTR + + + + + + + + + + beta12orEarlier + + + Genome Variation Format (GVF). A GFF3-compatible format with defined header and attribute tags for sequence variation. + + + GVF + + + + + + + + + + beta12orEarlier + + + bcf + bcf.gz + BCF is the binary version of Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation). + + + BCF + + + + + + + + + + + + + + + beta13 + true + Format of a matrix (array) of numerical values. + + + Matrix format + + + + + + + + + + + + + + + beta13 + true + Format of data concerning the classification of the sequences and/or structures of protein structural domain(s). + + + Protein domain classification format + + + + + + + + + beta13 + Format of raw SCOP domain classification data files. + + + These are the parsable data files provided by SCOP. + Raw SCOP domain classification format + + + + + + + + + beta13 + Format of raw CATH domain classification data files. + + + These are the parsable data files provided by CATH. + Raw CATH domain classification format + + + + + + + + + beta13 + Format of summary of domain classification information for a CATH domain. + + + The report (for example http://www.cathdb.info/domain/1cukA01) includes CATH codes for levels in the hierarchy for the domain, level descriptions and relevant data and links. + CATH domain report format + + + + + + + + + + 1.0 + + + Systems Biology Result Markup Language (SBRML), the standard XML format for simulated or calculated results (e.g. trajectories) of systems biology models. + + + SBRML + + + + + + + + + 1.0 + + + BioPAX is an exchange format for pathway data, with its data model defined in OWL. + + + BioPAX + + + + + + + + + + + 1.0 + + + EBI Application Result XML is a format returned by sequence similarity search Web services at EBI. + + + EBI Application Result XML + + + + + + + + + + 1.0 + + + XML Molecular Interaction Format (MIF), standardised by HUPO PSI MI. + MIF + + + PSI MI XML (MIF) + + + + + + + + + + 1.0 + + + phyloXML is a standardised XML format for phylogenetic trees, networks, and associated data. + + + phyloXML + + + + + + + + + + 1.0 + + + NeXML is a standardised XML format for rich phyloinformatic data. + + + NeXML + + + + + + + + + + + + + + + + 1.0 + + + MAGE-ML XML format for microarray expression data, standardised by MGED (now FGED). + + + MAGE-ML + + + + + + + + + + + + + + + + 1.0 + + + MAGE-TAB textual format for microarray expression data, standardised by MGED (now FGED). + + + MAGE-TAB + + + + + + + + + + 1.0 + + + GCDML XML format for genome and metagenome metadata according to MIGS/MIMS/MIMARKS information standards, standardised by the Genomic Standards Consortium (GSC). + + + GCDML + + + + + + + + + + + + 1.0 + + + + + + + 'GTrack' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'GTrack' is the tabular format for representing features of sequences and genomes. + + + + GTrack is a generic and optimised tabular format for genome or sequence feature tracks. GTrack unifies the power of other track formats (e.g. GFF3, BED, WIG), and while optimised in size, adds more flexibility, customisation, and automation ("machine understandability"). + BioXSD/GTrack GTrack + BioXSD|GTrack GTrack + GTrack ecosystem of formats + GTrack format + GTrack|BTrack|GSuite GTrack + GTrack|GSuite|BTrack GTrack + + + GTrack + + + + + + + + + + + + + + + 1.0 + true + Data format for a report of information derived from a biological pathway or network. + + + Biological pathway or network report format + + + + + + + + + + + + + + + 1.0 + true + Data format for annotation on a laboratory experiment. + + + Experiment annotation format + + + + + + + + + + + + + + + + 1.2 + + + Cytoband format for chromosome cytobands. + + + Reflects a UCSC Browser DB table. + Cytoband format + + + + + + + + + + + 1.2 + + + CopasiML, the native format of COPASI. + + + CopasiML + + + + + + + + + + 1.2 + + + + + CellML, the format for mathematical models of biological and other networks. + + + CellML + + + + + + + + + + 1.2 + + + + + + Tabular Molecular Interaction format (MITAB), standardised by HUPO PSI MI. + + + PSI MI TAB (MITAB) + + + + + + + + + 1.2 + + + Protein affinity format (PSI-PAR), standardised by HUPO PSI MI. It is compatible with PSI MI XML (MIF) and uses the same XML Schema. + + + PSI-PAR + + + + + + + + + + 1.2 + + + mzML format for raw spectrometer output data, standardised by HUPO PSI MSS. + + + mzML is the successor and unifier of the mzData format developed by PSI and mzXML developed at the Seattle Proteome Center. + mzML + + + + + + + + + + + + + + + 1.2 + true + Format for mass pectra and derived data, include peptide sequences etc. + + + Mass spectrometry data format + + + + + + + + + + 1.2 + + + TraML (Transition Markup Language) is the format for mass spectrometry transitions, standardised by HUPO PSI MSS. + + + TraML + + + + + + + + + + 1.2 + + + mzIdentML is the exchange format for peptides and proteins identified from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of proteomics search engines. + + + mzIdentML + + + + + + + + + + 1.2 + + + mzQuantML is the format for quantitation values associated with peptides, proteins and small molecules from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of quantitation software for proteomics. + + + mzQuantML + + + + + + + + + + 1.2 + + + GelML is the format for describing the process of gel electrophoresis, standardised by HUPO PSI PS. + + + GelML + + + + + + + + + + 1.2 + + + spML is the format for describing proteomics sample processing, other than using gels, prior to mass spectrometric protein identification, standardised by HUPO PSI PS. It may also be applicable for metabolomics. + + + spML + + + + + + + + + + 1.2 + A human-readable encoding for the Web Ontology Language (OWL). + + + OWL Functional Syntax + + + + + + + + + + 1.2 + A syntax for writing OWL class expressions. + + + This format was influenced by the OWL Abstract Syntax and the DL style syntax. + Manchester OWL Syntax + + + + + + + + + + 1.2 + A superset of the "Description-Logic Knowledge Representation System Specification from the KRSS Group of the ARPA Knowledge Sharing Effort". + + + This format is used in Protege 4. + KRSS2 Syntax + + + + + + + + + + 1.2 + The Terse RDF Triple Language (Turtle) is a human-friendly serialisation format for RDF (Resource Description Framework) graphs. + + + The SPARQL Query Language incorporates a very similar syntax. + Turtle + + + + + + + + + + 1.2 + nt + A plain text serialisation format for RDF (Resource Description Framework) graphs, and a subset of the Turtle (Terse RDF Triple Language) format. + + + N-Triples should not be confused with Notation 3 which is a superset of Turtle. + N-Triples + + + + + + + + + + 1.2 + n3 + A shorthand non-XML serialisation of Resource Description Framework model, designed with human-readability in mind. + N3 + + + Notation3 + + + + + + + + + + 1.2 + rdf + + Resource Description Framework (RDF) XML format. + + + RDF/XML can be used as a standard serialisation syntax for OWL DL, but not for OWL Full. + RDF/XML + http://www.ebi.ac.uk/SWO/data/SWO_3000006 + + + + + + + + + + 1.2 + OWL ontology XML serialisation format. + OWL + + + OWL/XML + + + + + + + + + + 1.3 + + + The A2M format is used as the primary format for multiple alignments of protein or nucleic-acid sequences in the SAM suite of tools. It is a small modification of FASTA format for sequences and is compatible with most tools that read FASTA. + + + A2M + + + + + + + + + + 1.3 + + + Standard flowgram format (SFF) is a binary file format used to encode results of pyrosequencing from the 454 Life Sciences platform for high-throughput sequencing. + Standard flowgram format + + + SFF + + + + + + + + + 1.3 + + The MAP file describes SNPs and is used by the Plink package. + Plink MAP + + + MAP + + + + + + + + + 1.3 + + The PED file describes individuals and genetic data and is used by the Plink package. + Plink PED + + + PED + + + + + + + + + 1.3 + true + Data format for a metadata on an individual and their genetic data. + + + Individual genetic data format + + + + + + + + + + 1.3 + + The PED/MAP file describes data used by the Plink package. + Plink PED/MAP + + + PED/MAP + + + + + + + + + + 1.3 + + + File format of a CT (Connectivity Table) file from the RNAstructure package. + Connect format + Connectivity Table file format + + + CT + + + + + + + + + + 1.3 + + XRNA old input style format. + + + SS + + + + + + + + + + + 1.3 + + RNA Markup Language. + + + RNAML + + + + + + + + + + 1.3 + + Format for the Genetic Data Environment (GDE). + + + GDE + + + + + + + + + 1.3 + + A multiple alignment in vertical format, as used in the AMPS (Alignment of Multiple Protein Sequences) package. + Block file format + + + BLC + + + + + + + + + + + + + + + 1.3 + true + Format of a data index of some type. + + + Data index format + + + + + + + + + + + + + + + + 1.3 + + BAM indexing format. + + + BAI + + + + + + + + + 1.3 + + HMMER profile HMM file for HMMER versions 2.x. + + + HMMER2 + + + + + + + + + 1.3 + + HMMER profile HMM file for HMMER versions 3.x. + + + HMMER3 + + + + + + + + + 1.3 + + PO is the output format of Partial Order Alignment program (POA) performing Multiple Sequence Alignment (MSA). + + + PO + + + + + + + + + + 1.3 + XML format as produced by the NCBI Blast package. + + + BLAST XML results format + + + + + + + + + + 1.7 + http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf + http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf + Reference-based compression of alignment format. + + + CRAM + + + + + + + + + + 1.7 + json + + + + JavaScript Object Notation format; a lightweight, text-based format to represent tree-structured data using key-value pairs. + JavaScript Object Notation + + + JSON + + + + + + + + + + 1.7 + Encapsulated PostScript format. + + + EPS + + + + + + + + + 1.7 + Graphics Interchange Format. + + + GIF + + + + + + + + + + 1.7 + Microsoft Excel spreadsheet format. + Microsoft Excel format + + + xls + + + + + + + + + 1.7 + tab + tsv + + + + Tabular data represented as tab-separated values in a text file. + Tab-delimited + Tab-separated values + tab + + + TSV + + + + + + + + + 1.7 + 1.10 + + Format of a file of gene expression data, e.g. a gene expression matrix or profile. + + + Gene expression data format + true + + + + + + + + + + 1.7 + Format of the cytoscape input file of gene expression ratios or values are specified over one or more experiments. + + + Cytoscape input file format + + + + + + + + + + + + + + + + 1.7 + https://github.com/BenLangmead/bowtie/blob/master/MANUAL + Bowtie format for indexed reference genome for "small" genomes. + Bowtie index format + + + ebwt + + + + + + + + + 1.7 + http://www.molbiol.ox.ac.uk/tutorials/Seqlab_GCG.pdf + Rich sequence format. + GCG RSF + + + RSF-format files contain one or more sequences that may or may not be related. In addition to the sequence data, each sequence can be annotated with descriptive sequence information (from the GCG manual). + RSF + + + + + + + + + + + 1.7 + Some format based on the GCG format. + + + GCG format variant + + + + + + + + + + 1.7 + http://rothlab.ucdavis.edu/genhelp/chapter_2_using_sequences.html#_Creating_and_Editing_Single_Sequenc + Bioinformatics Sequence Markup Language format. + + + BSML + + + + + + + + + + + + + + + + 1.7 + https://github.com/BenLangmead/bowtie/blob/master/MANUAL + Bowtie format for indexed reference genome for "large" genomes. + Bowtie long index format + + + ebwtl + + + + + + + + + + 1.8 + + Ensembl standard format for variation data. + + + Ensembl variation file format + + + + + + + + + + 1.8 + Microsoft Word format. + Microsoft Word format + doc + + + docx + + + + + + + + + 1.8 + true + Format of documents including word processor, spreadsheet and presentation. + + + Document format + + + + + + + + + + 1.8 + Portable Document Format. + + + PDF + + + + + + + + + + + + + + + 1.9 + true + Format used for images and image metadata. + + + Image format + + + + + + + + + + 1.9 + + Medical image format corresponding to the Digital Imaging and Communications in Medicine (DICOM) standard. + + + DICOM format + + + + + + + + + + 1.9 + + nii + An open file format from the Neuroimaging Informatics Technology Initiative (NIfTI) commonly used to store brain imaging data obtained using Magnetic Resonance Imaging (MRI) methods. + NIFTI format + NIfTI-1 format + + + nii + + + + + + + + + + 1.9 + + Text-based tagged file format for medical images generated using the MetaImage software package. + Metalmage format + + + mhd + + + + + + + + + + 1.9 + + Nearly Raw Rasta Data format designed to support scientific visualisation and image processing involving N-dimensional raster data. + + + nrrd + + + + + + + + + 1.9 + File format used for scripts written in the R programming language for execution within the R software environment, typically for statistical computation and graphics. + + + R file format + + + + + + + + + 1.9 + File format used for scripts for the Statistical Package for the Social Sciences. + + + SPSS + + + + + + + + + 1.9 + + eml + mht + mhtml + + MHTML is not strictly an HTML format, it is encoded as an HTML email message (although with multipart/related instead of multipart/alternative). It, however, contains the main HTML block as its core, and thus it is for practical reasons included in EDAM as a specialisation of 'HTML'. + + + MIME HTML format for Web pages, which can include external resources, including images, Flash animations and so on. + HTML email format + HTML email message format + MHT + MHT format + MHTML format + MIME HTML + MIME HTML format + eml + MIME multipart + MIME multipart format + MIME multipart message + MIME multipart message format + + + MHTML + + + + + + + + + + + + + + + + + 1.10 + Proprietary file format for (raw) BeadArray data used by genomewide profiling platforms from Illumina Inc. This format is output directly from the scanner and stores summary intensities for each probe-type on an array. + + + IDAT + + + + + + + + + + 1.10 + + Joint Picture Group file format for lossy graphics file. + JPEG + jpeg + + + Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type. + JPG + + + + + + + + + + 1.10 + Reporter Code Count-A data file (.csv) output by the Nanostring nCounter Digital Analyzer, which contains gene sample information, probe information and probe counts. + + + rcc + + + + + + + + + 1.11 + + + ARFF (Attribute-Relation File Format) is an ASCII text file format that describes a list of instances sharing a set of attributes. + + + This file format is for machine learning. + arff + + + + + + + + + + 1.11 + + + AFG is a single text-based file assembly format that holds read and consensus information together. + + + afg + + + + + + + + + + 1.11 + + + The bedGraph format allows display of continuous-valued data in track format. This display type is useful for probability scores and transcriptome data. + + + Holds a tab-delimited chromosome /start /end / datavalue dataset. + bedgraph + + + + + + + + + 1.11 + + + Browser Extensible Data (BED) format of sequence annotation track that strictly does not contain non-standard fields beyond the first 3 columns. + + + Galaxy allows BED files to contain non-standard fields beyond the first 3 columns, some other implementations do not. + bedstrict + + + + + + + + + 1.11 + + + BED file format where each feature is described by chromosome, start, end, name, score, and strand. + + + Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 6 + bed6 + + + + + + + + + 1.11 + + + A BED file where each feature is described by all twelve columns. + + + Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 12 + bed12 + + + + + + + + + + 1.11 + + + Tabular format of chromosome names and sizes used by Galaxy. + + + Galaxy allows BED files to contain non-standard fields beyond the first 3 columns, some other implementations do not. + chrominfo + + + + + + + + + + 1.11 + + + Custom Sequence annotation track format used by Galaxy. + + + Used for tracks/track views within galaxy. + customtrack + + + + + + + + + + 1.11 + + + Color space FASTA format sequence variant. + + + FASTA format extended for color space information. + csfasta + + + + + + + + + + 1.11 + + + HDF5 is a data model, library, and file format for storing and managing data, based on Hierarchical Data Format (HDF). + h5 + + + An HDF5 file appears to the user as a directed graph. The nodes of this graph are the higher-level HDF5 objects that are exposed by the HDF5 APIs: Groups, Datasets, Named datatypes. Currently supported by the Python MDTraj package. + HDF5 is the new version, according to the HDF group, a completely different technology (https://support.hdfgroup.org/products/hdf4/ compared to HDF. + HDF5 + + + + + + + + + + 1.11 + + A versatile bitmap format. + + + The TIFF format is perhaps the most versatile and diverse bitmap format in existence. Its extensible nature and support for numerous data compression schemes allow developers to customize the TIFF format to fit any peculiar data storage needs. + TIFF + + + + + + + + + + 1.11 + + Standard bitmap storage format in the Microsoft Windows environment. + + + Although it is based on Windows internal bitmap data structures, it is supported by many non-Windows and non-PC applications. + BMP + + + + + + + + + + 1.11 + + IM is a format used by LabEye and other applications based on the IFUNC image processing library. + + + IFUNC library reads and writes most uncompressed interchange versions of this format. + im + + + + + + + + + + 1.11 + + pcd + Photo CD format, which is the highest resolution format for images on a CD. + + + PCD was developed by Kodak. A PCD file contains five different resolution (ranging from low to high) of a slide or film negative. Due to it PCD is often used by many photographers and graphics professionals for high-end printed applications. + pcd + + + + + + + + + + 1.11 + + PCX is an image file format that uses a simple form of run-length encoding. It is lossless. + + + pcx + + + + + + + + + + 1.11 + + The PPM format is a lowest common denominator color image file format. + + + ppm + + + + + + + + + + 1.11 + + PSD (Photoshop Document) is a proprietary file that allows the user to work with the images' individual layers even after the file has been saved. + + + psd + + + + + + + + + + 1.11 + + X BitMap is a plain text binary image format used by the X Window System used for storing cursor and icon bitmaps used in the X GUI. + + + The XBM format was replaced by XPM for X11 in 1989. + xbm + + + + + + + + + + 1.11 + + X PixMap (XPM) is an image file format used by the X Window System, it is intended primarily for creating icon pixmaps, and supports transparent pixels. + + + Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type. + xpm + + + + + + + + + + 1.11 + + RGB file format is the native raster graphics file format for Silicon Graphics workstations. + + + rgb + + + + + + + + + + 1.11 + + The PBM format is a lowest common denominator monochrome file format. It serves as the common language of a large family of bitmap image conversion filters. + + + pbm + + + + + + + + + + 1.11 + + The PGM format is a lowest common denominator grayscale file format. + + + It is designed to be extremely easy to learn and write programs for. + pgm + + + + + + + + + + 1.11 + + png + PNG is a file format for image compression. + + + It iis expected to replace the Graphics Interchange Format (GIF). + PNG + + + + + + + + + + 1.11 + + Scalable Vector Graphics (SVG) is an XML-based vector image format for two-dimensional graphics with support for interactivity and animation. + Scalable Vector Graphics + + + The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999. + SVG + + + + + + + + + + 1.11 + + Sun Raster is a raster graphics file format used on SunOS by Sun Microsystems. + + + The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999. + rast + + + + + + + + + + + + + + + 1.11 + true + Textual report format for sequence quality for reports from sequencing machines. + + + Sequence quality report format (text) + + + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences). + + + Phred quality scores are defined as a property which is logarithmically related to the base-calling error probabilities. + qual + + + + + + + + + + 1.11 + FASTQ format subset for Phred sequencing quality score data only (no sequences) for Solexa/Illumina 1.0 format. + + + Solexa/Illumina 1.0 format can encode a Solexa/Illumina quality score from -5 to 62 using ASCII 59 to 126 (although in raw read data Solexa scores from -5 to 40 only are expected) + qualsolexa + + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences) from Illumina 1.5 and before Illumina 1.8. + + + Starting in Illumina 1.5 and before Illumina 1.8, the Phred scores 0 to 2 have a slightly different meaning. The values 0 and 1 are no longer used and the value 2, encoded by ASCII 66 "B", is used also at the end of reads as a Read Segment Quality Control Indicator. + qualillumina + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences) for SOLiD data. + + + For SOLiD data, the sequence is in color space, except the first position. The quality values are those of the Sanger format. + qualsolid + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences) from 454 sequencers. + + + qual454 + + + + + + + + + 1.11 + + + Human ENCODE peak format. + + + Format that covers both the broad peak format and narrow peak format from ENCODE. + ENCODE peak format + + + + + + + + + 1.11 + + + Human ENCODE narrow peak format. + + + Format that covers both the broad peak format and narrow peak format from ENCODE. + ENCODE narrow peak format + + + + + + + + + 1.11 + + + Human ENCODE broad peak format. + + + ENCODE broad peak format + + + + + + + + + + 1.11 + + bgz + Blocked GNU Zip format. + + + BAM files are compressed using a variant of GZIP (GNU ZIP), into a format called BGZF (Blocked GNU Zip Format). + bgzip + + + + + + + + + + 1.11 + + + TAB-delimited genome position file index format. + + + tabix + + + + + + + + + 1.11 + true + Data format for graph data. + + + Graph format + + + + + + + + + 1.11 + + XML-based format used to store graph descriptions within Galaxy. + + + xgmml + + + + + + + + + 1.11 + + SIF (simple interaction file) Format - a network/pathway format used for instance in cytoscape. + + + sif + + + + + + + + + + 1.11 + MS Excel spreadsheet format consisting of a set of XML documents stored in a ZIP-compressed file. + + + xlsx + + + + + + + + + 1.11 + + Data format used by the SQLite database. + + + SQLite format + + + + + + + + + + 1.11 + + Data format used by the SQLite database conformant to the Gemini schema. + + + Gemini SQLite format + + + + + + + + + 1.11 + Duplicate of http://edamontology.org/format_3326 + 1.20 + + + Format of a data index of some type. + + + Index format + true + + + + + + + + + + 1.11 + An index of a genome database, indexed for use by the snpeff tool. + + + snpeffdb + + + + + + + + + + + + + + + 1.12 + + Binary format used by MATLAB files to store workspace variables. + .mat file format + MAT file format + MATLAB file format + + + MAT + + + + + + + + + + + 1.12 + + Network Common Data Form (NetCDF) library is supported by AMBER MD package from version 9. + Format used by netCDF software library for writing and reading chromatography-MS data files. Also used to store trajectory atom coordinates information, such as the ones obtained by Molecular Dynamics simulations. + ANDI-MS + + + netCDF + + + + + + + + + 1.12 + mgf + Mascot Generic Format. Encodes multiple MS/MS spectra in a single file. + + + Files includes *m*/*z*, intensity pairs separated by headers; headers can contain a bit more information, including search engine instructions. + MGF + + + + + + + + + 1.12 + Spectral data format file where each spectrum is written to a separate file. + + + Each file contains one header line for the known or assumed charge and the mass of the precursor peptide ion, calculated from the measured *m*/*z* and the charge. This one line was then followed by all the *m*/*z*, intensity pairs that represent the spectrum. + dta + + + + + + + + + 1.12 + Spectral data file similar to dta. + + + Differ from .dta only in subtleties of the header line format and content and support the added feature of being able to. + pkl + + + + + + + + + 1.12 + https://dx.doi.org/10.1038%2Fnbt1031 + Common file format for proteomics mass spectrometric data developed at the Seattle Proteome Center/Institute for Systems Biology. + + + mzXML + + + + + + + + + + 1.12 + http://sashimi.sourceforge.net/schema_revision/pepXML/pepXML_v118.xsd + Open data format for the storage, exchange, and processing of peptide sequence assignments of MS/MS scans, intended to provide a common data output format for many different MS/MS search engines and subsequent peptide-level analyses. + + + pepXML + + + + + + + + + + 1.12 + + Graphical Pathway Markup Language (GPML) is an XML format used for exchanging biological pathways. + + + GPML + + + + + + + + + + 1.12 + + oxlicg + + + + A list of k-mers and their occurrences in a dataset. Can also be used as an implicit De Bruijn graph. + K-mer countgraph + + + + + + + + + + + 1.13 + + + mzTab is a tab-delimited format for mass spectrometry-based proteomics and metabolomics results. + + + mzTab + + + + + + + + + + + 1.13 + + imzml + + imzML metadata is a data format for mass spectrometry imaging metadata. + + + imzML data are recorded in 2 files: '.imzXML' is a metadata XML file based on mzML by HUPO-PSI, and '.ibd' is a binary file containing the mass spectra. This entry is for the metadata XML file + imzML metadata file + + + + + + + + + + + 1.13 + + + qcML is an XML format for quality-related data of mass spectrometry and other high-throughput measurements. + + + The focus of qcML is towards mass spectrometry based proteomics, but the format is suitable for metabolomics and sequencing as well. + qcML + + + + + + + + + + + 1.13 + + + PRIDE XML is an XML format for mass spectra, peptide and protein identifications, and metadata about a corresponding measurement, sample, experiment. + + + PRIDE XML + + + + + + + + + + + + 1.13 + + + Simulation Experiment Description Markup Language (SED-ML) is an XML format for encoding simulation setups, according to the MIASE (Minimum Information About a Simulation Experiment) requirements. + + + SED-ML + + + + + + + + + + + + 1.13 + + + Open Modeling EXchange format (OMEX) is a ZIPped format for encapsulating all information necessary for a modeling and simulation project in systems biology. + + + An OMEX file is a ZIP container that includes a manifest file, listing the content of the archive, an optional metadata file adding information about the archive and its content, and the files describing the model. OMEX is one of the standardised formats within COMBINE (Computational Modeling in Biology Network). + COMBINE OMEX + + + + + + + + + + + 1.13 + + + The Investigation / Study / Assay (ISA) tab-delimited (TAB) format incorporates metadata from experiments employing a combination of technologies. + + + ISA-TAB is based on MAGE-TAB. Other than tabular, the ISA model can also be represented in RDF, and in JSON (compliable with a set of defined JSON Schemata). + ISA-TAB + + + + + + + + + + + 1.13 + + + SBtab is a tabular format for biochemical network models. + + + SBtab + + + + + + + + + + 1.13 + + + Biological Connection Markup Language (BCML) is an XML format for biological pathways. + + + BCML + + + + + + + + + + 1.13 + + + Biological Dynamics Markup Language (BDML) is an XML format for quantitative data describing biological dynamics. + + + BDML + + + + + + + + + 1.13 + + + Biological Expression Language (BEL) is a textual format for representing scientific findings in life sciences in a computable form. + + + BEL + + + + + + + + + + 1.13 + + + SBGN-ML is an XML format for Systems Biology Graphical Notation (SBGN) diagrams of biological pathways or networks. + + + SBGN-ML + + + + + + + + + + 1.13 + + agp + + AGP is a tabular format for a sequence assembly (a contig, a scaffold/supercontig, or a chromosome). + + + AGP + + + + + + + + + 1.13 + PostScript format. + PostScript + + + PS + + + + + + + + + 1.13 + + sra + SRA archive format (SRA) is the archive format used for input to the NCBI Sequence Read Archive. + SRA + SRA archive format + + + SRA format + + + + + + + + + 1.13 + + VDB ('vertical database') is the native format used for export from the NCBI Sequence Read Archive. + SRA native format + + + VDB + + + + + + + + + + + + + + + + 1.13 + + Index file format used by the samtools package to index TAB-delimited genome position files. + + + Tabix index file format + + + + + + + + + 1.13 + A five-column, tab-delimited table of feature locations and qualifiers for importing annotation into an existing Sequin submission (an NCBI tool for submitting and updating GenBank entries). + + + Sequin format + + + + + + + + + 1.14 + Proprietary mass-spectrometry format of Thermo Scientific's ProteomeDiscoverer software. + Magellan storage file format + + + This format corresponds to an SQLite database, and you can look into the files with e.g. SQLiteStudio3. There are also some readers (http://doi.org/10.1021/pr2005154) and converters (http://doi.org/10.1016/j.jprot.2015.06.015) for this format available, which re-engineered the database schema, but there is no official DB schema specification of Thermo Scientific for the format. + MSF + + + + + + + + + + + + + + + 1.14 + true + Data format for biodiversity data. + + + Biodiversity data format + + + + + + + + + + + + + + + 1.14 + + Exchange format of the Access to Biological Collections Data (ABCD) Schema; a standard for the access to and exchange of data about specimens and observations (primary biodiversity data). + ABCD + + + ABCD format + + + + + + + + + + 1.14 + Tab-delimited text files of GenePattern that contain a column for each sample, a row for each gene, and an expression value for each gene in each sample. + GCT format + Res format + + + GCT/Res format + + + + + + + + + + 1.14 + wiff + Mass spectrum file format from QSTAR and QTRAP instruments (ABI/Sciex). + wiff + + + WIFF format + + + + + + + + + + 1.14 + + Output format used by X! series search engines that is based on the XML language BIOML. + + + X!Tandem XML + + + + + + + + + + 1.14 + Proprietary file format for mass spectrometry data from Thermo Scientific. + + + Proprietary format for which documentation is not available. + Thermo RAW + + + + + + + + + + 1.14 + + "Raw" result file from Mascot database search. + + + Mascot .dat file + + + + + + + + + + 1.14 + + Format of peak list files from Andromeda search engine (MaxQuant) that consist of arbitrarily many spectra. + MaxQuant APL + + + MaxQuant APL peaklist format + + + + + + + + + 1.14 + + Synthetic Biology Open Language (SBOL) is an XML format for the specification and exchange of biological design information in synthetic biology. + + + SBOL introduces a standardised format for the electronic exchange of information on the structural and functional aspects of biological designs. + SBOL + + + + + + + + + 1.14 + + PMML uses XML to represent mining models. The structure of the models is described by an XML Schema. + + + One or more mining models can be contained in a PMML document. + PMML + + + + + + + + + + 1.14 + + Image file format used by the Open Microscopy Environment (OME). + + + An OME-TIFF dataset consists of one or more files in standard TIFF or BigTIFF format, with the file extension .ome.tif or .ome.tiff, and an identical (or in the case of multiple files, nearly identical) string of OME-XML metadata embedded in the ImageDescription tag of each file's first IFD (Image File Directory). BigTIFF file extensions are also permitted, with the file extension .ome.tf2, .ome.tf8 or .ome.btf, but note these file extensions are an addition to the original specification, and software using an older version of the specification may not be able to handle these file extensions. + OME develops open-source software and data format standards for the storage and manipulation of biological microscopy data. It is a joint project between universities, research establishments, industry and the software development community. + OME-TIFF + + + + + + + + + 1.14 + + The LocARNA PP format combines sequence or alignment information and (respectively, single or consensus) ensemble probabilities into an PP 2.0 record. + + + Format for multiple aligned or single sequences together with the probabilistic description of the (consensus) RNA secondary structure ensemble by probabilities of base pairs, base pair stackings, and base pairs and unpaired bases in the loop of base pairs. + LocARNA PP + + + + + + + + + 1.14 + + Input format used by the Database of Genotypes and Phenotypes (dbGaP). + + + The Database of Genotypes and Phenotypes (dbGaP) is a National Institutes of Health (NIH) sponsored repository charged to archive, curate and distribute information produced by studies investigating the interaction of genotype and phenotype. + dbGaP format + + + + + + + + + + + 1.15 + + biom + The BIological Observation Matrix (BIOM) is a format for representing biological sample by observation contingency tables in broad areas of comparative omics. The primary use of this format is to represent OTU tables and metagenome tables. + BIological Observation Matrix format + biom + + + BIOM is a recognised standard for the Earth Microbiome Project, and is a project supported by Genomics Standards Consortium. Supported in QIIME, Mothur, MEGAN, etc. + BIOM format + + + + + + + + + + 1.15 + + + A format for storage, exchange, and processing of protein identifications created from ms/ms-derived peptide sequence data. + + + No human-consumable information about this format is available (see http://tools.proteomecenter.org/wiki/index.php?title=Formats:protXML). + protXML + http://doi.org/10.1038/msb4100024 + http://sashimi.sourceforge.net/schema_revision/protXML/protXML_v3.xsd + + + + + + + + + + + 1.15 + true + A linked data format enables publishing structured data as linked data (Linked Data), so that the data can be interlinked and become more useful through semantic queries. + Semantic Web format + + + Linked data format + + + + + + + + + + + + 1.15 + + jsonld + + + JSON-LD, or JavaScript Object Notation for Linked Data, is a method of encoding Linked Data using JSON. + JavaScript Object Notation for Linked Data + jsonld + + + JSON-LD + + + + + + + + + + 1.15 + + yaml + yml + + YAML (YAML Ain't Markup Language) is a human-readable tree-structured data serialisation language. + YAML Ain't Markup Language + yml + + + Data in YAML format can be serialised into text, or binary format. + YAML version 1.2 is a superset of JSON; prior versions were "not strictly compatible". + YAML + + + + + + + + + + 1.16 + Tabular data represented as values in a text file delimited by some character. + Delimiter-separated values + Tabular format + + + DSV + + + + + + + + + + 1.16 + csv + + + + Tabular data represented as comma-separated values in a text file. + Comma-separated values + + + CSV + + + + + + + + + + 1.16 + out + "Raw" result file from SEQUEST database search. + + + SEQUEST .out file + + + + + + + + + + 1.16 + http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1IdXMLFile.html + http://open-ms.sourceforge.net/schemas/ + XML file format for files containing information about peptide identifications from mass spectrometry data analysis carried out with OpenMS. + + + idXML + + + + + + + + + 1.16 + Data table formatted such that it can be passed/streamed within the KNIME platform. + + + KNIME datatable format + + + + + + + + + + + 1.16 + + UniProtKB XML sequence features format is an XML format available for downloading UniProt entries. + UniProt XML + UniProt XML format + UniProtKB XML format + + + UniProtKB XML + + + + + + + + + + 1.16 + + UniProtKB RDF sequence features format is an RDF format available for downloading UniProt entries (in RDF/XML). + UniProt RDF + UniProt RDF format + UniProt RDF/XML + UniProt RDF/XML format + UniProtKB RDF format + UniProtKB RDF/XML + UniProtKB RDF/XML format + + + UniProtKB RDF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + + + Work in progress. 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioJSON' is the JSON format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'. + + BioJSON is a BioXSD-schema-based JSON format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web applications and APIs, and object-oriented programming. + BioJSON (BioXSD data model) + BioJSON format (BioXSD) + BioXSD BioJSON + BioXSD BioJSON format + BioXSD JSON + BioXSD JSON format + BioXSD in JSON + BioXSD in JSON format + BioXSD+JSON + BioXSD/GTrack BioJSON + BioXSD|BioJSON|BioYAML BioJSON + BioXSD|GTrack BioJSON + + + BioJSON (BioXSD) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + + + Work in progress. 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioYAML' is the YAML format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'. + + BioYAML is a BioXSD-schema-based YAML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web APIs, human readability and editing, and object-oriented programming. + BioXSD BioYAML + BioXSD BioYAML format + BioXSD YAML + BioXSD YAML format + BioXSD in YAML + BioXSD in YAML format + BioXSD+YAML + BioXSD/GTrack BioYAML + BioXSD|BioJSON|BioYAML BioYAML + BioXSD|GTrack BioYAML + BioYAML (BioXSD data model) + BioYAML (BioXSD) + BioYAML format + BioYAML format (BioXSD) + + + BioYAML + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + BioJSON is a JSON format of single multiple sequence alignments, with their annotations, features, and custom visualisation and application settings for the Jalview workbench. + BioJSON format (Jalview) + JSON (Jalview) + JSON format (Jalview) + Jalview BioJSON + Jalview BioJSON format + Jalview JSON + Jalview JSON format + + + BioJSON (Jalview) + + + + + + + + + + + + 1.16 + + + + + 'GSuite' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'GSuite' is the tabular format for an annotated collection of individual GTrack files. + + + GSuite is a tabular format for collections of genome or sequence feature tracks, suitable for integrative multi-track analysis. GSuite contains links to genome/sequence tracks, with additional metadata. + BioXSD/GTrack GSuite + BioXSD|GTrack GSuite + GSuite (GTrack ecosystem of formats) + GSuite format + GTrack|BTrack|GSuite GSuite + GTrack|GSuite|BTrack GSuite + + + GSuite + + + + + + + + + + + + + 1.16 + + 'BTrack' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'BTrack' is the binary, optionally compressed HDF5-based version of the GTrack and GSuite formats. + BTrack is an HDF5-based binary format for genome or sequence feature tracks and their collections, suitable for integrative multi-track analysis. BTrack is a binary, compressed alternative to the GTrack and GSuite formats. + BTrack (GTrack ecosystem of formats) + BTrack format + BioXSD/GTrack BTrack + BioXSD|GTrack BTrack + GTrack|BTrack|GSuite BTrack + GTrack|GSuite|BTrack BTrack + + + BTrack + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + + + + + Multi-Crop Passport Descriptors is a format available in 2 successive versions, V.1 (FAO/IPGRI 2001) and V.2 (FAO/Bioversity 2012). + + + + + The FAO/Bioversity/IPGRI Multi-Crop Passport Descriptors (MCPD) is an international standard format for exchange of germplasm information. + Bioversity MCPD + FAO MCPD + IPGRI MCPD + MCPD V.1 + MCPD V.2 + MCPD format + Multi-Crop Passport Descriptors + Multi-Crop Passport Descriptors format + + + MCPD + + + + + + + + + + + + + + + + 1.16 + true + Data format of an annotated text, e.g. with recognised entities, concepts, and relations. + + + Annotated text format + + + + + + + + + + + 1.16 + + + JSON format of annotated scientific text used by PubAnnotations and other tools. + + + PubAnnotation format + + + + + + + + + + + 1.16 + + + BioC is a standardised XML format for sharing and integrating text data and annotations. + + + BioC + + + + + + + + + + + + 1.16 + + + Native textual export format of annotated scientific text from PubTator. + + + PubTator format + + + + + + + + + + + 1.16 + + + A format of text annotation using the linked-data Open Annotation Data Model, serialised typically in RDF or JSON-LD. + + + Open Annotation format + + + + + + + + + + + 1.16 + + + + + + + + + + + + + A family of similar formats of text annotation, used by BRAT and other tools, known as BioNLP Shared Task format (BioNLP 2009 Shared Task on Event Extraction, BioNLP Shared Task 2011, BioNLP Shared Task 2013), BRAT format, BRAT standoff format, and similar. + BRAT format + BRAT standoff format + + + BioNLP Shared Task format + + + + + + + + + + + + + + + 1.16 + true + A query language (format) for structured database queries. + Query format + + + Query language + + + + + + + + + 1.16 + sql + + + + SQL (Structured Query Language) is the de-facto standard query language (format of queries) for querying and manipulating data in relational databases. + Structured Query Language + + + SQL + + + + + + + + + + 1.16 + + xq + xquery + xqy + + XQuery (XML Query) is a query language (format of queries) for querying and manipulating structured and unstructured data, usually in the form of XML, text, and with vendor-specific extensions for other data formats (JSON, binary, etc.). + XML Query + xq + xqy + + + XQuery + + + + + + + + + + 1.16 + + + SPARQL (SPARQL Protocol and RDF Query Language) is a semantic query language for querying and manipulating data stored in Resource Description Framework (RDF) format. + SPARQL Protocol and RDF Query Language + + + SPARQL + + + + + + + + + + 1.17 + XML format for XML Schema. + + + xsd + + + + + + + + + + 1.20 + + XMFA format stands for eXtended Multi-FastA format and is used to store collinear sub-alignments that constitute a single genome alignment. + eXtended Multi-FastA format + + + + XMFA + + + + + + + + + + 1.20 + + The GEN file format contains genetic data and describes SNPs. + Genotype file format + + + GEN + + + + + + + + + 1.20 + + The SAMPLE file format contains information about each individual i.e. individual IDs, covariates, phenotypes and missing data proportions, from a GWAS study. + + + SAMPLE file format + + + + + + + + + + 1.20 + + SDF is one of a family of chemical-data file formats developed by MDL Information Systems; it is intended especially for structural information. + + + SDF + + + + + + + + + + 1.20 + + An MDL Molfile is a file format for holding information about the atoms, bonds, connectivity and coordinates of a molecule. + + + Molfile + + + + + + + + + + 1.20 + + Complete, portable representation of a SYBYL molecule. ASCII file which contains all the information needed to reconstruct a SYBYL molecule. + + + Mol2 + + + + + + + + + + 1.20 + + format for the LaTeX document preparation system. + LaTeX format + + + uses the TeX typesetting program format + latex + + + + + + + + + + 1.20 + + Tab-delimited text file format used by Eland - the read-mapping program distributed by Illumina with its sequencing analysis pipeline - which maps short Solexa sequence reads to the human reference genome. + ELAND + eland + + + ELAND format + + + + + + + + + 1.20 + + + Phylip multiple alignment sequence format, less stringent than PHYLIP format. + PHYLIP Interleaved format + + + It differs from Phylip Format (format_1997) on length of the ID sequence. There no length restrictions on the ID, but whitespaces aren't allowed in the sequence ID/Name because one space separates the longest ID and the beginning of the sequence. Sequences IDs must be padded to the longest ID length. + Relaxed PHYLIP Interleaved + + + + + + + + + 1.20 + + + Phylip multiple alignment sequence format, less stringent than PHYLIP sequential format (format_1998). + Relaxed PHYLIP non-interleaved + Relaxed PHYLIP non-interleaved format + Relaxed PHYLIP sequential format + + + It differs from Phylip sequential format (format_1997) on length of the ID sequence. There no length restrictions on the ID, but whitespaces aren't allowed in the sequence ID/Name because one space separates the longest ID and the beginning of the sequence. Sequences IDs must be padded to the longest ID length. + Relaxed PHYLIP Sequential + + + + + + + + + + 1.20 + + Default XML format of VisANT, containing all the network information. + VisANT xml + VisANT xml format + + + VisML + + + + + + + + + + 1.20 + + GML (Graph Modeling Language) is a text file format supporting network data with a very easy syntax. It is used by Graphlet, Pajek, yEd, LEDA and NetworkX. + GML format + + + GML + + + + + + + + + + 1.20 + + + FASTG is a format for faithfully representing genome assemblies in the face of allelic polymorphism and assembly uncertainty. + FASTG assembly graph format + + + It is called FASTG, like FASTA, but the G stands for "graph". + FASTG + + + + + + + + + + + + + + + 1.20 + true + Data format for raw data from a nuclear magnetic resonance (NMR) spectroscopy experiment. + NMR peak assignment data format + NMR processed data format + NMR raw data format + Nuclear magnetic resonance spectroscopy data format + Processed NMR data format + Raw NMR data format + + + NMR data format + + + + + + + + + + 1.20 + + + nmrML is an MSI supported XML-based open access format for metabolomics NMR raw and processed spectral data. It is accompanies by an nmrCV (controlled vocabulary) to allow ontology-based annotations. + + + nmrML + + + + + + + + + + + 1.20 + + . proBAM is an adaptation of BAM (format_2572), which was extended to meet specific requirements entailed by proteomics data. + + + proBAM + + + + + + + + + + 1.20 + + . proBED is an adaptation of BED (format_3003), which was extended to meet specific requirements entailed by proteomics data. + + + proBED + + + + + + + + + + + + + + + 1.20 + true + Data format for raw microarray data. + Microarray data format + + + Raw microarray data format + + + + + + + + + + 1.20 + + GenePix Results (GPR) text file format developed by Axon Instruments that is used to save GenePix Results data. + + + GPR + + + + + + + + + + 1.20 + Binary format used by the ARB software suite. + ARB binary format + + + ARB + + + + + + + + + + 1.20 + http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1ConsensusXMLFile.html + OpenMS format for grouping features in one map or across several maps. + + + consensusXML + + + + + + + + + + 1.20 + http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1FeatureXMLFile.html + OpenMS format for quantitation results (LC/MS features). + + + featureXML + + + + + + + + + + 1.20 + http://www.psidev.info/mzdata-1_0_5-docs + Now deprecated data format of the HUPO Proteomics Standards Initiative. Replaced by mzML (format_3244). + + + mzData + + + + + + + + + + 1.20 + http://cruxtoolkit.sourceforge.net/tide-search.html + Format supported by the Tide tool for identifying peptides from tandem mass spectra. + + + TIDE TXT + + + + + + + + + + 1.20 + ftp://ftp.ncbi.nlm.nih.gov/blast/documents/NEWXML/ProposedBLASTXMLChanges.pdf + ftp://ftp.ncbi.nlm.nih.gov/blast/documents/NEWXML/xml2.pdf + http://www.ncbi.nlm.nih.gov/data_specs/schema/NCBI_BlastOutput2.mod.xsd + XML format as produced by the NCBI Blast package v2. + + + BLAST XML v2 results format + + + + + + + + + + 1.20 + + + Microsoft Powerpoint format. + + + pptx + + + + + + + + + + + 1.20 + + ibd + + ibd is a data format for mass spectrometry imaging data. + + + imzML data is recorded in 2 files: '.imzXML' is a metadata XML file based on mzML by HUPO-PSI, and '.ibd' is a binary file containing the mass spectra. + ibd + + + + + + + + + 1.21 + Data format used in Natural Language Processing. + Natural Language Processing format + + + NLP format + + + + + + + + + + 1.21 + + XML input file format for BEAST Software (Bayesian Evolutionary Analysis Sampling Trees). + + + BEAST + + + + + + + + + + 1.21 + + Chado-XML format is a direct mapping of the Chado relational schema into XML. + + + Chado-XML + + + + + + + + + + 1.21 + + An alignment format generated by PRANK/PRANKSTER consisting of four elements: newick, nodes, selection and model. + + + HSAML + + + + + + + + + + 1.21 + + Output xml file from the InterProScan sequence analysis application. + + + InterProScan XML + + + + + + + + + + 1.21 + + The KEGG Markup Language (KGML) is an exchange format of the KEGG pathway maps, which is converted from internally used KGML+ (KGML+SVG) format. + KEGG Markup Language + + + KGML + + + + + + + + + + 1.21 + XML format for collected entries from bibliographic databases MEDLINE and PubMed. + MEDLINE XML + + + PubMed XML + + + + + + + + + + 1.21 + + A set of XML compliant markup components for describing multiple sequence alignments. + + + MSAML + + + + + + + + + + + 1.21 + + OrthoXML is designed broadly to allow the storage and comparison of orthology data from any ortholog database. It establishes a structure for describing orthology relationships while still allowing flexibility for database-specific information to be encapsulated in the same format. + + + OrthoXML + + + + + + + + + + 1.21 + + Tree structure of Protein Sequence Database Markup Language generated using Matra software. + + + PSDML + + + + + + + + + + 1.21 + + SeqXML is an XML Schema to describe biological sequences, developed by the Stockholm Bioinformatics Centre. + + + SeqXML + + + + + + + + + + 1.21 + + XML format for the UniParc database. + + + UniParc XML + + + + + + + + + + 1.21 + + XML format for the UniRef reference clusters. + + + UniRef XML + + + + + + + + + + + 1.21 + + + + + cwl + + + + Common Workflow Language (CWL) format for description of command-line tools and workflows. + Common Workflow Language + CommonWL + + + CWL + + + + + + + + + + 1.21 + Proprietary file format for mass spectrometry data from Waters. + + + Proprietary format for which documentation is not available, but used by multiple tools. + Waters RAW + + + + + + + + + + 1.21 + + A standardized file format for data exchange in mass spectrometry, initially developed for infrared spectrometry. + + + JCAMP-DX is an ASCII based format and therefore not very compact even though it includes standards for file compression. + JCAMP-DX + + + + + + + + + + 1.21 + An NLP format used for annotated textual documents. + + + NLP annotation format + + + + + + + + + 1.21 + NLP format used by a specific type of corpus (collection of texts). + + + NLP corpus format + + + + + + + + + + + 1.21 + + + + mirGFF3 is a common format for microRNA data resulting from small-RNA RNA-Seq workflows. + miRTop format + + + mirGFF3 is a specialisation of GFF3; produced by small-RNA-Seq analysis workflows, usable and convertible with the miRTop API (https://mirtop.readthedocs.io/en/latest/), and consumable by tools for downstream analysis. + mirGFF3 + + + + + + + + + 1.21 + A "placeholder" concept for formats of annotated RNA data, including e.g. microRNA and RNA-Seq data. + RNA data format + miRNA data format + microRNA data format + + + RNA annotation format + + + + + + + + + + + + + + + 1.22 + true + File format to store trajectory information for a 3D structure . + CG trajectory formats + MD trajectory formats + NA trajectory formats + Protein trajectory formats + + + Formats differ on what they are able to store (coordinates, velocities, topologies) and how they are storing it (raw, compressed, textual, binary). + Trajectory format + + + + + + + + + 1.22 + true + Binary file format to store trajectory information for a 3D structure . + + + Trajectory format (binary) + + + + + + + + + 1.22 + true + Textual file format to store trajectory information for a 3D structure . + + + Trajectory format (text) + + + + + + + + + + 1.22 + HDF is the name of a set of file formats and libraries designed to store and organize large amounts of numerical data, originally developed at the National Center for Supercomputing Applications at the University of Illinois. + + + HDF is currently supported by many commercial and non-commercial software platforms such as Java, MATLAB/Scilab, Octave, Python and R. + HDF + + + + + + + + + + 1.22 + PCAZip format is a binary compressed file to store atom coordinates based on Essential Dynamics (ED) and Principal Component Analysis (PCA). + + + The compression is made projecting the Cartesian snapshots collected along the trajectory into an orthogonal space defined by the most relevant eigenvectors obtained by diagonalization of the covariance matrix (PCA). In the compression/decompression process, part of the original information is lost, depending on the final number of eigenvectors chosen. However, with a reasonable choice of the set of eigenvectors the compression typically reduces the trajectory file to less than one tenth of their original size with very acceptable loss of information. Compression with PCAZip can only be applied to unsolvated structures. + PCAzip + + + + + + + + + + 1.22 + Portable binary format for trajectories produced by GROMACS package. + + + XTC uses the External Data Representation (xdr) routines for writing and reading data which were created for the Unix Network File System (NFS). XTC files use a reduced precision (lossy) algorithm which works multiplying the coordinates by a scaling factor (typically 1000), so converting them to pm (GROMACS standard distance unit is nm). This allows an integer rounding of the values. Several other tricks are performed, such as making use of atom proximity information: atoms close in sequence are usually close in space (e.g. water molecules). That makes XTC format the most efficient in terms of disk usage, in most cases reducing by a factor of 2 the size of any other binary trajectory format. + XTC + + + + + + + + + + 1.22 + Trajectory Next Generation (TNG) is a format for storage of molecular simulation data. It is designed and implemented by the GROMACS development group, and it is called to be the substitute of the XTC format. + Trajectory Next Generation format + + + Fully architecture-independent format, regarding both endianness and the ability to mix single/double precision trajectories and I/O libraries. Self-sufficient, it should not require any other files for reading, and all the data should be contained in a single file for easy transport. Temporal compression of data, improving the compression rate of the previous XTC format. Possibility to store meta-data with information about the simulation. Direct access to a particular frame. Efficient parallel I/O. + TNG + + + + + + + + + + + 1.22 + The XYZ chemical file format is widely supported by many programs, although many slightly different XYZ file formats coexist (Tinker XYZ, UniChem XYZ, etc.). Basic information stored for each atom in the system are x, y and z coordinates and atom element/atomic number. + + + XYZ files are structured in this way: First line contains the number of atoms in the file. Second line contains a title, comment, or filename. Remaining lines contain atom information. Each line starts with the element symbol, followed by x, y and z coordinates in angstroms separated by whitespace. Multiple molecules or frames can be contained within one file, so it supports trajectory storage. XYZ files can be directly represented by a molecular viewer, as they contain all the basic information needed to build the 3D model. + XYZ + + + + + + + + + + + 1.22 + + AMBER trajectory (also called mdcrd), with 10 coordinates per line and format F8.3 (fixed point notation with field width 8 and 3 decimal places). + AMBER trajectory format + inpcrd + + + mdcrd + + + + + + + + + + + + + + + 1.22 + true + Format of topology files; containing the static information of a structure molecular system that is needed for a molecular simulation. + CG topology format + MD topology format + NA topology format + Protein topology format + + + Many different file formats exist describing structural molecular topology. Typically, each MD package or simulation software works with their own implementation (e.g. GROMACS top, CHARMM psf, AMBER prmtop). + Topology format + + + + + + + + + + + 1.22 + + GROMACS MD package top textual files define an entire structure system topology, either directly, or by including itp files. + + + There is currently no tool available for conversion between GROMACS topology format and other formats, due to the internal differences in both approaches. There is, however, a method to convert small molecules parameterized with AMBER force-field into GROMACS format, allowing simulations of these systems with GROMACS MD package. + GROMACS top + + + + + + + + + + + 1.22 + + AMBER Prmtop file (version 7) is a structure topology text file divided in several sections designed to be parsed easily using simple Fortran code. Each section contains particular topology information, such as atom name, charge, mass, angles, dihedrals, etc. + AMBER Parm + AMBER Parm7 + Parm7 + Prmtop + Prmtop7 + + + It can be modified manually, but as the size of the system increases, the hand-editing becomes increasingly complex. AMBER Parameter-Topology file format is used extensively by the AMBER software suite and is referred to as the Prmtop file for short. + version 7 is written to distinguish it from old versions of AMBER Prmtop. Similarly to HDF5, it is a completely different format, according to AMBER group: a drastic change to the file format occurred with the 2004 release of Amber 7 (http://ambermd.org/prmtop.pdf) + AMBER top + + + + + + + + + + + 1.22 + + X-Plor Protein Structure Files (PSF) are structure topology files used by NAMD and CHARMM molecular simulations programs. PSF files contain six main sections of interest: atoms, bonds, angles, dihedrals, improper dihedrals (force terms used to maintain planarity) and cross-terms. + + + The high similarity in the functional form of the two potential energy functions used by AMBER and CHARMM force-fields gives rise to the possible use of one force-field within the other MD engine. Therefore, the conversion of PSF files to AMBER Prmtop format is possible with the use of AMBER chamber (CHARMM - AMBER) program. + PSF + + + + + + + + + + + + 1.22 + + GROMACS itp files (include topology) contain structure topology information, and are typically included in GROMACS topology files (GROMACS top). Itp files are used to define individual (or multiple) components of a topology as a separate file. This is particularly useful if there is a molecule that is used frequently, and also reduces the size of the system topology file, splitting it in different parts. + + + GROMACS itp files are used also to define position restrictions on the molecule, or to define the force field parameters for a particular ligand. + GROMACS itp + + + + + + + + + + + + + + + 1.22 + Format of force field parameter files, which store the set of parameters (charges, masses, radii, bond lengths, bond dihedrals, etc.) that are essential for the proper description and simulation of a molecular system. + Many different file formats exist describing force field parameters. Typically, each MD package or simulation software works with their own implementation (e.g. GROMACS itp, CHARMM rtf, AMBER off / frcmod). + FF parameter format + + + + + + + + + + 1.22 + Scripps Research Institute BinPos format is a binary formatted file to store atom coordinates. + Scripps Research Institute BinPos + + + It is basically a translation of the ASCII atom coordinate format to binary code. The only additional information stored is a magic number that identifies the BinPos format and the number of atoms per snapshot. The remainder is the chain of coordinates binary encoded. A drawback of this format is its architecture dependency. Integers and floats codification depends on the architecture, thus it needs to be converted if working in different platforms (little endian, big endian). + BinPos + + + + + + + + + + + 1.22 + + AMBER coordinate/restart file with 6 coordinates per line and decimal format F12.7 (fixed point notation with field width 12 and 7 decimal places). + restrt + rst7 + + + RST + + + + + + + + + + + 1.22 + Format of CHARMM Residue Topology Files (RTF), which define groups by including the atoms, the properties of the group, and bond and charge information. + + + There is currently no tool available for conversion between GROMACS topology format and other formats, due to the internal differences in both approaches. There is, however, a method to convert small molecules parameterized with AMBER force-field into GROMACS format, allowing simulations of these systems with GROMACS MD package. + CHARMM rtf + + + + + + + + + + 1.22 + + AMBER frcmod (Force field Modification) is a file format to store any modification to the standard force field needed for a particular molecule to be properly represented in the simulation. + + + AMBER frcmod + + + + + + + + + + 1.22 + + AMBER Object File Format library files (OFF library files) store residue libraries (forcefield residue parameters). + AMBER Object File Format + AMBER lib + AMBER off + + + + + + + + + + 1.22 + MReData is a text based data standard for processed NMR data. It is relying on SDF molecule data and allows to store assignments of NMR peaks to molecule features. The NMR-extracted data (or "NMReDATA") includes: Chemical shift,scalar coupling, 2D correlation, assignment, etc. + + + NMReData is a text based data standard for processed NMR data. It is relying on SDF molecule data and allows to store assignments of NMR peaks to molecule features. The NMR-extracted data (or "NMReDATA") includes: Chemical shift,scalar coupling, 2D correlation, assignment, etc. Find more in the paper at https://doi.org/10.1002/mrc.4527. + NMReDATA + + + + + + + + + + + + + + + + + + 1.22 + + + + + BpForms is a string format for concretely representing the primary structures of biopolymers, including DNA, RNA, and proteins that include non-canonical nucleic and amino acids. See https://www.bpforms.org for more information. + + + BpForms + + + + + + + + + + + 1.22 + + The first 4 bytes of any trr file containing 1993. See https://github.com/galaxyproject/galaxy/pull/6597/files#diff-409951594551183dbf886e24de6cb129R760 + Format of trr files that contain the trajectory of a simulation experiment used by GROMACS. + trr + + + + + + + + + + + + + + + + 1.22 + + + + + + msh + + + + Mash sketch is a format for sequence / sequence checksum information. To make a sketch, each k-mer in a sequence is hashed, which creates a pseudo-random identifier. By sorting these hashes, a small subset from the top of the sorted list can represent the entire sequence. + Mash sketch + min-hash sketch + + + msh + + + + + + + + + + + + + + + + + + + + + + 1.23 + + + + loom + The Loom file format is based on HDF5, a standard for storing large numerical datasets. The Loom format is designed to efficiently hold large omics datasets. Typically, such data takes the form of a large matrix of numbers, along with metadata for the rows and columns. + Loom + + + + + + + + + + + + + + + + + + + + + + + 1.23 + + + + zarray + zgroup + The Zarr format is an implementation of chunked, compressed, N-dimensional arrays for storing data. + Zarr + + + + + + + + + + + + + + + + + + + + + + + 1.23 + + + mtx + + The Matrix Market matrix (MTX) format stores numerical or pattern matrices in a dense (array format) or sparse (coordinate format) representation. + MTX + + + + + + + + + + + 1.24 + + + + + + text/plain + + + BcForms is a format for abstractly describing the molecular structure (atoms and bonds) of macromolecular complexes as a collection of subunits and crosslinks. Each subunit can be described with BpForms (http://edamontology.org/format_3909) or SMILES (http://edamontology.org/data_2301). BcForms uses an ontology of crosslinks to abstract the chemical details of crosslinks from the descriptions of complexes (see https://bpforms.org/crosslink.html). + BcForms is related to http://edamontology.org/format_3909. (BcForms uses BpForms to describe subunits which are DNA, RNA, or protein polymers.) However, that format isn't the parent of BcForms. BcForms is similarly related to SMILES (http://edamontology.org/data_2301). + BcForms + + + + + + + + + + 1.24 + + nq + N-Quads is a line-based, plain text format for encoding an RDF dataset. It includes information about the graph each triple belongs to. + + + N-Quads should not be confused with N-Triples which does not contain graph information. + N-Quads + + + + + + + + + + 1.25 + + + + + json + application/json + + Vega is a visualization grammar, a declarative language for creating, saving, and sharing interactive visualization designs. With Vega, you can describe the visual appearance and interactive behavior of a visualization in a JSON format, and generate web-based views using Canvas or SVG. + + + Vega + + + + + + + + + + 1.25 + + + + + json + application/json + + Vega-Lite is a high-level grammar of interactive graphics. It provides a concise JSON syntax for rapidly generating visualizations to support analysis. Vega-Lite specifications can be compiled to Vega specifications. + + + Vega-lite + + + + + + + + + + + + + + + + 1.25 + + + + + application/xml + + A model description language for computational neuroscience. + + + NeuroML + + + + + + + + + + + + + + + + 1.25 + + + + + bngl + application/xml + plain/text + + BioNetGen is a format for the specification and simulation of rule-based models of biochemical systems, including signal transduction, metabolic, and genetic regulatory networks. + BioNetGen Language + + + BNGL + + + + + + + + + 1.25 + + + + + A Docker image is a file, comprised of multiple layers, that is used to execute code in a Docker container. An image is essentially built from the instructions for a complete and executable version of an application, which relies on the host OS kernel. + + + Docker image + + + + + + + + + + 1.25 + + + gfa + + Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology. + Graphical Fragment Assembly (GFA) 1.0 + + + + GFA 1 + + + + + + + + + + 1.25 + + + gfa + + Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology. GFA2 is an update of GFA1 which is not compatible with GFA1. + Graphical Fragment Assembly (GFA) 2.0 + + + + GFA 2 + + + + + + + + + 1.25 + + + xlsx + application/vnd.openxmlformats-officedocument.spreadsheetml.sheet + + ObjTables is a toolkit for creating re-usable datasets that are both human and machine-readable, combining the ease of spreadsheets (e.g., Excel workbooks) with the rigor of schemas (classes, their attributes, the type of each attribute, and the possible relationships between instances of classes). ObjTables consists of a format for describing schemas for spreadsheets, numerous data types for science, a syntax for indicating the class and attribute represented by each table and column in a workbook, and software for using schemas to rigorously validate, merge, split, compare, and revision datasets. + + + ObjTables + + + + + + + + + + 1.25 + contig + The CONTIG format used for output of the SOAPdenovo alignment program. It contains contig sequences generated without using mate pair information. + + + CONTIG + + + + + + + + + + 1.25 + wego + WEGO native format used by the Web Gene Ontology Annotation Plot application. Tab-delimited format with gene names and others GO IDs (columns) with one annotation record per line. + + + WEGO + + + + + + + + + + 1.25 + rpkm + Tab-delimited format for gene expression levels table, calculated as Reads Per Kilobase per Million (RPKM) mapped reads. + Gene expression levels table format + + + For example a 1kb transcript with 1000 alignments in a sample of 10 million reads (out of which 8 million reads can be mapped) will have RPKM = 1000/(1 * 8) = 125 + RPKM + + + + + + + + + 1.25 + tar + TAR archive file format generated by the Unix-based utility tar. + TAR + Tarball + tar + + + For example a 1kb transcript with 1000 alignments in a sample of 10 million reads (out of which 8 million reads can be mapped) will have RPKM = 1000/(1 * 8) = 125 + TAR format + + + + + + + + + + + 1.25 + chain + The CHAIN format describes a pairwise alignment that allow gaps in both sequences simultaneously and is used by the UCSC Genome Browser. + + + CHAIN + https://genome.ucsc.edu/goldenPath/help/chain.html + + + + + + + + + + 1.25 + net + The NET file format is used to describe the data that underlie the net alignment annotations in the UCSC Genome Browser. + + + NET + https://genome.ucsc.edu/goldenPath/help/net.html + + + + + + + + + + 1.25 + qmap + Format of QMAP files generated for methylation data from an internal BGI pipeline. + + + QMAP + + + + + + + + + + 1.25 + ga + An emerging format for high-level Galaxy workflow description. + Galaxy workflow format + GalaxyWF + ga + + + gxformat2 + https://github.com/galaxyproject/gxformat2 + + + + + + + + + + 1.25 + wmv + The proprietary native video format of various Microsoft programs such as Windows Media Player. + Windows Media Video format + Windows movie file format + + + WMV + + + + + + + + + + 1.25 + zip + ZIP is an archive file format that supports lossless data compression. + ZIP + + + A ZIP file may contain one or more files or directories that may have been compressed. + ZIP format + + + + + + + + + + + 1.25 + lsm + Zeiss' proprietary image format based on TIFF. + + + LSM files are the default data export for the Zeiss LSM series confocal microscopes (e.g. LSM 510, LSM 710). In addition to the image data, LSM files contain most imaging settings. + LSM + + + + + + + + + 1.25 + gz + gzip + GNU zip compressed file format common to Unix-based operating systems. + GNU Zip + gz + gzip + + + GZIP format + + + + + + + + + + + 1.25 + avi + Audio Video Interleaved (AVI) format is a multimedia container format for AVI files, that allows synchronous audio-with-video playback. + Audio Video Interleaved + + + AVI + + + + + + + + + + + 1.25 + trackdb + A declaration file format for UCSC browsers track dataset display charateristics. + + + TrackDB + + + + + + + + + + 1.25 + cigar + Compact Idiosyncratic Gapped Alignment Report format is a compressed (run-length encoded) pairwise alignment format. It is useful for representing long (e.g. genomic) pairwise alignments. + CIGAR + + + CIGAR format + http://wiki.bits.vib.be/index.php/CIGAR/ + + + + + + + + + + 1.25 + stl + STL is a file format native to the stereolithography CAD software created by 3D Systems. The format is used to save and share surface-rendered 3D images and also for 3D printing. + stl + + + Stereolithography format + + + + + + + + + + 1.25 + u3d + U3D (Universal 3D) is a compressed file format and data structure for 3D computer graphics. It contains 3D model information such as triangle meshes, lighting, shading, motion data, lines and points with color and structure. + Universal 3D + Universal 3D format + + + U3D + + + + + + + + + + 1.25 + tex + Bitmap image format used for storing textures. + + + Texture files can create the appearance of different surfaces and can be applied to both 2D and 3D objects. Note the file extension .tex is also used for LaTex documents which are a completely different format and they are NOT interchangeable. + Texture file format + + + + + + + + + + 1.25 + py + Format for scripts writtenin Python - a widely used high-level programming language for general-purpose programming. + Python + Python program + py + + + Python script + + + + + + + + + + 1.25 + mp4 + A digital multimedia container format most commonly used to store video and audio. + MP4 + + + MPEG-4 + + + + + + + + + + + 1.25 + pl + Format for scripts written in Perl - a family of high-level, general-purpose, interpreted, dynamic programming languages. + Perl + Perl program + pl + + + Perl script + + + + + + + + + + 1.25 + r + Format for scripts written in the R language - an open source programming language and software environment for statistical computing and graphics that is supported by the R Foundation for Statistical Computing. + R + R program + + + R script + + + + + + + + + + 1.25 + rmd + A file format for making dynamic documents (R Markdown scripts) with the R language. + + + R markdown + https://rmarkdown.rstudio.com/articles_intro.html + + + + + + + + + 1.25 + This duplicates an existing concept (http://edamontology.org/format_3549). + 1.26 + + An open file format from the Neuroimaging Informatics Technology Initiative (NIfTI) commonly used to store brain imaging data obtained using Magnetic Resonance Imaging (MRI) methods. + + + NIFTI format + true + + + + + + + + + 1.25 + pickle + Format used by Python pickle module for serializing and de-serializing a Python object structure. + + + pickle + https://docs.python.org/2/library/pickle.html + + + + + + + + + 1.25 + npy + The standard binary file format used by NumPy - a fundamental package for scientific computing with Python - for persisting a single arbitrary NumPy array on disk. The format stores all of the shape and dtype information necessary to reconstruct the array correctly. + NumPy + npy + + + NumPy format + + + + + + + + + 1.25 + repz + Format of repertoire (archive) files that can be read by SimToolbox (a MATLAB toolbox for structured illumination fluorescence microscopy) or alternatively extracted with zip file archiver software. + + + SimTools repertoire file format + https://pdfs.semanticscholar.org/5f25/f1cc6cdf2225fe22dc6fd4fc0296d486a85c.pdf + + + + + + + + + 1.25 + cfg + A configuration file used by various programs to store settings that are specific to their respective software. + + + Configuration file format + + + + + + + + + 1.25 + zst + Format used by the Zstandard real-time compression algorithm. + Zstandard compression format + Zstandard-compressed file format + zst + + + Zstandard format + https://github.com/facebook/zstd/blob/master/doc/zstd_compression_format.md + + + + + + + + + + 1.25 + m + The file format for MATLAB scripts or functions. + MATLAB + m + + + MATLAB script + + + + + + + + 1.26 + PEtab + + + A data format for specifying parameter estimation problems in systems biology. + + + + + + + + + + + + + + + + + + + + + 1.26 + + + + g.vcf + g.vcf.gz + Genomic Variant Call Format (gVCF) is a version of VCF that includes not only the positions that are variant when compared to a reference genome, but also the non-variant positions as ranges, including metrics of confidence that the positions in the range are actually non-variant e.g. minimum read-depth and genotype quality. + g.vcf + g.vcf.gz + + + gVCF + + + + + + + + + + 1.26 + + + + + + + + + + cml + Chemical Markup Language (CML) is an XML-based format for encoding detailed information about a wide range of chemical concepts. + ChemML + + + cml + + + + + + + + + + + + + + + 1.26 + + + + + + + + + cif + Crystallographic Information File (CIF) is a data exchange standard file format for Crystallographic Information and related Structural Science data. + + + cif + + + + + + + + + 1.26 + + + + + + + + + + + + json + + Format for describing the capabilities of a biosimulation tool including the modeling frameworks, simulation algorithms, and modeling formats that it supports, as well as metadata such as a list of the interfaces, programming languages, and operating systems supported by the tool; a link to download the tool; a list of the authors of the tool; and the license to the tool. + + + BioSimulators format for the specifications of biosimulation tools + + + + + + + + + 1.26 + + + + Outlines the syntax and semantics of the input and output arguments for command-line interfaces for biosimulation tools. + + + BioSimulators standard for command-line interfaces for biosimulation tools + + + + + + + + + + 1.26 + Data format derived from the standard PDB format, which enables user to incorporate parameters for charge and radius to the existing PDB data file. + + + PQR + + + + + + + + + + + 1.26 + Data format used in AutoDock 4 for storing atomic coordinates, partial atomic charges and AutoDock atom types for both receptors and ligands. + + + + PDBQT + + + + + + + + + 1.26 + + + msp + MSP is a data format for mass spectrometry data. + + + NIST Text file format for storing MS∕MS spectra (m∕z and intensity of mass peaks) along with additional annotations for each spectrum. A single MSP file can thus contain single or multiple spectra. This format is frequently used to share spectra libraries. + MSP + + + + + + + + beta12orEarlier + true + Function + A function that processes a set of inputs and results in a set of outputs, or associates arguments (inputs) with values (outputs). + Computational method + Computational operation + Computational procedure + Computational subroutine + Function (programming) + Lambda abstraction + Mathematical function + Mathematical operation + Computational tool + Process + sumo:Function + + + Special cases are: a) An operation that consumes no input (has no input arguments). Such operation is either a constant function, or an operation depending only on the underlying state. b) An operation that may modify the underlying state but has no output. c) The singular-case operation with no input or output, that still may modify the underlying state. + Operation + + + + + + + + + + + + + + + + + + + + + + + Function + Operation is a function that is computational. It typically has input(s) and output(s), which are always data. + + + + + Computational tool + Computational tool provides one or more operations. + + + + + Process + Process can have a function (as its quality/attribute), and can also perform an operation with inputs and outputs. + + + + + + + + + beta12orEarlier + Search or query a data resource and retrieve entries and / or annotation. + Database retrieval + Query + + + Query and retrieval + + + + + + + + + beta12orEarlier + beta13 + + + Search database to retrieve all relevant references to a particular entity or entry. + + Data retrieval (database cross-reference) + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Annotate an entity (typically a biological or biomedical database entity) with terms from a controlled vocabulary. + + + This is a broad concept and is used a placeholder for other, more specific concepts. + Annotation + + + + + + + + + + + + + + + beta12orEarlier + true + Generate an index of (typically a file of) biological data. + Data indexing + Database indexing + + + Indexing + + + + + + + + + beta12orEarlier + 1.6 + + + Analyse an index of biological data. + + Data index analysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Retrieve basic information about a molecular sequence. + + Annotation retrieval (sequence) + true + + + + + + + + + + beta12orEarlier + Generate a molecular sequence by some means. + Sequence generation (nucleic acid) + Sequence generation (protein) + + + Sequence generation + + + + + + + + + + beta12orEarlier + Edit or change a molecular sequence, either randomly or specifically. + + + Sequence editing + + + + + + + + + beta12orEarlier + Merge two or more (typically overlapping) molecular sequences. + Sequence splicing + Paired-end merging + Paired-end stitching + Read merging + Read stitching + + + Sequence merging + + + + + + + + + + beta12orEarlier + Convert a molecular sequence from one type to another. + + + Sequence conversion + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate sequence complexity, for example to find low-complexity regions in sequences. + + + Sequence complexity calculation + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate sequence ambiguity, for example identity regions in protein or nucleotide sequences with many ambiguity codes. + + + Sequence ambiguity calculation + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate character or word composition or frequency of a molecular sequence. + + + Sequence composition calculation + + + + + + + + + + + + + + + beta12orEarlier + Find and/or analyse repeat sequences in (typically nucleotide) sequences. + + + Repeat sequences include tandem repeats, inverted or palindromic repeats, DNA microsatellites (Simple Sequence Repeats or SSRs), interspersed repeats, maximal duplications and reverse, complemented and reverse complemented repeats etc. Repeat units can be exact or imperfect, in tandem or dispersed, of specified or unspecified length. + Repeat sequence analysis + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Discover new motifs or conserved patterns in sequences or sequence alignments (de-novo discovery). + Motif discovery + + + Motifs and patterns might be conserved or over-represented (occur with improbable frequency). + Sequence motif discovery + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Find (scan for) known motifs, patterns and regular expressions in molecular sequence(s). + Motif scanning + Sequence signature detection + Sequence signature recognition + Motif detection + Motif recognition + Motif search + Sequence motif detection + Sequence motif search + Sequence profile search + + + Sequence motif recognition + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Find motifs shared by molecular sequences. + + + Sequence motif comparison + + + + + + + + + beta12orEarlier + beta13 + + + Analyse the sequence, conformational or physicochemical properties of transcription regulatory elements in DNA sequences. + + For example transcription factor binding sites (TFBS) analysis to predict accessibility of DNA to binding factors. + Transcription regulatory sequence analysis + true + + + + + + + + + beta12orEarlier + 1.19 + + Identify common, conserved (homologous) or synonymous transcriptional regulatory motifs (transcription factor binding sites). + + + Conserved transcription regulatory sequence identification + true + + + + + + + + + beta12orEarlier + 1.18 + + + Extract, calculate or predict non-positional (physical or chemical) properties of a protein from processing a protein (3D) structure. + + + Protein property calculation (from structure) + true + + + + + + + + + beta12orEarlier + Analyse flexibility and motion in protein structure. + CG analysis + MD analysis + Protein Dynamics Analysis + Trajectory analysis + Nucleic Acid Dynamics Analysis + Protein flexibility and motion analysis + Protein flexibility prediction + Protein motion prediction + + + Use this concept for analysis of flexible and rigid residues, local chain deformability, regions undergoing conformational change, molecular vibrations or fluctuational dynamics, domain motions or other large-scale structural transitions in a protein structure. + Simulation analysis + + + + + + + + + + + + + + + + beta12orEarlier + Identify or screen for 3D structural motifs in protein structure(s). + Protein structural feature identification + Protein structural motif recognition + + + This includes conserved substructures and conserved geometry, such as spatial arrangement of secondary structure or protein backbone. Methods might use structure alignment, structural templates, searches for similar electrostatic potential and molecular surface shape, surface-mapping of phylogenetic information etc. + Structural motif discovery + + + + + + + + + + + + + + + + beta12orEarlier + Identify structural domains in a protein structure from first principles (for example calculations on structural compactness). + + + Protein domain recognition + + + + + + + + + beta12orEarlier + Analyse the architecture (spatial arrangement of secondary structure) of protein structure(s). + + + Protein architecture analysis + + + + + + + + + + + + + + + beta12orEarlier + WHATIF: SymShellFiveXML + WHATIF: SymShellOneXML + WHATIF: SymShellTenXML + WHATIF: SymShellTwoXML + WHATIF:ListContactsNormal + WHATIF:ListContactsRelaxed + WHATIF:ListSideChainContactsNormal + WHATIF:ListSideChainContactsRelaxed + Calculate or extract inter-atomic, inter-residue or residue-atom contacts, distances and interactions in protein structure(s). + + + Residue interaction calculation + + + + + + + + + + + + + + + beta12orEarlier + WHATIF:CysteineTorsions + WHATIF:ResidueTorsions + WHATIF:ResidueTorsionsBB + WHATIF:ShowTauAngle + Calculate, visualise or analyse phi/psi angles of a protein structure. + Backbone torsion angle calculation + Cysteine torsion angle calculation + Tau angle calculation + Torsion angle calculation + + + Protein geometry calculation + + + + + + + + + + beta12orEarlier + Extract, calculate or predict non-positional (physical or chemical) properties of a protein, including any non-positional properties of the molecular sequence, from processing a protein sequence or 3D structure. + Protein property rendering + Protein property calculation (from sequence) + Protein property calculation (from structure) + Protein structural property calculation + Structural property calculation + + + This includes methods to render and visualise the properties of a protein sequence, and a residue-level search for properties such as solvent accessibility, hydropathy, secondary structure, ligand-binding etc. + Protein property calculation + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Immunogen design + Predict antigenicity, allergenicity / immunogenicity, allergic cross-reactivity etc of peptides and proteins. + Antigenicity prediction + Immunogenicity prediction + B cell peptide immunogenicity prediction + Hopp and Woods plotting + MHC peptide immunogenicity prediction + + + Immunological system are cellular or humoral. In vaccine design to induces a cellular immune response, methods must search for antigens that can be recognized by the major histocompatibility complex (MHC) molecules present in T lymphocytes. If a humoral response is required, antigens for B cells must be identified. + This includes methods that generate a graphical rendering of antigenicity of a protein, such as a Hopp and Woods plot. + This is usually done in the development of peptide-specific antibodies or multi-epitope vaccines. Methods might use sequence data (for example motifs) and / or structural data. + Peptide immunogenicity prediction + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict, recognise and identify positional features in molecular sequences such as key functional sites or regions. + Sequence feature prediction + Sequence feature recognition + Motif database search + SO:0000110 + + + Look at "Protein feature detection" (http://edamontology.org/operation_3092) and "Nucleic acid feature detection" (http://edamontology.org/operation_0415) in case more specific terms are needed. + Sequence feature detection + + + + + + + + + beta12orEarlier + beta13 + + + Extract a sequence feature table from a sequence database entry. + + Data retrieval (feature table) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query the features (in a feature table) of molecular sequence(s). + + Feature table query + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Compare the feature tables of two or more molecular sequences. + Feature comparison + Feature table comparison + + + Sequence feature comparison + + + + + + + + + beta12orEarlier + beta13 + + + Display basic information about a sequence alignment. + + Data retrieval (sequence alignment) + true + + + + + + + + + + + + + + + beta12orEarlier + Analyse a molecular sequence alignment. + + + Sequence alignment analysis + + + + + + + + + + beta12orEarlier + Compare (typically by aligning) two molecular sequence alignments. + + + See also 'Sequence profile alignment'. + Sequence alignment comparison + + + + + + + + + + beta12orEarlier + Convert a molecular sequence alignment from one type to another (for example amino acid to coding nucleotide sequence). + + + Sequence alignment conversion + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) physicochemical property data of nucleic acids. + + Nucleic acid property processing + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate or predict physical or chemical properties of nucleic acid molecules, including any non-positional properties of the molecular sequence. + + + Nucleic acid property calculation + + + + + + + + + + + + + + + beta12orEarlier + Predict splicing alternatives or transcript isoforms from analysis of sequence data. + Alternative splicing analysis + Alternative splicing detection + Differential splicing analysis + Splice transcript prediction + + + Alternative splicing prediction + + + + + + + + + + + + + + + + beta12orEarlier + Detect frameshifts in DNA sequences, including frameshift sites and signals, and frameshift errors from sequencing projects. + Frameshift error detection + + + Methods include sequence alignment (if related sequences are available) and word-based sequence comparison. + Frameshift detection + + + + + + + + + beta12orEarlier + Detect vector sequences in nucleotide sequence, typically by comparison to a set of known vector sequences. + + + Vector sequence detection + + + + + + + + + + + + beta12orEarlier + Predict secondary structure of protein sequences. + Secondary structure prediction (protein) + + + Methods might use amino acid composition, local sequence information, multiple sequence alignments, physicochemical features, estimated energy content, statistical algorithms, hidden Markov models, support vector machines, kernel machines, neural networks etc. + Protein secondary structure prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict super-secondary structure of protein sequence(s). + + + Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc. + Protein super-secondary structure prediction + + + + + + + + + + beta12orEarlier + Predict and/or classify transmembrane proteins or transmembrane (helical) domains or regions in protein sequences. + + + Transmembrane protein prediction + + + + + + + + + + + + + + + beta12orEarlier + Analyse transmembrane protein(s), typically by processing sequence and / or structural data, and write an informative report for example about the protein and its transmembrane domains / regions. + + + Use this (or child) concept for analysis of transmembrane domains (buried and exposed faces), transmembrane helices, helix topology, orientation, inter-helical contacts, membrane dipping (re-entrant) loops and other secondary structure etc. Methods might use pattern discovery, hidden Markov models, sequence alignment, structural profiles, amino acid property analysis, comparison to known domains or some combination (hybrid methods). + Transmembrane protein analysis + + + + + + + + + beta12orEarlier + This is a "organisational class" not very useful for annotation per se. + 1.19 + + + + + Predict tertiary structure of a molecular (biopolymer) sequence. + + Structure prediction + true + + + + + + + + + + + + + + + + beta12orEarlier + Predict contacts, non-covalent interactions and distance (constraints) between amino acids in protein sequences. + Residue interaction prediction + Contact map prediction + Protein contact map prediction + + + Methods usually involve multiple sequence alignment analysis. + Residue contact prediction + + + + + + + + + beta12orEarlier + 1.19 + + Analyse experimental protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc. + + + Protein interaction raw data analysis + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify or predict protein-protein interactions, interfaces, binding sites etc in protein sequences. + + + Protein-protein interaction prediction (from protein sequence) + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify or predict protein-protein interactions, interfaces, binding sites etc in protein structures. + + + Protein-protein interaction prediction (from protein structure) + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a network of protein interactions. + Protein interaction network comparison + + + Protein interaction network analysis + + + + + + + + + beta12orEarlier + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + Compare two or more biological pathways or networks. + + Pathway or network comparison + true + + + + + + + + + + + + + + + + + beta12orEarlier + Predict RNA secondary structure (for example knots, pseudoknots, alternative structures etc). + RNA shape prediction + + + Methods might use RNA motifs, predicted intermolecular contacts, or RNA sequence-structure compatibility (inverse RNA folding). + RNA secondary structure prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse some aspect of RNA/DNA folding, typically by processing sequence and/or structural data. For example, compute folding energies such as minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants. + Nucleic acid folding + Nucleic acid folding modelling + Nucleic acid folding prediction + Nucleic acid folding energy calculation + + + Nucleic acid folding analysis + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on restriction enzymes or restriction enzyme sites. + + Data retrieval (restriction enzyme annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Identify genetic markers in DNA sequences. + + A genetic marker is any DNA sequence of known chromosomal location that is associated with and specific to a particular gene or trait. This includes short sequences surrounding a SNP, Sequence-Tagged Sites (STS) which are well suited for PCR amplification, a longer minisatellites sequence etc. + Genetic marker identification + true + + + + + + + + + + + + + + + + beta12orEarlier + Generate a genetic (linkage) map of a DNA sequence (typically a chromosome) showing the relative positions of genetic markers based on estimation of non-physical distances. + Functional mapping + Genetic cartography + Genetic map construction + Genetic map generation + Linkage mapping + QTL mapping + + + Mapping involves ordering genetic loci along a chromosome and estimating the physical distance between loci. A genetic map shows the relative (not physical) position of known genes and genetic markers. + This includes mapping of the genetic architecture of dynamic complex traits (functional mapping), e.g. by characterisation of the underlying quantitative trait loci (QTLs) or nucleotides (QTNs). + Genetic mapping + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse genetic linkage. + + + For example, estimate how close two genes are on a chromosome by calculating how often they are transmitted together to an offspring, ascertain whether two genes are linked and parental linkage, calculate linkage map distance etc. + Linkage analysis + + + + + + + + + + + + + + + + beta12orEarlier + Calculate codon usage statistics and create a codon usage table. + Codon usage table construction + + + Codon usage table generation + + + + + + + + + + beta12orEarlier + Compare two or more codon usage tables. + + + Codon usage table comparison + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse codon usage in molecular sequences or process codon usage data (e.g. a codon usage table). + Codon usage data analysis + Codon usage table analysis + + + Codon usage analysis + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Identify and plot third base position variability in a nucleotide sequence. + + + Base position variability plotting + + + + + + + + + beta12orEarlier + Find exact character or word matches between molecular sequences without full sequence alignment. + + + Sequence word comparison + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate a sequence distance matrix or otherwise estimate genetic distances between molecular sequences. + Phylogenetic distance matrix generation + Sequence distance calculation + Sequence distance matrix construction + + + Sequence distance matrix generation + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more molecular sequences, identify and remove redundant sequences based on some criteria. + + + Sequence redundancy removal + + + + + + + + + + + + + + + + + beta12orEarlier + Build clusters of similar sequences, typically using scores from pair-wise alignment or other comparison of the sequences. + Sequence cluster construction + Sequence cluster generation + + + The clusters may be output or used internally for some other purpose. + Sequence clustering + + + + + + + + + + + + + + + + + + beta12orEarlier + Includes methods that align sequence profiles (representing sequence alignments): ethods might perform one-to-one, one-to-many or many-to-many comparisons. See also 'Sequence alignment comparison'. + Align (identify equivalent sites within) molecular sequences. + Sequence alignment construction + Sequence alignment generation + Consensus-based sequence alignment + Constrained sequence alignment + Multiple sequence alignment (constrained) + Sequence alignment (constrained) + + + See also "Read mapping" + Sequence alignment + + + + + + + + + + beta12orEarlier + beta13 + + + Align two or more molecular sequences of different types (for example genomic DNA to EST, cDNA or mRNA). + + Hybrid sequence alignment construction + true + + + + + + + + + beta12orEarlier + Align molecular sequences using sequence and structural information. + Sequence alignment (structure-based) + + + Structure-based sequence alignment + + + + + + + + + + + + + + + + + beta12orEarlier + Includes methods that align structural (3D) profiles or templates (representing structures or structure alignments) - including methods that perform one-to-one, one-to-many or many-to-many comparisons. + Align (superimpose) molecular tertiary structures. + Structural alignment + 3D profile alignment + 3D profile-to-3D profile alignment + Structural profile alignment + + + Structure alignment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate some type of sequence profile (for example a hidden Markov model) from a sequence alignment. + Sequence profile construction + + + Sequence profile generation + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate some type of structural (3D) profile or template from a structure or structure alignment. + Structural profile construction + Structural profile generation + + + 3D profile generation + + + + + + + + + beta12orEarlier + 1.19 + + Align sequence profiles (representing sequence alignments). + + + Profile-profile alignment + true + + + + + + + + + beta12orEarlier + 1.19 + + Align structural (3D) profiles or templates (representing structures or structure alignments). + + + 3D profile-to-3D profile alignment + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Align molecular sequence(s) to sequence profile(s), or profiles to other profiles. A profile typically represents a sequence alignment. + Profile-profile alignment + Profile-to-profile alignment + Sequence-profile alignment + Sequence-to-profile alignment + + + A sequence profile typically represents a sequence alignment. Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Sequence profile alignment + + + + + + + + + beta12orEarlier + 1.19 + + Align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment). + + + Sequence-to-3D-profile alignment + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + This includes sequence-to-3D-profile alignment methods, which align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment) - methods might perform one-to-one, one-to-many or many-to-many comparisons. + Align molecular sequence to structure in 3D space (threading). + Sequence-structure alignment + Sequence-3D profile alignment + Sequence-to-3D-profile alignment + + + Use this concept for methods that evaluate sequence-structure compatibility by assessing residue interactions in 3D. Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Protein threading + + + + + + + + + + + + + + beta12orEarlier + Recognize (predict and identify) known protein structural domains or folds in protein sequence(s) which (typically) are not accompanied by any significant sequence similarity to know structures. + Domain prediction + Fold prediction + Protein domain prediction + Protein fold prediction + Protein fold recognition + + + Methods use some type of mapping between sequence and fold, for example secondary structure prediction and alignment, profile comparison, sequence properties, homologous sequence search, kernel machines etc. Domains and folds might be taken from SCOP or CATH. + Fold recognition + + + + + + + + + beta12orEarlier + (jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved. + 1.17 + + Search for and retrieve data concerning or describing some core data, as distinct from the primary data that is being described. + + + This includes documentation, general information and other metadata on entities such as databases, database entries and tools. + Metadata retrieval + true + + + + + + + + + + + + + + + beta12orEarlier + Query scientific literature, in search for articles, article data, concepts, named entities, or for statistics. + + + Literature search + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Text analysis + Process and analyse text (typically scientific literature) to extract information from it. + Literature mining + Text analytics + Text data mining + Article analysis + Literature analysis + + + Text mining + + + + + + + + + + beta12orEarlier + Perform in-silico (virtual) PCR. + + + Virtual PCR + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Design or predict oligonucleotide primers for PCR and DNA amplification etc. + PCR primer prediction + Primer design + PCR primer design (based on gene structure) + PCR primer design (for conserved primers) + PCR primer design (for gene transcription profiling) + PCR primer design (for genotyping polymorphisms) + PCR primer design (for large scale sequencing) + PCR primer design (for methylation PCRs) + Primer quality estimation + + + Primer design involves predicting or selecting primers that are specific to a provided PCR template. Primers can be designed with certain properties such as size of product desired, primer size etc. The output might be a minimal or overlapping primer set. + This includes predicting primers based on gene structure, promoters, exon-exon junctions, predicting primers that are conserved across multiple genomes or species, primers for for gene transcription profiling, for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs), for large scale sequencing, or for methylation PCRs. + PCR primer design + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict and/or optimize oligonucleotide probes for DNA microarrays, for example for transcription profiling of genes, or for genomes and gene families. + Microarray probe prediction + + + Microarray probe design + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Combine (align and merge) overlapping fragments of a DNA sequence to reconstruct the original sequence. + Metagenomic assembly + Sequence assembly editing + + + For example, assemble overlapping reads from paired-end sequencers into contigs (a contiguous sequence corresponding to read overlaps). Or assemble contigs, for example ESTs and genomic DNA fragments, depending on the detected fragment overlaps. + Sequence assembly + + + + + + + + + + beta12orEarlier + 1.16 + + Standardize or normalize microarray data. + + + Microarray data standardisation and normalisation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) SAGE, MPSS or SBS experimental data. + + Sequencing-based expression profile data processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Perform cluster analysis of expression data to identify groups with similar expression profiles, for example by clustering. + Gene expression clustering + Gene expression profile clustering + + + Expression profile clustering + + + + + + + + + beta12orEarlier + The measurement of the activity (expression) of multiple genes in a cell, tissue, sample etc., in order to get an impression of biological function. + Feature expression analysis + Functional profiling + Gene expression profile construction + Gene expression profile generation + Gene expression quantification + Gene transcription profiling + Non-coding RNA profiling + Protein profiling + RNA profiling + mRNA profiling + + + Gene expression profiling generates some sort of gene expression profile, for example from microarray data. + Gene expression profiling + + + + + + + + + + beta12orEarlier + Comparison of expression profiles. + Gene expression comparison + Gene expression profile comparison + + + Expression profile comparison + + + + + + + + + beta12orEarlier + beta12orEarlier + + Interpret (in functional terms) and annotate gene expression data. + + + Functional profiling + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse EST or cDNA sequences. + + For example, identify full-length cDNAs from EST sequences or detect potential EST antisense transcripts. + EST and cDNA sequence analysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identify and select targets for protein structural determination. + + Methods will typically navigate a graph of protein families of known structure. + Structural genomics target selection + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Includes secondary structure assignment from circular dichroism (CD) spectroscopic data, and from protein coordinate data. + Assign secondary structure from protein coordinate or experimental data. + + + Protein secondary structure assignment + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Assign a protein tertiary structure (3D coordinates), or other aspects of protein structure, from raw experimental data. + NOE assignment + Structure calculation + + + Protein structure assignment + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + WHATIF: CorrectedPDBasXML + WHATIF: UseFileDB + WHATIF: UseResidueDB + Evaluate the quality or correctness a protein three-dimensional model. + Protein model validation + Residue validation + + + Model validation might involve checks for atomic packing, steric clashes (bumps), volume irregularities, agreement with electron density maps, number of amino acid residues, percentage of residues with missing or bad atoms, irregular Ramachandran Z-scores, irregular Chi-1 / Chi-2 normality scores, RMS-Z score on bonds and angles etc. + The PDB file format has had difficulties, inconsistencies and errors. Corrections can include identifying a meaningful sequence, removal of alternate atoms, correction of nomenclature problems, removal of incomplete residues and spurious waters, addition or removal of water, modelling of missing side chains, optimisation of cysteine bonds, regularisation of bond lengths, bond angles and planarities etc. + This includes methods that calculate poor quality residues. The scoring function to identify poor quality residues may consider residues with bad atoms or atoms with high B-factor, residues in the N- or C-terminal position, adjacent to an unstructured residue, non-canonical residues, glycine and proline (or adjacent to these such residues). + Protein structure validation + + + + + + + + + + + beta12orEarlier + WHATIF: CorrectedPDBasXML + Refine (after evaluation) a model of a molecular structure (typically a protein structure) to reduce steric clashes, volume irregularities etc. + Protein model refinement + + + Molecular model refinement + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree. + Phlyogenetic tree construction + Phylogenetic reconstruction + Phylogenetic tree generation + + + Phylogenetic trees are usually constructed from a set of sequences from which an alignment (or data matrix) is calculated. + Phylogenetic inference + + + + + + + + + + + + + + + + beta12orEarlier + Analyse an existing phylogenetic tree or trees, typically to detect features or make predictions. + Phylogenetic tree analysis + Phylogenetic modelling + + + Phylgenetic modelling is the modelling of trait evolution and prediction of trait values using phylogeny as a basis. + Phylogenetic analysis + + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees. + + + For example, to produce a consensus tree, subtrees, supertrees, calculate distances between trees or test topological similarity between trees (e.g. a congruence index) etc. + Phylogenetic tree comparison + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Edit a phylogenetic tree. + + + Phylogenetic tree editing + + + + + + + + + + + + + + + beta12orEarlier + Comparison of a DNA sequence to orthologous sequences in different species and inference of a phylogenetic tree, in order to identify regulatory elements such as transcription factor binding sites (TFBS). + Phylogenetic shadowing + + + Phylogenetic shadowing is a type of footprinting where many closely related species are used. A phylogenetic 'shadow' represents the additive differences between individual sequences. By masking or 'shadowing' variable positions a conserved sequence is produced with few or none of the variations, which is then compared to the sequences of interest to identify significant regions of conservation. + Phylogenetic footprinting + + + + + + + + + + beta12orEarlier + 1.20 + + Simulate the folding of a protein. + + + Protein folding simulation + true + + + + + + + + + beta12orEarlier + 1.19 + + Predict the folding pathway(s) or non-native structural intermediates of a protein. + + + Protein folding pathway prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + Map and model the effects of single nucleotide polymorphisms (SNPs) on protein structure(s). + + + Protein SNP mapping + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict the effect of point mutation on a protein structure, in terms of strucural effects and protein folding, stability and function. + Variant functional prediction + Protein SNP mapping + Protein mutation modelling + Protein stability change prediction + + + Protein SNP mapping maps and modesl the effects of single nucleotide polymorphisms (SNPs) on protein structure(s). Methods might predict silent or pathological mutations. + Variant effect prediction + + + + + + + + + beta12orEarlier + beta12orEarlier + + Design molecules that elicit an immune response (immunogens). + + + Immunogen design + true + + + + + + + + + beta12orEarlier + 1.18 + + Predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases). + + + Zinc finger prediction + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate Km, Vmax and derived data for an enzyme reaction. + + + Enzyme kinetics calculation + + + + + + + + + beta12orEarlier + Reformat a file of data (or equivalent entity in memory). + File format conversion + File formatting + File reformatting + Format conversion + Reformatting + + + Formatting + + + + + + + + + beta12orEarlier + Test and validate the format and content of a data file. + File format validation + + + Format validation + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Visualise, plot or render (graphically) biomolecular data such as molecular sequences or structures. + Data visualisation + Rendering + Molecular visualisation + Plotting + + + This includes methods to render and visualise molecules. + Visualisation + + + + + + + + + + + + + + + + + beta12orEarlier + Search a sequence database by sequence comparison and retrieve similar sequences. Sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression. + + + This excludes direct retrieval methods (e.g. the dbfetch program). + Sequence database search + + + + + + + + + + + + + + + beta12orEarlier + Search a tertiary structure database, typically by sequence and/or structure comparison, or some other means, and retrieve structures and associated data. + + + Structure database search + + + + + + + + + beta12orEarlier + 1.8 + + Search a secondary protein database (of classification information) to assign a protein sequence(s) to a known protein family or group. + + + Protein secondary database search + true + + + + + + + + + beta12orEarlier + 1.8 + + + Screen a sequence against a motif or pattern database. + + Motif database search + true + + + + + + + + + beta12orEarlier + 1.4 + + + Search a database of sequence profiles with a query sequence. + + Sequence profile database search + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Search a database of transmembrane proteins, for example for sequence or structural similarities. + + Transmembrane protein database search + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a database and retrieve sequences with a given entry code or accession number. + + Sequence retrieval (by code) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a database and retrieve sequences containing a given keyword. + + Sequence retrieval (by keyword) + true + + + + + + + + + + + beta12orEarlier + Search a sequence database and retrieve sequences that are similar to a query sequence. + Sequence database search (by sequence) + Structure database search (by sequence) + + + Sequence similarity search + + + + + + + + + beta12orEarlier + 1.8 + + Search a sequence database and retrieve sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression. + + + Sequence database search (by motif or pattern) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database and retrieve sequences of a given amino acid composition. + + Sequence database search (by amino acid composition) + true + + + + + + + + + beta12orEarlier + Search a sequence database and retrieve sequences with a specified property, typically a physicochemical or compositional property. + + + Sequence database search (by property) + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database and retrieve sequences that are similar to a query sequence using a word-based method. + + Word-based methods (for example BLAST, gapped BLAST, MEGABLAST, WU-BLAST etc.) are usually quicker than alignment-based methods. They may or may not handle gaps. + Sequence database search (by sequence using word-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database and retrieve sequences that are similar to a query sequence using a sequence profile-based method, or with a supplied profile as query. + + This includes tools based on PSI-BLAST. + Sequence database search (by sequence using profile-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database for sequences that are similar to a query sequence using a local alignment-based method. + + This includes tools based on the Smith-Waterman algorithm or FASTA. + Sequence database search (by sequence using local alignment-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search sequence(s) or a sequence database for sequences that are similar to a query sequence using a global alignment-based method. + + This includes tools based on the Needleman and Wunsch algorithm. + Sequence database search (by sequence using global alignment-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a DNA database (for example a database of conserved sequence tags) for matches to Sequence-Tagged Site (STS) primer sequences. + + STSs are genetic markers that are easily detected by the polymerase chain reaction (PCR) using specific primers. + Sequence database search (by sequence for primer sequences) + true + + + + + + + + + beta12orEarlier + 1.6 + + Search sequence(s) or a sequence database for sequences which match a set of peptide masses, for example a peptide mass fingerprint from mass spectrometry. + + + Sequence database search (by molecular weight) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search sequence(s) or a sequence database for sequences of a given isoelectric point. + + Sequence database search (by isoelectric point) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a tertiary structure database and retrieve entries with a given entry code or accession number. + + Structure retrieval (by code) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a tertiary structure database and retrieve entries containing a given keyword. + + Structure retrieval (by keyword) + true + + + + + + + + + beta12orEarlier + 1.8 + + Search a tertiary structure database and retrieve structures with a sequence similar to a query sequence. + + + Structure database search (by sequence) + true + + + + + + + + + + beta12orEarlier + Search a database of molecular structure and retrieve structures that are similar to a query structure. + Structure database search (by structure) + Structure retrieval by structure + + + Structural similarity search + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Annotate a molecular sequence record with terms from a controlled vocabulary. + + + Sequence annotation + + + + + + + + + + beta12orEarlier + Annotate a genome sequence with terms from a controlled vocabulary. + Functional genome annotation + Metagenome annotation + Structural genome annotation + + + Genome annotation + + + + + + + + + beta12orEarlier + Generate the reverse and / or complement of a nucleotide sequence. + Nucleic acid sequence reverse and complement + Reverse / complement + Reverse and complement + + + Reverse complement + + + + + + + + + + beta12orEarlier + Generate a random sequence, for example, with a specific character composition. + + + Random sequence generation + + + + + + + + + + + + + + + + beta12orEarlier + Generate digest fragments for a nucleotide sequence containing restriction sites. + Nucleic acid restriction digest + + + Restriction digest + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + This is often followed by calculation of protein fragment masses (http://edamontology.org/operation_0398). + Cleave a protein sequence into peptide fragments (corresponding to enzymatic or chemical cleavage). + + + Protein sequence cleavage + + + + + + + + + beta12orEarlier + Mutate a molecular sequence a specified amount or shuffle it to produce a randomised sequence with the same overall composition. + + + Sequence mutation and randomisation + + + + + + + + + beta12orEarlier + Mask characters in a molecular sequence (replacing those characters with a mask character). + + + For example, SNPs or repeats in a DNA sequence might be masked. + Sequence masking + + + + + + + + + beta12orEarlier + Cut (remove) characters or a region from a molecular sequence. + + + Sequence cutting + + + + + + + + + beta12orEarlier + Create (or remove) restriction sites in sequences, for example using silent mutations. + + + Restriction site creation + + + + + + + + + + + + + + + beta12orEarlier + Translate a DNA sequence into protein. + + + DNA translation + + + + + + + + + + + + + + + beta12orEarlier + Transcribe a nucleotide sequence into mRNA sequence(s). + + + DNA transcription + + + + + + + + + beta12orEarlier + 1.8 + + Calculate base frequency or word composition of a nucleotide sequence. + + + Sequence composition calculation (nucleic acid) + true + + + + + + + + + beta12orEarlier + 1.8 + + Calculate amino acid frequency or word composition of a protein sequence. + + + Sequence composition calculation (protein) + true + + + + + + + + + + beta12orEarlier + Find (and possibly render) short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences. + + + Repeat sequence detection + + + + + + + + + + beta12orEarlier + Analyse repeat sequence organisation such as periodicity. + + + Repeat sequence organisation analysis + + + + + + + + + beta12orEarlier + 1.12 + + Analyse the hydrophobic, hydrophilic or charge properties of a protein structure. + + + Protein hydropathy calculation (from structure) + true + + + + + + + + + + + + + + + beta12orEarlier + WHATIF:AtomAccessibilitySolvent + WHATIF:AtomAccessibilitySolventPlus + Calculate solvent accessible or buried surface areas in protein or other molecular structures. + Protein solvent accessibility calculation + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Accessible surface calculation + + + + + + + + + beta12orEarlier + 1.12 + + Identify clusters of hydrophobic or charged residues in a protein structure. + + + Protein hydropathy cluster calculation + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate whether a protein structure has an unusually large net charge (dipole moment). + + + Protein dipole moment calculation + + + + + + + + + beta12orEarlier + WHATIF:AtomAccessibilityMolecular + WHATIF:AtomAccessibilityMolecularPlus + WHATIF:ResidueAccessibilityMolecular + WHATIF:ResidueAccessibilitySolvent + WHATIF:ResidueAccessibilityVacuum + WHATIF:ResidueAccessibilityVacuumMolecular + WHATIF:TotAccessibilityMolecular + WHATIF:TotAccessibilitySolvent + Calculate the molecular surface area in proteins and other macromolecules. + Protein atom surface calculation + Protein residue surface calculation + Protein surface and interior calculation + Protein surface calculation + + + Molecular surface calculation + + + + + + + + + beta12orEarlier + 1.12 + + Identify or predict catalytic residues, active sites or other ligand-binding sites in protein structures. + + + Protein binding site prediction (from structure) + true + + + + + + + + + + + + + + + beta12orEarlier + Analyse the interaction of protein with nucleic acids, e.g. RNA or DNA-binding sites, interfaces etc. + Protein-nucleic acid binding site analysis + Protein-DNA interaction analysis + Protein-RNA interaction analysis + + + Protein-nucleic acid interaction analysis + + + + + + + + + beta12orEarlier + Decompose a structure into compact or globular fragments (protein peeling). + + + Protein peeling + + + + + + + + + + + + + + + beta12orEarlier + Calculate a matrix of distance between residues (for example the C-alpha atoms) in a protein structure. + + + Protein distance matrix calculation + + + + + + + + + + + + + + + beta12orEarlier + Calculate a residue contact map (typically all-versus-all inter-residue contacts) for a protein structure. + Protein contact map calculation + + + Contact map calculation + + + + + + + + + + + + + + + beta12orEarlier + Calculate clusters of contacting residues in protein structures. + + + This includes for example clusters of hydrophobic or charged residues, or clusters of contacting residues which have a key structural or functional role. + Residue cluster calculation + + + + + + + + + + + + + + + beta12orEarlier + WHATIF:HasHydrogenBonds + WHATIF:ShowHydrogenBonds + WHATIF:ShowHydrogenBondsM + Identify potential hydrogen bonds between amino acids and other groups. + + + The output might include the atoms involved in the bond, bond geometric parameters and bond enthalpy. + Hydrogen bond calculation + + + + + + + + + beta12orEarlier + 1.12 + + + Calculate non-canonical atomic interactions in protein structures. + + Residue non-canonical interaction detection + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate a Ramachandran plot of a protein structure. + + + Ramachandran plot calculation + + + + + + + + + + beta12orEarlier + 1.22 + + Validate a Ramachandran plot of a protein structure. + + + Ramachandran plot validation + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate the molecular weight of a protein sequence or fragments. + Peptide mass calculation + + + Protein molecular weight calculation + + + + + + + + + + + + + + + beta12orEarlier + Predict extinction coefficients or optical density of a protein sequence. + + + Protein extinction coefficient calculation + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate pH-dependent properties from pKa calculations of a protein sequence. + Protein pH-dependent property calculation + + + Protein pKa calculation + + + + + + + + + + beta12orEarlier + 1.12 + + Hydropathy calculation on a protein sequence. + + + Protein hydropathy calculation (from sequence) + true + + + + + + + + + + + + + + + + beta12orEarlier + Plot a protein titration curve. + + + Protein titration curve plotting + + + + + + + + + + + + + + + + beta12orEarlier + Calculate isoelectric point of a protein sequence. + + + Protein isoelectric point calculation + + + + + + + + + + + + + + + beta12orEarlier + Estimate hydrogen exchange rate of a protein sequence. + + + Protein hydrogen exchange rate calculation + + + + + + + + + beta12orEarlier + Calculate hydrophobic or hydrophilic / charged regions of a protein sequence. + + + Protein hydrophobic region calculation + + + + + + + + + + + + + + + beta12orEarlier + Calculate aliphatic index (relative volume occupied by aliphatic side chains) of a protein. + + + Protein aliphatic index calculation + + + + + + + + + + + + + + + + beta12orEarlier + Calculate the hydrophobic moment of a peptide sequence and recognize amphiphilicity. + + + Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation. + Protein hydrophobic moment plotting + + + + + + + + + + + + + + + beta12orEarlier + Predict the stability or globularity of a protein sequence, whether it is intrinsically unfolded etc. + + + Protein globularity prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict the solubility or atomic solvation energy of a protein sequence. + + + Protein solubility prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict crystallizability of a protein sequence. + + + Protein crystallizability prediction + + + + + + + + + beta12orEarlier + (jison)Too fine-grained. + 1.17 + + Detect or predict signal peptides (and typically predict subcellular localisation) of eukaryotic proteins. + + + Protein signal peptide detection (eukaryotes) + true + + + + + + + + + beta12orEarlier + (jison)Too fine-grained. + 1.17 + + Detect or predict signal peptides (and typically predict subcellular localisation) of bacterial proteins. + + + Protein signal peptide detection (bacteria) + true + + + + + + + + + beta12orEarlier + 1.12 + + Predict MHC class I or class II binding peptides, promiscuous binding peptides, immunogenicity etc. + + + MHC peptide immunogenicity prediction + true + + + + + + + + + beta12orEarlier + 1.6 + + + Predict, recognise and identify positional features in protein sequences such as functional sites or regions and secondary structure. + + Methods typically involve scanning for known motifs, patterns and regular expressions. + Protein feature prediction (from sequence) + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict, recognise and identify features in nucleotide sequences such as functional sites or regions, typically by scanning for known motifs, patterns and regular expressions. + Sequence feature detection (nucleic acid) + Nucleic acid feature prediction + Nucleic acid feature recognition + Nucleic acid site detection + Nucleic acid site prediction + Nucleic acid site recognition + + + Methods typically involve scanning for known motifs, patterns and regular expressions. + This is placeholder but does not comprehensively include all child concepts - please inspect other concepts under "Nucleic acid sequence analysis" for example "Gene prediction", for other feature detection operations. + Nucleic acid feature detection + + + + + + + + + + + + + + + + beta12orEarlier + Predict antigenic determinant sites (epitopes) in protein sequences. + Antibody epitope prediction + Epitope prediction + B cell epitope mapping + B cell epitope prediction + Epitope mapping (MHC Class I) + Epitope mapping (MHC Class II) + T cell epitope mapping + T cell epitope prediction + + + Epitope mapping is commonly done during vaccine design. + Epitope mapping + + + + + + + + + + + + + + + beta12orEarlier + Predict post-translation modification sites in protein sequences. + PTM analysis + PTM prediction + PTM site analysis + Post-translation modification site prediction + Post-translational modification analysis + PTM site prediction + Protein post-translation modification site prediction + Acetylation prediction + Acetylation site prediction + Dephosphorylation prediction + Dephosphorylation site prediction + GPI anchor prediction + GPI anchor site prediction + GPI modification prediction + GPI modification site prediction + Glycosylation prediction + Glycosylation site prediction + Hydroxylation prediction + Hydroxylation site prediction + Methylation prediction + Methylation site prediction + N-myristoylation prediction + N-myristoylation site prediction + N-terminal acetylation prediction + N-terminal acetylation site prediction + N-terminal myristoylation prediction + N-terminal myristoylation site prediction + Palmitoylation prediction + Palmitoylation site prediction + Phosphoglycerylation prediction + Phosphoglycerylation site prediction + Phosphorylation prediction + Phosphorylation site prediction + Phosphosite localization + Prenylation prediction + Prenylation site prediction + Pupylation prediction + Pupylation site prediction + S-nitrosylation prediction + S-nitrosylation site prediction + S-sulfenylation prediction + S-sulfenylation site prediction + Succinylation prediction + Succinylation site prediction + Sulfation prediction + Sulfation site prediction + Sumoylation prediction + Sumoylation site prediction + Tyrosine nitration prediction + Tyrosine nitration site prediction + Ubiquitination prediction + Ubiquitination site prediction + + + Methods might predict sites of methylation, N-terminal myristoylation, N-terminal acetylation, sumoylation, palmitoylation, phosphorylation, sulfation, glycosylation, glycosylphosphatidylinositol (GPI) modification sites (GPI lipid anchor signals) etc. + Post-translational modification site prediction + + + + + + + + + + + + + + + + beta12orEarlier + Detect or predict signal peptides and signal peptide cleavage sites in protein sequences. + + + Methods might use sequence motifs and features, amino acid composition, profiles, machine-learned classifiers, etc. + Protein signal peptide detection + + + + + + + + + beta12orEarlier + 1.12 + + Predict catalytic residues, active sites or other ligand-binding sites in protein sequences. + + + Protein binding site prediction (from sequence) + true + + + + + + + + + beta12orEarlier + Predict or detect RNA and DNA-binding binding sites in protein sequences. + Protein-nucleic acid binding detection + Protein-nucleic acid binding prediction + Protein-nucleic acid binding site detection + Protein-nucleic acid binding site prediction + Zinc finger prediction + + + This includes methods that predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases). + Nucleic acids-binding site prediction + + + + + + + + + beta12orEarlier + 1.20 + + Predict protein sites that are key to protein folding, such as possible sites of nucleation or stabilisation. + + + Protein folding site prediction + true + + + + + + + + + + + + + + + beta12orEarlier + Detect or predict cleavage sites (enzymatic or chemical) in protein sequences. + + + Protein cleavage site prediction + + + + + + + + + beta12orEarlier + 1.8 + + Predict epitopes that bind to MHC class I molecules. + + + Epitope mapping (MHC Class I) + true + + + + + + + + + beta12orEarlier + 1.8 + + Predict epitopes that bind to MHC class II molecules. + + + Epitope mapping (MHC Class II) + true + + + + + + + + + beta12orEarlier + 1.12 + + Detect, predict and identify whole gene structure in DNA sequences. This includes protein coding regions, exon-intron structure, regulatory regions etc. + + + Whole gene prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + Detect, predict and identify genetic elements such as promoters, coding regions, splice sites, etc in DNA sequences. + + + Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc. + Gene component prediction + true + + + + + + + + + beta12orEarlier + Detect or predict transposons, retrotransposons / retrotransposition signatures etc. + + + Transposon prediction + + + + + + + + + beta12orEarlier + Detect polyA signals in nucleotide sequences. + PolyA detection + PolyA prediction + PolyA signal prediction + Polyadenylation signal detection + Polyadenylation signal prediction + + + PolyA signal detection + + + + + + + + + + + + + + + beta12orEarlier + Detect quadruplex-forming motifs in nucleotide sequences. + Quadruplex structure prediction + + + Quadruplex (4-stranded) structures are formed by guanine-rich regions and are implicated in various important biological processes and as therapeutic targets. + Quadruplex formation site detection + + + + + + + + + + + + + + + beta12orEarlier + Find CpG rich regions in a nucleotide sequence or isochores in genome sequences. + CpG island and isochores detection + CpG island and isochores rendering + + + An isochore is long region (> 3 KB) of DNA with very uniform GC content, in contrast to the rest of the genome. Isochores tend tends to have more genes, higher local melting or denaturation temperatures, and different flexibility. Methods might calculate fractional GC content or variation of GC content, predict methylation status of CpG islands etc. This includes methods that visualise CpG rich regions in a nucleotide sequence, for example plot isochores in a genome sequence. + CpG island and isochore detection + + + + + + + + + + + + + + + beta12orEarlier + Find and identify restriction enzyme cleavage sites (restriction sites) in (typically) DNA sequences, for example to generate a restriction map. + + + Restriction site recognition + + + + + + + + + + beta12orEarlier + Identify or predict nucleosome exclusion sequences (nucleosome free regions) in DNA. + Nucleosome exclusion sequence prediction + Nucleosome formation sequence prediction + + + Nucleosome position prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify, predict or analyse splice sites in nucleotide sequences. + Splice prediction + + + Methods might require a pre-mRNA or genomic DNA sequence. + Splice site prediction + + + + + + + + + beta12orEarlier + 1.19 + + Predict whole gene structure using a combination of multiple methods to achieve better predictions. + + + Integrated gene prediction + true + + + + + + + + + beta12orEarlier + Find operons (operators, promoters and genes) in bacteria genes. + + + Operon prediction + + + + + + + + + beta12orEarlier + Predict protein-coding regions (CDS or exon) or open reading frames in nucleotide sequences. + ORF finding + ORF prediction + + + Coding region prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict selenocysteine insertion sequence (SECIS) in a DNA sequence. + Selenocysteine insertion sequence (SECIS) prediction + + + SECIS elements are around 60 nucleotides in length with a stem-loop structure directs the cell to translate UGA codons as selenocysteines. + SECIS element prediction + + + + + + + + + + + + + + + beta12orEarlier + This includes comparative genomics approaches that identify common, conserved (homologous) or synonymous transcriptional regulatory elements. For example cross-species comparison of transcription factor binding sites (TFBS). Methods might analyse co-regulated or co-expressed genes, or sets of oppositely expressed genes. + Identify or predict transcriptional regulatory motifs, patterns, elements or regions in DNA sequences. + Regulatory element prediction + Transcription regulatory element prediction + Conserved transcription regulatory sequence identification + Translational regulatory element prediction + + + This includes promoters, enhancers, silencers and boundary elements / insulators, regulatory protein or transcription factor binding sites etc. Methods might be specific to a particular genome and use motifs, word-based / grammatical methods, position-specific frequency matrices, discriminative pattern analysis etc. + Transcriptional regulatory element prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict translation initiation sites, possibly by searching a database of sites. + + + Translation initiation site prediction + + + + + + + + + beta12orEarlier + Identify or predict whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in DNA sequences. + + + Methods might recognize CG content, CpG islands, splice sites, polyA signals etc. + Promoter prediction + + + + + + + + + beta12orEarlier + Identify, predict or analyse cis-regulatory elements in DNA sequences (TATA box, Pribnow box, SOS box, CAAT box, CCAAT box, operator etc.) or in RNA sequences (e.g. riboswitches). + Transcriptional regulatory element prediction (DNA-cis) + Transcriptional regulatory element prediction (RNA-cis) + + + Cis-regulatory elements (cis-elements) regulate the expression of genes located on the same strand from which the element was transcribed. Cis-elements are found in the 5' promoter region of the gene, in an intron, or in the 3' untranslated region. Cis-elements are often binding sites of one or more trans-acting factors. They also occur in RNA sequences, e.g. a riboswitch is a region of an mRNA molecule that bind a small target molecule that regulates the gene's activity. + cis-regulatory element prediction + + + + + + + + + beta12orEarlier + 1.19 + + Identify, predict or analyse cis-regulatory elements (for example riboswitches) in RNA sequences. + + + Transcriptional regulatory element prediction (RNA-cis) + true + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict functional RNA sequences with a gene regulatory role (trans-regulatory elements) or targets. + Functional RNA identification + Transcriptional regulatory element prediction (trans) + + + Trans-regulatory elements regulate genes distant from the gene from which they were transcribed. + trans-regulatory element prediction + + + + + + + + + beta12orEarlier + Identify matrix/scaffold attachment regions (MARs/SARs) in DNA sequences. + MAR/SAR prediction + Matrix/scaffold attachment site prediction + + + MAR/SAR sites often flank a gene or gene cluster and are found nearby cis-regulatory sequences. They might contribute to transcription regulation. + S/MAR prediction + + + + + + + + + beta12orEarlier + Identify or predict transcription factor binding sites in DNA sequences. + + + Transcription factor binding site prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict exonic splicing enhancers (ESE) in exons. + + + An exonic splicing enhancer (ESE) is 6-base DNA sequence motif in an exon that enhances or directs splicing of pre-mRNA or hetero-nuclear RNA (hnRNA) into mRNA. + Exonic splicing enhancer prediction + + + + + + + + + + beta12orEarlier + Evaluate molecular sequence alignment accuracy. + Sequence alignment quality evaluation + + + Evaluation might be purely sequence-based or use structural information. + Sequence alignment validation + + + + + + + + + beta12orEarlier + Analyse character conservation in a molecular sequence alignment, for example to derive a consensus sequence. + Residue conservation analysis + + + Use this concept for methods that calculate substitution rates, estimate relative site variability, identify sites with biased properties, derive a consensus sequence, or identify highly conserved or very poorly conserved sites, regions, blocks etc. + Sequence alignment analysis (conservation) + + + + + + + + + + beta12orEarlier + Analyse correlations between sites in a molecular sequence alignment. + + + This is typically done to identify possible covarying positions and predict contacts or structural constraints in protein structures. + Sequence alignment analysis (site correlation) + + + + + + + + + beta12orEarlier + Detects chimeric sequences (chimeras) from a sequence alignment. + Chimeric sequence detection + + + A chimera includes regions from two or more phylogenetically distinct sequences. They are usually artifacts of PCR and are thought to occur when a prematurely terminated amplicon reanneals to another DNA strand and is subsequently copied to completion in later PCR cycles. + Chimera detection + + + + + + + + + beta12orEarlier + Detect recombination (hotspots and coldspots) and identify recombination breakpoints in a sequence alignment. + Sequence alignment analysis (recombination detection) + + + Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on. + Recombination detection + + + + + + + + + beta12orEarlier + Identify insertion, deletion and duplication events from a sequence alignment. + Indel discovery + Sequence alignment analysis (indel detection) + + + Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on. + Indel detection + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Predict nucleosome formation potential of DNA sequences. + + Nucleosome formation potential prediction + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate a thermodynamic property of DNA or DNA/RNA, such as melting temperature, enthalpy and entropy. + + + Nucleic acid thermodynamic property calculation + + + + + + + + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA melting profile. + + + A melting profile is used to visualise and analyse partly melted DNA conformations. + Nucleic acid melting profile plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA stitch profile. + + + A stitch profile represents the alternative conformations that partly melted DNA can adopt in a temperature range. + Nucleic acid stitch profile plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA melting curve. + + + Nucleic acid melting curve plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA probability profile. + + + Nucleic acid probability profile plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA temperature profile. + + + Nucleic acid temperature profile plotting + + + + + + + + + + + + + + + beta12orEarlier + Calculate curvature and flexibility / stiffness of a nucleotide sequence. + + + This includes properties such as. + Nucleic acid curvature calculation + + + + + + + + + beta12orEarlier + Identify or predict microRNA sequences (miRNA) and precursors or microRNA targets / binding sites in a DNA sequence. + miRNA prediction + microRNA detection + microRNA target detection + + + miRNA target prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict tRNA genes in genomic sequences (tRNA). + + + tRNA gene prediction + + + + + + + + + + + + + + + beta12orEarlier + Assess binding specificity of putative siRNA sequence(s), for example for a functional assay, typically with respect to designing specific siRNA sequences. + + + siRNA binding specificity prediction + + + + + + + + + beta12orEarlier + 1.18 + + Predict secondary structure of protein sequence(s) using multiple methods to achieve better predictions. + + + Protein secondary structure prediction (integrated) + true + + + + + + + + + beta12orEarlier + Predict helical secondary structure of protein sequences. + + + Protein secondary structure prediction (helices) + + + + + + + + + beta12orEarlier + Predict turn structure (for example beta hairpin turns) of protein sequences. + + + Protein secondary structure prediction (turns) + + + + + + + + + beta12orEarlier + Predict open coils, non-regular secondary structure and intrinsically disordered / unstructured regions of protein sequences. + + + Protein secondary structure prediction (coils) + + + + + + + + + beta12orEarlier + Predict cysteine bonding state and disulfide bond partners in protein sequences. + + + Disulfide bond prediction + + + + + + + + + beta12orEarlier + Not sustainable to have protein type-specific concepts. + 1.19 + + Predict G protein-coupled receptors (GPCR). + + + GPCR prediction + true + + + + + + + + + beta12orEarlier + Not sustainable to have protein type-specific concepts. + 1.19 + + Analyse G-protein coupled receptor proteins (GPCRs). + + + GPCR analysis + true + + + + + + + + + + + + + + + + + beta12orEarlier + This includes methods that predict the folding pathway(s) or non-native structural intermediates of a protein. + Predict tertiary structure (backbone and side-chain conformation) of protein sequences. + Protein folding pathway prediction + + + Protein structure prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Predict structure of DNA or RNA. + + + Methods might identify thermodynamically stable or evolutionarily conserved structures. + Nucleic acid structure prediction + + + + + + + + + + beta12orEarlier + Predict tertiary structure of protein sequence(s) without homologs of known structure. + de novo structure prediction + + + Ab initio structure prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Build a three-dimensional protein model based on known (for example homologs) structures. + Comparative modelling + Homology modelling + Homology structure modelling + Protein structure comparative modelling + + + The model might be of a whole, part or aspect of protein structure. Molecular modelling methods might use sequence-structure alignment, structural templates, molecular dynamics, energy minimisation etc. + Protein modelling + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Model the structure of a protein in complex with a small molecule or another macromolecule. + Docking simulation + Macromolecular docking + + + This includes protein-protein interactions, protein-nucleic acid, protein-ligand binding etc. Methods might predict whether the molecules are likely to bind in vivo, their conformation when bound, the strength of the interaction, possible mutations to achieve bonding and so on. + Molecular docking + + + + + + + + + + + beta12orEarlier + Model protein backbone conformation. + Protein modelling (backbone) + Design optimization + Epitope grafting + Scaffold search + Scaffold selection + + + Methods might require a preliminary C(alpha) trace. + Scaffold selection, scaffold search, epitope grafting and design optimization are stages of backbone modelling done during rational vaccine design. + Backbone modelling + + + + + + + + + beta12orEarlier + Model, analyse or edit amino acid side chain conformation in protein structure, optimize side-chain packing, hydrogen bonding etc. + Protein modelling (side chains) + Antibody optimisation + Antigen optimisation + Antigen resurfacing + Rotamer likelihood prediction + + + Antibody optimisation is to optimize the antibody-interacting surface of the antigen (epitope). Antigen optimisation is to optimize the antigen-interacting surface of the antibody (paratope). Antigen resurfacing is to resurface the antigen by varying the sequence of non-epitope regions. + Methods might use a residue rotamer library. + This includes rotamer likelihood prediction: the prediction of rotamer likelihoods for all 20 amino acid types at each position in a protein structure, where output typically includes, for each residue position, the likelihoods for the 20 amino acid types with estimated reliability of the 20 likelihoods. + Side chain modelling + + + + + + + + + beta12orEarlier + Model loop conformation in protein structures. + Protein loop modelling + Protein modelling (loops) + + + Loop modelling + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Model protein-ligand (for example protein-peptide) binding using comparative modelling or other techniques. + Ligand-binding simulation + Protein-peptide docking + + + Methods aim to predict the position and orientation of a ligand bound to a protein receptor or enzyme. + Virtual screening is used in drug discovery to search libraries of small molecules in order to identify those molecules which are most likely to bind to a drug target (typically a protein receptor or enzyme). + Protein-ligand docking + + + + + + + + + + + + + + + + beta12orEarlier + Predict or optimise RNA sequences (sequence pools) with likely secondary and tertiary structure for in vitro selection. + Nucleic acid folding family identification + Structured RNA prediction and optimisation + + + RNA inverse folding + + + + + + + + + beta12orEarlier + Find single nucleotide polymorphisms (SNPs) - single nucleotide change in base positions - between sequences. Typically done for sequences from a high-throughput sequencing experiment that differ from a reference genome and which might, especially by reference to population frequency or functional data, indicate a polymorphism. + SNP calling + SNP discovery + Single nucleotide polymorphism detection + + + This includes functional SNPs for large-scale genotyping purposes, disease-associated non-synonymous SNPs etc. + SNP detection + + + + + + + + + + + + + + + beta12orEarlier + Generate a physical (radiation hybrid) map of genetic markers in a DNA sequence using provided radiation hybrid (RH) scores for one or more markers. + + + Radiation Hybrid Mapping + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Map the genetic architecture of dynamic complex traits. + + This can involve characterisation of the underlying quantitative trait loci (QTLs) or nucleotides (QTNs). + Functional mapping + true + + + + + + + + + + + + + + + beta12orEarlier + Infer haplotypes, either alleles at multiple loci that are transmitted together on the same chromosome, or a set of single nucleotide polymorphisms (SNPs) on a single chromatid that are statistically associated. + Haplotype inference + Haplotype map generation + Haplotype reconstruction + + + Haplotype inference can help in population genetic studies and the identification of complex disease genes, , and is typically based on aligned single nucleotide polymorphism (SNP) fragments. Haplotype comparison is a useful way to characterize the genetic variation between individuals. An individual's haplotype describes which nucleotide base occurs at each position for a set of common SNPs. Tools might use combinatorial functions (for example parsimony) or a likelihood function or model with optimisation such as minimum error correction (MEC) model, expectation-maximisation algorithm (EM), genetic algorithm or Markov chain Monte Carlo (MCMC). + Haplotype mapping + + + + + + + + + + + + + + + beta12orEarlier + Calculate linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome). + + + Linkage disequilibrium is identified where a combination of alleles (or genetic markers) occurs more or less frequently in a population than expected by chance formation of haplotypes. + Linkage disequilibrium calculation + + + + + + + + + + + + + + + + beta12orEarlier + Predict genetic code from analysis of codon usage data. + + + Genetic code prediction + + + + + + + + + + + + + + + + beta12orEarlier + Render a representation of a distribution that consists of group of data points plotted on a simple scale. + Categorical plot plotting + Dotplot plotting + + + Dot plots are useful when having not too many (e.g. 20) data points for each category. Example: draw a dotplot of sequence similarities identified from word-matching or character comparison. + Dot plot plotting + + + + + + + + + + + + + + + + beta12orEarlier + Align exactly two molecular sequences. + Pairwise alignment + + + Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Pairwise sequence alignment + + + + + + + + + + beta12orEarlier + Align more than two molecular sequences. + Multiple alignment + + + This includes methods that use an existing alignment, for example to incorporate sequences into an alignment, or combine several multiple alignments into a single, improved alignment. + Multiple sequence alignment + + + + + + + + + + beta12orEarlier + 1.6 + + + + Locally align exactly two molecular sequences. + + Local alignment methods identify regions of local similarity. + Pairwise sequence alignment generation (local) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Globally align exactly two molecular sequences. + + Global alignment methods identify similarity across the entire length of the sequences. + Pairwise sequence alignment generation (global) + true + + + + + + + + + beta12orEarlier + Locally align two or more molecular sequences. + Local sequence alignment + Sequence alignment (local) + Smith-Waterman + + + Local alignment methods identify regions of local similarity. + Local alignment + + + + + + + + + + beta12orEarlier + Globally align two or more molecular sequences. + Global sequence alignment + Sequence alignment (global) + + + Global alignment methods identify similarity across the entire length of the sequences. + Global alignment + + + + + + + + + + beta12orEarlier + 1.19 + + Align two or more molecular sequences with user-defined constraints. + + + Constrained sequence alignment + true + + + + + + + + + beta12orEarlier + 1.16 + + Align two or more molecular sequences using multiple methods to achieve higher quality. + + + Consensus-based sequence alignment + true + + + + + + + + + + + + + + + beta12orEarlier + Align multiple sequences using relative gap costs calculated from neighbors in a supplied phylogenetic tree. + Multiple sequence alignment (phylogenetic tree-based) + Multiple sequence alignment construction (phylogenetic tree-based) + Phylogenetic tree-based multiple sequence alignment construction + Sequence alignment (phylogenetic tree-based) + Sequence alignment generation (phylogenetic tree-based) + + + This is supposed to give a more biologically meaningful alignment than standard alignments. + Tree-based sequence alignment + + + + + + + + + beta12orEarlier + 1.6 + + + Align molecular secondary structure (represented as a 1D string). + + Secondary structure alignment generation + true + + + + + + + + + beta12orEarlier + 1.18 + + Align protein secondary structures. + + + Protein secondary structure alignment generation + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Align RNA secondary structures. + RNA secondary structure alignment construction + RNA secondary structure alignment generation + Secondary structure alignment construction (RNA) + + + RNA secondary structure alignment + + + + + + + + + beta12orEarlier + Align (superimpose) exactly two molecular tertiary structures. + Structure alignment (pairwise) + Pairwise protein structure alignment + + + Pairwise structure alignment + + + + + + + + + beta12orEarlier + Align (superimpose) more than two molecular tertiary structures. + Structure alignment (multiple) + Multiple protein structure alignment + + + This includes methods that use an existing alignment. + Multiple structure alignment + + + + + + + + + beta12orEarlier + beta13 + + + Align protein tertiary structures. + + Structure alignment (protein) + true + + + + + + + + + beta12orEarlier + beta13 + + + Align RNA tertiary structures. + + Structure alignment (RNA) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Locally align (superimpose) exactly two molecular tertiary structures. + + Local alignment methods identify regions of local similarity, common substructures etc. + Pairwise structure alignment generation (local) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Globally align (superimpose) exactly two molecular tertiary structures. + + Global alignment methods identify similarity across the entire structures. + Pairwise structure alignment generation (global) + true + + + + + + + + + beta12orEarlier + Locally align (superimpose) two or more molecular tertiary structures. + Structure alignment (local) + Local protein structure alignment + + + Local alignment methods identify regions of local similarity, common substructures etc. + Local structure alignment + + + + + + + + + beta12orEarlier + Globally align (superimpose) two or more molecular tertiary structures. + Structure alignment (global) + Global protein structure alignment + + + Global alignment methods identify similarity across the entire structures. + Global structure alignment + + + + + + + + + beta12orEarlier + 1.16 + + + + Align exactly two molecular profiles. + + Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Profile-profile alignment (pairwise) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Align two or more molecular profiles. + + Sequence alignment generation (multiple profile) + true + + + + + + + + + beta12orEarlier + 1.16 + + + + + Align exactly two molecular Structural (3D) profiles. + + 3D profile-to-3D profile alignment (pairwise) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + + Align two or more molecular 3D profiles. + + Structural profile alignment generation (multiple) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search and retrieve names of or documentation on bioinformatics tools, for example by keyword or which perform a particular function. + + Data retrieval (tool metadata) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search and retrieve names of or documentation on bioinformatics databases or query terms, for example by keyword. + + Data retrieval (database metadata) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for large scale sequencing. + + + PCR primer design (for large scale sequencing) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs). + + + PCR primer design (for genotyping polymorphisms) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for gene transcription profiling. + + + PCR primer design (for gene transcription profiling) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers that are conserved across multiple genomes or species. + + + PCR primer design (for conserved primers) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers based on gene structure. + + + PCR primer design (based on gene structure) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for methylation PCRs. + + + PCR primer design (for methylation PCRs) + true + + + + + + + + + beta12orEarlier + Sequence assembly by combining fragments using an existing backbone sequence, typically a reference genome. + Sequence assembly (mapping assembly) + + + The final sequence will resemble the backbone sequence. Mapping assemblers are usually much faster and less memory intensive than de-novo assemblers. + Mapping assembly + + + + + + + + + + beta12orEarlier + Sequence assembly by combining fragments without the aid of a reference sequence or genome. + De Bruijn graph + Sequence assembly (de-novo assembly) + + + De-novo assemblers are much slower and more memory intensive than mapping assemblers. + De-novo assembly + + + + + + + + + + + beta12orEarlier + The process of assembling many short DNA sequences together such that they represent the original chromosomes from which the DNA originated. + Genomic assembly + Sequence assembly (genome assembly) + Breakend assembly + + + Genome assembly + + + + + + + + + + beta12orEarlier + Sequence assembly for EST sequences (transcribed mRNA). + Sequence assembly (EST assembly) + + + Assemblers must handle (or be complicated by) alternative splicing, trans-splicing, single-nucleotide polymorphism (SNP), recoding, and post-transcriptional modification. + EST assembly + + + + + + + + + + + beta12orEarlier + Make sequence tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. + Tag to gene assignment + + + Sequence tag mapping assigns experimentally obtained sequence tags to known transcripts or annotate potential virtual sequence tags in a genome. + Sequence tag mapping + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) serial analysis of gene expression (SAGE) data. + + SAGE data processing + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) massively parallel signature sequencing (MPSS) data. + + MPSS data processing + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) sequencing by synthesis (SBS) data. + + SBS data processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Generate a heat map of expression data from e.g. microarray data. + Heat map construction + Heatmap generation + + + The heat map usually uses a coloring scheme to represent expression values. They can show how quantitative measurements were influenced by experimental conditions. + Heat map generation + + + + + + + + + + beta12orEarlier + 1.6 + + + Analyse one or more gene expression profiles, typically to interpret them in functional terms. + + Gene expression profile analysis + true + + + + + + + + + + + + + + + + + beta12orEarlier + Map an expression profile to known biological pathways, for example, to identify or reconstruct a pathway. + Pathway mapping + Gene expression profile pathway mapping + Gene to pathway mapping + Gene-to-pathway mapping + + + Expression profile pathway mapping + + + + + + + + + beta12orEarlier + 1.18 + + Assign secondary structure from protein coordinate data. + + + Protein secondary structure assignment (from coordinate data) + true + + + + + + + + + beta12orEarlier + 1.18 + + Assign secondary structure from circular dichroism (CD) spectroscopic data. + + + Protein secondary structure assignment (from CD data) + true + + + + + + + + + beta12orEarlier + 1.7 + + Assign a protein tertiary structure (3D coordinates) from raw X-ray crystallography data. + + + Protein structure assignment (from X-ray crystallographic data) + true + + + + + + + + + beta12orEarlier + 1.7 + + Assign a protein tertiary structure (3D coordinates) from raw NMR spectroscopy data. + + + Protein structure assignment (from NMR data) + true + + + + + + + + + beta12orEarlier + true + Construct a phylogenetic tree from a specific type of data. + Phylogenetic tree construction (data centric) + Phylogenetic tree generation (data centric) + + + Subconcepts of this concept reflect different types of data used to generate a tree, and provide an alternate axis for curation. + Phylogenetic inference (data centric) + + + + + + + + + beta12orEarlier + true + Construct a phylogenetic tree using a specific method. + Phylogenetic tree construction (method centric) + Phylogenetic tree generation (method centric) + + + Subconcepts of this concept reflect different computational methods used to generate a tree, and provide an alternate axis for curation. + Phylogenetic inference (method centric) + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from molecular sequences. + Phylogenetic tree construction (from molecular sequences) + Phylogenetic tree generation (from molecular sequences) + + + Methods typically compare multiple molecular sequence and estimate evolutionary distances and relationships to infer gene families or make functional predictions. + Phylogenetic inference (from molecular sequences) + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from continuous quantitative character data. + Phylogenetic tree construction (from continuous quantitative characters) + Phylogenetic tree generation (from continuous quantitative characters) + + + Phylogenetic inference (from continuous quantitative characters) + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from gene frequency data. + Phylogenetic tree construction (from gene frequencies) + Phylogenetic tree generation (from gene frequencies) + + + Phylogenetic inference (from gene frequencies) + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from polymorphism data including microsatellites, RFLP (restriction fragment length polymorphisms), RAPD (random-amplified polymorphic DNA) and AFLP (amplified fragment length polymorphisms) data. + Phylogenetic tree construction (from polymorphism data) + Phylogenetic tree generation (from polymorphism data) + + + Phylogenetic inference (from polymorphism data) + + + + + + + + + beta12orEarlier + Construct a phylogenetic species tree, for example, from a genome-wide sequence comparison. + Phylogenetic species tree construction + Phylogenetic species tree generation + + + Species tree construction + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by computing a sequence alignment and searching for the tree with the fewest number of character-state changes from the alignment. + Phylogenetic tree construction (parsimony methods) + Phylogenetic tree generation (parsimony methods) + + + This includes evolutionary parsimony (invariants) methods. + Phylogenetic inference (parsimony methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by computing (or using precomputed) distances between sequences and searching for the tree with minimal discrepancies between pairwise distances. + Phylogenetic tree construction (minimum distance methods) + Phylogenetic tree generation (minimum distance methods) + + + This includes neighbor joining (NJ) clustering method. + Phylogenetic inference (minimum distance methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by relating sequence data to a hypothetical tree topology using a model of sequence evolution. + Phylogenetic tree construction (maximum likelihood and Bayesian methods) + Phylogenetic tree generation (maximum likelihood and Bayesian methods) + + + Maximum likelihood methods search for a tree that maximizes a likelihood function, i.e. that is most likely given the data and model. Bayesian analysis estimate the probability of tree for branch lengths and topology, typically using a Monte Carlo algorithm. + Phylogenetic inference (maximum likelihood and Bayesian methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by computing four-taxon trees (4-trees) and searching for the phylogeny that matches most closely. + Phylogenetic tree construction (quartet methods) + Phylogenetic tree generation (quartet methods) + + + Phylogenetic inference (quartet methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by using artificial-intelligence methods, for example genetic algorithms. + Phylogenetic tree construction (AI methods) + Phylogenetic tree generation (AI methods) + + + Phylogenetic inference (AI methods) + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Identify a plausible model of DNA substitution that explains a molecular (DNA or protein) sequence alignment. + Nucleotide substitution modelling + + + DNA substitution modelling + + + + + + + + + beta12orEarlier + Analyse the shape (topology) of a phylogenetic tree. + Phylogenetic tree analysis (shape) + + + Phylogenetic tree topology analysis + + + + + + + + + + beta12orEarlier + Apply bootstrapping or other measures to estimate confidence of a phylogenetic tree. + + + Phylogenetic tree bootstrapping + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Construct a "gene tree" which represents the evolutionary history of the genes included in the study. This can be used to predict families of genes and gene function based on their position in a phylogenetic tree. + Phylogenetic tree analysis (gene family prediction) + + + Gene trees can provide evidence for gene duplication events, as well as speciation events. Where sequences from different homologs are included in a gene tree, subsequent clustering of the orthologs can demonstrate evolutionary history of the orthologs. + Gene tree construction + + + + + + + + + beta12orEarlier + Analyse a phylogenetic tree to identify allele frequency distribution and change that is subject to evolutionary pressures (natural selection, genetic drift, mutation and gene flow). Identify type of natural selection (such as stabilizing, balancing or disruptive). + Phylogenetic tree analysis (natural selection) + + + Stabilizing/purifying (directional) selection favors a single phenotype and tends to decrease genetic diversity as a population stabilizes on a particular trait, selecting out trait extremes or deleterious mutations. In contrast, balancing selection maintain genetic polymorphisms (or multiple alleles), whereas disruptive (or diversifying) selection favors individuals at both extremes of a trait. + Allele frequency distribution analysis + + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees to produce a consensus tree. + Phylogenetic tree construction (consensus) + Phylogenetic tree generation (consensus) + + + Methods typically test for topological similarity between trees using for example a congruence index. + Consensus tree construction + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees to detect subtrees or supertrees. + Phylogenetic sub/super tree detection + Subtree construction + Supertree construction + + + Phylogenetic sub/super tree construction + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees to calculate distances between trees. + + + Phylogenetic tree distances calculation + + + + + + + + + beta12orEarlier + Annotate a phylogenetic tree with terms from a controlled vocabulary. + + + Phylogenetic tree annotation + http://www.evolutionaryontology.org/cdao.owl#CDAOAnnotation + + + + + + + + + beta12orEarlier + 1.12 + + Predict and optimise peptide ligands that elicit an immunological response. + + + Immunogenicity prediction + true + + + + + + + + + + + + + + + beta12orEarlier + Predict or optimise DNA to elicit (via DNA vaccination) an immunological response. + + + DNA vaccine design + + + + + + + + + beta12orEarlier + 1.12 + + Reformat (a file or other report of) molecular sequence(s). + + + Sequence formatting + true + + + + + + + + + beta12orEarlier + 1.12 + + Reformat (a file or other report of) molecular sequence alignment(s). + + + Sequence alignment formatting + true + + + + + + + + + beta12orEarlier + 1.12 + + Reformat a codon usage table. + + + Codon usage table formatting + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Visualise, format or render a molecular sequence or sequences such as a sequence alignment, possibly with sequence features or properties shown. + Sequence rendering + Sequence alignment visualisation + + + Sequence visualisation + + + + + + + + + beta12orEarlier + 1.15 + + Visualise, format or print a molecular sequence alignment. + + + Sequence alignment visualisation + true + + + + + + + + + + + + + + + beta12orEarlier + Visualise, format or render sequence clusters. + Sequence cluster rendering + + + Sequence cluster visualisation + + + + + + + + + + + + + + + + beta12orEarlier + Render or visualise a phylogenetic tree. + Phylogenetic tree rendering + + + Phylogenetic tree visualisation + + + + + + + + + beta12orEarlier + 1.15 + + Visualise RNA secondary structure, knots, pseudoknots etc. + + + RNA secondary structure visualisation + true + + + + + + + + + beta12orEarlier + 1.15 + + Render and visualise protein secondary structure. + + + Protein secondary structure visualisation + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Visualise or render molecular 3D structure, for example a high-quality static picture or animation. + Structure rendering + Protein secondary structure visualisation + RNA secondary structure visualisation + + + This includes visualisation of protein secondary structure such as knots, pseudoknots etc. as well as tertiary and quaternary structure. + Structure visualisation + + + + + + + + + + + + + + + + beta12orEarlier + Visualise microarray or other expression data. + Expression data rendering + Gene expression data visualisation + Microarray data rendering + + + Expression data visualisation + + + + + + + + + beta12orEarlier + 1.19 + + Identify and analyse networks of protein interactions. + + + Protein interaction network visualisation + true + + + + + + + + + + + + + + + beta12orEarlier + Draw or visualise a DNA map. + DNA map drawing + Map rendering + + + Map drawing + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Render a sequence with motifs. + + Sequence motif rendering + true + + + + + + + + + + + + + + + beta12orEarlier + Draw or visualise restriction maps in DNA sequences. + + + Restriction map drawing + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Draw a linear maps of DNA. + + DNA linear map rendering + true + + + + + + + + + beta12orEarlier + DNA circular map rendering + Draw a circular maps of DNA, for example a plasmid map. + + + Plasmid map drawing + + + + + + + + + + + + + + + beta12orEarlier + Visualise operon structure etc. + Operon rendering + + + Operon drawing + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identify folding families of related RNAs. + + Nucleic acid folding family identification + true + + + + + + + + + beta12orEarlier + 1.20 + + Compute energies of nucleic acid folding, e.g. minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants. + + + Nucleic acid folding energy calculation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Retrieve existing annotation (or documentation), typically annotation on a database entity. + + Use this concepts for tools which retrieve pre-existing annotations, not for example prediction methods that might make annotations. + Annotation retrieval + true + + + + + + + + + + + + + + + + beta12orEarlier + Predict the biological or biochemical role of a protein, or other aspects of a protein function. + Protein function analysis + Protein functional analysis + + + For functional properties that can be mapped to a sequence, use 'Sequence feature detection (protein)' instead. + Protein function prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Compare the functional properties of two or more proteins. + + + Protein function comparison + + + + + + + + + beta12orEarlier + 1.6 + + + Submit a molecular sequence to a database. + + Sequence submission + true + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a known network of gene regulation. + Gene regulatory network comparison + Gene regulatory network modelling + Regulatory network comparison + Regulatory network modelling + + + Gene regulatory network analysis + + + + + + + + + beta12orEarlier + WHATIF:UploadPDB + Parse, prepare or load a user-specified data file so that it is available for use. + Data loading + Loading + + + Parsing + + + + + + + + + beta12orEarlier + 1.6 + + + Query a sequence data resource (typically a database) and retrieve sequences and / or annotation. + + This includes direct retrieval methods (e.g. the dbfetch program) but not those that perform calculations on the sequence. + Sequence retrieval + true + + + + + + + + + beta12orEarlier + 1.6 + + + WHATIF:DownloadPDB + WHATIF:EchoPDB + Query a tertiary structure data resource (typically a database) and retrieve structures, structure-related data and annotation. + + This includes direct retrieval methods but not those that perform calculations on the sequence or structure. + Structure retrieval + true + + + + + + + + + + beta12orEarlier + WHATIF:GetSurfaceDots + Calculate the positions of dots that are homogeneously distributed over the surface of a molecule. + + + A dot has three coordinates (x,y,z) and (typically) a color. + Surface rendering + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible surface') for each atom in a structure. + + + Waters are not considered. + Protein atom surface calculation (accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible molecular surface') for each atom in a structure. + + + Waters are not considered. + Protein atom surface calculation (accessible molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible surface') for each residue in a structure. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('vacuum accessible surface') for each residue in a structure. This is the accessibility of the residue when taken out of the protein together with the backbone atoms of any residue it is covalently bound to. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (vacuum accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible molecular surface') for each residue in a structure. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (accessible molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('vacuum molecular surface') for each residue in a structure. This is the accessibility of the residue when taken out of the protein together with the backbone atoms of any residue it is covalently bound to. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (vacuum molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible molecular surface') for a structure as a whole. + + + Protein surface calculation (accessible molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible surface') for a structure as a whole. + + + Protein surface calculation (accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate for each residue in a protein structure all its backbone torsion angles. + + + Backbone torsion angle calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate for each residue in a protein structure all its torsion angles. + + + Full torsion angle calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate for each cysteine (bridge) all its torsion angles. + + + Cysteine torsion angle calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + For each amino acid in a protein structure calculate the backbone angle tau. + + + Tau is the backbone angle N-Calpha-C (angle over the C-alpha). + Tau angle calculation + true + + + + + + + + + beta12orEarlier + WHATIF:ShowCysteineBridge + Detect cysteine bridges (from coordinate data) in a protein structure. + + + Cysteine bridge detection + + + + + + + + + beta12orEarlier + WHATIF:ShowCysteineFree + Detect free cysteines in a protein structure. + + + A free cysteine is neither involved in a cysteine bridge, nor functions as a ligand to a metal. + Free cysteine detection + + + + + + + + + + beta12orEarlier + WHATIF:ShowCysteineMetal + Detect cysteines that are bound to metal in a protein structure. + + + Metal-bound cysteine detection + + + + + + + + + beta12orEarlier + 1.12 + + Calculate protein residue contacts with nucleic acids in a structure. + + + Residue contact calculation (residue-nucleic acid) + true + + + + + + + + + beta12orEarlier + Calculate protein residue contacts with metal in a structure. + Residue-metal contact calculation + + + Protein-metal contact calculation + + + + + + + + + beta12orEarlier + 1.12 + + Calculate ion contacts in a structure (all ions for all side chain atoms). + + + Residue contact calculation (residue-negative ion) + true + + + + + + + + + beta12orEarlier + WHATIF:ShowBumps + Detect 'bumps' between residues in a structure, i.e. those with pairs of atoms whose Van der Waals' radii interpenetrate more than a defined distance. + + + Residue bump detection + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF:SymmetryContact + Calculate the number of symmetry contacts made by residues in a protein structure. + + + A symmetry contact is a contact between two atoms in different asymmetric unit. + Residue symmetry contact calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate contacts between residues and ligands in a protein structure. + + + Residue contact calculation (residue-ligand) + true + + + + + + + + + beta12orEarlier + WHATIF:HasSaltBridge + WHATIF:HasSaltBridgePlus + WHATIF:ShowSaltBridges + WHATIF:ShowSaltBridgesH + Calculate (and possibly score) salt bridges in a protein structure. + + + Salt bridges are interactions between oppositely charged atoms in different residues. The output might include the inter-atomic distance. + Salt bridge calculation + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF:ShowLikelyRotamers + WHATIF:ShowLikelyRotamers100 + WHATIF:ShowLikelyRotamers200 + WHATIF:ShowLikelyRotamers300 + WHATIF:ShowLikelyRotamers400 + WHATIF:ShowLikelyRotamers500 + WHATIF:ShowLikelyRotamers600 + WHATIF:ShowLikelyRotamers700 + WHATIF:ShowLikelyRotamers800 + WHATIF:ShowLikelyRotamers900 + Predict rotamer likelihoods for all 20 amino acid types at each position in a protein structure. + + + Output typically includes, for each residue position, the likelihoods for the 20 amino acid types with estimated reliability of the 20 likelihoods. + Rotamer likelihood prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF:ProlineMutationValue + Calculate for each position in a protein structure the chance that a proline, when introduced at this position, would increase the stability of the whole protein. + + + Proline mutation value calculation + true + + + + + + + + + beta12orEarlier + WHATIF: PackingQuality + Identify poorly packed residues in protein structures. + + + Residue packing validation + + + + + + + + + beta12orEarlier + WHATIF: ImproperQualityMax + WHATIF: ImproperQualitySum + Validate protein geometry, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc. An example is validation of a Ramachandran plot of a protein structure. + Ramachandran plot validation + + + Protein geometry validation + + + + + + + + + + beta12orEarlier + beta12orEarlier + + WHATIF: PDB_sequence + Extract a molecular sequence from a PDB file. + + + PDB file sequence retrieval + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify HET groups in PDB files. + + + A HET group usually corresponds to ligands, lipids, but might also (not consistently) include groups that are attached to amino acids. Each HET group is supposed to have a unique three letter code and a unique name which might be given in the output. + HET group detection + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Determine for residue the DSSP determined secondary structure in three-state (HSC). + + DSSP secondary structure assignment + true + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF: PDBasXML + Reformat (a file or other report of) tertiary structure data. + + + Structure formatting + true + + + + + + + + + + + + + + + beta12orEarlier + Assign cysteine bonding state and disulfide bond partners in protein structures. + + + Protein cysteine and disulfide bond assignment + + + + + + + + + beta12orEarlier + 1.12 + + Identify poor quality amino acid positions in protein structures. + + + Residue validation + true + + + + + + + + + beta12orEarlier + 1.6 + + + WHATIF:MovedWaterPDB + Query a tertiary structure database and retrieve water molecules. + + Structure retrieval (water) + true + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict siRNA duplexes in RNA. + + + siRNA duplex prediction + + + + + + + + + + beta12orEarlier + Refine an existing sequence alignment. + + + Sequence alignment refinement + + + + + + + + + beta12orEarlier + 1.6 + + + Process an EMBOSS listfile (list of EMBOSS Uniform Sequence Addresses). + + Listfile processing + true + + + + + + + + + + beta12orEarlier + Perform basic (non-analytical) operations on a report or file of sequences (which might include features), such as file concatenation, removal or ordering of sequences, creation of subset or a new file of sequences. + + + Sequence file editing + + + + + + + + + beta12orEarlier + 1.6 + + + Perform basic (non-analytical) operations on a sequence alignment file, such as copying or removal and ordering of sequences. + + Sequence alignment file processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) physicochemical property data for small molecules. + + Small molecule data processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Search and retrieve documentation on a bioinformatics ontology. + + Data retrieval (ontology annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Query an ontology and retrieve concepts or relations. + + Data retrieval (ontology concept) + true + + + + + + + + + beta12orEarlier + Identify a representative sequence from a set of sequences, typically using scores from pair-wise alignment or other comparison of the sequences. + + + Representative sequence identification + + + + + + + + + beta12orEarlier + 1.6 + + + Perform basic (non-analytical) operations on a file of molecular tertiary structural data. + + Structure file processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Query a profile data resource and retrieve one or more profile(s) and / or associated annotation. + + This includes direct retrieval methods that retrieve a profile by, e.g. the profile name. + Data retrieval (sequence profile) + true + + + + + + + + + beta12orEarlier + Perform a statistical data operation of some type, e.g. calibration or validation. + Significance testing + Statistical analysis + Statistical test + Statistical testing + Expectation maximisation + Gibbs sampling + Hypothesis testing + Omnibus test + + + Statistical calculation + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate a 3D-1D scoring matrix from analysis of protein sequence and structural data. + 3D-1D scoring matrix construction + + + A 3D-1D scoring matrix scores the probability of amino acids occurring in different structural environments. + 3D-1D scoring matrix generation + + + + + + + + + + + + + + + + beta12orEarlier + Visualise transmembrane proteins, typically the transmembrane regions within a sequence. + Transmembrane protein rendering + + + Transmembrane protein visualisation + + + + + + + + + beta12orEarlier + beta13 + + + An operation performing purely illustrative (pedagogical) purposes. + + Demonstration + true + + + + + + + + + beta12orEarlier + beta13 + + + Query a biological pathways database and retrieve annotation on one or more pathways. + + Data retrieval (pathway or network) + true + + + + + + + + + beta12orEarlier + beta13 + + + Query a database and retrieve one or more data identifiers. + + Data retrieval (identifier) + true + + + + + + + + + + beta12orEarlier + Calculate a density plot (of base composition) for a nucleotide sequence. + + + Nucleic acid density plotting + + + + + + + + + + + + + + + beta12orEarlier + Analyse one or more known molecular sequences. + Sequence analysis (general) + + + Sequence analysis + + + + + + + + + + beta12orEarlier + Analyse molecular sequence motifs. + Sequence motif processing + + + Sequence motif analysis + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) protein interaction data. + + Protein interaction data processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse protein structural data. + Structure analysis (protein) + + + Protein structure analysis + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) annotation of some type, typically annotation on an entry from a biological or biomedical database entity. + + Annotation processing + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse features in molecular sequences. + + Sequence feature analysis + true + + + + + + + + + + + + + + + beta12orEarlier + true + Basic (non-analytical) operations of some data, either a file or equivalent entity in memory, such that the same basic type of data is consumed as input and generated as output. + File handling + File processing + Report handling + Utility operation + Processing + + + Data handling + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse gene expression and regulation data. + + Gene expression analysis + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) one or more structural (3D) profile(s) or template(s) of some type. + + Structural profile processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) an index of (typically a file of) biological data. + + Data index processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) some type of sequence profile. + + Sequence profile processing + true + + + + + + + + + beta12orEarlier + 1.22 + + Analyse protein function, typically by processing protein sequence and/or structural data, and generate an informative report. + + + Protein function analysis + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse, simulate or predict protein folding, typically by processing sequence and / or structural data. For example, predict sites of nucleation or stabilisation key to protein folding. + Protein folding modelling + Protein folding simulation + Protein folding site prediction + + + Protein folding analysis + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse protein secondary structure data. + Secondary structure analysis (protein) + + + Protein secondary structure analysis + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) data on the physicochemical property of a molecule. + + Physicochemical property data processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Predict oligonucleotide primers or probes. + Primer and probe prediction + + + Primer and probe design + + + + + + + + + beta12orEarlier + 1.12 + + Process (read and / or write) data of a specific type, for example applying analytical methods. + + + Operation (typed) + true + + + + + + + + + + + + + + + beta12orEarlier + Search a database (or other data resource) with a supplied query and retrieve entries (or parts of entries) that are similar to the query. + Search + + + Typically the query is compared to each entry and high scoring matches (hits) are returned. For example, a BLAST search of a sequence database. + Database search + + + + + + + + + + + + + + + + beta12orEarlier + Retrieve an entry (or part of an entry) from a data resource that matches a supplied query. This might include some primary data and annotation. The query is a data identifier or other indexed term. For example, retrieve a sequence record with the specified accession number, or matching supplied keywords. + Data extraction + Retrieval + Data retrieval (metadata) + Metadata retrieval + + + Data retrieval + + + + + + + + + beta12orEarlier + true + Predict, recognise, detect or identify some properties of a biomolecule. + Detection + Prediction + Recognition + + + Prediction and recognition + + + + + + + + + beta12orEarlier + true + Compare two or more things to identify similarities. + + + Comparison + + + + + + + + + beta12orEarlier + true + Refine or optimise some data model. + + + Optimisation and refinement + + + + + + + + + + + + + + + beta12orEarlier + true + Model or simulate some biological entity or system, typically using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models. + Mathematical modelling + + + Modelling and simulation + + + + + + + + + beta12orEarlier + beta12orEarlier + + Perform basic operations on some data or a database. + + + Data handling + true + + + + + + + + + beta12orEarlier + true + Validate some data. + Quality control + + + Validation + + + + + + + + + beta12orEarlier + true + Map properties to positions on an biological entity (typically a molecular sequence or structure), or assemble such an entity from constituent parts. + Cartography + + + Mapping + + + + + + + + + beta12orEarlier + true + Design a biological entity (typically a molecular sequence or structure) with specific properties. + + + Design + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) microarray data. + + Microarray data processing + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Process (read and / or write) a codon usage table. + + Codon usage table processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve a codon usage table and / or associated annotation. + + Data retrieval (codon usage table) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a gene expression profile. + + Gene expression profile processing + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse gene expression patterns to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc. + Gene sets can be defined beforehand by biological function, chromosome locations and so on. + Gene set testing + Identify classes of genes or proteins that are over or under-represented in a large set of genes or proteins. For example analysis of a set of genes corresponding to a gene expression profile, annotated with Gene Ontology (GO) concepts, where eventual over-/under-representation of certain GO concept within the studied set of genes is revealed. + Functional enrichment analysis + GSEA + Gene-set over-represenation analysis + Gene set analysis + GO-term enrichment + Gene Ontology concept enrichment + Gene Ontology term enrichment + + + "Gene set analysis" (often used interchangeably or in an overlapping sense with "gene-set enrichment analysis") refers to the functional analysis (term enrichment) of a differentially expressed set of genes, rather than all genes analysed. + The Gene Ontology (GO) is typically used, the input is a set of Gene IDs, and the output of the analysis is typically a ranked list of GO concepts, each associated with a p-value. + Gene-set enrichment analysis + + + + + + + + + + + + + beta12orEarlier + Predict a network of gene regulation. + + + Gene regulatory network prediction + + + + + + + + + beta12orEarlier + 1.12 + + + + Generate, analyse or handle a biological pathway or network. + + Pathway or network processing + true + + + + + + + + + + + + + + + beta12orEarlier + Process (read and / or write) RNA secondary structure data. + + + RNA secondary structure analysis + + + + + + + + + beta12orEarlier + beta13 + + Process (read and / or write) RNA tertiary structure data. + + + Structure processing (RNA) + true + + + + + + + + + + + + + + + beta12orEarlier + Predict RNA tertiary structure. + + + RNA structure prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict DNA tertiary structure. + + + DNA structure prediction + + + + + + + + + beta12orEarlier + 1.12 + + Generate, process or analyse phylogenetic tree or trees. + + + Phylogenetic tree processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) protein secondary structure data. + + Protein secondary structure processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a network of protein interactions. + + Protein interaction network processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) one or more molecular sequences and associated annotation. + + Sequence processing + true + + + + + + + + + beta12orEarlier + 1.6 + + Process (read and / or write) a protein sequence and associated annotation. + + + Sequence processing (protein) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a nucleotide sequence and associated annotation. + + Sequence processing (nucleic acid) + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more molecular sequences. + + + Sequence comparison + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a sequence cluster. + + Sequence cluster processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a sequence feature table. + + Feature table processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Includes methods that predict whole gene structure using a combination of multiple methods to achieve better predictions. + Detect, predict and identify genes or components of genes in DNA sequences, including promoters, coding regions, splice sites, etc. + Gene calling + Gene finding + Whole gene prediction + + + Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc. + Gene prediction + + + + + + + + + + beta12orEarlier + 1.16 + + Classify G-protein coupled receptors (GPCRs) into families and subfamilies. + + + GPCR classification + true + + + + + + + + + beta12orEarlier + Not sustainable to have protein type-specific concepts. + 1.19 + + + Predict G-protein coupled receptor (GPCR) coupling selectivity. + + GPCR coupling selectivity prediction + true + + + + + + + + + beta12orEarlier + 1.6 + + Process (read and / or write) a protein tertiary structure. + + + Structure processing (protein) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility for each atom in a structure. + + + Waters are not considered. + Protein atom surface calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility for each residue in a structure. + + + Protein residue surface calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility of a structure as a whole. + + + Protein surface calculation + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular sequence alignment. + + Sequence alignment processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict protein-protein binding sites. + Protein-protein binding site detection + + + Protein-protein binding site prediction + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular tertiary structure. + + Structure processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Annotate a DNA map of some type with terms from a controlled vocabulary. + + Map annotation + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a protein. + + Data retrieval (protein annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve a phylogenetic tree from a data resource. + + Data retrieval (phylogenetic tree) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a protein interaction. + + Data retrieval (protein interaction annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a protein family. + + Data retrieval (protein family annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on an RNA family. + + Data retrieval (RNA family annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a specific gene. + + Data retrieval (gene annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a specific genotype or phenotype. + + Data retrieval (genotype and phenotype annotation) + true + + + + + + + + + + beta12orEarlier + Compare the architecture of two or more protein structures. + + + Protein architecture comparison + + + + + + + + + + + beta12orEarlier + Identify the architecture of a protein structure. + + + Includes methods that try to suggest the most likely biological unit for a given protein X-ray crystal structure based on crystal symmetry and scoring of putative protein-protein interfaces. + Protein architecture recognition + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + The simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation. + Molecular dynamics simulation + Protein dynamics + + + Molecular dynamics + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a nucleic acid sequence (using methods that are only applicable to nucleic acid sequences). + Sequence analysis (nucleic acid) + Nucleic acid sequence alignment analysis + Sequence alignment analysis (nucleic acid) + + + Nucleic acid sequence analysis + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a protein sequence (using methods that are only applicable to protein sequences). + Sequence analysis (protein) + Protein sequence alignment analysis + Sequence alignment analysis (protein) + + + Protein sequence analysis + + + + + + + + + + + + + + + beta12orEarlier + Analyse known molecular tertiary structures. + + + Structure analysis + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse nucleic acid tertiary structural data. + + + Nucleic acid structure analysis + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular secondary structure. + + Secondary structure processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more molecular tertiary structures. + + + Structure comparison + + + + + + + + + + + + + + + beta12orEarlier + Render a helical wheel representation of protein secondary structure. + Helical wheel rendering + + + Helical wheel drawing + + + + + + + + + + + + + + + + beta12orEarlier + Render a topology diagram of protein secondary structure. + Topology diagram rendering + + + Topology diagram drawing + + + + + + + + + + + + + + + + + + beta12orEarlier + Compare protein tertiary structures. + Structure comparison (protein) + + + Methods might identify structural neighbors, find structural similarities or define a structural core. + Protein structure comparison + + + + + + + + + + + beta12orEarlier + Compare protein secondary structures. + Protein secondary structure + Secondary structure comparison (protein) + Protein secondary structure alignment + + + Protein secondary structure comparison + + + + + + + + + + + + + + + beta12orEarlier + Predict the subcellular localisation of a protein sequence. + Protein cellular localization prediction + Protein subcellular localisation prediction + Protein targeting prediction + + + The prediction might include subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or export (extracellular proteins) of a protein. + Subcellular localisation prediction + + + + + + + + + + beta12orEarlier + 1.12 + + Calculate contacts between residues in a protein structure. + + + Residue contact calculation (residue-residue) + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify potential hydrogen bonds between amino acid residues. + + + Hydrogen bond calculation (inter-residue) + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict the interactions of proteins with other proteins. + Protein-protein interaction detection + Protein-protein binding prediction + Protein-protein interaction prediction + + + Protein interaction prediction + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) codon usage data. + + Codon usage data processing + true + + + + + + + + + + + + + + + beta12orEarlier + Metagenomic inference is the profiling of phylogenetic marker genes in order to predict metagenome function. + Process (read and/or write) expression data from experiments measuring molecules (e.g. omics data), including analysis of one or more expression profiles, typically to interpret them in functional terms. + Expression data analysis + Gene expression analysis + Gene expression data analysis + Gene expression regulation analysis + Metagenomic inference + Microarray data analysis + Protein expression analysis + + + Expression analysis + + + + + + + + + + + beta12orEarlier + 1.6 + + Process (read and / or write) a network of gene regulation. + + + Gene regulatory network processing + true + + + + + + + + + beta12orEarlier + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + Generate, process or analyse a biological pathway or network. + + Pathway or network analysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse SAGE, MPSS or SBS experimental data, typically to identify or quantify mRNA transcripts. + + Sequencing-based expression profile data analysis + true + + + + + + + + + + + + + + + + + beta12orEarlier + Predict, analyse, characterize or model splice sites, splicing events and so on, typically by comparing multiple nucleic acid sequences. + Splicing model analysis + + + Splicing analysis + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse raw microarray data. + + Microarray raw data analysis + true + + + + + + + + + beta12orEarlier + 1.19 + + + + Process (read and / or write) nucleic acid sequence or structural data. + + Nucleic acid analysis + true + + + + + + + + + beta12orEarlier + 1.19 + + + + Process (read and / or write) protein sequence or structural data. + + Protein analysis + true + + + + + + + + + beta12orEarlier + beta13 + + Process (read and / or write) molecular sequence data. + + + Sequence data processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) molecular structural data. + + Structural data processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Process (read and / or write) text. + + Text processing + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Analyse a protein sequence alignment, typically to detect features or make predictions. + + + Protein sequence alignment analysis + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Analyse a protein sequence alignment, typically to detect features or make predictions. + + + Nucleic acid sequence alignment analysis + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Compare two or more nucleic acid sequences. + + + Nucleic acid sequence comparison + true + + + + + + + + + beta12orEarlier + 1.18 + + Compare two or more protein sequences. + + + Protein sequence comparison + true + + + + + + + + + + + + + + + beta12orEarlier + Back-translate a protein sequence into DNA. + + + DNA back-translation + + + + + + + + + beta12orEarlier + 1.8 + + Edit or change a nucleic acid sequence, either randomly or specifically. + + + Sequence editing (nucleic acid) + true + + + + + + + + + beta12orEarlier + 1.8 + + Edit or change a protein sequence, either randomly or specifically. + + + Sequence editing (protein) + true + + + + + + + + + beta12orEarlier + 1.22 + + Generate a nucleic acid sequence by some means. + + + Sequence generation (nucleic acid) + true + + + + + + + + + beta12orEarlier + 1.22 + + Generate a protein sequence by some means. + + + Sequence generation (protein) + true + + + + + + + + + beta12orEarlier + 1.8 + + Visualise, format or render a nucleic acid sequence. + + + Various nucleic acid sequence analysis methods might generate a sequence rendering but are not (for brevity) listed under here. + Nucleic acid sequence visualisation + true + + + + + + + + + beta12orEarlier + 1.8 + + Visualise, format or render a protein sequence. + + + Various protein sequence analysis methods might generate a sequence rendering but are not (for brevity) listed under here. + Protein sequence visualisation + true + + + + + + + + + + + beta12orEarlier + Compare nucleic acid tertiary structures. + Structure comparison (nucleic acid) + + + Nucleic acid structure comparison + + + + + + + + + beta12orEarlier + 1.6 + + Process (read and / or write) nucleic acid tertiary structure data. + + + Structure processing (nucleic acid) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate a map of a DNA sequence annotated with positional or non-positional features of some type. + + + DNA mapping + + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a DNA map of some type. + + Map data processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse the hydrophobic, hydrophilic or charge properties of a protein (from analysis of sequence or structural information). + + + Protein hydropathy calculation + + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict catalytic residues, active sites or other ligand-binding sites in protein sequences or structures. + Protein binding site detection + Protein binding site prediction + + + Binding site prediction + + + + + + + + + + beta12orEarlier + Build clusters of similar structures, typically using scores from structural alignment methods. + Structural clustering + + + Structure clustering + + + + + + + + + + + + + + + beta12orEarlier + Generate a physical DNA map (sequence map) from analysis of sequence tagged sites (STS). + Sequence mapping + + + An STS is a short subsequence of known sequence and location that occurs only once in the chromosome or genome that is being mapped. Sources of STSs include 1. expressed sequence tags (ESTs), simple sequence length polymorphisms (SSLPs), and random genomic sequences from cloned genomic DNA or database sequences. + Sequence tagged site (STS) mapping + + + + + + + + + + beta12orEarlier + true + Compare two or more entities, typically the sequence or structure (or derivatives) of macromolecules, to identify equivalent subunits. + Alignment construction + Alignment generation + + + Alignment + + + + + + + + + + + beta12orEarlier + Calculate the molecular weight of a protein (or fragments) and compare it to another protein or reference data. Generally used for protein identification. + PMF + Peptide mass fingerprinting + Protein fingerprinting + + + Protein fragment weight comparison + + + + + + + + + + + + + + + beta12orEarlier + Compare the physicochemical properties of two or more proteins (or reference data). + + + Protein property comparison + + + + + + + + + beta12orEarlier + 1.18 + + + + Compare two or more molecular secondary structures. + + Secondary structure comparison + true + + + + + + + + + beta12orEarlier + 1.12 + + Generate a Hopp and Woods plot of antigenicity of a protein. + + + Hopp and Woods plotting + true + + + + + + + + + beta12orEarlier + 1.19 + + Generate a view of clustered quantitative data, annotated with textual information. + + + Cluster textual view generation + true + + + + + + + + + beta12orEarlier + In the case of microarray data, visualise clustered gene expression data as a set of profiles, where each profile shows the gene expression values of a cluster across samples on the X-axis. + Visualise clustered quantitative data as set of different profiles, where each profile is plotted versus different entities or samples on the X-axis. + Clustered quantitative data plotting + Clustered quantitative data rendering + Wave graph plotting + Microarray cluster temporal graph rendering + Microarray wave graph plotting + Microarray wave graph rendering + + + Clustering profile plotting + + + + + + + + + beta12orEarlier + 1.19 + + Generate a dendrograph of raw, preprocessed or clustered expression (e.g. microarray) data. + + + Dendrograph plotting + true + + + + + + + + + beta12orEarlier + Generate a plot of distances (distance or correlation matrix) between expression values. + Distance map rendering + Distance matrix plotting + Distance matrix rendering + Proximity map rendering + Correlation matrix plotting + Correlation matrix rendering + Microarray distance map rendering + Microarray proximity map plotting + Microarray proximity map rendering + + + Proximity map plotting + + + + + + + + + beta12orEarlier + Visualise clustered expression data using a tree diagram. + Dendrogram plotting + Dendrograph plotting + Dendrograph visualisation + Expression data tree or dendrogram rendering + Expression data tree visualisation + Microarray 2-way dendrogram rendering + Microarray checks view rendering + Microarray matrix tree plot rendering + Microarray tree or dendrogram rendering + + + Dendrogram visualisation + + + + + + + + + + beta12orEarlier + Examples for visualization are the distribution of variance over the components, loading and score plots. + Visualize the results of a principal component analysis (orthogonal data transformation). For example, visualization of the principal components (essential subspace) coming from a Principal Component Analysis (PCA) on the trajectory atomistic coordinates of a molecular structure. + PCA plotting + Principal component plotting + ED visualization + Essential Dynamics visualization + Microarray principal component plotting + Microarray principal component rendering + PCA visualization + Principal modes visualization + + + The use of Principal Component Analysis (PCA), a multivariate statistical analysis to obtain collective variables on the atomic positional fluctuations, helps to separate the configurational space in two subspaces: an essential subspace containing relevant motions, and another one containing irrelevant local fluctuations. + Principal component visualisation + + + + + + + + + beta12orEarlier + Comparison of two sets of quantitative data such as two samples of gene expression values. + Render a graph in which the values of two variables are plotted along two axes; the pattern of the points reveals any correlation. + Scatter chart plotting + Microarray scatter plot plotting + Microarray scatter plot rendering + + + Scatter plot plotting + + + + + + + + + beta12orEarlier + 1.18 + + Visualise gene expression data where each band (or line graph) corresponds to a sample. + + + Whole microarray graph plotting + true + + + + + + + + + beta12orEarlier + Visualise gene expression data after hierarchical clustering for representing hierarchical relationships. + Expression data tree-map rendering + Treemapping + Microarray tree-map rendering + + + Treemap visualisation + + + + + + + + + + beta12orEarlier + In the case of micorarray data, visualise raw and pre-processed gene expression data, via a plot showing over- and under-expression along with mean, upper and lower quartiles. + Generate a box plot, i.e. a depiction of groups of numerical data through their quartiles. + Box plot plotting + Microarray Box-Whisker plot plotting + + + Box-Whisker plot plotting + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate a physical (sequence) map of a DNA sequence showing the physical distance (base pairs) between features or landmarks such as restriction sites, cloned DNA fragments, genes and other genetic markers. + Physical cartography + + + Physical mapping + + + + + + + + + + beta12orEarlier + true + Apply analytical methods to existing data of a specific type. + + + This excludes non-analytical methods that read and write the same basic type of data (for that, see 'Data handling'). + Analysis + + + + + + + + + beta12orEarlier + 1.8 + + + Process or analyse an alignment of molecular sequences or structures. + + Alignment analysis + true + + + + + + + + + beta12orEarlier + 1.16 + + + + Analyse a body of scientific text (typically a full text article from a scientific journal). + + Article analysis + true + + + + + + + + + beta12orEarlier + beta13 + + + Analyse the interactions of two or more molecules (or parts of molecules) that are known to interact. + + Molecular interaction analysis + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Includes analysis of raw experimental protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc. + Analyse the interactions of proteins with other proteins. + Protein interaction analysis + Protein interaction raw data analysis + Protein interaction simulation + + + Protein-protein interaction analysis + + + + + + + + + beta12orEarlier + WHATIF: HETGroupNames + WHATIF:HasMetalContacts + WHATIF:HasMetalContactsPlus + WHATIF:HasNegativeIonContacts + WHATIF:HasNegativeIonContactsPlus + WHATIF:HasNucleicContacts + WHATIF:ShowDrugContacts + WHATIF:ShowDrugContactsShort + WHATIF:ShowLigandContacts + WHATIF:ShowProteiNucleicContacts + Calculate contacts between residues, or between residues and other groups, in a protein structure, on the basis of distance calculations. + HET group detection + Residue contact calculation (residue-ligand) + Residue contact calculation (residue-metal) + Residue contact calculation (residue-negative ion) + Residue contact calculation (residue-nucleic acid) + WHATIF:SymmetryContact + + + This includes identifying HET groups, which usually correspond to ligands, lipids, but might also (not consistently) include groups that are attached to amino acids. Each HET group is supposed to have a unique three letter code and a unique name which might be given in the output. It can also include calculation of symmetry contacts, i.e. a contact between two atoms in different asymmetric unit. + Residue distance calculation + + + + + + + + + beta12orEarlier + 1.6 + + + + Process (read and / or write) an alignment of two or more molecular sequences, structures or derived data. + + Alignment processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular tertiary (3D) structure alignment. + + Structure alignment processing + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate codon usage bias, e.g. generate a codon usage bias plot. + Codon usage bias plotting + + + Codon usage bias calculation + + + + + + + + + beta12orEarlier + 1.22 + + Generate a codon usage bias plot. + + + Codon usage bias plotting + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate the differences in codon usage fractions between two sequences, sets of sequences, codon usage tables etc. + + + Codon usage fraction calculation + + + + + + + + + beta12orEarlier + true + Assign molecular sequences, structures or other biological data to a specific group or category according to qualities it shares with that group or category. + + + Classification + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) molecular interaction data. + + Molecular interaction data processing + true + + + + + + + + + + beta12orEarlier + Assign molecular sequence(s) to a group or category. + + + Sequence classification + + + + + + + + + + beta12orEarlier + Assign molecular structure(s) to a group or category. + + + Structure classification + + + + + + + + + beta12orEarlier + Compare two or more proteins (or some aspect) to identify similarities. + + + Protein comparison + + + + + + + + + beta12orEarlier + Compare two or more nucleic acids to identify similarities. + + + Nucleic acid comparison + + + + + + + + + beta12orEarlier + 1.19 + + Predict, recognise, detect or identify some properties of proteins. + + + Prediction and recognition (protein) + true + + + + + + + + + beta12orEarlier + 1.19 + + Predict, recognise, detect or identify some properties of nucleic acids. + + + Prediction and recognition (nucleic acid) + true + + + + + + + + + + + + + + + beta13 + Edit, convert or otherwise change a molecular tertiary structure, either randomly or specifically. + + + Structure editing + + + + + + + + + beta13 + Edit, convert or otherwise change a molecular sequence alignment, either randomly or specifically. + + + Sequence alignment editing + + + + + + + + + beta13 + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + Render (visualise) a biological pathway or network. + + Pathway or network visualisation + true + + + + + + + + + beta13 + 1.6 + + + Predict general (non-positional) functional properties of a protein from analysing its sequence. + + For functional properties that are positional, use 'Protein site detection' instead. + Protein function prediction (from sequence) + true + + + + + + + + + beta13 + (jison)This is a distinction made on basis of input; all features exist can be mapped to a sequence so this isn't needed (consolidate with "Protein feature detection"). + 1.17 + + + + Predict, recognise and identify functional or other key sites within protein sequences, typically by scanning for known motifs, patterns and regular expressions. + + + Protein sequence feature detection + true + + + + + + + + + beta13 + 1.18 + + + Calculate (or predict) physical or chemical properties of a protein, including any non-positional properties of the molecular sequence, from processing a protein sequence. + + + Protein property calculation (from sequence) + true + + + + + + + + + beta13 + 1.6 + + + Predict, recognise and identify positional features in proteins from analysing protein structure. + + Protein feature prediction (from structure) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta13 + Predict, recognise and identify positional features in proteins from analysing protein sequences or structures. + Protein feature prediction + Protein feature recognition + Protein secondary database search + Protein site detection + Protein site prediction + Protein site recognition + Sequence feature detection (protein) + Sequence profile database search + + + Features includes functional sites or regions, secondary structure, structural domains and so on. Methods might use fingerprints, motifs, profiles, hidden Markov models, sequence alignment etc to provide a mapping of a query protein sequence to a discriminatory element. This includes methods that search a secondary protein database (Prosite, Blocks, ProDom, Prints, Pfam etc.) to assign a protein sequence(s) to a known protein family or group. + Protein feature detection + + + + + + + + + beta13 + 1.6 + + + Screen a molecular sequence(s) against a database (of some type) to identify similarities between the sequence and database entries. + + Database search (by sequence) + true + + + + + + + + + + beta13 + Predict a network of protein interactions. + + + Protein interaction network prediction + + + + + + + + + + beta13 + Design (or predict) nucleic acid sequences with specific chemical or physical properties. + Gene design + + + Nucleic acid design + + + + + + + + + + beta13 + Edit a data entity, either randomly or specifically. + + + Editing + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.1 + Evaluate a DNA sequence assembly, typically for purposes of quality control. + Assembly QC + Assembly quality evaluation + Sequence assembly QC + Sequence assembly quality evaluation + + + Sequence assembly validation + + + + + + + + + + 1.1 + Align two or more (tpyically huge) molecular sequences that represent genomes. + Genome alignment construction + Whole genome alignment + + + Genome alignment + + + + + + + + + 1.1 + Reconstruction of a sequence assembly in a localised area. + + + Localised reassembly + + + + + + + + + 1.1 + Render and visualise a DNA sequence assembly. + Assembly rendering + Assembly visualisation + Sequence assembly rendering + + + Sequence assembly visualisation + + + + + + + + + + + + + + + 1.1 + Identify base (nucleobase) sequence from a fluorescence 'trace' data generated by an automated DNA sequencer. + Base calling + Phred base calling + Phred base-calling + + + Base-calling + + + + + + + + + + 1.1 + The mapping of methylation sites in a DNA (genome) sequence. Typically, the mapping of high-throughput bisulfite reads to the reference genome. + Bisulfite read mapping + Bisulfite sequence alignment + Bisulfite sequence mapping + + + Bisulfite mapping follows high-throughput sequencing of DNA which has undergone bisulfite treatment followed by PCR amplification; unmethylated cytosines are specifically converted to thymine, allowing the methylation status of cytosine in the DNA to be detected. + Bisulfite mapping + + + + + + + + + 1.1 + Identify and filter a (typically large) sequence data set to remove sequences from contaminants in the sample that was sequenced. + + + Sequence contamination filtering + + + + + + + + + 1.1 + 1.12 + + Trim sequences (typically from an automated DNA sequencer) to remove misleading ends. + + + For example trim polyA tails, introns and primer sequence flanking the sequence of amplified exons, or other unwanted sequence. + Trim ends + true + + + + + + + + + 1.1 + 1.12 + + Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences. + + + Trim vector + true + + + + + + + + + 1.1 + 1.12 + + Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence. + + + Trim to reference + true + + + + + + + + + 1.1 + Cut (remove) the end from a molecular sequence. + Trimming + Barcode sequence removal + Trim ends + Trim to reference + Trim vector + + + This includes end trimming, -- Trim sequences (typically from an automated DNA sequencer) to remove misleading ends. For example trim polyA tails, introns and primer sequence flanking the sequence of amplified exons, or other unwanted sequence.-- trimming to a reference sequence, --Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence. -- vector trimming -- Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences. + Sequence trimming + + + + + + + + + + 1.1 + Compare the features of two genome sequences. + + + Genomic elements that might be compared include genes, indels, single nucleotide polymorphisms (SNPs), retrotransposons, tandem repeats and so on. + Genome feature comparison + + + + + + + + + + + + + + + 1.1 + Detect errors in DNA sequences generated from sequencing projects). + Short read error correction + Short-read error correction + + + Sequencing error detection + + + + + + + + + 1.1 + Analyse DNA sequence data to identify differences between the genetic composition (genotype) of an individual compared to other individual's or a reference sequence. + + + Methods might consider cytogenetic analyses, copy number polymorphism (and calculate copy number calls for copy-number variation(CNV) regions), single nucleotide polymorphism (SNP), , rare copy number variation (CNV) identification, loss of heterozygosity data and so on. + Genotyping + + + + + + + + + 1.1 + Analyse a genetic variation, for example to annotate its location, alleles, classification, and effects on individual transcripts predicted for a gene model. + Genetic variation annotation + Sequence variation analysis + Variant analysis + Transcript variant analysis + + + Genetic variation annotation provides contextual interpretation of coding SNP consequences in transcripts. It allows comparisons to be made between variation data in different populations or strains for the same transcript. + Genetic variation analysis + + + + + + + + + + 1.1 + Align short oligonucleotide sequences (reads) to a larger (genomic) sequence. + Oligonucleotide alignment + Oligonucleotide alignment construction + Oligonucleotide alignment generation + Oligonucleotide mapping + Read alignment + Short oligonucleotide alignment + Short read alignment + Short read mapping + Short sequence read mapping + + + The purpose of read mapping is to identify the location of sequenced fragments within a reference genome and assumes that there is, in fact, at least local similarity between the fragment and reference sequences. + Read mapping + + + + + + + + + 1.1 + A variant of oligonucleotide mapping where a read is mapped to two separate locations because of possible structural variation. + Split-read mapping + + + Split read mapping + + + + + + + + + 1.1 + Analyse DNA sequences in order to identify a DNA 'barcode'; marker genes or any short fragment(s) of DNA that are useful to diagnose the taxa of biological organisms. + Community profiling + Sample barcoding + + + DNA barcoding + + + + + + + + + + 1.1 + 1.19 + + Identify single nucleotide change in base positions in sequencing data that differ from a reference genome and which might, especially by reference to population frequency or functional data, indicate a polymorphism. + + + SNP calling + true + + + + + + + + + 1.1 + "Polymorphism detection" and "Variant calling" are essentially the same thing - keeping the later as a more prevalent term nowadays. + 1.24 + + + Detect mutations in multiple DNA sequences, for example, from the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware. + + + Polymorphism detection + true + + + + + + + + + 1.1 + Visualise, format or render an image of a Chromatogram. + Chromatogram viewing + + + Chromatogram visualisation + + + + + + + + + 1.1 + Analyse cytosine methylation states in nucleic acid sequences. + Methylation profile analysis + + + Methylation analysis + + + + + + + + + 1.1 + 1.19 + + Determine cytosine methylation status of specific positions in a nucleic acid sequences. + + + Methylation calling + true + + + + + + + + + + 1.1 + Measure the overall level of methyl cytosines in a genome from analysis of experimental data, typically from chromatographic methods and methyl accepting capacity assay. + Genome methylation analysis + Global methylation analysis + Methylation level analysis (global) + + + Whole genome methylation analysis + + + + + + + + + 1.1 + Analysing the DNA methylation of specific genes or regions of interest. + Gene-specific methylation analysis + Methylation level analysis (gene-specific) + + + Gene methylation analysis + + + + + + + + + + 1.1 + Visualise, format or render a nucleic acid sequence that is part of (and in context of) a complete genome sequence. + Genome browser + Genome browsing + Genome rendering + Genome viewing + + + Genome visualisation + + + + + + + + + + 1.1 + Compare the sequence or features of two or more genomes, for example, to find matching regions. + Genomic region matching + + + Genome comparison + + + + + + + + + + + + + + + + 1.1 + Generate an index of a genome sequence. + Burrows-Wheeler + Genome indexing (Burrows-Wheeler) + Genome indexing (suffix arrays) + Suffix arrays + + + Many sequence alignment tasks involving many or very large sequences rely on a precomputed index of the sequence to accelerate the alignment. The Burrows-Wheeler Transform (BWT) is a permutation of the genome based on a suffix array algorithm. A suffix array consists of the lexicographically sorted list of suffixes of a genome. + Genome indexing + + + + + + + + + 1.1 + 1.12 + + Generate an index of a genome sequence using the Burrows-Wheeler algorithm. + + + The Burrows-Wheeler Transform (BWT) is a permutation of the genome based on a suffix array algorithm. + Genome indexing (Burrows-Wheeler) + true + + + + + + + + + 1.1 + 1.12 + + Generate an index of a genome sequence using a suffix arrays algorithm. + + + A suffix array consists of the lexicographically sorted list of suffixes of a genome. + Genome indexing (suffix arrays) + true + + + + + + + + + + + + + + + 1.1 + Analyse one or more spectra from mass spectrometry (or other) experiments. + Mass spectrum analysis + Spectrum analysis + + + Spectral analysis + + + + + + + + + + + + + + + + 1.1 + Identify peaks in a spectrum from a mass spectrometry, NMR, or some other spectrum-generating experiment. + Peak assignment + Peak finding + + + Peak detection + + + + + + + + + + + + + + + + 1.1 + Link together a non-contiguous series of genomic sequences into a scaffold, consisting of sequences separated by gaps of known length. The sequences that are linked are typically typically contigs; contiguous sequences corresponding to read overlaps. + Scaffold construction + Scaffold generation + + + Scaffold may be positioned along a chromosome physical map to create a "golden path". + Scaffolding + + + + + + + + + 1.1 + Fill the gaps in a sequence assembly (scaffold) by merging in additional sequences. + + + Different techniques are used to generate gap sequences to connect contigs, depending on the size of the gap. For small (5-20kb) gaps, PCR amplification and sequencing is used. For large (>20kb) gaps, fragments are cloned (e.g. in BAC (Bacterial artificial chromosomes) vectors) and then sequenced. + Scaffold gap completion + + + + + + + + + + 1.1 + Raw sequence data quality control. + Sequencing QC + Sequencing quality assessment + + + Analyse raw sequence data from a sequencing pipeline and identify (and possiby fix) problems. + Sequencing quality control + + + + + + + + + + 1.1 + Pre-process sequence reads to ensure (or improve) quality and reliability. + Sequence read pre-processing + + + For example process paired end reads to trim low quality ends remove short sequences, identify sequence inserts, detect chimeric reads, or remove low quality sequences including vector, adaptor, low complexity and contaminant sequences. Sequences might come from genomic DNA library, EST libraries, SSH library and so on. + Read pre-processing + + + + + + + + + + + + + + + 1.1 + Estimate the frequencies of different species from analysis of the molecular sequences, typically of DNA recovered from environmental samples. + + + Species frequency estimation + + + + + + + + + 1.1 + Identify putative protein-binding regions in a genome sequence from analysis of Chip-sequencing data or ChIP-on-chip data. + Protein binding peak detection + Peak-pair calling + + + Chip-sequencing combines chromatin immunoprecipitation (ChIP) with massively parallel DNA sequencing to generate a set of reads, which are aligned to a genome sequence. The enriched areas contain the binding sites of DNA-associated proteins. For example, a transcription factor binding site. ChIP-on-chip in contrast combines chromatin immunoprecipitation ('ChIP') with microarray ('chip'). "Peak-pair calling" is similar to "Peak calling" in the context of ChIP-exo. + Peak calling + + + + + + + + + 1.1 + Identify from molecular sequence analysis (typically from analysis of microarray or RNA-seq data) genes whose expression levels are significantly different between two sample groups. + Differential expression analysis + Differential gene analysis + Differential gene expression analysis + Differentially expressed gene identification + + + Differential gene expression analysis is used, for example, to identify which genes are up-regulated (increased expression) or down-regulated (decreased expression) between a group treated with a drug and a control groups. + Differential gene expression profiling + + + + + + + + + 1.1 + 1.21 + + Analyse gene expression patterns (typically from DNA microarray datasets) to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc. + + + Gene set testing + true + + + + + + + + + + 1.1 + Classify variants based on their potential effect on genes, especially functional effects on the expressed proteins. + + + Variants are typically classified by their position (intronic, exonic, etc.) in a gene transcript and (for variants in coding exons) by their effect on the protein sequence (synonymous, non-synonymous, frameshifting, etc.) + Variant classification + + + + + + + + + 1.1 + Identify biologically interesting variants by prioritizing individual variants, for example, homozygous variants absent in control genomes. + + + Variant prioritisation can be used for example to produce a list of variants responsible for 'knocking out' genes in specific genomes. Methods amino acid substitution, aggregative approaches, probabilistic approach, inheritance and unified likelihood-frameworks. + Variant prioritisation + + + + + + + + + + 1.1 + Detect, identify and map mutations, such as single nucleotide polymorphisms, short indels and structural variants, in multiple DNA sequences. Typically the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware, to study genomic alterations. + Variant mapping + Allele calling + Exome variant detection + Genome variant detection + Germ line variant calling + Mutation detection + Somatic variant calling + de novo mutation detection + + + Methods often utilise a database of aligned reads. + Somatic variant calling is the detection of variations established in somatic cells and hence not inherited as a germ line variant. + Variant detection + Variant calling + + + + + + + + + 1.1 + Detect large regions in a genome subject to copy-number variation, or other structural variations in genome(s). + Structural variation discovery + + + Methods might involve analysis of whole-genome array comparative genome hybridisation or single-nucleotide polymorphism arrays, paired-end mapping of sequencing data, or from analysis of short reads from new sequencing technologies. + Structural variation detection + + + + + + + + + 1.1 + Analyse sequencing data from experiments aiming to selectively sequence the coding regions of the genome. + Exome sequence analysis + + + Exome assembly + + + + + + + + + 1.1 + Analyse mapping density (read depth) of (typically) short reads from sequencing platforms, for example, to detect deletions and duplications. + + + Read depth analysis + + + + + + + + + 1.1 + Combine classical quantitative trait loci (QTL) analysis with gene expression profiling, for example, to describe describe cis- and trans-controlling elements for the expression of phenotype associated genes. + Gene expression QTL profiling + Gene expression quantitative trait loci profiling + eQTL profiling + + + Gene expression QTL analysis + + + + + + + + + 1.1 + Estimate the number of copies of loci of particular gene(s) in DNA sequences typically from gene-expression profiling technology based on microarray hybridisation-based experiments. For example, estimate copy number (or marker dosage) of a dominant marker in samples from polyploid plant cells or tissues, or chromosomal gains and losses in tumors. + Transcript copy number estimation + + + Methods typically implement some statistical model for hypothesis testing, and methods estimate total copy number, i.e. do not distinguish the two inherited chromosomes quantities (specific copy number). + Copy number estimation + + + + + + + + + 1.2 + Adapter removal + Remove forward and/or reverse primers from nucleic acid sequences (typically PCR products). + + + Primer removal + + + + + + + + + + + + + + + + + + + + + 1.2 + Infer a transcriptome sequence by analysis of short sequence reads. + + + Transcriptome assembly + + + + + + + + + 1.2 + 1.6 + + + Infer a transcriptome sequence without the aid of a reference genome, i.e. by comparing short sequences (reads) to each other. + + Transcriptome assembly (de novo) + true + + + + + + + + + 1.2 + 1.6 + + + Infer a transcriptome sequence by mapping short reads to a reference genome. + + Transcriptome assembly (mapping) + true + + + + + + + + + + + + + + + + + + + + + 1.3 + Convert one set of sequence coordinates to another, e.g. convert coordinates of one assembly to another, cDNA to genomic, CDS to genomic, protein translation to genomic etc. + + + Sequence coordinate conversion + + + + + + + + + 1.3 + Calculate similarity between 2 or more documents. + + + Document similarity calculation + + + + + + + + + + 1.3 + Cluster (group) documents on the basis of their calculated similarity. + + + Document clustering + + + + + + + + + + 1.3 + Recognise named entities, ontology concepts, tags, events, and dictionary terms within documents. + Concept mining + Entity chunking + Entity extraction + Entity identification + Event extraction + NER + Named-entity recognition + + + Named-entity and concept recognition + + + + + + + + + + + + 1.3 + Map data identifiers to one another for example to establish a link between two biological databases for the purposes of data integration. + Accession mapping + Identifier mapping + + + The mapping can be achieved by comparing identifier values or some other means, e.g. exact matches to a provided sequence. + ID mapping + + + + + + + + + 1.3 + Process data in such a way that makes it hard to trace to the person which the data concerns. + Data anonymisation + + + Anonymisation + + + + + + + + + 1.3 + (jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved. + 1.17 + + Search for and retrieve a data identifier of some kind, e.g. a database entry accession. + + + ID retrieval + true + + + + + + + + + + + + + + + + + + + + + 1.4 + Generate a checksum of a molecular sequence. + + + Sequence checksum generation + + + + + + + + + + + + + + + 1.4 + Construct a bibliography from the scientific literature. + Bibliography construction + + + Bibliography generation + + + + + + + + + 1.4 + Predict the structure of a multi-subunit protein and particularly how the subunits fit together. + + + Protein quaternary structure prediction + + + + + + + + + + + + + + + + + + + + + 1.4 + Analyse the surface properties of proteins or other macromolecules, including surface accessible pockets, interior inaccessible cavities etc. + + + Molecular surface analysis + + + + + + + + + 1.4 + Compare two or more ontologies, e.g. identify differences. + + + Ontology comparison + + + + + + + + + 1.4 + 1.9 + + Compare two or more ontologies, e.g. identify differences. + + + Ontology comparison + true + + + + + + + + + + + + + + + + 1.4 + Recognition of which format the given data is in. + Format identification + Format inference + Format recognition + + + 'Format recognition' is not a bioinformatics-specific operation, but of great relevance in bioinformatics. Should be removed from EDAM if/when captured satisfactorily in a suitable domain-generic ontology. + Format detection + + + + + + The has_input "Data" (data_0006) may cause visualisation or other problems although ontologically correct. But on the other hand it may be useful to distinguish from nullary operations without inputs. + + + + + + + + + 1.4 + Split a file containing multiple data items into many files, each containing one item. + File splitting + + + Splitting + + + + + + + + + 1.6 + true + Construct some data entity. + Construction + + + For non-analytical operations, see the 'Processing' branch. + Generation + + + + + + + + + 1.6 + (jison)This is a distinction made on basis of input; all features exist can be mapped to a sequence so this isn't needed. + 1.17 + + + Predict, recognise and identify functional or other key sites within nucleic acid sequences, typically by scanning for known motifs, patterns and regular expressions. + + + Nucleic acid sequence feature detection + true + + + + + + + + + 1.6 + Deposit some data in a database or some other type of repository or software system. + Data deposition + Data submission + Database deposition + Database submission + Submission + + + For non-analytical operations, see the 'Processing' branch. + Deposition + + + + + + + + + 1.6 + true + Group together some data entities on the basis of similarities such that entities in the same group (cluster) are more similar to each other than to those in other groups (clusters). + + + Clustering + + + + + + + + + 1.6 + 1.19 + + Construct some entity (typically a molecule sequence) from component pieces. + + + Assembly + true + + + + + + + + + 1.6 + true + Convert a data set from one form to another. + + + Conversion + + + + + + + + + 1.6 + Standardize or normalize data by some statistical method. + Normalisation + Standardisation + + + In the simplest normalisation means adjusting values measured on different scales to a common scale (often between 0.0 and 1.0), but can refer to more sophisticated adjustment whereby entire probability distributions of adjusted values are brought into alignment. Standardisation typically refers to an operation whereby a range of values are standardised to measure how many standard deviations a value is from its mean. + Standardisation and normalisation + + + + + + + + + 1.6 + Combine multiple files or data items into a single file or object. + + + Aggregation + + + + + + + + + + + + + + + 1.6 + Compare two or more scientific articles. + + + Article comparison + + + + + + + + + 1.6 + true + Mathematical determination of the value of something, typically a properly of a molecule. + + + Calculation + + + + + + + + + 1.6 + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + + Predict a molecular pathway or network. + + Pathway or network prediction + true + + + + + + + + + 1.6 + 1.12 + + The process of assembling many short DNA sequences together such that they represent the original chromosomes from which the DNA originated. + + + Genome assembly + true + + + + + + + + + 1.6 + 1.19 + + Generate a graph, or other visual representation, of data, showing the relationship between two or more variables. + + + Plotting + true + + + + + + + + + + + + + + + 1.7 + Image processing + The analysis of a image (typically a digital image) of some type in order to extract information from it. + + + Image analysis + + + + + + + + + + 1.7 + Analysis of data from a diffraction experiment. + + + Diffraction data analysis + + + + + + + + + + + + + + + 1.7 + Analysis of cell migration images in order to study cell migration, typically in order to study the processes that play a role in the disease progression. + + + Cell migration analysis + + + + + + + + + + 1.7 + Processing of diffraction data into a corrected, ordered, and simplified form. + + + Diffraction data reduction + + + + + + + + + + + + + + + 1.7 + Measurement of neurites; projections (axons or dendrites) from the cell body of a neuron, from analysis of neuron images. + + + Neurite measurement + + + + + + + + + 1.7 + The evaluation of diffraction intensities and integration of diffraction maxima from a diffraction experiment. + Diffraction profile fitting + Diffraction summation integration + + + Diffraction data integration + + + + + + + + + 1.7 + Phase a macromolecular crystal structure, for example by using molecular replacement or experimental phasing methods. + + + Phasing + + + + + + + + + 1.7 + A technique used to construct an atomic model of an unknown structure from diffraction data, based upon an atomic model of a known structure, either a related protein or the same protein from a different crystal form. + + + The technique solves the phase problem, i.e. retrieve information concern phases of the structure. + Molecular replacement + + + + + + + + + 1.7 + A method used to refine a structure by moving the whole molecule or parts of it as a rigid unit, rather than moving individual atoms. + + + Rigid body refinement usually follows molecular replacement in the assignment of a structure from diffraction data. + Rigid body refinement + + + + + + + + + + + + + + + + 1.7 + An image processing technique that combines and analyze multiple images of a particulate sample, in order to produce an image with clearer features that are more easily interpreted. + + + Single particle analysis is used to improve the information that can be obtained by relatively low resolution techniques, , e.g. an image of a protein or virus from transmission electron microscopy (TEM). + Single particle analysis + + + + + + + + + + + 1.7 + true + This is two related concepts. + Compare (align and classify) multiple particle images from a micrograph in order to produce a representative image of the particle. + + + A micrograph can include particles in multiple different orientations and/or conformations. Particles are compared and organised into sets based on their similarity. Typically iterations of classification and alignment and are performed to optimise the final 3D EM map. + Single particle alignment and classification + + + + + + + + + + + + + + + 1.7 + Clustering of molecular sequences on the basis of their function, typically using information from an ontology of gene function, or some other measure of functional phenotype. + Functional sequence clustering + + + Functional clustering + + + + + + + + + 1.7 + Classifiication (typically of molecular sequences) by assignment to some taxonomic hierarchy. + Taxonomy assignment + Taxonomic profiling + + + Taxonomic classification + + + + + + + + + + + + + + + + 1.7 + The prediction of the degree of pathogenicity of a microorganism from analysis of molecular sequences. + Pathogenicity prediction + + + Virulence prediction + + + + + + + + + + 1.7 + Analyse the correlation patterns among features/molecules across across a variety of experiments, samples etc. + Co-expression analysis + Gene co-expression network analysis + Gene expression correlation + Gene expression correlation analysis + + + Expression correlation analysis + + + + + + + + + + + + + + + 1.7 + true + Identify a correlation, i.e. a statistical relationship between two random variables or two sets of data. + + + Correlation + + + + + + + + + + + + + + + + 1.7 + Compute the covariance model for (a family of) RNA secondary structures. + + + RNA structure covariance model generation + + + + + + + + + 1.7 + 1.18 + + Predict RNA secondary structure by analysis, e.g. probabilistic analysis, of the shape of RNA folds. + + + RNA secondary structure prediction (shape-based) + true + + + + + + + + + 1.7 + 1.18 + + Prediction of nucleic-acid folding using sequence alignments as a source of data. + + + Nucleic acid folding prediction (alignment-based) + true + + + + + + + + + 1.7 + Count k-mers (substrings of length k) in DNA sequence data. + + + k-mer counting is used in genome and transcriptome assembly, metagenomic sequencing, and for error correction of sequence reads. + k-mer counting + + + + + + + + + + + + + + + 1.7 + Reconstructing the inner node labels of a phylogenetic tree from its leafes. + Phylogenetic tree reconstruction + Gene tree reconstruction + Species tree reconstruction + + + Note that this is somewhat different from simply analysing an existing tree or constructing a completely new one. + Phylogenetic reconstruction + + + + + + + + + 1.7 + Generate some data from a chosen probibalistic model, possibly to evaluate algorithms. + + + Probabilistic data generation + + + + + + + + + + 1.7 + Generate sequences from some probabilistic model, e.g. a model that simulates evolution. + + + Probabilistic sequence generation + + + + + + + + + + + + + + + + 1.7 + Identify or predict causes for antibiotic resistance from molecular sequence analysis. + + + Antimicrobial resistance prediction + + + + + + + + + + + + + + + 1.8 + Analysis of a set of objects, such as genes, annotated with given categories, where eventual over-/under-representation of certain categories within the studied set of objects is revealed. + Enrichment + Over-representation analysis + Functional enrichment + + + Categories from a relevant ontology can be used. The input is typically a set of genes or other biological objects, possibly represented by their identifiers, and the output of the analysis is typically a ranked list of categories, each associated with a statistical metric of over-/under-representation within the studied data. + Enrichment analysis + + + + + + + + + + + + + + + 1.8 + Analyse a dataset with respect to concepts from an ontology of chemical structure, leveraging chemical similarity information. + Chemical class enrichment + + + Chemical similarity enrichment + + + + + + + + + 1.8 + Plot an incident curve such as a survival curve, death curve, mortality curve. + + + Incident curve plotting + + + + + + + + + 1.8 + Identify and map patterns of genomic variations. + + + Methods often utilise a database of aligned reads. + Variant pattern analysis + + + + + + + + + 1.8 + 1.12 + + Model some biological system using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models. + + + Mathematical modelling + true + + + + + + + + + + + + + + + 1.9 + Visualise images resulting from various types of microscopy. + + + Microscope image visualisation + + + + + + + + + 1.9 + Annotate an image of some sort, typically with terms from a controlled vocabulary. + + + Image annotation + + + + + + + + + 1.9 + Replace missing data with substituted values, usually by using some statistical or other mathematical approach. + Data imputation + + + Imputation + + + + + + + + + + 1.9 + Visualise, format or render data from an ontology, typically a tree of terms. + Ontology browsing + + + Ontology visualisation + + + + + + + + + 1.9 + A method for making numerical assessments about the maximum percent of time that a conformer of a flexible macromolecule can exist and still be compatible with the experimental data. + + + Maximum occurrence analysis + + + + + + + + + + 1.9 + Compare the models or schemas used by two or more databases, or any other general comparison of databases rather than a detailed comparison of the entries themselves. + Data model comparison + Schema comparison + + + Database comparison + + + + + + + + + 1.9 + 1.24 + + + + Simulate the bevaviour of a biological pathway or network. + + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + Network simulation + true + + + + + + + + + 1.9 + Analyze read counts from RNA-seq experiments. + + + RNA-seq read count analysis + + + + + + + + + 1.9 + Identify and remove redundancy from a set of small molecule structures. + + + Chemical redundancy removal + + + + + + + + + 1.9 + Analyze time series data from an RNA-seq experiment. + + + RNA-seq time series data analysis + + + + + + + + + 1.9 + Simulate gene expression data, e.g. for purposes of benchmarking. + + + Simulated gene expression data generation + + + + + + + + + 1.12 + Identify semantic relations among entities and concepts within a text, using text mining techniques. + Relation discovery + Relation inference + Relationship discovery + Relationship extraction + Relationship inference + + + Relation extraction + + + + + + + + + + + + + + + 1.12 + Re-adjust the output of mass spectrometry experiments with shifted ppm values. + + + Mass spectra calibration + + + + + + + + + + + + + + + 1.12 + Align multiple data sets using information from chromatography and/or peptide identification, from mass spectrometry experiments. + + + Chromatographic alignment + + + + + + + + + + + + + + + 1.12 + The removal of isotope peaks in a spectrum, to represent the fragment ion as one data point. + Deconvolution + + + Deisotoping is commonly done to reduce complexity, and done in conjunction with the charge state deconvolution. + Deisotoping + + + + + + + + + + + + + + + + 1.12 + Technique for determining the amount of proteins in a sample. + Protein quantitation + + + Protein quantification + + + + + + + + + + + + + + + 1.12 + Determination of peptide sequence from mass spectrum. + Peptide-spectrum-matching + + + Peptide identification + + + + + + + + + + + + + + + + + + + + + 1.12 + Calculate the isotope distribution of a given chemical species. + + + Isotopic distributions calculation + + + + + + + + + 1.12 + Prediction of retention time in a mass spectrometry experiment based on compositional and structural properties of the separated species. + Retention time calculation + + + Retention time prediction + + + + + + + + + 1.12 + Quantification without the use of chemical tags. + + + Label-free quantification + + + + + + + + + 1.12 + Quantification based on the use of chemical tags. + + + Labeled quantification + + + + + + + + + 1.12 + Quantification by Selected/multiple Reaction Monitoring workflow (XIC quantitation of precursor / fragment mass pair). + + + MRM/SRM + + + + + + + + + 1.12 + Calculate number of identified MS2 spectra as approximation of peptide / protein quantity. + + + Spectral counting + + + + + + + + + 1.12 + Quantification analysis using stable isotope labeling by amino acids in cell culture. + + + SILAC + + + + + + + + + 1.12 + Quantification analysis using the AB SCIEX iTRAQ isobaric labelling workflow, wherein 2-8 reporter ions are measured in MS2 spectra near 114 m/z. + + + iTRAQ + + + + + + + + + 1.12 + Quantification analysis using labeling based on 18O-enriched H2O. + + + 18O labeling + + + + + + + + + 1.12 + Quantification analysis using the Thermo Fisher tandem mass tag labelling workflow. + + + TMT-tag + + + + + + + + + 1.12 + Quantification analysis using chemical labeling by stable isotope dimethylation. + + + Stable isotope dimethyl labelling + + + + + + + + + 1.12 + Peptide sequence tags are used as piece of information about a peptide obtained by tandem mass spectrometry. + + + Tag-based peptide identification + + + + + + + + + + 1.12 + Analytical process that derives a peptide's amino acid sequence from its tandem mass spectrum (MS/MS) without the assistance of a sequence database. + + + de Novo sequencing + + + + + + + + + 1.12 + Identification of post-translational modifications (PTMs) of peptides/proteins in mass spectrum. + + + PTM identification + + + + + + + + + + 1.12 + Determination of best matches between MS/MS spectrum and a database of protein or nucleic acid sequences. + + + Peptide database search + + + + + + + + + 1.12 + Peptide database search for identification of known and unknown PTMs looking for mass difference mismatches. + Modification-tolerant peptide database search + Unrestricted peptide database search + + + Blind peptide database search + + + + + + + + + 1.12 + 1.19 + + + Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search. + + + Validation of peptide-spectrum matches + true + + + + + + + + + + 1.12 + Validation of peptide-spectrum matches + Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search, and by comparison to search results with a database containing incorrect information. + + + Target-Decoy + + + + + + + + + 1.12 + Analyse data in order to deduce properties of an underlying distribution or population. + Empirical Bayes + + + Statistical inference + + + + + + + + + + 1.12 + A statistical calculation to estimate the relationships among variables. + Regression + + + Regression analysis + + + + + + + + + + + + + + + + + 1.12 + Model a metabolic network. This can include 1) reconstruction to break down a metabolic pathways into reactions, enzymes, and other relevant information, and compilation of this into a mathematical model and 2) simulations of metabolism based on the model. + + + Metabolic network reconstruction + Metabolic network simulation + Metabolic pathway simulation + Metabolic reconstruction + + + The terms and synyonyms here reflect that for practical intents and purposes, "pathway" and "network" can be treated the same. + Metabolic network modelling + + + + + + + + + + 1.12 + Predict the effect or function of an individual single nucleotide polymorphism (SNP). + + + SNP annotation + + + + + + + + + 1.12 + Prediction of genes or gene components from first principles, i.e. without reference to existing genes. + Gene prediction (ab-initio) + + + Ab-initio gene prediction + + + + + + + + + + 1.12 + Prediction of genes or gene components by reference to homologous genes. + Empirical gene finding + Empirical gene prediction + Evidence-based gene prediction + Gene prediction (homology-based) + Similarity-based gene prediction + Homology prediction + Orthology prediction + + + Homology-based gene prediction + + + + + + + + + + 1.12 + Construction of a statistical model, or a set of assumptions around some observed data, usually by describing a set of probability distributions which approximate the distribution of data. + + + Statistical modelling + + + + + + + + + + + 1.12 + Compare two or more molecular surfaces. + + + Molecular surface comparison + + + + + + + + + 1.12 + Annotate one or more sequences with functional information, such as cellular processes or metaobolic pathways, by reference to a controlled vocabulary - invariably the Gene Ontology (GO). + Sequence functional annotation + + + Gene functional annotation + + + + + + + + + 1.12 + Variant filtering is used to eliminate false positive variants based for example on base calling quality, strand and position information, and mapping info. + + + Variant filtering + + + + + + + + + 1.12 + Identify binding sites in nucleic acid sequences that are statistically significantly differentially bound between sample groups. + + + Differential binding analysis + + + + + + + + + + 1.13 + Analyze data from RNA-seq experiments. + + + RNA-Seq analysis + + + + + + + + + 1.13 + Visualise, format or render a mass spectrum. + + + Mass spectrum visualisation + + + + + + + + + 1.13 + Filter a set of files or data items according to some property. + Sequence filtering + rRNA filtering + + + Filtering + + + + + + + + + 1.14 + Identification of the best reference for mapping for a specific dataset from a list of potential references, when performing genetic variation analysis. + + + Reference identification + + + + + + + + + 1.14 + Label-free quantification by integration of ion current (ion counting). + Ion current integration + + + Ion counting + + + + + + + + + 1.14 + Chemical tagging free amino groups of intact proteins with stable isotopes. + ICPL + + + Isotope-coded protein label + + + + + + + + + 1.14 + Labeling all proteins and (possibly) all amino acids using C-13 or N-15 enriched grown medium or feed. + C-13 metabolic labeling + N-15 metabolic labeling + + + This includes N-15 metabolic labeling (labeling all proteins and (possibly) all amino acids using N-15 enriched grown medium or feed) and C-13 metabolic labeling (labeling all proteins and (possibly) all amino acids using C-13 enriched grown medium or feed). + Metabolic labeling + + + + + + + + + 1.15 + Construction of a single sequence assembly of all reads from different samples, typically as part of a comparative metagenomic analysis. + Sequence assembly (cross-assembly) + + + Cross-assembly + + + + + + + + + 1.15 + The comparison of samples from a metagenomics study, for example, by comparison of metagenome shotgun reads or assembled contig sequences, by comparison of functional profiles, or some other method. + + + Sample comparison + + + + + + + + + + 1.15 + Differential protein analysis + The analysis, using proteomics techniques, to identify proteins whose encoding genes are differentially expressed under a given experimental setup. + Differential protein expression analysis + + + Differential protein expression profiling + + + + + + + + + 1.15 + 1.17 + + The analysis, using any of diverse techniques, to identify genes that are differentially expressed under a given experimental setup. + + + Differential gene expression analysis + true + + + + + + + + + 1.15 + Visualise, format or render data arising from an analysis of multiple samples from a metagenomics/community experiment. + + + Multiple sample visualisation + + + + + + + + + 1.15 + The extrapolation of empirical characteristics of individuals or populations, backwards in time, to their common ancestors. + Ancestral sequence reconstruction + Character mapping + Character optimisation + + + Ancestral reconstruction is often used to recover possible ancestral character states of ancient, extinct organisms. + Ancestral reconstruction + + + + + + + + + 1.16 + Site localisation of post-translational modifications in peptide or protein mass spectra. + PTM scoring + Site localisation + + + PTM localisation + + + + + + + + + 1.16 + Operations concerning the handling and use of other tools. + Endpoint management + + + Service management + + + + + + + + + 1.16 + An operation supporting the browsing or discovery of other tools and services. + + + Service discovery + + + + + + + + + 1.16 + An operation supporting the aggregation of other services (at least two) into a functional unit, for the automation of some task. + + + Service composition + + + + + + + + + 1.16 + An operation supporting the calling (invocation) of other tools and services. + + + Service invocation + + + + + + + + + + + + + + + 1.16 + A data mining method typically used for studying biological networks based on pairwise correlations between variables. + WGCNA + Weighted gene co-expression network analysis + + + Weighted correlation network analysis + + + + + + + + + + + + + + + + 1.16 + Identification of protein, for example from one or more peptide identifications by tandem mass spectrometry. + Protein inference + + + Protein identification + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + Text annotation is the operation of adding notes, data and metadata, recognised entities and concepts, and their relations to a text (such as a scientific article). + Article annotation + Literature annotation + + + Text annotation + + + + + + + + + + 1.17 + A method whereby data on several variants are "collapsed" into a single covariate based on regions such as genes. + + + Genome-wide association studies (GWAS) analyse a genome-wide set of genetic variants in different individuals to see if any variant is associated with a trait. Traditional association techniques can lack the power to detect the significance of rare variants individually, or measure their compound effect (rare variant burden). "Collapsing methods" were developed to overcome these problems. + Collapsing methods + + + + + + + + + 1.17 + miRNA analysis + The analysis of microRNAs (miRNAs) : short, highly conserved small noncoding RNA molecules that are naturally occurring plant and animal genomes. + miRNA expression profiling + + + miRNA expression analysis + + + + + + + + + 1.17 + Counting and summarising the number of short sequence reads that map to genomic features. + + + Read summarisation + + + + + + + + + 1.17 + A technique whereby molecules with desired properties and function are isolated from libraries of random molecules, through iterative cycles of selection, amplification, and mutagenesis. + + + In vitro selection + + + + + + + + + 1.17 + The calculation of species richness for a number of individual samples, based on plots of the number of species as a function of the number of samples (rarefaction curves). + Species richness assessment + + + Rarefaction + + + + + + + + + + 1.17 + An operation which groups reads or contigs and assigns them to operational taxonomic units. + Binning + Binning shotgun reads + + + Binning methods use one or a combination of compositional features or sequence similarity. + Read binning + + + + + + + + + + 1.17 + true + Counting and measuring experimentally determined observations into quantities. + Quantitation + + + Quantification + + + + + + + + + 1.17 + Quantification of data arising from RNA-Seq high-throughput sequencing, typically the quantification of transcript abundances durnig transcriptome analysis in a gene expression study. + RNA-Seq quantitation + + + RNA-Seq quantification + + + + + + + + + + + + + + + 1.17 + Match experimentally measured mass spectrum to a spectrum in a spectral library or database. + + + Spectral library search + + + + + + + + + 1.17 + Sort a set of files or data items according to some property. + + + Sorting + + + + + + + + + 1.17 + Mass spectra identification of compounds that are produced by living systems. Including polyketides, terpenoids, phenylpropanoids, alkaloids and antibiotics. + De novo metabolite identification + Fragmenation tree generation + Metabolite identification + + + Natural product identification + + + + + + + + + 1.19 + Identify and assess specific genes or regulatory regions of interest that are differentially methylated. + Differentially-methylated region identification + + + DMR identification + + + + + + + + + 1.21 + + + Genotyping of multiple loci, typically characterizing microbial species isolates using internal fragments of multiple housekeeping genes. + MLST + + + Multilocus sequence typing + + + + + + + + + + + + + + + + + 1.21 + Calculate a theoretical mass spectrometry spectra for given sequences. + Spectrum prediction + + + Spectrum calculation + + + + + + + + + + + + + + + 1.22 + 3D visualization of a molecular trajectory. + + + Trajectory visualization + + + + + + + + + + 1.22 + Compute Essential Dynamics (ED) on a simulation trajectory: an analysis of molecule dynamics using PCA (Principal Component Analysis) applied to the atomic positional fluctuations. + ED + PCA + Principal modes + + + Principal Component Analysis (PCA) is a multivariate statistical analysis to obtain collective variables and reduce the dimensionality of the system. + Essential dynamics + + + + + + + + + + + + + + + + + + + + + 1.22 + Obtain force field parameters (charge, bonds, dihedrals, etc.) from a molecule, to be used in molecular simulations. + Ligand parameterization + Molecule parameterization + + + Forcefield parameterisation + + + + + + + + + 1.22 + Analyse DNA sequences in order to determine an individual's DNA characteristics, for example in criminal forensics, parentage testing and so on. + DNA fingerprinting + DNA profiling + + + + + + + + + + 1.22 + Predict or detect active sites in proteins; the region of an enzyme which binds a substrate bind and catalyses a reaction. + Active site detection + + + Active site prediction + + + + + + + + + + 1.22 + Predict or detect ligand-binding sites in proteins; a region of a protein which reversibly binds a ligand for some biochemical purpose, such as transport or regulation of protein function. + Ligand-binding site detection + Peptide-protein binding prediction + + + Ligand-binding site prediction + + + + + + + + + + 1.22 + Predict or detect metal ion-binding sites in proteins. + Metal-binding site detection + Protein metal-binding site prediction + + + Metal-binding site prediction + + + + + + + + + + + + + + + + + + + + + + 1.22 + Model or simulate protein-protein binding using comparative modelling or other techniques. + Protein docking + + + Protein-protein docking + + + + + + + + + + + + + + + + + + + + + 1.22 + Predict DNA-binding proteins. + DNA-binding protein detection + DNA-protein interaction prediction + Protein-DNA interaction prediction + + + DNA-binding protein prediction + + + + + + + + + + + + + + + + + + + + + 1.22 + Predict RNA-binding proteins. + Protein-RNA interaction prediction + RNA-binding protein detection + RNA-protein interaction prediction + + + RNA-binding protein prediction + + + + + + + + + 1.22 + Predict or detect RNA-binding sites in protein sequences. + Protein-RNA binding site detection + Protein-RNA binding site prediction + RNA binding site detection + + + RNA binding site prediction + + + + + + + + + 1.22 + Predict or detect DNA-binding sites in protein sequences. + Protein-DNA binding site detection + Protein-DNA binding site prediction + DNA binding site detection + + + DNA binding site prediction + + + + + + + + + + + + + + + + 1.22 + Identify or predict intrinsically disordered regions in proteins. + + + Protein disorder prediction + + + + + + + + + + 1.22 + Extract structured information from unstructured ("free") or semi-structured textual documents. + IE + + + Information extraction + + + + + + + + + + 1.22 + Retrieve resources from information systems matching a specific information need. + + + Information retrieval + + + + + + + + + + + + + + + 1.24 + Genomic analysis + Study of genomic feature structure, variation, function and evolution at a genomic scale. + Genome analysis + + + + + + + + + 1.24 + The determination of cytosine methylation status of specific positions in a nucleic acid sequences (usually reads from a bisulfite sequencing experiment). + + + Methylation calling + + + + + + + + + + + + + + + 1.24 + The identification of changes in DNA sequence or chromosome structure, usually in the context of diagnostic tests for disease, or to study ancestry or phylogeny. + Genetic testing + + + This can include indirect methods which reveal the results of genetic changes, such as RNA analysis to indicate gene expression, or biochemical analysis to identify expressed proteins. + DNA testing + + + + + + + + + + 1.24 + The processing of reads from high-throughput sequencing machines. + + + Sequence read processing + + + + + + + + + + + + + + + + 1.24 + Render (visualise) a network - typically a biological network of some sort. + Network rendering + Protein interaction network rendering + Protein interaction network visualisation + Network visualisation + + + + + + + + + + + + + + + + 1.24 + Render (visualise) a biological pathway. + Pathway rendering + + + Pathway visualisation + + + + + + + + + + + + + + + + + + + + + 1.24 + Generate, process or analyse a biological network. + Biological network analysis + Biological network modelling + Biological network prediction + Network comparison + Network modelling + Network prediction + Network simulation + Network topology simulation + + + Network analysis + + + + + + + + + + + + + + + + + + + + + + 1.24 + Generate, process or analyse a biological pathway. + Biological pathway analysis + Biological pathway modelling + Biological pathway prediction + Functional pathway analysis + Pathway comparison + Pathway modelling + Pathway prediction + Pathway simulation + + + Pathway analysis + + + + + + + + + + + 1.24 + Predict a metabolic pathway. + + + Metabolic pathway prediction + + + + + + + + + 1.24 + Assigning sequence reads to separate groups / files based on their index tag (sample origin). + Sequence demultiplexing + + + NGS sequence runs are often performed with multiple samples pooled together. In such cases, an index tag (or "barcode") - a unique sequence of between 6 and 12bp - is ligated to each sample's genetic material so that the sequence reads from different samples can be identified. The process of demultiplexing (dividing sequence reads into separate files for each index tag/sample) may be performed automatically by the sequencing hardware. Alternatively the reads may be lumped together in one file with barcodes still attached, requiring you to do the splitting using software. In such cases, a "mapping" file is used which indicates which barcodes correspond to which samples. + Demultiplexing + + + + + + + + + + + + + + + + + + + + + 1.24 + A process used in statistics, machine learning, and information theory that reduces the number of random variables by obtaining a set of principal variables. + Dimension reduction + + + Dimensionality reduction + + + + + + + + + + + + + + + + + + + + + + 1.24 + A dimensionality reduction process that selects a subset of relevant features (variables, predictors) for use in model construction. + Attribute selection + Variable selection + Variable subset selection + + + Feature selection + + + + + + + + + + + + + + + + + + + + + + 1.24 + A dimensionality reduction process which builds (ideally) informative and non-redundant values (features) from an initial set of measured data, to aid subsequent generalization, learning or interpretation. + Feature projection + + + Feature extraction + + + + + + + + + + + + + + + + + + + + + + 1.24 + Virtual screening is used in drug discovery to identify potential drug compounds. It involves searching libraries of small molecules in order to identify those molecules which are most likely to bind to a drug target (typically a protein receptor or enzyme). + Ligand-based screening + Ligand-based virtual screening + Structure-based screening + Structured-based virtual screening + Virtual ligand screening + + + Virtual screening is widely used for lead identification, lead optimization, and scaffold hopping during drug design and discovery. + Virtual screening + + + + + + + + + 1.24 + The application of phylogenetic and other methods to estimate paleogeographical events such as speciation. + Biogeographic dating + Speciation dating + Species tree dating + Tree-dating + + + Tree dating + + + + + + + + + + + + + + + + + + + + + + 1.24 + The development and use of mathematical models and systems analysis for the description of ecological processes, and applications such as the sustainable management of resources. + + + Ecological modelling + + + + + + + + + 1.24 + Mapping between gene tree nodes and species tree nodes or branches, to analyse and account for possible differences between gene histories and species histories, explaining this in terms of gene-scale events such as duplication, loss, transfer etc. + Gene tree / species tree reconciliation + + + Methods typically test for topological similarity between trees using for example a congruence index. + Phylogenetic tree reconciliation + + + + + + + + + 1.24 + The detection of genetic selection, or (the end result of) the process by which certain traits become more prevalent in a species than other traits. + + + Selection detection + + + + + + + + + 1.25 + A statistical procedure that uses an orthogonal transformation to convert a set of observations of possibly correlated variables into a set of values of linearly uncorrelated variables called principal components. + + + Principal component analysis + + + + + + + + + + 1.25 + Identify where sections of the genome are repeated and the number of repeats in the genome varies between individuals. + CNV detection + + + Copy number variation detection + + + + + + + + + 1.25 + Identify deletion events causing the number of repeats in the genome to vary between individuals. + + + Deletion detection + + + + + + + + + 1.25 + Identify duplication events causing the number of repeats in the genome to vary between individuals. + + + Duplication detection + + + + + + + + + 1.25 + Identify copy number variations which are complex, e.g. multi-allelic variations that have many structural alleles and have rearranged multiple times in the ancestral genomes. + + + Complex CNV detection + + + + + + + + + 1.25 + Identify amplification events causing the number of repeats in the genome to vary between individuals. + + + Amplification detection + + + + + + + + + + + + + + + + 1.25 + Predict adhesins in protein sequences. + + + An adhesin is a cell-surface component that facilitate the adherence of a microorganism to a cell or surface. They are important virulence factors during establishment of infection and thus are targeted during vaccine development approaches that seek to block adhesin function and prevent adherence to host cell. + Adhesin prediction + + + + + + + + + 1.25 + Design new protein molecules with specific structural or functional properties. + Protein redesign + Rational protein design + de novo protein design + + + Protein design + + + + + + + + + + 1.25 + The design of small molecules with specific biological activity, such as inhibitors or modulators for proteins that are of therapeutic interest. This can involve the modification of individual atoms, the addition or removal of molecular fragments, and the use reaction-based design to explore tractable synthesis options for the small molecule. + Drug design + Ligand-based drug design + Structure-based drug design + Structure-based small molecule design + Small molecule design can involve assessment of target druggability and flexibility, molecular docking, in silico fragment screening, molecular dynamics, and homology modeling. + There are two broad categories of small molecule design techniques when applied to the design of drugs: ligand-based drug design (e.g. ligand similarity) and structure-based drug design (ligand docking) methods. Ligand similarity methods exploit structural similarities to known active ligands, whereas ligand docking methods use the 3D structure of a target protein to predict the binding modes and affinities of ligands to it. + Small molecule design + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The estimation of the power of a test; that is the probability of correctly rejecting the null hypothesis when it is false. + Estimation of statistical power + Power analysis + + + Power test + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The prediction of DNA modifications (e.g. N4-methylcytosine and N6-Methyladenine) using, for example, statistical models. + + + DNA modification prediction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The analysis and simulation of disease transmission using, for example, statistical methods such as the SIR-model. + + + Disease transmission analysis + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The correction of p-values from multiple statistical tests to correct for false positives. + False discovery rate estimation + FDR estimation + + + Multiple testing correction + + + + + + + + + + beta12orEarlier + true + A category denoting a rather broad domain or field of interest, of study, application, work, data, or technology. Topics have no clearly defined borders between each other. + sumo:FieldOfStudy + + + Topic + + + + + + + + + + + + + + + + + beta12orEarlier + true + The processing and analysis of nucleic acid sequence, structural and other data. + Nucleic acid bioinformatics + Nucleic acid informatics + Nucleic_acids + Nucleic acid physicochemistry + Nucleic acid properties + + + Nucleic acids + + http://purl.bioontology.org/ontology/MSH/D017422 + http://purl.bioontology.org/ontology/MSH/D017423 + + + + + + + + + beta12orEarlier + true + Archival, processing and analysis of protein data, typically molecular sequence and structural data. + Protein bioinformatics + Protein informatics + Proteins + Protein databases + + + Proteins + + http://purl.bioontology.org/ontology/MSH/D020539 + + + + + + + + + beta12orEarlier + 1.13 + + The structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids. + + + Metabolites + true + + + + + + + + + beta12orEarlier + true + The archival, processing and analysis of molecular sequences (monomer composition of polymers) including molecular sequence data resources, sequence sites, alignments, motifs and profiles. + Sequence_analysis + Biological sequences + Sequence databases + + + + Sequence analysis + + http://purl.bioontology.org/ontology/MSH/D017421 + + + + + + + + + beta12orEarlier + true + The curation, processing, analysis and prediction of data about the structure of biological molecules, typically proteins and nucleic acids and other macromolecules. + Biomolecular structure + Structural bioinformatics + Structure_analysis + Computational structural biology + Molecular structure + Structure data resources + Structure databases + Structures + + + + This includes related concepts such as structural properties, alignments and structural motifs. + Structure analysis + + http://purl.bioontology.org/ontology/MSH/D015394 + + + + + + + + + beta12orEarlier + true + The prediction of molecular structure, including the prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features, and the folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations. + Structure_prediction + DNA structure prediction + Nucleic acid design + Nucleic acid folding + Nucleic acid structure prediction + Protein fold recognition + Protein structure prediction + RNA structure prediction + + + This includes the recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s), for example by threading, or the alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment). + Structure prediction + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + The alignment (equivalence between sites) of molecular sequences, structures or profiles (representing a sequence or structure alignment). + + Alignment + true + + + + + + + + + + beta12orEarlier + true + The study of evolutionary relationships amongst organisms. + Phylogeny + Phylogenetic clocks + Phylogenetic dating + Phylogenetic simulation + Phylogenetic stratigraphy + Phylogeny reconstruction + + + + This includes diverse phylogenetic methods, including phylogenetic tree construction, typically from molecular sequence or morphological data, methods that simulate DNA sequence evolution, a phylogenetic tree or the underlying data, or which estimate or use molecular clock and stratigraphic (age) data, methods for studying gene evolution etc. + Phylogeny + + http://purl.bioontology.org/ontology/MSH/D010802 + + + + + + + + + + beta12orEarlier + true + The study of gene or protein functions and their interactions in totality in a given organism, tissue, cell etc. + Functional_genomics + + + + Functional genomics + + + + + + + + + + beta12orEarlier + true + The conceptualisation, categorisation and nomenclature (naming) of entities or phenomena within biology or bioinformatics. This includes formal ontologies, controlled vocabularies, structured glossary, symbols and terminology or other related resource. + Ontology_and_terminology + Applied ontology + Ontologies + Ontology + Ontology relations + Terminology + Upper ontology + + + + Ontology and terminology + + http://purl.bioontology.org/ontology/MSH/D002965 + + + + + + + + + beta12orEarlier + 1.13 + + The search and query of data sources (typically databases or ontologies) in order to retrieve entries or other information. + + + + Information retrieval + true + + + + + + + + + beta12orEarlier + true + VT 1.5.6 Bioinformatics + The archival, curation, processing and analysis of complex biological data. + Bioinformatics + + + + This includes data processing in general, including basic handling of files and databases, datatypes, workflows and annotation. + Bioinformatics + + http://purl.bioontology.org/ontology/MSH/D016247 + + + + + + + + + beta12orEarlier + true + Computer graphics + VT 1.2.5 Computer graphics + Rendering (drawing on a computer screen) or visualisation of molecular sequences, structures or other biomolecular data. + Data rendering + Data_visualisation + + + Data visualisation + + + + + + + + + + beta12orEarlier + 1.3 + + + The study of the thermodynamic properties of a nucleic acid. + + Nucleic acid thermodynamics + true + + + + + + + + + + beta12orEarlier + The archival, curation, processing and analysis of nucleic acid structural information, such as whole structures, structural features and alignments, and associated annotation. + Nucleic acid structure + Nucleic_acid_structure_analysis + DNA melting + DNA structure + Nucleic acid denaturation + Nucleic acid thermodynamics + RNA alignment + RNA structure + RNA structure alignment + + + Includes secondary and tertiary nucleic acid structural data, nucleic acid thermodynamic, thermal and conformational properties including DNA or DNA/RNA denaturation (melting) etc. + Nucleic acid structure analysis + + + + + + + + + + beta12orEarlier + RNA sequences and structures. + RNA + Small RNA + + + RNA + + + + + + + + + + beta12orEarlier + 1.3 + + + Topic for the study of restriction enzymes, their cleavage sites and the restriction of nucleic acids. + + Nucleic acid restriction + true + + + + + + + + + beta12orEarlier + true + The mapping of complete (typically nucleotide) sequences. Mapping (in the sense of short read alignment, or more generally, just alignment) has application in RNA-Seq analysis (mapping of transcriptomics reads), variant discovery (e.g. mapping of exome capture), and re-sequencing (mapping of WGS reads). + Mapping + Genetic linkage + Linkage + Linkage mapping + Synteny + + + This includes resources that aim to identify, map or analyse genetic markers in DNA sequences, for example to produce a genetic (linkage) map of a chromosome or genome or to analyse genetic linkage and synteny. It also includes resources for physical (sequence) maps of a DNA sequence showing the physical distance (base pairs) between features or landmarks such as restriction sites, cloned DNA fragments, genes and other genetic markers. It also covers for example the alignment of sequences of (typically millions) of short reads to a reference genome. + Mapping + + + + + + + + + + beta12orEarlier + 1.3 + + + The study of codon usage in nucleotide sequence(s), genetic codes and so on. + + Genetic codes and codon usage + true + + + + + + + + + beta12orEarlier + The translation of mRNA into protein and subsequent protein processing in the cell. + Protein_expression + Translation + + + + Protein expression + + + + + + + + + + beta12orEarlier + 1.3 + + + Methods that aims to identify, predict, model or analyse genes or gene structure in DNA sequences. + + This includes the study of promoters, coding regions, splice sites, etc. Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc. + Gene finding + true + + + + + + + + + beta12orEarlier + 1.3 + + + The transcription of DNA into mRNA. + + Transcription + true + + + + + + + + + beta12orEarlier + beta13 + + + Promoters in DNA sequences (region of DNA that facilitates the transcription of a particular gene by binding RNA polymerase and transcription factor proteins). + + Promoters + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + The folding (in 3D space) of nucleic acid molecules. + + + Nucleic acid folding + true + + + + + + + + + beta12orEarlier + true + Gene structure, regions which make an RNA product and features such as promoters, coding regions, gene fusion, splice sites etc. + Gene features + Gene_structure + Fusion genes + + + This includes the study of promoters, coding regions etc. + This includes operons (operators, promoters and genes) from a bacterial genome. For example the operon leader and trailer gene, gene composition of the operon and associated information. + Gene structure + + + + + + + + + + beta12orEarlier + true + Protein and peptide identification, especially in the study of whole proteomes of organisms. + Proteomics + Bottom-up proteomics + Discovery proteomics + MS-based targeted proteomics + MS-based untargeted proteomics + Metaproteomics + Peptide identification + Protein and peptide identification + Quantitative proteomics + Targeted proteomics + Top-down proteomics + + + + Includes metaproteomics: proteomics analysis of an environmental sample. + Proteomics includes any methods (especially high-throughput) that separate, characterize and identify expressed proteins such as mass spectrometry, two-dimensional gel electrophoresis and protein microarrays, as well as in-silico methods that perform proteolytic or mass calculations on a protein sequence and other analyses of protein production data, for example in different cells or tissues. + Proteomics + + http://purl.bioontology.org/ontology/MSH/D040901 + + + + + + + + + + beta12orEarlier + true + The elucidation of the three dimensional structure for all (available) proteins in a given organism. + Structural_genomics + + + + Structural genomics + + + + + + + + + + beta12orEarlier + true + The study of the physical and biochemical properties of peptides and proteins, for example the hydrophobic, hydrophilic and charge properties of a protein. + Protein physicochemistry + Protein_properties + Protein hydropathy + + + Protein properties + + + + + + + + + + beta12orEarlier + true + Protein-protein, protein-DNA/RNA and protein-ligand interactions, including analysis of known interactions and prediction of putative interactions. + Protein_interactions + Protein interaction map + Protein interaction networks + Protein interactome + Protein-DNA interaction + Protein-DNA interactions + Protein-RNA interaction + Protein-RNA interactions + Protein-ligand interactions + Protein-nucleic acid interactions + Protein-protein interactions + + + This includes experimental (e.g. yeast two-hybrid) and computational analysis techniques. + Protein interactions + + + + + + + + + + beta12orEarlier + true + Protein stability, folding (in 3D space) and protein sequence-structure-function relationships. This includes for example study of inter-atomic or inter-residue interactions in protein (3D) structures, the effect of mutation, and the design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein. + Protein_folding_stability_and_design + Protein design + Protein folding + Protein residue interactions + Protein stability + Rational protein design + + + Protein folding, stability and design + + + + + + + + + + + beta12orEarlier + beta13 + + + Two-dimensional gel electrophoresis image and related data. + + Two-dimensional gel electrophoresis + true + + + + + + + + + beta12orEarlier + 1.13 + + An analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase. + + + Mass spectrometry + true + + + + + + + + + beta12orEarlier + beta13 + + + Protein microarray data. + + Protein microarrays + true + + + + + + + + + beta12orEarlier + 1.3 + + + The study of the hydrophobic, hydrophilic and charge properties of a protein. + + Protein hydropathy + true + + + + + + + + + beta12orEarlier + The study of how proteins are transported within and without the cell, including signal peptides, protein subcellular localisation and export. + Protein_targeting_and_localisation + Protein localisation + Protein sorting + Protein targeting + + + Protein targeting and localisation + + + + + + + + + + beta12orEarlier + 1.3 + + + Enzyme or chemical cleavage sites and proteolytic or mass calculations on a protein sequence. + + Protein cleavage sites and proteolysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + The comparison of two or more protein structures. + + + Use this concept for methods that are exclusively for protein structure. + Protein structure comparison + true + + + + + + + + + beta12orEarlier + 1.3 + + + The processing and analysis of inter-atomic or inter-residue interactions in protein (3D) structures. + + Protein residue interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein-protein interactions, individual interactions and networks, protein complexes, protein functional coupling etc. + + Protein-protein interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein-ligand (small molecule) interactions. + + Protein-ligand interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein-DNA/RNA interactions. + + Protein-nucleic acid interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + The design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein. + + Protein design + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + G-protein coupled receptors (GPCRs). + + G protein-coupled receptors (GPCR) + true + + + + + + + + + beta12orEarlier + true + Carbohydrates, typically including structural information. + Carbohydrates + + + Carbohydrates + + + + + + + + + + beta12orEarlier + true + Lipids and their structures. + Lipidomics + Lipids + + + Lipids + + + + + + + + + + beta12orEarlier + true + Small molecules of biological significance, typically archival, curation, processing and analysis of structural information. + Small_molecules + Amino acids + Chemical structures + Drug structures + Drug targets + Drugs and target structures + Metabolite structures + Peptides + Peptides and amino acids + Target structures + Targets + Toxins + Toxins and targets + CHEBI:23367 + + + Small molecules include organic molecules, metal-organic compounds, small polypeptides, small polysaccharides and oligonucleotides. Structural data is usually included. + This concept excludes macromolecules such as proteins and nucleic acids. + This includes the structures of drugs, drug target, their interactions and binding affinities. Also the structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids. Also the physicochemical, biochemical or structural properties of amino acids or peptides. Also structural and associated data for toxic chemical substances. + Small molecules + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Edit, convert or otherwise change a molecular sequence, either randomly or specifically. + + Sequence editing + true + + + + + + + + + beta12orEarlier + true + The archival, processing and analysis of the basic character composition of molecular sequences, for example character or word frequency, ambiguity, complexity, particularly regions of low complexity, and repeats or the repetitive nature of molecular sequences. + Sequence_composition_complexity_and_repeats + Low complexity sequences + Nucleic acid repeats + Protein repeats + Protein sequence repeats + Repeat sequences + Sequence complexity + Sequence composition + Sequence repeats + + + This includes repetitive elements within a nucleic acid sequence, e.g. long terminal repeats (LTRs); sequences (typically retroviral) directly repeated at both ends of a sequence and other types of repeating unit. + This includes short repetitive subsequences (repeat sequences) in a protein sequence. + Sequence composition, complexity and repeats + + + + + + + + + beta12orEarlier + 1.3 + + + Conserved patterns (motifs) in molecular sequences, that (typically) describe functional or other key sites. + + Sequence motifs + true + + + + + + + + + beta12orEarlier + 1.12 + + The comparison of two or more molecular sequences, for example sequence alignment and clustering. + + + The comparison might be on the basis of sequence, physico-chemical or some other properties of the sequences. + Sequence comparison + true + + + + + + + + + beta12orEarlier + true + The archival, detection, prediction and analysis of positional features such as functional and other key sites, in molecular sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them. + Sequence_sites_features_and_motifs + Functional sites + HMMs + Sequence features + Sequence motifs + Sequence profiles + Sequence sites + + + Sequence sites, features and motifs + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Search and retrieve molecular sequences that are similar to a sequence-based query (typically a simple sequence). + + The query is a sequence-based entity such as another sequence, a motif or profile. + Sequence database search + true + + + + + + + + + beta12orEarlier + 1.7 + + The comparison and grouping together of molecular sequences on the basis of their similarities. + + + This includes systems that generate, process and analyse sequence clusters. + Sequence clustering + true + + + + + + + + + beta12orEarlier + true + Structural features or common 3D motifs within protein structures, including the surface of a protein structure, such as biological interfaces with other molecules. + Protein 3D motifs + Protein_structural_motifs_and_surfaces + Protein structural features + Protein structural motifs + Protein surfaces + Structural motifs + + + This includes conformation of conserved substructures, conserved geometry (spatial arrangement) of secondary structure or protein backbone, solvent-exposed surfaces, internal cavities, the analysis of shape, hydropathy, electrostatic patches, role and functions etc. + Protein structural motifs and surfaces + + + + + + + + + + beta12orEarlier + 1.3 + + + The processing, analysis or use of some type of structural (3D) profile or template; a computational entity (typically a numerical matrix) that is derived from and represents a structure or structure alignment. + + Structural (3D) profiles + true + + + + + + + + + beta12orEarlier + 1.12 + + The prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features. + + + Protein structure prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + The folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations. + + + Nucleic acid structure prediction + true + + + + + + + + + beta12orEarlier + 1.7 + + The prediction of three-dimensional structure of a (typically protein) sequence from first principles, using a physics-based or empirical scoring function and without using explicit structural templates. + + + Ab initio structure prediction + true + + + + + + + + + beta12orEarlier + 1.4 + + + The modelling of the three-dimensional structure of a protein using known sequence and structural data. + + Homology modelling + true + + + + + + + + + + beta12orEarlier + true + Molecular flexibility + Molecular motions + The study and simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation. + Molecular_dynamics + Protein dynamics + + + This includes methods such as Molecular Dynamics, Coarse-grained dynamics, metadynamics, Quantum Mechanics, QM/MM, Markov State Models, etc. This includes resources concerning flexibility and motion in protein and other molecular structures. + Molecular dynamics + + + + + + + + + + beta12orEarlier + true + 1.12 + + The modelling the structure of proteins in complex with small molecules or other macromolecules. + + + Molecular docking + true + + + + + + + + + beta12orEarlier + 1.3 + + The prediction of secondary or supersecondary structure of protein sequences. + + + Protein secondary structure prediction + true + + + + + + + + + beta12orEarlier + 1.3 + + The prediction of tertiary structure of protein sequences. + + + Protein tertiary structure prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + The recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s). + + + Protein fold recognition + true + + + + + + + + + beta12orEarlier + 1.7 + + The alignment of molecular sequences or sequence profiles (representing sequence alignments). + + + This includes the generation of alignments (the identification of equivalent sites), the analysis of alignments, editing, visualisation, alignment databases, the alignment (equivalence between sites) of sequence profiles (representing sequence alignments) and so on. + Sequence alignment + true + + + + + + + + + beta12orEarlier + 1.7 + + The superimposition of molecular tertiary structures or structural (3D) profiles (representing a structure or structure alignment). + + + This includes the generation, storage, analysis, rendering etc. of structure alignments. + Structure alignment + true + + + + + + + + + beta12orEarlier + 1.3 + + The alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment). + + + Threading + true + + + + + + + + + beta12orEarlier + 1.3 + + + Sequence profiles; typically a positional, numerical matrix representing a sequence alignment. + + Sequence profiles include position-specific scoring matrix (position weight matrix), hidden Markov models etc. + Sequence profiles and HMMs + true + + + + + + + + + beta12orEarlier + 1.3 + + + The reconstruction of a phylogeny (evolutionary relatedness amongst organisms), for example, by building a phylogenetic tree. + + Currently too specific for the topic sub-ontology (but might be unobsoleted). + Phylogeny reconstruction + true + + + + + + + + + + beta12orEarlier + true + The integrated study of evolutionary relationships and whole genome data, for example, in the analysis of species trees, horizontal gene transfer and evolutionary reconstruction. + Phylogenomics + + + + Phylogenomics + + + + + + + + + + beta12orEarlier + beta13 + + + Simulated polymerase chain reaction (PCR). + + Virtual PCR + true + + + + + + + + + beta12orEarlier + true + The assembly of fragments of a DNA sequence to reconstruct the original sequence. + Sequence_assembly + Assembly + + + Assembly has two broad types, de-novo and re-sequencing. Re-sequencing is a specialised case of assembly, where an assembled (typically de-novo assembled) reference genome is available and is about 95% identical to the re-sequenced genome. All other cases of assembly are 'de-novo'. + Sequence assembly + + + + + + + + + + + beta12orEarlier + true + Stable, naturally occurring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms. + DNA variation + Genetic_variation + Genomic variation + Mutation + Polymorphism + Somatic mutations + + + Genetic variation + + http://purl.bioontology.org/ontology/MSH/D014644 + + + + + + + + + beta12orEarlier + 1.3 + + + Microarrays, for example, to process microarray data or design probes and experiments. + + Microarrays + http://purl.bioontology.org/ontology/MSH/D046228 + true + + + + + + + + + beta12orEarlier + true + VT 3.1.7 Pharmacology and pharmacy + The study of drugs and their effects or responses in living systems. + Pharmacology + Computational pharmacology + Pharmacoinformatics + + + + Pharmacology + + + + + + + + + + beta12orEarlier + true + http://edamontology.org/topic_0197 + The analysis of levels and patterns of synthesis of gene products (proteins and functional RNA) including interpretation in functional terms of gene expression data. + Expression + Gene_expression + Codon usage + DNA chips + DNA microarrays + Gene expression profiling + Gene transcription + Gene translation + Transcription + + + + Gene expression levels are analysed by identifying, quantifying or comparing mRNA transcripts, for example using microarrays, RNA-seq, northern blots, gene-indexed expression profiles etc. + This includes the study of codon usage in nucleotide sequence(s), genetic codes and so on. + Gene expression + + http://purl.bioontology.org/ontology/MSH/D015870 + + + + + + + + + beta12orEarlier + true + The regulation of gene expression. + Regulatory genomics + + + Gene regulation + + + + + + + + + + + beta12orEarlier + true + The influence of genotype on drug response, for example by correlating gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity. + Pharmacogenomics + Pharmacogenetics + + + + Pharmacogenomics + + + + + + + + + + + beta12orEarlier + true + VT 3.1.4 Medicinal chemistry + The design and chemical synthesis of bioactive molecules, for example drugs or potential drug compounds, for medicinal purposes. + Drug design + Medicinal_chemistry + + + + This includes methods that search compound collections, generate or analyse drug 3D conformations, identify drug targets with structural docking etc. + Medicinal chemistry + + + + + + + + + + beta12orEarlier + 1.3 + + + Information on a specific fish genome including molecular sequences, genes and annotation. + + Fish + true + + + + + + + + + beta12orEarlier + 1.3 + + + Information on a specific fly genome including molecular sequences, genes and annotation. + + Flies + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Information on a specific mouse or rat genome including molecular sequences, genes and annotation. + + The resource may be specific to a group of mice / rats or all mice / rats. + Mice or rats + true + + + + + + + + + beta12orEarlier + 1.3 + + + Information on a specific worm genome including molecular sequences, genes and annotation. + + Worms + true + + + + + + + + + beta12orEarlier + 1.3 + + The processing and analysis of the bioinformatics literature and bibliographic data, such as literature search and query. + + + Literature analysis + true + + + + + + + + + + beta12orEarlier + The processing and analysis of natural language, such as scientific literature in English, in order to extract data and information, or to enable human-computer interaction. + NLP + Natural_language_processing + BioNLP + Literature mining + Text analytics + Text data mining + Text mining + + + + Natural language processing + + + + + + + + + + + + beta12orEarlier + Deposition and curation of database accessions, including annotation, typically with terms from a controlled vocabulary. + Data_submission_annotation_and_curation + Data curation + Data provenance + Database curation + + + + Data submission, annotation, and curation + + + + + + + + + beta12orEarlier + 1.13 + + The management and manipulation of digital documents, including database records, files and reports. + + + Document, record and content management + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation of a molecular sequence. + + Sequence annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + + Annotation of a genome. + + Genome annotation + true + + + + + + + + + + beta12orEarlier + Spectroscopy + An analytical technique that exploits the magenetic properties of certain atomic nuclei to provide information on the structure, dynamics, reaction state and chemical environment of molecules. + NMR spectroscopy + Nuclear magnetic resonance spectroscopy + NMR + HOESY + Heteronuclear Overhauser Effect Spectroscopy + NOESY + Nuclear Overhauser Effect Spectroscopy + ROESY + Rotational Frame Nuclear Overhauser Effect Spectroscopy + + + + NMR + + + + + + + + + + beta12orEarlier + 1.12 + + The classification of molecular sequences based on some measure of their similarity. + + + Methods including sequence motifs, profile and other diagnostic elements which (typically) represent conserved patterns (of residues or properties) in molecular sequences. + Sequence classification + true + + + + + + + + + beta12orEarlier + 1.3 + + + primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc. + + Protein classification + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Sequence motifs, or sequence profiles derived from an alignment of molecular sequences of a particular type. + + This includes comparison, discovery, recognition etc. of sequence motifs. + Sequence motif or profile + true + + + + + + + + + beta12orEarlier + true + Protein chemical modifications, e.g. post-translational modifications. + PTMs + Post-translational modifications + Protein post-translational modification + Protein_modifications + Post-translation modifications + Protein chemical modifications + Protein post-translational modifications + GO:0006464 + MOD:00000 + + + EDAM does not describe all possible protein modifications. For fine-grained annotation of protein modification use the Gene Ontology (children of concept GO:0006464) and/or the Protein Modifications ontology (children of concept MOD:00000) + Protein modifications + + + + + + + + + + beta12orEarlier + true + http://edamontology.org/topic_3076 + Molecular interactions, biological pathways, networks and other models. + Molecular_interactions_pathways_and_networks + Biological models + Biological networks + Biological pathways + Cellular process pathways + Disease pathways + Environmental information processing pathways + Gene regulatory networks + Genetic information processing pathways + Interactions + Interactome + Metabolic pathways + Molecular interactions + Networks + Pathways + Signal transduction pathways + Signaling pathways + + + + Molecular interactions, pathways and networks + + + + + + + + + + + beta12orEarlier + true + VT 1.3 Information sciences + VT 1.3.3 Information retrieval + VT 1.3.4 Information management + VT 1.3.5 Knowledge management + VT 1.3.99 Other + The study and practice of information processing and use of computer information systems. + Information management + Information science + Knowledge management + Informatics + + + Informatics + + + + + + + + + + beta12orEarlier + 1.3 + + Data resources for the biological or biomedical literature, either a primary source of literature or some derivative. + + + Literature data resources + true + + + + + + + + + beta12orEarlier + true + Laboratory management and resources, for example, catalogues of biological resources for use in the lab including cell lines, viruses, plasmids, phages, DNA probes and primers and so on. + Laboratory_Information_management + Laboratory resources + + + + Laboratory information management + + + + + + + + + + beta12orEarlier + 1.3 + + + General cell culture or data on a specific cell lines. + + Cell and tissue culture + true + + + + + + + + + + beta12orEarlier + true + VT 1.5.15 Ecology + The ecological and environmental sciences and especially the application of information technology (ecoinformatics). + Ecology + Computational ecology + Ecoinformatics + Ecological informatics + Ecosystem science + + + + Ecology + + http://purl.bioontology.org/ontology/MSH/D004777 + + + + + + + + + + beta12orEarlier + Electron diffraction experiment + The study of matter by studying the interference pattern from firing electrons at a sample, to analyse structures at resolutions higher than can be achieved using light. + Electron_microscopy + Electron crystallography + SEM + Scanning electron microscopy + Single particle electron microscopy + TEM + Transmission electron microscopy + + + + Electron microscopy + + + + + + + + + + beta12orEarlier + beta13 + + + The cell cycle including key genes and proteins. + + Cell cycle + true + + + + + + + + + beta12orEarlier + 1.13 + + The physicochemical, biochemical or structural properties of amino acids or peptides. + + + Peptides and amino acids + true + + + + + + + + + beta12orEarlier + 1.3 + + + A specific organelle, or organelles in general, typically the genes and proteins (or genome and proteome). + + Organelles + true + + + + + + + + + beta12orEarlier + 1.3 + + + Ribosomes, typically of ribosome-related genes and proteins. + + Ribosomes + true + + + + + + + + + beta12orEarlier + beta13 + + + A database about scents. + + Scents + true + + + + + + + + + beta12orEarlier + 1.13 + + The structures of drugs, drug target, their interactions and binding affinities. + + + Drugs and target structures + true + + + + + + + + + beta12orEarlier + true + A specific organism, or group of organisms, used to study a particular aspect of biology. + Organisms + Model_organisms + + + + This may include information on the genome (including molecular sequences and map, genes and annotation), proteome, as well as more general information about an organism. + Model organisms + + + + + + + + + + beta12orEarlier + true + Whole genomes of one or more organisms, or genomes in general, such as meta-information on genomes, genome projects, gene names etc. + Genomics + Exomes + Genome annotation + Genomes + Personal genomics + Synthetic genomics + Viral genomics + Whole genomes + + + + Genomics + + http://purl.bioontology.org/ontology/MSH/D023281 + + + + + + + + + + beta12orEarlier + true + Particular gene(s), gene family or other gene group or system and their encoded proteins.Primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc., curation of a particular protein or protein family, or any other proteins that have been classified as members of a common group. + Genes, gene family or system + Gene_and protein_families + Gene families + Gene family + Gene system + Protein families + Protein sequence classification + + + + A protein families database might include the classifier (e.g. a sequence profile) used to build the classification. + Gene and protein families + + + + + + + + + + + beta12orEarlier + 1.13 + + Study of chromosomes. + + + Chromosomes + true + + + + + + + + + beta12orEarlier + true + The study of genetic constitution of a living entity, such as an individual, and organism, a cell and so on, typically with respect to a particular observable phenotypic traits, or resources concerning such traits, which might be an aspect of biochemistry, physiology, morphology, anatomy, development and so on. + Genotype and phenotype resources + Genotype-phenotype + Genotype-phenotype analysis + Genotype_and_phenotype + Genotype + Genotyping + Phenotype + Phenotyping + + + + Genotype and phenotype + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Gene expression e.g. microarray data, northern blots, gene-indexed expression profiles etc. + + Gene expression and microarray + true + + + + + + + + + beta12orEarlier + true + Molecular probes (e.g. a peptide probe or DNA microarray probe) or PCR primers and hybridisation oligos in a nucleic acid sequence. + Probes_and_primers + Primer quality + Primers + Probes + + + This includes the design of primers for PCR and DNA amplification or the design of molecular probes. + Probes and primers + http://purl.bioontology.org/ontology/MSH/D015335 + + + + + + + + + beta12orEarlier + true + VT 3.1.6 Pathology + Diseases, including diseases in general and the genes, gene variations and proteins involved in one or more specific diseases. + Disease + Pathology + + + + Pathology + + + + + + + + + + beta12orEarlier + 1.3 + + + A particular protein, protein family or other group of proteins. + + Specific protein resources + true + + + + + + + + + beta12orEarlier + true + VT 1.5.25 Taxonomy + Organism classification, identification and naming. + Taxonomy + + + Taxonomy + + + + + + + + + + beta12orEarlier + 1.8 + + Archival, processing and analysis of protein sequences and sequence-based entities such as alignments, motifs and profiles. + + + Protein sequence analysis + true + + + + + + + + + beta12orEarlier + 1.8 + + The archival, processing and analysis of nucleotide sequences and and sequence-based entities such as alignments, motifs and profiles. + + + Nucleic acid sequence analysis + true + + + + + + + + + beta12orEarlier + 1.3 + + + The repetitive nature of molecular sequences. + + Repeat sequences + true + + + + + + + + + beta12orEarlier + 1.3 + + + The (character) complexity of molecular sequences, particularly regions of low complexity. + + Low complexity sequences + true + + + + + + + + + beta12orEarlier + beta13 + + + A specific proteome including protein sequences and annotation. + + Proteome + true + + + + + + + + + beta12orEarlier + DNA sequences and structure, including processes such as methylation and replication. + DNA analysis + DNA + Ancient DNA + Chromosomes + + + The DNA sequences might be coding or non-coding sequences. + DNA + + + + + + + + + + beta12orEarlier + 1.13 + + Protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. + + + Coding RNA + true + + + + + + + + + + beta12orEarlier + true + Non-coding or functional RNA sequences, including regulatory RNA sequences, ribosomal RNA (rRNA) and transfer RNA (tRNA). + Functional_regulatory_and_non-coding_RNA + Functional RNA + Long ncRNA + Long non-coding RNA + Non-coding RNA + Regulatory RNA + Small and long non-coding RNAs + Small interfering RNA + Small ncRNA + Small non-coding RNA + Small nuclear RNA + Small nucleolar RNA + lncRNA + miRNA + microRNA + ncRNA + piRNA + piwi-interacting RNA + siRNA + snRNA + snoRNA + + + Non-coding RNA includes piwi-interacting RNA (piRNA), small nuclear RNA (snRNA) and small nucleolar RNA (snoRNA). Regulatory RNA includes microRNA (miRNA) - short single stranded RNA molecules that regulate gene expression, and small interfering RNA (siRNA). + Functional, regulatory and non-coding RNA + + + + + + + + + + beta12orEarlier + 1.3 + + + One or more ribosomal RNA (rRNA) sequences. + + rRNA + true + + + + + + + + + beta12orEarlier + 1.3 + + + One or more transfer RNA (tRNA) sequences. + + tRNA + true + + + + + + + + + beta12orEarlier + 1.8 + + Protein secondary structure or secondary structure alignments. + + + This includes assignment, analysis, comparison, prediction, rendering etc. of secondary structure data. + Protein secondary structure + true + + + + + + + + + beta12orEarlier + 1.3 + + + RNA secondary or tertiary structure and alignments. + + RNA structure + true + + + + + + + + + beta12orEarlier + 1.8 + + Protein tertiary structures. + + + Protein tertiary structure + true + + + + + + + + + beta12orEarlier + 1.3 + + + Classification of nucleic acid sequences and structures. + + Nucleic acid classification + true + + + + + + + + + beta12orEarlier + 1.14 + + Primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc., curation of a particular protein or protein family, or any other proteins that have been classified as members of a common group. + + + Protein families + true + + + + + + + + + beta12orEarlier + true + Protein tertiary structural domains and folds in a protein or polypeptide chain. + Protein_folds_and_structural_domains + Intramembrane regions + Protein domains + Protein folds + Protein membrane regions + Protein structural domains + Protein topological domains + Protein transmembrane regions + Transmembrane regions + + + This includes topological domains such as cytoplasmic regions in a protein. + This includes trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements. For example, the location and size of the membrane spanning segments and intervening loop regions, transmembrane region IN/OUT orientation relative to the membrane, plus the following data for each amino acid: A Z-coordinate (the distance to the membrane center), the free energy of membrane insertion (calculated in a sliding window over the sequence) and a reliability score. The z-coordinate implies information about re-entrant helices, interfacial helices, the tilt of a transmembrane helix and loop lengths. + Protein folds and structural domains + + + + + + + + + + beta12orEarlier + 1.3 + + Nucleotide sequence alignments. + + + Nucleic acid sequence alignment + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein sequence alignments. + + A sequence profile typically represents a sequence alignment. + Protein sequence alignment + true + + + + + + + + + beta12orEarlier + 1.3 + + + + The archival, detection, prediction and analysis ofpositional features such as functional sites in nucleotide sequences. + + Nucleic acid sites and features + true + + + + + + + + + beta12orEarlier + 1.3 + + + + The detection, identification and analysis of positional features in proteins, such as functional sites. + + Protein sites and features + true + + + + + + + + + + + beta12orEarlier + Proteins that bind to DNA and control transcription of DNA to mRNA (transcription factors) and also transcriptional regulatory sites, elements and regions (such as promoters, enhancers, silencers and boundary elements / insulators) in nucleotide sequences. + Transcription_factors_and_regulatory_sites + -10 signals + -35 signals + Attenuators + CAAT signals + CAT box + CCAAT box + CpG islands + Enhancers + GC signals + Isochores + Promoters + TATA signals + TFBS + Terminators + Transcription factor binding sites + Transcription factors + Transcriptional regulatory sites + + + This includes CpG rich regions (isochores) in a nucleotide sequence. + This includes promoters, CAAT signals, TATA signals, -35 signals, -10 signals, GC signals, primer binding sites for initiation of transcription or reverse transcription, enhancer, attenuator, terminators and ribosome binding sites. + Transcription factor proteins either promote (as an activator) or block (as a repressor) the binding to DNA of RNA polymerase. Regulatory sites including transcription factor binding site as well as promoters, enhancers, silencers and boundary elements / insulators. + Transcription factors and regulatory sites + + + + + + + + + + + beta12orEarlier + 1.0 + + + + Protein phosphorylation and phosphorylation sites in protein sequences. + + Phosphorylation sites + true + + + + + + + + + beta12orEarlier + 1.13 + + Metabolic pathways. + + + Metabolic pathways + true + + + + + + + + + beta12orEarlier + 1.13 + + Signaling pathways. + + + Signaling pathways + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein and peptide identification. + + Protein and peptide identification + true + + + + + + + + + beta12orEarlier + Biological or biomedical analytical workflows or pipelines. + Pipelines + Workflows + Software integration + Tool integration + Tool interoperability + + + Workflows + + + + + + + + + + beta12orEarlier + 1.0 + + + Structuring data into basic types and (computational) objects. + + Data types and objects + true + + + + + + + + + beta12orEarlier + 1.3 + + + Theoretical biology. + + Theoretical biology + true + + + + + + + + + beta12orEarlier + 1.3 + + + Mitochondria, typically of mitochondrial genes and proteins. + + Mitochondria + true + + + + + + + + + beta12orEarlier + VT 1.5.10 Botany + VT 1.5.22 Plant science + Plants, e.g. information on a specific plant genome including molecular sequences, genes and annotation. + Botany + Plant + Plant science + Plants + Plant_biology + Plant anatomy + Plant cell biology + Plant ecology + Plant genetics + Plant physiology + + + The resource may be specific to a plant, a group of plants or all plants. + Plant biology + + + + + + + + + + beta12orEarlier + VT 1.5.28 + Study of viruses, e.g. sequence and structural data, interactions of viral proteins, or a viral genome including molecular sequences, genes and annotation. + Virology + + + Virology + + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Fungi and molds, e.g. information on a specific fungal genome including molecular sequences, genes and annotation. + + The resource may be specific to a fungus, a group of fungi or all fungi. + Fungi + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). Definition is wrong anyway. + 1.17 + + + Pathogens, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation. + + The resource may be specific to a pathogen, a group of pathogens or all pathogens. + Pathogens + true + + + + + + + + + beta12orEarlier + 1.3 + + + Arabidopsis-specific data. + + Arabidopsis + true + + + + + + + + + beta12orEarlier + 1.3 + + + Rice-specific data. + + Rice + true + + + + + + + + + beta12orEarlier + 1.3 + + + Informatics resources that aim to identify, map or analyse genetic markers in DNA sequences, for example to produce a genetic (linkage) map of a chromosome or genome or to analyse genetic linkage and synteny. + + Genetic mapping and linkage + true + + + + + + + + + beta12orEarlier + true + The study (typically comparison) of the sequence, structure or function of multiple genomes. + Comparative_genomics + + + + Comparative genomics + + + + + + + + + + beta12orEarlier + Mobile genetic elements, such as transposons, Plasmids, Bacteriophage elements and Group II introns. + Mobile_genetic_elements + Transposons + + + Mobile genetic elements + + + + + + + + + + beta12orEarlier + beta13 + + + Human diseases, typically describing the genes, mutations and proteins implicated in disease. + + Human disease + true + + + + + + + + + beta12orEarlier + true + VT 3.1.3 Immunology + The application of information technology to immunology such as immunological processes, immunological genes, proteins and peptide ligands, antigens and so on. + Immunology + + + + Immunology + + http://purl.bioontology.org/ontology/MSH/D007120 + http://purl.bioontology.org/ontology/MSH/D007125 + + + + + + + + + beta12orEarlier + true + Lipoproteins (protein-lipid assemblies), and proteins or region of a protein that spans or are associated with a membrane. + Membrane_and_lipoproteins + Lipoproteins + Membrane proteins + Transmembrane proteins + + + Membrane and lipoproteins + + + + + + + + + + + beta12orEarlier + true + Proteins that catalyze chemical reaction, the kinetics of enzyme-catalysed reactions, enzyme nomenclature etc. + Enzymology + Enzymes + + + Enzymes + + + + + + + + + + beta12orEarlier + 1.13 + + PCR primers and hybridisation oligos in a nucleic acid sequence. + + + Primers + true + + + + + + + + + beta12orEarlier + 1.13 + + Regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript. + + + PolyA signal or sites + true + + + + + + + + + beta12orEarlier + 1.13 + + CpG rich regions (isochores) in a nucleotide sequence. + + + CpG island and isochores + true + + + + + + + + + beta12orEarlier + 1.13 + + Restriction enzyme recognition sites (restriction sites) in a nucleic acid sequence. + + + Restriction sites + true + + + + + + + + + beta12orEarlier + 1.13 + + + + Splice sites in a nucleotide sequence or alternative RNA splicing events. + + Splice sites + true + + + + + + + + + beta12orEarlier + 1.13 + + Matrix/scaffold attachment regions (MARs/SARs) in a DNA sequence. + + + Matrix/scaffold attachment sites + true + + + + + + + + + beta12orEarlier + 1.13 + + Operons (operators, promoters and genes) from a bacterial genome. + + + Operon + true + + + + + + + + + beta12orEarlier + 1.13 + + Whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in a DNA sequence. + + + Promoters + true + + + + + + + + + beta12orEarlier + true + VT 1.5.24 Structural biology + The molecular structure of biological molecules, particularly macromolecules such as proteins and nucleic acids. + Structural_biology + Structural assignment + Structural determination + Structure determination + + + + This includes experimental methods for biomolecular structure determination, such as X-ray crystallography, nuclear magnetic resonance (NMR), circular dichroism (CD) spectroscopy, microscopy etc., including the assignment or modelling of molecular structure from such data. + Structural biology + + + + + + + + + + beta12orEarlier + 1.13 + + Trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements. + + + Protein membrane regions + true + + + + + + + + + beta12orEarlier + 1.13 + + The comparison of two or more molecular structures, for example structure alignment and clustering. + + + This might involve comparison of secondary or tertiary (3D) structural information. + Structure comparison + true + + + + + + + + + beta12orEarlier + true + The study of gene and protein function including the prediction of functional properties of a protein. + Functional analysis + Function_analysis + Protein function analysis + Protein function prediction + + + + Function analysis + + + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Specific bacteria or archaea, e.g. information on a specific prokaryote genome including molecular sequences, genes and annotation. + + The resource may be specific to a prokaryote, a group of prokaryotes or all prokaryotes. + Prokaryotes and Archaea + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein data resources. + + Protein databases + true + + + + + + + + + beta12orEarlier + 1.3 + + + Experimental methods for biomolecular structure determination, such as X-ray crystallography, nuclear magnetic resonance (NMR), circular dichroism (CD) spectroscopy, microscopy etc., including the assignment or modelling of molecular structure from such data. + + Structure determination + true + + + + + + + + + beta12orEarlier + true + VT 1.5.11 Cell biology + Cells, such as key genes and proteins involved in the cell cycle. + Cell_biology + Cells + Cellular processes + Protein subcellular localization + + + Cell biology + + + + + + + + + + beta12orEarlier + beta13 + + + Topic focused on identifying, grouping, or naming things in a structured way according to some schema based on observable relationships. + + Classification + true + + + + + + + + + beta12orEarlier + 1.3 + + + Lipoproteins (protein-lipid assemblies). + + Lipoproteins + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Visualise a phylogeny, for example, render a phylogenetic tree. + + Phylogeny visualisation + true + + + + + + + + + beta12orEarlier + true + The application of information technology to chemistry in biological research environment. + Chemical informatics + Chemoinformatics + Cheminformatics + + + + Cheminformatics + + + + + + + + + + beta12orEarlier + true + The holistic modelling and analysis of complex biological systems and the interactions therein. + Systems_biology + Biological modelling + Biological system modelling + Systems modelling + + + + This includes databases of models and methods to construct or analyse a model. + Systems biology + + http://purl.bioontology.org/ontology/MSH/D049490 + + + + + + + + + beta12orEarlier + The application of statistical methods to biological problems. + Statistics_and_probability + Bayesian methods + Biostatistics + Descriptive statistics + Gaussian processes + Inferential statistics + Markov processes + Multivariate statistics + Probabilistic graphical model + Probability + Statistics + + + + Statistics and probability + + + + http://purl.bioontology.org/ontology/MSH/D056808 + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Search for and retrieve molecular structures that are similar to a structure-based query (typically another structure or part of a structure). + + The query is a structure-based entity such as another structure, a 3D (structural) motif, 3D profile or template. + Structure database search + true + + + + + + + + + beta12orEarlier + true + The construction, analysis, evaluation, refinement etc. of models of a molecules properties or behaviour, including the modelling the structure of proteins in complex with small molecules or other macromolecules (docking). + Molecular_modelling + Comparative modelling + Docking + Homology modeling + Homology modelling + Molecular docking + + + Molecular modelling + + + + + + + + + + beta12orEarlier + 1.2 + + + The prediction of functional properties of a protein. + + Protein function prediction + true + + + + + + + + + beta12orEarlier + 1.13 + + Single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs. + + + SNP + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Predict transmembrane domains and topology in protein sequences. + + Transmembrane protein prediction + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + The comparison two or more nucleic acid (typically RNA) secondary or tertiary structures. + + Use this concept for methods that are exclusively for nucleic acid structures. + Nucleic acid structure comparison + true + + + + + + + + + beta12orEarlier + 1.13 + + Exons in a nucleotide sequences. + + + Exons + true + + + + + + + + + beta12orEarlier + 1.13 + + Transcription of DNA into RNA including the regulation of transcription. + + + Gene transcription + true + + + + + + + + + + beta12orEarlier + DNA mutation. + DNA_mutation + + + DNA mutation + + + + + + + + + + beta12orEarlier + true + VT 3.2.16 Oncology + The study of cancer, for example, genes and proteins implicated in cancer. + Cancer biology + Oncology + Cancer + Neoplasm + Neoplasms + + + + Oncology + + + + + + + + + + beta12orEarlier + 1.13 + + Structural and associated data for toxic chemical substances. + + + Toxins and targets + true + + + + + + + + + beta12orEarlier + 1.13 + + Introns in a nucleotide sequences. + + + Introns + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A topic concerning primarily bioinformatics software tools, typically the broad function or purpose of a tool. + + + Tool topic + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A general area of bioinformatics study, typically the broad scope or category of content of a bioinformatics journal or conference proceeding. + + + Study topic + true + + + + + + + + + beta12orEarlier + 1.3 + + + Biological nomenclature (naming), symbols and terminology. + + Nomenclature + true + + + + + + + + + beta12orEarlier + 1.3 + + + The genes, gene variations and proteins involved in one or more specific diseases. + + Disease genes and proteins + true + + + + + + + + + + beta12orEarlier + true + http://edamontology.org/topic_3040 + Protein secondary or tertiary structural data and/or associated annotation. + Protein structure + Protein_structure_analysis + Protein tertiary structure + + + + Protein structure analysis + + + + + + + + + + beta12orEarlier + The study of human beings in general, including the human genome and proteome. + Humans + Human_biology + + + Human biology + + + + + + + + + + beta12orEarlier + 1.3 + + + Informatics resource (typically a database) primarily focused on genes. + + Gene resources + true + + + + + + + + + beta12orEarlier + 1.3 + + + Yeast, e.g. information on a specific yeast genome including molecular sequences, genes and annotation. + + Yeast + true + + + + + + + + + beta12orEarlier + (jison) Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Eukaryotes or data concerning eukaryotes, e.g. information on a specific eukaryote genome including molecular sequences, genes and annotation. + + The resource may be specific to a eukaryote, a group of eukaryotes or all eukaryotes. + Eukaryotes + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Invertebrates, e.g. information on a specific invertebrate genome including molecular sequences, genes and annotation. + + The resource may be specific to an invertebrate, a group of invertebrates or all invertebrates. + Invertebrates + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Vertebrates, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation. + + The resource may be specific to a vertebrate, a group of vertebrates or all vertebrates. + Vertebrates + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Unicellular eukaryotes, e.g. information on a unicellular eukaryote genome including molecular sequences, genes and annotation. + + The resource may be specific to a unicellular eukaryote, a group of unicellular eukaryotes or all unicellular eukaryotes. + Unicellular eukaryotes + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein secondary or tertiary structure alignments. + + Protein structure alignment + true + + + + + + + + + + beta12orEarlier + The study of matter and their structure by means of the diffraction of X-rays, typically the diffraction pattern caused by the regularly spaced atoms of a crystalline sample. + Crystallography + X-ray_diffraction + X-ray crystallography + X-ray microscopy + + + + X-ray diffraction + + + + + + + + + + beta12orEarlier + 1.3 + + + Conceptualisation, categorisation and naming of entities or phenomena within biology or bioinformatics. + + Ontologies, nomenclature and classification + http://purl.bioontology.org/ontology/MSH/D002965 + true + + + + + + + + + + beta12orEarlier + Immunity-related proteins and their ligands. + Immunoproteins_and_antigens + Antigens + Immunopeptides + Immunoproteins + Therapeutic antibodies + + + + This includes T cell receptors (TR), major histocompatibility complex (MHC), immunoglobulin superfamily (IgSF) / antibodies, major histocompatibility complex superfamily (MhcSF), etc." + Immunoproteins and antigens + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Specific molecules, including large molecules built from repeating subunits (macromolecules) and small molecules of biological significance. + CHEBI:23367 + + Molecules + true + + + + + + + + + + beta12orEarlier + true + VT 3.1.9 Toxicology + Toxins and the adverse effects of these chemical substances on living organisms. + Toxicology + Computational toxicology + Toxicoinformatics + + + + Toxicology + + + + + + + + + + beta12orEarlier + beta13 + + + Parallelised sequencing processes that are capable of sequencing many thousands of sequences simultaneously. + + High-throughput sequencing + true + + + + + + + + + beta12orEarlier + 1.13 + + Gene regulatory networks. + + + Gene regulatory networks + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Informatics resources dedicated to one or more specific diseases (not diseases in general). + + Disease (specific) + true + + + + + + + + + beta12orEarlier + 1.13 + + Variable number of tandem repeat (VNTR) polymorphism in a DNA sequence. + + + VNTR + true + + + + + + + + + beta12orEarlier + 1.13 + + + Microsatellite polymorphism in a DNA sequence. + + + Microsatellites + true + + + + + + + + + beta12orEarlier + 1.13 + + + Restriction fragment length polymorphisms (RFLP) in a DNA sequence. + + + RFLP + true + + + + + + + + + + beta12orEarlier + true + DNA polymorphism. + DNA_polymorphism + Microsatellites + RFLP + SNP + Single nucleotide polymorphism + VNTR + Variable number of tandem repeat polymorphism + snps + + + Includes microsatellite polymorphism in a DNA sequence. A microsatellite polymorphism is a very short subsequence that is repeated a variable number of times between individuals. These repeats consist of the nucleotides cytosine and adenosine. + Includes restriction fragment length polymorphisms (RFLP) in a DNA sequence. An RFLP is defined by the presence or absence of a specific restriction site of a bacterial restriction enzyme. + Includes single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs. A SNP is a DNA sequence variation where a single nucleotide differs between members of a species or paired chromosomes in an individual. + Includes variable number of tandem repeat (VNTR) polymorphism in a DNA sequence. VNTRs occur in non-coding regions of DNA and consists sub-sequence that is repeated a multiple (and varied) number of times. + DNA polymorphism + + + + + + + + + + beta12orEarlier + 1.3 + + + Topic for the design of nucleic acid sequences with specific conformations. + + Nucleic acid design + true + + + + + + + + + beta13 + 1.3 + + + The design of primers for PCR and DNA amplification or the design of molecular probes. + + Primer or probe design + true + + + + + + + + + beta13 + 1.2 + + + Molecular secondary or tertiary (3D) structural data resources, typically of proteins and nucleic acids. + + Structure databases + true + + + + + + + + + beta13 + 1.2 + + + Nucleic acid (secondary or tertiary) structure, such as whole structures, structural features and associated annotation. + + Nucleic acid structure + true + + + + + + + + + beta13 + 1.3 + + + Molecular sequence data resources, including sequence sites, alignments, motifs and profiles. + + Sequence databases + true + + + + + + + + + beta13 + 1.3 + + + Nucleotide sequences and associated concepts such as sequence sites, alignments, motifs and profiles. + + Nucleic acid sequences + true + + + + + + + + + beta13 + 1.3 + + Protein sequences and associated concepts such as sequence sites, alignments, motifs and profiles. + + + Protein sequences + true + + + + + + + + + beta13 + 1.3 + + + Protein interaction networks. + + Protein interaction networks + true + + + + + + + + + beta13 + true + VT 1.5.4 Biochemistry and molecular biology + The molecular basis of biological activity, particularly the macromolecules (e.g. proteins and nucleic acids) that are essential to life. + Molecular_biology + Biological processes + + + + Molecular biology + + + + + + + + + + beta13 + 1.3 + + + Mammals, e.g. information on a specific mammal genome including molecular sequences, genes and annotation. + + Mammals + true + + + + + + + + + beta13 + true + VT 1.5.5 Biodiversity conservation + The degree of variation of life forms within a given ecosystem, biome or an entire planet. + Biodiversity + + + + Biodiversity + + http://purl.bioontology.org/ontology/MSH/D044822 + + + + + + + + + beta13 + 1.3 + + + The comparison, grouping together and classification of macromolecules on the basis of sequence similarity. + + This includes the results of sequence clustering, ortholog identification, assignment to families, annotation etc. + Sequence clusters and classification + true + + + + + + + + + beta13 + true + The study of genes, genetic variation and heredity in living organisms. + Genetics + Genes + Heredity + + + + Genetics + + http://purl.bioontology.org/ontology/MSH/D005823 + + + + + + + + + beta13 + true + The genes and genetic mechanisms such as Mendelian inheritance that underly continuous phenotypic traits (such as height or weight). + Quantitative_genetics + + + Quantitative genetics + + + + + + + + + + beta13 + true + The distribution of allele frequencies in a population of organisms and its change subject to evolutionary processes including natural selection, genetic drift, mutation and gene flow. + Population_genetics + + + + Population genetics + + + + + + + + + + beta13 + 1.3 + + Regulatory RNA sequences including microRNA (miRNA) and small interfering RNA (siRNA). + + + Regulatory RNA + true + + + + + + + + + beta13 + 1.13 + + The documentation of resources such as tools, services and databases and how to get help. + + + Documentation and help + true + + + + + + + + + beta13 + 1.3 + + + The structural and functional organisation of genes and other genetic elements. + + Genetic organisation + true + + + + + + + + + beta13 + true + The application of information technology to health, disease and biomedicine. + Biomedical informatics + Clinical informatics + Health and disease + Health informatics + Healthcare informatics + Medical_informatics + + + + Medical informatics + + + + + + + + + + beta13 + true + VT 1.5.14 Developmental biology + How organisms grow and develop. + Developmental_biology + Development + + + + Developmental biology + + + + + + + + + + beta13 + true + The development of organisms between the one-cell stage (typically the zygote) and the end of the embryonic stage. + Embryology + + + + Embryology + + + + + + + + + + beta13 + true + VT 3.1.1 Anatomy and morphology + The form and function of the structures of living organisms. + Anatomy + + + + Anatomy + + + + + + + + + + beta13 + true + The scientific literature, language processing, reference information, and documentation. + Language + Literature + Literature_and_language + Bibliography + Citations + Documentation + References + Scientific literature + + + + This includes the documentation of resources such as tools, services and databases, user support, how to get help etc. + Literature and language + http://purl.bioontology.org/ontology/MSH/D011642 + + + + + + + + + beta13 + true + VT 1.5 Biological sciences + VT 1.5.1 Aerobiology + VT 1.5.13 Cryobiology + VT 1.5.23 Reproductive biology + VT 1.5.3 Behavioural biology + VT 1.5.7 Biological rhythm + VT 1.5.8 Biology + VT 1.5.99 Other + The study of life and living organisms, including their morphology, biochemistry, physiology, development, evolution, and so on. + Biological science + Biology + Aerobiology + Behavioural biology + Biological rhythms + Chronobiology + Cryobiology + Reproductive biology + + + + Biology + + + + + + + + + + beta13 + true + VT 1.3.1 Data management + Data management comprises the practices and principles of taking care of data, other than analysing them. This includes for example taking care of the associated metadata, formatting, storage, archiving, or access. + + + + Data management + Metadata management + Data stewardship + + + http://purl.bioontology.org/ontology/MSH/D000079803 + + + + + + + + + beta13 + 1.3 + + + The detection of the positional features, such as functional and other key sites, in molecular sequences. + + Sequence feature detection + http://purl.bioontology.org/ontology/MSH/D058977 + true + + + + + + + + + beta13 + 1.3 + + + The detection of positional features such as functional sites in nucleotide sequences. + + Nucleic acid feature detection + true + + + + + + + + + beta13 + 1.3 + + + The detection, identification and analysis of positional protein sequence features, such as functional sites. + + Protein feature detection + true + + + + + + + + + beta13 + 1.2 + + + Topic for modelling biological systems in mathematical terms. + + Biological system modelling + true + + + + + + + + + beta13 + The acquisition of data, typically measurements of physical systems using any type of sampling system, or by another other means. + Data collection + + + Data acquisition + + + + + + + + + + beta13 + 1.3 + + + Specific genes and/or their encoded proteins or a family or other grouping of related genes and proteins. + + Genes and proteins resources + true + + + + + + + + + beta13 + 1.13 + + Topological domains such as cytoplasmic regions in a protein. + + + Protein topological domains + true + + + + + + + + + beta13 + true + + Protein sequence variants produced e.g. from alternative splicing, alternative promoter usage, alternative initiation and ribosomal frameshifting. + Protein_variants + + + Protein variants + + + + + + + + + + beta13 + 1.12 + + + Regions within a nucleic acid sequence containing a signal that alters a biological function. + + Expression signals + true + + + + + + + + + + beta13 + + Nucleic acids binding to some other molecule. + DNA_binding_sites + Matrix-attachment region + Matrix/scaffold attachment region + Nucleosome exclusion sequences + Restriction sites + Ribosome binding sites + Scaffold-attachment region + + + This includes ribosome binding sites (Shine-Dalgarno sequence in prokaryotes), restriction enzyme recognition sites (restriction sites) etc. + This includes sites involved with DNA replication and recombination. This includes binding sites for initiation of replication (origin of replication), regions where transfer is initiated during the conjugation or mobilisation (origin of transfer), starting sites for DNA duplication (origin of replication) and regions which are eliminated through any of kind of recombination. Also nucleosome exclusion regions, i.e. specific patterns or regions which exclude nucleosomes (the basic structural units of eukaryotic chromatin which play a significant role in regulating gene expression). + DNA binding sites + + + + + + + + + + beta13 + 1.13 + + Repetitive elements within a nucleic acid sequence. + + + This includes long terminal repeats (LTRs); sequences (typically retroviral) directly repeated at both ends of a defined sequence and other types of repeating unit. + Nucleic acid repeats + true + + + + + + + + + beta13 + true + DNA replication or recombination. + DNA_replication_and_recombination + + + DNA replication and recombination + + + + + + + + + + + beta13 + 1.13 + + Coding sequences for a signal or transit peptide. + + + Signal or transit peptide + true + + + + + + + + + beta13 + 1.13 + + Sequence tagged sites (STS) in nucleic acid sequences. + + + Sequence tagged sites + true + + + + + + + + + 1.1 + true + The determination of complete (typically nucleotide) sequences, including those of genomes (full genome sequencing, de novo sequencing and resequencing), amplicons and transcriptomes. + DNA-Seq + Sequencing + Chromosome walking + Clone verification + DNase-Seq + High throughput sequencing + High-throughput sequencing + NGS + NGS data analysis + Next gen sequencing + Next generation sequencing + Panels + Primer walking + Sanger sequencing + Targeted next-generation sequencing panels + + + + Sequencing + + http://purl.bioontology.org/ontology/MSH/D059014 + + + + + + + + + + 1.1 + The analysis of protein-DNA interactions where chromatin immunoprecipitation (ChIP) is used in combination with massively parallel DNA sequencing to identify the binding sites of DNA-associated proteins. + ChIP-sequencing + Chip Seq + Chip sequencing + Chip-sequencing + ChIP-seq + ChIP-exo + + + ChIP-seq + + + + + + + + + + 1.1 + A topic concerning high-throughput sequencing of cDNA to measure the RNA content (transcriptome) of a sample, for example, to investigate how different alleles of a gene are expressed, detect post-transcriptional mutations or identify gene fusions. + RNA sequencing + RNA-Seq analysis + Small RNA sequencing + Small RNA-Seq + Small-Seq + Transcriptome profiling + WTSS + Whole transcriptome shotgun sequencing + RNA-Seq + MicroRNA sequencing + miRNA-seq + + + This includes small RNA profiling (small RNA-Seq), for example to find novel small RNAs, characterize mutations and analyze expression of small RNAs. + RNA-Seq + + + + + + + + + + + 1.1 + 1.3 + + DNA methylation including bisulfite sequencing, methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc. + + + DNA methylation + true + + + + + + + + + 1.1 + true + The systematic study of metabolites, the chemical processes they are involved, and the chemical fingerprints of specific cellular processes in a whole cell, tissue, organ or organism. + Metabolomics + Exometabolomics + LC-MS-based metabolomics + MS-based metabolomics + MS-based targeted metabolomics + MS-based untargeted metabolomics + Mass spectrometry-based metabolomics + Metabolites + Metabolome + Metabonomics + NMR-based metabolomics + + + + Metabolomics + + http://purl.bioontology.org/ontology/MSH/D055432 + + + + + + + + + + 1.1 + true + The study of the epigenetic modifications of a whole cell, tissue, organism etc. + Epigenomics + + + + Epigenetics concerns the heritable changes in gene expression owing to mechanisms other than DNA sequence variation. + Epigenomics + + http://purl.bioontology.org/ontology/MSH/D057890 + + + + + + + + + + 1.1 + true + Biome sequencing + Community genomics + Ecogenomics + Environmental genomics + Environmental omics + Environmental sequencing + Environmental DNA (eDNA) + The study of genetic material recovered from environmental samples, and associated environmental data. + Metagenomics + Shotgun metagenomics + + + + Metagenomics + + + + + + + + + + + + 1.1 + Variation in chromosome structure including microscopic and submicroscopic types of variation such as deletions, duplications, copy-number variants, insertions, inversions and translocations. + DNA structural variation + Genomic structural variation + DNA_structural_variation + Deletion + Duplication + Insertion + Inversion + Translocation + + + Structural variation + + + + + + + + + + 1.1 + DNA-histone complexes (chromatin), organisation of chromatin into nucleosomes and packaging into higher-order structures. + DNA_packaging + Nucleosome positioning + + + DNA packaging + + http://purl.bioontology.org/ontology/MSH/D042003 + + + + + + + + + 1.1 + 1.3 + + + A topic concerning high-throughput sequencing of randomly fragmented genomic DNA, for example, to investigate whole-genome sequencing and resequencing, SNP discovery, identification of copy number variations and chromosomal rearrangements. + + DNA-Seq + true + + + + + + + + + 1.1 + 1.3 + + + The alignment of sequences of (typically millions) of short reads to a reference genome. This is a specialised topic within sequence alignment, especially because of complications arising from RNA splicing. + + RNA-Seq alignment + true + + + + + + + + + 1.1 + Experimental techniques that combine chromatin immunoprecipitation ('ChIP') with microarray ('chip'). ChIP-on-chip is used for high-throughput study protein-DNA interactions. + ChIP-chip + ChIP-on-chip + ChiP + + + ChIP-on-chip + + + + + + + + + + 1.3 + The protection of data, such as patient health data, from damage or unwanted access from unauthorised users. + Data privacy + Data_security + + + Data security + + + + + + + + + + 1.3 + Biological samples and specimens. + Specimen collections + Sample_collections + biosamples + samples + + + + Sample collections + + + + + + + + + + + 1.3 + true + VT 1.5.4 Biochemistry and molecular biology + Chemical substances and physico-chemical processes and that occur within living organisms. + Biological chemistry + Biochemistry + Glycomics + Pathobiochemistry + Phytochemistry + + + + Biochemistry + + + + + + + + + + + 1.3 + true + The study of evolutionary relationships amongst organisms from analysis of genetic information (typically gene or protein sequences). + Phylogenetics + + + Phylogenetics + + http://purl.bioontology.org/ontology/MSH/D010802 + + + + + + + + + 1.3 + true + Topic concerning the study of heritable changes, for example in gene expression or phenotype, caused by mechanisms other than changes in the DNA sequence. + Epigenetics + DNA methylation + Histone modification + Methylation profiles + + + + This includes sub-topics such as histone modification and DNA methylation (methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc.) + Epigenetics + + http://purl.bioontology.org/ontology/MSH/D019175 + + + + + + + + + 1.3 + true + The exploitation of biological process, structure and function for industrial purposes, for example the genetic manipulation of microorganisms for the antibody production. + Biotechnology + Applied microbiology + + + + Biotechnology + + + + + + + + + + + + 1.3 + true + Phenomes, or the study of the change in phenotype (the physical and biochemical traits of organisms) in response to genetic and environmental factors. + Phenomics + + + + Phenomics + + + + + + + + + + 1.3 + true + VT 1.5.16 Evolutionary biology + The evolutionary processes, from the genetic to environmental scale, that produced life in all its diversity. + Evolution + Evolutionary_biology + + + + Evolutionary biology + + + + + + + + + + 1.3 + true + VT 3.1.8 Physiology + The functions of living organisms and their constituent parts. + Physiology + Electrophysiology + + + + Physiology + + + + + + + + + + 1.3 + true + VT 1.5.20 Microbiology + The biology of microorganisms. + Microbiology + Antimicrobial stewardship + Medical microbiology + Microbial genetics + Microbial physiology + Microbial surveillance + Microbiological surveillance + Molecular infection biology + Molecular microbiology + + + + Microbiology + + + + + + + + + + 1.3 + true + The biology of parasites. + Parasitology + + + + Parasitology + + + + + + + + + + 1.3 + true + VT 3.1 Basic medicine + VT 3.2 Clinical medicine + VT 3.2.9 General and internal medicine + Research in support of healing by diagnosis, treatment, and prevention of disease. + Biomedical research + Clinical medicine + Experimental medicine + Medicine + General medicine + Internal medicine + + + + Medicine + + + + + + + + + + 1.3 + true + Neuroscience + VT 3.1.5 Neuroscience + The study of the nervous system and brain; its anatomy, physiology and function. + Neurobiology + Molecular neuroscience + Neurophysiology + Systemetic neuroscience + + + + Neurobiology + + + + + + + + + + 1.3 + true + VT 3.3.1 Epidemiology + Topic concerning the the patterns, cause, and effect of disease within populations. + Public_health_and_epidemiology + Epidemiology + Public health + + + + Public health and epidemiology + + + + + + + + + + + + 1.3 + true + VT 1.5.9 Biophysics + The use of physics to study biological system. + Biophysics + Medical physics + + + + Biophysics + + + + + + + + + + 1.3 + true + VT 1.5.12 Computational biology + VT 1.5.19 Mathematical biology + VT 1.5.26 Theoretical biology + The development and application of theory, analytical methods, mathematical models and computational simulation of biological systems. + Computational_biology + Biomathematics + Mathematical biology + Theoretical biology + + + + This includes the modeling and treatment of biological processes and systems in mathematical terms (theoretical biology). + Computational biology + + + + + + + + + + + 1.3 + true + The analysis of transcriptomes, or a set of all the RNA molecules in a specific cell, tissue etc. + Transcriptomics + Comparative transcriptomics + Transcriptome + + + + Transcriptomics + + + + + + + + + + 1.3 + Chemical science + Polymer science + VT 1.7.10 Polymer science + VT 1.7 Chemical sciences + VT 1.7.2 Chemistry + VT 1.7.3 Colloid chemistry + VT 1.7.5 Electrochemistry + VT 1.7.6 Inorganic and nuclear chemistry + VT 1.7.7 Mathematical chemistry + VT 1.7.8 Organic chemistry + VT 1.7.9 Physical chemistry + The composition and properties of matter, reactions, and the use of reactions to create new substances. + Chemistry + Inorganic chemistry + Mathematical chemistry + Nuclear chemistry + Organic chemistry + Physical chemistry + + + + Chemistry + + + + + + + + + + 1.3 + VT 1.1.99 Other + VT:1.1 Mathematics + The study of numbers (quantity) and other topics including structure, space, and change. + Maths + Mathematics + Dynamic systems + Dynamical systems + Dynymical systems theory + Graph analytics + Monte Carlo methods + Multivariate analysis + + + + Mathematics + + + + + + + + + + 1.3 + VT 1.2 Computer sciences + VT 1.2.99 Other + The theory and practical use of computer systems. + Computer_science + Cloud computing + HPC + High performance computing + High-performance computing + + + + Computer science + + + + + + + + + + 1.3 + The study of matter, space and time, and related concepts such as energy and force. + Physics + + + + Physics + + + + + + + + + + + 1.3 + true + RNA splicing; post-transcription RNA modification involving the removal of introns and joining of exons. + Alternative splicing + RNA_splicing + Splice sites + + + This includes the study of splice sites, splicing patterns, alternative splicing events and variants, isoforms, etc.. + RNA splicing + + + + + + + + + + + 1.3 + true + The structure and function of genes at a molecular level. + Molecular_genetics + + + + Molecular genetics + + + + + + + + + + 1.3 + true + VT 3.2.25 Respiratory systems + The study of respiratory system. + Pulmonary medicine + Pulmonology + Respiratory_medicine + Pulmonary disorders + Respiratory disease + + + + Respiratory medicine + + + + + + + + + + 1.3 + 1.4 + + + The study of metabolic diseases. + + Metabolic disease + true + + + + + + + + + 1.3 + VT 3.3.4 Infectious diseases + The branch of medicine that deals with the prevention, diagnosis and management of transmissible disease with clinically evident illness resulting from infection with pathogenic biological agents (viruses, bacteria, fungi, protozoa, parasites and prions). + Communicable disease + Transmissible disease + Infectious_disease + + + + Infectious disease + + + + + + + + + + 1.3 + The study of rare diseases. + Rare_diseases + + + + Rare diseases + + + + + + + + + + + 1.3 + true + VT 1.7.4 Computational chemistry + Topic concerning the development and application of theory, analytical methods, mathematical models and computational simulation of chemical systems. + Computational_chemistry + + + + Computational chemistry + + + + + + + + + + 1.3 + true + The branch of medicine that deals with the anatomy, functions and disorders of the nervous system. + Neurology + Neurological disorders + + + + Neurology + + + + + + + + + + 1.3 + true + VT 3.2.22 Peripheral vascular disease + VT 3.2.4 Cardiac and Cardiovascular systems + The diseases and abnormalities of the heart and circulatory system. + Cardiovascular medicine + Cardiology + Cardiovascular disease + Heart disease + + + + Cardiology + + + + + + + + + + + 1.3 + true + The discovery and design of drugs or potential drug compounds. + Drug_discovery + + + + This includes methods that search compound collections, generate or analyse drug 3D conformations, identify drug targets with structural docking etc. + Drug discovery + + + + + + + + + + 1.3 + true + Repositories of biological samples, typically human, for basic biological and clinical research. + Tissue collection + biobanking + Biobank + + + + Biobank + + + + + + + + + + 1.3 + Laboratory study of mice, for example, phenotyping, and mutagenesis of mouse cell lines. + Laboratory mouse + Mouse_clinic + + + + Mouse clinic + + + + + + + + + + 1.3 + Collections of microbial cells including bacteria, yeasts and moulds. + Microbial_collection + + + + Microbial collection + + + + + + + + + + 1.3 + Collections of cells grown under laboratory conditions, specifically, cells from multi-cellular eukaryotes and especially animal cells. + Cell_culture_collection + + + + Cell culture collection + + + + + + + + + + 1.3 + Collections of DNA, including both collections of cloned molecules, and populations of micro-organisms that store and propagate cloned DNA. + Clone_library + + + + Clone library + + + + + + + + + + 1.3 + true + 'translating' the output of basic and biomedical research into better diagnostic tools, medicines, medical procedures, policies and advice. + Translational_medicine + + + + Translational medicine + + + + + + + + + + 1.3 + Collections of chemicals, typically for use in high-throughput screening experiments. + Compound_libraries_and_screening + Chemical library + Chemical screening + Compound library + Small chemical compounds libraries + Small compounds libraries + Target identification and validation + + + + Compound libraries and screening + + + + + + + + + + 1.3 + true + VT 3.3 Health sciences + Topic concerning biological science that is (typically) performed in the context of medicine. + Biomedical sciences + Health science + Biomedical_science + + + + Biomedical science + + + + + + + + + + 1.3 + Topic concerning the identity of biological entities, or reports on such entities, and the mapping of entities and records in different databases. + Data_identity_and_mapping + + + + Data identity and mapping + + + + + + + + + 1.3 + 1.12 + + The search and retrieval from a database on the basis of molecular sequence similarity. + + + Sequence search + true + + + + + + + + + 1.4 + true + Objective indicators of biological state often used to assess health, and determinate treatment. + Diagnostic markers + Biomarkers + + + Biomarkers + + + + + + + + + + 1.4 + The procedures used to conduct an experiment. + Experimental techniques + Lab method + Lab techniques + Laboratory method + Laboratory_techniques + Experiments + Laboratory experiments + + + + Laboratory techniques + + + + + + + + + + 1.4 + The development of policies, models and standards that cover data acquisition, storage and integration, such that it can be put to use, typically through a process of systematically applying statistical and / or logical techniques to describe, illustrate, summarise or evaluate data. + Data_architecture_analysis_and_design + Data analysis + Data architecture + Data design + + + + Data architecture, analysis and design + + + + + + + + + + 1.4 + The combination and integration of data from different sources, for example into a central repository or warehouse, to provide users with a unified view of these data. + Data_integration_and_warehousing + Data integration + Data warehousing + + + + Data integration and warehousing + + + + + + + + + + + 1.4 + Any matter, surface or construct that interacts with a biological system. + Biomaterials + + + + Biomaterials + + + + + + + + + + + 1.4 + true + The use of synthetic chemistry to study and manipulate biological systems. + Chemical_biology + + + + Chemical biology + + + + + + + + + + 1.4 + VT 1.7.1 Analytical chemistry + The study of the separation, identification, and quantification of the chemical components of natural and artificial materials. + Analytical_chemistry + + + + Analytical chemistry + + + + + + + + + + 1.4 + The use of chemistry to create new compounds. + Synthetic_chemistry + Synthetic organic chemistry + + + + Synthetic chemistry + + + + + + + + + + 1.4 + 1.2.12 Programming languages + Software engineering + VT 1.2.1 Algorithms + VT 1.2.14 Software engineering + VT 1.2.7 Data structures + The process that leads from an original formulation of a computing problem to executable programs. + Computer programming + Software development + Software_engineering + Algorithms + Data structures + Programming languages + + + + Software engineering + + + + + + + + + + 1.4 + true + The process of bringing a new drug to market once a lead compounds has been identified through drug discovery. + Drug development science + Medicine development + Medicines development + Drug_development + + + + Drug development + + + + + + + + + + 1.4 + Drug delivery + Drug formulation + Drug formulation and delivery + The process of formulating and administering a pharmaceutical compound to achieve a therapeutic effect. + Biotherapeutics + + + + Biotherapeutics + + + + + + + + + 1.4 + true + The study of how a drug interacts with the body. + Drug_metabolism + ADME + Drug absorption + Drug distribution + Drug excretion + Pharmacodynamics + Pharmacokinetics + Pharmacokinetics and pharmacodynamics + + + + Drug metabolism + + + + + + + + + + 1.4 + Health care research + Health care science + The discovery, development and approval of medicines. + Drug discovery and development + Medicines_research_and_development + + + + Medicines research and development + + + + + + + + + + + 1.4 + The safety (or lack) of drugs and other medical interventions. + Patient safety + Safety_sciences + Drug safety + + + + Safety sciences + + + + + + + + + + 1.4 + The detection, assessment, understanding and prevention of adverse effects of medicines. + Pharmacovigilence + + + + Pharmacovigilence concerns safety once a drug has gone to market. + Pharmacovigilance + + + + + + + + + + + 1.4 + The testing of new medicines, vaccines or procedures on animals (preclinical) and humans (clinical) prior to their approval by regulatory authorities. + Preclinical_and_clinical_studies + Clinical studies + Clinical study + Clinical trial + Drug trials + Preclinical studies + Preclinical study + + + + Preclinical and clinical studies + + + + + + + + + + 1.4 + true + The visual representation of an object. + Imaging + Diffraction experiment + Microscopy + Microscopy imaging + Optical super resolution microscopy + Photonic force microscopy + Photonic microscopy + + + + This includes diffraction experiments that are based upon the interference of waves, typically electromagnetic waves such as X-rays or visible light, by some object being studied, typical in order to produce an image of the object or determine its structure. + Imaging + + + + + + + + + + 1.4 + The use of imaging techniques to understand biology. + Biological imaging + Biological_imaging + + + + Bioimaging + + + + + + + + + + 1.4 + VT 3.2.13 Medical imaging + VT 3.2.14 Nuclear medicine + VT 3.2.24 Radiology + The use of imaging techniques for clinical purposes for medical research. + Medical_imaging + Neuroimaging + Nuclear medicine + Radiology + + + + Medical imaging + + + + + + + + + + 1.4 + The use of optical instruments to magnify the image of an object. + Light_microscopy + + + + Light microscopy + + + + + + + + + + 1.4 + The use of animals and alternatives in experimental research. + Animal experimentation + Animal research + Animal testing + In vivo testing + Laboratory_animal_science + + + + Laboratory animal science + + + + + + + + + + 1.4 + true + VT 1.5.18 Marine and Freshwater biology + The study of organisms in the ocean or brackish waters. + Marine_biology + + + + Marine biology + + + + + + + + + + 1.4 + true + The identification of molecular and genetic causes of disease and the development of interventions to correct them. + Molecular_medicine + + + + Molecular medicine + + + + + + + + + + 1.4 + VT 3.3.7 Nutrition and Dietetics + The study of the effects of food components on the metabolism, health, performance and disease resistance of humans and animals. It also includes the study of human behaviours related to food choices. + Nutrition + Nutrition science + Nutritional_science + Dietetics + + + + Nutritional science + + + + + + + + + + 1.4 + true + The collective characterisation and quantification of pools of biological molecules that translate into the structure, function, and dynamics of an organism or organisms. + Omics + + + + Omics + + + + + + + + + + 1.4 + The processes that need to be in place to ensure the quality of products for human or animal use. + Quality assurance + Quality_affairs + Good clinical practice + Good laboratory practice + Good manufacturing practice + + + + Quality affairs + + + + + + + + + 1.4 + The protection of public health by controlling the safety and efficacy of products in areas including pharmaceuticals, veterinary medicine, medical devices, pesticides, agrochemicals, cosmetics, and complementary medicines. + Healthcare RA + Regulatory_affairs + + + + Regulatory affairs + + + + + + + + + + 1.4 + true + Biomedical approaches to clinical interventions that involve the use of stem cells. + Stem cell research + Regenerative_medicine + + + + Regenerative medicine + + + + + + + + + + 1.4 + true + An interdisciplinary field of study that looks at the dynamic systems of the human body as part of an integrted whole, incorporating biochemical, physiological, and environmental interactions that sustain life. + Systems_medicine + + + + Systems medicine + + + + + + + + + + 1.4 + Topic concerning the branch of medicine that deals with the prevention, diagnosis, and treatment of disease, disorder and injury in animals. + Veterinary_medicine + Clinical veterinary medicine + + + + Veterinary medicine + + + + + + + + + + 1.4 + The application of biological concepts and methods to the analytical and synthetic methodologies of engineering. + Biological engineering + Bioengineering + + + + Bioengineering + + + + + + + + + + 1.4 + true + Ageing + Aging + Gerontology + VT 3.2.10 Geriatrics and gerontology + The branch of medicine dealing with the diagnosis, treatment and prevention of disease in older people, and the problems specific to aging. + Geriatrics + Geriatric_medicine + + + + Geriatric medicine + + + + + + + + + + 1.4 + true + VT 3.2.1 Allergy + Health issues related to the immune system and their prevention, diagnosis and management. + Allergy_clinical_immunology_and_immunotherapeutics + Allergy + Clinical immunology + Immune disorders + Immunomodulators + Immunotherapeutics + + + + Allergy, clinical immunology and immunotherapeutics + + + + + + + + + + + + 1.4 + true + The prevention of pain and the evaluation, treatment and rehabilitation of persons in pain. + Algiatry + Pain management + Pain_medicine + + + + Pain medicine + + + + + + + + + + 1.4 + VT 3.2.2 Anaesthesiology + Anaesthesia and anaesthetics. + Anaesthetics + Anaesthesiology + + + + Anaesthesiology + + + + + + + + + + 1.4 + VT 3.2.5 Critical care/Emergency medicine + The multidisciplinary that cares for patients with acute, life-threatening illness or injury. + Acute medicine + Emergency medicine + Intensive care medicine + Critical_care_medicine + + + + Critical care medicine + + + + + + + + + + 1.4 + VT 3.2.7 Dermatology and venereal diseases + The branch of medicine that deals with prevention, diagnosis and treatment of disorders of the skin, scalp, hair and nails. + Dermatology + Dermatological disorders + + + + Dermatology + + + + + + + + + + 1.4 + The study, diagnosis, prevention and treatments of disorders of the oral cavity, maxillofacial area and adjacent structures. + Dentistry + + + + Dentistry + + + + + + + + + + 1.4 + VT 3.2.20 Otorhinolaryngology + The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the ear, nose and throat. + Audiovestibular medicine + Otolaryngology + Otorhinolaryngology + Ear_nose_and_throat_medicine + Head and neck disorders + + + + Ear, nose and throat medicine + + + + + + + + + + 1.4 + true + The branch of medicine dealing with diseases of endocrine organs, hormone systems, their target organs, and disorders of the pathways of glucose and lipid metabolism. + Endocrinology_and_metabolism + Endocrine disorders + Endocrinology + Metabolic disorders + Metabolism + + + + Endocrinology and metabolism + + + + + + + + + + 1.4 + true + VT 3.2.11 Hematology + The branch of medicine that deals with the blood, blood-forming organs and blood diseases. + Haematology + Blood disorders + Haematological disorders + + + + Haematology + + + + + + + + + + 1.4 + true + VT 3.2.8 Gastroenterology and hepatology + The branch of medicine that deals with disorders of the oesophagus, stomach, duodenum, jejenum, ileum, large intestine, sigmoid colon and rectum. + Gastroenterology + Gastrointestinal disorders + + + + Gastroenterology + + + + + + + + + + 1.4 + The study of the biological and physiological differences between males and females and how they effect differences in disease presentation and management. + Gender_medicine + + + + Gender medicine + + + + + + + + + + 1.4 + true + VT 3.2.15 Obstetrics and gynaecology + The branch of medicine that deals with the health of the female reproductive system, pregnancy and birth. + Gynaecology_and_obstetrics + Gynaecological disorders + Gynaecology + Obstetrics + + + + Gynaecology and obstetrics + + + + + + + + + + + 1.4 + true + The branch of medicine that deals with the liver, gallbladder, bile ducts and bile. + Hepatology + Hepatic_and_biliary_medicine + Liver disorders + + + + Hepatic and biliary medicine + + Hepatobiliary medicine + + + + + + + + + 1.4 + 1.13 + + The branch of medicine that deals with the infectious diseases of the tropics. + + + Infectious tropical disease + true + + + + + + + + + 1.4 + The branch of medicine that treats body wounds or shock produced by sudden physical injury, as from violence or accident. + Traumatology + Trauma_medicine + + + + Trauma medicine + + + + + + + + + + 1.4 + true + The branch of medicine that deals with the diagnosis, management and prevention of poisoning and other adverse health effects caused by medications, occupational and environmental toxins, and biological agents. + Medical_toxicology + + + + Medical toxicology + + + + + + + + + + 1.4 + VT 3.2.19 Orthopaedics + VT 3.2.26 Rheumatology + The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the muscle, bone and connective tissue. It incorporates aspects of orthopaedics, rheumatology, rehabilitation medicine and pain medicine. + Musculoskeletal_medicine + Musculoskeletal disorders + Orthopaedics + Rheumatology + + + + Musculoskeletal medicine + + + + + + + + + + + + 1.4 + Optometry + VT 3.2.17 Ophthalmology + VT 3.2.18 Optometry + The branch of medicine that deals with disorders of the eye, including eyelid, optic nerve/visual pathways and occular muscles. + Ophthalmology + Eye disoders + + + + Ophthalmology + + + + + + + + + + 1.4 + VT 3.2.21 Paediatrics + The branch of medicine that deals with the medical care of infants, children and adolescents. + Child health + Paediatrics + + + + Paediatrics + + + + + + + + + + 1.4 + Mental health + VT 3.2.23 Psychiatry + The branch of medicine that deals with the management of mental illness, emotional disturbance and abnormal behaviour. + Psychiatry + Psychiatric disorders + + + + Psychiatry + + + + + + + + + + 1.4 + VT 3.2.3 Andrology + The health of the reproductive processes, functions and systems at all stages of life. + Reproductive_health + Andrology + Family planning + Fertility medicine + Reproductive disorders + + + + Reproductive health + + + + + + + + + + 1.4 + VT 3.2.28 Transplantation + The use of operative, manual and instrumental techniques on a patient to investigate and/or treat a pathological condition or help improve bodily function or appearance. + Surgery + Transplantation + + + + Surgery + + + + + + + + + + 1.4 + VT 3.2.29 Urology and nephrology + The branches of medicine and physiology focussing on the function and disorders of the urinary system in males and females, the reproductive system in males, and the kidney. + Urology_and_nephrology + Kidney disease + Nephrology + Urological disorders + Urology + + + + Urology and nephrology + + + + + + + + + + + 1.4 + Alternative medicine + Holistic medicine + Integrative medicine + VT 3.2.12 Integrative and Complementary medicine + Medical therapies that fall beyond the scope of conventional medicine but may be used alongside it in the treatment of disease and ill health. + Complementary_medicine + + + + Complementary medicine + + + + + + + + + + 1.7 + Techniques that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body. + MRT + Magnetic resonance imaging + Magnetic resonance tomography + NMRI + Nuclear magnetic resonance imaging + MRI + + + MRI + + + + + + + + + + + 1.7 + The study of matter by studying the diffraction pattern from firing neutrons at a sample, typically to determine atomic and/or magnetic structure. + Neutron diffraction experiment + Neutron_diffraction + Elastic neutron scattering + Neutron microscopy + + + Neutron diffraction + + + + + + + + + + 1.7 + Imaging in sections (sectioning), through the use of a wave-generating device (tomograph) that generates an image (a tomogram). + CT + Computed tomography + TDM + Tomography + Electron tomography + PET + Positron emission tomography + X-ray tomography + + + Tomography + + + + + + + + + + 1.7 + true + KDD + Knowledge discovery in databases + VT 1.3.2 Data mining + The discovery of patterns in large data sets and the extraction and trasnsformation of those patterns into a useful format. + Data_mining + Pattern recognition + + + Data mining + + + + + + + + + + 1.7 + Artificial Intelligence + VT 1.2.2 Artificial Intelligence (expert systems, machine learning, robotics) + A topic concerning the application of artificial intelligence methods to algorithms, in order to create methods that can learn from data in order to generate an output, rather than relying on explicitly encoded information only. + Machine_learning + Active learning + Ensembl learning + Kernel methods + Knowledge representation + Neural networks + Recommender system + Reinforcement learning + Supervised learning + Unsupervised learning + + + Machine learning + + + + + + + + + + 1.8 + The general handling of data stored in digital archives such as databases, databanks, web portals, and other data resources. + Database administration + Database_management + Databases + Information systems + Content management + Document management + File management + Record management + + + This includes databases for the results of scientific experiments, the application of high-throughput technology, computational analysis and the scientific literature. It covers the management and manipulation of digital documents, including database records, files, and reports. + Database management + + + + + + + + + + 1.8 + VT 1.5.29 Zoology + Animals, e.g. information on a specific animal genome including molecular sequences, genes and annotation. + Animal + Animal biology + Animals + Metazoa + Zoology + Animal genetics + Animal physiology + Entomology + + + The study of the animal kingdom. + Zoology + + + + + + + + + + + 1.8 + The biology, archival, detection, prediction and analysis of positional features such as functional and other key sites, in protein sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them. + Protein_sites_features_and_motifs + Protein sequence features + Signal peptide cleavage sites + + + A signal peptide coding sequence encodes an N-terminal domain of a secreted protein, which is involved in attaching the polypeptide to a membrane leader sequence. A transit peptide coding sequence encodes an N-terminal domain of a nuclear-encoded organellar protein; which is involved in import of the protein into the organelle. + Protein sites, features and motifs + + + + + + + + + + 1.8 + The biology, archival, detection, prediction and analysis of positional features such as functional and other key sites, in nucleic acid sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them. + Nucleic_acid_sites_features_and_motifs + Nucleic acid functional sites + Nucleic acid sequence features + Primer binding sites + Sequence tagged sites + + + Sequence tagged sites are short DNA sequences that are unique within a genome and serve as a mapping landmark, detectable by PCR they allow a genome to be mapped via an ordering of STSs. + Nucleic acid sites, features and motifs + + + + + + + + + + 1.8 + Transcription of DNA into RNA and features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules. + mRNA features + Gene_transcripts + Coding RNA + EST + Exons + Fusion transcripts + Gene transcript features + Introns + PolyA signal + PolyA site + Signal peptide coding sequence + Transit peptide coding sequence + cDNA + mRNA + + + This includes 5'untranslated region (5'UTR), coding sequences (CDS), exons, intervening sequences (intron) and 3'untranslated regions (3'UTR). + This includes Introns, and protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. Also expressed sequence tag (EST) or complementary DNA (cDNA) sequences. + This includes coding sequences for a signal or transit peptide. A signal peptide coding sequence encodes an N-terminal domain of a secreted protein, which is involved in attaching the polypeptide to a membrane leader sequence. A transit peptide coding sequence encodes an N-terminal domain of a nuclear-encoded organellar protein; which is involved in import of the protein into the organelle. + This includes regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript. A polyA signal is required for endonuclease cleavage of an RNA transcript that is followed by polyadenylation. A polyA site is a site on an RNA transcript to which adenine residues will be added during post-transcriptional polyadenylation. + Gene transcripts + + + + + + + + + + 1.8 + 1.13 + + Protein-ligand (small molecule) interaction(s). + + + Protein-ligand interactions + true + + + + + + + + + 1.8 + 1.13 + + Protein-drug interaction(s). + + + Protein-drug interactions + true + + + + + + + + + 1.8 + Genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods. + Genotyping_experiment + + + Genotyping experiment + + + + + + + + + + 1.8 + Genome-wide association study experiments. + GWAS + GWAS analysis + Genome-wide association study + GWAS_study + + + GWAS study + + + + + + + + + + 1.8 + Microarray experiments including conditions, protocol, sample:data relationships etc. + Microarrays + Microarray_experiment + Gene expression microarray + Genotyping array + Methylation array + MicroRNA array + Multichannel microarray + One channel microarray + Proprietary platform micoarray + RNA chips + RNA microarrays + Reverse phase protein array + SNP array + Tiling arrays + Tissue microarray + Two channel microarray + aCGH microarray + mRNA microarray + miRNA array + + + This might specify which raw data file relates to which sample and information on hybridisations, e.g. which are technical and which are biological replicates. + Microarray experiment + + + + + + + + + + 1.8 + PCR experiments, e.g. quantitative real-time PCR. + Polymerase chain reaction + PCR_experiment + Quantitative PCR + RT-qPCR + Real Time Quantitative PCR + + + PCR experiment + + + + + + + + + + 1.8 + Proteomics experiments. + Proteomics_experiment + 2D PAGE experiment + DIA + Data-independent acquisition + MS + MS experiments + Mass spectrometry + Mass spectrometry experiments + Northern blot experiment + Spectrum demultiplexing + + + This includes two-dimensional gel electrophoresis (2D PAGE) experiments, gels or spots in a gel. Also mass spectrometry - an analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase. Also Northern blot experiments. + Proteomics experiment + + + + + + + + + + + 1.8 + 1.13 + + Two-dimensional gel electrophoresis experiments, gels or spots in a gel. + + + 2D PAGE experiment + true + + + + + + + + + 1.8 + 1.13 + + Northern Blot experiments. + + + Northern blot experiment + true + + + + + + + + + 1.8 + RNAi experiments. + RNAi_experiment + + + RNAi experiment + + + + + + + + + + 1.8 + Biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction. + Simulation_experiment + + + Simulation experiment + + + + + + + + + 1.8 + 1.13 + + Protein-DNA/RNA interaction(s). + + + Protein-nucleic acid interactions + true + + + + + + + + + 1.8 + 1.13 + + Protein-protein interaction(s), including interactions between protein domains. + + + Protein-protein interactions + true + + + + + + + + + 1.8 + 1.13 + + Cellular process pathways. + + + Cellular process pathways + true + + + + + + + + + 1.8 + 1.13 + + Disease pathways, typically of human disease. + + + Disease pathways + true + + + + + + + + + 1.8 + 1.13 + + Environmental information processing pathways. + + + Environmental information processing pathways + true + + + + + + + + + 1.8 + 1.13 + + Genetic information processing pathways. + + + Genetic information processing pathways + true + + + + + + + + + 1.8 + 1.13 + + Super-secondary structure of protein sequence(s). + + + Protein super-secondary structure + true + + + + + + + + + 1.8 + 1.13 + + Catalytic residues (active site) of an enzyme. + + + Protein active sites + true + + + + + + + + + 1.8 + Binding sites in proteins, including cleavage sites (for a proteolytic enzyme or agent), key residues involved in protein folding, catalytic residues (active site) of an enzyme, ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids, RNA and DNA-binding proteins and binding sites etc. + Protein_binding_sites + Enzyme active site + Protein cleavage sites + Protein functional sites + Protein key folding sites + Protein-nucleic acid binding sites + + + Protein binding sites + + + + + + + + + + 1.8 + 1.13 + + RNA and DNA-binding proteins and binding sites in protein sequences. + + + Protein-nucleic acid binding sites + true + + + + + + + + + 1.8 + 1.13 + + Cleavage sites (for a proteolytic enzyme or agent) in a protein sequence. + + + Protein cleavage sites + true + + + + + + + + + 1.8 + 1.13 + + Chemical modification of a protein. + + + Protein chemical modifications + true + + + + + + + + + 1.8 + Disordered structure in a protein. + Protein features (disordered structure) + Protein_disordered_structure + + + Protein disordered structure + + + + + + + + + + 1.8 + 1.13 + + Structural domains or 3D folds in a protein or polypeptide chain. + + + Protein domains + true + + + + + + + + + 1.8 + 1.13 + + Key residues involved in protein folding. + + + Protein key folding sites + true + + + + + + + + + 1.8 + 1.13 + + Post-translation modifications in a protein sequence, typically describing the specific sites involved. + + + Protein post-translational modifications + true + + + + + + + + + 1.8 + Secondary structure (predicted or real) of a protein, including super-secondary structure. + Protein features (secondary structure) + Protein_secondary_structure + Protein super-secondary structure + + + Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc. + The location and size of the secondary structure elements and intervening loop regions is typically given. The report can include disulphide bonds and post-translationally formed peptide bonds (crosslinks). + Protein secondary structure + + + + + + + + + + 1.8 + 1.13 + + Short repetitive subsequences (repeat sequences) in a protein sequence. + + + Protein sequence repeats + true + + + + + + + + + 1.8 + 1.13 + + Signal peptides or signal peptide cleavage sites in protein sequences. + + + Protein signal peptides + true + + + + + + + + + 1.10 + VT 1.1.1 Applied mathematics + The application of mathematics to specific problems in science, typically by the formulation and analysis of mathematical models. + Applied_mathematics + + + Applied mathematics + + + + + + + + + + 1.10 + VT 1.1.1 Pure mathematics + The study of abstract mathematical concepts. + Pure_mathematics + Linear algebra + + + Pure mathematics + + + + + + + + + + 1.10 + The control of data entry and maintenance to ensure the data meets defined standards, qualities or constraints. + Data_governance + Data stewardship + + + Data governance + + http://purl.bioontology.org/ontology/MSH/D030541 + + + + + + + + + 1.10 + The quality, integrity, and cleaning up of data. + Data_quality_management + Data clean-up + Data cleaning + Data integrity + Data quality + + + Data quality management + + + + + + + + + + 1.10 + Freshwater science + VT 1.5.18 Marine and Freshwater biology + The study of organisms in freshwater ecosystems. + Freshwater_biology + + + + Freshwater biology + + + + + + + + + + 1.10 + true + VT 3.1.2 Human genetics + The study of inheritance in human beings. + Human_genetics + + + + Human genetics + + + + + + + + + + 1.10 + VT 3.3.14 Tropical medicine + Health problems that are prevalent in tropical and subtropical regions. + Tropical_medicine + + + + Tropical medicine + + + + + + + + + + 1.10 + true + VT 3.3.14 Tropical medicine + VT 3.4 Medical biotechnology + VT 3.4.1 Biomedical devices + VT 3.4.2 Health-related biotechnology + Biotechnology applied to the medical sciences and the development of medicines. + Medical_biotechnology + Pharmaceutical biotechnology + + + + Medical biotechnology + + + + + + + + + + 1.10 + true + VT 3.4.5 Molecular diagnostics + An approach to medicine whereby decisions, practices and are tailored to the individual patient based on their predicted response or risk of disease. + Precision medicine + Personalised_medicine + Molecular diagnostics + + + + Personalised medicine + + + + + + + + + + 1.12 + Experimental techniques to purify a protein-DNA crosslinked complex. Usually sequencing follows e.g. in the techniques ChIP-chip, ChIP-seq and MeDIP-seq. + Chromatin immunoprecipitation + Immunoprecipitation_experiment + + + Immunoprecipitation experiment + + + + + + + + + + 1.12 + Laboratory technique to sequence the complete DNA sequence of an organism's genome at a single time. + Genome sequencing + WGS + Whole_genome_sequencing + De novo genome sequencing + Whole genome resequencing + + + Whole genome sequencing + + + + + + + + + + 1.12 + + Laboratory technique to sequence the methylated regions in DNA. + MeDIP-chip + MeDIP-seq + mDIP + Methylated_DNA_immunoprecipitation + BS-Seq + Bisulfite sequencing + MeDIP + Methylated DNA immunoprecipitation (MeDIP) + Methylation sequencing + WGBS + Whole-genome bisulfite sequencing + methy-seq + methyl-seq + + + Methylated DNA immunoprecipitation + + + + + + + + + + 1.12 + Laboratory technique to sequence all the protein-coding regions in a genome, i.e., the exome. + Exome + Exome analysis + Exome capture + Targeted exome capture + WES + Whole exome sequencing + Exome_sequencing + + + Exome sequencing is considered a cheap alternative to whole genome sequencing. + Exome sequencing + + + + + + + + + + 1.12 + + true + The design of an experiment intended to test a hypothesis, and describe or explain empirical data obtained under various experimental conditions. + Design of experiments + Experimental design + Studies + Experimental_design_and_studies + + + Experimental design and studies + + + + + + + + + + + 1.12 + The design of an experiment involving non-human animals. + Animal_study + Challenge study + + + Animal study + + + + + + + + + + + 1.13 + true + The ecology of microorganisms including their relationship with one another and their environment. + Environmental microbiology + Microbial_ecology + Community analysis + Microbiome + Molecular community analysis + + + Microbial ecology + + + + + + + + + + 1.17 + An antibody-based technique used to map in vivo RNA-protein interactions. + RIP + RNA_immunoprecipitation + CLIP + CLIP-seq + HITS-CLIP + PAR-CLIP + iCLIP + + + RNA immunoprecipitation + + + + + + + + + + 1.17 + Large-scale study (typically comparison) of DNA sequences of populations. + Population_genomics + + + + Population genomics + + + + + + + + + + 1.20 + Agriculture + Agroecology + Agronomy + Multidisciplinary study, research and development within the field of agriculture. + Agricultural_science + Agricultural biotechnology + Agricultural economics + Animal breeding + Animal husbandry + Animal nutrition + Farming systems research + Food process engineering + Food security + Horticulture + Phytomedicine + Plant breeding + Plant cultivation + Plant nutrition + Plant pathology + Soil science + + + Agricultural science + + + + + + + + + + 1.20 + Approach which samples, in parallel, all genes in all organisms present in a given sample, e.g. to provide insight into biodiversity and function. + Shotgun metagenomic sequencing + Metagenomic_sequencing + + + Metagenomic sequencing + + + + + + + + + + 1.21 + Study of the environment, the interactions between its physical, chemical, and biological components and it's effect on life. Also how humans impact upon the environment, and how we can manage and utilise natural resources. + Environment + Environmental_science + + + Environmental sciences + + + + + + + + + + 1.22 + The study and simulation of molecular conformations using a computational model and computer simulations. + + + This includes methods such as Molecular Dynamics, Coarse-grained dynamics, metadynamics, Quantum Mechanics, QM/MM, Markov State Models, etc. + Biomolecular simulation + + + + + + + + + + 1.22 + The application of multi-disciplinary science and technology for the construction of artificial biological systems for diverse applications. + Biomimeic chemistry + + + Synthetic biology + + + + + + + + + + + 1.22 + The application of biotechnology to directly manipulate an organism's genes. + Genetic manipulation + Genetic modification + Genetic_engineering + Genome editing + Genome engineering + + + Genetic engineering + + + + + + + + + + 1.24 + A field of biological research focused on the discovery and identification of peptides, typically by comparing mass spectra against a protein database. + Proteogenomics + + + Proteogenomics + + + + + + + + + + 1.24 + Laboratory experiment to identify the differences between a specific genome (of an individual) and a reference genome (developed typically from many thousands of individuals). WGS re-sequencing is used as golden standard to detect variations compared to a given reference genome, including small variants (SNP and InDels) as well as larger genome re-organisations (CNVs, translocations, etc.). + Resequencing + Amplicon panels + Amplicon sequencing + Amplicon-based sequencing + Highly targeted resequencing + Whole genome resequencing (WGR) + Whole-genome re-sequencing (WGSR) + Amplicon sequencing is the ultra-deep sequencing of PCR products (amplicons), usually for the purpose of efficient genetic variant identification and characterisation in specific genomic regions. + Ultra-deep sequencing + Genome resequencing + + + + + + + + + + 1.24 + A biomedical field that bridges immunology and genetics, to study the genetic basis of the immune system. + Immune system genetics + Immungenetics + Immunology and genetics + Immunogenetics + Immunogenes + + + This involves the study of often complex genetic traits underlying diseases involving defects in the immune system. For example, identifying target genes for therapeutic approaches, or genetic variations involved in immunological pathology. + Immunogenetics + + + + + + + + + + 1.24 + Interdisciplinary science focused on extracting information from chemical systems by data analytical approaches, for example multivariate statistics, applied mathematics, and computer science. + Chemometrics + + + Chemometrics + + + + + + + + + + 1.24 + Cytometry is the measurement of the characteristics of cells. + Cytometry + Flow cytometry + Image cytometry + Mass cytometry + + + Cytometry + + + + + + + + + + 1.24 + Biotechnology approach that seeks to optimize cellular genetic and regulatory processes in order to increase the cells' production of a certain substance. + + + Metabolic engineering + + + + + + + + + + 1.24 + Molecular biology methods used to analyze the spatial organization of chromatin in a cell. + 3C technologies + 3C-based methods + Chromosome conformation analysis + Chromosome_conformation_capture + Chromatin accessibility + Chromatin accessibility assay + Chromosome conformation capture + + + + + + + + + + + 1.24 + The study of microbe gene expression within natural environments (i.e. the metatranscriptome). + Metatranscriptomics + + + Metatranscriptomics methods can be used for whole gene expression profiling of complex microbial communities. + Metatranscriptomics + + + + + + + + + + 1.24 + The reconstruction and analysis of genomic information in extinct species. + Paleogenomics + Ancestral genomes + Paleogenetics + Paleogenomics + + + + + + + + + + + 1.24 + The biological classification of organisms by categorizing them in groups ("clades") based on their most recent common ancestor. + Cladistics + Tree of life + + + Cladistics + + + + + + + + + + + + 1.24 + The study of the process and mechanism of change of biomolecules such as DNA, RNA, and proteins across generations. + Molecular_evolution + + + Molecular evolution + + + + + + + + + + + 1.24 + Immunoinformatics is the field of computational biology that deals with the study of immunoloogical questions. Immunoinformatics is at the interface between immunology and computer science. It takes advantage of computational, statistical, mathematical approaches and enhances the understanding of immunological knowledge. + Computational immunology + Immunoinformatics + This involves the study of often complex genetic traits underlying diseases involving defects in the immune system. For example, identifying target genes for therapeutic approaches, or genetic variations involved in immunological pathology. + Immunoinformatics + + + + + + + + + + 1.24 + A diagnostic imaging technique based on the application of ultrasound. + Standardized echography + Ultrasound imaging + Echography + Diagnostic sonography + Medical ultrasound + Standard echography + Ultrasonography + + + Echography + + + + + + + + + + 1.24 + Experimental approaches to determine the rates of metabolic reactions - the metabolic fluxes - within a biological entity. + Fluxomics + The "fluxome" is the complete set of metabolic fluxes in a cell, and is a dynamic aspect of phenotype. + Fluxomics + + + + + + + + + + 1.12 + An experiment for studying protein-protein interactions. + Protein_interaction_experiment + Co-immunoprecipitation + Phage display + Yeast one-hybrid + Yeast two-hybrid + + + This used to have the ID http://edamontology.org/topic_3557 but the numerical part (owing to an error) duplicated http://edamontology.org/operation_3557 ('Imputation'). ID of this concept set to http://edamontology.org/topic_3957 in EDAM 1.24. + Protein interaction experiment + + + + + + + + + + 1.25 + A DNA structural variation, specifically a duplication or deletion event, resulting in sections of the genome to be repeated, or the number of repeats in the genome to vary between individuals. + Copy_number_variation + CNV deletion + CNV duplication + CNV insertion / amplification + Complex CNV + Copy number variant + Copy number variation + + + + + + + + + + 1.25 + The branch of genetics concerned with the relationships between chromosomes and cellular behaviour, especially during mitosis and meiosis. + + + Cytogenetics + + + + + + + + + + 1.25 + The design of vaccines to protect against a particular pathogen, including antigens, delivery systems, and adjuvants to elicit a predictable immune response against specific epitopes. + Vaccinology + Rational vaccine design + Reverse vaccinology + Structural vaccinology + Structure-based immunogen design + Vaccine design + + + Vaccinology + + + + + + + + + + 1.25 + The study of immune system as a whole, its regulation and response to pathogens using genome-wide approaches. + + + Immunomics + + + + + + + + + + 1.25 + Epistatic genetic interaction + Epistatic interactions + + + Epistasis can be defined as the ability of the genotype at one locus to supersede the phenotypic effect of a mutation at another locus. This interaction between genes can occur at different level: gene expression, protein levels, etc... + Epistasis + + http://purl.bioontology.org/ontology/MSH/D004843 + + + + + + + + + 1.26 + + Open science encompasses the practices of making scientific research transparent and participatory, and its outputs publicly accessible. + + + Open science + + + + + + + + 1.26 + Data rescue + Data rescue denotes digitalisation, formatting, archival, and publication of data that were not available in accessible or usable form. Examples are data from private archives, data inside publications, or in paper records stored privately or publicly. + + + + + + + + + + + + + + 1.26 + + + FAIR data is data that meets the principles of being findable, accessible, interoperable, and reusable. + Findable, accessible, interoperable, reusable data + Open data + FAIR data principles + FAIRification + A substantially overlapping term is 'open data', i.e. publicly available data that is free to use, distribute, and create derivative work from, without restrictions. Open data does not automatically have to be FAIR (e.g. findable or interoperable), while FAIR data does in some cases not have to be publicly available without restrictions (especially sensitive personal data). + + + FAIR data + + + + + + + + 1.26 + Antimicrobial Resistance + AMR + Antifungal resistance + Antiviral resistance + Antiprotozoal resistance + Multiple drug resistance (MDR) + Multidrug resistance + Multiresistance + Extensive drug resistance (XDR) + Pandrug resistance (PDR) + Total drug resistance (TDR) + + + Microbial mechanisms for protecting microorganisms against antimicrobial agents. + + + + + + + + + + + 1.26 + Electroencephalography + EEG + + + The monitoring method for measuring electrical activity in the brain. + + + + + + + + + + + 1.26 + Electrocardiography + EKG + ECG + + + The monitoring method for measuring electrical activity in the heart. + + + + + + + + + + + 1.26 + Cryogenic electron microscopy + cryo-EM + + + A method for studying biomolecules and other structures at very low (cryogenic) temperature using electron microscopy. + + + + + + + + + + 1.26 + Biosciences + Life sciences + + + Biosciences, or life sciences, include fields of study related to life, living beings, and biomolecules. + + + + + + + + + + + + + + 1.26 + The carbon cycle is the biogeochemical pathway of carbon moving through the different parts of the Earth (such as ocean, atmosphere, soil), or eventually another planet. + Biogeochemical cycle + + + Carbon cycle + + + Note that the carbon-nitrogen-oxygen (CNO) cycle (https://en.wikipedia.org/wiki/CNO_cycle) is a completely different, thermonuclear reaction in stars. + + + + + + + 1.26 + Multiomics + Panomics + Pan-omics + Integrative omics + Multi-omics + + + Multiomics concerns integration of data from multiple omics (e.g. transcriptomics, proteomics, epigenomics). + + + + + + + + + + + 1.26 + + Ribosome Profiling + RIBO-seq + ribo-seq + RiboSeq + Ribo-Seq + ribosomal footprinting + translation footprinting + + + With ribosome profiling, ribosome-protected mRNA fragments are analyzed with RNA-seq techniques leading to a genome-wide measurement of the translation landscape. + + + + + + + + + 1.26 + + Single-Cell Sequencing + Single Cell Genomics + + + Combined with NGS (Next Generation Sequencing) technologies, single-cell sequencing allows the study of genetic information (DNA, RNA, epigenome...) at a single cell level. It is often used for differential analysis and gene expression profiling. + + + + + + + + + + 1.26 + + Acoustics + + + The study of mechanical waves in liquids, solids, and gases. + + + + + + + 1.26 + + + + Microfluidics + Fluidics + + + Interdisplinary study of behavior, precise control, and manipulation of low (microlitre) volume fluids in constrained space. + + + + + + + + + 1.26 + Genomic imprinting + Gene imprinting + + + Genomic imprinting is a gene regulation mechanism by which a subset of genes are expressed from one of the two parental chromosomes only. Imprinted genes are organized in clusters, their silencing/activation of the imprinted loci involves epigenetic marks (DNA methylation, etc) and so-called imprinting control regions (ICR). It has been described in mammals, but also plants and insects. + + + + + + + + + + + + + + + + + + 1.26 + Environmental DNA (eDNA) + Environmental RNA (eRNA) + Environmental sequencing + Taxonomic profiling + Metabarcoding is the barcoding of (environmental) DNA or RNA to identify multiple taxa from the same sample. + DNA metabarcoding + Environmental metabarcoding + RNA metabarcoding + eDNA metabarcoding + eRNA metabarcoding + + + Typically, high-throughput sequencing is performed and the resulting sequence reads are matched to DNA barcodes in a reference database. + Metabarcoding + + + + + + + + + + + + 1.2 + + An obsolete concept (redefined in EDAM). + + Needed for conversion to the OBO format. + Obsolete concept (EDAM) + true + + + + + + + + + + + + diff --git a/edamfu/tests/EDAM_dev.robot.owl b/edamfu/tests/EDAM_dev.robot.owl new file mode 100644 index 0000000..a7f48c6 --- /dev/null +++ b/edamfu/tests/EDAM_dev.robot.owl @@ -0,0 +1,61094 @@ + + + + + 4040 + + 03.10.2023 11:14 UTC + EDAM http://edamontology.org/ "EDAM relations, concept properties, and subsets" + EDAM_data http://edamontology.org/data_ "EDAM types of data" + EDAM_format http://edamontology.org/format_ "EDAM data formats" + EDAM_operation http://edamontology.org/operation_ "EDAM operations" + EDAM_topic http://edamontology.org/topic_ "EDAM topics" + EDAM is a community project and its development can be followed and contributed to at https://github.com/edamontology/edamontology. + EDAM is particularly suitable for semantic annotations and categorisation of diverse resources related to data analysis and management: e.g. tools, workflows, learning materials, or standards. EDAM is also useful in data management itself, for recording provenance metadata of processed data. + https://github.com/edamontology/edamontology/graphs/contributors and many more! + Hervé Ménager + Jon Ison + Matúš Kalaš + EDAM is a domain ontology of data analysis and data management in bio- and other sciences, and science-based applications. It comprises concepts related to analysis, modelling, optimisation, and data life-cycle. Targetting usability by diverse users, the structure of EDAM is relatively simple, divided into 4 main sections: Topic, Operation, Data (incl. Identifier), and Format. + application/rdf+xml + EDAM - The ontology of data analysis and management + + + 1.26_dev + + + + + + + + + + Matúš Kalaš + + + + + + + + + + + + + + + + + + + + + + + + 1.13 + true + Publication reference + 'Citation' concept property ('citation' metadata tag) contains a dereferenceable URI, preferably including a DOI, pointing to a citeable publication of the given data format. + Publication + + Citation + + + + + + + + + + + + + + true + Version in which a concept was created. + + Created in + + + + + + + + + + + + + + + + true + A comment explaining why the comment should be or was deprecated, including name of person commenting (jison, mkalas etc.). + + deprecation_comment + + + + + + + + true + 'Documentation' trailing modifier (qualifier, 'documentation') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to a page with explanation, description, documentation, or specification of the given data format. + Specification + + Documentation + + + + + + + + + + + + + + + + true + 'Example' concept property ('example' metadata tag) lists examples of valid values of types of identifiers (accessions). Applicable to some other types of data, too. + + Separated by bar ('|'). For more complex data and data formats, it can be a link to a website with examples, instead. + Example + + + + + + + + true + 'File extension' concept property ('file_extension' metadata tag) lists examples of usual file extensions of formats. + + N.B.: File extensions that are not correspondigly defined at http://filext.com are recorded in EDAM only if not in conflict with http://filext.com, and/or unique and usual within life-science computing. + Separated by bar ('|'), without a dot ('.') prefix, preferably not all capital characters. + File extension + + + + + + + + + + + + + + + + + + + + + + + + true + 'Information standard' trailing modifier (qualifier, 'information_standard') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to an information standard supported by the given data format. + Minimum information checklist + Minimum information standard + + "Supported by the given data format" here means, that the given format enables representation of data that satisfies the information standard. + Information standard + + + + + + + + true + When 'true', the concept has been proposed to be deprecated. + + deprecation_candidate + + + + + + + + true + When 'true', the concept has been proposed to be refactored. + + refactor_candidate + + + + + + + + true + When 'true', the concept has been proposed or is supported within Debian as a tag. + + isdebtag + + + + + + + + true + 'Media type' trailing modifier (qualifier, 'media_type') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to a page specifying a media type of the given data format. + MIME type + + Media type + + + + + + + + + + + + + + true + Whether terms associated with this concept are recommended for use in annotation. + + notRecommendedForAnnotation + + + + + + + + + + + + + + + + true + Version in which a concept was made obsolete. + + Obsolete since + + + + + + + + true + EDAM concept URI of the erstwhile "parent" of a now deprecated concept. + + Old parent + + + + + + + + true + EDAM concept URI of an erstwhile related concept (by has_input, has_output, has_topic, is_format_of, etc.) of a now deprecated concept. + + Old related + + + + + + + + true + 'Ontology used' concept property ('ontology_used' metadata tag) of format concepts links to a domain ontology that is used inside the given data format, or contains a note about ontology use within the format. + + Ontology used + + + + + + + + + + + + + + + + true + 'Organisation' trailing modifier (qualifier, 'organisation') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to an organisation that developed, standardised, and maintains the given data format. + Organization + + Organisation + + + + + + + + true + A comment explaining the proposed refactoring, including name of person commenting (jison, mkalas etc.). + + refactor_comment + + + + + + + + true + 'Regular expression' concept property ('regex' metadata tag) specifies the allowed values of types of identifiers (accessions). Applicable to some other types of data, too. + + Regular expression + + + + + + + + 'Related term' concept property ('related_term'; supposedly a synonym modifier in OBO format) states a related term - not necessarily closely semantically related - that users (also non-specialists) may use when searching. + + Related term + + + + + + + + + true + 'Repository' trailing modifier (qualifier, 'repository') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to the public source-code repository where the given data format is developed or maintained. + Public repository + Source-code repository + + Repository + + + + + + + + true + Name of thematic editor (http://biotools.readthedocs.io/en/latest/governance.html#registry-editors) responsible for this concept and its children. + + thematic_editor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_format B' defines for the subject A, that it has the object B as its data format. + + false + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is (or is in a role of) 'Data', or an input, output, input or output argument of an 'Operation'. Object B can either be a concept that is a 'Format', or in unexpected cases an entity outside of an ontology that is a 'Format' or is in the role of a 'Format'. In EDAM, 'has_format' is not explicitly defined between EDAM concepts, only the inverse 'is_format_of'. + has format + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_function B' defines for the subject A, that it has the object B as its function. + OBO_REL:bearer_of + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is (or is in a role of) a function, or an entity outside of an ontology that is (or is in a role of) a function specification. In the scope of EDAM, 'has_function' serves only for relating annotated entities outside of EDAM with 'Operation' concepts. + has function + + + + + + + + OBO_REL:bearer_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:bearer_of' is narrower in the sense that it only relates ontological categories (concepts) that are an 'independent_continuant' (snap:IndependentContinuant) with ontological categories that are a 'specifically_dependent_continuant' (snap:SpecificallyDependentContinuant), and broader in the sense that it relates with any borne objects not just functions of the subject. + + + + + true + In very unusual cases. + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_identifier B' defines for the subject A, that it has the object B as its identifier. + + false + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is an 'Identifier', or an entity outside of an ontology that is an 'Identifier' or is in the role of an 'Identifier'. In EDAM, 'has_identifier' is not explicitly defined between EDAM concepts, only the inverse 'is_identifier_of'. + has identifier + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_input B' defines for the subject A, that it has the object B as a necessary or actual input or input argument. + OBO_REL:has_participant + + true + Subject A can either be concept that is or has an 'Operation' function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that has an 'Operation' function or is an 'Operation'. Object B can be any concept or entity. In EDAM, only 'has_input' is explicitly defined between EDAM concepts ('Operation' 'has_input' 'Data'). The inverse, 'is_input_of', is not explicitly defined. + has input + + + + + + + OBO_REL:has_participant + 'OBO_REL:has_participant' is narrower in the sense that it only relates ontological categories (concepts) that are a 'process' (span:Process) with ontological categories that are a 'continuant' (snap:Continuant), and broader in the sense that it relates with any participating objects not just inputs or input arguments of the subject. + + + + + true + In very unusual cases. + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_output B' defines for the subject A, that it has the object B as a necessary or actual output or output argument. + OBO_REL:has_participant + + true + Subject A can either be concept that is or has an 'Operation' function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that has an 'Operation' function or is an 'Operation'. Object B can be any concept or entity. In EDAM, only 'has_output' is explicitly defined between EDAM concepts ('Operation' 'has_output' 'Data'). The inverse, 'is_output_of', is not explicitly defined. + has output + + + + + + + OBO_REL:has_participant + 'OBO_REL:has_participant' is narrower in the sense that it only relates ontological categories (concepts) that are a 'process' (span:Process) with ontological categories that are a 'continuant' (snap:Continuant), and broader in the sense that it relates with any participating objects not just outputs or output arguments of the subject. It is also not clear whether an output (result) actually participates in the process that generates it. + + + + + true + In very unusual cases. + + + + + + + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_topic B' defines for the subject A, that it has the object B as its topic (A is in the scope of a topic B). + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is a 'Topic', or in unexpected cases an entity outside of an ontology that is a 'Topic' or is in the role of a 'Topic'. In EDAM, only 'has_topic' is explicitly defined between EDAM concepts ('Operation' or 'Data' 'has_topic' 'Topic'). The inverse, 'is_topic_of', is not explicitly defined. + has topic + + + + + + + + + true + In very unusual cases. + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_format_of B' defines for the subject A, that it is a data format of the object B. + OBO_REL:quality_of + + false + Subject A can either be a concept that is a 'Format', or in unexpected cases an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is a 'Format' or is in the role of a 'Format'. Object B can be any concept or entity outside of an ontology that is (or is in a role of) 'Data', or an input, output, input or output argument of an 'Operation'. In EDAM, only 'is_format_of' is explicitly defined between EDAM concepts ('Format' 'is_format_of' 'Data'). The inverse, 'has_format', is not explicitly defined. + is format of + + + + + + OBO_REL:quality_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:quality_of' might be seen narrower in the sense that it only relates subjects that are a 'quality' (snap:Quality) with objects that are an 'independent_continuant' (snap:IndependentContinuant), and is broader in the sense that it relates any qualities of the object. + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_function_of B' defines for the subject A, that it is a function of the object B. + OBO_REL:function_of + OBO_REL:inheres_in + + true + Subject A can either be concept that is (or is in a role of) a function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is (or is in a role of) a function specification. Object B can be any concept or entity. Within EDAM itself, 'is_function_of' is not used. + is function of + + + + + + + OBO_REL:function_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:function_of' only relates subjects that are a 'function' (snap:Function) with objects that are an 'independent_continuant' (snap:IndependentContinuant), so for example no processes. It does not define explicitly that the subject is a function of the object. + + + + + OBO_REL:inheres_in + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:inheres_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'specifically_dependent_continuant' (snap:SpecificallyDependentContinuant) with ontological categories that are an 'independent_continuant' (snap:IndependentContinuant), and broader in the sense that it relates any borne subjects not just functions. + + + + + true + In very unusual cases. + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_identifier_of B' defines for the subject A, that it is an identifier of the object B. + + false + Subject A can either be a concept that is an 'Identifier', or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is an 'Identifier' or is in the role of an 'Identifier'. Object B can be any concept or entity outside of an ontology. In EDAM, only 'is_identifier_of' is explicitly defined between EDAM concepts (only 'Identifier' 'is_identifier_of' 'Data'). The inverse, 'has_identifier', is not explicitly defined. + is identifier of + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_input_of B' defines for the subject A, that it as a necessary or actual input or input argument of the object B. + OBO_REL:participates_in + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is or has an 'Operation' function, or an entity outside of an ontology that has an 'Operation' function or is an 'Operation'. In EDAM, 'is_input_of' is not explicitly defined between EDAM concepts, only the inverse 'has_input'. + is input of + + + + + + + OBO_REL:participates_in + 'OBO_REL:participates_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'continuant' (snap:Continuant) with ontological categories that are a 'process' (span:Process), and broader in the sense that it relates any participating subjects not just inputs or input arguments. + + + + + true + In very unusual cases. + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_output_of B' defines for the subject A, that it as a necessary or actual output or output argument of the object B. + OBO_REL:participates_in + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is or has an 'Operation' function, or an entity outside of an ontology that has an 'Operation' function or is an 'Operation'. In EDAM, 'is_output_of' is not explicitly defined between EDAM concepts, only the inverse 'has_output'. + is output of + + + + + + + OBO_REL:participates_in + 'OBO_REL:participates_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'continuant' (snap:Continuant) with ontological categories that are a 'process' (span:Process), and broader in the sense that it relates any participating subjects not just outputs or output arguments. It is also not clear whether an output (result) actually participates in the process that generates it. + + + + + true + In very unusual cases. + + + + + + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_topic_of B' defines for the subject A, that it is a topic of the object B (a topic A is the scope of B). + OBO_REL:quality_of + + true + Subject A can either be a concept that is a 'Topic', or in unexpected cases an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is a 'Topic' or is in the role of a 'Topic'. Object B can be any concept or entity outside of an ontology. In EDAM, 'is_topic_of' is not explicitly defined between EDAM concepts, only the inverse 'has_topic'. + is topic of + + + + + + OBO_REL:quality_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:quality_of' might be seen narrower in the sense that it only relates subjects that are a 'quality' (snap:Quality) with objects that are an 'independent_continuant' (snap:IndependentContinuant), and is broader in the sense that it relates any qualities of the object. + + + + + true + In very unusual cases. + + + + + + + + + + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A type of computational resource used in bioinformatics. + + Resource type + true + + + + + + + + + + + + beta12orEarlier + true + Information, represented in an information artefact (data record) that is 'understandable' by dedicated computational tools that can use the data as input or produce it as output. + Data record + Data set + Datum + + + Data + + + + + + + + + + + + + Data record + EDAM does not distinguish a data record (a tool-understandable information artefact) from data or datum (its content, the tool-understandable encoding of an information). + + + + + Data set + EDAM does not distinguish the multiplicity of data, such as one data item (datum) versus a collection of data (data set). + + + + + Datum + EDAM does not distinguish the multiplicity of data, such as one data item (datum) versus a collection of data (data set). + + + + + + + + + beta12orEarlier + beta12orEarlier + + A bioinformatics package or tool, e.g. a standalone application or web service. + + + Tool + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A digital data archive typically based around a relational model but sometimes using an object-oriented, tree or graph-based model. + + + Database + true + + + + + + + + + + + + + + + beta12orEarlier + An ontology of biological or bioinformatics concepts and relations, a controlled vocabulary, structured glossary etc. + + + Ontology + + + + + + + + + beta12orEarlier + 1.5 + + + A directory on disk from which files are read. + + Directory metadata + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controlled vocabulary from National Library of Medicine. The MeSH thesaurus is used to index articles in biomedical journals for the Medline/PubMED databases. + + MeSH vocabulary + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controlled vocabulary for gene names (symbols) from HUGO Gene Nomenclature Committee. + + HGNC vocabulary + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Compendium of controlled vocabularies for the biomedical domain (Unified Medical Language System). + + UMLS vocabulary + true + + + + + + + + + + + + + + + + beta12orEarlier + true + A text token, number or something else which identifies an entity, but which may not be persistent (stable) or unique (the same identifier may identify multiple things). + ID + + + + Identifier + + + + + + + + + Almost exact but limited to identifying resources, and being unambiguous. + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An entry (retrievable via URL) from a biological database. + + Database entry + true + + + + + + + + + beta12orEarlier + Mass of a molecule. + + + Molecular mass + + + + + + + + + beta12orEarlier + PDBML:pdbx_formal_charge + Net charge of a molecule. + + + Molecular charge + + + + + + + + + beta12orEarlier + A specification of a chemical structure. + Chemical structure specification + + + Chemical formula + + + + + + + + + beta12orEarlier + A QSAR quantitative descriptor (name-value pair) of chemical structure. + + + QSAR descriptors have numeric values that quantify chemical information encoded in a symbolic representation of a molecule. They are used in quantitative structure activity relationship (QSAR) applications. Many subtypes of individual descriptors (not included in EDAM) cover various types of protein properties. + QSAR descriptor + + + + + + + + + beta12orEarlier + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw molecular sequence (string of characters) which might include ambiguity, unknown positions and non-sequence characters. + + + Non-sequence characters may be used for example for gaps and translation stop. + Raw sequence + true + + + + + + + + + beta12orEarlier + SO:2000061 + A molecular sequence and associated metadata. + + + Sequence record + http://purl.bioontology.org/ontology/MSH/D058977 + + + + + + + + + beta12orEarlier + A collection of one or typically multiple molecular sequences (which can include derived data or metadata) that do not (typically) correspond to molecular sequence database records or entries and which (typically) are derived from some analytical method. + Alignment reference + SO:0001260 + + + An example is an alignment reference; one or a set of reference molecular sequences, structures, or profiles used for alignment of genomic, transcriptomic, or proteomic experimental data. + This concept may be used for arbitrary sequence sets and associated data arising from processing. + Sequence set + + + + + + + + + beta12orEarlier + 1.5 + + + A character used to replace (mask) other characters in a molecular sequence. + + Sequence mask character + true + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of sequence masking to perform. + + Sequence masking is where specific characters or positions in a molecular sequence are masked (replaced) with an another (mask character). The mask type indicates what is masked, for example regions that are not of interest or which are information-poor including acidic protein regions, basic protein regions, proline-rich regions, low compositional complexity regions, short-periodicity internal repeats, simple repeats and low complexity regions. Masked sequences are used in database search to eliminate statistically significant but biologically uninteresting hits. + Sequence mask type + true + + + + + + + + + beta12orEarlier + 1.20 + + + The strand of a DNA sequence (forward or reverse). + + The forward or 'top' strand might specify a sequence is to be used as given, the reverse or 'bottom' strand specifying the reverse complement of the sequence is to be used. + DNA sense specification + true + + + + + + + + + beta12orEarlier + 1.5 + + + A specification of sequence length(s). + + Sequence length specification + true + + + + + + + + + beta12orEarlier + 1.5 + + + Basic or general information concerning molecular sequences. + + This is used for such things as a report including the sequence identifier, type and length. + Sequence metadata + true + + + + + + + + + beta12orEarlier + How the annotation of a sequence feature (for example in EMBL or Swiss-Prot) was derived. + + + This might be the name and version of a software tool, the name of a database, or 'curated' to indicate a manual annotation (made by a human). + Sequence feature source + + + + + + + + + beta12orEarlier + A report of sequence hits and associated data from searching a database of sequences (for example a BLAST search). This will typically include a list of scores (often with statistical evaluation) and a set of alignments for the hits. + Database hits (sequence) + Sequence database hits + Sequence database search results + Sequence search hits + + + The score list includes the alignment score, percentage of the query sequence matched, length of the database sequence entry in this alignment, identifier of the database sequence entry, excerpt of the database sequence entry description etc. + Sequence search results + + + + + + + + + + beta12orEarlier + Report on the location of matches ("hits") between sequences, sequence profiles, motifs (conserved or functional patterns) and other types of sequence signatures. + Profile-profile alignment + Protein secondary database search results + Search results (protein secondary database) + Sequence motif hits + Sequence motif matches + Sequence profile alignment + Sequence profile hits + Sequence profile matches + Sequence-profile alignment + + + A "profile-profile alignment" is an alignment of two sequence profiles, each profile typically representing a sequence alignment. + A "sequence-profile alignment" is an alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment). + This includes reports of hits from a search of a protein secondary or domain database. Data associated with the search or alignment might also be included, e.g. ranked list of best-scoring sequences, a graphical representation of scores etc. + Sequence signature matches + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data files used by motif or profile methods. + + Sequence signature model + true + + + + + + + + + + + + + + + beta12orEarlier + Data concerning concerning specific or conserved pattern in molecular sequences and the classifiers used for their identification, including sequence motifs, profiles or other diagnostic element. + + + This can include metadata about a motif or sequence profile such as its name, length, technical details about the profile construction, and so on. + Sequence signature data + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment of exact matches between subsequences (words) within two or more molecular sequences. + + Sequence alignment (words) + true + + + + + + + + + beta12orEarlier + A dotplot of sequence similarities identified from word-matching or character comparison. + + + Dotplot + + + + + + + + + + + + + + + beta12orEarlier + Alignment of multiple molecular sequences. + Multiple sequence alignment + msa + + + Sequence alignment + + http://purl.bioontology.org/ontology/MSH/D016415 + http://semanticscience.org/resource/SIO_010066 + + + + + + + + + beta12orEarlier + 1.5 + + + Some simple value controlling a sequence alignment (or similar 'match') operation. + + Sequence alignment parameter + true + + + + + + + + + beta12orEarlier + A value representing molecular sequence similarity. + + + Sequence similarity score + + + + + + + + + beta12orEarlier + 1.5 + + + Report of general information on a sequence alignment, typically include a description, sequence identifiers and alignment score. + + Sequence alignment metadata + true + + + + + + + + + beta12orEarlier + An informative report of molecular sequence alignment-derived data or metadata. + Sequence alignment metadata + + + Use this for any computer-generated reports on sequence alignments, and for general information (metadata) on a sequence alignment, such as a description, sequence identifiers and alignment score. + Sequence alignment report + + + + + + + + + beta12orEarlier + "Sequence-profile alignment" and "Profile-profile alignment" are synonymous with "Sequence signature matches" which was already stated as including matches (alignment) and other data. + 1.25 or earlier + + A profile-profile alignment (each profile typically representing a sequence alignment). + + + Profile-profile alignment + true + + + + + + + + + beta12orEarlier + "Sequence-profile alignment" and "Profile-profile alignment" are synonymous with "Sequence signature matches" which was already stated as including matches (alignment) and other data. + 1.24 + + Alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment). + + + Sequence-profile alignment + true + + + + + + + + + beta12orEarlier + Moby:phylogenetic_distance_matrix + A matrix of estimated evolutionary distance between molecular sequences, such as is suitable for phylogenetic tree calculation. + Phylogenetic distance matrix + + + Methods might perform character compatibility analysis or identify patterns of similarity in an alignment or data matrix. + Sequence distance matrix + + + + + + + + + beta12orEarlier + Basic character data from which a phylogenetic tree may be generated. + + + As defined, this concept would also include molecular sequences, microsatellites, polymorphisms (RAPDs, RFLPs, or AFLPs), restriction sites and fragments + Phylogenetic character data + http://www.evolutionaryontology.org/cdao.owl#Character + + + + + + + + + + + + + + + beta12orEarlier + Moby:Tree + Moby:myTree + Moby:phylogenetic_tree + The raw data (not just an image) from which a phylogenetic tree is directly generated or plotted, such as topology, lengths (in time or in expected amounts of variance) and a confidence interval for each length. + Phylogeny + + + A phylogenetic tree is usually constructed from a set of sequences from which an alignment (or data matrix) is calculated. See also 'Phylogenetic tree image'. + Phylogenetic tree + http://purl.bioontology.org/ontology/MSH/D010802 + http://www.evolutionaryontology.org/cdao.owl#Tree + + + + + + + + + beta12orEarlier + Matrix of integer or floating point numbers for amino acid or nucleotide sequence comparison. + Substitution matrix + + + The comparison matrix might include matrix name, optional comment, height and width (or size) of matrix, an index row/column (of characters) and data rows/columns (of integers or floats). + Comparison matrix + + + + + + + + + beta12orEarlier + beta12orEarlier + + Predicted or actual protein topology represented as a string of protein secondary structure elements. + + + The location and size of the secondary structure elements and intervening loop regions is usually indicated. + Protein topology + true + + + + + + + + + beta12orEarlier + 1.8 + + Secondary structure (predicted or real) of a protein. + + + Protein features report (secondary structure) + true + + + + + + + + + beta12orEarlier + 1.8 + + Super-secondary structure of protein sequence(s). + + + Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc. + Protein features report (super-secondary) + true + + + + + + + + + beta12orEarlier + true + Alignment of the (1D representations of) secondary structure of two or more proteins. + Secondary structure alignment (protein) + + + Protein secondary structure alignment + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on protein secondary structure alignment-derived data or metadata. + + Secondary structure alignment metadata (protein) + true + + + + + + + + + + + + + + + beta12orEarlier + Moby:RNAStructML + An informative report of secondary structure (predicted or real) of an RNA molecule. + Secondary structure (RNA) + + + This includes thermodynamically stable or evolutionarily conserved structures such as knots, pseudoknots etc. + RNA secondary structure + + + + + + + + + beta12orEarlier + true + Moby:RNAStructAlignmentML + Alignment of the (1D representations of) secondary structure of two or more RNA molecules. + Secondary structure alignment (RNA) + + + RNA secondary structure alignment + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report of RNA secondary structure alignment-derived data or metadata. + + Secondary structure alignment metadata (RNA) + true + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a macromolecular tertiary (3D) structure or part of a structure. + Coordinate model + Structure data + + + The coordinate data may be predicted or real. + Structure + http://purl.bioontology.org/ontology/MSH/D015394 + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An entry from a molecular tertiary (3D) structure database. + + Tertiary structure record + true + + + + + + + + + beta12orEarlier + 1.8 + + + Results (hits) from searching a database of tertiary structure. + + Structure database search results + true + + + + + + + + + + + + + + + beta12orEarlier + Alignment (superimposition) of molecular tertiary (3D) structures. + + + A tertiary structure alignment will include the untransformed coordinates of one macromolecule, followed by the second (or subsequent) structure(s) with all the coordinates transformed (by rotation / translation) to give a superposition. + Structure alignment + + + + + + + + + beta12orEarlier + An informative report of molecular tertiary structure alignment-derived data. + + + This is a broad data type and is used a placeholder for other, more specific types. + Structure alignment report + + + + + + + + + beta12orEarlier + A value representing molecular structure similarity, measured from structure alignment or some other type of structure comparison. + + + Structure similarity score + + + + + + + + + + + + + + + beta12orEarlier + Some type of structural (3D) profile or template (representing a structure or structure alignment). + 3D profile + Structural (3D) profile + + + Structural profile + + + + + + + + + beta12orEarlier + A 3D profile-3D profile alignment (each profile representing structures or a structure alignment). + Structural profile alignment + + + Structural (3D) profile alignment + + + + + + + + + beta12orEarlier + 1.5 + + + An alignment of a sequence to a 3D profile (representing structures or a structure alignment). + + Sequence-3D profile alignment + true + + + + + + + + + beta12orEarlier + Matrix of values used for scoring sequence-structure compatibility. + + + Protein sequence-structure scoring matrix + + + + + + + + + beta12orEarlier + An alignment of molecular sequence to structure (from threading sequence(s) through 3D structure or representation of structure(s)). + + + Sequence-structure alignment + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific amino acid. + + Amino acid annotation + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific peptide. + + Peptide annotation + true + + + + + + + + + beta12orEarlier + An informative human-readable report about one or more specific protein molecules or protein structural domains, derived from analysis of primary (sequence or structural) data. + Gene product annotation + + + Protein report + + + + + + + + + beta12orEarlier + A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a protein molecule or model. + Protein physicochemical property + Protein properties + Protein sequence statistics + + + This is a broad data type and is used a placeholder for other, more specific types. Data may be based on analysis of nucleic acid sequence or structural data, for example reports on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure, protein flexibility or motion, and protein architecture (spatial arrangement of secondary structure). + Protein property + + + + + + + + + beta12orEarlier + 1.8 + + 3D structural motifs in a protein. + + Protein structural motifs and surfaces + true + + + + + + + + + beta12orEarlier + 1.5 + + + Data concerning the classification of the sequences and/or structures of protein structural domain(s). + + Protein domain classification + true + + + + + + + + + beta12orEarlier + 1.8 + + structural domains or 3D folds in a protein or polypeptide chain. + + + Protein features report (domains) + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on architecture (spatial arrangement of secondary structure) of a protein structure. + + Protein architecture report + true + + + + + + + + + beta12orEarlier + 1.8 + + A report on an analysis or model of protein folding properties, folding pathways, residues or sites that are key to protein folding, nucleation or stabilisation centers etc. + + + Protein folding report + true + + + + + + + + + beta12orEarlier + beta13 + + + Data on the effect of (typically point) mutation on protein folding, stability, structure and function. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein features (mutation) + true + + + + + + + + + beta12orEarlier + Protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc. + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein interaction raw data + + + + + + + + + + + + + + + beta12orEarlier + Data concerning the interactions (predicted or known) within or between a protein, structural domain or part of a protein. This includes intra- and inter-residue contacts and distances, as well as interactions with other proteins and non-protein entities such as nucleic acid, metal atoms, water, ions etc. + Protein interaction record + Protein interaction report + Protein report (interaction) + Protein-protein interaction data + Atom interaction data + Protein non-covalent interactions report + Residue interaction data + + + Protein interaction data + + + + + + + + + + + + + + + beta12orEarlier + Protein classification data + An informative report on a specific protein family or other classification or group of protein sequences or structures. + Protein family annotation + + + Protein family report + + + + + + + + + beta12orEarlier + The maximum initial velocity or rate of a reaction. It is the limiting velocity as substrate concentrations get very large. + + + Vmax + + + + + + + + + beta12orEarlier + Km is the concentration (usually in Molar units) of substrate that leads to half-maximal velocity of an enzyme-catalysed reaction. + + + Km + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific nucleotide base. + + Nucleotide base annotation + true + + + + + + + + + beta12orEarlier + A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a nucleic acid molecule. + Nucleic acid physicochemical property + GC-content + Nucleic acid property (structural) + Nucleic acid structural property + + + Nucleic acid structural properties stiffness, curvature, twist/roll data or other conformational parameters or properties. + This is a broad data type and is used a placeholder for other, more specific types. + Nucleic acid property + + + + + + + + + + + + + + + beta12orEarlier + Data derived from analysis of codon usage (typically a codon usage table) of DNA sequences. + Codon usage report + + + This is a broad data type and is used a placeholder for other, more specific types. + Codon usage data + + + + + + + + + beta12orEarlier + Moby:GeneInfo + Moby:gene + Moby_namespace:Human_Readable_Description + A report on predicted or actual gene structure, regions which make an RNA product and features such as promoters, coding regions, splice sites etc. + Gene and transcript structure (report) + Gene annotation + Gene features report + Gene function (report) + Gene structure (repot) + Nucleic acid features (gene and transcript structure) + + + This includes any report on a particular locus or gene. This might include the gene name, description, summary and so on. It can include details about the function of a gene, such as its encoded protein or a functional classification of the gene sequence along according to the encoded protein(s). + Gene report + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on the classification of nucleic acid / gene sequences according to the functional classification of their gene products. + + Gene classification + true + + + + + + + + + beta12orEarlier + 1.8 + + stable, naturally occurring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms. + + + DNA variation + true + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific chromosome. + + + This includes basic information. e.g. chromosome number, length, karyotype features, chromosome sequence etc. + Chromosome report + + + + + + + + + beta12orEarlier + A human-readable collection of information about the set of genes (or allelic forms) present in an individual, organism or cell and associated with a specific physical characteristic, or a report concerning an organisms traits and phenotypes. + Genotype/phenotype annotation + + + Genotype/phenotype report + + + + + + + + + beta12orEarlier + 1.8 + + PCR experiments, e.g. quantitative real-time PCR. + + + PCR experiment report + true + + + + + + + + + + beta12orEarlier + Fluorescence trace data generated by an automated DNA sequencer, which can be interpreted as a molecular sequence (reads), given associated sequencing metadata such as base-call quality scores. + + + This is the raw data produced by a DNA sequencing machine. + Sequence trace + + + + + + + + + beta12orEarlier + An assembly of fragments of a (typically genomic) DNA sequence. + Contigs + SO:0000353 + SO:0001248 + + + Typically, an assembly is a collection of contigs (for example ESTs and genomic DNA fragments) that are ordered, aligned and merged. Annotation of the assembled sequence might be included. + Sequence assembly + + + + + + SO:0001248 + Perhaps surprisingly, the definition of 'SO:assembly' is narrower than the 'SO:sequence_assembly'. + + + + + + + + + beta12orEarlier + Radiation hybrid scores (RH) scores for one or more markers. + Radiation Hybrid (RH) scores + + + Radiation Hybrid (RH) scores are used in Radiation Hybrid mapping. + RH scores + + + + + + + + + beta12orEarlier + A human-readable collection of information about the linkage of alleles. + Gene annotation (linkage) + Linkage disequilibrium (report) + + + This includes linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome). + Genetic linkage report + + + + + + + + + beta12orEarlier + Data quantifying the level of expression of (typically) multiple genes, derived for example from microarray experiments. + Gene expression pattern + + + Gene expression profile + + + + + + + + + beta12orEarlier + 1.8 + + microarray experiments including conditions, protocol, sample:data relationships etc. + + + Microarray experiment report + true + + + + + + + + + beta12orEarlier + beta13 + + + Data on oligonucleotide probes (typically for use with DNA microarrays). + + Oligonucleotide probe data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Output from a serial analysis of gene expression (SAGE) experiment. + + SAGE experimental data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Massively parallel signature sequencing (MPSS) data. + + MPSS experimental data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Sequencing by synthesis (SBS) data. + + SBS experimental data + true + + + + + + + + + beta12orEarlier + 1.14 + + Tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. Typically this is the sequencing-based expression profile annotated with gene identifiers. + + + Sequence tag profile (with gene assignment) + true + + + + + + + + + beta12orEarlier + Protein X-ray crystallographic data + X-ray crystallography data. + + + Electron density map + + + + + + + + + beta12orEarlier + Nuclear magnetic resonance (NMR) raw data, typically for a protein. + Protein NMR data + + + Raw NMR data + + + + + + + + + beta12orEarlier + Protein secondary structure from protein coordinate or circular dichroism (CD) spectroscopic data. + CD spectrum + Protein circular dichroism (CD) spectroscopic data + + + CD spectra + + + + + + + + + + + + + + + beta12orEarlier + Volume map data from electron microscopy. + 3D volume map + EM volume map + Electron microscopy volume map + + + Volume map + + + + + + + + + beta12orEarlier + 1.19 + + Annotation on a structural 3D model (volume map) from electron microscopy. + + + Electron microscopy model + true + + + + + + + + + + + + + + + beta12orEarlier + Two-dimensional gel electrophoresis image. + + + 2D PAGE image + + + + + + + + + + + + + + + beta12orEarlier + Spectra from mass spectrometry. + Mass spectrometry spectra + + + Mass spectrum + + + + + + + + + + + + + + + + beta12orEarlier + A set of peptide masses (peptide mass fingerprint) from mass spectrometry. + Peak list + Protein fingerprint + Molecular weights standard fingerprint + + + A molecular weight standard fingerprint is standard protonated molecular masses e.g. from trypsin (modified porcine trypsin, Promega) and keratin peptides. + Peptide mass fingerprint + + + + + + + + + + + + + + + + beta12orEarlier + Protein or peptide identifications with evidence supporting the identifications, for example from comparing a peptide mass fingerprint (from mass spectrometry) to a sequence database, or the set of typical spectra one obtains when running a protein through a mass spectrometer. + 'Protein identification' + Peptide spectrum match + + + Peptide identification + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report about a specific biological pathway or network, typically including a map (diagram) of the pathway. + + Pathway or network annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A map (typically a diagram) of a biological pathway. + + Biological pathway map + true + + + + + + + + + beta12orEarlier + 1.5 + + + A definition of a data resource serving one or more types of data, including metadata and links to the resource or data proper. + + Data resource definition + true + + + + + + + + + beta12orEarlier + Basic information, annotation or documentation concerning a workflow (but not the workflow itself). + + + Workflow metadata + + + + + + + + + + + + + + + beta12orEarlier + A biological model represented in mathematical terms. + Biological model + + + Mathematical model + + + + + + + + + beta12orEarlier + A value representing estimated statistical significance of some observed data; typically sequence database hits. + + + Statistical estimate score + + + + + + + + + beta12orEarlier + 1.5 + + + Resource definition for an EMBOSS database. + + EMBOSS database resource definition + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a version of software or data, for example name, version number and release date. + + Development status / maturity may be part of the version information, for example in case of tools, standards, or some data records. + Version information + true + + + + + + + + + beta12orEarlier + A mapping of the accession numbers (or other database identifier) of entries between (typically) two biological or biomedical databases. + + + The cross-mapping is typically a table where each row is an accession number and each column is a database being cross-referenced. The cells give the accession number or identifier of the corresponding entry in a database. If a cell in the table is not filled then no mapping could be found for the database. Additional information might be given on version, date etc. + Database cross-mapping + + + + + + + + + + + + + + + beta12orEarlier + An index of data of biological relevance. + + + Data index + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information concerning an analysis of an index of biological data. + Database index annotation + + + Data index report + + + + + + + + + beta12orEarlier + Basic information on bioinformatics database(s) or other data sources such as name, type, description, URL etc. + + + Database metadata + + + + + + + + + beta12orEarlier + Basic information about one or more bioinformatics applications or packages, such as name, type, description, or other documentation. + + + Tool metadata + + + + + + + + + beta12orEarlier + 1.5 + + + Textual metadata on a submitted or completed job. + + Job metadata + true + + + + + + + + + beta12orEarlier + Textual metadata on a software author or end-user, for example a person or other software. + + + User metadata + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific chemical compound. + Chemical compound annotation + Chemical structure report + Small molecule annotation + + + Small molecule report + + + + + + + + + beta12orEarlier + A human-readable collection of information about a particular strain of organism cell line including plants, virus, fungi and bacteria. The data typically includes strain number, organism type, growth conditions, source and so on. + Cell line annotation + Organism strain data + + + Cell line report + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific scent. + + Scent annotation + true + + + + + + + + + beta12orEarlier + A term (name) from an ontology. + Ontology class name + Ontology terms + + + Ontology term + + + + + + + + + beta12orEarlier + Data concerning or derived from a concept from a biological ontology. + Ontology class metadata + Ontology term metadata + + + Ontology concept data + + + + + + + + + beta12orEarlier + Moby:BooleanQueryString + Moby:Global_Keyword + Moby:QueryString + Moby:Wildcard_Query + Keyword(s) or phrase(s) used (typically) for text-searching purposes. + Phrases + Term + + + Boolean operators (AND, OR and NOT) and wildcard characters may be allowed. + Keyword + + + + + + + + + beta12orEarlier + Moby:GCP_SimpleCitation + Moby:Publication + Bibliographic data that uniquely identifies a scientific article, book or other published material. + Bibliographic reference + Reference + + + A bibliographic reference might include information such as authors, title, journal name, date and (possibly) a link to the abstract or full-text of the article if available. + Citation + + + + + + + + + + beta12orEarlier + A scientific text, typically a full text article from a scientific journal. + Article text + Scientific article + + + Article + + + + + + + + + + beta12orEarlier + A human-readable collection of information resulting from text mining. + Text mining output + + + A text mining abstract will typically include an annotated a list of words or sentences extracted from one or more scientific articles. + Text mining report + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of a biological entity or phenomenon. + + Entity identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of a data resource. + + Data resource identifier + true + + + + + + + + + beta12orEarlier + true + An identifier that identifies a particular type of data. + Identifier (typed) + + + + This concept exists only to assist EDAM maintenance and navigation in graphical browsers. It does not add semantic information. This branch provides an alternative organisation of the concepts nested under 'Accession' and 'Name'. All concepts under here are already included under 'Accession' or 'Name'. + Identifier (by type of entity) + + + + + + + + + beta12orEarlier + true + An identifier of a bioinformatics tool, e.g. an application or web service. + + + + Tool identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a discrete entity (any biological thing with a distinct, discrete physical existence). + + Discrete entity identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of an entity feature (a physical part or region of a discrete biological entity, or a feature that can be mapped to such a thing). + + Entity feature identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a collection of discrete biological entities. + + Entity collection identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a physical, observable biological occurrence or event. + + Phenomenon identifier + true + + + + + + + + + beta12orEarlier + true + Name or other identifier of a molecule. + + + + Molecule identifier + + + + + + + + + beta12orEarlier + true + Identifier (e.g. character symbol) of a specific atom. + Atom identifier + + + + Atom ID + + + + + + + + + + beta12orEarlier + true + Name of a specific molecule. + + + + Molecule name + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type a molecule. + + For example, 'Protein', 'DNA', 'RNA' etc. + Molecule type + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Unique identifier of a chemical compound. + + Chemical identifier + true + + + + + + + + + + + + + + + + beta12orEarlier + Name of a chromosome. + + + + Chromosome name + + + + + + + + + beta12orEarlier + true + Identifier of a peptide chain. + + + + Peptide identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a protein. + + + + Protein identifier + + + + + + + + + + beta12orEarlier + Unique name of a chemical compound. + Chemical name + + + + Compound name + + + + + + + + + beta12orEarlier + Unique registry number of a chemical compound. + + + + Chemical registry number + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Code word for a ligand, for example from a PDB file. + + Ligand identifier + true + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a drug. + + + + Drug identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an amino acid. + Residue identifier + + + + Amino acid identifier + + + + + + + + + beta12orEarlier + true + Name or other identifier of a nucleotide. + + + + Nucleotide identifier + + + + + + + + + beta12orEarlier + true + Identifier of a monosaccharide. + + + + Monosaccharide identifier + + + + + + + + + beta12orEarlier + Unique name from Chemical Entities of Biological Interest (ChEBI) of a chemical compound. + ChEBI chemical name + + + + This is the recommended chemical name for use for example in database annotation. + Chemical name (ChEBI) + + + + + + + + + beta12orEarlier + IUPAC recommended name of a chemical compound. + IUPAC chemical name + + + + Chemical name (IUPAC) + + + + + + + + + beta12orEarlier + International Non-proprietary Name (INN or 'generic name') of a chemical compound, assigned by the World Health Organisation (WHO). + INN chemical name + + + + Chemical name (INN) + + + + + + + + + beta12orEarlier + Brand name of a chemical compound. + Brand chemical name + + + + Chemical name (brand) + + + + + + + + + beta12orEarlier + Synonymous name of a chemical compound. + Synonymous chemical name + + + + Chemical name (synonymous) + + + + + + + + + + + beta12orEarlier + CAS registry number of a chemical compound; a unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service. + CAS chemical registry number + Chemical registry number (CAS) + + + + CAS number + + + + + + + + + + beta12orEarlier + Beilstein registry number of a chemical compound. + Beilstein chemical registry number + + + + Chemical registry number (Beilstein) + + + + + + + + + + beta12orEarlier + Gmelin registry number of a chemical compound. + Gmelin chemical registry number + + + + Chemical registry number (Gmelin) + + + + + + + + + beta12orEarlier + 3-letter code word for a ligand (HET group) from a PDB file, for example ATP. + Component identifier code + Short ligand name + + + + HET group name + + + + + + + + + beta12orEarlier + String of one or more ASCII characters representing an amino acid. + + + + Amino acid name + + + + + + + + + + beta12orEarlier + String of one or more ASCII characters representing a nucleotide. + + + + Nucleotide code + + + + + + + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_strand_id + WHATIF: chain + Identifier of a polypeptide chain from a protein. + Chain identifier + PDB chain identifier + PDB strand id + Polypeptide chain identifier + Protein chain identifier + + + + This is typically a character (for the chain) appended to a PDB identifier, e.g. 1cukA + Polypeptide chain ID + + + + + + + + + + beta12orEarlier + Name of a protein. + + + + Protein name + + + + + + + + + beta12orEarlier + Name or other identifier of an enzyme or record from a database of enzymes. + + + + Enzyme identifier + + + + + + + + + + beta12orEarlier + [0-9]+\.-\.-\.-|[0-9]+\.[0-9]+\.-\.-|[0-9]+\.[0-9]+\.[0-9]+\.-|[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+ + Moby:Annotated_EC_Number + Moby:EC_Number + An Enzyme Commission (EC) number of an enzyme. + EC + EC code + Enzyme Commission number + + + + EC number + + + + + + + + + + beta12orEarlier + Name of an enzyme. + + + + Enzyme name + + + + + + + + + beta12orEarlier + Name of a restriction enzyme. + + + + Restriction enzyme name + + + + + + + + + beta12orEarlier + 1.5 + + + A specification (partial or complete) of one or more positions or regions of a molecular sequence or map. + + Sequence position specification + true + + + + + + + + + beta12orEarlier + A unique identifier of molecular sequence feature, for example an ID of a feature that is unique within the scope of the GFF file. + + + + Sequence feature ID + + + + + + + + + beta12orEarlier + PDBML:_atom_site.id + WHATIF: PDBx_atom_site + WHATIF: number + A position of one or more points (base or residue) in a sequence, or part of such a specification. + SO:0000735 + + + Sequence position + + + + + + + + + beta12orEarlier + Specification of range(s) of sequence positions. + + + Sequence range + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of an nucleic acid feature. + + Nucleic acid feature identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a protein feature. + + Protein feature identifier + true + + + + + + + + + beta12orEarlier + The type of a sequence feature, typically a term or accession from the Sequence Ontology, for example an EMBL or Swiss-Prot sequence feature key. + Sequence feature method + Sequence feature type + + + A feature key indicates the biological nature of the feature or information about changes to or versions of the sequence. + Sequence feature key + + + + + + + + + beta12orEarlier + Typically one of the EMBL or Swiss-Prot feature qualifiers. + + + Feature qualifiers hold information about a feature beyond that provided by the feature key and location. + Sequence feature qualifier + + + + + + + + + + + beta12orEarlier + A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user. Typically an EMBL or Swiss-Prot feature label. + Sequence feature name + + + A feature label identifies a feature of a sequence database entry. When used with the database name and the entry's primary accession number, it is a unique identifier of that feature. + Sequence feature label + + + + + + + + + + beta12orEarlier + The name of a sequence feature-containing entity adhering to the standard feature naming scheme used by all EMBOSS applications. + UFO + + + EMBOSS Uniform Feature Object + + + + + + + + + beta12orEarlier + beta12orEarlier + + + String of one or more ASCII characters representing a codon. + + Codon name + true + + + + + + + + + + + + + + + beta12orEarlier + true + Moby:GeneAccessionList + An identifier of a gene, such as a name/symbol or a unique identifier of a gene in a database. + + + + Gene identifier + + + + + + + + + beta12orEarlier + Moby_namespace:Global_GeneCommonName + Moby_namespace:Global_GeneSymbol + The short name of a gene; a single word that does not contain white space characters. It is typically derived from the gene name. + + + + Gene symbol + + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs:LocusID + http://www.geneontology.org/doc/GO.xrf_abbs:NCBI_Gene + An NCBI unique identifier of a gene. + Entrez gene ID + Gene identifier (Entrez) + Gene identifier (NCBI) + NCBI gene ID + NCBI geneid + + + + Gene ID (NCBI) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An NCBI RefSeq unique identifier of a gene. + + Gene identifier (NCBI RefSeq) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An NCBI UniGene unique identifier of a gene. + + Gene identifier (NCBI UniGene) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An Entrez unique identifier of a gene. + + Gene identifier (Entrez) + true + + + + + + + + + + beta12orEarlier + Identifier of a gene or feature from the CGD database. + CGD ID + + + + Gene ID (CGD) + + + + + + + + + + beta12orEarlier + Identifier of a gene from DictyBase. + + + + Gene ID (DictyBase) + + + + + + + + + + + beta12orEarlier + Unique identifier for a gene (or other feature) from the Ensembl database. + Gene ID (Ensembl) + + + + Ensembl gene ID + + + + + + + + + + + beta12orEarlier + S[0-9]+ + Identifier of an entry from the SGD database. + SGD identifier + + + + Gene ID (SGD) + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9\.-]* + Moby_namespace:GeneDB + Identifier of a gene from the GeneDB database. + GeneDB identifier + + + + Gene ID (GeneDB) + + + + + + + + + + + beta12orEarlier + Identifier of an entry from the TIGR database. + + + + TIGR identifier + + + + + + + + + + beta12orEarlier + Gene:[0-9]{7} + Identifier of an gene from the TAIR database. + + + + TAIR accession (gene) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a protein structural domain. + + + + This is typically a character or string concatenated with a PDB identifier and a chain identifier. + Protein domain ID + + + + + + + + + + beta12orEarlier + Identifier of a protein domain (or other node) from the SCOP database. + + + + SCOP domain identifier + + + + + + + + + beta12orEarlier + 1nr3A00 + Identifier of a protein domain from CATH. + CATH domain identifier + + + + CATH domain ID + + + + + + + + + beta12orEarlier + A SCOP concise classification string (sccs) is a compact representation of a SCOP domain classification. + + + + An scss includes the class (alphabetical), fold, superfamily and family (all numerical) to which a given domain belongs. + SCOP concise classification string (sccs) + + + + + + + + + beta12orEarlier + 33229 + Unique identifier (number) of an entry in the SCOP hierarchy, for example 33229. + SCOP unique identifier + sunid + + + + A sunid uniquely identifies an entry in the SCOP hierarchy, including leaves (the SCOP domains) and higher level nodes including entries corresponding to the protein level. + SCOP sunid + + + + + + + + + beta12orEarlier + 3.30.1190.10.1.1.1.1.1 + A code number identifying a node from the CATH database. + CATH code + CATH node identifier + + + + CATH node ID + + + + + + + + + beta12orEarlier + The name of a biological kingdom (Bacteria, Archaea, or Eukaryotes). + + + + Kingdom name + + + + + + + + + beta12orEarlier + The name of a species (typically a taxonomic group) of organism. + Organism species + + + + Species name + + + + + + + + + + beta12orEarlier + The name of a strain of an organism variant, typically a plant, virus or bacterium. + + + + Strain name + + + + + + + + + beta12orEarlier + true + A string of characters that name or otherwise identify a resource on the Internet. + URIs + + + URI + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a biological or bioinformatics database. + Database identifier + + + + Database ID + + + + + + + + + beta12orEarlier + The name of a directory. + + + + Directory name + + + + + + + + + beta12orEarlier + The name (or part of a name) of a file (of any type). + + + + File name + + + + + + + + + + + + + + + + beta12orEarlier + Name of an ontology of biological or bioinformatics concepts and relations. + + + + Ontology name + + + + + + + + + beta12orEarlier + Moby:Link + Moby:URL + A Uniform Resource Locator (URL). + + + URL + + + + + + + + + beta12orEarlier + A Uniform Resource Name (URN). + + + URN + + + + + + + + + beta12orEarlier + A Life Science Identifier (LSID) - a unique identifier of some data. + Life Science Identifier + + + LSIDs provide a standard way to locate and describe data. An LSID is represented as a Uniform Resource Name (URN) with the following format: URN:LSID:<Authority>:<Namespace>:<ObjectID>[:<Version>] + LSID + + + + + + + + + + beta12orEarlier + The name of a biological or bioinformatics database. + + + + Database name + + + + + + + + + beta12orEarlier + beta13 + + + The name of a molecular sequence database. + + Sequence database name + true + + + + + + + + + beta12orEarlier + The name of a file (of any type) with restricted possible values. + + + + Enumerated file name + + + + + + + + + beta12orEarlier + The extension of a file name. + + + + A file extension is the characters appearing after the final '.' in the file name. + File name extension + + + + + + + + + beta12orEarlier + The base name of a file. + + + + A file base name is the file name stripped of its directory specification and extension. + File base name + + + + + + + + + + + + + + + + beta12orEarlier + Name of a QSAR descriptor. + + + + QSAR descriptor name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of an entry from a database where the same type of identifier is used for objects (data) of different semantic type. + + This concept is required for completeness. It should never have child concepts. + Database entry identifier + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of molecular sequence(s) or entries from a molecular sequence database. + + + + Sequence identifier + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a set of molecular sequence(s). + + + + Sequence set ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Identifier of a sequence signature (motif or profile) for example from a database of sequence patterns. + + Sequence signature identifier + true + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a molecular sequence alignment, for example a record from an alignment database. + + + + Sequence alignment ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of a phylogenetic distance matrix. + + Phylogenetic distance matrix identifier + true + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a phylogenetic tree for example from a phylogenetic tree database. + + + + Phylogenetic tree ID + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a comparison matrix. + Substitution matrix identifier + + + + Comparison matrix identifier + + + + + + + + + beta12orEarlier + true + A unique and persistent identifier of a molecular tertiary structure, typically an entry from a structure database. + + + + Structure ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier or name of a structural (3D) profile or template (representing a structure or structure alignment). + Structural profile identifier + + + + Structural (3D) profile ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of tertiary structure alignments. + + + + Structure alignment ID + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an index of amino acid physicochemical and biochemical property data. + + + + Amino acid index ID + + + + + + + + + + + + + + + beta12orEarlier + true + Molecular interaction ID + Identifier of a report of protein interactions from a protein interaction database (typically). + + + + Protein interaction ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a protein family. + Protein secondary database record identifier + + + + Protein family identifier + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Unique name of a codon usage table. + + + + Codon usage table name + + + + + + + + + + beta12orEarlier + true + Identifier of a transcription factor (or a TF binding site). + + + + Transcription factor identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of microarray data. + + + + Experiment annotation ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of electron microscopy data. + + + + Electron microscopy model ID + + + + + + + + + + + + + + + beta12orEarlier + true + Accession of a report of gene expression (e.g. a gene expression profile) from a database. + Gene expression profile identifier + + + + Gene expression report ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of genotypes and phenotypes. + + + + Genotype and phenotype annotation ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of biological pathways or networks. + + + + Pathway or network identifier + + + + + + + + + beta12orEarlier + true + Identifier of a biological or biomedical workflow, typically from a database of workflows. + + + + Workflow ID + + + + + + + + + beta12orEarlier + true + Identifier of a data type definition from some provider. + Data resource definition identifier + + + + Data resource definition ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a mathematical model, typically an entry from a database. + Biological model identifier + + + + Biological model ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of chemicals. + Chemical compound identifier + Compound ID + Small molecule identifier + + + + Compound identifier + + + + + + + + + beta12orEarlier + A unique (typically numerical) identifier of a concept in an ontology of biological or bioinformatics concepts and relations. + + + + Ontology concept ID + + + + + + + + + + + + + + + beta12orEarlier + true + Unique identifier of a scientific article. + Article identifier + + + + Article ID + + + + + + + + + + beta12orEarlier + FB[a-zA-Z_0-9]{2}[0-9]{7} + Identifier of an object from the FlyBase database. + + + + FlyBase ID + + + + + + + + + + beta12orEarlier + Name of an object from the WormBase database, usually a human-readable name. + + + + WormBase name + + + + + + + + + beta12orEarlier + Class of an object from the WormBase database. + + + + A WormBase class describes the type of object such as 'sequence' or 'protein'. + WormBase class + + + + + + + + + beta12orEarlier + true + A persistent, unique identifier of a molecular sequence database entry. + Sequence accession number + + + + Sequence accession + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing a type of molecular sequence. + + Sequence type might reflect the molecule (protein, nucleic acid etc) or the sequence itself (gapped, ambiguous etc). + Sequence type + true + + + + + + + + + + beta12orEarlier + The name of a sequence-based entity adhering to the standard sequence naming scheme used by all EMBOSS applications. + EMBOSS USA + + + + EMBOSS Uniform Sequence Address + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a protein sequence database entry. + Protein sequence accession number + + + + Sequence accession (protein) + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a nucleotide sequence database entry. + Nucleotide sequence accession number + + + + Sequence accession (nucleic acid) + + + + + + + + + + beta12orEarlier + (NC|AC|NG|NT|NW|NZ|NM|NR|XM|XR|NP|AP|XP|YP|ZP)_[0-9]+ + Accession number of a RefSeq database entry. + RefSeq ID + + + + RefSeq accession + + + + + + + + + beta12orEarlier + 1.0 + + + Accession number of a UniProt (protein sequence) database entry. May contain version or isoform number. + + UniProt accession (extended) + true + + + + + + + + + + beta12orEarlier + An identifier of PIR sequence database entry. + PIR ID + PIR accession number + + + + PIR identifier + + + + + + + + + beta12orEarlier + 1.2 + + Identifier of a TREMBL sequence database entry. + + + TREMBL accession + true + + + + + + + + + beta12orEarlier + Primary identifier of a Gramene database entry. + Gramene primary ID + + + + Gramene primary identifier + + + + + + + + + + beta12orEarlier + Identifier of a (nucleic acid) entry from the EMBL/GenBank/DDBJ databases. + + + + EMBL/GenBank/DDBJ ID + + + + + + + + + + beta12orEarlier + A unique identifier of an entry (gene cluster) from the NCBI UniGene database. + UniGene ID + UniGene cluster ID + UniGene identifier + + + + Sequence cluster ID (UniGene) + + + + + + + + + + + beta12orEarlier + Identifier of a dbEST database entry. + dbEST ID + + + + dbEST accession + + + + + + + + + + beta12orEarlier + Identifier of a dbSNP database entry. + dbSNP identifier + + + + dbSNP ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The EMBOSS type of a molecular sequence. + + See the EMBOSS documentation (http://emboss.sourceforge.net/) for a definition of what this includes. + EMBOSS sequence type + true + + + + + + + + + beta12orEarlier + 1.5 + + + List of EMBOSS Uniform Sequence Addresses (EMBOSS listfile). + + EMBOSS listfile + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a cluster of molecular sequence(s). + + + + Sequence cluster ID + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the COG database. + COG ID + + + + Sequence cluster ID (COG) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a sequence motif, for example an entry from a motif database. + + + + Sequence motif identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a sequence profile. + + + + A sequence profile typically represents a sequence alignment. + Sequence profile ID + + + + + + + + + beta12orEarlier + Identifier of an entry from the ELMdb database of protein functional sites. + + + + ELM ID + + + + + + + + + beta12orEarlier + PS[0-9]{5} + Accession number of an entry from the Prosite database. + Prosite ID + + + + Prosite accession number + + + + + + + + + + + + + + + + beta12orEarlier + Unique identifier or name of a HMMER hidden Markov model. + + + + HMMER hidden Markov model ID + + + + + + + + + + beta12orEarlier + Unique identifier or name of a profile from the JASPAR database. + + + + JASPAR profile ID + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a sequence alignment. + + Possible values include for example the EMBOSS alignment types, BLAST alignment types and so on. + Sequence alignment type + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The type of a BLAST sequence alignment. + + BLAST sequence alignment type + true + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a phylogenetic tree. + + For example 'nj', 'upgmp' etc. + Phylogenetic tree type + true + + + + + + + + + + beta12orEarlier + Accession number of an entry from the TreeBASE database. + + + + TreeBASE study accession number + + + + + + + + + + beta12orEarlier + Accession number of an entry from the TreeFam database. + + + + TreeFam accession number + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a comparison matrix. + + For example 'blosum', 'pam', 'gonnet', 'id' etc. Comparison matrix type may be required where a series of matrices of a certain type are used. + Comparison matrix type + true + + + + + + + + + + + + + + + + beta12orEarlier + Unique name or identifier of a comparison matrix. + Substitution matrix name + + + + See for example http://www.ebi.ac.uk/Tools/webservices/help/matrix. + Comparison matrix name + + + + + + + + + + beta12orEarlier + [0-9][a-zA-Z_0-9]{3} + An identifier of an entry from the PDB database. + PDB identifier + PDBID + + + + A PDB identification code which consists of 4 characters, the first of which is a digit in the range 0 - 9; the remaining 3 are alphanumeric, and letters are upper case only. (source: https://cdn.rcsb.org/wwpdb/docs/documentation/file-format/PDB_format_1996.pdf) + PDB ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the AAindex database. + + + + AAindex ID + + + + + + + + + + beta12orEarlier + Accession number of an entry from the BIND database. + + + + BIND accession number + + + + + + + + + + beta12orEarlier + EBI\-[0-9]+ + Accession number of an entry from the IntAct database. + + + + IntAct accession number + + + + + + + + + + beta12orEarlier + Name of a protein family. + + + + Protein family name + + + + + + + + + + + + + + + beta12orEarlier + Name of an InterPro entry, usually indicating the type of protein matches for that entry. + + + + InterPro entry name + + + + + + + + + + + + + + + + beta12orEarlier + IPR015590 + IPR[0-9]{6} + Primary accession number of an InterPro entry. + InterPro primary accession + InterPro primary accession number + + + + Every InterPro entry has a unique accession number to provide a persistent citation of database records. + InterPro accession + + + + + + + + + + + + + + + beta12orEarlier + Secondary accession number of an InterPro entry. + InterPro secondary accession number + + + + InterPro secondary accession + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the Gene3D database. + + + + Gene3D ID + + + + + + + + + + beta12orEarlier + PIRSF[0-9]{6} + Unique identifier of an entry from the PIRSF database. + + + + PIRSF ID + + + + + + + + + + beta12orEarlier + PR[0-9]{5} + The unique identifier of an entry in the PRINTS database. + + + + PRINTS code + + + + + + + + + + beta12orEarlier + PF[0-9]{5} + Accession number of a Pfam entry. + + + + Pfam accession number + + + + + + + + + + beta12orEarlier + SM[0-9]{5} + Accession number of an entry from the SMART database. + + + + SMART accession number + + + + + + + + + + beta12orEarlier + Unique identifier (number) of a hidden Markov model from the Superfamily database. + + + + Superfamily hidden Markov model number + + + + + + + + + + beta12orEarlier + Accession number of an entry (family) from the TIGRFam database. + TIGRFam accession number + + + + TIGRFam ID + + + + + + + + + + beta12orEarlier + PD[0-9]+ + A ProDom domain family accession number. + + + + ProDom is a protein domain family database. + ProDom accession number + + + + + + + + + + beta12orEarlier + Identifier of an entry from the TRANSFAC database. + + + + TRANSFAC accession number + + + + + + + + + beta12orEarlier + [AEP]-[a-zA-Z_0-9]{4}-[0-9]+ + Accession number of an entry from the ArrayExpress database. + ArrayExpress experiment ID + + + + ArrayExpress accession number + + + + + + + + + beta12orEarlier + [0-9]+ + PRIDE experiment accession number. + + + + PRIDE experiment accession number + + + + + + + + + + beta12orEarlier + Identifier of an entry from the EMDB electron microscopy database. + + + + EMDB ID + + + + + + + + + + beta12orEarlier + [GDS|GPL|GSE|GSM][0-9]+ + Accession number of an entry from the GEO database. + + + + GEO accession number + + + + + + + + + + beta12orEarlier + Identifier of an entry from the GermOnline database. + + + + GermOnline ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the EMAGE database. + + + + EMAGE ID + + + + + + + + + beta12orEarlier + true + Accession number of an entry from a database of disease. + + + + Disease ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the HGVbase database. + + + + HGVbase ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry from the HIVDB database. + + HIVDB identifier + true + + + + + + + + + + beta12orEarlier + [*#+%^]?[0-9]{6} + Identifier of an entry from the OMIM database. + + + + OMIM ID + + + + + + + + + + + beta12orEarlier + Unique identifier of an object from one of the KEGG databases (excluding the GENES division). + + + + KEGG object identifier + + + + + + + + + + beta12orEarlier + REACT_[0-9]+(\.[0-9]+)? + Identifier of an entry from the Reactome database. + Reactome ID + + + + Pathway ID (reactome) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry from the aMAZE database. + + Pathway ID (aMAZE) + true + + + + + + + + + + + beta12orEarlier + Identifier of an pathway from the BioCyc biological pathways database. + BioCyc pathway ID + + + + Pathway ID (BioCyc) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the INOH database. + INOH identifier + + + + Pathway ID (INOH) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the PATIKA database. + PATIKA ID + + + + Pathway ID (PATIKA) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the CPDB (ConsensusPathDB) biological pathways database, which is an identifier from an external database integrated into CPDB. + CPDB ID + + + + This concept refers to identifiers used by the databases collated in CPDB; CPDB identifiers are not independently defined. + Pathway ID (CPDB) + + + + + + + + + + beta12orEarlier + PTHR[0-9]{5} + Identifier of a biological pathway from the Panther Pathways database. + Panther Pathways ID + + + + Pathway ID (Panther) + + + + + + + + + + + + + + + + beta12orEarlier + MIR:00100005 + MIR:[0-9]{8} + Unique identifier of a MIRIAM data resource. + + + + This is the identifier used internally by MIRIAM for a data type. + MIRIAM identifier + + + + + + + + + + + + + + + beta12orEarlier + The name of a data type from the MIRIAM database. + + + + MIRIAM data type name + + + + + + + + + + + + + + + + + beta12orEarlier + urn:miriam:pubmed:16333295|urn:miriam:obo.go:GO%3A0045202 + The URI (URL or URN) of a data entity from the MIRIAM database. + identifiers.org synonym + + + + A MIRIAM URI consists of the URI of the MIRIAM data type (PubMed, UniProt etc) followed by the identifier of an element of that data type, for example PMID for a publication or an accession number for a GO term. + MIRIAM URI + + + + + + + + + beta12orEarlier + UniProt|Enzyme Nomenclature + The primary name of a data type from the MIRIAM database. + + + + The primary name of a MIRIAM data type is taken from a controlled vocabulary. + MIRIAM data type primary name + + + + + UniProt|Enzyme Nomenclature + A protein entity has the MIRIAM data type 'UniProt', and an enzyme has the MIRIAM data type 'Enzyme Nomenclature'. + + + + + + + + + beta12orEarlier + A synonymous name of a data type from the MIRIAM database. + + + + A synonymous name for a MIRIAM data type taken from a controlled vocabulary. + MIRIAM data type synonymous name + + + + + + + + + + beta12orEarlier + Unique identifier of a Taverna workflow. + + + + Taverna workflow ID + + + + + + + + + + beta12orEarlier + Name of a biological (mathematical) model. + + + + Biological model name + + + + + + + + + + beta12orEarlier + (BIOMD|MODEL)[0-9]{10} + Unique identifier of an entry from the BioModel database. + + + + BioModel ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Chemical structure specified in PubChem Compound Identification (CID), a non-zero integer identifier for a unique chemical structure. + PubChem compound accession identifier + + + + PubChem CID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the ChemSpider database. + + + + ChemSpider ID + + + + + + + + + + beta12orEarlier + CHEBI:[0-9]+ + Identifier of an entry from the ChEBI database. + ChEBI IDs + ChEBI identifier + + + + ChEBI ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the BioPax ontology. + + + + BioPax concept ID + + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a concept from The Gene Ontology. + GO concept identifier + + + + GO concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the MeSH vocabulary. + + + + MeSH concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the HGNC controlled vocabulary. + + + + HGNC concept ID + + + + + + + + + + + beta12orEarlier + 9662|3483|182682 + [1-9][0-9]{0,8} + A stable unique identifier for each taxon (for a species, a family, an order, or any other group in the NCBI taxonomy database. + NCBI tax ID + NCBI taxonomy identifier + + + + NCBI taxonomy ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the Plant Ontology (PO). + + + + Plant Ontology concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the UMLS vocabulary. + + + + UMLS concept ID + + + + + + + + + + beta12orEarlier + FMA:[0-9]+ + An identifier of a concept from Foundational Model of Anatomy. + + + + Classifies anatomical entities according to their shared characteristics (genus) and distinguishing characteristics (differentia). Specifies the part-whole and spatial relationships of the entities, morphological transformation of the entities during prenatal development and the postnatal life cycle and principles, rules and definitions according to which classes and relationships in the other three components of FMA are represented. + FMA concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the EMAP mouse ontology. + + + + EMAP concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the ChEBI ontology. + + + + ChEBI concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the MGED ontology. + + + + MGED concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the myGrid ontology. + + + + The ontology is provided as two components, the service ontology and the domain ontology. The domain ontology acts provides concepts for core bioinformatics data types and their relations. The service ontology describes the physical and operational features of web services. + myGrid concept ID + + + + + + + + + + beta12orEarlier + 4963447 + [1-9][0-9]{0,8} + PubMed unique identifier of an article. + PMID + + + + PubMed ID + + + + + + + + + + beta12orEarlier + (doi\:)?[0-9]{2}\.[0-9]{4}/.* + Digital Object Identifier (DOI) of a published article. + Digital Object Identifier + + + + DOI + + + + + + + + + + beta12orEarlier + Medline UI (unique identifier) of an article. + Medline unique identifier + + + + The use of Medline UI has been replaced by the PubMed unique identifier. + Medline UI + + + + + + + + + beta12orEarlier + The name of a computer package, application, method or function. + + + + Tool name + + + + + + + + + beta12orEarlier + The unique name of a signature (sequence classifier) method. + + + + Signature methods from http://www.ebi.ac.uk/Tools/InterProScan/help.html#results include BlastProDom, FPrintScan, HMMPIR, HMMPfam, HMMSmart, HMMTigr, ProfileScan, ScanRegExp, SuperFamily and HAMAP. + Tool name (signature) + + + + + + + + + beta12orEarlier + The name of a BLAST tool. + BLAST name + + + + This include 'blastn', 'blastp', 'blastx', 'tblastn' and 'tblastx'. + Tool name (BLAST) + + + + + + + + + beta12orEarlier + The name of a FASTA tool. + + + + This includes 'fasta3', 'fastx3', 'fasty3', 'fastf3', 'fasts3' and 'ssearch'. + Tool name (FASTA) + + + + + + + + + beta12orEarlier + The name of an EMBOSS application. + + + + Tool name (EMBOSS) + + + + + + + + + beta12orEarlier + The name of an EMBASSY package. + + + + Tool name (EMBASSY package) + + + + + + + + + beta12orEarlier + A QSAR constitutional descriptor. + QSAR constitutional descriptor + + + QSAR descriptor (constitutional) + + + + + + + + + beta12orEarlier + A QSAR electronic descriptor. + QSAR electronic descriptor + + + QSAR descriptor (electronic) + + + + + + + + + beta12orEarlier + A QSAR geometrical descriptor. + QSAR geometrical descriptor + + + QSAR descriptor (geometrical) + + + + + + + + + beta12orEarlier + A QSAR topological descriptor. + QSAR topological descriptor + + + QSAR descriptor (topological) + + + + + + + + + beta12orEarlier + A QSAR molecular descriptor. + QSAR molecular descriptor + + + QSAR descriptor (molecular) + + + + + + + + + beta12orEarlier + Any collection of multiple protein sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries. + + + Sequence set (protein) + + + + + + + + + beta12orEarlier + Any collection of multiple nucleotide sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries. + + + Sequence set (nucleic acid) + + + + + + + + + + + + + + + beta12orEarlier + A set of sequences that have been clustered or otherwise classified as belonging to a group including (typically) sequence cluster information. + + + The cluster might include sequences identifiers, short descriptions, alignment and summary information. + Sequence cluster + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A file of intermediate results from a PSIBLAST search that is used for priming the search in the next PSIBLAST iteration. + + A Psiblast checkpoint file uses ASN.1 Binary Format and usually has the extension '.asn'. + Psiblast checkpoint file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Sequences generated by HMMER package in FASTA-style format. + + HMMER synthetic sequences set + true + + + + + + + + + + + + + + + beta12orEarlier + A protein sequence cleaved into peptide fragments (by enzymatic or chemical cleavage) with fragment masses. + + + Proteolytic digest + + + + + + + + + beta12orEarlier + SO:0000412 + Restriction digest fragments from digesting a nucleotide sequence with restriction sites using a restriction endonuclease. + + + Restriction digest + + + + + + + + + beta12orEarlier + Oligonucleotide primer(s) for PCR and DNA amplification, for example a minimal primer set. + + + PCR primers + + + + + + + + + beta12orEarlier + beta12orEarlier + + + File of sequence vectors used by EMBOSS vectorstrip application, or any file in same format. + + vectorstrip cloning vector definition file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A library of nucleotide sequences to avoid during hybridisation events. Hybridisation of the internal oligo to sequences in this library is avoided, rather than priming from them. The file is in a restricted FASTA format. + + Primer3 internal oligo mishybridizing library + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A nucleotide sequence library of sequences to avoid during amplification (for example repetitive sequences, or possibly the sequences of genes in a gene family that should not be amplified. The file must is in a restricted FASTA format. + + Primer3 mispriming library file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + File of one or more pairs of primer sequences, as used by EMBOSS primersearch application. + + primersearch primer pairs sequence record + true + + + + + + + + + + beta12orEarlier + A cluster of protein sequences. + Protein sequence cluster + + + The sequences are typically related, for example a family of sequences. + Sequence cluster (protein) + + + + + + + + + + beta12orEarlier + A cluster of nucleotide sequences. + Nucleotide sequence cluster + + + The sequences are typically related, for example a family of sequences. + Sequence cluster (nucleic acid) + + + + + + + + + beta12orEarlier + The size (length) of a sequence, subsequence or region in a sequence, or range(s) of lengths. + + + Sequence length + + + + + + + + + beta12orEarlier + 1.5 + + + Size of a sequence word. + + Word size is used for example in word-based sequence database search methods. + Word size + true + + + + + + + + + beta12orEarlier + 1.5 + + + Size of a sequence window. + + A window is a region of fixed size but not fixed position over a molecular sequence. It is typically moved (computationally) over a sequence during scoring. + Window size + true + + + + + + + + + beta12orEarlier + 1.5 + + + Specification of range(s) of length of sequences. + + Sequence length range + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Report on basic information about a molecular sequence such as name, accession number, type (nucleic or protein), length, description etc. + + + Sequence information report + true + + + + + + + + + beta12orEarlier + An informative report about non-positional sequence features, typically a report on general molecular sequence properties derived from sequence analysis. + Sequence properties report + + + Sequence property + + + + + + + + + beta12orEarlier + Annotation of positional features of molecular sequence(s), i.e. that can be mapped to position(s) in the sequence. + Feature record + Features + General sequence features + Sequence features report + SO:0000110 + + + This includes annotation of positional sequence features, organised into a standard feature table, or any other report of sequence features. General feature reports are a source of sequence feature table information although internal conversion would be required. + Sequence features + http://purl.bioontology.org/ontology/MSH/D058977 + + + + + + + + + beta12orEarlier + beta13 + + + Comparative data on sequence features such as statistics, intersections (and data on intersections), differences etc. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Sequence features (comparative) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report of general sequence properties derived from protein sequence data. + + Sequence property (protein) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report of general sequence properties derived from nucleotide sequence data. + + Sequence property (nucleic acid) + true + + + + + + + + + beta12orEarlier + A report on sequence complexity, for example low-complexity or repeat regions in sequences. + Sequence property (complexity) + + + Sequence complexity report + + + + + + + + + beta12orEarlier + A report on ambiguity in molecular sequence(s). + Sequence property (ambiguity) + + + Sequence ambiguity report + + + + + + + + + beta12orEarlier + A report (typically a table) on character or word composition / frequency of a molecular sequence(s). + Sequence composition + Sequence property (composition) + + + Sequence composition report + + + + + + + + + beta12orEarlier + A report on peptide fragments of certain molecular weight(s) in one or more protein sequences. + + + Peptide molecular weight hits + + + + + + + + + beta12orEarlier + A plot of third base position variability in a nucleotide sequence. + + + Base position variability plot + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A table of character or word composition / frequency of a molecular sequence. + + Sequence composition table + true + + + + + + + + + + beta12orEarlier + A table of base frequencies of a nucleotide sequence. + + + Base frequencies table + + + + + + + + + + beta12orEarlier + A table of word composition of a nucleotide sequence. + + + Base word frequencies table + + + + + + + + + + beta12orEarlier + A table of amino acid frequencies of a protein sequence. + Sequence composition (amino acid frequencies) + + + Amino acid frequencies table + + + + + + + + + + beta12orEarlier + A table of amino acid word composition of a protein sequence. + Sequence composition (amino acid words) + + + Amino acid word frequencies table + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation of a molecular sequence in DAS format. + + DAS sequence feature annotation + true + + + + + + + + + beta12orEarlier + Annotation of positional sequence features, organised into a standard feature table. + Sequence feature table + + + Feature table + + + + + + + + + + + + + + + beta12orEarlier + A map of (typically one) DNA sequence annotated with positional or non-positional features. + DNA map + + + Map + + + + + + + + + beta12orEarlier + An informative report on intrinsic positional features of a nucleotide sequence, formatted to be machine-readable. + Feature table (nucleic acid) + Nucleic acid feature table + Genome features + Genomic features + + + This includes nucleotide sequence feature annotation in any known sequence feature table format and any other report of nucleic acid features. + Nucleic acid features + + + + + + + + + + beta12orEarlier + An informative report on intrinsic positional features of a protein sequence. + Feature table (protein) + Protein feature table + + + This includes protein sequence feature annotation in any known sequence feature table format and any other report of protein features. + Protein features + + + + + + + + + beta12orEarlier + Moby:GeneticMap + A map showing the relative positions of genetic markers in a nucleic acid sequence, based on estimation of non-physical distance such as recombination frequencies. + Linkage map + + + A genetic (linkage) map indicates the proximity of two genes on a chromosome, whether two genes are linked and the frequency they are transmitted together to an offspring. They are limited to genetic markers of traits observable only in whole organisms. + Genetic map + + + + + + + + + beta12orEarlier + A map of genetic markers in a contiguous, assembled genomic sequence, with the sizes and separation of markers measured in base pairs. + + + A sequence map typically includes annotation on significant subsequences such as contigs, haplotypes and genes. The contigs shown will (typically) be a set of small overlapping clones representing a complete chromosomal segment. + Sequence map + + + + + + + + + beta12orEarlier + A map of DNA (linear or circular) annotated with physical features or landmarks such as restriction sites, cloned DNA fragments, genes or genetic markers, along with the physical distances between them. + + + Distance in a physical map is measured in base pairs. A physical map might be ordered relative to a reference map (typically a genetic map) in the process of genome sequencing. + Physical map + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image of a sequence with matches to signatures, motifs or profiles. + + + Sequence signature map + true + + + + + + + + + beta12orEarlier + A map showing banding patterns derived from direct observation of a stained chromosome. + Chromosome map + Cytogenic map + Cytologic map + + + This is the lowest-resolution physical map and can provide only rough estimates of physical (base pair) distances. Like a genetic map, they are limited to genetic markers of traits observable only in whole organisms. + Cytogenetic map + + + + + + + + + beta12orEarlier + A gene map showing distances between loci based on relative cotransduction frequencies. + + + DNA transduction map + + + + + + + + + beta12orEarlier + Sequence map of a single gene annotated with genetic features such as introns, exons, untranslated regions, polyA signals, promoters, enhancers and (possibly) mutations defining alleles of a gene. + + + Gene map + + + + + + + + + beta12orEarlier + Sequence map of a plasmid (circular DNA). + + + Plasmid map + + + + + + + + + beta12orEarlier + Sequence map of a whole genome. + + + Genome map + + + + + + + + + + beta12orEarlier + Image of the restriction enzyme cleavage sites (restriction sites) in a nucleic acid sequence. + + + Restriction map + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image showing matches between protein sequence(s) and InterPro Entries. + + + The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. Each protein is represented as a scaled horizontal line with colored bars indicating the position of the matches. + InterPro compact match image + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image showing detailed information on matches between protein sequence(s) and InterPro Entries. + + + The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. + InterPro detailed match image + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image showing the architecture of InterPro domains in a protein sequence. + + + The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. Domain architecture is shown as a series of non-overlapping domains in the protein. + InterPro architecture image + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + SMART protein schematic in PNG format. + + SMART protein schematic + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Images based on GlobPlot prediction of intrinsic disordered regions and globular domains in protein sequences. + + + GlobPlot domain image + true + + + + + + + + + beta12orEarlier + 1.8 + + Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more sequences. + + + Sequence motif matches + true + + + + + + + + + beta12orEarlier + 1.5 + + + Location of short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences. + + The report might include derived data map such as classification, annotation, organisation, periodicity etc. + Sequence features (repeats) + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on predicted or actual gene structure, regions which make an RNA product and features such as promoters, coding regions, splice sites etc. + + Gene and transcript structure (report) + true + + + + + + + + + beta12orEarlier + 1.8 + + regions of a nucleic acid sequence containing mobile genetic elements. + + + Mobile genetic elements + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on quadruplex-forming motifs in a nucleotide sequence. + + Nucleic acid features (quadruplexes) + true + + + + + + + + + beta12orEarlier + 1.8 + + Report on nucleosome formation potential or exclusion sequence(s). + + + Nucleosome exclusion sequences + true + + + + + + + + + beta12orEarlier + beta13 + + A report on exonic splicing enhancers (ESE) in an exon. + + + Gene features (exonic splicing enhancer) + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on microRNA sequence (miRNA) or precursor, microRNA targets, miRNA binding sites in an RNA sequence etc. + + Nucleic acid features (microRNA) + true + + + + + + + + + beta12orEarlier + 1.8 + + protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. + + + Coding region + true + + + + + + + + + beta12orEarlier + beta13 + + + A report on selenocysteine insertion sequence (SECIS) element in a DNA sequence. + + Gene features (SECIS element) + true + + + + + + + + + beta12orEarlier + 1.8 + + transcription factor binding sites (TFBS) in a DNA sequence. + + + Transcription factor binding sites + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on predicted or known key residue positions (sites) in a protein sequence, such as binding or functional sites. + + Use this concept for collections of specific sites which are not necessarily contiguous, rather than contiguous stretches of amino acids. + Protein features (sites) + true + + + + + + + + + beta12orEarlier + 1.8 + + signal peptides or signal peptide cleavage sites in protein sequences. + + + Protein features report (signal peptides) + true + + + + + + + + + beta12orEarlier + 1.8 + + cleavage sites (for a proteolytic enzyme or agent) in a protein sequence. + + + Protein features report (cleavage sites) + true + + + + + + + + + beta12orEarlier + 1.8 + + post-translation modifications in a protein sequence, typically describing the specific sites involved. + + + Protein features (post-translation modifications) + true + + + + + + + + + beta12orEarlier + 1.8 + + catalytic residues (active site) of an enzyme. + + + Protein features report (active sites) + true + + + + + + + + + beta12orEarlier + 1.8 + + ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids. + + + Protein features report (binding sites) + true + + + + + + + + + beta12orEarlier + beta13 + + A report on antigenic determinant sites (epitopes) in proteins, from sequence and / or structural data. + + + Epitope mapping is commonly done during vaccine design. + Protein features (epitopes) + true + + + + + + + + + beta12orEarlier + 1.8 + + RNA and DNA-binding proteins and binding sites in protein sequences. + + + Protein features report (nucleic acid binding sites) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on epitopes that bind to MHC class I molecules. + + MHC Class I epitopes report + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on predicted epitopes that bind to MHC class II molecules. + + MHC Class II epitopes report + true + + + + + + + + + beta12orEarlier + beta13 + + A report or plot of PEST sites in a protein sequence. + + + 'PEST' motifs target proteins for proteolytic degradation and reduce the half-lives of proteins dramatically. + Protein features (PEST sites) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Scores from a sequence database search (for example a BLAST search). + + Sequence database hits scores list + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignments from a sequence database search (for example a BLAST search). + + Sequence database hits alignments list + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on the evaluation of the significance of sequence similarity scores from a sequence database search (for example a BLAST search). + + Sequence database hits evaluation data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alphabet for the motifs (patterns) that MEME will search for. + + MEME motif alphabet + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + MEME background frequencies file. + + MEME background frequencies file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + File of directives for ordering and spacing of MEME motifs. + + MEME motifs directive file + true + + + + + + + + + beta12orEarlier + Dirichlet distribution used by hidden Markov model analysis programs. + + + Dirichlet distribution + + + + + + + + + beta12orEarlier + 1.4 + + + + Emission and transition counts of a hidden Markov model, generated once HMM has been determined, for example after residues/gaps have been assigned to match, delete and insert states. + + HMM emission and transition counts + true + + + + + + + + + beta12orEarlier + Regular expression pattern. + + + Regular expression + + + + + + + + + + + + + + + beta12orEarlier + Any specific or conserved pattern (typically expressed as a regular expression) in a molecular sequence. + + + Sequence motif + + + + + + + + + + + + + + + beta12orEarlier + Some type of statistical model representing a (typically multiple) sequence alignment. + + + Sequence profile + http://semanticscience.org/resource/SIO_010531 + + + + + + + + + beta12orEarlier + An informative report about a specific or conserved protein sequence pattern. + InterPro entry + Protein domain signature + Protein family signature + Protein region signature + Protein repeat signature + Protein site signature + + + Protein signature + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A nucleotide regular expression pattern from the Prosite database. + + Prosite nucleotide pattern + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A protein regular expression pattern from the Prosite database. + + Prosite protein pattern + true + + + + + + + + + beta12orEarlier + A profile (typically representing a sequence alignment) that is a simple matrix of nucleotide (or amino acid) counts per position. + PFM + + + Position frequency matrix + + + + + + + + + beta12orEarlier + A profile (typically representing a sequence alignment) that is weighted matrix of nucleotide (or amino acid) counts per position. + PWM + + + Contributions of individual sequences to the matrix might be uneven (weighted). + Position weight matrix + + + + + + + + + beta12orEarlier + A profile (typically representing a sequence alignment) derived from a matrix of nucleotide (or amino acid) counts per position that reflects information content at each position. + ICM + + + Information content matrix + + + + + + + + + beta12orEarlier + A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states. For example, a hidden Markov model representation of a set or alignment of sequences. + HMM + + + Hidden Markov model + + + + + + + + + beta12orEarlier + One or more fingerprints (sequence classifiers) as used in the PRINTS database. + + + Fingerprint + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A protein signature of the type used in the EMBASSY Signature package. + + Domainatrix signature + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + NULL hidden Markov model representation used by the HMMER package. + + HMMER NULL hidden Markov model + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein family signature (sequence classifier) from the InterPro database. + + Protein family signatures cover all domains in the matching proteins and span >80% of the protein length and with no adjacent protein domain signatures or protein region signatures. + Protein family signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein domain signature (sequence classifier) from the InterPro database. + + Protein domain signatures identify structural or functional domains or other units with defined boundaries. + Protein domain signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein region signature (sequence classifier) from the InterPro database. + + A protein region signature defines a region which cannot be described as a protein family or domain signature. + Protein region signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein repeat signature (sequence classifier) from the InterPro database. + + A protein repeat signature is a repeated protein motif, that is not in single copy expected to independently fold into a globular domain. + Protein repeat signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein site signature (sequence classifier) from the InterPro database. + + A protein site signature is a classifier for a specific site in a protein. + Protein site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein conserved site signature (sequence classifier) from the InterPro database. + + A protein conserved site signature is any short sequence pattern that may contain one or more unique residues and is cannot be described as a active site, binding site or post-translational modification. + Protein conserved site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein active site signature (sequence classifier) from the InterPro database. + + A protein active site signature corresponds to an enzyme catalytic pocket. An active site typically includes non-contiguous residues, therefore multiple signatures may be required to describe an active site. ; residues involved in enzymatic reactions for which mutational data is typically available. + Protein active site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein binding site signature (sequence classifier) from the InterPro database. + + A protein binding site signature corresponds to a site that reversibly binds chemical compounds, which are not themselves substrates of the enzymatic reaction. This includes enzyme cofactors and residues involved in electron transport or protein structure modification. + Protein binding site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein post-translational modification signature (sequence classifier) from the InterPro database. + + A protein post-translational modification signature corresponds to sites that undergo modification of the primary structure, typically to activate or de-activate a function. For example, methylation, sumoylation, glycosylation etc. The modification might be permanent or reversible. + Protein post-translational modification signature + true + + + + + + + + + beta12orEarlier + true + Alignment of exactly two molecular sequences. + Sequence alignment (pair) + + + Pair sequence alignment + http://semanticscience.org/resource/SIO_010068 + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of more than two molecular sequences. + + Sequence alignment (multiple) + true + + + + + + + + + beta12orEarlier + Alignment of multiple nucleotide sequences. + Sequence alignment (nucleic acid) + DNA sequence alignment + RNA sequence alignment + + + Nucleic acid sequence alignment + + + + + + + + + beta12orEarlier + Alignment of multiple protein sequences. + Sequence alignment (protein) + + + Protein sequence alignment + + + + + + + + + beta12orEarlier + Alignment of multiple molecular sequences of different types. + Sequence alignment (hybrid) + + + Hybrid sequence alignments include for example genomic DNA to EST, cDNA or mRNA. + Hybrid sequence alignment + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment of exactly two nucleotide sequences. + + Sequence alignment (nucleic acid pair) + true + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment of exactly two protein sequences. + + Sequence alignment (protein pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of exactly two molecular sequences of different types. + + Hybrid sequence alignment (pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of more than two nucleotide sequences. + + Multiple nucleotide sequence alignment + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of more than two protein sequences. + + Multiple protein sequence alignment + true + + + + + + + + + beta12orEarlier + A simple floating point number defining the penalty for opening or extending a gap in an alignment. + + + Alignment score or penalty + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Whether end gaps are scored or not. + + Score end gaps control + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controls the order of sequences in an output sequence alignment. + + Aligned sequence order + true + + + + + + + + + beta12orEarlier + A penalty for opening a gap in an alignment. + + + Gap opening penalty + + + + + + + + + beta12orEarlier + A penalty for extending a gap in an alignment. + + + Gap extension penalty + + + + + + + + + beta12orEarlier + A penalty for gaps that are close together in an alignment. + + + Gap separation penalty + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + A penalty for gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences. + + Terminal gap penalty + true + + + + + + + + + beta12orEarlier + The score for a 'match' used in various sequence database search applications with simple scoring schemes. + + + Match reward score + + + + + + + + + beta12orEarlier + The score (penalty) for a 'mismatch' used in various alignment and sequence database search applications with simple scoring schemes. + + + Mismatch penalty score + + + + + + + + + beta12orEarlier + This is the threshold drop in score at which extension of word alignment is halted. + + + Drop off score + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for opening a gap in an alignment. + + Gap opening penalty (integer) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for opening a gap in an alignment. + + Gap opening penalty (float) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for extending a gap in an alignment. + + Gap extension penalty (integer) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for extending a gap in an alignment. + + Gap extension penalty (float) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for gaps that are close together in an alignment. + + Gap separation penalty (integer) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for gaps that are close together in an alignment. + + Gap separation penalty (float) + true + + + + + + + + + beta12orEarlier + A number defining the penalty for opening gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences. + + + Terminal gap opening penalty + + + + + + + + + beta12orEarlier + A number defining the penalty for extending gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences. + + + Terminal gap extension penalty + + + + + + + + + beta12orEarlier + Sequence identity is the number (%) of matches (identical characters) in positions from an alignment of two molecular sequences. + + + Sequence identity + + + + + + + + + beta12orEarlier + Sequence similarity is the similarity (expressed as a percentage) of two molecular sequences calculated from their alignment, a scoring matrix for scoring characters substitutions and penalties for gap insertion and extension. + + + Data Type is float probably. + Sequence similarity + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data on molecular sequence alignment quality (estimated accuracy). + + Sequence alignment metadata (quality report) + true + + + + + + + + + beta12orEarlier + 1.4 + + + Data on character conservation in a molecular sequence alignment. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. Use this concept for calculated substitution rates, relative site variability, data on sites with biased properties, highly conserved or very poorly conserved sites, regions, blocks etc. + Sequence alignment report (site conservation) + true + + + + + + + + + beta12orEarlier + 1.4 + + + Data on correlations between sites in a molecular sequence alignment, typically to identify possible covarying positions and predict contacts or structural constraints in protein structures. + + Sequence alignment report (site correlation) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of molecular sequences to a Domainatrix signature (representing a sequence alignment). + + Sequence-profile alignment (Domainatrix signature) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment of molecular sequence(s) to a hidden Markov model(s). + + Sequence-profile alignment (HMM) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment of molecular sequences to a protein fingerprint from the PRINTS database. + + Sequence-profile alignment (fingerprint) + true + + + + + + + + + beta12orEarlier + Continuous quantitative data that may be read during phylogenetic tree calculation. + Phylogenetic continuous quantitative characters + Quantitative traits + + + Phylogenetic continuous quantitative data + + + + + + + + + beta12orEarlier + Character data with discrete states that may be read during phylogenetic tree calculation. + Discrete characters + Discretely coded characters + Phylogenetic discrete states + + + Phylogenetic discrete data + + + + + + + + + beta12orEarlier + One or more cliques of mutually compatible characters that are generated, for example from analysis of discrete character data, and are used to generate a phylogeny. + Phylogenetic report (cliques) + + + Phylogenetic character cliques + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic invariants data for testing alternative tree topologies. + Phylogenetic report (invariants) + + + Phylogenetic invariants + + + + + + + + + beta12orEarlier + 1.5 + + + A report of data concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees. + + This is a broad data type and is used for example for reports on confidence, shape or stratigraphic (age) data derived from phylogenetic tree analysis. + Phylogenetic report + true + + + + + + + + + beta12orEarlier + A model of DNA substitution that explains a DNA sequence alignment, derived from phylogenetic tree analysis. + Phylogenetic tree report (DNA substitution model) + Sequence alignment report (DNA substitution model) + Substitution model + + + DNA substitution model + + + + + + + + + beta12orEarlier + 1.4 + + + Data about the shape of a phylogenetic tree. + + Phylogenetic tree report (tree shape) + true + + + + + + + + + beta12orEarlier + 1.4 + + + Data on the confidence of a phylogenetic tree. + + Phylogenetic tree report (tree evaluation) + true + + + + + + + + + beta12orEarlier + Distances, such as Branch Score distance, between two or more phylogenetic trees. + Phylogenetic tree report (tree distances) + + + Phylogenetic tree distances + + + + + + + + + beta12orEarlier + 1.4 + + + Molecular clock and stratigraphic (age) data derived from phylogenetic tree analysis. + + Phylogenetic tree report (tree stratigraphic) + true + + + + + + + + + beta12orEarlier + Independent contrasts for characters used in a phylogenetic tree, or covariances, regressions and correlations between characters for those contrasts. + Phylogenetic report (character contrasts) + + + Phylogenetic character contrasts + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of integer numbers for sequence comparison. + + Comparison matrix (integers) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of floating point numbers for sequence comparison. + + Comparison matrix (floats) + true + + + + + + + + + beta12orEarlier + Matrix of integer or floating point numbers for nucleotide comparison. + Nucleotide comparison matrix + Nucleotide substitution matrix + + + Comparison matrix (nucleotide) + + + + + + + + + + beta12orEarlier + Matrix of integer or floating point numbers for amino acid comparison. + Amino acid comparison matrix + Amino acid substitution matrix + + + Comparison matrix (amino acid) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of integer numbers for nucleotide comparison. + + Nucleotide comparison matrix (integers) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of floating point numbers for nucleotide comparison. + + Nucleotide comparison matrix (floats) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of integer numbers for amino acid comparison. + + Amino acid comparison matrix (integers) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of floating point numbers for amino acid comparison. + + Amino acid comparison matrix (floats) + true + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a nucleic acid tertiary (3D) structure. + + + Nucleic acid structure + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a protein tertiary (3D) structure, or part of a structure, possibly in complex with other molecules. + Protein structures + + + Protein structure + + + + + + + + + beta12orEarlier + The structure of a protein in complex with a ligand, typically a small molecule such as an enzyme substrate or cofactor, but possibly another macromolecule. + + + This includes interactions of proteins with atoms, ions and small molecules or macromolecules such as nucleic acids or other polypeptides. For stable inter-polypeptide interactions use 'Protein complex' instead. + Protein-ligand complex + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a carbohydrate (3D) structure. + + + Carbohydrate structure + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the (3D) structure of a small molecule, such as any common chemical compound. + CHEBI:23367 + + + Small molecule structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a DNA tertiary (3D) structure. + + + DNA structure + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for an RNA tertiary (3D) structure. + + + RNA structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a tRNA tertiary (3D) structure, including tmRNA, snoRNAs etc. + + + tRNA structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the tertiary (3D) structure of a polypeptide chain. + + + Protein chain + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the tertiary (3D) structure of a protein domain. + + + Protein domain + + + + + + + + + beta12orEarlier + 1.5 + + + 3D coordinate and associated data for a protein tertiary (3D) structure (all atoms). + + Protein structure (all atoms) + true + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a protein tertiary (3D) structure (typically C-alpha atoms only). + Protein structure (C-alpha atoms) + + + C-beta atoms from amino acid side-chains may be included. + C-alpha trace + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (all atoms). + + Protein chain (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (typically C-alpha atoms only). + + C-beta atoms from amino acid side-chains may be included. + Protein chain (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a protein domain tertiary (3D) structure (all atoms). + + Protein domain (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a protein domain tertiary (3D) structure (typically C-alpha atoms only). + + C-beta atoms from amino acid side-chains may be included. + Protein domain (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + Alignment (superimposition) of exactly two molecular tertiary (3D) structures. + Pair structure alignment + + + Structure alignment (pair) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of more than two molecular tertiary (3D) structures. + + Structure alignment (multiple) + true + + + + + + + + + beta12orEarlier + Alignment (superimposition) of protein tertiary (3D) structures. + Structure alignment (protein) + + + Protein structure alignment + + + + + + + + + beta12orEarlier + Alignment (superimposition) of nucleic acid tertiary (3D) structures. + Structure alignment (nucleic acid) + + + Nucleic acid structure alignment + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures. + + Structure alignment (protein pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of more than two protein tertiary (3D) structures. + + Multiple protein tertiary structure alignment + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment (superimposition) of protein tertiary (3D) structures (all atoms considered). + + Structure alignment (protein all atoms) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment (superimposition) of protein tertiary (3D) structures (typically C-alpha atoms only considered). + + C-beta atoms from amino acid side-chains may be considered. + Structure alignment (protein C-alpha atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered). + + Pairwise protein tertiary structure alignment (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered). + + C-beta atoms from amino acid side-chains may be included. + Pairwise protein tertiary structure alignment (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered). + + Multiple protein tertiary structure alignment (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered). + + C-beta atoms from amino acid side-chains may be included. + Multiple protein tertiary structure alignment (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment (superimposition) of exactly two nucleic acid tertiary (3D) structures. + + Structure alignment (nucleic acid pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of more than two nucleic acid tertiary (3D) structures. + + Multiple nucleic acid tertiary structure alignment + true + + + + + + + + + beta12orEarlier + Alignment (superimposition) of RNA tertiary (3D) structures. + Structure alignment (RNA) + + + RNA structure alignment + + + + + + + + + beta12orEarlier + Matrix to transform (rotate/translate) 3D coordinates, typically the transformation necessary to superimpose two molecular structures. + + + Structural transformation matrix + + + + + + + + + beta12orEarlier + beta12orEarlier + + + DaliLite hit table of protein chain tertiary structure alignment data. + + The significant and top-scoring hits for regions of the compared structures is shown. Data such as Z-Scores, number of aligned residues, root-mean-square deviation (RMSD) of atoms and sequence identity are given. + DaliLite hit table + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A score reflecting structural similarities of two molecules. + + Molecular similarity score + true + + + + + + + + + beta12orEarlier + Root-mean-square deviation (RMSD) is calculated to measure the average distance between superimposed macromolecular coordinates. + RMSD + + + Root-mean-square deviation + + + + + + + + + beta12orEarlier + A measure of the similarity between two ligand fingerprints. + + + A ligand fingerprint is derived from ligand structural data from a Protein DataBank file. It reflects the elements or groups present or absent, covalent bonds and bond orders and the bonded environment in terms of SATIS codes and BLEEP atom types. + Tanimoto similarity score + + + + + + + + + beta12orEarlier + A matrix of 3D-1D scores reflecting the probability of amino acids to occur in different tertiary structural environments. + + + 3D-1D scoring matrix + + + + + + + + + + beta12orEarlier + A table of 20 numerical values which quantify a property (e.g. physicochemical or biochemical) of the common amino acids. + + + Amino acid index + + + + + + + + + beta12orEarlier + Chemical classification (small, aliphatic, aromatic, polar, charged etc) of amino acids. + Chemical classes (amino acids) + + + Amino acid index (chemical classes) + + + + + + + + + beta12orEarlier + Statistical protein contact potentials. + Contact potentials (amino acid pair-wise) + + + Amino acid pair-wise contact potentials + + + + + + + + + beta12orEarlier + Molecular weights of amino acids. + Molecular weight (amino acids) + + + Amino acid index (molecular weight) + + + + + + + + + beta12orEarlier + Hydrophobic, hydrophilic or charge properties of amino acids. + Hydropathy (amino acids) + + + Amino acid index (hydropathy) + + + + + + + + + beta12orEarlier + Experimental free energy values for the water-interface and water-octanol transitions for the amino acids. + White-Wimley data (amino acids) + + + Amino acid index (White-Wimley data) + + + + + + + + + beta12orEarlier + Van der Waals radii of atoms for different amino acid residues. + van der Waals radii (amino acids) + + + Amino acid index (van der Waals radii) + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on a specific enzyme. + + Enzyme report + true + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on a specific restriction enzyme such as enzyme reference data. + + This might include name of enzyme, organism, isoschizomers, methylation, source, suppliers, literature references, or data on restriction enzyme patterns such as name of enzyme, recognition site, length of pattern, number of cuts made by enzyme, details of blunt or sticky end cut etc. + Restriction enzyme report + true + + + + + + + + + beta12orEarlier + List of molecular weight(s) of one or more proteins or peptides, for example cut by proteolytic enzymes or reagents. + + + The report might include associated data such as frequency of peptide fragment molecular weights. + Peptide molecular weights + + + + + + + + + beta12orEarlier + Report on the hydrophobic moment of a polypeptide sequence. + + + Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation. + Peptide hydrophobic moment + + + + + + + + + beta12orEarlier + The aliphatic index of a protein. + + + The aliphatic index is the relative protein volume occupied by aliphatic side chains. + Protein aliphatic index + + + + + + + + + beta12orEarlier + A protein sequence with annotation on hydrophobic or hydrophilic / charged regions, hydrophobicity plot etc. + + + Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation. + Protein sequence hydropathy plot + + + + + + + + + beta12orEarlier + A plot of the mean charge of the amino acids within a window of specified length as the window is moved along a protein sequence. + + + Protein charge plot + + + + + + + + + beta12orEarlier + The solubility or atomic solvation energy of a protein sequence or structure. + Protein solubility data + + + Protein solubility + + + + + + + + + beta12orEarlier + Data on the crystallizability of a protein sequence. + Protein crystallizability data + + + Protein crystallizability + + + + + + + + + beta12orEarlier + Data on the stability, intrinsic disorder or globularity of a protein sequence. + Protein globularity data + + + Protein globularity + + + + + + + + + + beta12orEarlier + The titration curve of a protein. + + + Protein titration curve + + + + + + + + + beta12orEarlier + The isoelectric point of one proteins. + + + Protein isoelectric point + + + + + + + + + beta12orEarlier + The pKa value of a protein. + + + Protein pKa value + + + + + + + + + beta12orEarlier + The hydrogen exchange rate of a protein. + + + Protein hydrogen exchange rate + + + + + + + + + beta12orEarlier + The extinction coefficient of a protein. + + + Protein extinction coefficient + + + + + + + + + beta12orEarlier + The optical density of a protein. + + + Protein optical density + + + + + + + + + beta12orEarlier + beta13 + + + An informative report on protein subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or destination (exported / extracellular proteins). + + Protein subcellular localisation + true + + + + + + + + + beta12orEarlier + An report on allergenicity / immunogenicity of peptides and proteins. + Peptide immunogenicity + Peptide immunogenicity report + + + This includes data on peptide ligands that elicit an immune response (immunogens), allergic cross-reactivity, predicted antigenicity (Hopp and Woods plot) etc. These data are useful in the development of peptide-specific antibodies or multi-epitope vaccines. Methods might use sequence data (for example motifs) and / or structural data. + Peptide immunogenicity data + + + + + + + + + beta12orEarlier + beta13 + + + A report on the immunogenicity of MHC class I or class II binding peptides. + + MHC peptide immunogenicity report + true + + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific protein 3D structure(s) or structural domains. + Protein property (structural) + Protein report (structure) + Protein structural property + Protein structure report (domain) + Protein structure-derived report + + + Protein structure report + + + + + + + + + beta12orEarlier + Report on the quality of a protein three-dimensional model. + Protein property (structural quality) + Protein report (structural quality) + Protein structure report (quality evaluation) + Protein structure validation report + + + Model validation might involve checks for atomic packing, steric clashes, agreement with electron density maps etc. + Protein structural quality report + + + + + + + + + beta12orEarlier + 1.12 + + Data on inter-atomic or inter-residue contacts, distances and interactions in protein structure(s) or on the interactions of protein atoms or residues with non-protein groups. + + + Protein non-covalent interactions report + true + + + + + + + + + beta12orEarlier + 1.4 + + + Informative report on flexibility or motion of a protein structure. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein flexibility or motion report + true + + + + + + + + + beta12orEarlier + Data on the solvent accessible or buried surface area of a protein structure. + + + This concept covers definitions of the protein surface, interior and interfaces, accessible and buried residues, surface accessible pockets, interior inaccessible cavities etc. + Protein solvent accessibility + + + + + + + + + beta12orEarlier + 1.4 + + + Data on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein surface report + true + + + + + + + + + beta12orEarlier + Phi/psi angle data or a Ramachandran plot of a protein structure. + + + Ramachandran plot + + + + + + + + + beta12orEarlier + Data on the net charge distribution (dipole moment) of a protein structure. + + + Protein dipole moment + + + + + + + + + + beta12orEarlier + A matrix of distances between amino acid residues (for example the C-alpha atoms) in a protein structure. + + + Protein distance matrix + + + + + + + + + beta12orEarlier + An amino acid residue contact map for a protein structure. + + + Protein contact map + + + + + + + + + beta12orEarlier + Report on clusters of contacting residues in protein structures such as a key structural residue network. + + + Protein residue 3D cluster + + + + + + + + + beta12orEarlier + Patterns of hydrogen bonding in protein structures. + + + Protein hydrogen bonds + + + + + + + + + beta12orEarlier + 1.4 + + + Non-canonical atomic interactions in protein structures. + + Protein non-canonical interactions + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a node from the CATH database. + + The report (for example http://www.cathdb.info/cathnode/1.10.10.10) includes CATH code (of the node and upper levels in the hierarchy), classification text (of appropriate levels in hierarchy), list of child nodes, representative domain and other relevant data and links. + CATH node + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a node from the SCOP database. + + SCOP node + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + An EMBASSY domain classification file (DCF) of classification and other data for domains from SCOP or CATH, in EMBL-like format. + + + EMBASSY domain classification + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'class' node from the CATH database. + + CATH class + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'architecture' node from the CATH database. + + CATH architecture + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'topology' node from the CATH database. + + CATH topology + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'homologous superfamily' node from the CATH database. + + CATH homologous superfamily + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'structurally similar group' node from the CATH database. + + CATH structurally similar group + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'functional category' node from the CATH database. + + CATH functional category + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on known protein structural domains or folds that are recognised (identified) in protein sequence(s). + + Methods use some type of mapping between sequence and fold, for example secondary structure prediction and alignment, profile comparison, sequence properties, homologous sequence search, kernel machines etc. Domains and folds might be taken from SCOP or CATH. + Protein fold recognition report + true + + + + + + + + + beta12orEarlier + 1.8 + + protein-protein interaction(s), including interactions between protein domains. + + + Protein-protein interaction report + true + + + + + + + + + beta12orEarlier + An informative report on protein-ligand (small molecule) interaction(s). + Protein-drug interaction report + + + Protein-ligand interaction report + + + + + + + + + beta12orEarlier + 1.8 + + protein-DNA/RNA interaction(s). + + + Protein-nucleic acid interactions report + true + + + + + + + + + beta12orEarlier + Data on the dissociation characteristics of a double-stranded nucleic acid molecule (DNA or a DNA/RNA hybrid) during heating. + Nucleic acid stability profile + Melting map + Nucleic acid melting curve + + + A melting (stability) profile calculated the free energy required to unwind and separate the nucleic acid strands, plotted for sliding windows over a sequence. + Nucleic acid melting curve: a melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Shows the proportion of nucleic acid which are double-stranded versus temperature. + Nucleic acid probability profile: a probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Shows the probability of a base pair not being melted (i.e. remaining as double-stranded DNA) at a specified temperature + Nucleic acid stitch profile: stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA). A stitch profile diagram shows partly melted DNA conformations (with probabilities) at a range of temperatures. For example, a stitch profile might show possible loop openings with their location, size, probability and fluctuations at a given temperature. + Nucleic acid temperature profile: a temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Plots melting temperature versus base position. + Nucleic acid melting profile + + + + + + + + + beta12orEarlier + Enthalpy of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + + Nucleic acid enthalpy + + + + + + + + + beta12orEarlier + Entropy of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + + Nucleic acid entropy + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Melting temperature of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + Nucleic acid melting temperature + true + + + + + + + + + beta12orEarlier + 1.21 + + Stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + + Nucleic acid stitch profile + true + + + + + + + + + beta12orEarlier + DNA base pair stacking energies data. + + + DNA base pair stacking energies data + + + + + + + + + beta12orEarlier + DNA base pair twist angle data. + + + DNA base pair twist angle data + + + + + + + + + beta12orEarlier + DNA base trimer roll angles data. + + + DNA base trimer roll angles data + + + + + + + + + beta12orEarlier + beta12orEarlier + + + RNA parameters used by the Vienna package. + + Vienna RNA parameters + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Structure constraints used by the Vienna package. + + Vienna RNA structure constraints + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + RNA concentration data used by the Vienna package. + + Vienna RNA concentration data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + RNA calculated energy data generated by the Vienna package. + + Vienna RNA calculated energy + true + + + + + + + + + + beta12orEarlier + Dotplot of RNA base pairing probability matrix. + + + Such as generated by the Vienna package. + Base pairing probability matrix dotplot + + + + + + + + + beta12orEarlier + A human-readable collection of information about RNA/DNA folding, minimum folding energies for DNA or RNA sequences, energy landscape of RNA mutants etc. + Nucleic acid report (folding model) + Nucleic acid report (folding) + RNA secondary structure folding classification + RNA secondary structure folding probabilities + + + Nucleic acid folding report + + + + + + + + + + + + + + + beta12orEarlier + Table of codon usage data calculated from one or more nucleic acid sequences. + + + A codon usage table might include the codon usage table name, optional comments and a table with columns for codons and corresponding codon usage data. A genetic code can be extracted from or represented by a codon usage table. + Codon usage table + + + + + + + + + beta12orEarlier + A genetic code for an organism. + + + A genetic code need not include detailed codon usage information. + Genetic code + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple measure of synonymous codon usage bias often used to predict gene expression levels. + + Codon adaptation index + true + + + + + + + + + beta12orEarlier + A plot of the synonymous codon usage calculated for windows over a nucleotide sequence. + Synonymous codon usage statistic plot + + + Codon usage bias plot + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The effective number of codons used in a gene sequence. This reflects how far codon usage of a gene departs from equal usage of synonymous codons. + + Nc statistic + true + + + + + + + + + beta12orEarlier + The differences in codon usage fractions between two codon usage tables. + + + Codon usage fraction difference + + + + + + + + + beta12orEarlier + A human-readable collection of information about the influence of genotype on drug response. + + + The report might correlate gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity. + Pharmacogenomic test report + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific disease. + + + For example, an informative report on a specific tumor including nature and origin of the sample, anatomic site, organ or tissue, tumor type, including morphology and/or histologic type, and so on. + Disease report + + + + + + + + + beta12orEarlier + 1.8 + + A report on linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome). + + + Linkage disequilibrium (report) + true + + + + + + + + + + beta12orEarlier + A graphical 2D tabular representation of expression data, typically derived from an omics experiment. A heat map is a table where rows and columns correspond to different features and contexts (for example, cells or samples) and the cell colour represents the level of expression of a gene that context. + + + Heat map + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Affymetrix library file of information about which probes belong to which probe set. + + Affymetrix probe sets library file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Affymetrix library file of information about the probe sets such as the gene name with which the probe set is associated. + GIN file + + Affymetrix probe sets information library file + true + + + + + + + + + beta12orEarlier + 1.12 + + Standard protonated molecular masses from trypsin (modified porcine trypsin, Promega) and keratin peptides, used in EMBOSS. + + + Molecular weights standard fingerprint + true + + + + + + + + + beta12orEarlier + 1.8 + + A report typically including a map (diagram) of a metabolic pathway. + + + This includes carbohydrate, energy, lipid, nucleotide, amino acid, glycan, PK/NRP, cofactor/vitamin, secondary metabolite, xenobiotics etc. + Metabolic pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + genetic information processing pathways. + + + Genetic information processing pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + environmental information processing pathways. + + + Environmental information processing pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + A report typically including a map (diagram) of a signal transduction pathway. + + + Signal transduction pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + Topic concernning cellular process pathways. + + + Cellular process pathways report + true + + + + + + + + + beta12orEarlier + 1.8 + + disease pathways, typically of human disease. + + + Disease pathway or network report + true + + + + + + + + + beta12orEarlier + 1.21 + + A report typically including a map (diagram) of drug structure relationships. + + + Drug structure relationship map + true + + + + + + + + + beta12orEarlier + 1.8 + + + networks of protein interactions. + + Protein interaction networks + true + + + + + + + + + beta12orEarlier + 1.5 + + + An entry (data type) from the Minimal Information Requested in the Annotation of Biochemical Models (MIRIAM) database of data resources. + + A MIRIAM entry describes a MIRIAM data type including the official name, synonyms, root URI, identifier pattern (regular expression applied to a unique identifier of the data type) and documentation. Each data type can be associated with several resources. Each resource is a physical location of a service (typically a database) providing information on the elements of a data type. Several resources may exist for each data type, provided the same (mirrors) or different information. MIRIAM provides a stable and persistent reference to its data types. + MIRIAM datatype + true + + + + + + + + + beta12orEarlier + A simple floating point number defining the lower or upper limit of an expectation value (E-value). + Expectation value + + + An expectation value (E-Value) is the expected number of observations which are at least as extreme as observations expected to occur by random chance. The E-value describes the number of hits with a given score or better that are expected to occur at random when searching a database of a particular size. It decreases exponentially with the score (S) of a hit. A low E value indicates a more significant score. + E-value + + + + + + + + + beta12orEarlier + The z-value is the number of standard deviations a data value is above or below a mean value. + + + A z-value might be specified as a threshold for reporting hits from database searches. + Z-value + + + + + + + + + beta12orEarlier + The P-value is the probability of obtaining by random chance a result that is at least as extreme as an observed result, assuming a NULL hypothesis is true. + + + A z-value might be specified as a threshold for reporting hits from database searches. + P-value + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a database (or ontology) version, for example name, version number and release date. + + Database version information + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on an application version, for example name, version number and release date. + + Tool version information + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Information on a version of the CATH database. + + CATH version information + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Cross-mapping of Swiss-Prot codes to PDB identifiers. + + Swiss-Prot to PDB mapping + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Cross-references from a sequence record to other databases. + + Sequence database cross-references + true + + + + + + + + + beta12orEarlier + 1.5 + + + Metadata on the status of a submitted job. + + Values for EBI services are 'DONE' (job has finished and the results can then be retrieved), 'ERROR' (the job failed or no results where found), 'NOT_FOUND' (the job id is no longer available; job results might be deleted, 'PENDING' (the job is in a queue waiting processing), 'RUNNING' (the job is currently being processed). + Job status + true + + + + + + + + + beta12orEarlier + 1.0 + + + The (typically numeric) unique identifier of a submitted job. + + Job ID + true + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of job, for example interactive or non-interactive. + + Job type + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report of tool-specific metadata on some analysis or process performed, for example a log of diagnostic or error messages. + + Tool log + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + DaliLite log file describing all the steps taken by a DaliLite alignment of two protein structures. + + DaliLite log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + STRIDE log file. + + STRIDE log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + NACCESS log file. + + NACCESS log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS wordfinder log file. + + EMBOSS wordfinder log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS (EMBASSY) domainatrix application log file. + + EMBOSS domainatrix log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS (EMBASSY) sites application log file. + + EMBOSS sites log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS (EMBASSY) supermatcher error file. + + EMBOSS supermatcher error file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS megamerger log file. + + EMBOSS megamerger log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS megamerger log file. + + EMBOSS whichdb log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS vectorstrip log file. + + EMBOSS vectorstrip log file + true + + + + + + + + + beta12orEarlier + A username on a computer system or a website. + + + + Username + + + + + + + + + beta12orEarlier + A password on a computer system, or a website. + + + + Password + + + + + + + + + beta12orEarlier + Moby:Email + Moby:EmailAddress + A valid email address of an end-user. + + + + Email address + + + + + + + + + beta12orEarlier + The name of a person. + + + + Person name + + + + + + + + + beta12orEarlier + 1.5 + + + Number of iterations of an algorithm. + + Number of iterations + true + + + + + + + + + beta12orEarlier + 1.5 + + + Number of entities (for example database hits, sequences, alignments etc) to write to an output file. + + Number of output entities + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controls the order of hits (reported matches) in an output file from a database search. + + Hit sort order + true + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific drug. + Drug annotation + Drug structure relationship map + + + A drug structure relationship map is report (typically a map diagram) of drug structure relationships. + Drug report + + + + + + + + + beta12orEarlier + An image (for viewing or printing) of a phylogenetic tree including (typically) a plot of rooted or unrooted phylogenies, cladograms, circular trees or phenograms and associated information. + + + See also 'Phylogenetic tree' + Phylogenetic tree image + + + + + + + + + beta12orEarlier + Image of RNA secondary structure, knots, pseudoknots etc. + + + RNA secondary structure image + + + + + + + + + beta12orEarlier + Image of protein secondary structure. + + + Protein secondary structure image + + + + + + + + + beta12orEarlier + Image of one or more molecular tertiary (3D) structures. + + + Structure image + + + + + + + + + beta12orEarlier + Image of two or more aligned molecular sequences possibly annotated with alignment features. + + + Sequence alignment image + + + + + + + + + beta12orEarlier + An image of the structure of a small chemical compound. + Small molecule structure image + Chemical structure sketch + Small molecule sketch + + + The molecular identifier and formula are typically included. + Chemical structure image + + + + + + + + + + + + + + + beta12orEarlier + A fate map is a plan of early stage of an embryo such as a blastula, showing areas that are significance to development. + + + Fate map + + + + + + + + + + beta12orEarlier + An image of spots from a microarray experiment. + + + Microarray spots image + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the BioPax ontology. + + BioPax term + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition from The Gene Ontology (GO). + + GO + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the MeSH vocabulary. + + MeSH + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the HGNC controlled vocabulary. + + HGNC + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the NCBI taxonomy vocabulary. + + NCBI taxonomy vocabulary + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the Plant Ontology (PO). + + Plant ontology term + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the UMLS vocabulary. + + UMLS + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from Foundational Model of Anatomy. + + Classifies anatomical entities according to their shared characteristics (genus) and distinguishing characteristics (differentia). Specifies the part-whole and spatial relationships of the entities, morphological transformation of the entities during prenatal development and the postnatal life cycle and principles, rules and definitions according to which classes and relationships in the other three components of FMA are represented. + FMA + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the EMAP mouse ontology. + + EMAP + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the ChEBI ontology. + + ChEBI + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the MGED ontology. + + MGED + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the myGrid ontology. + + The ontology is provided as two components, the service ontology and the domain ontology. The domain ontology acts provides concepts for core bioinformatics data types and their relations. The service ontology describes the physical and operational features of web services. + myGrid + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition for a biological process from the Gene Ontology (GO). + + Data Type is an enumerated string. + GO (biological process) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition for a molecular function from the Gene Ontology (GO). + + Data Type is an enumerated string. + GO (molecular function) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition for a cellular component from the Gene Ontology (GO). + + Data Type is an enumerated string. + GO (cellular component) + true + + + + + + + + + beta12orEarlier + 1.5 + + + A relation type defined in an ontology. + + Ontology relation type + true + + + + + + + + + beta12orEarlier + The definition of a concept from an ontology. + Ontology class definition + + + Ontology concept definition + + + + + + + + + beta12orEarlier + 1.4 + + + A comment on a concept from an ontology. + + Ontology concept comment + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Reference for a concept from an ontology. + + Ontology concept reference + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Information on a published article provided by the doc2loc program. + + The doc2loc output includes the url, format, type and availability code of a document for every service provider. + doc2loc document information + true + + + + + + + + + beta12orEarlier + PDBML:PDB_residue_no + WHATIF: pdb_number + A residue identifier (a string) from a PDB file. + + + PDB residue number + + + + + + + + + beta12orEarlier + Cartesian coordinate of an atom (in a molecular structure). + Cartesian coordinate + + + Atomic coordinate + + + + + + + + + beta12orEarlier + 1.21 + + Cartesian x coordinate of an atom (in a molecular structure). + + + Atomic x coordinate + true + + + + + + + + + beta12orEarlier + 1.21 + + Cartesian y coordinate of an atom (in a molecular structure). + + + Atomic y coordinate + true + + + + + + + + + beta12orEarlier + 1.21 + + Cartesian z coordinate of an atom (in a molecular structure). + + + Atomic z coordinate + true + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_atom_name + WHATIF: PDBx_auth_atom_id + WHATIF: PDBx_type_symbol + WHATIF: alternate_atom + WHATIF: atom_type + Identifier (a string) of a specific atom from a PDB file for a molecular structure. + + + + PDB atom name + + + + + + + + + beta12orEarlier + Data on a single atom from a protein structure. + Atom data + CHEBI:33250 + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein atom + + + + + + + + + beta12orEarlier + Data on a single amino acid residue position in a protein structure. + Residue + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein residue + + + + + + + + + + beta12orEarlier + Name of an atom. + + + + Atom name + + + + + + + + + beta12orEarlier + WHATIF: type + Three-letter amino acid residue names as used in PDB files. + + + + PDB residue name + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_model_num + WHATIF: model_number + Identifier of a model structure from a PDB file. + Model number + + + + PDB model number + + + + + + + + + beta12orEarlier + beta13 + + + Summary of domain classification information for a CATH domain. + + The report (for example http://www.cathdb.info/domain/1cukA01) includes CATH codes for levels in the hierarchy for the domain, level descriptions and relevant data and links. + CATH domain report + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database (based on ATOM records in PDB) for CATH domains (clustered at different levels of sequence identity). + + CATH representative domain sequences (ATOM) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database (based on COMBS sequence data) for CATH domains (clustered at different levels of sequence identity). + + CATH representative domain sequences (COMBS) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database for all CATH domains (based on PDB ATOM records). + + CATH domain sequences (ATOM) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database for all CATH domains (based on COMBS sequence data). + + CATH domain sequences (COMBS) + true + + + + + + + + + beta12orEarlier + Information on an molecular sequence version. + Sequence version information + + + Sequence version + + + + + + + + + beta12orEarlier + A numerical value, that is some type of scored value arising for example from a prediction method. + + + Score + + + + + + + + + beta12orEarlier + beta13 + + + Report on general functional properties of specific protein(s). + + For properties that can be mapped to a sequence, use 'Sequence report' instead. + Protein report (function) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Aspergillus Genome Database. + + Gene name (ASPGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Candida Genome Database. + + Gene name (CGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from dictyBase database. + + Gene name (dictyBase) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Primary name of a gene from EcoGene Database. + + Gene name (EcoGene primary) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from MaizeGDB (maize genes) database. + + Gene name (MaizeGDB) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Saccharomyces Genome Database. + + Gene name (SGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Tetrahymena Genome Database. + + Gene name (TGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene from E.coli Genetic Stock Center. + + Gene name (CGSC) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene approved by the HUGO Gene Nomenclature Committee. + + Gene name (HGNC) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene from the Mouse Genome Database. + + Gene name (MGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene from Bacillus subtilis Genome Sequence Project. + + Gene name (Bacillus subtilis) + true + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: ApiDB_PlasmoDB + Identifier of a gene from PlasmoDB Plasmodium Genome Resource. + + + + Gene ID (PlasmoDB) + + + + + + + + + + beta12orEarlier + Identifier of a gene from EcoGene Database. + EcoGene Accession + EcoGene ID + + + + Gene ID (EcoGene) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: FB + http://www.geneontology.org/doc/GO.xrf_abbs: FlyBase + Gene identifier from FlyBase database. + + + + Gene ID (FlyBase) + + + + + + + + + beta12orEarlier + beta13 + + + Gene identifier from Glossina morsitans GeneDB database. + + Gene ID (GeneDB Glossina morsitans) + true + + + + + + + + + beta12orEarlier + beta13 + + + Gene identifier from Leishmania major GeneDB database. + + Gene ID (GeneDB Leishmania major) + true + + + + + + + + + beta12orEarlier + beta13 + + + http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Pfalciparum + Gene identifier from Plasmodium falciparum GeneDB database. + + Gene ID (GeneDB Plasmodium falciparum) + true + + + + + + + + + beta12orEarlier + beta13 + + + http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Spombe + Gene identifier from Schizosaccharomyces pombe GeneDB database. + + Gene ID (GeneDB Schizosaccharomyces pombe) + true + + + + + + + + + beta12orEarlier + beta13 + + + http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Tbrucei + Gene identifier from Trypanosoma brucei GeneDB database. + + Gene ID (GeneDB Trypanosoma brucei) + true + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: GR_GENE + http://www.geneontology.org/doc/GO.xrf_abbs: GR_gene + Gene identifier from Gramene database. + + + + Gene ID (Gramene) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: PAMGO_VMD + http://www.geneontology.org/doc/GO.xrf_abbs: VMD + Gene identifier from Virginia Bioinformatics Institute microbial database. + + + + Gene ID (Virginia microbial) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: SGN + Gene identifier from Sol Genomics Network. + + + + Gene ID (SGN) + + + + + + + + + + + beta12orEarlier + WBGene[0-9]{8} + http://www.geneontology.org/doc/GO.xrf_abbs: WB + http://www.geneontology.org/doc/GO.xrf_abbs: WormBase + Gene identifier used by WormBase database. + + + + Gene ID (WormBase) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Any name (other than the recommended one) for a gene. + + Gene synonym + true + + + + + + + + + + beta12orEarlier + The name of an open reading frame attributed by a sequencing project. + + + + ORF name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A component of a larger sequence assembly. + + Sequence assembly component + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on a chromosome aberration such as abnormalities in chromosome structure. + + Chromosome annotation (aberration) + true + + + + + + + + + beta12orEarlier + true + An identifier of a clone (cloned molecular sequence) from a database. + + + + Clone ID + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_ins_code + WHATIF: insertion_code + An insertion code (part of the residue number) for an amino acid residue from a PDB file. + + + PDB insertion code + + + + + + + + + beta12orEarlier + WHATIF: PDBx_occupancy + The fraction of an atom type present at a site in a molecular structure. + + + The sum of the occupancies of all the atom types at a site should not normally significantly exceed 1.0. + Atomic occupancy + + + + + + + + + beta12orEarlier + WHATIF: PDBx_B_iso_or_equiv + Isotropic B factor (atomic displacement parameter) for an atom from a PDB file. + + + Isotropic B factor + + + + + + + + + beta12orEarlier + A cytogenetic map showing chromosome banding patterns in mutant cell lines relative to the wild type. + Deletion-based cytogenetic map + + + A cytogenetic map is built from a set of mutant cell lines with sub-chromosomal deletions and a reference wild-type line ('genome deletion panel'). The panel is used to map markers onto the genome by comparing mutant to wild-type banding patterns. Markers are linked (occur in the same deleted region) if they share the same banding pattern (presence or absence) as the deletion panel. + Deletion map + + + + + + + + + beta12orEarlier + A genetic map which shows the approximate location of quantitative trait loci (QTL) between two or more markers. + Quantitative trait locus map + + + QTL map + + + + + + + + + beta12orEarlier + Moby:Haplotyping_Study_obj + A map of haplotypes in a genome or other sequence, describing common patterns of genetic variation. + + + Haplotype map + + + + + + + + + beta12orEarlier + 1.21 + + Data describing a set of multiple genetic or physical maps, typically sharing a common set of features which are mapped. + + + Map set data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + + A feature which may mapped (positioned) on a genetic or other type of map. + + Mappable features may be based on Gramene's notion of map features; see http://www.gramene.org/db/cmap/feature_type_info. + Map feature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A designation of the type of map (genetic map, physical map, sequence map etc) or map set. + + Map types may be based on Gramene's notion of a map type; see http://www.gramene.org/db/cmap/map_type_info. + Map type + true + + + + + + + + + beta12orEarlier + The name of a protein fold. + + + + Protein fold name + + + + + + + + + beta12orEarlier + Moby:BriefTaxonConcept + Moby:PotentialTaxon + The name of a group of organisms belonging to the same taxonomic rank. + Taxonomic rank + Taxonomy rank + + + + For a complete list of taxonomic ranks see https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary. + Taxon + + + + + + + + + + + + + + + beta12orEarlier + true + A unique identifier of a (group of) organisms. + + + + Organism identifier + + + + + + + + + beta12orEarlier + The name of a genus of organism. + + + + Genus name + + + + + + + + + beta12orEarlier + Moby:GCP_Taxon + Moby:TaxonName + Moby:TaxonScientificName + Moby:TaxonTCS + Moby:iANT_organism-xml + The full name for a group of organisms, reflecting their biological classification and (usually) conforming to a standard nomenclature. + Taxonomic information + Taxonomic name + + + + Name components correspond to levels in a taxonomic hierarchy (e.g. 'Genus', 'Species', etc.) Meta information such as a reference where the name was defined and a date might be included. + Taxonomic classification + + + + + + + + + + beta12orEarlier + Moby_namespace:iHOPorganism + A unique identifier for an organism used in the iHOP database. + + + + iHOP organism ID + + + + + + + + + beta12orEarlier + Common name for an organism as used in the GenBank database. + + + + Genbank common name + + + + + + + + + beta12orEarlier + The name of a taxon from the NCBI taxonomy database. + + + + NCBI taxon + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An alternative for a word. + + Synonym + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A common misspelling of a word. + + Misspelling + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An abbreviation of a phrase or word. + + Acronym + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term which is likely to be misleading of its meaning. + + Misnomer + true + + + + + + + + + beta12orEarlier + Moby:Author + Information on the authors of a published work. + + + + Author ID + + + + + + + + + beta12orEarlier + An identifier representing an author in the DragonDB database. + + + + DragonDB author identifier + + + + + + + + + beta12orEarlier + Moby:DescribedLink + A URI along with annotation describing the data found at the address. + + + Annotated URI + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A controlled vocabulary for words and phrases that can appear in the keywords field (KW line) of entries from the UniProt database. + + UniProt keywords + true + + + + + + + + + + beta12orEarlier + Moby_namespace:GENEFARM_GeneID + Identifier of a gene from the GeneFarm database. + + + + Gene ID (GeneFarm) + + + + + + + + + + beta12orEarlier + Moby_namespace:Blattner_number + The blattner identifier for a gene. + + + + Blattner number + + + + + + + + + beta12orEarlier + beta13 + + + Moby_namespace:MIPS_GE_Maize + Identifier for genetic elements in MIPS Maize database. + + Gene ID (MIPS Maize) + true + + + + + + + + + beta12orEarlier + beta13 + + + Moby_namespace:MIPS_GE_Medicago + Identifier for genetic elements in MIPS Medicago database. + + Gene ID (MIPS Medicago) + true + + + + + + + + + beta12orEarlier + 1.3 + + + The name of an Antirrhinum Gene from the DragonDB database. + + Gene name (DragonDB) + true + + + + + + + + + beta12orEarlier + 1.3 + + + A unique identifier for an Arabidopsis gene, which is an acronym or abbreviation of the gene name. + + Gene name (Arabidopsis) + true + + + + + + + + + + + + beta12orEarlier + Moby_namespace:iHOPsymbol + A unique identifier of a protein or gene used in the iHOP database. + + + + iHOP symbol + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from the GeneFarm database. + + Gene name (GeneFarm) + true + + + + + + + + + + + + + + + beta12orEarlier + true + A unique name or other identifier of a genetic locus, typically conforming to a scheme that names loci (such as predicted genes) depending on their position in a molecular sequence, for example a completely sequenced genome or chromosome. + Locus identifier + Locus name + + + + Locus ID + + + + + + + + + + beta12orEarlier + AT[1-5]G[0-9]{5} + http://www.geneontology.org/doc/GO.xrf_abbs:AGI_LocusCode + Locus identifier for Arabidopsis Genome Initiative (TAIR, TIGR and MIPS databases). + AGI ID + AGI identifier + AGI locus code + Arabidopsis gene loci number + + + + Locus ID (AGI) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: ASPGD + http://www.geneontology.org/doc/GO.xrf_abbs: ASPGDID + Identifier for loci from ASPGD (Aspergillus Genome Database). + + + + Locus ID (ASPGD) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: Broad_MGG + Identifier for loci from Magnaporthe grisea Database at the Broad Institute. + + + + Locus ID (MGG) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: CGD + http://www.geneontology.org/doc/GO.xrf_abbs: CGDID + Identifier for loci from CGD (Candida Genome Database). + CGD locus identifier + CGDID + + + + Locus ID (CGD) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: JCVI_CMR + http://www.geneontology.org/doc/GO.xrf_abbs: TIGR_CMR + Locus identifier for Comprehensive Microbial Resource at the J. Craig Venter Institute. + + + + Locus ID (CMR) + + + + + + + + + + beta12orEarlier + Moby_namespace:LocusID + http://www.geneontology.org/doc/GO.xrf_abbs: NCBI_locus_tag + Identifier for loci from NCBI database. + Locus ID (NCBI) + + + + NCBI locus tag + + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: SGD + http://www.geneontology.org/doc/GO.xrf_abbs: SGDID + Identifier for loci from SGD (Saccharomyces Genome Database). + SGDID + + + + Locus ID (SGD) + + + + + + + + + + beta12orEarlier + Moby_namespace:MMP_Locus + Identifier of loci from Maize Mapping Project. + + + + Locus ID (MMP) + + + + + + + + + + beta12orEarlier + Moby_namespace:DDB_gene + Identifier of locus from DictyBase (Dictyostelium discoideum). + + + + Locus ID (DictyBase) + + + + + + + + + + beta12orEarlier + Moby_namespace:EntrezGene_EntrezGeneID + Moby_namespace:EntrezGene_ID + Identifier of a locus from EntrezGene database. + + + + Locus ID (EntrezGene) + + + + + + + + + + beta12orEarlier + Moby_namespace:MaizeGDB_Locus + Identifier of locus from MaizeGDB (Maize genome database). + + + + Locus ID (MaizeGDB) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Moby:SO_QTL + A stretch of DNA that is closely linked to the genes underlying a quantitative trait (a phenotype that varies in degree and depends upon the interactions between multiple genes and their environment). + + A QTL sometimes but does not necessarily correspond to a gene. + Quantitative trait locus + true + + + + + + + + + + beta12orEarlier + Moby_namespace:GeneId + Identifier of a gene from the KOME database. + + + + Gene ID (KOME) + + + + + + + + + + beta12orEarlier + Moby:Tropgene_locus + Identifier of a locus from the Tropgene database. + + + + Locus ID (Tropgene) + + + + + + + + + beta12orEarlier + true + An alignment of molecular sequences, structures or profiles derived from them. + + + Alignment + + + + + + + + + beta12orEarlier + Data for an atom (in a molecular structure). + General atomic property + + + Atomic property + + + + + + + + + beta12orEarlier + Moby_namespace:SP_KW + http://www.geneontology.org/doc/GO.xrf_abbs: SP_KW + A word or phrase that can appear in the keywords field (KW line) of entries from the UniProt database. + + + UniProt keyword + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A name for a genetic locus conforming to a scheme that names loci (such as predicted genes) depending on their position in a molecular sequence, for example a completely sequenced genome or chromosome. + + Ordered locus name + true + + + + + + + + + + + beta12orEarlier + Moby:GCP_MapInterval + Moby:GCP_MapPoint + Moby:GCP_MapPosition + Moby:GenePosition + Moby:HitPosition + Moby:Locus + Moby:MapPosition + Moby:Position + PDBML:_atom_site.id + A position in a map (for example a genetic map), either a single position (point) or a region / interval. + Locus + Map position + + + This includes positions in genomes based on a reference sequence. A position may be specified for any mappable object, i.e. anything that may have positional information such as a physical position in a chromosome. Data might include sequence region name, strand, coordinate system name, assembly name, start position and end position. + Sequence coordinates + + + + + + + + + beta12orEarlier + Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all amino acids. + Amino acid data + + + Amino acid property + + + + + + + + + beta12orEarlier + beta13 + + + A human-readable collection of information which (typically) is generated or collated by hand and which describes a biological entity, phenomena or associated primary (e.g. sequence or structural) data, as distinct from the primary data itself and computer-generated reports derived from it. + + This is a broad data type and is used a placeholder for other, more specific types. + Annotation + true + + + + + + + + + + + + + + + beta12orEarlier + Data describing a molecular map (genetic or physical) or a set of such maps, including various attributes of, data extracted from or derived from the analysis of them, but excluding the map(s) themselves. This includes metadata for map sets that share a common set of features which are mapped. + Map attribute + Map set data + + + Map data + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data used by the Vienna RNA analysis package. + + Vienna RNA structural data + true + + + + + + + + + beta12orEarlier + 1.5 + + + Data used to replace (mask) characters in a molecular sequence. + + Sequence mask parameter + true + + + + + + + + + + beta12orEarlier + Data concerning chemical reaction(s) catalysed by enzyme(s). + + + This is a broad data type and is used a placeholder for other, more specific types. + Enzyme kinetics data + + + + + + + + + beta12orEarlier + A plot giving an approximation of the kinetics of an enzyme-catalysed reaction, assuming simple kinetics (i.e. no intermediate or product inhibition, allostericity or cooperativity). It plots initial reaction rate to the substrate concentration (S) from which the maximum rate (vmax) is apparent. + + + Michaelis Menten plot + + + + + + + + + beta12orEarlier + A plot based on the Michaelis Menten equation of enzyme kinetics plotting the ratio of the initial substrate concentration (S) against the reaction velocity (v). + + + Hanes Woolf plot + + + + + + + + + beta12orEarlier + beta13 + + + + Raw data from or annotation on laboratory experiments. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Experimental data + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a genome version. + + Genome version information + true + + + + + + + + + beta12orEarlier + Typically a human-readable summary of body of facts or information indicating why a statement is true or valid. This may include a computational prediction, laboratory experiment, literature reference etc. + + + Evidence + + + + + + + + + beta12orEarlier + 1.8 + + A molecular sequence and minimal metadata, typically an identifier of the sequence and/or a comment. + + + Sequence record lite + true + + + + + + + + + + + + + + + beta12orEarlier + One or more molecular sequences, possibly with associated annotation. + Sequences + + + This concept is a placeholder of concepts for primary sequence data including raw sequences and sequence records. It should not normally be used for derivatives such as sequence alignments, motifs or profiles. + Sequence + http://purl.bioontology.org/ontology/MSH/D008969 + http://purl.org/biotop/biotop.owl#BioMolecularSequenceInformation + + + + + + + + + beta12orEarlier + 1.8 + + A nucleic acid sequence and minimal metadata, typically an identifier of the sequence and/or a comment. + + + Nucleic acid sequence record (lite) + true + + + + + + + + + beta12orEarlier + 1.8 + + A protein sequence and minimal metadata, typically an identifier of the sequence and/or a comment. + + + Protein sequence record (lite) + true + + + + + + + + + beta12orEarlier + A human-readable collection of information including annotation on a biological entity or phenomena, computer-generated reports of analysis of primary data (e.g. sequence or structural), and metadata (data about primary data) or any other free (essentially unformatted) text, as distinct from the primary data itself. + Document + Record + + + You can use this term by default for any textual report, in case you can't find another, more specific term. Reports may be generated automatically or collated by hand and can include metadata on the origin, source, history, ownership or location of some thing. + Report + http://semanticscience.org/resource/SIO_000148 + + + + + + + + + beta12orEarlier + General data for a molecule. + General molecular property + + + Molecular property (general) + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning molecular structural data. + + This is a broad data type and is used a placeholder for other, more specific types. + Structural data + true + + + + + + + + + beta12orEarlier + A nucleotide sequence motif. + Nucleic acid sequence motif + DNA sequence motif + RNA sequence motif + + + Sequence motif (nucleic acid) + + + + + + + + + beta12orEarlier + An amino acid sequence motif. + Protein sequence motif + + + Sequence motif (protein) + + + + + + + + + beta12orEarlier + 1.5 + + + Some simple value controlling a search operation, typically a search of a database. + + Search parameter + true + + + + + + + + + beta12orEarlier + A report of hits from searching a database of some type. + Database hits + Search results + + + Database search results + + + + + + + + + beta12orEarlier + 1.5 + + + The secondary structure assignment (predicted or real) of a nucleic acid or protein. + + Secondary structure + true + + + + + + + + + beta12orEarlier + An array of numerical values. + Array + + + This is a broad data type and is used a placeholder for other, more specific types. + Matrix + + + + + + + + + beta12orEarlier + 1.8 + + + Data concerning, extracted from, or derived from the analysis of molecular alignment of some type. + + This is a broad data type and is used a placeholder for other, more specific types. + Alignment data + true + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific nucleic acid molecules. + + + Nucleic acid report + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more molecular tertiary (3D) structures. It might include annotation on the structure, a computer-generated report of analysis of structural data, and metadata (data about primary data) or any other free (essentially unformatted) text, as distinct from the primary data itself. + Structure-derived report + + + Structure report + + + + + + + + + beta12orEarlier + 1.21 + + + + A report on nucleic acid structure-derived data, describing structural properties of a DNA molecule, or any other annotation or information about specific nucleic acid 3D structure(s). + + Nucleic acid structure data + true + + + + + + + + + beta12orEarlier + A report on the physical (e.g. structural) or chemical properties of molecules, or parts of a molecule. + Physicochemical property + SO:0000400 + + + Molecular property + + + + + + + + + beta12orEarlier + Structural data for DNA base pairs or runs of bases, such as energy or angle data. + + + DNA base structural data + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a database (or ontology) entry version, such as name (or other identifier) or parent database, unique identifier of entry, data, author and so on. + + Database entry version information + true + + + + + + + + + beta12orEarlier + true + A persistent (stable) and unique identifier, typically identifying an object (entry) from a database. + + + + Accession + http://semanticscience.org/resource/SIO_000675 + http://semanticscience.org/resource/SIO_000731 + + + + + + + + + beta12orEarlier + 1.8 + + single nucleotide polymorphism (SNP) in a DNA sequence. + + + SNP + true + + + + + + + + + beta12orEarlier + Reference to a dataset (or a cross-reference between two datasets), typically one or more entries in a biological database or ontology. + + + A list of database accessions or identifiers are usually included. + Data reference + + + + + + + + + beta12orEarlier + true + An identifier of a submitted job. + + + + Job identifier + http://wsio.org/data_009 + + + + + + + + + beta12orEarlier + true + + A name of a thing, which need not necessarily uniquely identify it. + Symbolic name + + + + Name + "http://www.w3.org/2000/01/rdf-schema#label + http://semanticscience.org/resource/SIO_000116 + http://usefulinc.com/ns/doap#name + + + + + + Closely related, but focusing on labeling and human readability but not on identification. + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a thing, typically an enumerated string (a string with one of a limited set of values). + + Type + http://purl.org/dc/elements/1.1/type + true + + + + + + + + + beta12orEarlier + Authentication data usually used to log in into an account on an information system such as a web application or a database. + + + + Account authentication + + + + + + + + + + beta12orEarlier + A three-letter code used in the KEGG databases to uniquely identify organisms. + + + + KEGG organism code + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the KEGG GENES database. + + Gene name (KEGG GENES) + true + + + + + + + + + + beta12orEarlier + Identifier of an object from one of the BioCyc databases. + + + + BioCyc ID + + + + + + + + + + + beta12orEarlier + Identifier of a compound from the BioCyc chemical compounds database. + BioCyc compound ID + BioCyc compound identifier + + + + Compound ID (BioCyc) + + + + + + + + + + + beta12orEarlier + Identifier of a biological reaction from the BioCyc reactions database. + + + + Reaction ID (BioCyc) + + + + + + + + + + + beta12orEarlier + Identifier of an enzyme from the BioCyc enzymes database. + BioCyc enzyme ID + + + + Enzyme ID (BioCyc) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a biological reaction from a database. + + + + Reaction ID + + + + + + + + + beta12orEarlier + true + An identifier that is re-used for data objects of fundamentally different types (typically served from a single database). + + + + This branch provides an alternative organisation of the concepts nested under 'Accession' and 'Name'. All concepts under here are already included under 'Accession' or 'Name'. + Identifier (hybrid) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a molecular property. + + + + Molecular property identifier + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a codon usage table, for example a genetic code. + Codon usage table identifier + + + + Codon usage table ID + + + + + + + + + beta12orEarlier + Primary identifier of an object from the FlyBase database. + + + + FlyBase primary identifier + + + + + + + + + beta12orEarlier + Identifier of an object from the WormBase database. + + + + WormBase identifier + + + + + + + + + + + beta12orEarlier + CE[0-9]{5} + Protein identifier used by WormBase database. + + + + WormBase wormpep ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on a trinucleotide sequence that encodes an amino acid including the triplet sequence, the encoded amino acid or whether it is a start or stop codon. + + Nucleic acid features (codon) + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a map of a molecular sequence. + + + + Map identifier + + + + + + + + + beta12orEarlier + true + An identifier of a software end-user on a website or a database (typically a person or an entity). + + + + Person identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Name or other identifier of a nucleic acid molecule. + + + + Nucleic acid identifier + + + + + + + + + beta12orEarlier + 1.20 + + + Frame for translation of DNA (3 forward and 3 reverse frames relative to a chromosome). + + Translation frame specification + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a genetic code. + + + + Genetic code identifier + + + + + + + + + + beta12orEarlier + Informal name for a genetic code, typically an organism name. + + + + Genetic code name + + + + + + + + + + beta12orEarlier + Name of a file format such as HTML, PNG, PDF, EMBL, GenBank and so on. + + + + File format name + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing a type of sequence profile such as frequency matrix, Gribskov profile, hidden Markov model etc. + + Sequence profile type + true + + + + + + + + + beta12orEarlier + Name of a computer operating system such as Linux, PC or Mac. + + + + Operating system name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A type of point or block mutation, including insertion, deletion, change, duplication and moves. + + Mutation type + true + + + + + + + + + beta12orEarlier + A logical operator such as OR, AND, XOR, and NOT. + + + + Logical operator + + + + + + + + + beta12orEarlier + 1.5 + + + A control of the order of data that is output, for example the order of sequences in an alignment. + + Possible options including sorting by score, rank, by increasing P-value (probability, i.e. most statistically significant hits given first) and so on. + Results sort order + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple parameter that is a toggle (boolean value), typically a control for a modal tool. + + Toggle + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The width of an output sequence or alignment. + + Sequence width + true + + + + + + + + + beta12orEarlier + A penalty for introducing or extending a gap in an alignment. + + + Gap penalty + + + + + + + + + beta12orEarlier + A temperature concerning nucleic acid denaturation, typically the temperature at which the two strands of a hybridised or double stranded nucleic acid (DNA or RNA/DNA) molecule separate. + Melting temperature + + + Nucleic acid melting temperature + + + + + + + + + beta12orEarlier + The concentration of a chemical compound. + + + Concentration + + + + + + + + + beta12orEarlier + 1.5 + + + Size of the incremental 'step' a sequence window is moved over a sequence. + + Window step size + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An image of a graph generated by the EMBOSS suite. + + EMBOSS graph + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An application report generated by the EMBOSS suite. + + EMBOSS report + true + + + + + + + + + beta12orEarlier + 1.5 + + + An offset for a single-point sequence position. + + Sequence offset + true + + + + + + + + + beta12orEarlier + 1.5 + + + A value that serves as a threshold for a tool (usually to control scoring or output). + + Threshold + true + + + + + + + + + beta12orEarlier + beta13 + + + An informative report on a transcription factor protein. + + This might include conformational or physicochemical properties, as well as sequence information for transcription factor(s) binding sites. + Protein report (transcription factor) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a category of biological or bioinformatics database. + + Database category name + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name of a sequence profile. + + Sequence profile name + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Specification of one or more colors. + + Color + true + + + + + + + + + beta12orEarlier + 1.5 + + + A parameter that is used to control rendering (drawing) to a device or image. + + Rendering parameter + true + + + + + + + + + + beta12orEarlier + Any arbitrary name of a molecular sequence. + + + + Sequence name + + + + + + + + + beta12orEarlier + 1.5 + + + A temporal date. + + Date + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Word composition data for a molecular sequence. + + Word composition + true + + + + + + + + + beta12orEarlier + A plot of Fickett testcode statistic (identifying protein coding regions) in a nucleotide sequences. + + + Fickett testcode plot + + + + + + + + + + beta12orEarlier + A plot of sequence similarities identified from word-matching or character comparison. + Sequence conservation report + + + Use this concept for calculated substitution rates, relative site variability, data on sites with biased properties, highly conserved or very poorly conserved sites, regions, blocks etc. + Sequence similarity plot + + + + + + + + + beta12orEarlier + An image of peptide sequence sequence looking down the axis of the helix for highlighting amphipathicity and other properties. + + + Helical wheel + + + + + + + + + beta12orEarlier + An image of peptide sequence sequence in a simple 3,4,3,4 repeating pattern that emulates at a simple level the arrangement of residues around an alpha helix. + + + Useful for highlighting amphipathicity and other properties. + Helical net + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A plot of general physicochemical properties of a protein sequence. + + Protein sequence properties plot + true + + + + + + + + + + beta12orEarlier + A plot of pK versus pH for a protein. + + + Protein ionisation curve + + + + + + + + + + beta12orEarlier + A plot of character or word composition / frequency of a molecular sequence. + + + Sequence composition plot + + + + + + + + + + beta12orEarlier + Density plot (of base composition) for a nucleotide sequence. + + + Nucleic acid density plot + + + + + + + + + beta12orEarlier + Image of a sequence trace (nucleotide sequence versus probabilities of each of the 4 bases). + + + Sequence trace image + + + + + + + + + beta12orEarlier + 1.5 + + + A report on siRNA duplexes in mRNA. + + Nucleic acid features (siRNA) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A collection of multiple molecular sequences and (typically) associated metadata that is intended for sequential processing. + + This concept may be used for sequence sets that are expected to be read and processed a single sequence at a time. + Sequence set (stream) + true + + + + + + + + + beta12orEarlier + Secondary identifier of an object from the FlyBase database. + + + + Secondary identifier are used to handle entries that were merged with or split from other entries in the database. + FlyBase secondary identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The number of a certain thing. + + Cardinality + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A single thing. + + Exactly 1 + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + One or more things. + + 1 or more + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Exactly two things. + + Exactly 2 + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Two or more things. + + 2 or more + true + + + + + + + + + beta12orEarlier + A fixed-size datum calculated (by using a hash function) for a molecular sequence, typically for purposes of error detection or indexing. + Hash + Hash code + Hash sum + Hash value + + + Sequence checksum + + + + + + + + + beta12orEarlier + 1.8 + + chemical modification of a protein. + + + Protein features report (chemical modifications) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Data on an error generated by computer system or tool. + + Error + true + + + + + + + + + beta12orEarlier + Basic information on any arbitrary database entry. + + + Database entry metadata + + + + + + + + + beta12orEarlier + beta13 + + + A cluster of similar genes. + + Gene cluster + true + + + + + + + + + beta12orEarlier + 1.8 + + A molecular sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database. + + + Sequence record full + true + + + + + + + + + beta12orEarlier + true + An identifier of a plasmid in a database. + + + + Plasmid identifier + + + + + + + + + + beta12orEarlier + true + A unique identifier of a specific mutation catalogued in a database. + + + + Mutation ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Information describing the mutation itself, the organ site, tissue and type of lesion where the mutation has been identified, description of the patient origin and life-style. + + Mutation annotation (basic) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on the prevalence of mutation(s), including data on samples and mutation prevalence (e.g. by tumour type).. + + Mutation annotation (prevalence) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on mutation prognostic data, such as information on patient cohort, the study settings and the results of the study. + + Mutation annotation (prognostic) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on the functional properties of mutant proteins including transcriptional activities, promotion of cell growth and tumorigenicity, dominant negative effects, capacity to induce apoptosis, cell-cycle arrest or checkpoints in human cells and so on. + + Mutation annotation (functional) + true + + + + + + + + + beta12orEarlier + The number of a codon, for instance, at which a mutation is located. + + + Codon number + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific tumor including nature and origin of the sample, anatomic site, organ or tissue, tumor type, including morphology and/or histologic type, and so on. + + Tumor annotation + true + + + + + + + + + beta12orEarlier + 1.5 + + + Basic information about a server on the web, such as an SRS server. + + Server metadata + true + + + + + + + + + beta12orEarlier + The name of a field in a database. + + + + Database field name + + + + + + + + + + beta12orEarlier + Unique identifier of a sequence cluster from the SYSTERS database. + SYSTERS cluster ID + + + + Sequence cluster ID (SYSTERS) + + + + + + + + + + + + + + + beta12orEarlier + Data concerning a biological ontology. + + + Ontology metadata + + + + + + + + + beta12orEarlier + beta13 + + + Raw SCOP domain classification data files. + + These are the parsable data files provided by SCOP. + Raw SCOP domain classification + true + + + + + + + + + beta12orEarlier + beta13 + + + Raw CATH domain classification data files. + + These are the parsable data files provided by CATH. + Raw CATH domain classification + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on the types of small molecules or 'heterogens' (non-protein groups) that are represented in PDB files. + + Heterogen annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Phylogenetic property values data. + + Phylogenetic property values + true + + + + + + + + + beta12orEarlier + 1.5 + + + A collection of sequences output from a bootstrapping (resampling) procedure. + + Bootstrapping is often performed in phylogenetic analysis. + Sequence set (bootstrapped) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A consensus phylogenetic tree derived from comparison of multiple trees. + + Phylogenetic consensus tree + true + + + + + + + + + beta12orEarlier + 1.5 + + + A data schema for organising or transforming data of some type. + + Schema + true + + + + + + + + + beta12orEarlier + 1.5 + + + A DTD (document type definition). + + DTD + true + + + + + + + + + beta12orEarlier + 1.5 + + + An XML Schema. + + XML Schema + true + + + + + + + + + beta12orEarlier + 1.5 + + + A relax-NG schema. + + Relax-NG schema + true + + + + + + + + + beta12orEarlier + 1.5 + + + An XSLT stylesheet. + + XSLT stylesheet + true + + + + + + + + + + beta12orEarlier + The name of a data type. + + + + Data resource definition name + + + + + + + + + beta12orEarlier + Name of an OBO file format such as OBO-XML, plain and so on. + + + + OBO file format name + + + + + + + + + + beta12orEarlier + Identifier for genetic elements in MIPS database. + MIPS genetic element identifier + + + + Gene ID (MIPS) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of protein sequence(s) or protein sequence database entries. + + Sequence identifier (protein) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of nucleotide sequence(s) or nucleotide sequence database entries. + + Sequence identifier (nucleic acid) + true + + + + + + + + + beta12orEarlier + An accession number of an entry from the EMBL sequence database. + EMBL ID + EMBL accession number + EMBL identifier + + + + EMBL accession + + + + + + + + + + + + + + + beta12orEarlier + An identifier of a polypeptide in the UniProt database. + UniProt entry name + UniProt identifier + UniProtKB entry name + UniProtKB identifier + + + + UniProt ID + + + + + + + + + beta12orEarlier + Accession number of an entry from the GenBank sequence database. + GenBank ID + GenBank accession number + GenBank identifier + + + + GenBank accession + + + + + + + + + beta12orEarlier + Secondary (internal) identifier of a Gramene database entry. + Gramene internal ID + Gramene internal identifier + Gramene secondary ID + + + + Gramene secondary identifier + + + + + + + + + beta12orEarlier + true + An identifier of an entry from a database of molecular sequence variation. + + + + Sequence variation ID + + + + + + + + + + beta12orEarlier + true + A unique (and typically persistent) identifier of a gene in a database, that is (typically) different to the gene name/symbol. + Gene accession + Gene code + + + + Gene ID + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the AceView genes database. + + Gene name (AceView) + true + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: ECK + Identifier of an E. coli K-12 gene from EcoGene Database. + E. coli K-12 gene identifier + ECK accession + + + + Gene ID (ECK) + + + + + + + + + + beta12orEarlier + Identifier for a gene approved by the HUGO Gene Nomenclature Committee. + HGNC ID + + + + Gene ID (HGNC) + + + + + + + + + + beta12orEarlier + The name of a gene, (typically) assigned by a person and/or according to a naming scheme. It may contain white space characters and is typically more intuitive and readable than a gene symbol. It (typically) may be used to identify similar genes in different species and to derive a gene symbol. + Allele name + + + + Gene name + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the NCBI genes database. + + Gene name (NCBI) + true + + + + + + + + + beta12orEarlier + A specification of a chemical structure in SMILES format. + + + SMILES string + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the STRING database of protein-protein interactions. + + + + STRING ID + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific virus. + + Virus annotation + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on the taxonomy of a specific virus. + + Virus annotation (taxonomy) + true + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a biological reaction from the SABIO-RK reactions database. + + + + Reaction ID (SABIO-RK) + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific carbohydrate 3D structure(s). + + + Carbohydrate report + + + + + + + + + + beta12orEarlier + A series of digits that are assigned consecutively to each sequence record processed by NCBI. The GI number bears no resemblance to the Accession number of the sequence record. + NCBI GI number + + + + Nucleotide sequence GI number is shown in the VERSION field of the database record. Protein sequence GI number is shown in the CDS/db_xref field of a nucleotide database record, and the VERSION field of a protein database record. + GI number + + + + + + + + + + beta12orEarlier + An identifier assigned to sequence records processed by NCBI, made of the accession number of the database record followed by a dot and a version number. + NCBI accession.version + accession.version + + + + Nucleotide sequence version contains two letters followed by six digits, a dot, and a version number (or for older nucleotide sequence records, the format is one letter followed by five digits, a dot, and a version number). Protein sequence version contains three letters followed by five digits, a dot, and a version number. + NCBI version + + + + + + + + + beta12orEarlier + The name of a cell line. + + + + Cell line name + + + + + + + + + beta12orEarlier + The exact name of a cell line. + + + + Cell line name (exact) + + + + + + + + + beta12orEarlier + The truncated name of a cell line. + + + + Cell line name (truncated) + + + + + + + + + beta12orEarlier + The name of a cell line without any punctuation. + + + + Cell line name (no punctuation) + + + + + + + + + beta12orEarlier + The assonant name of a cell line. + + + + Cell line name (assonant) + + + + + + + + + + beta12orEarlier + true + A unique, persistent identifier of an enzyme. + Enzyme accession + + + + Enzyme ID + + + + + + + + + + beta12orEarlier + Identifier of an enzyme from the REBASE enzymes database. + + + + REBASE enzyme number + + + + + + + + + + beta12orEarlier + DB[0-9]{5} + Unique identifier of a drug from the DrugBank database. + + + + DrugBank ID + + + + + + + + + beta12orEarlier + A unique identifier assigned to NCBI protein sequence records. + protein gi + protein gi number + + + + Nucleotide sequence GI number is shown in the VERSION field of the database record. Protein sequence GI number is shown in the CDS/db_xref field of a nucleotide database record, and the VERSION field of a protein database record. + GI number (protein) + + + + + + + + + beta12orEarlier + A score derived from the alignment of two sequences, which is then normalised with respect to the scoring system. + + + Bit scores are normalised with respect to the scoring system and therefore can be used to compare alignment scores from different searches. + Bit score + + + + + + + + + beta12orEarlier + 1.20 + + + Phase for translation of DNA (0, 1 or 2) relative to a fragment of the coding sequence. + + Translation phase specification + true + + + + + + + + + beta12orEarlier + Data concerning or describing some core computational resource, as distinct from primary data. This includes metadata on the origin, source, history, ownership or location of some thing. + Provenance metadata + + + This is a broad data type and is used a placeholder for other, more specific types. + Resource metadata + + + + + + + + + + + + + + + beta12orEarlier + Any arbitrary identifier of an ontology. + + + + Ontology identifier + + + + + + + + + + beta12orEarlier + The name of a concept in an ontology. + + + + Ontology concept name + + + + + + + + + beta12orEarlier + An identifier of a build of a particular genome. + + + + Genome build identifier + + + + + + + + + beta12orEarlier + The name of a biological pathway or network. + + + + Pathway or network name + + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]{2,3}[0-9]{5} + Identifier of a pathway from the KEGG pathway database. + KEGG pathway ID + + + + Pathway ID (KEGG) + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+ + Identifier of a pathway from the NCI-Nature pathway database. + + + + Pathway ID (NCI-Nature) + + + + + + + + + + + beta12orEarlier + Identifier of a pathway from the ConsensusPathDB pathway database. + + + + Pathway ID (ConsensusPathDB) + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef database. + UniRef cluster id + UniRef entry accession + + + + Sequence cluster ID (UniRef) + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef100 database. + UniRef100 cluster id + UniRef100 entry accession + + + + Sequence cluster ID (UniRef100) + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef90 database. + UniRef90 cluster id + UniRef90 entry accession + + + + Sequence cluster ID (UniRef90) + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef50 database. + UniRef50 cluster id + UniRef50 entry accession + + + + Sequence cluster ID (UniRef50) + + + + + + + + + + + + + + + beta12orEarlier + Data concerning or derived from an ontology. + Ontological data + + + This is a broad data type and is used a placeholder for other, more specific types. + Ontology data + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific RNA family or other group of classified RNA sequences. + RNA family annotation + + + RNA family report + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an RNA family, typically an entry from a RNA sequence classification database. + + + + RNA family identifier + + + + + + + + + + beta12orEarlier + Stable accession number of an entry (RNA family) from the RFAM database. + + + + RFAM accession + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing a type of protein family signature (sequence classifier) from the InterPro database. + + Protein signature type + true + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on protein domain-DNA/RNA interaction(s). + + Domain-nucleic acid interaction report + true + + + + + + + + + beta12orEarlier + 1.8 + + + An informative report on protein domain-protein domain interaction(s). + + Domain-domain interactions + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data on indirect protein domain-protein domain interaction(s). + + Domain-domain interaction (indirect) + true + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a nucleotide or protein sequence database entry. + + + + Sequence accession (hybrid) + + + + + + + + + beta12orEarlier + beta13 + + Data concerning two-dimensional polygel electrophoresis. + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + 2D PAGE data + true + + + + + + + + + beta12orEarlier + 1.8 + + two-dimensional gel electrophoresis experiments, gels or spots in a gel. + + + 2D PAGE report + true + + + + + + + + + beta12orEarlier + true + A persistent, unique identifier of a biological pathway or network (typically a database entry). + + + + Pathway or network accession + + + + + + + + + beta12orEarlier + Alignment of the (1D representations of) secondary structure of two or more molecules. + + + Secondary structure alignment + + + + + + + + + + + beta12orEarlier + Identifier of an object from the ASTD database. + + + + ASTD ID + + + + + + + + + beta12orEarlier + Identifier of an exon from the ASTD database. + + + + ASTD ID (exon) + + + + + + + + + beta12orEarlier + Identifier of an intron from the ASTD database. + + + + ASTD ID (intron) + + + + + + + + + beta12orEarlier + Identifier of a polyA signal from the ASTD database. + + + + ASTD ID (polya) + + + + + + + + + beta12orEarlier + Identifier of a transcription start site from the ASTD database. + + + + ASTD ID (tss) + + + + + + + + + beta12orEarlier + 1.8 + + An informative report on individual spot(s) from a two-dimensional (2D PAGE) gel. + + + 2D PAGE spot report + true + + + + + + + + + beta12orEarlier + true + Unique identifier of a spot from a two-dimensional (protein) gel. + + + + Spot ID + + + + + + + + + + beta12orEarlier + Unique identifier of a spot from a two-dimensional (protein) gel in the SWISS-2DPAGE database. + + + + Spot serial number + + + + + + + + + + beta12orEarlier + Unique identifier of a spot from a two-dimensional (protein) gel from a HSC-2DPAGE database. + + + + Spot ID (HSC-2DPAGE) + + + + + + + + + beta12orEarlier + beta13 + + + Data on the interaction of a protein (or protein domain) with specific structural (3D) and/or sequence motifs. + + Protein-motif interaction + true + + + + + + + + + beta12orEarlier + true + Identifier of a strain of an organism variant, typically a plant, virus or bacterium. + + + + Strain identifier + + + + + + + + + + beta12orEarlier + A unique identifier of an item from the CABRI database. + + + + CABRI accession + + + + + + + + + beta12orEarlier + 1.8 + + Report of genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods. + + + Experiment report (genotyping) + true + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of genotype experiment metadata. + + + + Genotype experiment ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the EGA database. + + + + EGA accession + + + + + + + + + + beta12orEarlier + IPI[0-9]{8} + Identifier of a protein entry catalogued in the International Protein Index (IPI) database. + + + + IPI protein ID + + + + + + + + + beta12orEarlier + Accession number of a protein from the RefSeq database. + RefSeq protein ID + + + + RefSeq accession (protein) + + + + + + + + + + beta12orEarlier + Identifier of an entry (promoter) from the EPD database. + EPD identifier + + + + EPD ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the TAIR database. + + + + TAIR accession + + + + + + + + + beta12orEarlier + Identifier of an Arabidopsis thaliana gene from the TAIR database. + + + + TAIR accession (At gene) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the UniSTS database. + + + + UniSTS accession + + + + + + + + + + beta12orEarlier + Identifier of an entry from the UNITE database. + + + + UNITE accession + + + + + + + + + + beta12orEarlier + Identifier of an entry from the UTR database. + + + + UTR accession + + + + + + + + + + beta12orEarlier + UPI[A-F0-9]{10} + Accession number of a UniParc (protein sequence) database entry. + UPI + UniParc ID + + + + UniParc accession + + + + + + + + + + beta12orEarlier + Identifier of an entry from the Rouge or HUGE databases. + + + + mFLJ/mKIAA number + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific fungus. + + Fungi annotation + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific fungus anamorph. + + Fungi annotation (anamorph) + true + + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the Ensembl database. + Ensembl ID (protein) + Protein ID (Ensembl) + + + + Ensembl protein ID + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific toxin. + + Toxin annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on a membrane protein. + + Protein report (membrane protein) + true + + + + + + + + + beta12orEarlier + 1.12 + + An informative report on tentative or known protein-drug interaction(s). + + + Protein-drug interaction report + true + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning a map of molecular sequence(s). + + This is a broad data type and is used a placeholder for other, more specific types. + Map data + true + + + + + + + + + beta12orEarlier + Data concerning phylogeny, typically of molecular sequences, including reports of information concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees. + + + This is a broad data type and is used a placeholder for other, more specific types. + Phylogenetic data + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning one or more protein molecules. + + This is a broad data type and is used a placeholder for other, more specific types. + Protein data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning one or more nucleic acid molecules. + + This is a broad data type and is used a placeholder for other, more specific types. + Nucleic acid data + true + + + + + + + + + + + + + + + beta12orEarlier + Data concerning, extracted from, or derived from the analysis of a scientific text (or texts) such as a full text article from a scientific journal. + Article data + Scientific text data + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. It includes concepts that are best described as scientific text or closely concerned with or derived from text. + Text data + + + + + + + + + beta12orEarlier + 1.16 + + + Typically a simple numerical or string value that controls the operation of a tool. + + Parameter + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning a specific type of molecule. + + This is a broad data type and is used a placeholder for other, more specific types. + Molecular data + true + + + + + + + + + beta12orEarlier + 1.5 + + + + An informative report on a specific molecule. + + Molecule report + true + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific organism. + Organism annotation + + + Organism report + + + + + + + + + beta12orEarlier + A human-readable collection of information about about how a scientific experiment or analysis was carried out that results in a specific set of data or results used for further analysis or to test a specific hypothesis. + Experiment annotation + Experiment metadata + Experiment report + + + Protocol + + + + + + + + + beta12orEarlier + An attribute of a molecular sequence, possibly in reference to some other sequence. + Sequence parameter + + + Sequence attribute + + + + + + + + + beta12orEarlier + Output from a serial analysis of gene expression (SAGE), massively parallel signature sequencing (MPSS) or sequencing by synthesis (SBS) experiment. In all cases this is a list of short sequence tags and the number of times it is observed. + Sequencing-based expression profile + Sequence tag profile (with gene assignment) + + + SAGE, MPSS and SBS experiments are usually performed to study gene expression. The sequence tags are typically subsequently annotated (after a database search) with the mRNA (and therefore gene) the tag was extracted from. + This includes tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. Typically this is the sequencing-based expression profile annotated with gene identifiers. + Sequence tag profile + + + + + + + + + beta12orEarlier + Data concerning a mass spectrometry measurement. + + + Mass spectrometry data + + + + + + + + + beta12orEarlier + Raw data from experimental methods for determining protein structure. + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein structure raw data + + + + + + + + + beta12orEarlier + true + An identifier of a mutation. + + + + Mutation identifier + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning an alignment of two or more molecular sequences, structures or derived data. + + This is a broad data type and is used a placeholder for other, more specific types. This includes entities derived from sequences and structures such as motifs and profiles. + Alignment data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning an index of data. + + This is a broad data type and is used a placeholder for other, more specific types. + Data index data + true + + + + + + + + + beta12orEarlier + Single letter amino acid identifier, e.g. G. + + + + Amino acid name (single letter) + + + + + + + + + beta12orEarlier + Three letter amino acid identifier, e.g. GLY. + + + + Amino acid name (three letter) + + + + + + + + + beta12orEarlier + Full name of an amino acid, e.g. Glycine. + + + + Amino acid name (full name) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a toxin. + + + + Toxin identifier + + + + + + + + + + beta12orEarlier + Unique identifier of a toxin from the ArachnoServer database. + + + + ArachnoServer ID + + + + + + + + + beta12orEarlier + 1.5 + + + A simple summary of expressed genes. + + Expressed gene list + true + + + + + + + + + + beta12orEarlier + Unique identifier of a monomer from the BindingDB database. + + + + BindingDB Monomer ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept from the GO ontology. + + GO concept name + true + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a 'biological process' concept from the the Gene Ontology. + + + + GO concept ID (biological process) + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a 'molecular function' concept from the the Gene Ontology. + + + + GO concept ID (molecular function) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept for a cellular component from the GO ontology. + + GO concept name (cellular component) + true + + + + + + + + + beta12orEarlier + An image arising from a Northern Blot experiment. + + + Northern blot image + + + + + + + + + beta12orEarlier + true + Unique identifier of a blot from a Northern Blot. + + + + Blot ID + + + + + + + + + + beta12orEarlier + Unique identifier of a blot from a Northern Blot from the BlotBase database. + + + + BlotBase blot ID + + + + + + + + + beta12orEarlier + Raw data on a biological hierarchy, describing the hierarchy proper, hierarchy components and possibly associated annotation. + Hierarchy annotation + + + Hierarchy + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry from a database of biological hierarchies. + + Hierarchy identifier + true + + + + + + + + + + beta12orEarlier + Identifier of an entry from the Brite database of biological hierarchies. + + + + Brite hierarchy ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A type (represented as a string) of cancer. + + Cancer type + true + + + + + + + + + + beta12orEarlier + A unique identifier for an organism used in the BRENDA database. + + + + BRENDA organism ID + + + + + + + + + beta12orEarlier + The name of a taxon using the controlled vocabulary of the UniGene database. + UniGene organism abbreviation + + + + UniGene taxon + + + + + + + + + beta12orEarlier + The name of a taxon using the controlled vocabulary of the UTRdb database. + + + + UTRdb taxon + + + + + + + + + beta12orEarlier + true + An identifier of a catalogue of biological resources. + Catalogue identifier + + + + Catalogue ID + + + + + + + + + + beta12orEarlier + The name of a catalogue of biological resources from the CABRI database. + + + + CABRI catalogue name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on protein secondary structure alignment-derived data or metadata. + + Secondary structure alignment metadata + true + + + + + + + + + beta12orEarlier + Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19. + 1.5 + + + An informative report on the physical, chemical or other information concerning the interaction of two or more molecules (or parts of molecules). + + Molecule interaction report + true + + + + + + + + + + + + + + + beta12orEarlier + Primary data about a specific biological pathway or network (the nodes and connections within the pathway or network). + Network + Pathway + + + Pathway or network + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning one or more small molecules. + + This is a broad data type and is used a placeholder for other, more specific types. + Small molecule data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning a particular genotype, phenotype or a genotype / phenotype relation. + + Genotype and phenotype data + true + + + + + + + + + + + + + + + beta12orEarlier + Image, hybridisation or some other data arising from a study of feature/molecule expression, typically profiling or quantification. + Gene expression data + Gene product profile + Gene product quantification data + Gene transcription profile + Gene transcription quantification data + Metabolite expression data + Microarray data + Non-coding RNA profile + Non-coding RNA quantification data + Protein expression data + RNA profile + RNA quantification data + RNA-seq data + Transcriptome profile + Transcriptome quantification data + mRNA profile + mRNA quantification data + Protein profile + Protein quantification data + Proteome profile + Proteome quantification data + + + Expression data + + + + + + + + + + beta12orEarlier + C[0-9]+ + Unique identifier of a chemical compound from the KEGG database. + KEGG compound ID + KEGG compound identifier + + + + Compound ID (KEGG) + + + + + + + + + + beta12orEarlier + Name (not necessarily stable) an entry (RNA family) from the RFAM database. + + + + RFAM name + + + + + + + + + + beta12orEarlier + R[0-9]+ + Identifier of a biological reaction from the KEGG reactions database. + + + + Reaction ID (KEGG) + + + + + + + + + + + beta12orEarlier + D[0-9]+ + Unique identifier of a drug from the KEGG Drug database. + + + + Drug ID (KEGG) + + + + + + + + + + beta12orEarlier + ENS[A-Z]*[FPTG][0-9]{11} + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl database. + Ensembl IDs + + + + Ensembl ID + + + + + + + + + + + + + + + + beta12orEarlier + [A-Z][0-9]+(\.[-[0-9]+])? + An identifier of a disease from the International Classification of Diseases (ICD) database. + + + + ICD identifier + + + + + + + + + + beta12orEarlier + [0-9A-Za-z]+:[0-9]+:[0-9]{1,5}(\.[0-9])? + Unique identifier of a sequence cluster from the CluSTr database. + CluSTr ID + CluSTr cluster ID + + + + Sequence cluster ID (CluSTr) + + + + + + + + + + + beta12orEarlier + G[0-9]+ + Unique identifier of a glycan ligand from the KEGG GLYCAN database (a subset of KEGG LIGAND). + + + + KEGG Glycan ID + + + + + + + + + + beta12orEarlier + [0-9]+\.[A-Z]\.[0-9]+\.[0-9]+\.[0-9]+ + A unique identifier of a family from the transport classification database (TCDB) of membrane transport proteins. + TC number + + + + OBO file for regular expression. + TCDB ID + + + + + + + + + + beta12orEarlier + MINT\-[0-9]{1,5} + Unique identifier of an entry from the MINT database of protein-protein interactions. + + + + MINT ID + + + + + + + + + + beta12orEarlier + DIP[\:\-][0-9]{3}[EN] + Unique identifier of an entry from the DIP database of protein-protein interactions. + + + + DIP ID + + + + + + + + + + beta12orEarlier + A[0-9]{6} + Unique identifier of a protein listed in the UCSD-Nature Signaling Gateway Molecule Pages database. + + + + Signaling Gateway protein ID + + + + + + + + + beta12orEarlier + true + Identifier of a protein modification catalogued in a database. + + + + Protein modification ID + + + + + + + + + + beta12orEarlier + AA[0-9]{4} + Identifier of a protein modification catalogued in the RESID database. + + + + RESID ID + + + + + + + + + + beta12orEarlier + [0-9]{4,7} + Identifier of an entry from the RGD database. + + + + RGD ID + + + + + + + + + + beta12orEarlier + AASequence:[0-9]{10} + Identifier of a protein sequence from the TAIR database. + + + + TAIR accession (protein) + + + + + + + + + + beta12orEarlier + HMDB[0-9]{5} + Identifier of a small molecule metabolite from the Human Metabolome Database (HMDB). + HMDB ID + + + + Compound ID (HMDB) + + + + + + + + + + beta12orEarlier + LM(FA|GL|GP|SP|ST|PR|SL|PK)[0-9]{4}([0-9a-zA-Z]{4})? + Identifier of an entry from the LIPID MAPS database. + LM ID + + + + LIPID MAPS ID + + + + + + + + + + beta12orEarlier + PAp[0-9]{8} + PDBML:pdbx_PDB_strand_id + Identifier of a peptide from the PeptideAtlas peptide databases. + + + + PeptideAtlas ID + + + + + + + + + beta12orEarlier + 1.7 + + Identifier of a report of molecular interactions from a database (typically). + + + Molecular interaction ID + true + + + + + + + + + + beta12orEarlier + [0-9]+ + A unique identifier of an interaction from the BioGRID database. + + + + BioGRID interaction ID + + + + + + + + + + beta12orEarlier + S[0-9]{2}\.[0-9]{3} + Unique identifier of a peptidase enzyme from the MEROPS database. + MEROPS ID + + + + Enzyme ID (MEROPS) + + + + + + + + + beta12orEarlier + true + An identifier of a mobile genetic element. + + + + Mobile genetic element ID + + + + + + + + + + beta12orEarlier + mge:[0-9]+ + An identifier of a mobile genetic element from the Aclame database. + + + + ACLAME ID + + + + + + + + + + beta12orEarlier + PWY[a-zA-Z_0-9]{2}\-[0-9]{3} + Identifier of an entry from the Saccharomyces genome database (SGD). + + + + SGD ID + + + + + + + + + beta12orEarlier + true + Unique identifier of a book. + + + + Book ID + + + + + + + + + + beta12orEarlier + (ISBN)?(-13|-10)?[:]?[ ]?([0-9]{2,3}[ -]?)?[0-9]{1,5}[ -]?[0-9]{1,7}[ -]?[0-9]{1,6}[ -]?([0-9]|X) + The International Standard Book Number (ISBN) is for identifying printed books. + + + + ISBN + + + + + + + + + + beta12orEarlier + B[0-9]{5} + Identifier of a metabolite from the 3DMET database. + 3DMET ID + + + + Compound ID (3DMET) + + + + + + + + + + beta12orEarlier + ([A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9])_.*|([OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9]_.*)|(GAG_.*)|(MULT_.*)|(PFRAG_.*)|(LIP_.*)|(CAT_.*) + A unique identifier of an interaction from the MatrixDB database. + + + + MatrixDB interaction ID + + + + + + + + + + + beta12orEarlier + [0-9]+ + A unique identifier for pathways, reactions, complexes and small molecules from the cPath (Pathway Commons) database. + + + + These identifiers are unique within the cPath database, however, they are not stable between releases. + cPath ID + + + + + + + + + + beta12orEarlier + true + [0-9]+ + Identifier of an assay from the PubChem database. + + + + PubChem bioassay ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the PubChem database. + PubChem identifier + + + + PubChem ID + + + + + + + + + + beta12orEarlier + M[0-9]{4} + Identifier of an enzyme reaction mechanism from the MACie database. + MACie entry number + + + + Reaction ID (MACie) + + + + + + + + + + beta12orEarlier + MI[0-9]{7} + Identifier for a gene from the miRBase database. + miRNA ID + miRNA identifier + miRNA name + + + + Gene ID (miRBase) + + + + + + + + + + beta12orEarlier + ZDB\-GENE\-[0-9]+\-[0-9]+ + Identifier for a gene from the Zebrafish information network genome (ZFIN) database. + + + + Gene ID (ZFIN) + + + + + + + + + + beta12orEarlier + [0-9]{5} + Identifier of an enzyme-catalysed reaction from the Rhea database. + + + + Reaction ID (Rhea) + + + + + + + + + + beta12orEarlier + UPA[0-9]{5} + Identifier of a biological pathway from the Unipathway database. + upaid + + + + Pathway ID (Unipathway) + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a small molecular from the ChEMBL database. + ChEMBL ID + + + + Compound ID (ChEMBL) + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+ + Unique identifier of an entry from the Ligand-gated ion channel (LGICdb) database. + + + + LGICdb identifier + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a biological reaction (kinetics entry) from the SABIO-RK reactions database. + + + + Reaction kinetics ID (SABIO-RK) + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of an entry from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + PharmGKB ID + + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of a pathway from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + Pathway ID (PharmGKB) + + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of a disease from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + Disease ID (PharmGKB) + + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of a drug from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + Drug ID (PharmGKB) + + + + + + + + + + beta12orEarlier + DAP[0-9]+ + Identifier of a drug from the Therapeutic Target Database (TTD). + + + + Drug ID (TTD) + + + + + + + + + + beta12orEarlier + TTDS[0-9]+ + Identifier of a target protein from the Therapeutic Target Database (TTD). + + + + Target ID (TTD) + + + + + + + + + beta12orEarlier + true + A unique identifier of a type or group of cells. + + + + Cell type identifier + + + + + + + + + + beta12orEarlier + [0-9]+ + A unique identifier of a neuron from the NeuronDB database. + + + + NeuronDB ID + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+ + A unique identifier of a neuron from the NeuroMorpho database. + + + + NeuroMorpho ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a chemical from the ChemIDplus database. + ChemIDplus ID + + + + Compound ID (ChemIDplus) + + + + + + + + + + beta12orEarlier + SMP[0-9]{5} + Identifier of a pathway from the Small Molecule Pathway Database (SMPDB). + + + + Pathway ID (SMPDB) + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the BioNumbers database of key numbers and associated data in molecular biology. + + + + BioNumbers ID + + + + + + + + + + beta12orEarlier + T3D[0-9]+ + Unique identifier of a toxin from the Toxin and Toxin Target Database (T3DB) database. + + + + T3DB ID + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a carbohydrate. + + + + Carbohydrate identifier + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the GlycomeDB database. + + + + GlycomeDB ID + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+[0-9]+ + Identifier of an entry from the LipidBank database. + + + + LipidBank ID + + + + + + + + + + beta12orEarlier + cd[0-9]{5} + Identifier of a conserved domain from the Conserved Domain Database. + + + + CDD ID + + + + + + + + + + beta12orEarlier + [0-9]{1,5} + An identifier of an entry from the MMDB database. + MMDB accession + + + + MMDB ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Unique identifier of an entry from the iRefIndex database of protein-protein interactions. + + + + iRefIndex ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Unique identifier of an entry from the ModelDB database. + + + + ModelDB ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a signaling pathway from the Database of Quantitative Cellular Signaling (DQCS). + + + + Pathway ID (DQCS) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database (Homo sapiens division). + + Ensembl ID (Homo sapiens) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Bos taurus' division). + + Ensembl ID ('Bos taurus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Canis familiaris' division). + + Ensembl ID ('Canis familiaris') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Cavia porcellus' division). + + Ensembl ID ('Cavia porcellus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona intestinalis' division). + + Ensembl ID ('Ciona intestinalis') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona savignyi' division). + + Ensembl ID ('Ciona savignyi') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Danio rerio' division). + + Ensembl ID ('Danio rerio') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Dasypus novemcinctus' division). + + Ensembl ID ('Dasypus novemcinctus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Echinops telfairi' division). + + Ensembl ID ('Echinops telfairi') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Erinaceus europaeus' division). + + Ensembl ID ('Erinaceus europaeus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Felis catus' division). + + Ensembl ID ('Felis catus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gallus gallus' division). + + Ensembl ID ('Gallus gallus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gasterosteus aculeatus' division). + + Ensembl ID ('Gasterosteus aculeatus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Homo sapiens' division). + + Ensembl ID ('Homo sapiens') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Loxodonta africana' division). + + Ensembl ID ('Loxodonta africana') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Macaca mulatta' division). + + Ensembl ID ('Macaca mulatta') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Monodelphis domestica' division). + + Ensembl ID ('Monodelphis domestica') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Mus musculus' division). + + Ensembl ID ('Mus musculus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Myotis lucifugus' division). + + Ensembl ID ('Myotis lucifugus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ornithorhynchus anatinus' division). + + Ensembl ID ("Ornithorhynchus anatinus") + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryctolagus cuniculus' division). + + Ensembl ID ('Oryctolagus cuniculus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryzias latipes' division). + + Ensembl ID ('Oryzias latipes') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Otolemur garnettii' division). + + Ensembl ID ('Otolemur garnettii') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Pan troglodytes' division). + + Ensembl ID ('Pan troglodytes') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Rattus norvegicus' division). + + Ensembl ID ('Rattus norvegicus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Spermophilus tridecemlineatus' division). + + Ensembl ID ('Spermophilus tridecemlineatus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Takifugu rubripes' division). + + Ensembl ID ('Takifugu rubripes') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Tupaia belangeri' division). + + Ensembl ID ('Tupaia belangeri') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Xenopus tropicalis' division). + + Ensembl ID ('Xenopus tropicalis') + true + + + + + + + + + + beta12orEarlier + Identifier of a protein domain (or other node) from the CATH database. + + + + CATH identifier + + + + + + + + + beta12orEarlier + 2.10.10.10 + A code number identifying a family from the CATH database. + + + + CATH node ID (family) + + + + + + + + + + beta12orEarlier + Identifier of an enzyme from the CAZy enzymes database. + CAZy ID + + + + Enzyme ID (CAZy) + + + + + + + + + + beta12orEarlier + A unique identifier assigned by the I.M.A.G.E. consortium to a clone (cloned molecular sequence). + I.M.A.G.E. cloneID + IMAGE cloneID + + + + Clone ID (IMAGE) + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a 'cellular component' concept from the Gene Ontology. + GO concept identifier (cellular compartment) + + + + GO concept ID (cellular component) + + + + + + + + + beta12orEarlier + Name of a chromosome as used in the BioCyc database. + + + + Chromosome name (BioCyc) + + + + + + + + + + beta12orEarlier + An identifier of a gene expression profile from the CleanEx database. + + + + CleanEx entry name + + + + + + + + + beta12orEarlier + An identifier of (typically a list of) gene expression experiments catalogued in the CleanEx database. + + + + CleanEx dataset code + + + + + + + + + beta12orEarlier + A human-readable collection of information concerning a genome as a whole. + + + Genome report + + + + + + + + + + beta12orEarlier + Unique identifier for a protein complex from the CORUM database. + CORUM complex ID + + + + Protein ID (CORUM) + + + + + + + + + + beta12orEarlier + Unique identifier of a position-specific scoring matrix from the CDD database. + + + + CDD PSSM-ID + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the CuticleDB database. + CuticleDB ID + + + + Protein ID (CuticleDB) + + + + + + + + + + beta12orEarlier + Identifier of a predicted transcription factor from the DBD database. + + + + DBD ID + + + + + + + + + + + + + + + beta12orEarlier + General annotation on an oligonucleotide probe, or a set of probes. + Oligonucleotide probe sets annotation + + + Oligonucleotide probe annotation + + + + + + + + + + beta12orEarlier + true + Identifier of an oligonucleotide from a database. + + + + Oligonucleotide ID + + + + + + + + + + beta12orEarlier + Identifier of an oligonucleotide probe from the dbProbe database. + + + + dbProbe ID + + + + + + + + + beta12orEarlier + Physicochemical property data for one or more dinucleotides. + + + Dinucleotide property + + + + + + + + + + beta12orEarlier + Identifier of an dinucleotide property from the DiProDB database. + + + + DiProDB ID + + + + + + + + + beta12orEarlier + 1.8 + + disordered structure in a protein. + + + Protein features report (disordered structure) + true + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the DisProt database. + DisProt ID + + + + Protein ID (DisProt) + + + + + + + + + beta12orEarlier + 1.5 + + + Annotation on an embryo or concerning embryological development. + + Embryo report + true + + + + + + + + + + + beta12orEarlier + Unique identifier for a gene transcript from the Ensembl database. + Transcript ID (Ensembl) + + + + Ensembl transcript ID + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on one or more small molecules that are enzyme inhibitors. + + Inhibitor annotation + true + + + + + + + + + beta12orEarlier + true + Moby:GeneAccessionList + An identifier of a promoter of a gene that is catalogued in a database. + + + + Promoter ID + + + + + + + + + beta12orEarlier + Identifier of an EST sequence. + + + + EST accession + + + + + + + + + + beta12orEarlier + Identifier of an EST sequence from the COGEME database. + + + + COGEME EST ID + + + + + + + + + + beta12orEarlier + Identifier of a unisequence from the COGEME database. + + + + A unisequence is a single sequence assembled from ESTs. + COGEME unisequence ID + + + + + + + + + + beta12orEarlier + Accession number of an entry (protein family) from the GeneFarm database. + GeneFarm family ID + + + + Protein family ID (GeneFarm) + + + + + + + + + beta12orEarlier + The name of a family of organism. + + + + Family name + + + + + + + + + beta12orEarlier + beta13 + + + The name of a genus of viruses. + + Genus name (virus) + true + + + + + + + + + beta12orEarlier + beta13 + + + The name of a family of viruses. + + Family name (virus) + true + + + + + + + + + beta12orEarlier + beta13 + + + The name of a SwissRegulon database. + + Database name (SwissRegulon) + true + + + + + + + + + + beta12orEarlier + A feature identifier as used in the SwissRegulon database. + + + + This can be name of a gene, the ID of a TFBS, or genomic coordinates in form "chr:start..end". + Sequence feature ID (SwissRegulon) + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the NMPDR database. + + + + A FIG ID consists of four parts: a prefix, genome id, locus type and id number. + FIG ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the Xenbase database. + + + + Gene ID (Xenbase) + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the Genolist database. + + + + Gene ID (Genolist) + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the Genolist genes database. + + Gene name (Genolist) + true + + + + + + + + + + beta12orEarlier + Identifier of an entry (promoter) from the ABS database. + ABS identifier + + + + ABS ID + + + + + + + + + + beta12orEarlier + Identifier of a transcription factor from the AraC-XylS database. + + + + AraC-XylS ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name of an entry (gene) from the HUGO database. + + Gene name (HUGO) + true + + + + + + + + + + beta12orEarlier + Identifier of a locus from the PseudoCAP database. + + + + Locus ID (PseudoCAP) + + + + + + + + + + beta12orEarlier + Identifier of a locus from the UTR database. + + + + Locus ID (UTR) + + + + + + + + + + beta12orEarlier + Unique identifier of a monosaccharide from the MonosaccharideDB database. + + + + MonosaccharideDB ID + + + + + + + + + beta12orEarlier + beta13 + + + The name of a subdivision of the Collagen Mutation Database (CMD) database. + + Database name (CMD) + true + + + + + + + + + beta12orEarlier + beta13 + + + The name of a subdivision of the Osteogenesis database. + + Database name (Osteogenesis) + true + + + + + + + + + beta12orEarlier + true + An identifier of a particular genome. + + + + Genome identifier + + + + + + + + + beta12orEarlier + 1.26 + + + An identifier of a particular genome. + + + GenomeReviews ID + true + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the GlycoMapsDB (Glycosciences.de) database. + + + + GlycoMap ID + + + + + + + + + beta12orEarlier + A conformational energy map of the glycosidic linkages in a carbohydrate molecule. + + + Carbohydrate conformational map + + + + + + + + + + beta12orEarlier + The name of a transcription factor. + + + + Transcription factor name + + + + + + + + + + beta12orEarlier + Identifier of a membrane transport proteins from the transport classification database (TCDB). + + + + TCID + + + + + + + + + beta12orEarlier + PF[0-9]{5} + Name of a domain from the Pfam database. + + + + Pfam domain name + + + + + + + + + + beta12orEarlier + CL[0-9]{4} + Accession number of a Pfam clan. + + + + Pfam clan ID + + + + + + + + + + beta12orEarlier + Identifier for a gene from the VectorBase database. + VectorBase ID + + + + Gene ID (VectorBase) + + + + + + + + + beta12orEarlier + Identifier of an entry from the UTRSite database of regulatory motifs in eukaryotic UTRs. + + + + UTRSite ID + + + + + + + + + + + + + + + beta12orEarlier + An informative report about a specific or conserved pattern in a molecular sequence, such as its context in genes or proteins, its role, origin or method of construction, etc. + Sequence motif report + Sequence profile report + + + Sequence signature report + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on a particular locus. + + Locus annotation + true + + + + + + + + + beta12orEarlier + Official name of a protein as used in the UniProt database. + + + + Protein name (UniProt) + + + + + + + + + beta12orEarlier + 1.5 + + + One or more terms from one or more controlled vocabularies which are annotations on an entity. + + The concepts are typically provided as a persistent identifier or some other link the source ontologies. Evidence of the validity of the annotation might be included. + Term ID list + true + + + + + + + + + + beta12orEarlier + Name of a protein family from the HAMAP database. + + + + HAMAP ID + + + + + + + + + beta12orEarlier + 1.12 + + + Basic information concerning an identifier of data (typically including the identifier itself). For example, a gene symbol with information concerning its provenance. + + Identifier with metadata + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation about a gene symbol. + + Gene symbol annotation + true + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a RNA transcript. + + + + Transcript ID + + + + + + + + + + beta12orEarlier + Identifier of an RNA transcript from the H-InvDB database. + + + + HIT ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene cluster in the H-InvDB database. + + + + HIX ID + + + + + + + + + + beta12orEarlier + Identifier of a antibody from the HPA database. + + + + HPA antibody id + + + + + + + + + + beta12orEarlier + Identifier of a human major histocompatibility complex (HLA) or other protein from the IMGT/HLA database. + + + + IMGT/HLA ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene assigned by the J. Craig Venter Institute (JCVI). + + + + Gene ID (JCVI) + + + + + + + + + beta12orEarlier + The name of a kinase protein. + + + + Kinase name + + + + + + + + + + beta12orEarlier + Identifier of a physical entity from the ConsensusPathDB database. + + + + ConsensusPathDB entity ID + + + + + + + + + + beta12orEarlier + Name of a physical entity from the ConsensusPathDB database. + + + + ConsensusPathDB entity name + + + + + + + + + + beta12orEarlier + The number of a strain of algae and protozoa from the CCAP database. + + + + CCAP strain number + + + + + + + + + beta12orEarlier + true + An identifier of stock from a catalogue of biological resources. + + + + Stock number + + + + + + + + + + beta12orEarlier + A stock number from The Arabidopsis information resource (TAIR). + + + + Stock number (TAIR) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the RNA editing database (REDIdb). + + + + REDIdb ID + + + + + + + + + beta12orEarlier + Name of a domain from the SMART database. + + + + SMART domain name + + + + + + + + + + beta12orEarlier + Accession number of an entry (family) from the PANTHER database. + Panther family ID + + + + Protein family ID (PANTHER) + + + + + + + + + + beta12orEarlier + A unique identifier for a virus from the RNAVirusDB database. + + + + Could list (or reference) other taxa here from https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary. + RNAVirusDB ID + + + + + + + + + beta12orEarlier + true + An accession of annotation on a (group of) viruses (catalogued in a database). + Virus ID + + + + Virus identifier + + + + + + + + + + beta12orEarlier + An identifier of a genome project assigned by NCBI. + + + + NCBI Genome Project ID + + + + + + + + + + beta12orEarlier + A unique identifier of a whole genome assigned by the NCBI. + + + + NCBI genome accession + + + + + + + + + beta12orEarlier + 1.8 + + Data concerning, extracted from, or derived from the analysis of a sequence profile, such as its name, length, technical details about the profile or it's construction, the biological role or annotation, and so on. + + + Sequence profile data + true + + + + + + + + + + beta12orEarlier + Unique identifier for a membrane protein from the TopDB database. + TopDB ID + + + + Protein ID (TopDB) + + + + + + + + + beta12orEarlier + true + Identifier of a two-dimensional (protein) gel. + Gel identifier + + + + Gel ID + + + + + + + + + + beta12orEarlier + Name of a reference map gel from the SWISS-2DPAGE database. + + + + Reference map name (SWISS-2DPAGE) + + + + + + + + + + beta12orEarlier + Unique identifier for a peroxidase protein from the PeroxiBase database. + PeroxiBase ID + + + + Protein ID (PeroxiBase) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the SISYPHUS database of tertiary structure alignments. + + + + SISYPHUS ID + + + + + + + + + + + beta12orEarlier + true + Accession of an open reading frame (catalogued in a database). + + + + ORF ID + + + + + + + + + beta12orEarlier + true + An identifier of an open reading frame. + + + + ORF identifier + + + + + + + + + + beta12orEarlier + [1-9][0-9]* + Identifier of an entry from the GlycosciencesDB database. + LInear Notation for Unique description of Carbohydrate Sequences ID + + + + LINUCS ID + + + + + + + + + + + beta12orEarlier + Unique identifier for a ligand-gated ion channel protein from the LGICdb database. + LGICdb ID + + + + Protein ID (LGICdb) + + + + + + + + + + beta12orEarlier + Identifier of an EST sequence from the MaizeDB database. + + + + MaizeDB ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the MfunGD database. + + + + Gene ID (MfunGD) + + + + + + + + + + + + + + + + beta12orEarlier + An identifier of a disease from the Orpha database. + + + + Orpha number + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the EcID database. + + + + Protein ID (EcID) + + + + + + + + + + beta12orEarlier + A unique identifier of a cDNA molecule catalogued in the RefSeq database. + + + + Clone ID (RefSeq) + + + + + + + + + + beta12orEarlier + Unique identifier for a cone snail toxin protein from the ConoServer database. + + + + Protein ID (ConoServer) + + + + + + + + + + beta12orEarlier + Identifier of a GeneSNP database entry. + + + + GeneSNP ID + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a lipid. + + + + Lipid identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + A flat-file (textual) data archive. + + + Databank + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A web site providing data (web pages) on a common theme to a HTTP client. + + + Web portal + true + + + + + + + + + + beta12orEarlier + Identifier for a gene from the VBASE2 database. + VBASE2 ID + + + + Gene ID (VBASE2) + + + + + + + + + + beta12orEarlier + A unique identifier for a virus from the DPVweb database. + DPVweb virus ID + + + + DPVweb ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a pathway from the BioSystems pathway database. + + + + Pathway ID (BioSystems) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data concerning a proteomics experiment. + + Experimental data (proteomics) + true + + + + + + + + + beta12orEarlier + An abstract of a scientific article. + + + Abstract + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a lipid structure. + + + Lipid structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the (3D) structure of a drug. + + + Drug structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the (3D) structure of a toxin. + + + Toxin structure + + + + + + + + + + beta12orEarlier + A simple matrix of numbers, where each value (or column of values) is derived derived from analysis of the corresponding position in a sequence alignment. + PSSM + + + Position-specific scoring matrix + + + + + + + + + beta12orEarlier + A matrix of distances between molecular entities, where a value (distance) is (typically) derived from comparison of two entities and reflects their similarity. + + + Distance matrix + + + + + + + + + beta12orEarlier + Distances (values representing similarity) between a group of molecular structures. + + + Structural distance matrix + + + + + + + + + beta12orEarlier + 1.5 + + + Bibliographic data concerning scientific article(s). + + Article metadata + true + + + + + + + + + beta12orEarlier + A concept from a biological ontology. + + + This includes any fields from the concept definition such as concept name, definition, comments and so on. + Ontology concept + + + + + + + + + beta12orEarlier + A numerical measure of differences in the frequency of occurrence of synonymous codons in DNA sequences. + + + Codon usage bias + + + + + + + + + beta12orEarlier + 1.8 + + Northern Blot experiments. + + + Northern blot report + true + + + + + + + + + beta12orEarlier + A map showing distance between genetic markers estimated by radiation-induced breaks in a chromosome. + RH map + + + The radiation method can break very closely linked markers providing a more detailed map. Most genetic markers and subsequences may be located to a defined map position and with a more precise estimates of distance than a linkage map. + Radiation hybrid map + + + + + + + + + beta12orEarlier + A simple list of data identifiers (such as database accessions), possibly with additional basic information on the addressed data. + + + ID list + + + + + + + + + beta12orEarlier + Gene frequencies data that may be read during phylogenetic tree calculation. + + + Phylogenetic gene frequencies data + + + + + + + + + beta12orEarlier + beta13 + + + A set of sub-sequences displaying some type of polymorphism, typically indicating the sequence in which they occur, their position and other metadata. + + Sequence set (polymorphic) + true + + + + + + + + + beta12orEarlier + 1.5 + + + An entry (resource) from the DRCAT bioinformatics resource catalogue. + + DRCAT resource + true + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a multi-protein complex; two or more polypeptides chains in a stable, functional association with one another. + + + Protein complex + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a protein (3D) structural motif; any group of contiguous or non-contiguous amino acid residues but typically those forming a feature with a structural or functional role. + + + Protein structural motif + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific lipid 3D structure(s). + + + Lipid report + + + + + + + + + beta12orEarlier + 1.4 + + + Image of one or more molecular secondary structures. + + Secondary structure image + true + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on general information, properties or features of one or more molecular secondary structures. + + Secondary structure report + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + DNA sequence-specific feature annotation (not in a feature table). + + DNA features + true + + + + + + + + + beta12orEarlier + 1.5 + + + Features concerning RNA or regions of DNA that encode an RNA molecule. + + RNA features report + true + + + + + + + + + beta12orEarlier + Biological data that has been plotted as a graph of some type, or plotting instructions for rendering such a graph. + Graph data + + + Plot + + + + + + + + + + beta12orEarlier + A protein sequence and associated metadata. + Sequence record (protein) + + + Protein sequence record + + + + + + + + + + beta12orEarlier + A nucleic acid sequence and associated metadata. + Nucleotide sequence record + Sequence record (nucleic acid) + DNA sequence record + RNA sequence record + + + Nucleic acid sequence record + + + + + + + + + beta12orEarlier + 1.8 + + A protein sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database. + + + Protein sequence record (full) + true + + + + + + + + + beta12orEarlier + 1.8 + + A nucleic acid sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database. + + + Nucleic acid sequence record (full) + true + + + + + + + + + beta12orEarlier + true + Accession of a mathematical model, typically an entry from a database. + + + + Biological model accession + + + + + + + + + + beta12orEarlier + The name of a type or group of cells. + + + + Cell type name + + + + + + + + + beta12orEarlier + true + Accession of a type or group of cells (catalogued in a database). + Cell type ID + + + + Cell type accession + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of chemicals. + Chemical compound accession + Small molecule accession + + + + Compound accession + + + + + + + + + beta12orEarlier + true + Accession of a drug. + + + + Drug accession + + + + + + + + + + beta12orEarlier + Name of a toxin. + + + + Toxin name + + + + + + + + + beta12orEarlier + true + Accession of a toxin (catalogued in a database). + + + + Toxin accession + + + + + + + + + beta12orEarlier + true + Accession of a monosaccharide (catalogued in a database). + + + + Monosaccharide accession + + + + + + + + + + beta12orEarlier + Common name of a drug. + + + + Drug name + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of carbohydrates. + + + + Carbohydrate accession + + + + + + + + + beta12orEarlier + true + Accession of a specific molecule (catalogued in a database). + + + + Molecule accession + + + + + + + + + beta12orEarlier + true + Accession of a data definition (catalogued in a database). + + + + Data resource definition accession + + + + + + + + + beta12orEarlier + true + An accession of a particular genome (in a database). + + + + Genome accession + + + + + + + + + beta12orEarlier + true + An accession of a map of a molecular sequence (deposited in a database). + + + + Map accession + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of lipids. + + + + Lipid accession + + + + + + + + + + beta12orEarlier + true + Accession of a peptide deposited in a database. + + + + Peptide ID + + + + + + + + + + beta12orEarlier + true + Accession of a protein deposited in a database. + Protein accessions + + + + Protein accession + + + + + + + + + beta12orEarlier + true + An accession of annotation on a (group of) organisms (catalogued in a database). + + + + Organism accession + + + + + + + + + + beta12orEarlier + Moby:BriefOccurrenceRecord + Moby:FirstEpithet + Moby:InfraspecificEpithet + Moby:OccurrenceRecord + Moby:Organism_Name + Moby:OrganismsLongName + Moby:OrganismsShortName + The name of an organism (or group of organisms). + + + + Organism name + + + + + + + + + beta12orEarlier + true + Accession of a protein family (that is deposited in a database). + + + + Protein family accession + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of transcription factors or binding sites. + + + + Transcription factor accession + + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a strain of an organism variant, typically a plant, virus or bacterium. + + + + Strain accession + + + + + + + + + beta12orEarlier + true + 1.26 + + An accession of annotation on a (group of) viruses (catalogued in a database). + + + Virus identifier + true + + + + + + + + + beta12orEarlier + Metadata on sequence features. + + + Sequence features metadata + + + + + + + + + + beta12orEarlier + Identifier of a Gramene database entry. + + + + Gramene identifier + + + + + + + + + beta12orEarlier + An identifier of an entry from the DDBJ sequence database. + DDBJ ID + DDBJ accession number + DDBJ identifier + + + + DDBJ accession + + + + + + + + + beta12orEarlier + An identifier of an entity from the ConsensusPathDB database. + + + + ConsensusPathDB identifier + + + + + + + + + beta12orEarlier + 1.8 + + + Data concerning, extracted from, or derived from the analysis of molecular sequence(s). + + This is a broad data type and is used a placeholder for other, more specific types. + Sequence data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning codon usage. + + This is a broad data type and is used a placeholder for other, more specific types. + Codon usage + true + + + + + + + + + beta12orEarlier + 1.5 + + + + Data derived from the analysis of a scientific text such as a full text article from a scientific journal. + + Article report + true + + + + + + + + + beta12orEarlier + An informative report of information about molecular sequence(s), including basic information (metadata), and reports generated from molecular sequence analysis, including positional features and non-positional properties. + Sequence-derived report + + + Sequence report + + + + + + + + + beta12orEarlier + Data concerning the properties or features of one or more protein secondary structures. + + + Protein secondary structure + + + + + + + + + + beta12orEarlier + A Hopp and Woods plot of predicted antigenicity of a peptide or protein. + + + Hopp and Woods plot + + + + + + + + + beta12orEarlier + 1.21 + + + A melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA). + + + Nucleic acid melting curve + true + + + + + + + + + beta12orEarlier + 1.21 + + A probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). + + + Nucleic acid probability profile + true + + + + + + + + + beta12orEarlier + 1.21 + + A temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). + + + Nucleic acid temperature profile + true + + + + + + + + + beta12orEarlier + 1.8 + + A report typically including a map (diagram) of a gene regulatory network. + + + Gene regulatory network report + true + + + + + + + + + beta12orEarlier + 1.8 + + An informative report on a two-dimensional (2D PAGE) gel. + + + 2D PAGE gel report + true + + + + + + + + + beta12orEarlier + 1.14 + + General annotation on a set of oligonucleotide probes, such as the gene name with which the probe set is associated and which probes belong to the set. + + + Oligonucleotide probe sets annotation + true + + + + + + + + + beta12orEarlier + 1.5 + + + An image from a microarray experiment which (typically) allows a visualisation of probe hybridisation and gene-expression data. + + Microarray image + true + + + + + + + + + beta12orEarlier + Data (typically biological or biomedical) that has been rendered into an image, typically for display on screen. + Image data + + + Image + http://semanticscience.org/resource/SIO_000079 + http://semanticscience.org/resource/SIO_000081 + + + + + + + + + + beta12orEarlier + Image of a molecular sequence, possibly with sequence features or properties shown. + + + Sequence image + + + + + + + + + beta12orEarlier + A report on protein properties concerning hydropathy. + Protein hydropathy report + + + Protein hydropathy data + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning a computational workflow. + + Workflow data + true + + + + + + + + + beta12orEarlier + 1.5 + + + A computational workflow. + + Workflow + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning molecular secondary structure data. + + Secondary structure data + true + + + + + + + + + beta12orEarlier + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw protein sequence (string of characters). + + + Protein sequence (raw) + true + + + + + + + + + beta12orEarlier + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw nucleic acid sequence. + + + Nucleic acid sequence (raw) + true + + + + + + + + + beta12orEarlier + + One or more protein sequences, possibly with associated annotation. + Amino acid sequence + Amino acid sequences + Protein sequences + + + Protein sequence + http://purl.org/biotop/biotop.owl#AminoAcidSequenceInformation + + + + + + + + + beta12orEarlier + One or more nucleic acid sequences, possibly with associated annotation. + Nucleic acid sequences + Nucleotide sequence + Nucleotide sequences + DNA sequence + + + Nucleic acid sequence + http://purl.org/biotop/biotop.owl#NucleotideSequenceInformation + + + + + + + + + beta12orEarlier + Data concerning a biochemical reaction, typically data and more general annotation on the kinetics of enzyme-catalysed reaction. + Enzyme kinetics annotation + Reaction annotation + + + This is a broad data type and is used a placeholder for other, more specific types. + Reaction data + + + + + + + + + beta12orEarlier + Data concerning small peptides. + Peptide data + + + Peptide property + + + + + + + + + beta12orEarlier + Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19. + 1.5 + + + An informative report concerning the classification of protein sequences or structures. + + This is a broad data type and is used a placeholder for other, more specific types. + Protein classification + true + + + + + + + + + beta12orEarlier + 1.8 + + Data concerning specific or conserved pattern in molecular sequences. + + + This is a broad data type and is used a placeholder for other, more specific types. + Sequence motif data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning models representing a (typically multiple) sequence alignment. + + This is a broad data type and is used a placeholder for other, more specific types. + Sequence profile data + true + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning a specific biological pathway or network. + + Pathway or network data + true + + + + + + + + + + + + + + + beta12orEarlier + An informative report concerning or derived from the analysis of a biological pathway or network, such as a map (diagram) or annotation. + + + Pathway or network report + + + + + + + + + beta12orEarlier + A thermodynamic or kinetic property of a nucleic acid molecule. + Nucleic acid property (thermodynamic or kinetic) + Nucleic acid thermodynamic property + + + Nucleic acid thermodynamic data + + + + + + + + + beta12orEarlier + Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19. + 1.5 + + + Data concerning the classification of nucleic acid sequences or structures. + + This is a broad data type and is used a placeholder for other, more specific types. + Nucleic acid classification + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on a classification of molecular sequences, structures or other entities. + + This can include an entire classification, components such as classifiers, assignments of entities to a classification and so on. + Classification report + true + + + + + + + + + beta12orEarlier + 1.8 + + key residues involved in protein folding. + + + Protein features report (key folding sites) + true + + + + + + + + + beta12orEarlier + Geometry data for a protein structure, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc. + Torsion angle data + + + Protein geometry data + + + + + + + + + + beta12orEarlier + An image of protein structure. + Structure image (protein) + + + Protein structure image + + + + + + + + + beta12orEarlier + Weights for sequence positions or characters in phylogenetic analysis where zero is defined as unweighted. + + + Phylogenetic character weights + + + + + + + + + beta12orEarlier + Annotation of one particular positional feature on a biomolecular (typically genome) sequence, suitable for import and display in a genome browser. + Genome annotation track + Genome track + Genome-browser track + Genomic track + Sequence annotation track + + + Annotation track + + + + + + + + + + beta12orEarlier + + P43353|Q7M1G0|Q9C199|A5A6J6 + [OPQ][0-9][A-Z0-9]{3}[0-9]|[A-NR-Z][0-9]([A-Z][A-Z0-9]{2}[0-9]){1,2} + Accession number of a UniProt (protein sequence) database entry. + UniProt accession number + UniProt entry accession + UniProtKB accession + UniProtKB accession number + Swiss-Prot entry accession + TrEMBL entry accession + + + + UniProt accession + + + + + + + + + + beta12orEarlier + 16 + [1-9][0-9]? + Identifier of a genetic code in the NCBI list of genetic codes. + + + + NCBI genetic code ID + + + + + + + + + + + + + + + beta12orEarlier + Identifier of a concept in an ontology of biological or bioinformatics concepts and relations. + + + + Ontology concept identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept for a biological process from the GO ontology. + + GO concept name (biological process) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept for a molecular function from the GO ontology. + + GO concept name (molecular function) + true + + + + + + + + + + + + + + + beta12orEarlier + Data concerning the classification, identification and naming of organisms. + Taxonomic data + + + This is a broad data type and is used a placeholder for other, more specific types. + Taxonomy + + + + + + + + + + beta13 + EMBL/GENBANK/DDBJ coding feature protein identifier, issued by International collaborators. + + + + This qualifier consists of a stable ID portion (3+5 format with 3 position letters and 5 numbers) plus a version number after the decimal point. When the protein sequence encoded by the CDS changes, only the version number of the /protein_id value is incremented; the stable part of the /protein_id remains unchanged and as a result will permanently be associated with a given protein; this qualifier is valid only on CDS features which translate into a valid protein. + Protein ID (EMBL/GenBank/DDBJ) + + + + + + + + + beta13 + 1.5 + + A type of data that (typically) corresponds to entries from the primary biological databases and which is (typically) the primary input or output of a tool, i.e. the data the tool processes or generates, as distinct from metadata and identifiers which describe and identify such core data, parameters that control the behaviour of tools, reports of derivative data generated by tools and annotation. + + + Core data entities typically have a format and may be identified by an accession number. + Core data + true + + + + + + + + + + + + + + + beta13 + true + Name or other identifier of molecular sequence feature(s). + + + + Sequence feature identifier + + + + + + + + + + + + + + + beta13 + true + An identifier of a molecular tertiary structure, typically an entry from a structure database. + + + + Structure identifier + + + + + + + + + + + + + + + beta13 + true + An identifier of an array of numerical values, such as a comparison matrix. + + + + Matrix identifier + + + + + + + + + beta13 + 1.8 + + A report (typically a table) on character or word composition / frequency of protein sequence(s). + + + Protein sequence composition + true + + + + + + + + + beta13 + 1.8 + + A report (typically a table) on character or word composition / frequency of nucleic acid sequence(s). + + + Nucleic acid sequence composition (report) + true + + + + + + + + + beta13 + 1.5 + + + A node from a classification of protein structural domain(s). + + Protein domain classification node + true + + + + + + + + + beta13 + Duplicates http://edamontology.org/data_1002, hence deprecated. + 1.23 + + Unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service. + + + CAS number + true + + + + + + + + + + beta13 + Unique identifier of a drug conforming to the Anatomical Therapeutic Chemical (ATC) Classification System, a drug classification system controlled by the WHO Collaborating Centre for Drug Statistics Methodology (WHOCC). + + + + ATC code + + + + + + + + + beta13 + A unique, unambiguous, alphanumeric identifier of a chemical substance as catalogued by the Substance Registration System of the Food and Drug Administration (FDA). + Unique Ingredient Identifier + + + + UNII + + + + + + + + + beta13 + 1.5 + + + Basic information concerning geographical location or time. + + Geotemporal metadata + true + + + + + + + + + beta13 + Metadata concerning the software, hardware or other aspects of a computer system. + + + System metadata + + + + + + + + + beta13 + 1.15 + + A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user. + + + Sequence feature name + true + + + + + + + + + beta13 + Raw data such as measurements or other results from laboratory experiments, as generated from laboratory hardware. + Experimental measurement data + Experimentally measured data + Measured data + Measurement + Measurement data + Measurement metadata + Raw experimental data + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Experimental measurement + + + + + + + + + + beta13 + Raw data (typically MIAME-compliant) for hybridisations from a microarray experiment. + + + Such data as found in Affymetrix CEL or GPR files. + Raw microarray data + + + + + + + + + + + + + + + beta13 + Data generated from processing and analysis of probe set data from a microarray experiment. + Gene annotation (expression) + Gene expression report + Microarray probe set data + + + Such data as found in Affymetrix .CHP files or data from other software such as RMA or dChip. + Processed microarray data + + + + + + + + + + beta13 + The final processed (normalised) data for a set of hybridisations in a microarray experiment. + Gene expression data matrix + Normalised microarray data + + + This combines data from all hybridisations. + Gene expression matrix + + + + + + + + + beta13 + Annotation on a biological sample, for example experimental factors and their values. + + + This might include compound and dose in a dose response experiment. + Sample annotation + + + + + + + + + beta13 + Annotation on the array itself used in a microarray experiment. + + + This might include gene identifiers, genomic coordinates, probe oligonucleotide sequences etc. + Microarray metadata + + + + + + + + + beta13 + 1.8 + + Annotation on laboratory and/or data processing protocols used in an microarray experiment. + + + This might describe e.g. the normalisation methods used to process the raw data. + Microarray protocol annotation + true + + + + + + + + + beta13 + Data concerning the hybridisations measured during a microarray experiment. + + + Microarray hybridisation data + + + + + + + + + beta13 + 1.5 + + + A report of regions in a molecular sequence that are biased to certain characters. + + Sequence features (compositionally-biased regions) + true + + + + + + + + + beta13 + 1.5 + + A report on features in a nucleic acid sequence that indicate changes to or differences between sequences. + + + Nucleic acid features (difference and change) + true + + + + + + + + + + beta13 + A human-readable collection of information about regions within a nucleic acid sequence which form secondary or tertiary (3D) structures. + Nucleic acid features (structure) + Quadruplexes (report) + Stem loop (report) + d-loop (report) + + + The report may be based on analysis of nucleic acid sequence or structural data, or any annotation or information about specific nucleic acid 3D structure(s) or such structures in general. + Nucleic acid structure report + + + + + + + + + beta13 + 1.8 + + short repetitive subsequences (repeat sequences) in a protein sequence. + + + Protein features report (repeats) + true + + + + + + + + + beta13 + 1.8 + + Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more protein sequences. + + + Sequence motif matches (protein) + true + + + + + + + + + beta13 + 1.8 + + Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more nucleic acid sequences. + + + Sequence motif matches (nucleic acid) + true + + + + + + + + + beta13 + 1.5 + + + A report on displacement loops in a mitochondrial DNA sequence. + + A displacement loop is a region of mitochondrial DNA in which one of the strands is displaced by an RNA molecule. + Nucleic acid features (d-loop) + true + + + + + + + + + beta13 + 1.5 + + + A report on stem loops in a DNA sequence. + + A stem loop is a hairpin structure; a double-helical structure formed when two complementary regions of a single strand of RNA or DNA molecule form base-pairs. + Nucleic acid features (stem loop) + true + + + + + + + + + beta13 + An informative report on features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules. This includes reports on a specific gene transcript, clone or EST. + Clone or EST (report) + Gene transcript annotation + Nucleic acid features (mRNA features) + Transcript (report) + mRNA (report) + mRNA features + + + This includes 5'untranslated region (5'UTR), coding sequences (CDS), exons, intervening sequences (intron) and 3'untranslated regions (3'UTR). + Gene transcript report + + + + + + + + + beta13 + 1.8 + + features of non-coding or functional RNA molecules, including tRNA and rRNA. + + + Non-coding RNA + true + + + + + + + + + beta13 + 1.5 + + + Features concerning transcription of DNA into RNA including the regulation of transcription. + + This includes promoters, CAAT signals, TATA signals, -35 signals, -10 signals, GC signals, primer binding sites for initiation of transcription or reverse transcription, enhancer, attenuator, terminators and ribosome binding sites. + Transcriptional features (report) + true + + + + + + + + + beta13 + 1.5 + + + A report on predicted or actual immunoglobulin gene structure including constant, switch and variable regions and diversity, joining and variable segments. + + Nucleic acid features (immunoglobulin gene structure) + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'class' node from the SCOP database. + + SCOP class + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'fold' node from the SCOP database. + + SCOP fold + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'superfamily' node from the SCOP database. + + SCOP superfamily + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'family' node from the SCOP database. + + SCOP family + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'protein' node from the SCOP database. + + SCOP protein + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'species' node from the SCOP database. + + SCOP species + true + + + + + + + + + beta13 + 1.8 + + mass spectrometry experiments. + + + Mass spectrometry experiment + true + + + + + + + + + beta13 + Nucleic acid classification + A human-readable collection of information about a particular family of genes, typically a set of genes with similar sequence that originate from duplication of a common ancestor gene, or any other classification of nucleic acid sequences or structures that reflects gene structure. + Gene annotation (homology information) + Gene annotation (homology) + Gene family annotation + Gene homology (report) + Homology information + + + This includes reports on on gene homologues between species. + Gene family report + + + + + + + + + beta13 + An image of a protein. + + + Protein image + + + + + + + + + beta13 + 1.24 + + + + + An alignment of protein sequences and/or structures. + + Protein alignment + true + + + + + + + + + 1.0 + 1.8 + + sequencing experiment, including samples, sampling, preparation, sequencing, and analysis. + + + NGS experiment + true + + + + + + + + + 1.1 + An informative report about a DNA sequence assembly. + Assembly report + + + This might include an overall quality assessment of the assembly and summary statistics including counts, average length and number of bases for reads, matches and non-matches, contigs, reads in pairs etc. + Sequence assembly report + + + + + + + + + 1.1 + An index of a genome sequence. + + + Many sequence alignment tasks involving many or very large sequences rely on a precomputed index of the sequence to accelerate the alignment. + Genome index + + + + + + + + + 1.1 + 1.8 + + Report concerning genome-wide association study experiments. + + + GWAS report + true + + + + + + + + + 1.2 + The position of a cytogenetic band in a genome. + + + Information might include start and end position in a chromosome sequence, chromosome identifier, name of band and so on. + Cytoband position + + + + + + + + + + + 1.2 + CL_[0-9]{7} + Cell type ontology concept ID. + CL ID + + + + Cell type ontology ID + + + + + + + + + 1.2 + Mathematical model of a network, that contains biochemical kinetics. + + + Kinetic model + + + + + + + + + + 1.3 + Identifier of a COSMIC database entry. + COSMIC identifier + + + + COSMIC ID + + + + + + + + + + 1.3 + Identifier of a HGMD database entry. + HGMD identifier + + + + HGMD ID + + + + + + + + + 1.3 + true + Unique identifier of sequence assembly. + Sequence assembly version + + + + Sequence assembly ID + + + + + + + + + 1.3 + 1.5 + + + A label (text token) describing a type of sequence feature such as gene, transcript, cds, exon, repeat, simple, misc, variation, somatic variation, structural variation, somatic structural variation, constrained or regulatory. + + Sequence feature type + true + + + + + + + + + 1.3 + 1.5 + + + An informative report on gene homologues between species. + + Gene homology (report) + true + + + + + + + + + + + 1.3 + ENSGT00390000003602 + Unique identifier for a gene tree from the Ensembl database. + Ensembl ID (gene tree) + + + + Ensembl gene tree ID + + + + + + + + + 1.3 + A phylogenetic tree that is an estimate of the character's phylogeny. + + + Gene tree + + + + + + + + + 1.3 + A phylogenetic tree that reflects phylogeny of the taxa from which the characters (used in calculating the tree) were sampled. + + + Species tree + + + + + + + + + + + + + + + 1.3 + true + Name or other identifier of an entry from a biosample database. + Sample accession + + + + Sample ID + + + + + + + + + + 1.3 + Identifier of an object from the MGI database. + + + + MGI accession + + + + + + + + + 1.3 + Name of a phenotype. + Phenotype + Phenotypes + + + + Phenotype name + + + + + + + + + 1.4 + A HMM transition matrix contains the probabilities of switching from one HMM state to another. + HMM transition matrix + + + Consider for example an HMM with two states (AT-rich and GC-rich). The transition matrix will hold the probabilities of switching from the AT-rich to the GC-rich state, and vica versa. + Transition matrix + + + + + + + + + 1.4 + A HMM emission matrix holds the probabilities of choosing the four nucleotides (A, C, G and T) in each of the states of a HMM. + HMM emission matrix + + + Consider for example an HMM with two states (AT-rich and GC-rich). The emission matrix holds the probabilities of choosing each of the four nucleotides (A, C, G and T) in the AT-rich state and in the GC-rich state. + Emission matrix + + + + + + + + + 1.4 + 1.15 + + A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states. + + + Hidden Markov model + true + + + + + + + + + 1.4 + true + An identifier of a data format. + + + Format identifier + + + + + + + + + 1.5 + Raw biological or biomedical image generated by some experimental technique. + + + Raw image + http://semanticscience.org/resource/SIO_000081 + + + + + + + + + 1.5 + Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all carbohydrates. + Carbohydrate data + + + Carbohydrate property + + + + + + + + + 1.5 + 1.8 + + Report concerning proteomics experiments. + + + Proteomics experiment report + true + + + + + + + + + 1.5 + 1.8 + + RNAi experiments. + + + RNAi report + true + + + + + + + + + 1.5 + 1.8 + + biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction. + + + Simulation experiment report + true + + + + + + + + + + + + + + + 1.7 + An imaging technique that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body. + MRT image + Magnetic resonance imaging image + Magnetic resonance tomography image + NMRI image + Nuclear magnetic resonance imaging image + + + MRI image + + + + + + + + + + + + + + + 1.7 + An image from a cell migration track assay. + + + Cell migration track image + + + + + + + + + 1.7 + Rate of association of a protein with another protein or some other molecule. + kon + + + Rate of association + + + + + + + + + 1.7 + Multiple gene identifiers in a specific order. + + + Such data are often used for genome rearrangement tools and phylogenetic tree labeling. + Gene order + + + + + + + + + 1.7 + The spectrum of frequencies of electromagnetic radiation emitted from a molecule as a result of some spectroscopy experiment. + Spectra + + + Spectrum + + + + + + + + + + + + + + + 1.7 + Spectral information for a molecule from a nuclear magnetic resonance experiment. + NMR spectra + + + NMR spectrum + + + + + + + + + 1.8 + 1.21 + + A sketch of a small molecule made with some specialised drawing package. + + + Chemical structure sketches are used for presentational purposes but also as inputs to various analysis software. + Chemical structure sketch + true + + + + + + + + + 1.8 + An informative report about a specific or conserved nucleic acid sequence pattern. + + + Nucleic acid signature + + + + + + + + + 1.8 + A DNA sequence. + DNA sequences + + + DNA sequence + + + + + + + + + 1.8 + An RNA sequence. + RNA sequences + + + RNA sequence + + + + + + + + + 1.8 + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw RNA sequence. + + + RNA sequence (raw) + true + + + + + + + + + 1.8 + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw DNA sequence. + + + DNA sequence (raw) + true + + + + + + + + + + + + + + + 1.8 + Data on gene sequence variations resulting large-scale genotyping and DNA sequencing projects. + Gene sequence variations + + + Variations are stored along with a reference genome. + Sequence variations + + + + + + + + + 1.8 + A list of publications such as scientic papers or books. + + + Bibliography + + + + + + + + + 1.8 + A mapping of supplied textual terms or phrases to ontology concepts (URIs). + + + Ontology mapping + + + + + + + + + 1.9 + Any data concerning a specific biological or biomedical image. + Image-associated data + Image-related data + + + This can include basic provenance and technical information about the image, scientific annotation and so on. + Image metadata + + + + + + + + + 1.9 + A human-readable collection of information concerning a clinical trial. + Clinical trial information + + + Clinical trial report + + + + + + + + + 1.10 + A report about a biosample. + Biosample report + + + Reference sample report + + + + + + + + + 1.10 + Accession number of an entry from the Gene Expression Atlas. + + + + Gene Expression Atlas Experiment ID + + + + + + + + + + + + + + + 1.12 + true + Identifier of an entry from a database of disease. + + + + Disease identifier + + + + + + + + + + 1.12 + The name of some disease. + + + + Disease name + + + + + + + + + 1.12 + Some material that is used for educational (training) purposes. + OER + Open educational resource + + + Training material + + + + + + + + + 1.12 + A training course available for use on the Web. + On-line course + MOOC + Massive open online course + + + Online course + + + + + + + + + 1.12 + Any free or plain text, typically for human consumption and in English. Can instantiate also as a textual search query. + Free text + Plain text + Textual search query + + + Text + + + + + + + + + + 1.14 + Machine-readable biodiversity data. + Biodiversity information + OTU table + + + Biodiversity data + + + + + + + + + 1.14 + A human-readable collection of information concerning biosafety data. + Biosafety information + + + Biosafety report + + + + + + + + + 1.14 + A report about any kind of isolation of biological material. + Geographic location + Isolation source + + + Isolation report + + + + + + + + + 1.14 + Information about the ability of an organism to cause disease in a corresponding host. + Pathogenicity + + + Pathogenicity report + + + + + + + + + 1.14 + Information about the biosafety classification of an organism according to corresponding law. + Biosafety level + + + Biosafety classification + + + + + + + + + 1.14 + A report about localisation of the isolaton of biological material e.g. country or coordinates. + + + Geographic location + + + + + + + + + 1.14 + A report about any kind of isolation source of biological material e.g. blood, water, soil. + + + Isolation source + + + + + + + + + 1.14 + Experimentally determined parameter of the physiology of an organism, e.g. substrate spectrum. + + + Physiology parameter + + + + + + + + + 1.14 + Experimentally determined parameter of the morphology of an organism, e.g. size & shape. + + + Morphology parameter + + + + + + + + + 1.14 + Experimental determined parameter for the cultivation of an organism. + Cultivation conditions + Carbon source + Culture media composition + Nitrogen source + Salinity + Temperature + pH value + + + Cultivation parameter + + + + + + + + + 1.15 + Data concerning a sequencing experiment, that may be specified as an input to some tool. + + + Sequencing metadata name + + + + + + + + + 1.15 + An identifier of a flow cell of a sequencing machine. + + + A flow cell is used to immobilise, amplify and sequence millions of molecules at once. In Illumina machines, a flowcell is composed of 8 "lanes" which allows 8 experiments in a single analysis. + Flow cell identifier + + + + + + + + + 1.15 + An identifier of a lane within a flow cell of a sequencing machine, within which millions of sequences are immobilised, amplified and sequenced. + + + Lane identifier + + + + + + + + + 1.15 + A number corresponding to the number of an analysis performed by a sequencing machine. For example, if it's the 13th analysis, the run is 13. + + + Run number + + + + + + + + + 1.15 + Data concerning ecology; for example measurements and reports from the study of interactions among organisms and their environment. + + + This is a broad data type and is used a placeholder for other, more specific types. + Ecological data + + + + + + + + + 1.15 + The mean species diversity in sites or habitats at a local scale. + α-diversity + + + Alpha diversity data + + + + + + + + + 1.15 + The ratio between regional and local species diversity. + True beta diversity + β-diversity + + + Beta diversity data + + + + + + + + + 1.15 + The total species diversity in a landscape. + ɣ-diversity + + + Gamma diversity data + + + + + + + + + + 1.15 + A plot in which community data (e.g. species abundance data) is summarised. Similar species and samples are plotted close together, and dissimilar species and samples are plotted placed far apart. + + + Ordination plot + + + + + + + + + 1.16 + A ranked list of categories (usually ontology concepts), each associated with a statistical metric of over-/under-representation within the studied data. + Enrichment report + Over-representation report + Functional enrichment report + + + Over-representation data + + + + + + + + + + + + + + + 1.16 + GO-term report + A ranked list of Gene Ontology concepts, each associated with a p-value, concerning or derived from the analysis of e.g. a set of genes or proteins. + GO-term enrichment report + Gene ontology concept over-representation report + Gene ontology enrichment report + Gene ontology term enrichment report + + + GO-term enrichment data + + + + + + + + + 1.16 + Score for localization of one or more post-translational modifications in peptide sequence measured by mass spectrometry. + False localisation rate + PTM localisation + PTM score + + + Localisation score + + + + + + + + + + 1.16 + Identifier of a protein modification catalogued in the Unimod database. + + + + Unimod ID + + + + + + + + + 1.16 + Identifier for mass spectrometry proteomics data in the proteomexchange.org repository. + + + + ProteomeXchange ID + + + + + + + + + 1.16 + Groupings of expression profiles according to a clustering algorithm. + Clustered gene expression profiles + + + Clustered expression profiles + + + + + + + + + + 1.16 + An identifier of a concept from the BRENDA ontology. + + + + BRENDA ontology concept ID + + + + + + + + + + 1.16 + A text (such as a scientific article), annotated with notes, data and metadata, such as recognised entities, concepts, and their relations. + + + Annotated text + + + + + + + + + 1.16 + A structured query, in form of a script, that defines a database search task. + + + Query script + + + + + + + + + + + + + + + 1.19 + Structural 3D model (volume map) from electron microscopy. + + + 3D EM Map + + + + + + + + + + + + + + + 1.19 + Annotation on a structural 3D EM Map from electron microscopy. This might include one or several locations in the map of the known features of a particular macromolecule. + + + 3D EM Mask + + + + + + + + + + + + + + + 1.19 + Raw DDD movie acquisition from electron microscopy. + + + EM Movie + + + + + + + + + + + + + + + 1.19 + Raw acquisition from electron microscopy or average of an aligned DDD movie. + + + EM Micrograph + + + + + + + + + + + + + + + 1.21 + Data coming from molecular simulations, computer "experiments" on model molecules. + + + Typically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic). + Molecular simulation data + + + + + + + + + + 1.21 + Identifier of an entry from the RNA central database of annotated human miRNAs. + + + + There are canonical and taxon-specific forms of RNAcentral ID. Canonical form e.g. urs_9or10digits identifies an RNA sequence (within the RNA central database) which may appear in multiple sequences. Taxon-specific form identifies a sequence in the specific taxon (e.g. urs_9or10digits_taxonID). + RNA central ID + + + + + + + + + 1.21 + A human-readable systematic collection of patient (or population) health information in a digital format. + EHR + EMR + Electronic medical record + + + Electronic health record + + + + + + + + + 1.22 + Data coming from molecular simulations, computer "experiments" on model molecules. Typically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic). + + + Simulation + + + + + + + + + 1.22 + Dynamic information of a structure molecular system coming from a molecular simulation: XYZ 3D coordinates (sometimes with their associated velocities) for every atom along time. + + + Trajectory data + + + + + + + + + 1.22 + Force field parameters: charges, masses, radii, bond lengths, bond dihedrals, etc. define the structural molecular system, and are essential for the proper description and simulation of a molecular system. + + + Forcefield parameters + + + + + + + + + 1.22 + Static information of a structure molecular system that is needed for a molecular simulation: the list of atoms, their non-bonded parameters for Van der Waals and electrostatic interactions, and the complete connectivity in terms of bonds, angles and dihedrals. + + + Topology data + + + + + + + + + 1.22 + Visualization of distribution of quantitative data, e.g. expression data, by histograms, violin plots and density plots. + Density plot + + + Histogram + + + + + + + + + 1.23 + Report of the quality control review that was made of factors involved in a procedure. + QC metrics + QC report + Quality control metrics + Quality control report + + + + + + + + + 1.23 + A table of unnormalized values representing summarised read counts per genomic region (e.g. gene, transcript, peak). + Read count matrix + + + Count matrix + + + + + + + + + 1.24 + Alignment (superimposition) of DNA tertiary (3D) structures. + Structure alignment (DNA) + + + DNA structure alignment + + + + + + + + + 1.24 + A score derived from the P-value to ensure correction for multiple tests. The Q-value provides an estimate of the positive False Discovery Rate (pFDR), i.e. the rate of false positives among all the cases reported positive: pFDR = FP / (FP + TP). + Adjusted P-value + FDR + Padj + pFDR + + + Q-values are widely used in high-throughput data analysis (e.g. detection of differentially expressed genes from transcriptome data). + Q-value + + + + + + + + + + + 1.24 + A profile HMM is a variant of a Hidden Markov model that is derived specifically from a set of (aligned) biological sequences. Profile HMMs provide the basis for a position-specific scoring system, which can be used to align sequences and search databases for related sequences. + + + Profile HMM + + + + + + + + + + + + 1.24 + + WP[0-9]+ + Identifier of a pathway from the WikiPathways pathway database. + WikiPathways ID + WikiPathways pathway ID + + + + Pathway ID (WikiPathways) + + + + + + + + + + + + + + + 1.24 + A ranked list of pathways, each associated with z-score, p-value or similar, concerning or derived from the analysis of e.g. a set of genes or proteins. + Pathway analysis results + Pathway enrichment report + Pathway over-representation report + Pathway report + Pathway term enrichment report + + + Pathway overrepresentation data + + + + + + + + + 1.26 + + + \d{4}-\d{4}-\d{4}-\d{3}(\d|X) + Identifier of a researcher registered with the ORCID database. Used to identify author IDs. + + + + ORCID Identifier + + + + + + + + + + + beta12orEarlier + + + + Chemical structure specified in Simplified Molecular Input Line Entry System (SMILES) line notation. + + + SMILES + + + + + + + + + + + beta12orEarlier + Chemical structure specified in IUPAC International Chemical Identifier (InChI) line notation. + + + InChI + + + + + + + + + + beta12orEarlier + Chemical structure specified by Molecular Formula (MF), including a count of each element in a compound. + + + The general MF query format consists of a series of valid atomic symbols, with an optional number or range. + mf + + + + + + + + + + beta12orEarlier + The InChIKey (hashed InChI) is a fixed length (25 character) condensed digital representation of an InChI chemical structure specification. It uniquely identifies a chemical compound. + + + An InChIKey identifier is not human- nor machine-readable but is more suitable for web searches than an InChI chemical structure specification. + InChIKey + + + + + + + + + beta12orEarlier + SMILES ARbitrary Target Specification (SMARTS) format for chemical structure specification, which is a subset of the SMILES line notation. + + + smarts + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence with possible ambiguity, unknown positions and non-sequence characters. + + + Non-sequence characters may be used for example for gaps. + nucleotide + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Nucleotide_sequence + + + + + + + + + + beta12orEarlier + Alphabet for a protein sequence with possible ambiguity, unknown positions and non-sequence characters. + + + Non-sequence characters may be used for gaps and translation stop. + protein + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Amino_acid_sequence + + + + + + + + + + beta12orEarlier + Alphabet for the consensus of two or more molecular sequences. + + + consensus + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure nucleotide + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence (characters ACGTU only) with possible unknown positions but without ambiguity or non-sequence characters . + + + unambiguous pure nucleotide + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence with possible ambiguity, unknown positions and non-sequence characters. + + + dna + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#DNA_sequence + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence with possible ambiguity, unknown positions and non-sequence characters. + + + rna + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#RNA_sequence + + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence (characters ACGT only) with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure dna + + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure dna + + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence (characters ACGU only) with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure rna sequence + + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure rna + + + + + + + + + + beta12orEarlier + Alphabet for any protein sequence with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure protein + + + + + + + + + + beta12orEarlier + Alphabet for any protein sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure protein + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from UniGene. + + A UniGene entry includes a set of transcript sequences assigned to the same transcription locus (gene or expressed pseudogene), with information on protein similarities, gene expression, cDNA clone reagents, and genomic location. + UniGene entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the COG database of clusters of (related) protein sequences. + + COG sequence cluster format + true + + + + + + + + + + beta12orEarlier + Format for sequence positions (feature location) as used in DDBJ/EMBL/GenBank database. + Feature location + + + EMBL feature location + + + + + + + + + + beta12orEarlier + Report format for tandem repeats in a nucleotide sequence (format generated by the Sanger Centre quicktandem program). + + + quicktandem + + + + + + + + + + beta12orEarlier + Report format for inverted repeats in a nucleotide sequence (format generated by the Sanger Centre inverted program). + + + Sanger inverted repeats + + + + + + + + + + beta12orEarlier + Report format for tandem repeats in a sequence (an EMBOSS report format). + + + EMBOSS repeat + + + + + + + + + + beta12orEarlier + Format of a report on exon-intron structure generated by EMBOSS est2genome. + + + est2genome format + + + + + + + + + + beta12orEarlier + Report format for restriction enzyme recognition sites used by EMBOSS restrict program. + + + restrict format + + + + + + + + + + beta12orEarlier + Report format for restriction enzyme recognition sites used by EMBOSS restover program. + + + restover format + + + + + + + + + + beta12orEarlier + Report format for restriction enzyme recognition sites used by REBASE database. + + + REBASE restriction sites + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using FASTA. + + + This includes (typically) score data, alignment data and a histogram (of observed and expected distribution of E values.) + FASTA search results format + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using some variant of BLAST. + + + This includes score data, alignment data and summary table. + BLAST results + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using some variant of MSPCrunch. + + + mspcrunch + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using some variant of Smith Waterman. + + + Smith-Waterman format + + + + + + + + + + beta12orEarlier + Format of EMBASSY domain hits file (DHF) of hits (sequences) with domain classification information. + + + The hits are relatives to a SCOP or CATH family and are found from a search of a sequence database. + dhf + + + + + + + + + + beta12orEarlier + Format of EMBASSY ligand hits file (LHF) of database hits (sequences) with ligand classification information. + + + The hits are putative ligand-binding sequences and are found from a search of a sequence database. + lhf + + + + + + + + + + beta12orEarlier + Results format for searches of the InterPro database. + + + InterPro hits format + + + + + + + + + beta12orEarlier + Format of results of a search of the InterPro database showing matches of query protein sequence(s) to InterPro entries. + + + The report includes a classification of regions in a query protein sequence which are assigned to a known InterPro protein family or group. + InterPro protein view report format + + + + + + + + + beta12orEarlier + Format of results of a search of the InterPro database showing matches between protein sequence(s) and signatures for an InterPro entry. + + + The table presents matches between query proteins (rows) and signature methods (columns) for this entry. Alternatively the sequence(s) might be from from the InterPro entry itself. The match position in the protein sequence and match status (true positive, false positive etc) are indicated. + InterPro match table format + + + + + + + + + + beta12orEarlier + Dirichlet distribution HMMER format. + + + HMMER Dirichlet prior + + + + + + + + + + beta12orEarlier + Dirichlet distribution MEME format. + + + MEME Dirichlet prior + + + + + + + + + + beta12orEarlier + Format of a report from the HMMER package on the emission and transition counts of a hidden Markov model. + + + HMMER emission and transition + + + + + + + + + + beta12orEarlier + Format of a regular expression pattern from the Prosite database. + + + prosite-pattern + + + + + + + + + + beta12orEarlier + Format of an EMBOSS sequence pattern. + + + EMBOSS sequence pattern + + + + + + + + + + beta12orEarlier + A motif in the format generated by the MEME program. + + + meme-motif + + + + + + + + + + beta12orEarlier + Sequence profile (sequence classifier) format used in the PROSITE database. + + + prosite-profile + + + + + + + + + + beta12orEarlier + A profile (sequence classifier) in the format used in the JASPAR database. + + + JASPAR format + + + + + + + + + + beta12orEarlier + Format of the model of random sequences used by MEME. + + + MEME background Markov model + + + + + + + + + + beta12orEarlier + Format of a hidden Markov model representation used by the HMMER package. + + + HMMER format + + + + + + + + + + + beta12orEarlier + FASTA-style format for multiple sequences aligned by HMMER package to an HMM. + + + HMMER-aln + + + + + + + + + + beta12orEarlier + Format of multiple sequences aligned by DIALIGN package. + + + DIALIGN format + + + + + + + + + + beta12orEarlier + EMBASSY 'domain alignment file' (DAF) format, containing a sequence alignment of protein domains belonging to the same SCOP or CATH family. + + + The format is clustal-like and includes annotation of domain family classification information. + daf + + + + + + + + + + beta12orEarlier + Format for alignment of molecular sequences to MEME profiles (position-dependent scoring matrices) as generated by the MAST tool from the MEME package. + + + Sequence-MEME profile alignment + + + + + + + + + + beta12orEarlier + Format used by the HMMER package for an alignment of a sequence against a hidden Markov model database. + + + HMMER profile alignment (sequences versus HMMs) + + + + + + + + + + beta12orEarlier + Format used by the HMMER package for of an alignment of a hidden Markov model against a sequence database. + + + HMMER profile alignment (HMM versus sequences) + + + + + + + + + + beta12orEarlier + Format of PHYLIP phylogenetic distance matrix data. + + + Data Type must include the distance matrix, probably as pairs of sequence identifiers with a distance (integer or float). + Phylip distance matrix + + + + + + + + + + beta12orEarlier + Dendrogram (tree file) format generated by ClustalW. + + + ClustalW dendrogram + + + + + + + + + + beta12orEarlier + Raw data file format used by Phylip from which a phylogenetic tree is directly generated or plotted. + + + Phylip tree raw + + + + + + + + + + beta12orEarlier + PHYLIP file format for continuous quantitative character data. + + + Phylip continuous quantitative characters + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of phylogenetic property data. + + Phylogenetic property values format + true + + + + + + + + + + beta12orEarlier + PHYLIP file format for phylogenetics character frequency data. + + + Phylip character frequencies format + + + + + + + + + + beta12orEarlier + Format of PHYLIP discrete states data. + + + Phylip discrete states format + + + + + + + + + + beta12orEarlier + Format of PHYLIP cliques data. + + + Phylip cliques format + + + + + + + + + + beta12orEarlier + Phylogenetic tree data format used by the PHYLIP program. + + + Phylip tree format + + + + + + + + + + beta12orEarlier + The format of an entry from the TreeBASE database of phylogenetic data. + + + TreeBASE format + + + + + + + + + + beta12orEarlier + The format of an entry from the TreeFam database of phylogenetic data. + + + TreeFam format + + + + + + + + + + beta12orEarlier + Format for distances, such as Branch Score distance, between two or more phylogenetic trees as used by the Phylip package. + + + Phylip tree distance format + + + + + + + + + + beta12orEarlier + Format of an entry from the DSSP database (Dictionary of Secondary Structure in Proteins). + + + The DSSP database is built using the DSSP application which defines secondary structure, geometrical features and solvent exposure of proteins, given atomic coordinates in PDB format. + dssp + + + + + + + + + + beta12orEarlier + Entry format of the HSSP database (Homology-derived Secondary Structure in Proteins). + + + hssp + + + + + + + + + + beta12orEarlier + Format of RNA secondary structure in dot-bracket notation, originally generated by the Vienna RNA package/server. + Vienna RNA format + Vienna RNA secondary structure format + + + Dot-bracket format + + + + + + + + + + beta12orEarlier + Format of local RNA secondary structure components with free energy values, generated by the Vienna RNA package/server. + + + Vienna local RNA secondary structure format + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Format of an entry (or part of an entry) from the PDB database. + PDB entry format + + + PDB database entry format + + + + + + + + + + beta12orEarlier + Entry format of PDB database in PDB format. + PDB format + + + PDB + + + + + + + + + + beta12orEarlier + Entry format of PDB database in mmCIF format. + + + mmCIF + + + + + + + + + + beta12orEarlier + Entry format of PDB database in PDBML (XML) format. + + + PDBML + + + + + + + + + beta12orEarlier + beta12orEarlier + + Format of a matrix of 3D-1D scores used by the EMBOSS Domainatrix applications. + + + Domainatrix 3D-1D scoring matrix format + true + + + + + + + + + + beta12orEarlier + Amino acid index format used by the AAindex database. + + + aaindex + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from IntEnz (The Integrated Relational Enzyme Database). + + IntEnz is the master copy of the Enzyme Nomenclature, the recommendations of the NC-IUBMB on the Nomenclature and Classification of Enzyme-Catalysed Reactions. + IntEnz enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the BRENDA enzyme database. + + BRENDA enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the KEGG REACTION database of biochemical reactions. + + KEGG REACTION enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the KEGG ENZYME database. + + KEGG ENZYME enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the proto section of the REBASE enzyme database. + + REBASE proto enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the withrefm section of the REBASE enzyme database. + + REBASE withrefm enzyme report format + true + + + + + + + + + + beta12orEarlier + Format of output of the Pcons Model Quality Assessment Program (MQAP). + + + Pcons ranks protein models by assessing their quality based on the occurrence of recurring common three-dimensional structural patterns. Pcons returns a score reflecting the overall global quality and a score for each individual residue in the protein reflecting the local residue quality. + Pcons report format + + + + + + + + + + beta12orEarlier + Format of output of the ProQ protein model quality predictor. + + + ProQ is a neural network-based predictor that predicts the quality of a protein model based on the number of structural features. + ProQ report format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of SMART domain assignment data. + + The SMART output file includes data on genetically mobile domains / analysis of domain architectures, including phyletic distributions, functional class, tertiary structures and functionally important residues. + SMART domain assignment report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the BIND database of protein interaction. + + BIND entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the IntAct database of protein interaction. + + IntAct entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the InterPro database of protein signatures (sequence classifiers) and classified sequences. + + This includes signature metadata, sequence references and a reference to the signature itself. There is normally a header (entry accession numbers and name), abstract, taxonomy information, example proteins etc. Each entry also includes a match list which give a number of different views of the signature matches for the sequences in each InterPro entry. + InterPro entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the textual abstract of signatures in an InterPro entry and its protein matches. + + References are included and a functional inference is made where possible. + InterPro entry abstract format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Gene3D protein secondary database. + + Gene3D entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the PIRSF protein secondary database. + + PIRSF entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the PRINTS protein secondary database. + + PRINTS entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Panther library of protein families and subfamilies. + + Panther Families and HMMs entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Pfam protein secondary database. + + Pfam entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the SMART protein secondary database. + + SMART entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Superfamily protein secondary database. + + Superfamily entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the TIGRFam protein secondary database. + + TIGRFam entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the ProDom protein domain classification database. + + ProDom entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the FSSP database. + + FSSP entry format + true + + + + + + + + + + beta12orEarlier + A report format for the kinetics of enzyme-catalysed reaction(s) in a format generated by EMBOSS findkm. This includes Michaelis Menten plot, Hanes Woolf plot, Michaelis Menten constant (Km) and maximum velocity (Vmax). + + + findkm + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of Ensembl genome database. + + Ensembl gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of DictyBase genome database. + + DictyBase gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of Candida Genome database. + + CGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of DragonDB genome database. + + DragonDB gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of EcoCyc genome database. + + EcoCyc gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of FlyBase genome database. + + FlyBase gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of Gramene genome database. + + Gramene gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of KEGG GENES genome database. + + KEGG GENES gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Maize genetics and genomics database (MaizeGDB). + + MaizeGDB gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Mouse Genome Database (MGD). + + MGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Rat Genome Database (RGD). + + RGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Saccharomyces Genome Database (SGD). + + SGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Sanger GeneDB genome database. + + GeneDB gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of The Arabidopsis Information Resource (TAIR) genome database. + + TAIR gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the WormBase genomes database. + + WormBase gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Zebrafish Information Network (ZFIN) genome database. + + ZFIN gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the TIGR genome database. + + TIGR gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the dbSNP database. + + dbSNP polymorphism report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the OMIM database of genotypes and phenotypes. + + OMIM entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a record from the HGVbase database of genotypes and phenotypes. + + HGVbase entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a record from the HIVDB database of genotypes and phenotypes. + + HIVDB entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the KEGG DISEASE database. + + KEGG DISEASE entry format + true + + + + + + + + + + beta12orEarlier + Report format on PCR primers and hybridisation oligos as generated by Whitehead primer3 program. + + + Primer3 primer + + + + + + + + + + beta12orEarlier + A format of raw sequence read data from an Applied Biosystems sequencing machine. + + + ABI + + + + + + + + + + beta12orEarlier + Format of MIRA sequence trace information file. + + + mira + + + + + + + + + + beta12orEarlier + + caf + + Common Assembly Format (CAF). A sequence assembly format including contigs, base-call qualities, and other metadata. + + + CAF + + + + + + + + + + beta12orEarlier + + Sequence assembly project file EXP format. + Affymetrix EXP format + + + EXP + + + + + + + + + + beta12orEarlier + + + Staden Chromatogram Files format (SCF) of base-called sequence reads, qualities, and other metadata. + + + SCF + + + + + + + + + + beta12orEarlier + + + PHD sequence trace format to store serialised chromatogram data (reads). + + + PHD + + + + + + + + + + + + + + + + beta12orEarlier + Format of Affymetrix data file of raw image data. + Affymetrix image data file format + + + dat + + + + + + + + + + + + + + + + beta12orEarlier + Format of Affymetrix data file of information about (raw) expression levels of the individual probes. + Affymetrix probe raw data format + + + cel + + + + + + + + + + beta12orEarlier + Format of affymetrix gene cluster files (hc-genes.txt, hc-chips.txt) from hierarchical clustering. + + + affymetrix + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the ArrayExpress microarrays database. + + ArrayExpress entry format + true + + + + + + + + + + beta12orEarlier + Affymetrix data file format for information about experimental conditions and protocols. + Affymetrix experimental conditions data file format + + + affymetrix-exp + + + + + + + + + + + + + + + + beta12orEarlier + + chp + Format of Affymetrix data file of information about (normalised) expression levels of the individual probes. + Affymetrix probe normalised data format + + + CHP + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the Electron Microscopy DataBase (EMDB). + + EMDB entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG PATHWAY database of pathway maps for molecular interactions and reaction networks. + + KEGG PATHWAY entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the MetaCyc metabolic pathways database. + + MetaCyc entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of a report from the HumanCyc metabolic pathways database. + + HumanCyc entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the INOH signal transduction pathways database. + + INOH entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the PATIKA biological pathways database. + + PATIKA entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the reactome biological pathways database. + + Reactome entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the aMAZE biological pathways and molecular interactions database. + + aMAZE entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the CPDB database. + + CPDB entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the Panther Pathways database. + + Panther Pathways entry format + true + + + + + + + + + + beta12orEarlier + Format of Taverna workflows. + + + Taverna workflow format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of mathematical models from the BioModel database. + + Models are annotated and linked to relevant data resources, such as publications, databases of compounds and pathways, controlled vocabularies, etc. + BioModel mathematical model format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG LIGAND chemical database. + + KEGG LIGAND entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG COMPOUND database. + + KEGG COMPOUND entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG PLANT database. + + KEGG PLANT entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG GLYCAN database. + + KEGG GLYCAN entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from PubChem. + + PubChem entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from a database of chemical structures and property predictions. + + ChemSpider entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from Chemical Entities of Biological Interest (ChEBI). + + ChEBI includes an ontological classification defining relations between entities or classes of entities. + ChEBI entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the MSDchem ligand dictionary. + + MSDchem ligand dictionary entry format + true + + + + + + + + + + beta12orEarlier + The format of an entry from the HET group dictionary (HET groups from PDB files). + + + HET group dictionary entry format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG DRUG database. + + KEGG DRUG entry format + true + + + + + + + + + + beta12orEarlier + Format of bibliographic reference as used by the PubMed database. + + + PubMed citation + + + + + + + + + + beta12orEarlier + Format for abstracts of scientific articles from the Medline database. + + + Bibliographic reference information including citation information is included + Medline Display Format + + + + + + + + + + beta12orEarlier + CiteXplore 'core' citation format including title, journal, authors and abstract. + + + CiteXplore-core + + + + + + + + + + beta12orEarlier + CiteXplore 'all' citation format includes all known details such as Mesh terms and cross-references. + + + CiteXplore-all + + + + + + + + + + beta12orEarlier + Article format of the PubMed Central database. + + + pmc + + + + + + + + + + + beta12orEarlier + The format of iHOP (Information Hyperlinked over Proteins) text-mining result. + + + iHOP format + + + + + + + + + + + + + beta12orEarlier + OSCAR format of annotated chemical text. + + + OSCAR (Open-Source Chemistry Analysis Routines) software performs chemistry-specific parsing of chemical documents. It attempts to identify chemical names, ontology concepts, and chemical data from a document. + OSCAR format + + + + + + + + + beta12orEarlier + beta13 + + + Format of an ATOM record (describing data for an individual atom) from a PDB file. + + PDB atom record format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of CATH domain classification information for a polypeptide chain. + + The report (for example http://www.cathdb.info/chain/1cukA) includes chain identifiers, domain identifiers and CATH codes for domains in a given protein chain. + CATH chain report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of CATH domain classification information for a protein PDB file. + + The report (for example http://www.cathdb.info/pdb/1cuk) includes chain identifiers, domain identifiers and CATH codes for domains in a given PDB file. + CATH PDB report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry (gene) format of the NCBI database. + + NCBI gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Moby:GI_Gene + Report format for biological functions associated with a gene name and its alternative names (synonyms, homonyms), as generated by the GeneIlluminator service. + + This includes a gene name and abbreviation of the name which may be in a name space indicating the gene status and relevant organisation. + GeneIlluminator gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Moby:BacMapGeneCard + Format of a report on the DNA and protein sequences for a given gene label from a bacterial chromosome maps from the BacMap database. + + BacMap gene card format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on Escherichia coli genes, proteins and molecules from the CyberCell Database (CCDB). + + ColiCard report format + true + + + + + + + + + + beta12orEarlier + Map of a plasmid (circular DNA) in PlasMapper TextMap format. + + + PlasMapper TextMap + + + + + + + + + + beta12orEarlier + Phylogenetic tree Newick (text) format. + nh + + + newick + + + + + + + + + + beta12orEarlier + Phylogenetic tree TreeCon (text) format. + + + TreeCon format + + + + + + + + + + beta12orEarlier + Phylogenetic tree Nexus (text) format. + + + Nexus format + + + + + + + + + + + beta12orEarlier + true + A defined way or layout of representing and structuring data in a computer file, blob, string, message, or elsewhere. + Data format + Data model + Exchange format + File format + + + The main focus in EDAM lies on formats as means of structuring data exchanged between different tools or resources. The serialisation, compression, or encoding of concrete data formats/models is not in scope of EDAM. Format 'is format of' Data. + Format + + + + + + + + + + + + + + + + + + + Data model + A defined data format has its implicit or explicit data model, and EDAM does not distinguish the two. Some data models, however, do not have any standard way of serialisation into an exchange format, and those are thus not considered formats in EDAM. (Remark: even broader - or closely related - term to 'Data model' would be an 'Information model'.) + + + + + File format + File format denotes only formats of a computer file, but the same formats apply also to data blobs or exchanged messages. + + + + + + + + + beta12orEarlier + beta13 + + + Data format for an individual atom. + + Atomic data format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a molecular sequence record. + + + Sequence record format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for molecular sequence feature information. + + + Sequence feature annotation format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for molecular sequence alignment information. + + + Alignment format + + + + + + + + + + beta12orEarlier + ACEDB sequence format. + + + acedb + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Clustalw output format. + + clustal sequence format + true + + + + + + + + + + beta12orEarlier + Codata entry format. + + + codata + + + + + + + + + beta12orEarlier + Fasta format variant with database name before ID. + + + dbid + + + + + + + + + + beta12orEarlier + EMBL entry format. + EMBL + EMBL sequence format + + + EMBL format + + + + + + + + + + beta12orEarlier + Staden experiment file format. + + + Staden experiment format + + + + + + + + + + beta12orEarlier + FASTA format including NCBI-style IDs. + FASTA format + FASTA sequence format + + + FASTA + + + + + + + + + beta12orEarlier + fastq + fq + FASTQ short read format ignoring quality scores. + FASTAQ + fq + + + FASTQ + + + + + + + + + beta12orEarlier + FASTQ Illumina 1.3 short read format. + + + FASTQ-illumina + + + + + + + + + beta12orEarlier + FASTQ short read format with phred quality. + + + FASTQ-sanger + + + + + + + + + beta12orEarlier + FASTQ Solexa/Illumina 1.0 short read format. + + + FASTQ-solexa + + + + + + + + + + beta12orEarlier + Fitch program format. + + + fitch program + + + + + + + + + + beta12orEarlier + GCG sequence file format. + GCG SSF + + + GCG SSF (single sequence file) file format. + GCG + + + + + + + + + + beta12orEarlier + Genbank entry format. + GenBank + + + GenBank format + + + + + + + + + beta12orEarlier + Genpept protein entry format. + + + Currently identical to refseqp format + genpept + + + + + + + + + + beta12orEarlier + GFF feature file format with sequence in the header. + + + GFF2-seq + + + + + + + + + + beta12orEarlier + GFF3 feature file format with sequence. + + + GFF3-seq + + + + + + + + + beta12orEarlier + FASTA sequence format including NCBI-style GIs. + + + giFASTA format + + + + + + + + + + beta12orEarlier + Hennig86 output sequence format. + + + hennig86 + + + + + + + + + + beta12orEarlier + Intelligenetics sequence format. + + + ig + + + + + + + + + + beta12orEarlier + Intelligenetics sequence format (strict version). + + + igstrict + + + + + + + + + + beta12orEarlier + Jackknifer interleaved and non-interleaved sequence format. + + + jackknifer + + + + + + + + + + beta12orEarlier + Mase program sequence format. + + + mase format + + + + + + + + + + beta12orEarlier + Mega interleaved and non-interleaved sequence format. + + + mega-seq + + + + + + + + + beta12orEarlier + GCG MSF (multiple sequence file) file format. + + + GCG MSF + + + + + + + + + beta12orEarlier + pir + NBRF/PIR entry sequence format. + nbrf + pir + + + nbrf/pir + + + + + + + + + + + beta12orEarlier + Nexus/paup interleaved sequence format. + + + nexus-seq + + + + + + + + + + + beta12orEarlier + PDB sequence format (ATOM lines). + + + pdb format in EMBOSS. + pdbatom + + + + + + + + + + + beta12orEarlier + PDB nucleotide sequence format (ATOM lines). + + + pdbnuc format in EMBOSS. + pdbatomnuc + + + + + + + + + + + beta12orEarlier + PDB nucleotide sequence format (SEQRES lines). + + + pdbnucseq format in EMBOSS. + pdbseqresnuc + + + + + + + + + + + beta12orEarlier + PDB sequence format (SEQRES lines). + + + pdbseq format in EMBOSS. + pdbseqres + + + + + + + + + beta12orEarlier + Plain old FASTA sequence format (unspecified format for IDs). + + + Pearson format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Phylip interleaved sequence format. + + phylip sequence format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + PHYLIP non-interleaved sequence format. + + phylipnon sequence format + true + + + + + + + + + + beta12orEarlier + Raw sequence format with no non-sequence characters. + + + raw + + + + + + + + + + beta12orEarlier + Refseq protein entry sequence format. + + + Currently identical to genpept format + refseqp + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Selex sequence format. + + selex sequence format + true + + + + + + + + + + beta12orEarlier + + + + + Staden suite sequence format. + + + Staden format + + + + + + + + + + beta12orEarlier + + Stockholm multiple sequence alignment format (used by Pfam and Rfam). + + + Stockholm format + + + + + + + + + + + beta12orEarlier + DNA strider output sequence format. + + + strider format + + + + + + + + + beta12orEarlier + UniProtKB entry sequence format. + SwissProt format + UniProt format + + + UniProtKB format + + + + + + + + + beta12orEarlier + txt + Plain text sequence format (essentially unformatted). + + + plain text format (unformatted) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Treecon output sequence format. + + treecon sequence format + true + + + + + + + + + + beta12orEarlier + NCBI ASN.1-based sequence format. + + + ASN.1 sequence format + + + + + + + + + + beta12orEarlier + DAS sequence (XML) format (any type). + das sequence format + + + DAS format + + + + + + + + + + beta12orEarlier + DAS sequence (XML) format (nucleotide-only). + + + The use of this format is deprecated. + dasdna + + + + + + + + + + beta12orEarlier + EMBOSS debugging trace sequence format of full internal data content. + + + debug-seq + + + + + + + + + + beta12orEarlier + Jackknifer output sequence non-interleaved format. + + + jackknifernon + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Mega non-interleaved output sequence format. + + meganon sequence format + true + + + + + + + + + beta12orEarlier + NCBI FASTA sequence format with NCBI-style IDs. + + + There are several variants of this. + NCBI format + + + + + + + + + + + beta12orEarlier + Nexus/paup non-interleaved sequence format. + + + nexusnon + + + + + + + + + beta12orEarlier + + + General Feature Format (GFF) of sequence features. + + + GFF2 + + + + + + + + + beta12orEarlier + + + + Generic Feature Format version 3 (GFF3) of sequence features. + + + GFF3 + + + + + + + + + beta12orEarlier + 1.7 + + PIR feature format. + + + pir + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Swiss-Prot feature format. + + swiss feature + true + + + + + + + + + + beta12orEarlier + DAS GFF (XML) feature format. + DASGFF feature + das feature + + + DASGFF + + + + + + + + + + beta12orEarlier + EMBOSS debugging trace feature format of full internal data content. + + + debug-feat + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBL feature format. + + EMBL feature + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Genbank feature format. + + GenBank feature + true + + + + + + + + + + beta12orEarlier + ClustalW format for (aligned) sequences. + clustal + + + ClustalW format + + + + + + + + + + beta12orEarlier + EMBOSS alignment format for debugging trace of full internal data content. + + + debug + + + + + + + + + + beta12orEarlier + Fasta format for (aligned) sequences. + + + FASTA-aln + + + + + + + + + beta12orEarlier + Pearson MARKX0 alignment format. + + + markx0 + + + + + + + + + beta12orEarlier + Pearson MARKX1 alignment format. + + + markx1 + + + + + + + + + beta12orEarlier + Pearson MARKX10 alignment format. + + + markx10 + + + + + + + + + beta12orEarlier + Pearson MARKX2 alignment format. + + + markx2 + + + + + + + + + beta12orEarlier + Pearson MARKX3 alignment format. + + + markx3 + + + + + + + + + + beta12orEarlier + Alignment format for start and end of matches between sequence pairs. + + + match + + + + + + + + + beta12orEarlier + Mega format for (typically aligned) sequences. + + + mega + + + + + + + + + beta12orEarlier + Mega non-interleaved format for (typically aligned) sequences. + + + meganon + + + + + + + + + beta12orEarlier + beta12orEarlier + + + MSF format for (aligned) sequences. + + msf alignment format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Nexus/paup format for (aligned) sequences. + + nexus alignment format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Nexus/paup non-interleaved format for (aligned) sequences. + + nexusnon alignment format + true + + + + + + + + + beta12orEarlier + EMBOSS simple sequence pairwise alignment format. + + + pair + + + + + + + + + beta12orEarlier + http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format + Phylip format for (aligned) sequences. + PHYLIP + PHYLIP interleaved format + ph + phy + + + PHYLIP format + + + + + + + + + beta12orEarlier + http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format + Phylip non-interleaved format for (aligned) sequences. + PHYLIP sequential format + phylipnon + + + PHYLIP sequential + + + + + + + + + + beta12orEarlier + Alignment format for score values for pairs of sequences. + + + scores format + + + + + + + + + + + beta12orEarlier + SELEX format for (aligned) sequences. + + + selex + + + + + + + + + + beta12orEarlier + EMBOSS simple multiple alignment format. + + + EMBOSS simple format + + + + + + + + + + beta12orEarlier + Simple multiple sequence (alignment) format for SRS. + + + srs format + + + + + + + + + + beta12orEarlier + Simple sequence pair (alignment) format for SRS. + + + srspair + + + + + + + + + + beta12orEarlier + T-Coffee program alignment format. + + + T-Coffee format + + + + + + + + + + + beta12orEarlier + Treecon format for (aligned) sequences. + + + TreeCon-seq + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a phylogenetic tree. + + + Phylogenetic tree format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a biological pathway or network. + + + Biological pathway or network format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a sequence-profile alignment. + + + Sequence-profile alignment format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data format for a sequence-HMM profile alignment. + + Sequence-profile alignment (HMM) format + true + + + + + + + + + + + + + + + beta12orEarlier + Data format for an amino acid index. + + + Amino acid index format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a full-text scientific article. + Literature format + + + Article format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format of a report from text mining. + + + Text mining report format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for reports on enzyme kinetics. + + + Enzyme kinetics report format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on a chemical compound. + Chemical compound annotation format + Chemical structure format + Small molecule report format + Small molecule structure format + + + Chemical data format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on a particular locus, gene, gene system or groups of genes. + Gene features format + + + Gene annotation format + + + + + + + + + beta12orEarlier + true + Format of a workflow. + Programming language + Script format + + + Workflow format + + + + + + + + + beta12orEarlier + true + Data format for a molecular tertiary structure. + + + Tertiary structure format + + + + + + + + + beta12orEarlier + 1.2 + + + Data format for a biological model. + + Biological model format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Text format of a chemical formula. + + + Chemical formula format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of raw (unplotted) phylogenetic data. + + + Phylogenetic character data format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic continuous quantitative character data. + + + Phylogenetic continuous quantitative character format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic discrete states data. + + + Phylogenetic discrete states format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic cliques data. + + + Phylogenetic tree report (cliques) format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic invariants data. + + + Phylogenetic tree report (invariants) format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation format for electron microscopy models. + + Electron microscopy model format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format for phylogenetic tree distance data. + + + Phylogenetic tree report (tree distances) format + + + + + + + + + beta12orEarlier + 1.0 + + + Format for sequence polymorphism data. + + Polymorphism report format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format for reports on a protein family. + + + Protein family report format + + + + + + + + + + + + + + + beta12orEarlier + true + Format for molecular interaction data. + Molecular interaction format + + + Protein interaction format + + + + + + + + + + + + + + + beta12orEarlier + true + Format for sequence assembly data. + + + Sequence assembly format + + + + + + + + + beta12orEarlier + Format for information about a microarray experimental per se (not the data generated from that experiment). + + + Microarray experiment data format + + + + + + + + + + + + + + + beta12orEarlier + Format for sequence trace data (i.e. including base call information). + + + Sequence trace format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a file of gene expression data, e.g. a gene expression matrix or profile. + Gene expression data format + + + Gene expression report format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on genotype / phenotype information. + + Genotype and phenotype annotation format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a map of (typically one) molecular sequence annotated with features. + + + Map format + + + + + + + + + beta12orEarlier + true + Format of a report on PCR primers or hybridisation oligos in a nucleic acid sequence. + + + Nucleic acid features (primers) format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report of general information about a specific protein. + + + Protein report format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report of general information about a specific enzyme. + + Protein report (enzyme) format + true + + + + + + + + + + + + + + + beta12orEarlier + Format of a matrix of 3D-1D scores (amino acid environment probabilities). + + + 3D-1D scoring matrix format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on the quality of a protein three-dimensional model. + + + Protein structure report (quality evaluation) format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on sequence hits and associated data from searching a sequence database. + + + Database hits (sequence) format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a matrix of genetic distances between molecular sequences. + + + Sequence distance matrix format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a sequence motif. + + + Sequence motif format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a sequence profile. + + + Sequence profile format + + + + + + + + + + + + + + + beta12orEarlier + Format of a hidden Markov model. + + + Hidden Markov model format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format of a dirichlet distribution. + + + Dirichlet distribution format + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for the emission and transition counts of a hidden Markov model. + + + HMM emission and transition counts format + + + + + + + + + + + + + + + beta12orEarlier + true + Format for secondary structure (predicted or real) of an RNA molecule. + + + RNA secondary structure format + + + + + + + + + beta12orEarlier + true + Format for secondary structure (predicted or real) of a protein molecule. + + + Protein secondary structure format + + + + + + + + + + + + + + + beta12orEarlier + true + Format used to specify range(s) of sequence positions. + + + Sequence range format + + + + + + + + + + beta12orEarlier + Alphabet for molecular sequence with possible unknown positions but without non-sequence characters. + + + pure + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions but possibly with non-sequence characters. + + + unpure + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions but without ambiguity characters. + + + unambiguous sequence + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions and possible ambiguity characters. + + + ambiguous + + + + + + + + + beta12orEarlier + true + Format used for map of repeats in molecular (typically nucleotide) sequences. + + + Sequence features (repeats) format + + + + + + + + + beta12orEarlier + true + Format used for report on restriction enzyme recognition sites in nucleotide sequences. + + + Nucleic acid features (restriction sites) format + + + + + + + + + beta12orEarlier + 1.10 + + Format used for report on coding regions in nucleotide sequences. + + + Gene features (coding region) format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format used for clusters of molecular sequences. + + + Sequence cluster format + + + + + + + + + beta12orEarlier + Format used for clusters of protein sequences. + + + Sequence cluster format (protein) + + + + + + + + + beta12orEarlier + Format used for clusters of nucleotide sequences. + + + Sequence cluster format (nucleic acid) + + + + + + + + + beta12orEarlier + beta13 + + + Format used for clusters of genes. + + Gene cluster format + true + + + + + + + + + + beta12orEarlier + A text format resembling EMBL entry format. + + + This concept may be used for the many non-standard EMBL-like text formats. + EMBL-like (text) + + + + + + + + + + beta12orEarlier + A text format resembling FASTQ short read format. + + + This concept may be used for non-standard FASTQ short read-like formats. + FASTQ-like format (text) + + + + + + + + + beta12orEarlier + + true + XML format for EMBL entries. + + + EMBLXML + https://fairsharing.org/bsg-s001452/ + + + + + + + + + beta12orEarlier + + true + Specific XML format for EMBL entries (only uses certain sections). + + + cdsxml + https://fairsharing.org/bsg-s001452/ + + + + + + + + + beta12orEarlier + + INSDSeq provides the elements of a sequence as presented in the GenBank/EMBL/DDBJ-style flatfile formats, with a small amount of additional structure. + INSD XML + INSDC XML + + + INSDSeq + + + + + + + + + beta12orEarlier + Geneseq sequence format. + + + geneseq + + + + + + + + + + beta12orEarlier + A text sequence format resembling uniprotkb entry format. + + + UniProt-like (text) + + + + + + + + + beta12orEarlier + 1.8 + + UniProt entry sequence format. + + + UniProt format + true + + + + + + + + + beta12orEarlier + 1.8 + + + ipi sequence format. + + ipi + true + + + + + + + + + + beta12orEarlier + Abstract format used by MedLine database. + + + medline + + + + + + + + + + + + + + + beta12orEarlier + true + Format used for ontologies. + + + Ontology format + + + + + + + + + beta12orEarlier + A serialisation format conforming to the Open Biomedical Ontologies (OBO) model. + + + OBO format + + + + + + + + + + + + + + + + + + + beta12orEarlier + A text format resembling FASTA format. + + + This concept may also be used for the many non-standard FASTA-like formats. + FASTA-like (text) + http://filext.com/file-extension/FASTA + + + + + + + + + beta12orEarlier + 1.8 + + Data format for a molecular sequence record, typically corresponding to a full entry from a molecular sequence database. + + + Sequence record full format + true + + + + + + + + + beta12orEarlier + 1.8 + + Data format for a molecular sequence record 'lite', typically molecular sequence and minimal metadata, such as an identifier of the sequence and/or a comment. + + + Sequence record lite format + true + + + + + + + + + beta12orEarlier + An XML format for EMBL entries. + + + This is a placeholder for other more specific concepts. It should not normally be used for annotation. + EMBL format (XML) + + + + + + + + + + beta12orEarlier + A text format resembling GenBank entry (plain text) format. + + + This concept may be used for the non-standard GenBank-like text formats. + GenBank-like format (text) + + + + + + + + + beta12orEarlier + Text format for a sequence feature table. + + + Sequence feature table format (text) + + + + + + + + + beta12orEarlier + 1.0 + + + Format of a report on organism strain data / cell line. + + Strain data format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format for a report of strain data as used for CIP database entries. + + CIP strain data format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + PHYLIP file format for phylogenetic property data. + + phylip property values + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format (HTML) for the STRING database of protein interaction. + + STRING entry format (HTML) + true + + + + + + + + + + beta12orEarlier + Entry format (XML) for the STRING database of protein interaction. + + + STRING entry format (XML) + + + + + + + + + + beta12orEarlier + GFF feature format (of indeterminate version). + + + GFF + + + + + + + + + beta12orEarlier + + + + Gene Transfer Format (GTF), a restricted version of GFF. + + + GTF + + + + + + + + + + beta12orEarlier + FASTA format wrapped in HTML elements. + + + FASTA-HTML + + + + + + + + + + beta12orEarlier + EMBL entry format wrapped in HTML elements. + + + EMBL-HTML + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the BioCyc enzyme database. + + BioCyc enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the Enzyme nomenclature database (ENZYME). + + ENZYME enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on a gene from the PseudoCAP database. + + PseudoCAP gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on a gene from the GeneCards database. + + GeneCards gene report format + true + + + + + + + + + + beta12orEarlier + Textual format. + Plain text format + txt + + + Data in text format can be compressed into binary format, or can be a value of an XML element or attribute. Markup formats are not considered textual (or more precisely, not plain-textual). + Textual format + http://filext.com/file-extension/TXT + http://www.iana.org/assignments/media-types/media-types.xhtml#text + http://www.iana.org/assignments/media-types/text/plain + + + + + + + + + + + + + + + + beta12orEarlier + HTML format. + Hypertext Markup Language + + + HTML + http://filext.com/file-extension/HTML + + + + + + + + + + beta12orEarlier + xml + + + + eXtensible Markup Language (XML) format. + eXtensible Markup Language + + + Data in XML format can be serialised into text, or binary format. + XML + + + + + + + + + beta12orEarlier + true + Binary format. + + + Only specific native binary formats are listed under 'Binary format' in EDAM. Generic binary formats - such as any data being zipped, or any XML data being serialised into the Efficient XML Interchange (EXI) format - are not modelled in EDAM. Refer to http://wsio.org/compression_004. + Binary format + + + + + + + + + beta12orEarlier + beta13 + + + Typical textual representation of a URI. + + URI format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the NCI-Nature pathways database. + + NCI-Nature pathway entry format + true + + + + + + + + + beta12orEarlier + true + A placeholder concept for visual navigation by dividing data formats by the content of the data that is represented. + Format (typed) + + + This concept exists only to assist EDAM maintenance and navigation in graphical browsers. It does not add semantic information. The concept branch under 'Format (typed)' provides an alternative organisation of the concepts nested under the other top-level branches ('Binary', 'HTML', 'RDF', 'Text' and 'XML'. All concepts under here are already included under those branches. + Format (by type of data) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + + + + + + + Any ontology allowed, none mandatory. Preferably with URIs but URIs are not mandatory. Non-ontology terms are also allowed as the last resort in case of a lack of suitable ontology. + + + + BioXSD-schema-based XML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, Web services, and object-oriented programming. + BioJSON + BioXSD + BioXSD XML + BioXSD XML format + BioXSD data model + BioXSD format + BioXSD in XML + BioXSD in XML format + BioXSD+XML + BioXSD/GTrack + BioXSD|GTrack + BioYAML + + + 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioXSD in XML' is the XML format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'. + BioXSD (XML) + + + + + + + + + + + beta12orEarlier + A serialisation format conforming to the Resource Description Framework (RDF) model. + Resource Description Framework format + RDF + Resource Description Framework + + + RDF format + + + + + + + + + + + beta12orEarlier + Genbank entry format wrapped in HTML elements. + + + GenBank-HTML + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on protein features (domain composition). + + Protein features (domains) format + true + + + + + + + + + beta12orEarlier + A format resembling EMBL entry (plain text) format. + + + This concept may be used for the many non-standard EMBL-like formats. + EMBL-like format + + + + + + + + + beta12orEarlier + A format resembling FASTQ short read format. + + + This concept may be used for non-standard FASTQ short read-like formats. + FASTQ-like format + + + + + + + + + beta12orEarlier + A format resembling FASTA format. + + + This concept may be used for the many non-standard FASTA-like formats. + FASTA-like + + + + + + + + + + beta12orEarlier + A sequence format resembling uniprotkb entry format. + + + uniprotkb-like format + + + + + + + + + + + + + + + beta12orEarlier + Format for a sequence feature table. + + + Sequence feature table format + + + + + + + + + + beta12orEarlier + OBO ontology text format. + + + OBO + + + + + + + + + + beta12orEarlier + OBO ontology XML format. + + + OBO-XML + + + + + + + + + beta12orEarlier + Data format for a molecular sequence record (text). + + + Sequence record format (text) + + + + + + + + + beta12orEarlier + Data format for a molecular sequence record (XML). + + + Sequence record format (XML) + + + + + + + + + beta12orEarlier + XML format for a sequence feature table. + + + Sequence feature table format (XML) + + + + + + + + + beta12orEarlier + Text format for molecular sequence alignment information. + + + Alignment format (text) + + + + + + + + + beta12orEarlier + XML format for molecular sequence alignment information. + + + Alignment format (XML) + + + + + + + + + beta12orEarlier + Text format for a phylogenetic tree. + + + Phylogenetic tree format (text) + + + + + + + + + beta12orEarlier + XML format for a phylogenetic tree. + + + Phylogenetic tree format (XML) + + + + + + + + + + beta12orEarlier + An XML format resembling EMBL entry format. + + + This concept may be used for the any non-standard EMBL-like XML formats. + EMBL-like (XML) + + + + + + + + + beta12orEarlier + A format resembling GenBank entry (plain text) format. + + + This concept may be used for the non-standard GenBank-like formats. + GenBank-like format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the STRING database of protein interaction. + + STRING entry format + true + + + + + + + + + beta12orEarlier + Text format for sequence assembly data. + + + Sequence assembly format (text) + + + + + + + + + beta12orEarlier + beta13 + + + Text format (representation) of amino acid residues. + + Amino acid identifier format + true + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence without any unknown positions or ambiguity characters. + + + completely unambiguous + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence (characters ACGTU only) without unknown positions, ambiguity or non-sequence characters . + + + completely unambiguous pure nucleotide + + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence (characters ACGT only) without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure dna + + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence (characters ACGU only) without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure rna sequence + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a raw molecular sequence (i.e. the alphabet used). + + + Raw sequence format + http://www.onto-med.de/ontologies/gfo.owl#Symbol_sequence + + + + + + + + + + + beta12orEarlier + + + BAM format, the binary, BGZF-formatted compressed version of SAM format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data. + + + BAM + + + + + + + + + + + beta12orEarlier + + + Sequence Alignment/Map (SAM) format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data. + + + The format supports short and long reads (up to 128Mbp) produced by different sequencing platforms and is used to hold mapped data within the GATK and across the Broad Institute, the Sanger Centre, and throughout the 1000 Genomes project. + SAM + + + + + + + + + + beta12orEarlier + + + Systems Biology Markup Language (SBML), the standard XML format for models of biological processes such as for example metabolism, cell signaling, and gene regulation. + + + SBML + + + + + + + + + + beta12orEarlier + Alphabet for any protein sequence without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure protein + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a bibliographic reference. + + + Bibliographic reference format + + + + + + + + + + + + + + + beta12orEarlier + Format of a sequence annotation track. + + + Sequence annotation track format + + + + + + + + + + + + + + + beta12orEarlier + Data format for molecular sequence alignment information that can hold sequence alignment(s) of only 2 sequences. + + + Alignment format (pair only) + + + + + + + + + + + + + + + beta12orEarlier + true + Format of sequence variation annotation. + + + Sequence variation annotation format + + + + + + + + + + beta12orEarlier + Some variant of Pearson MARKX alignment format. + + + markx0 variant + + + + + + + + + + + beta12orEarlier + Some variant of Mega format for (typically aligned) sequences. + + + mega variant + + + + + + + + + + + beta12orEarlier + Some variant of Phylip format for (aligned) sequences. + + + Phylip format variant + + + + + + + + + + beta12orEarlier + AB1 binary format of raw DNA sequence reads (output of Applied Biosystems' sequencing analysis software). Contains an electropherogram and the DNA base sequence. + + + AB1 uses the generic binary Applied Biosystems, Inc. Format (ABIF). + AB1 + + + + + + + + + + beta12orEarlier + + + ACE sequence assembly format including contigs, base-call qualities, and other metadata (version Aug 1998 and onwards). + + + ACE + + + + + + + + + + beta12orEarlier + + + Browser Extensible Data (BED) format of sequence annotation track, typically to be displayed in a genome browser. + + + BED detail format includes 2 additional columns (http://genome.ucsc.edu/FAQ/FAQformat#format1.7) and BED 15 includes 3 additional columns for experiment scores (http://genomewiki.ucsc.edu/index.php/Microarray_track). + BED + + + + + + + + + + beta12orEarlier + + + bigBed format for large sequence annotation tracks, similar to textual BED format. + + + bigBed + + + + + + + + + + beta12orEarlier + + wig + + Wiggle format (WIG) of a sequence annotation track that consists of a value for each sequence position. Typically to be displayed in a genome browser. + + + WIG + + + + + + + + + + beta12orEarlier + + + bigWig format for large sequence annotation tracks that consist of a value for each sequence position. Similar to textual WIG format. + + + bigWig + + + + + + + + + + + beta12orEarlier + + + PSL format of alignments, typically generated by BLAT or psLayout. Can be displayed in a genome browser like a sequence annotation track. + + + PSL + + + + + + + + + + + beta12orEarlier + + + Multiple Alignment Format (MAF) supporting alignments of whole genomes with rearrangements, directions, multiple pieces to the alignment, and so forth. + + + Typically generated by Multiz and TBA aligners; can be displayed in a genome browser like a sequence annotation track. This should not be confused with MIRA Assembly Format or Mutation Annotation Format. + MAF + + + + + + + + + + beta12orEarlier + + + + 2bit binary format of nucleotide sequences using 2 bits per nucleotide. In addition encodes unknown nucleotides and lower-case 'masking'. + + + 2bit + + + + + + + + + + beta12orEarlier + + + .nib (nibble) binary format of a nucleotide sequence using 4 bits per nucleotide (including unknown) and its lower-case 'masking'. + + + .nib + + + + + + + + + + beta12orEarlier + + gp + + genePred table format for gene prediction tracks. + + + genePred format has 3 main variations (http://genome.ucsc.edu/FAQ/FAQformat#format9 http://www.broadinstitute.org/software/igv/genePred). They reflect UCSC Browser DB tables. + genePred + + + + + + + + + + beta12orEarlier + + + Personal Genome SNP (pgSnp) format for sequence variation tracks (indels and polymorphisms), supported by the UCSC Genome Browser. + + + pgSnp + + + + + + + + + + beta12orEarlier + + + axt format of alignments, typically produced from BLASTZ. + + + axt + + + + + + + + + + beta12orEarlier + + lav + + LAV format of alignments generated by BLASTZ and LASTZ. + + + LAV + + + + + + + + + + beta12orEarlier + + + Pileup format of alignment of sequences (e.g. sequencing reads) to (a) reference sequence(s). Contains aligned bases per base of the reference sequence(s). + + + Pileup + + + + + + + + + + beta12orEarlier + + vcf + vcf.gz + Variant Call Format (VCF) is tabular format for storing genomic sequence variations. + + + 1000 Genomes Project has its own specification for encoding structural variations in VCF (https://www.internationalgenome.org/wiki/Analysis/Variant%20Call%20Format/VCF%20(Variant%20Call%20Format)%20version%204.0/encoding-structural-variants). This is based on VCF version 4.0 and not directly compatible with VCF version 4.3. + VCF + + + + + + + + + + + beta12orEarlier + + + Sequence Read Format (SRF) of sequence trace data. Supports submission to the NCBI Short Read Archive. + + + SRF + + + + + + + + + + beta12orEarlier + + + ZTR format for storing chromatogram data from DNA sequencing instruments. + + + ZTR + + + + + + + + + + beta12orEarlier + + + Genome Variation Format (GVF). A GFF3-compatible format with defined header and attribute tags for sequence variation. + + + GVF + + + + + + + + + + beta12orEarlier + + bcf + bcf.gz + + BCF is the binary version of Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation). + + + BCF + + + + + + + + + + + + + + + beta13 + true + Format of a matrix (array) of numerical values. + + + Matrix format + + + + + + + + + + + + + + + beta13 + true + Format of data concerning the classification of the sequences and/or structures of protein structural domain(s). + + + Protein domain classification format + + + + + + + + + beta13 + Format of raw SCOP domain classification data files. + + + These are the parsable data files provided by SCOP. + Raw SCOP domain classification format + + + + + + + + + beta13 + Format of raw CATH domain classification data files. + + + These are the parsable data files provided by CATH. + Raw CATH domain classification format + + + + + + + + + beta13 + Format of summary of domain classification information for a CATH domain. + + + The report (for example http://www.cathdb.info/domain/1cukA01) includes CATH codes for levels in the hierarchy for the domain, level descriptions and relevant data and links. + CATH domain report format + + + + + + + + + + 1.0 + + + Systems Biology Result Markup Language (SBRML), the standard XML format for simulated or calculated results (e.g. trajectories) of systems biology models. + + + SBRML + + + + + + + + + 1.0 + + + BioPAX is an exchange format for pathway data, with its data model defined in OWL. + + + BioPAX + + + + + + + + + + + 1.0 + + + EBI Application Result XML is a format returned by sequence similarity search Web services at EBI. + + + EBI Application Result XML + + + + + + + + + + 1.0 + + + XML Molecular Interaction Format (MIF), standardised by HUPO PSI MI. + MIF + + + PSI MI XML (MIF) + + + + + + + + + + 1.0 + + + phyloXML is a standardised XML format for phylogenetic trees, networks, and associated data. + + + phyloXML + + + + + + + + + + 1.0 + + + NeXML is a standardised XML format for rich phyloinformatic data. + + + NeXML + + + + + + + + + + + + + + + + 1.0 + + + MAGE-ML XML format for microarray expression data, standardised by MGED (now FGED). + + + MAGE-ML + + + + + + + + + + + + + + + + 1.0 + + + MAGE-TAB textual format for microarray expression data, standardised by MGED (now FGED). + + + MAGE-TAB + + + + + + + + + + 1.0 + + + GCDML XML format for genome and metagenome metadata according to MIGS/MIMS/MIMARKS information standards, standardised by the Genomic Standards Consortium (GSC). + + + GCDML + + + + + + + + + + + + 1.0 + + + + + + + + + + GTrack is a generic and optimised tabular format for genome or sequence feature tracks. GTrack unifies the power of other track formats (e.g. GFF3, BED, WIG), and while optimised in size, adds more flexibility, customisation, and automation ("machine understandability"). + BioXSD/GTrack GTrack + BioXSD|GTrack GTrack + GTrack ecosystem of formats + GTrack format + GTrack|BTrack|GSuite GTrack + GTrack|GSuite|BTrack GTrack + + + 'GTrack' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'GTrack' is the tabular format for representing features of sequences and genomes. + GTrack + + + + + + + + + + + + + + + 1.0 + true + Data format for a report of information derived from a biological pathway or network. + + + Biological pathway or network report format + + + + + + + + + + + + + + + 1.0 + true + Data format for annotation on a laboratory experiment. + + + Experiment annotation format + + + + + + + + + + + + + + + + 1.2 + + + Cytoband format for chromosome cytobands. + + + Reflects a UCSC Browser DB table. + Cytoband format + + + + + + + + + + + 1.2 + + + CopasiML, the native format of COPASI. + + + CopasiML + + + + + + + + + + 1.2 + + + + + CellML, the format for mathematical models of biological and other networks. + + + CellML + + + + + + + + + + 1.2 + + + + + + Tabular Molecular Interaction format (MITAB), standardised by HUPO PSI MI. + + + PSI MI TAB (MITAB) + + + + + + + + + 1.2 + + + Protein affinity format (PSI-PAR), standardised by HUPO PSI MI. It is compatible with PSI MI XML (MIF) and uses the same XML Schema. + + + PSI-PAR + + + + + + + + + + 1.2 + + + mzML format for raw spectrometer output data, standardised by HUPO PSI MSS. + + + mzML is the successor and unifier of the mzData format developed by PSI and mzXML developed at the Seattle Proteome Center. + mzML + + + + + + + + + + + + + + + 1.2 + true + Format for mass pectra and derived data, include peptide sequences etc. + + + Mass spectrometry data format + + + + + + + + + + 1.2 + + + TraML (Transition Markup Language) is the format for mass spectrometry transitions, standardised by HUPO PSI MSS. + + + TraML + + + + + + + + + + 1.2 + + + mzIdentML is the exchange format for peptides and proteins identified from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of proteomics search engines. + + + mzIdentML + + + + + + + + + + 1.2 + + + mzQuantML is the format for quantitation values associated with peptides, proteins and small molecules from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of quantitation software for proteomics. + + + mzQuantML + + + + + + + + + + 1.2 + + + GelML is the format for describing the process of gel electrophoresis, standardised by HUPO PSI PS. + + + GelML + + + + + + + + + + 1.2 + + + spML is the format for describing proteomics sample processing, other than using gels, prior to mass spectrometric protein identification, standardised by HUPO PSI PS. It may also be applicable for metabolomics. + + + spML + + + + + + + + + + 1.2 + A human-readable encoding for the Web Ontology Language (OWL). + + + OWL Functional Syntax + + + + + + + + + + 1.2 + A syntax for writing OWL class expressions. + + + This format was influenced by the OWL Abstract Syntax and the DL style syntax. + Manchester OWL Syntax + + + + + + + + + + 1.2 + A superset of the "Description-Logic Knowledge Representation System Specification from the KRSS Group of the ARPA Knowledge Sharing Effort". + + + This format is used in Protege 4. + KRSS2 Syntax + + + + + + + + + + 1.2 + The Terse RDF Triple Language (Turtle) is a human-friendly serialisation format for RDF (Resource Description Framework) graphs. + + + The SPARQL Query Language incorporates a very similar syntax. + Turtle + + + + + + + + + + 1.2 + nt + A plain text serialisation format for RDF (Resource Description Framework) graphs, and a subset of the Turtle (Terse RDF Triple Language) format. + + + N-Triples should not be confused with Notation 3 which is a superset of Turtle. + N-Triples + + + + + + + + + + 1.2 + n3 + A shorthand non-XML serialisation of Resource Description Framework model, designed with human-readability in mind. + N3 + + + Notation3 + + + + + + + + + + + + + + + + + + + 1.2 + OWL ontology XML serialisation format. + OWL + + + OWL/XML + + + + + + + + + + 1.3 + + + The A2M format is used as the primary format for multiple alignments of protein or nucleic-acid sequences in the SAM suite of tools. It is a small modification of FASTA format for sequences and is compatible with most tools that read FASTA. + + + A2M + + + + + + + + + + 1.3 + + + Standard flowgram format (SFF) is a binary file format used to encode results of pyrosequencing from the 454 Life Sciences platform for high-throughput sequencing. + Standard flowgram format + + + SFF + + + + + + + + + 1.3 + + The MAP file describes SNPs and is used by the Plink package. + Plink MAP + + + MAP + + + + + + + + + 1.3 + + The PED file describes individuals and genetic data and is used by the Plink package. + Plink PED + + + PED + + + + + + + + + 1.3 + true + Data format for a metadata on an individual and their genetic data. + + + Individual genetic data format + + + + + + + + + + 1.3 + + The PED/MAP file describes data used by the Plink package. + Plink PED/MAP + + + PED/MAP + + + + + + + + + + 1.3 + + + File format of a CT (Connectivity Table) file from the RNAstructure package. + Connect format + Connectivity Table file format + + + CT + + + + + + + + + + 1.3 + + XRNA old input style format. + + + SS + + + + + + + + + + + 1.3 + + RNA Markup Language. + + + RNAML + + + + + + + + + + 1.3 + + Format for the Genetic Data Environment (GDE). + + + GDE + + + + + + + + + 1.3 + + A multiple alignment in vertical format, as used in the AMPS (Alignment of Multiple Protein Sequences) package. + Block file format + + + BLC + + + + + + + + + + + + + + + 1.3 + true + Format of a data index of some type. + + + Data index format + + + + + + + + + + + + + + + + 1.3 + + BAM indexing format. + + + BAI + + + + + + + + + 1.3 + + HMMER profile HMM file for HMMER versions 2.x. + + + HMMER2 + + + + + + + + + 1.3 + + HMMER profile HMM file for HMMER versions 3.x. + + + HMMER3 + + + + + + + + + 1.3 + + PO is the output format of Partial Order Alignment program (POA) performing Multiple Sequence Alignment (MSA). + + + PO + + + + + + + + + + 1.3 + XML format as produced by the NCBI Blast package. + + + BLAST XML results format + + + + + + + + + + 1.7 + http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf + http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf + Reference-based compression of alignment format. + + + CRAM + + + + + + + + + + 1.7 + json + + + + JavaScript Object Notation format; a lightweight, text-based format to represent tree-structured data using key-value pairs. + JavaScript Object Notation + + + JSON + + + + + + + + + + 1.7 + Encapsulated PostScript format. + + + EPS + + + + + + + + + 1.7 + Graphics Interchange Format. + + + GIF + + + + + + + + + + 1.7 + Microsoft Excel spreadsheet format. + Microsoft Excel format + + + xls + + + + + + + + + 1.7 + tab + tsv + + + + Tabular data represented as tab-separated values in a text file. + Tab-delimited + Tab-separated values + tab + + + TSV + + + + + + + + + 1.7 + 1.10 + + Format of a file of gene expression data, e.g. a gene expression matrix or profile. + + + Gene expression data format + true + + + + + + + + + + 1.7 + Format of the cytoscape input file of gene expression ratios or values are specified over one or more experiments. + + + Cytoscape input file format + + + + + + + + + + + + + + + + 1.7 + https://github.com/BenLangmead/bowtie/blob/master/MANUAL + Bowtie format for indexed reference genome for "small" genomes. + Bowtie index format + + + ebwt + + + + + + + + + 1.7 + http://www.molbiol.ox.ac.uk/tutorials/Seqlab_GCG.pdf + Rich sequence format. + GCG RSF + + + RSF-format files contain one or more sequences that may or may not be related. In addition to the sequence data, each sequence can be annotated with descriptive sequence information (from the GCG manual). + RSF + + + + + + + + + + + 1.7 + Some format based on the GCG format. + + + GCG format variant + + + + + + + + + + 1.7 + http://rothlab.ucdavis.edu/genhelp/chapter_2_using_sequences.html#_Creating_and_Editing_Single_Sequenc + Bioinformatics Sequence Markup Language format. + + + BSML + + + + + + + + + + + + + + + + 1.7 + https://github.com/BenLangmead/bowtie/blob/master/MANUAL + Bowtie format for indexed reference genome for "large" genomes. + Bowtie long index format + + + ebwtl + + + + + + + + + + 1.8 + + Ensembl standard format for variation data. + + + Ensembl variation file format + + + + + + + + + + 1.8 + Microsoft Word format. + Microsoft Word format + doc + + + docx + + + + + + + + + 1.8 + true + Format of documents including word processor, spreadsheet and presentation. + + + Document format + + + + + + + + + + 1.8 + Portable Document Format. + + + PDF + + + + + + + + + + + + + + + 1.9 + true + Format used for images and image metadata. + + + Image format + + + + + + + + + + 1.9 + + Medical image format corresponding to the Digital Imaging and Communications in Medicine (DICOM) standard. + + + DICOM format + + + + + + + + + + 1.9 + + nii + An open file format from the Neuroimaging Informatics Technology Initiative (NIfTI) commonly used to store brain imaging data obtained using Magnetic Resonance Imaging (MRI) methods. + NIFTI format + NIfTI-1 format + + + nii + + + + + + + + + + 1.9 + + Text-based tagged file format for medical images generated using the MetaImage software package. + Metalmage format + + + mhd + + + + + + + + + + 1.9 + + Nearly Raw Rasta Data format designed to support scientific visualisation and image processing involving N-dimensional raster data. + + + nrrd + + + + + + + + + 1.9 + File format used for scripts written in the R programming language for execution within the R software environment, typically for statistical computation and graphics. + + + R file format + + + + + + + + + 1.9 + File format used for scripts for the Statistical Package for the Social Sciences. + + + SPSS + + + + + + + + + 1.9 + + eml + mht + mhtml + + + + MIME HTML format for Web pages, which can include external resources, including images, Flash animations and so on. + HTML email format + HTML email message format + MHT + MHT format + MHTML format + MIME HTML + MIME HTML format + eml + MIME multipart + MIME multipart format + MIME multipart message + MIME multipart message format + + + MHTML is not strictly an HTML format, it is encoded as an HTML email message (although with multipart/related instead of multipart/alternative). It, however, contains the main HTML block as its core, and thus it is for practical reasons included in EDAM as a specialisation of 'HTML'. + MHTML + + + + + + + + + + + + + + + + + 1.10 + Proprietary file format for (raw) BeadArray data used by genomewide profiling platforms from Illumina Inc. This format is output directly from the scanner and stores summary intensities for each probe-type on an array. + + + IDAT + + + + + + + + + + 1.10 + + Joint Picture Group file format for lossy graphics file. + JPEG + jpeg + + + Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type. + JPG + + + + + + + + + + 1.10 + Reporter Code Count-A data file (.csv) output by the Nanostring nCounter Digital Analyzer, which contains gene sample information, probe information and probe counts. + + + rcc + + + + + + + + + 1.11 + + + ARFF (Attribute-Relation File Format) is an ASCII text file format that describes a list of instances sharing a set of attributes. + + + This file format is for machine learning. + arff + + + + + + + + + + 1.11 + + + AFG is a single text-based file assembly format that holds read and consensus information together. + + + afg + + + + + + + + + + 1.11 + + + The bedGraph format allows display of continuous-valued data in track format. This display type is useful for probability scores and transcriptome data. + + + Holds a tab-delimited chromosome /start /end / datavalue dataset. + bedgraph + + + + + + + + + 1.11 + + + Browser Extensible Data (BED) format of sequence annotation track that strictly does not contain non-standard fields beyond the first 3 columns. + + + Galaxy allows BED files to contain non-standard fields beyond the first 3 columns, some other implementations do not. + bedstrict + + + + + + + + + 1.11 + + + BED file format where each feature is described by chromosome, start, end, name, score, and strand. + + + Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 6 + bed6 + + + + + + + + + 1.11 + + + A BED file where each feature is described by all twelve columns. + + + Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 12 + bed12 + + + + + + + + + + 1.11 + + + Tabular format of chromosome names and sizes used by Galaxy. + + + Galaxy allows BED files to contain non-standard fields beyond the first 3 columns, some other implementations do not. + chrominfo + + + + + + + + + + 1.11 + + + Custom Sequence annotation track format used by Galaxy. + + + Used for tracks/track views within galaxy. + customtrack + + + + + + + + + + 1.11 + + + Color space FASTA format sequence variant. + + + FASTA format extended for color space information. + csfasta + + + + + + + + + + 1.11 + + + HDF5 is a data model, library, and file format for storing and managing data, based on Hierarchical Data Format (HDF). + h5 + + + An HDF5 file appears to the user as a directed graph. The nodes of this graph are the higher-level HDF5 objects that are exposed by the HDF5 APIs: Groups, Datasets, Named datatypes. Currently supported by the Python MDTraj package. + HDF5 is the new version, according to the HDF group, a completely different technology (https://support.hdfgroup.org/products/hdf4/ compared to HDF. + HDF5 + + + + + + + + + + 1.11 + + A versatile bitmap format. + + + The TIFF format is perhaps the most versatile and diverse bitmap format in existence. Its extensible nature and support for numerous data compression schemes allow developers to customize the TIFF format to fit any peculiar data storage needs. + TIFF + + + + + + + + + + 1.11 + + Standard bitmap storage format in the Microsoft Windows environment. + + + Although it is based on Windows internal bitmap data structures, it is supported by many non-Windows and non-PC applications. + BMP + + + + + + + + + + 1.11 + + IM is a format used by LabEye and other applications based on the IFUNC image processing library. + + + IFUNC library reads and writes most uncompressed interchange versions of this format. + im + + + + + + + + + + 1.11 + + pcd + Photo CD format, which is the highest resolution format for images on a CD. + + + PCD was developed by Kodak. A PCD file contains five different resolution (ranging from low to high) of a slide or film negative. Due to it PCD is often used by many photographers and graphics professionals for high-end printed applications. + pcd + + + + + + + + + + 1.11 + + PCX is an image file format that uses a simple form of run-length encoding. It is lossless. + + + pcx + + + + + + + + + + 1.11 + + The PPM format is a lowest common denominator color image file format. + + + ppm + + + + + + + + + + 1.11 + + PSD (Photoshop Document) is a proprietary file that allows the user to work with the images' individual layers even after the file has been saved. + + + psd + + + + + + + + + + 1.11 + + X BitMap is a plain text binary image format used by the X Window System used for storing cursor and icon bitmaps used in the X GUI. + + + The XBM format was replaced by XPM for X11 in 1989. + xbm + + + + + + + + + + 1.11 + + X PixMap (XPM) is an image file format used by the X Window System, it is intended primarily for creating icon pixmaps, and supports transparent pixels. + + + Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type. + xpm + + + + + + + + + + 1.11 + + RGB file format is the native raster graphics file format for Silicon Graphics workstations. + + + rgb + + + + + + + + + + 1.11 + + The PBM format is a lowest common denominator monochrome file format. It serves as the common language of a large family of bitmap image conversion filters. + + + pbm + + + + + + + + + + 1.11 + + The PGM format is a lowest common denominator grayscale file format. + + + It is designed to be extremely easy to learn and write programs for. + pgm + + + + + + + + + + 1.11 + + png + PNG is a file format for image compression. + + + It iis expected to replace the Graphics Interchange Format (GIF). + PNG + + + + + + + + + + 1.11 + + Scalable Vector Graphics (SVG) is an XML-based vector image format for two-dimensional graphics with support for interactivity and animation. + Scalable Vector Graphics + + + The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999. + SVG + + + + + + + + + + 1.11 + + Sun Raster is a raster graphics file format used on SunOS by Sun Microsystems. + + + The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999. + rast + + + + + + + + + + + + + + + 1.11 + true + Textual report format for sequence quality for reports from sequencing machines. + + + Sequence quality report format (text) + + + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences). + + + Phred quality scores are defined as a property which is logarithmically related to the base-calling error probabilities. + qual + + + + + + + + + + 1.11 + FASTQ format subset for Phred sequencing quality score data only (no sequences) for Solexa/Illumina 1.0 format. + + + Solexa/Illumina 1.0 format can encode a Solexa/Illumina quality score from -5 to 62 using ASCII 59 to 126 (although in raw read data Solexa scores from -5 to 40 only are expected) + qualsolexa + + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences) from Illumina 1.5 and before Illumina 1.8. + + + Starting in Illumina 1.5 and before Illumina 1.8, the Phred scores 0 to 2 have a slightly different meaning. The values 0 and 1 are no longer used and the value 2, encoded by ASCII 66 "B", is used also at the end of reads as a Read Segment Quality Control Indicator. + qualillumina + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences) for SOLiD data. + + + For SOLiD data, the sequence is in color space, except the first position. The quality values are those of the Sanger format. + qualsolid + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences) from 454 sequencers. + + + qual454 + + + + + + + + + 1.11 + + + Human ENCODE peak format. + + + Format that covers both the broad peak format and narrow peak format from ENCODE. + ENCODE peak format + + + + + + + + + 1.11 + + + Human ENCODE narrow peak format. + + + Format that covers both the broad peak format and narrow peak format from ENCODE. + ENCODE narrow peak format + + + + + + + + + 1.11 + + + Human ENCODE broad peak format. + + + ENCODE broad peak format + + + + + + + + + + 1.11 + + bgz + Blocked GNU Zip format. + + + BAM files are compressed using a variant of GZIP (GNU ZIP), into a format called BGZF (Blocked GNU Zip Format). + bgzip + + + + + + + + + + 1.11 + + + TAB-delimited genome position file index format. + + + tabix + + + + + + + + + 1.11 + true + Data format for graph data. + + + Graph format + + + + + + + + + 1.11 + + XML-based format used to store graph descriptions within Galaxy. + + + xgmml + + + + + + + + + 1.11 + + SIF (simple interaction file) Format - a network/pathway format used for instance in cytoscape. + + + sif + + + + + + + + + + 1.11 + MS Excel spreadsheet format consisting of a set of XML documents stored in a ZIP-compressed file. + + + xlsx + + + + + + + + + 1.11 + + Data format used by the SQLite database. + + + SQLite format + + + + + + + + + + 1.11 + + Data format used by the SQLite database conformant to the Gemini schema. + + + Gemini SQLite format + + + + + + + + + 1.11 + Duplicate of http://edamontology.org/format_3326 + 1.20 + + + Format of a data index of some type. + + + Index format + true + + + + + + + + + + 1.11 + An index of a genome database, indexed for use by the snpeff tool. + + + snpeffdb + + + + + + + + + + + + + + + 1.12 + + Binary format used by MATLAB files to store workspace variables. + .mat file format + MAT file format + MATLAB file format + + + MAT + + + + + + + + + + + 1.12 + + Format used by netCDF software library for writing and reading chromatography-MS data files. Also used to store trajectory atom coordinates information, such as the ones obtained by Molecular Dynamics simulations. + ANDI-MS + + + Network Common Data Form (NetCDF) library is supported by AMBER MD package from version 9. + netCDF + + + + + + + + + 1.12 + mgf + Mascot Generic Format. Encodes multiple MS/MS spectra in a single file. + + + Files includes *m*/*z*, intensity pairs separated by headers; headers can contain a bit more information, including search engine instructions. + MGF + + + + + + + + + 1.12 + Spectral data format file where each spectrum is written to a separate file. + + + Each file contains one header line for the known or assumed charge and the mass of the precursor peptide ion, calculated from the measured *m*/*z* and the charge. This one line was then followed by all the *m*/*z*, intensity pairs that represent the spectrum. + dta + + + + + + + + + 1.12 + Spectral data file similar to dta. + + + Differ from .dta only in subtleties of the header line format and content and support the added feature of being able to. + pkl + + + + + + + + + 1.12 + https://dx.doi.org/10.1038%2Fnbt1031 + Common file format for proteomics mass spectrometric data developed at the Seattle Proteome Center/Institute for Systems Biology. + + + mzXML + + + + + + + + + + 1.12 + http://sashimi.sourceforge.net/schema_revision/pepXML/pepXML_v118.xsd + Open data format for the storage, exchange, and processing of peptide sequence assignments of MS/MS scans, intended to provide a common data output format for many different MS/MS search engines and subsequent peptide-level analyses. + + + pepXML + + + + + + + + + + 1.12 + + Graphical Pathway Markup Language (GPML) is an XML format used for exchanging biological pathways. + + + GPML + + + + + + + + + + 1.12 + + oxlicg + + + + A list of k-mers and their occurrences in a dataset. Can also be used as an implicit De Bruijn graph. + K-mer countgraph + + + + + + + + + + + 1.13 + + + mzTab is a tab-delimited format for mass spectrometry-based proteomics and metabolomics results. + + + mzTab + + + + + + + + + + + 1.13 + + imzml + + imzML metadata is a data format for mass spectrometry imaging metadata. + + + imzML data are recorded in 2 files: '.imzXML' is a metadata XML file based on mzML by HUPO-PSI, and '.ibd' is a binary file containing the mass spectra. This entry is for the metadata XML file + imzML metadata file + + + + + + + + + + + 1.13 + + + qcML is an XML format for quality-related data of mass spectrometry and other high-throughput measurements. + + + The focus of qcML is towards mass spectrometry based proteomics, but the format is suitable for metabolomics and sequencing as well. + qcML + + + + + + + + + + + 1.13 + + + PRIDE XML is an XML format for mass spectra, peptide and protein identifications, and metadata about a corresponding measurement, sample, experiment. + + + PRIDE XML + + + + + + + + + + + + 1.13 + + + Simulation Experiment Description Markup Language (SED-ML) is an XML format for encoding simulation setups, according to the MIASE (Minimum Information About a Simulation Experiment) requirements. + + + SED-ML + + + + + + + + + + + + 1.13 + + + Open Modeling EXchange format (OMEX) is a ZIPped format for encapsulating all information necessary for a modeling and simulation project in systems biology. + + + An OMEX file is a ZIP container that includes a manifest file, listing the content of the archive, an optional metadata file adding information about the archive and its content, and the files describing the model. OMEX is one of the standardised formats within COMBINE (Computational Modeling in Biology Network). + COMBINE OMEX + + + + + + + + + + + 1.13 + + + The Investigation / Study / Assay (ISA) tab-delimited (TAB) format incorporates metadata from experiments employing a combination of technologies. + + + ISA-TAB is based on MAGE-TAB. Other than tabular, the ISA model can also be represented in RDF, and in JSON (compliable with a set of defined JSON Schemata). + ISA-TAB + + + + + + + + + + + 1.13 + + + SBtab is a tabular format for biochemical network models. + + + SBtab + + + + + + + + + + 1.13 + + + Biological Connection Markup Language (BCML) is an XML format for biological pathways. + + + BCML + + + + + + + + + + 1.13 + + + Biological Dynamics Markup Language (BDML) is an XML format for quantitative data describing biological dynamics. + + + BDML + + + + + + + + + 1.13 + + + Biological Expression Language (BEL) is a textual format for representing scientific findings in life sciences in a computable form. + + + BEL + + + + + + + + + + 1.13 + + + SBGN-ML is an XML format for Systems Biology Graphical Notation (SBGN) diagrams of biological pathways or networks. + + + SBGN-ML + + + + + + + + + + 1.13 + + agp + + AGP is a tabular format for a sequence assembly (a contig, a scaffold/supercontig, or a chromosome). + + + AGP + + + + + + + + + 1.13 + PostScript format. + PostScript + + + PS + + + + + + + + + 1.13 + + sra + SRA archive format (SRA) is the archive format used for input to the NCBI Sequence Read Archive. + SRA + SRA archive format + + + SRA format + + + + + + + + + 1.13 + + VDB ('vertical database') is the native format used for export from the NCBI Sequence Read Archive. + SRA native format + + + VDB + + + + + + + + + + + + + + + + 1.13 + + Index file format used by the samtools package to index TAB-delimited genome position files. + + + Tabix index file format + + + + + + + + + 1.13 + A five-column, tab-delimited table of feature locations and qualifiers for importing annotation into an existing Sequin submission (an NCBI tool for submitting and updating GenBank entries). + + + Sequin format + + + + + + + + + 1.14 + Proprietary mass-spectrometry format of Thermo Scientific's ProteomeDiscoverer software. + Magellan storage file format + + + This format corresponds to an SQLite database, and you can look into the files with e.g. SQLiteStudio3. There are also some readers (http://doi.org/10.1021/pr2005154) and converters (http://doi.org/10.1016/j.jprot.2015.06.015) for this format available, which re-engineered the database schema, but there is no official DB schema specification of Thermo Scientific for the format. + MSF + + + + + + + + + + + + + + + 1.14 + true + Data format for biodiversity data. + + + Biodiversity data format + + + + + + + + + + + + + + + 1.14 + + Exchange format of the Access to Biological Collections Data (ABCD) Schema; a standard for the access to and exchange of data about specimens and observations (primary biodiversity data). + ABCD + + + ABCD format + + + + + + + + + + 1.14 + Tab-delimited text files of GenePattern that contain a column for each sample, a row for each gene, and an expression value for each gene in each sample. + GCT format + Res format + + + GCT/Res format + + + + + + + + + + 1.14 + wiff + Mass spectrum file format from QSTAR and QTRAP instruments (ABI/Sciex). + wiff + + + WIFF format + + + + + + + + + + 1.14 + + Output format used by X! series search engines that is based on the XML language BIOML. + + + X!Tandem XML + + + + + + + + + + 1.14 + Proprietary file format for mass spectrometry data from Thermo Scientific. + + + Proprietary format for which documentation is not available. + Thermo RAW + + + + + + + + + + 1.14 + + "Raw" result file from Mascot database search. + + + Mascot .dat file + + + + + + + + + + 1.14 + + Format of peak list files from Andromeda search engine (MaxQuant) that consist of arbitrarily many spectra. + MaxQuant APL + + + MaxQuant APL peaklist format + + + + + + + + + 1.14 + + Synthetic Biology Open Language (SBOL) is an XML format for the specification and exchange of biological design information in synthetic biology. + + + SBOL introduces a standardised format for the electronic exchange of information on the structural and functional aspects of biological designs. + SBOL + + + + + + + + + 1.14 + + PMML uses XML to represent mining models. The structure of the models is described by an XML Schema. + + + One or more mining models can be contained in a PMML document. + PMML + + + + + + + + + + 1.14 + + Image file format used by the Open Microscopy Environment (OME). + + + An OME-TIFF dataset consists of one or more files in standard TIFF or BigTIFF format, with the file extension .ome.tif or .ome.tiff, and an identical (or in the case of multiple files, nearly identical) string of OME-XML metadata embedded in the ImageDescription tag of each file's first IFD (Image File Directory). BigTIFF file extensions are also permitted, with the file extension .ome.tf2, .ome.tf8 or .ome.btf, but note these file extensions are an addition to the original specification, and software using an older version of the specification may not be able to handle these file extensions. + OME develops open-source software and data format standards for the storage and manipulation of biological microscopy data. It is a joint project between universities, research establishments, industry and the software development community. + OME-TIFF + + + + + + + + + 1.14 + + The LocARNA PP format combines sequence or alignment information and (respectively, single or consensus) ensemble probabilities into an PP 2.0 record. + + + Format for multiple aligned or single sequences together with the probabilistic description of the (consensus) RNA secondary structure ensemble by probabilities of base pairs, base pair stackings, and base pairs and unpaired bases in the loop of base pairs. + LocARNA PP + + + + + + + + + 1.14 + + Input format used by the Database of Genotypes and Phenotypes (dbGaP). + + + The Database of Genotypes and Phenotypes (dbGaP) is a National Institutes of Health (NIH) sponsored repository charged to archive, curate and distribute information produced by studies investigating the interaction of genotype and phenotype. + dbGaP format + + + + + + + + + + + 1.15 + + biom + The BIological Observation Matrix (BIOM) is a format for representing biological sample by observation contingency tables in broad areas of comparative omics. The primary use of this format is to represent OTU tables and metagenome tables. + BIological Observation Matrix format + biom + + + BIOM is a recognised standard for the Earth Microbiome Project, and is a project supported by Genomics Standards Consortium. Supported in QIIME, Mothur, MEGAN, etc. + BIOM format + + + + + + + + + + 1.15 + + + A format for storage, exchange, and processing of protein identifications created from ms/ms-derived peptide sequence data. + + + No human-consumable information about this format is available (see http://tools.proteomecenter.org/wiki/index.php?title=Formats:protXML). + protXML + http://doi.org/10.1038/msb4100024 + http://sashimi.sourceforge.net/schema_revision/protXML/protXML_v3.xsd + + + + + + + + + + + 1.15 + true + A linked data format enables publishing structured data as linked data (Linked Data), so that the data can be interlinked and become more useful through semantic queries. + Semantic Web format + + + Linked data format + + + + + + + + + + + + 1.15 + + jsonld + + + JSON-LD, or JavaScript Object Notation for Linked Data, is a method of encoding Linked Data using JSON. + JavaScript Object Notation for Linked Data + jsonld + + + JSON-LD + + + + + + + + + + 1.15 + + yaml + yml + + YAML (YAML Ain't Markup Language) is a human-readable tree-structured data serialisation language. + YAML Ain't Markup Language + yml + + + Data in YAML format can be serialised into text, or binary format. + YAML version 1.2 is a superset of JSON; prior versions were "not strictly compatible". + YAML + + + + + + + + + + 1.16 + Tabular data represented as values in a text file delimited by some character. + Delimiter-separated values + Tabular format + + + DSV + + + + + + + + + + 1.16 + csv + + + + Tabular data represented as comma-separated values in a text file. + Comma-separated values + + + CSV + + + + + + + + + + 1.16 + out + "Raw" result file from SEQUEST database search. + + + SEQUEST .out file + + + + + + + + + + 1.16 + http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1IdXMLFile.html + http://open-ms.sourceforge.net/schemas/ + XML file format for files containing information about peptide identifications from mass spectrometry data analysis carried out with OpenMS. + + + idXML + + + + + + + + + 1.16 + Data table formatted such that it can be passed/streamed within the KNIME platform. + + + KNIME datatable format + + + + + + + + + + + 1.16 + + UniProtKB XML sequence features format is an XML format available for downloading UniProt entries. + UniProt XML + UniProt XML format + UniProtKB XML format + + + UniProtKB XML + + + + + + + + + + 1.16 + + UniProtKB RDF sequence features format is an RDF format available for downloading UniProt entries (in RDF/XML). + UniProt RDF + UniProt RDF format + UniProt RDF/XML + UniProt RDF/XML format + UniProtKB RDF format + UniProtKB RDF/XML + UniProtKB RDF/XML format + + + UniProtKB RDF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + + + + BioJSON is a BioXSD-schema-based JSON format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web applications and APIs, and object-oriented programming. + BioJSON (BioXSD data model) + BioJSON format (BioXSD) + BioXSD BioJSON + BioXSD BioJSON format + BioXSD JSON + BioXSD JSON format + BioXSD in JSON + BioXSD in JSON format + BioXSD+JSON + BioXSD/GTrack BioJSON + BioXSD|BioJSON|BioYAML BioJSON + BioXSD|GTrack BioJSON + + + Work in progress. 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioJSON' is the JSON format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'. + BioJSON (BioXSD) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + + + + BioYAML is a BioXSD-schema-based YAML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web APIs, human readability and editing, and object-oriented programming. + BioXSD BioYAML + BioXSD BioYAML format + BioXSD YAML + BioXSD YAML format + BioXSD in YAML + BioXSD in YAML format + BioXSD+YAML + BioXSD/GTrack BioYAML + BioXSD|BioJSON|BioYAML BioYAML + BioXSD|GTrack BioYAML + BioYAML (BioXSD data model) + BioYAML (BioXSD) + BioYAML format + BioYAML format (BioXSD) + + + Work in progress. 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioYAML' is the YAML format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'. + BioYAML + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + BioJSON is a JSON format of single multiple sequence alignments, with their annotations, features, and custom visualisation and application settings for the Jalview workbench. + BioJSON format (Jalview) + JSON (Jalview) + JSON format (Jalview) + Jalview BioJSON + Jalview BioJSON format + Jalview JSON + Jalview JSON format + + + BioJSON (Jalview) + + + + + + + + + + + + 1.16 + + + + + + + GSuite is a tabular format for collections of genome or sequence feature tracks, suitable for integrative multi-track analysis. GSuite contains links to genome/sequence tracks, with additional metadata. + BioXSD/GTrack GSuite + BioXSD|GTrack GSuite + GSuite (GTrack ecosystem of formats) + GSuite format + GTrack|BTrack|GSuite GSuite + GTrack|GSuite|BTrack GSuite + + + 'GSuite' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'GSuite' is the tabular format for an annotated collection of individual GTrack files. + GSuite + + + + + + + + + + + + + 1.16 + + BTrack is an HDF5-based binary format for genome or sequence feature tracks and their collections, suitable for integrative multi-track analysis. BTrack is a binary, compressed alternative to the GTrack and GSuite formats. + BTrack (GTrack ecosystem of formats) + BTrack format + BioXSD/GTrack BTrack + BioXSD|GTrack BTrack + GTrack|BTrack|GSuite BTrack + GTrack|GSuite|BTrack BTrack + + + 'BTrack' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'BTrack' is the binary, optionally compressed HDF5-based version of the GTrack and GSuite formats. + BTrack + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + + + + + + + + + The FAO/Bioversity/IPGRI Multi-Crop Passport Descriptors (MCPD) is an international standard format for exchange of germplasm information. + Bioversity MCPD + FAO MCPD + IPGRI MCPD + MCPD V.1 + MCPD V.2 + MCPD format + Multi-Crop Passport Descriptors + Multi-Crop Passport Descriptors format + + + Multi-Crop Passport Descriptors is a format available in 2 successive versions, V.1 (FAO/IPGRI 2001) and V.2 (FAO/Bioversity 2012). + MCPD + + + + + + + + + + + + + + + + 1.16 + true + Data format of an annotated text, e.g. with recognised entities, concepts, and relations. + + + Annotated text format + + + + + + + + + + + 1.16 + + + JSON format of annotated scientific text used by PubAnnotations and other tools. + + + PubAnnotation format + + + + + + + + + + + 1.16 + + + BioC is a standardised XML format for sharing and integrating text data and annotations. + + + BioC + + + + + + + + + + + + 1.16 + + + Native textual export format of annotated scientific text from PubTator. + + + PubTator format + + + + + + + + + + + 1.16 + + + A format of text annotation using the linked-data Open Annotation Data Model, serialised typically in RDF or JSON-LD. + + + Open Annotation format + + + + + + + + + + + 1.16 + + + + + + + + + + + + + A family of similar formats of text annotation, used by BRAT and other tools, known as BioNLP Shared Task format (BioNLP 2009 Shared Task on Event Extraction, BioNLP Shared Task 2011, BioNLP Shared Task 2013), BRAT format, BRAT standoff format, and similar. + BRAT format + BRAT standoff format + + + BioNLP Shared Task format + + + + + + + + + + + + + + + 1.16 + true + A query language (format) for structured database queries. + Query format + + + Query language + + + + + + + + + 1.16 + sql + + + + SQL (Structured Query Language) is the de-facto standard query language (format of queries) for querying and manipulating data in relational databases. + Structured Query Language + + + SQL + + + + + + + + + + 1.16 + + xq + xquery + xqy + + XQuery (XML Query) is a query language (format of queries) for querying and manipulating structured and unstructured data, usually in the form of XML, text, and with vendor-specific extensions for other data formats (JSON, binary, etc.). + XML Query + xq + xqy + + + XQuery + + + + + + + + + + 1.16 + + + SPARQL (SPARQL Protocol and RDF Query Language) is a semantic query language for querying and manipulating data stored in Resource Description Framework (RDF) format. + SPARQL Protocol and RDF Query Language + + + SPARQL + + + + + + + + + + 1.17 + XML format for XML Schema. + + + xsd + + + + + + + + + + 1.20 + + XMFA format stands for eXtended Multi-FastA format and is used to store collinear sub-alignments that constitute a single genome alignment. + eXtended Multi-FastA format + + + XMFA + + + + + + + + + + + 1.20 + + The GEN file format contains genetic data and describes SNPs. + Genotype file format + + + GEN + + + + + + + + + 1.20 + + The SAMPLE file format contains information about each individual i.e. individual IDs, covariates, phenotypes and missing data proportions, from a GWAS study. + + + SAMPLE file format + + + + + + + + + + 1.20 + + SDF is one of a family of chemical-data file formats developed by MDL Information Systems; it is intended especially for structural information. + + + SDF + + + + + + + + + + 1.20 + + An MDL Molfile is a file format for holding information about the atoms, bonds, connectivity and coordinates of a molecule. + + + Molfile + + + + + + + + + + 1.20 + + Complete, portable representation of a SYBYL molecule. ASCII file which contains all the information needed to reconstruct a SYBYL molecule. + + + Mol2 + + + + + + + + + + 1.20 + + format for the LaTeX document preparation system. + LaTeX format + + + uses the TeX typesetting program format + latex + + + + + + + + + + 1.20 + + Tab-delimited text file format used by Eland - the read-mapping program distributed by Illumina with its sequencing analysis pipeline - which maps short Solexa sequence reads to the human reference genome. + ELAND + eland + + + ELAND format + + + + + + + + + 1.20 + + + Phylip multiple alignment sequence format, less stringent than PHYLIP format. + PHYLIP Interleaved format + + + It differs from Phylip Format (format_1997) on length of the ID sequence. There no length restrictions on the ID, but whitespaces aren't allowed in the sequence ID/Name because one space separates the longest ID and the beginning of the sequence. Sequences IDs must be padded to the longest ID length. + Relaxed PHYLIP Interleaved + + + + + + + + + 1.20 + + + Phylip multiple alignment sequence format, less stringent than PHYLIP sequential format (format_1998). + Relaxed PHYLIP non-interleaved + Relaxed PHYLIP non-interleaved format + Relaxed PHYLIP sequential format + + + It differs from Phylip sequential format (format_1997) on length of the ID sequence. There no length restrictions on the ID, but whitespaces aren't allowed in the sequence ID/Name because one space separates the longest ID and the beginning of the sequence. Sequences IDs must be padded to the longest ID length. + Relaxed PHYLIP Sequential + + + + + + + + + + 1.20 + + Default XML format of VisANT, containing all the network information. + VisANT xml + VisANT xml format + + + VisML + + + + + + + + + + 1.20 + + GML (Graph Modeling Language) is a text file format supporting network data with a very easy syntax. It is used by Graphlet, Pajek, yEd, LEDA and NetworkX. + GML format + + + GML + + + + + + + + + + 1.20 + + + FASTG is a format for faithfully representing genome assemblies in the face of allelic polymorphism and assembly uncertainty. + FASTG assembly graph format + + + It is called FASTG, like FASTA, but the G stands for "graph". + FASTG + + + + + + + + + + + + + + + 1.20 + true + Data format for raw data from a nuclear magnetic resonance (NMR) spectroscopy experiment. + NMR peak assignment data format + NMR processed data format + NMR raw data format + Nuclear magnetic resonance spectroscopy data format + Processed NMR data format + Raw NMR data format + + + NMR data format + + + + + + + + + + 1.20 + + + nmrML is an MSI supported XML-based open access format for metabolomics NMR raw and processed spectral data. It is accompanies by an nmrCV (controlled vocabulary) to allow ontology-based annotations. + + + nmrML + + + + + + + + + + + 1.20 + + . proBAM is an adaptation of BAM (format_2572), which was extended to meet specific requirements entailed by proteomics data. + + + proBAM + + + + + + + + + + 1.20 + + . proBED is an adaptation of BED (format_3003), which was extended to meet specific requirements entailed by proteomics data. + + + proBED + + + + + + + + + + + + + + + 1.20 + true + Data format for raw microarray data. + Microarray data format + + + Raw microarray data format + + + + + + + + + + 1.20 + + GenePix Results (GPR) text file format developed by Axon Instruments that is used to save GenePix Results data. + + + GPR + + + + + + + + + + 1.20 + Binary format used by the ARB software suite. + ARB binary format + + + ARB + + + + + + + + + + 1.20 + http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1ConsensusXMLFile.html + OpenMS format for grouping features in one map or across several maps. + + + consensusXML + + + + + + + + + + 1.20 + http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1FeatureXMLFile.html + OpenMS format for quantitation results (LC/MS features). + + + featureXML + + + + + + + + + + 1.20 + http://www.psidev.info/mzdata-1_0_5-docs + Now deprecated data format of the HUPO Proteomics Standards Initiative. Replaced by mzML (format_3244). + + + mzData + + + + + + + + + + 1.20 + http://cruxtoolkit.sourceforge.net/tide-search.html + Format supported by the Tide tool for identifying peptides from tandem mass spectra. + + + TIDE TXT + + + + + + + + + + 1.20 + ftp://ftp.ncbi.nlm.nih.gov/blast/documents/NEWXML/ProposedBLASTXMLChanges.pdf + ftp://ftp.ncbi.nlm.nih.gov/blast/documents/NEWXML/xml2.pdf + http://www.ncbi.nlm.nih.gov/data_specs/schema/NCBI_BlastOutput2.mod.xsd + XML format as produced by the NCBI Blast package v2. + + + BLAST XML v2 results format + + + + + + + + + + 1.20 + + + Microsoft Powerpoint format. + + + pptx + + + + + + + + + + + 1.20 + + ibd + + ibd is a data format for mass spectrometry imaging data. + + + imzML data is recorded in 2 files: '.imzXML' is a metadata XML file based on mzML by HUPO-PSI, and '.ibd' is a binary file containing the mass spectra. + ibd + + + + + + + + + 1.21 + Data format used in Natural Language Processing. + Natural Language Processing format + + + NLP format + + + + + + + + + + 1.21 + + XML input file format for BEAST Software (Bayesian Evolutionary Analysis Sampling Trees). + + + BEAST + + + + + + + + + + 1.21 + + Chado-XML format is a direct mapping of the Chado relational schema into XML. + + + Chado-XML + + + + + + + + + + 1.21 + + An alignment format generated by PRANK/PRANKSTER consisting of four elements: newick, nodes, selection and model. + + + HSAML + + + + + + + + + + 1.21 + + Output xml file from the InterProScan sequence analysis application. + + + InterProScan XML + + + + + + + + + + 1.21 + + The KEGG Markup Language (KGML) is an exchange format of the KEGG pathway maps, which is converted from internally used KGML+ (KGML+SVG) format. + KEGG Markup Language + + + KGML + + + + + + + + + + 1.21 + XML format for collected entries from bibliographic databases MEDLINE and PubMed. + MEDLINE XML + + + PubMed XML + + + + + + + + + + 1.21 + + A set of XML compliant markup components for describing multiple sequence alignments. + + + MSAML + + + + + + + + + + + 1.21 + + OrthoXML is designed broadly to allow the storage and comparison of orthology data from any ortholog database. It establishes a structure for describing orthology relationships while still allowing flexibility for database-specific information to be encapsulated in the same format. + + + OrthoXML + + + + + + + + + + 1.21 + + Tree structure of Protein Sequence Database Markup Language generated using Matra software. + + + PSDML + + + + + + + + + + 1.21 + + SeqXML is an XML Schema to describe biological sequences, developed by the Stockholm Bioinformatics Centre. + + + SeqXML + + + + + + + + + + 1.21 + + XML format for the UniParc database. + + + UniParc XML + + + + + + + + + + 1.21 + + XML format for the UniRef reference clusters. + + + UniRef XML + + + + + + + + + + + 1.21 + + + + + cwl + + + + Common Workflow Language (CWL) format for description of command-line tools and workflows. + Common Workflow Language + CommonWL + + + CWL + + + + + + + + + + 1.21 + Proprietary file format for mass spectrometry data from Waters. + + + Proprietary format for which documentation is not available, but used by multiple tools. + Waters RAW + + + + + + + + + + 1.21 + + A standardized file format for data exchange in mass spectrometry, initially developed for infrared spectrometry. + + + JCAMP-DX is an ASCII based format and therefore not very compact even though it includes standards for file compression. + JCAMP-DX + + + + + + + + + + 1.21 + An NLP format used for annotated textual documents. + + + NLP annotation format + + + + + + + + + 1.21 + NLP format used by a specific type of corpus (collection of texts). + + + NLP corpus format + + + + + + + + + + + 1.21 + + + + mirGFF3 is a common format for microRNA data resulting from small-RNA RNA-Seq workflows. + miRTop format + + + mirGFF3 is a specialisation of GFF3; produced by small-RNA-Seq analysis workflows, usable and convertible with the miRTop API (https://mirtop.readthedocs.io/en/latest/), and consumable by tools for downstream analysis. + mirGFF3 + + + + + + + + + 1.21 + A "placeholder" concept for formats of annotated RNA data, including e.g. microRNA and RNA-Seq data. + RNA data format + miRNA data format + microRNA data format + + + RNA annotation format + + + + + + + + + + + + + + + 1.22 + true + File format to store trajectory information for a 3D structure . + CG trajectory formats + MD trajectory formats + NA trajectory formats + Protein trajectory formats + + + Formats differ on what they are able to store (coordinates, velocities, topologies) and how they are storing it (raw, compressed, textual, binary). + Trajectory format + + + + + + + + + 1.22 + true + Binary file format to store trajectory information for a 3D structure . + + + Trajectory format (binary) + + + + + + + + + 1.22 + true + Textual file format to store trajectory information for a 3D structure . + + + Trajectory format (text) + + + + + + + + + + 1.22 + HDF is the name of a set of file formats and libraries designed to store and organize large amounts of numerical data, originally developed at the National Center for Supercomputing Applications at the University of Illinois. + + + HDF is currently supported by many commercial and non-commercial software platforms such as Java, MATLAB/Scilab, Octave, Python and R. + HDF + + + + + + + + + + 1.22 + PCAZip format is a binary compressed file to store atom coordinates based on Essential Dynamics (ED) and Principal Component Analysis (PCA). + + + The compression is made projecting the Cartesian snapshots collected along the trajectory into an orthogonal space defined by the most relevant eigenvectors obtained by diagonalization of the covariance matrix (PCA). In the compression/decompression process, part of the original information is lost, depending on the final number of eigenvectors chosen. However, with a reasonable choice of the set of eigenvectors the compression typically reduces the trajectory file to less than one tenth of their original size with very acceptable loss of information. Compression with PCAZip can only be applied to unsolvated structures. + PCAzip + + + + + + + + + + 1.22 + Portable binary format for trajectories produced by GROMACS package. + + + XTC uses the External Data Representation (xdr) routines for writing and reading data which were created for the Unix Network File System (NFS). XTC files use a reduced precision (lossy) algorithm which works multiplying the coordinates by a scaling factor (typically 1000), so converting them to pm (GROMACS standard distance unit is nm). This allows an integer rounding of the values. Several other tricks are performed, such as making use of atom proximity information: atoms close in sequence are usually close in space (e.g. water molecules). That makes XTC format the most efficient in terms of disk usage, in most cases reducing by a factor of 2 the size of any other binary trajectory format. + XTC + + + + + + + + + + 1.22 + Trajectory Next Generation (TNG) is a format for storage of molecular simulation data. It is designed and implemented by the GROMACS development group, and it is called to be the substitute of the XTC format. + Trajectory Next Generation format + + + Fully architecture-independent format, regarding both endianness and the ability to mix single/double precision trajectories and I/O libraries. Self-sufficient, it should not require any other files for reading, and all the data should be contained in a single file for easy transport. Temporal compression of data, improving the compression rate of the previous XTC format. Possibility to store meta-data with information about the simulation. Direct access to a particular frame. Efficient parallel I/O. + TNG + + + + + + + + + + + 1.22 + The XYZ chemical file format is widely supported by many programs, although many slightly different XYZ file formats coexist (Tinker XYZ, UniChem XYZ, etc.). Basic information stored for each atom in the system are x, y and z coordinates and atom element/atomic number. + + + XYZ files are structured in this way: First line contains the number of atoms in the file. Second line contains a title, comment, or filename. Remaining lines contain atom information. Each line starts with the element symbol, followed by x, y and z coordinates in angstroms separated by whitespace. Multiple molecules or frames can be contained within one file, so it supports trajectory storage. XYZ files can be directly represented by a molecular viewer, as they contain all the basic information needed to build the 3D model. + XYZ + + + + + + + + + + + 1.22 + + AMBER trajectory (also called mdcrd), with 10 coordinates per line and format F8.3 (fixed point notation with field width 8 and 3 decimal places). + AMBER trajectory format + inpcrd + + + mdcrd + + + + + + + + + + + + + + + 1.22 + true + Format of topology files; containing the static information of a structure molecular system that is needed for a molecular simulation. + CG topology format + MD topology format + NA topology format + Protein topology format + + + Many different file formats exist describing structural molecular topology. Typically, each MD package or simulation software works with their own implementation (e.g. GROMACS top, CHARMM psf, AMBER prmtop). + Topology format + + + + + + + + + + + 1.22 + + GROMACS MD package top textual files define an entire structure system topology, either directly, or by including itp files. + + + There is currently no tool available for conversion between GROMACS topology format and other formats, due to the internal differences in both approaches. There is, however, a method to convert small molecules parameterized with AMBER force-field into GROMACS format, allowing simulations of these systems with GROMACS MD package. + GROMACS top + + + + + + + + + + + 1.22 + + AMBER Prmtop file (version 7) is a structure topology text file divided in several sections designed to be parsed easily using simple Fortran code. Each section contains particular topology information, such as atom name, charge, mass, angles, dihedrals, etc. + AMBER Parm + AMBER Parm7 + Parm7 + Prmtop + Prmtop7 + + + It can be modified manually, but as the size of the system increases, the hand-editing becomes increasingly complex. AMBER Parameter-Topology file format is used extensively by the AMBER software suite and is referred to as the Prmtop file for short. + version 7 is written to distinguish it from old versions of AMBER Prmtop. Similarly to HDF5, it is a completely different format, according to AMBER group: a drastic change to the file format occurred with the 2004 release of Amber 7 (http://ambermd.org/prmtop.pdf) + AMBER top + + + + + + + + + + + 1.22 + + X-Plor Protein Structure Files (PSF) are structure topology files used by NAMD and CHARMM molecular simulations programs. PSF files contain six main sections of interest: atoms, bonds, angles, dihedrals, improper dihedrals (force terms used to maintain planarity) and cross-terms. + + + The high similarity in the functional form of the two potential energy functions used by AMBER and CHARMM force-fields gives rise to the possible use of one force-field within the other MD engine. Therefore, the conversion of PSF files to AMBER Prmtop format is possible with the use of AMBER chamber (CHARMM - AMBER) program. + PSF + + + + + + + + + + + + 1.22 + + GROMACS itp files (include topology) contain structure topology information, and are typically included in GROMACS topology files (GROMACS top). Itp files are used to define individual (or multiple) components of a topology as a separate file. This is particularly useful if there is a molecule that is used frequently, and also reduces the size of the system topology file, splitting it in different parts. + + + GROMACS itp files are used also to define position restrictions on the molecule, or to define the force field parameters for a particular ligand. + GROMACS itp + + + + + + + + + + + + + + + 1.22 + Format of force field parameter files, which store the set of parameters (charges, masses, radii, bond lengths, bond dihedrals, etc.) that are essential for the proper description and simulation of a molecular system. + Many different file formats exist describing force field parameters. Typically, each MD package or simulation software works with their own implementation (e.g. GROMACS itp, CHARMM rtf, AMBER off / frcmod). + FF parameter format + + + + + + + + + + 1.22 + Scripps Research Institute BinPos format is a binary formatted file to store atom coordinates. + Scripps Research Institute BinPos + + + It is basically a translation of the ASCII atom coordinate format to binary code. The only additional information stored is a magic number that identifies the BinPos format and the number of atoms per snapshot. The remainder is the chain of coordinates binary encoded. A drawback of this format is its architecture dependency. Integers and floats codification depends on the architecture, thus it needs to be converted if working in different platforms (little endian, big endian). + BinPos + + + + + + + + + + + 1.22 + + AMBER coordinate/restart file with 6 coordinates per line and decimal format F12.7 (fixed point notation with field width 12 and 7 decimal places). + restrt + rst7 + + + RST + + + + + + + + + + + 1.22 + Format of CHARMM Residue Topology Files (RTF), which define groups by including the atoms, the properties of the group, and bond and charge information. + + + There is currently no tool available for conversion between GROMACS topology format and other formats, due to the internal differences in both approaches. There is, however, a method to convert small molecules parameterized with AMBER force-field into GROMACS format, allowing simulations of these systems with GROMACS MD package. + CHARMM rtf + + + + + + + + + + 1.22 + + AMBER frcmod (Force field Modification) is a file format to store any modification to the standard force field needed for a particular molecule to be properly represented in the simulation. + + + AMBER frcmod + + + + + + + + + + 1.22 + + AMBER Object File Format library files (OFF library files) store residue libraries (forcefield residue parameters). + AMBER Object File Format + AMBER lib + AMBER off + + + + + + + + + + 1.22 + MReData is a text based data standard for processed NMR data. It is relying on SDF molecule data and allows to store assignments of NMR peaks to molecule features. The NMR-extracted data (or "NMReDATA") includes: Chemical shift,scalar coupling, 2D correlation, assignment, etc. + + + NMReData is a text based data standard for processed NMR data. It is relying on SDF molecule data and allows to store assignments of NMR peaks to molecule features. The NMR-extracted data (or "NMReDATA") includes: Chemical shift,scalar coupling, 2D correlation, assignment, etc. Find more in the paper at https://doi.org/10.1002/mrc.4527. + NMReDATA + + + + + + + + + + + + + + + + + + 1.22 + + + + + BpForms is a string format for concretely representing the primary structures of biopolymers, including DNA, RNA, and proteins that include non-canonical nucleic and amino acids. See https://www.bpforms.org for more information. + + + BpForms + + + + + + + + + + + 1.22 + + Format of trr files that contain the trajectory of a simulation experiment used by GROMACS. + The first 4 bytes of any trr file containing 1993. See https://github.com/galaxyproject/galaxy/pull/6597/files#diff-409951594551183dbf886e24de6cb129R760 + trr + + + + + + + + + + + + + + + + 1.22 + + + + + + msh + + + + Mash sketch is a format for sequence / sequence checksum information. To make a sketch, each k-mer in a sequence is hashed, which creates a pseudo-random identifier. By sorting these hashes, a small subset from the top of the sorted list can represent the entire sequence. + Mash sketch + min-hash sketch + + + msh + + + + + + + + + + + + + + + + + + + + + + 1.23 + + + + loom + The Loom file format is based on HDF5, a standard for storing large numerical datasets. The Loom format is designed to efficiently hold large omics datasets. Typically, such data takes the form of a large matrix of numbers, along with metadata for the rows and columns. + Loom + + + + + + + + + + + + + + + + + + + + + + + 1.23 + + + + zarray + zgroup + The Zarr format is an implementation of chunked, compressed, N-dimensional arrays for storing data. + Zarr + + + + + + + + + + + + + + + + + + + + + + + 1.23 + + + mtx + + The Matrix Market matrix (MTX) format stores numerical or pattern matrices in a dense (array format) or sparse (coordinate format) representation. + MTX + + + + + + + + + + + 1.24 + + + + + + text/plain + + + BcForms is a format for abstractly describing the molecular structure (atoms and bonds) of macromolecular complexes as a collection of subunits and crosslinks. Each subunit can be described with BpForms (http://edamontology.org/format_3909) or SMILES (http://edamontology.org/data_2301). BcForms uses an ontology of crosslinks to abstract the chemical details of crosslinks from the descriptions of complexes (see https://bpforms.org/crosslink.html). + BcForms is related to http://edamontology.org/format_3909. (BcForms uses BpForms to describe subunits which are DNA, RNA, or protein polymers.) However, that format isn't the parent of BcForms. BcForms is similarly related to SMILES (http://edamontology.org/data_2301). + BcForms + + + + + + + + + + 1.24 + + nq + N-Quads is a line-based, plain text format for encoding an RDF dataset. It includes information about the graph each triple belongs to. + + + N-Quads should not be confused with N-Triples which does not contain graph information. + N-Quads + + + + + + + + + + 1.25 + + + + + json + application/json + + Vega is a visualization grammar, a declarative language for creating, saving, and sharing interactive visualization designs. With Vega, you can describe the visual appearance and interactive behavior of a visualization in a JSON format, and generate web-based views using Canvas or SVG. + + + Vega + + + + + + + + + + 1.25 + + + + + json + application/json + + Vega-Lite is a high-level grammar of interactive graphics. It provides a concise JSON syntax for rapidly generating visualizations to support analysis. Vega-Lite specifications can be compiled to Vega specifications. + + + Vega-lite + + + + + + + + + + + + + + + + 1.25 + + + + + application/xml + + A model description language for computational neuroscience. + + + NeuroML + + + + + + + + + + + + + + + + 1.25 + + + + + bngl + application/xml + plain/text + + BioNetGen is a format for the specification and simulation of rule-based models of biochemical systems, including signal transduction, metabolic, and genetic regulatory networks. + BioNetGen Language + + + BNGL + + + + + + + + + 1.25 + + + + A Docker image is a file, comprised of multiple layers, that is used to execute code in a Docker container. An image is essentially built from the instructions for a complete and executable version of an application, which relies on the host OS kernel. + + + Docker image + + + + + + + + + + + 1.25 + + + gfa + + Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology. + Graphical Fragment Assembly (GFA) 1.0 + + + GFA 1 + + + + + + + + + + + 1.25 + + + gfa + + Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology. GFA2 is an update of GFA1 which is not compatible with GFA1. + Graphical Fragment Assembly (GFA) 2.0 + + + GFA 2 + + + + + + + + + + 1.25 + + + xlsx + application/vnd.openxmlformats-officedocument.spreadsheetml.sheet + + ObjTables is a toolkit for creating re-usable datasets that are both human and machine-readable, combining the ease of spreadsheets (e.g., Excel workbooks) with the rigor of schemas (classes, their attributes, the type of each attribute, and the possible relationships between instances of classes). ObjTables consists of a format for describing schemas for spreadsheets, numerous data types for science, a syntax for indicating the class and attribute represented by each table and column in a workbook, and software for using schemas to rigorously validate, merge, split, compare, and revision datasets. + + + ObjTables + + + + + + + + + + 1.25 + contig + The CONTIG format used for output of the SOAPdenovo alignment program. It contains contig sequences generated without using mate pair information. + + + CONTIG + + + + + + + + + + 1.25 + wego + WEGO native format used by the Web Gene Ontology Annotation Plot application. Tab-delimited format with gene names and others GO IDs (columns) with one annotation record per line. + + + WEGO + + + + + + + + + + 1.25 + rpkm + Tab-delimited format for gene expression levels table, calculated as Reads Per Kilobase per Million (RPKM) mapped reads. + Gene expression levels table format + + + For example a 1kb transcript with 1000 alignments in a sample of 10 million reads (out of which 8 million reads can be mapped) will have RPKM = 1000/(1 * 8) = 125 + RPKM + + + + + + + + + 1.25 + tar + TAR archive file format generated by the Unix-based utility tar. + TAR + Tarball + tar + + + For example a 1kb transcript with 1000 alignments in a sample of 10 million reads (out of which 8 million reads can be mapped) will have RPKM = 1000/(1 * 8) = 125 + TAR format + + + + + + + + + + + 1.25 + chain + The CHAIN format describes a pairwise alignment that allow gaps in both sequences simultaneously and is used by the UCSC Genome Browser. + + + CHAIN + https://genome.ucsc.edu/goldenPath/help/chain.html + + + + + + + + + + 1.25 + net + The NET file format is used to describe the data that underlie the net alignment annotations in the UCSC Genome Browser. + + + NET + https://genome.ucsc.edu/goldenPath/help/net.html + + + + + + + + + + 1.25 + qmap + Format of QMAP files generated for methylation data from an internal BGI pipeline. + + + QMAP + + + + + + + + + + 1.25 + ga + An emerging format for high-level Galaxy workflow description. + Galaxy workflow format + GalaxyWF + ga + + + gxformat2 + https://github.com/galaxyproject/gxformat2 + + + + + + + + + + 1.25 + wmv + The proprietary native video format of various Microsoft programs such as Windows Media Player. + Windows Media Video format + Windows movie file format + + + WMV + + + + + + + + + + 1.25 + zip + ZIP is an archive file format that supports lossless data compression. + ZIP + + + A ZIP file may contain one or more files or directories that may have been compressed. + ZIP format + + + + + + + + + + + 1.25 + lsm + Zeiss' proprietary image format based on TIFF. + + + LSM files are the default data export for the Zeiss LSM series confocal microscopes (e.g. LSM 510, LSM 710). In addition to the image data, LSM files contain most imaging settings. + LSM + + + + + + + + + 1.25 + gz + gzip + GNU zip compressed file format common to Unix-based operating systems. + GNU Zip + gz + gzip + + + GZIP format + + + + + + + + + + + 1.25 + avi + Audio Video Interleaved (AVI) format is a multimedia container format for AVI files, that allows synchronous audio-with-video playback. + Audio Video Interleaved + + + AVI + + + + + + + + + + + 1.25 + trackdb + A declaration file format for UCSC browsers track dataset display charateristics. + + + TrackDB + + + + + + + + + + 1.25 + cigar + Compact Idiosyncratic Gapped Alignment Report format is a compressed (run-length encoded) pairwise alignment format. It is useful for representing long (e.g. genomic) pairwise alignments. + CIGAR + + + CIGAR format + http://wiki.bits.vib.be/index.php/CIGAR/ + + + + + + + + + + 1.25 + stl + STL is a file format native to the stereolithography CAD software created by 3D Systems. The format is used to save and share surface-rendered 3D images and also for 3D printing. + stl + + + Stereolithography format + + + + + + + + + + 1.25 + u3d + U3D (Universal 3D) is a compressed file format and data structure for 3D computer graphics. It contains 3D model information such as triangle meshes, lighting, shading, motion data, lines and points with color and structure. + Universal 3D + Universal 3D format + + + U3D + + + + + + + + + + 1.25 + tex + Bitmap image format used for storing textures. + + + Texture files can create the appearance of different surfaces and can be applied to both 2D and 3D objects. Note the file extension .tex is also used for LaTex documents which are a completely different format and they are NOT interchangeable. + Texture file format + + + + + + + + + + 1.25 + py + Format for scripts writtenin Python - a widely used high-level programming language for general-purpose programming. + Python + Python program + py + + + Python script + + + + + + + + + + 1.25 + mp4 + A digital multimedia container format most commonly used to store video and audio. + MP4 + + + MPEG-4 + + + + + + + + + + + 1.25 + pl + Format for scripts written in Perl - a family of high-level, general-purpose, interpreted, dynamic programming languages. + Perl + Perl program + pl + + + Perl script + + + + + + + + + + 1.25 + r + Format for scripts written in the R language - an open source programming language and software environment for statistical computing and graphics that is supported by the R Foundation for Statistical Computing. + R + R program + + + R script + + + + + + + + + + 1.25 + rmd + A file format for making dynamic documents (R Markdown scripts) with the R language. + + + R markdown + https://rmarkdown.rstudio.com/articles_intro.html + + + + + + + + + 1.25 + This duplicates an existing concept (http://edamontology.org/format_3549). + 1.26 + + An open file format from the Neuroimaging Informatics Technology Initiative (NIfTI) commonly used to store brain imaging data obtained using Magnetic Resonance Imaging (MRI) methods. + + + NIFTI format + true + + + + + + + + + 1.25 + pickle + Format used by Python pickle module for serializing and de-serializing a Python object structure. + + + pickle + https://docs.python.org/2/library/pickle.html + + + + + + + + + 1.25 + npy + The standard binary file format used by NumPy - a fundamental package for scientific computing with Python - for persisting a single arbitrary NumPy array on disk. The format stores all of the shape and dtype information necessary to reconstruct the array correctly. + NumPy + npy + + + NumPy format + + + + + + + + + 1.25 + repz + Format of repertoire (archive) files that can be read by SimToolbox (a MATLAB toolbox for structured illumination fluorescence microscopy) or alternatively extracted with zip file archiver software. + + + SimTools repertoire file format + https://pdfs.semanticscholar.org/5f25/f1cc6cdf2225fe22dc6fd4fc0296d486a85c.pdf + + + + + + + + + 1.25 + cfg + A configuration file used by various programs to store settings that are specific to their respective software. + + + Configuration file format + + + + + + + + + 1.25 + zst + Format used by the Zstandard real-time compression algorithm. + Zstandard compression format + Zstandard-compressed file format + zst + + + Zstandard format + https://github.com/facebook/zstd/blob/master/doc/zstd_compression_format.md + + + + + + + + + + 1.25 + m + The file format for MATLAB scripts or functions. + MATLAB + m + + + MATLAB script + + + + + + + + + + + + + + + + 1.26 + + + + A data format for specifying parameter estimation problems in systems biology. + + + PEtab + + + + + + + + + + 1.26 + + + g.vcf + g.vcf.gz + Genomic Variant Call Format (gVCF) is a version of VCF that includes not only the positions that are variant when compared to a reference genome, but also the non-variant positions as ranges, including metrics of confidence that the positions in the range are actually non-variant e.g. minimum read-depth and genotype quality. + g.vcf + g.vcf.gz + + + gVCF + + + + + + + + + + + + + + 1.26 + + + cml + + Chemical Markup Language (CML) is an XML-based format for encoding detailed information about a wide range of chemical concepts. + ChemML + + + cml + + + + + + + + + + + + + + + + + + + 1.26 + + + cif + + Crystallographic Information File (CIF) is a data exchange standard file format for Crystallographic Information and related Structural Science data. + + + cif + + + + + + + + + + + + + 1.26 + + + json + + + + + + + + + + Format for describing the capabilities of a biosimulation tool including the modeling frameworks, simulation algorithms, and modeling formats that it supports, as well as metadata such as a list of the interfaces, programming languages, and operating systems supported by the tool; a link to download the tool; a list of the authors of the tool; and the license to the tool. + + + BioSimulators format for the specifications of biosimulation tools + + + + + + + + + + 1.26 + + + + Outlines the syntax and semantics of the input and output arguments for command-line interfaces for biosimulation tools. + + + BioSimulators standard for command-line interfaces for biosimulation tools + + + + + + + + + + 1.26 + Data format derived from the standard PDB format, which enables user to incorporate parameters for charge and radius to the existing PDB data file. + + + PQR + + + + + + + + + + + 1.26 + Data format used in AutoDock 4 for storing atomic coordinates, partial atomic charges and AutoDock atom types for both receptors and ligands. + + + PDBQT + + + + + + + + + + + + 1.26 + + + msp + MSP is a data format for mass spectrometry data. + + + NIST Text file format for storing MS∕MS spectra (m∕z and intensity of mass peaks) along with additional annotations for each spectrum. A single MSP file can thus contain single or multiple spectra. This format is frequently used to share spectra libraries. + MSP + + + + + + + + + + beta12orEarlier + true + Function + A function that processes a set of inputs and results in a set of outputs, or associates arguments (inputs) with values (outputs). + Computational method + Computational operation + Computational procedure + Computational subroutine + Function (programming) + Lambda abstraction + Mathematical function + Mathematical operation + Computational tool + Process + sumo:Function + + + Special cases are: a) An operation that consumes no input (has no input arguments). Such operation is either a constant function, or an operation depending only on the underlying state. b) An operation that may modify the underlying state but has no output. c) The singular-case operation with no input or output, that still may modify the underlying state. + Operation + + + + + + + + + + + + + + + + + + + + + + + Function + Operation is a function that is computational. It typically has input(s) and output(s), which are always data. + + + + + Computational tool + Computational tool provides one or more operations. + + + + + Process + Process can have a function (as its quality/attribute), and can also perform an operation with inputs and outputs. + + + + + + + + + beta12orEarlier + Search or query a data resource and retrieve entries and / or annotation. + Database retrieval + Query + + + Query and retrieval + + + + + + + + + beta12orEarlier + beta13 + + + Search database to retrieve all relevant references to a particular entity or entry. + + Data retrieval (database cross-reference) + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Annotate an entity (typically a biological or biomedical database entity) with terms from a controlled vocabulary. + + + This is a broad concept and is used a placeholder for other, more specific concepts. + Annotation + + + + + + + + + + + + + + + beta12orEarlier + true + Generate an index of (typically a file of) biological data. + Data indexing + Database indexing + + + Indexing + + + + + + + + + beta12orEarlier + 1.6 + + + Analyse an index of biological data. + + Data index analysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Retrieve basic information about a molecular sequence. + + Annotation retrieval (sequence) + true + + + + + + + + + + beta12orEarlier + Generate a molecular sequence by some means. + Sequence generation (nucleic acid) + Sequence generation (protein) + + + Sequence generation + + + + + + + + + + beta12orEarlier + Edit or change a molecular sequence, either randomly or specifically. + + + Sequence editing + + + + + + + + + beta12orEarlier + Merge two or more (typically overlapping) molecular sequences. + Sequence splicing + Paired-end merging + Paired-end stitching + Read merging + Read stitching + + + Sequence merging + + + + + + + + + + beta12orEarlier + Convert a molecular sequence from one type to another. + + + Sequence conversion + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate sequence complexity, for example to find low-complexity regions in sequences. + + + Sequence complexity calculation + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate sequence ambiguity, for example identity regions in protein or nucleotide sequences with many ambiguity codes. + + + Sequence ambiguity calculation + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate character or word composition or frequency of a molecular sequence. + + + Sequence composition calculation + + + + + + + + + + + + + + + beta12orEarlier + Find and/or analyse repeat sequences in (typically nucleotide) sequences. + + + Repeat sequences include tandem repeats, inverted or palindromic repeats, DNA microsatellites (Simple Sequence Repeats or SSRs), interspersed repeats, maximal duplications and reverse, complemented and reverse complemented repeats etc. Repeat units can be exact or imperfect, in tandem or dispersed, of specified or unspecified length. + Repeat sequence analysis + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Discover new motifs or conserved patterns in sequences or sequence alignments (de-novo discovery). + Motif discovery + + + Motifs and patterns might be conserved or over-represented (occur with improbable frequency). + Sequence motif discovery + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Find (scan for) known motifs, patterns and regular expressions in molecular sequence(s). + Motif scanning + Sequence signature detection + Sequence signature recognition + Motif detection + Motif recognition + Motif search + Sequence motif detection + Sequence motif search + Sequence profile search + + + Sequence motif recognition + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Find motifs shared by molecular sequences. + + + Sequence motif comparison + + + + + + + + + beta12orEarlier + beta13 + + + Analyse the sequence, conformational or physicochemical properties of transcription regulatory elements in DNA sequences. + + For example transcription factor binding sites (TFBS) analysis to predict accessibility of DNA to binding factors. + Transcription regulatory sequence analysis + true + + + + + + + + + beta12orEarlier + 1.19 + + Identify common, conserved (homologous) or synonymous transcriptional regulatory motifs (transcription factor binding sites). + + + Conserved transcription regulatory sequence identification + true + + + + + + + + + beta12orEarlier + 1.18 + + + Extract, calculate or predict non-positional (physical or chemical) properties of a protein from processing a protein (3D) structure. + + + Protein property calculation (from structure) + true + + + + + + + + + beta12orEarlier + Analyse flexibility and motion in protein structure. + CG analysis + MD analysis + Protein Dynamics Analysis + Trajectory analysis + Nucleic Acid Dynamics Analysis + Protein flexibility and motion analysis + Protein flexibility prediction + Protein motion prediction + + + Use this concept for analysis of flexible and rigid residues, local chain deformability, regions undergoing conformational change, molecular vibrations or fluctuational dynamics, domain motions or other large-scale structural transitions in a protein structure. + Simulation analysis + + + + + + + + + + + + + + + + beta12orEarlier + Identify or screen for 3D structural motifs in protein structure(s). + Protein structural feature identification + Protein structural motif recognition + + + This includes conserved substructures and conserved geometry, such as spatial arrangement of secondary structure or protein backbone. Methods might use structure alignment, structural templates, searches for similar electrostatic potential and molecular surface shape, surface-mapping of phylogenetic information etc. + Structural motif discovery + + + + + + + + + + + + + + + + beta12orEarlier + Identify structural domains in a protein structure from first principles (for example calculations on structural compactness). + + + Protein domain recognition + + + + + + + + + beta12orEarlier + Analyse the architecture (spatial arrangement of secondary structure) of protein structure(s). + + + Protein architecture analysis + + + + + + + + + + + + + + + beta12orEarlier + WHATIF: SymShellFiveXML + WHATIF: SymShellOneXML + WHATIF: SymShellTenXML + WHATIF: SymShellTwoXML + WHATIF:ListContactsNormal + WHATIF:ListContactsRelaxed + WHATIF:ListSideChainContactsNormal + WHATIF:ListSideChainContactsRelaxed + Calculate or extract inter-atomic, inter-residue or residue-atom contacts, distances and interactions in protein structure(s). + + + Residue interaction calculation + + + + + + + + + + + + + + + beta12orEarlier + WHATIF:CysteineTorsions + WHATIF:ResidueTorsions + WHATIF:ResidueTorsionsBB + WHATIF:ShowTauAngle + Calculate, visualise or analyse phi/psi angles of a protein structure. + Backbone torsion angle calculation + Cysteine torsion angle calculation + Tau angle calculation + Torsion angle calculation + + + Protein geometry calculation + + + + + + + + + + beta12orEarlier + Extract, calculate or predict non-positional (physical or chemical) properties of a protein, including any non-positional properties of the molecular sequence, from processing a protein sequence or 3D structure. + Protein property rendering + Protein property calculation (from sequence) + Protein property calculation (from structure) + Protein structural property calculation + Structural property calculation + + + This includes methods to render and visualise the properties of a protein sequence, and a residue-level search for properties such as solvent accessibility, hydropathy, secondary structure, ligand-binding etc. + Protein property calculation + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Immunogen design + Predict antigenicity, allergenicity / immunogenicity, allergic cross-reactivity etc of peptides and proteins. + Antigenicity prediction + Immunogenicity prediction + B cell peptide immunogenicity prediction + Hopp and Woods plotting + MHC peptide immunogenicity prediction + + + Immunological system are cellular or humoral. In vaccine design to induces a cellular immune response, methods must search for antigens that can be recognized by the major histocompatibility complex (MHC) molecules present in T lymphocytes. If a humoral response is required, antigens for B cells must be identified. + This includes methods that generate a graphical rendering of antigenicity of a protein, such as a Hopp and Woods plot. + This is usually done in the development of peptide-specific antibodies or multi-epitope vaccines. Methods might use sequence data (for example motifs) and / or structural data. + Peptide immunogenicity prediction + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict, recognise and identify positional features in molecular sequences such as key functional sites or regions. + Sequence feature prediction + Sequence feature recognition + Motif database search + SO:0000110 + + + Look at "Protein feature detection" (http://edamontology.org/operation_3092) and "Nucleic acid feature detection" (http://edamontology.org/operation_0415) in case more specific terms are needed. + Sequence feature detection + + + + + + + + + beta12orEarlier + beta13 + + + Extract a sequence feature table from a sequence database entry. + + Data retrieval (feature table) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query the features (in a feature table) of molecular sequence(s). + + Feature table query + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Compare the feature tables of two or more molecular sequences. + Feature comparison + Feature table comparison + + + Sequence feature comparison + + + + + + + + + beta12orEarlier + beta13 + + + Display basic information about a sequence alignment. + + Data retrieval (sequence alignment) + true + + + + + + + + + + + + + + + beta12orEarlier + Analyse a molecular sequence alignment. + + + Sequence alignment analysis + + + + + + + + + + beta12orEarlier + Compare (typically by aligning) two molecular sequence alignments. + + + See also 'Sequence profile alignment'. + Sequence alignment comparison + + + + + + + + + + beta12orEarlier + Convert a molecular sequence alignment from one type to another (for example amino acid to coding nucleotide sequence). + + + Sequence alignment conversion + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) physicochemical property data of nucleic acids. + + Nucleic acid property processing + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate or predict physical or chemical properties of nucleic acid molecules, including any non-positional properties of the molecular sequence. + + + Nucleic acid property calculation + + + + + + + + + + + + + + + beta12orEarlier + Predict splicing alternatives or transcript isoforms from analysis of sequence data. + Alternative splicing analysis + Alternative splicing detection + Differential splicing analysis + Splice transcript prediction + + + Alternative splicing prediction + + + + + + + + + + + + + + + + beta12orEarlier + Detect frameshifts in DNA sequences, including frameshift sites and signals, and frameshift errors from sequencing projects. + Frameshift error detection + + + Methods include sequence alignment (if related sequences are available) and word-based sequence comparison. + Frameshift detection + + + + + + + + + beta12orEarlier + Detect vector sequences in nucleotide sequence, typically by comparison to a set of known vector sequences. + + + Vector sequence detection + + + + + + + + + + + + beta12orEarlier + Predict secondary structure of protein sequences. + Secondary structure prediction (protein) + + + Methods might use amino acid composition, local sequence information, multiple sequence alignments, physicochemical features, estimated energy content, statistical algorithms, hidden Markov models, support vector machines, kernel machines, neural networks etc. + Protein secondary structure prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict super-secondary structure of protein sequence(s). + + + Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc. + Protein super-secondary structure prediction + + + + + + + + + + beta12orEarlier + Predict and/or classify transmembrane proteins or transmembrane (helical) domains or regions in protein sequences. + + + Transmembrane protein prediction + + + + + + + + + + + + + + + beta12orEarlier + Analyse transmembrane protein(s), typically by processing sequence and / or structural data, and write an informative report for example about the protein and its transmembrane domains / regions. + + + Use this (or child) concept for analysis of transmembrane domains (buried and exposed faces), transmembrane helices, helix topology, orientation, inter-helical contacts, membrane dipping (re-entrant) loops and other secondary structure etc. Methods might use pattern discovery, hidden Markov models, sequence alignment, structural profiles, amino acid property analysis, comparison to known domains or some combination (hybrid methods). + Transmembrane protein analysis + + + + + + + + + beta12orEarlier + This is a "organisational class" not very useful for annotation per se. + 1.19 + + + + + Predict tertiary structure of a molecular (biopolymer) sequence. + + Structure prediction + true + + + + + + + + + + + + + + + + beta12orEarlier + Predict contacts, non-covalent interactions and distance (constraints) between amino acids in protein sequences. + Residue interaction prediction + Contact map prediction + Protein contact map prediction + + + Methods usually involve multiple sequence alignment analysis. + Residue contact prediction + + + + + + + + + beta12orEarlier + 1.19 + + Analyse experimental protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc. + + + Protein interaction raw data analysis + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify or predict protein-protein interactions, interfaces, binding sites etc in protein sequences. + + + Protein-protein interaction prediction (from protein sequence) + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify or predict protein-protein interactions, interfaces, binding sites etc in protein structures. + + + Protein-protein interaction prediction (from protein structure) + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a network of protein interactions. + Protein interaction network comparison + + + Protein interaction network analysis + + + + + + + + + beta12orEarlier + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + Compare two or more biological pathways or networks. + + Pathway or network comparison + true + + + + + + + + + + + + + + + + + beta12orEarlier + Predict RNA secondary structure (for example knots, pseudoknots, alternative structures etc). + RNA shape prediction + + + Methods might use RNA motifs, predicted intermolecular contacts, or RNA sequence-structure compatibility (inverse RNA folding). + RNA secondary structure prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse some aspect of RNA/DNA folding, typically by processing sequence and/or structural data. For example, compute folding energies such as minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants. + Nucleic acid folding + Nucleic acid folding modelling + Nucleic acid folding prediction + Nucleic acid folding energy calculation + + + Nucleic acid folding analysis + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on restriction enzymes or restriction enzyme sites. + + Data retrieval (restriction enzyme annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Identify genetic markers in DNA sequences. + + A genetic marker is any DNA sequence of known chromosomal location that is associated with and specific to a particular gene or trait. This includes short sequences surrounding a SNP, Sequence-Tagged Sites (STS) which are well suited for PCR amplification, a longer minisatellites sequence etc. + Genetic marker identification + true + + + + + + + + + + + + + + + + beta12orEarlier + Generate a genetic (linkage) map of a DNA sequence (typically a chromosome) showing the relative positions of genetic markers based on estimation of non-physical distances. + Functional mapping + Genetic cartography + Genetic map construction + Genetic map generation + Linkage mapping + QTL mapping + + + Mapping involves ordering genetic loci along a chromosome and estimating the physical distance between loci. A genetic map shows the relative (not physical) position of known genes and genetic markers. + This includes mapping of the genetic architecture of dynamic complex traits (functional mapping), e.g. by characterisation of the underlying quantitative trait loci (QTLs) or nucleotides (QTNs). + Genetic mapping + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse genetic linkage. + + + For example, estimate how close two genes are on a chromosome by calculating how often they are transmitted together to an offspring, ascertain whether two genes are linked and parental linkage, calculate linkage map distance etc. + Linkage analysis + + + + + + + + + + + + + + + + beta12orEarlier + Calculate codon usage statistics and create a codon usage table. + Codon usage table construction + + + Codon usage table generation + + + + + + + + + + beta12orEarlier + Compare two or more codon usage tables. + + + Codon usage table comparison + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse codon usage in molecular sequences or process codon usage data (e.g. a codon usage table). + Codon usage data analysis + Codon usage table analysis + + + Codon usage analysis + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Identify and plot third base position variability in a nucleotide sequence. + + + Base position variability plotting + + + + + + + + + beta12orEarlier + Find exact character or word matches between molecular sequences without full sequence alignment. + + + Sequence word comparison + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate a sequence distance matrix or otherwise estimate genetic distances between molecular sequences. + Phylogenetic distance matrix generation + Sequence distance calculation + Sequence distance matrix construction + + + Sequence distance matrix generation + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more molecular sequences, identify and remove redundant sequences based on some criteria. + + + Sequence redundancy removal + + + + + + + + + + + + + + + + + beta12orEarlier + Build clusters of similar sequences, typically using scores from pair-wise alignment or other comparison of the sequences. + Sequence cluster construction + Sequence cluster generation + + + The clusters may be output or used internally for some other purpose. + Sequence clustering + + + + + + + + + + + + + + + + + + beta12orEarlier + Align (identify equivalent sites within) molecular sequences. + Sequence alignment construction + Sequence alignment generation + Consensus-based sequence alignment + Constrained sequence alignment + Multiple sequence alignment (constrained) + Sequence alignment (constrained) + + + Includes methods that align sequence profiles (representing sequence alignments): ethods might perform one-to-one, one-to-many or many-to-many comparisons. See also 'Sequence alignment comparison'. + See also "Read mapping" + Sequence alignment + + + + + + + + + + beta12orEarlier + beta13 + + + Align two or more molecular sequences of different types (for example genomic DNA to EST, cDNA or mRNA). + + Hybrid sequence alignment construction + true + + + + + + + + + beta12orEarlier + Align molecular sequences using sequence and structural information. + Sequence alignment (structure-based) + + + Structure-based sequence alignment + + + + + + + + + + + + + + + + + beta12orEarlier + Align (superimpose) molecular tertiary structures. + Structural alignment + 3D profile alignment + 3D profile-to-3D profile alignment + Structural profile alignment + + + Includes methods that align structural (3D) profiles or templates (representing structures or structure alignments) - including methods that perform one-to-one, one-to-many or many-to-many comparisons. + Structure alignment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate some type of sequence profile (for example a hidden Markov model) from a sequence alignment. + Sequence profile construction + + + Sequence profile generation + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate some type of structural (3D) profile or template from a structure or structure alignment. + Structural profile construction + Structural profile generation + + + 3D profile generation + + + + + + + + + beta12orEarlier + 1.19 + + Align sequence profiles (representing sequence alignments). + + + Profile-profile alignment + true + + + + + + + + + beta12orEarlier + 1.19 + + Align structural (3D) profiles or templates (representing structures or structure alignments). + + + 3D profile-to-3D profile alignment + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Align molecular sequence(s) to sequence profile(s), or profiles to other profiles. A profile typically represents a sequence alignment. + Profile-profile alignment + Profile-to-profile alignment + Sequence-profile alignment + Sequence-to-profile alignment + + + A sequence profile typically represents a sequence alignment. Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Sequence profile alignment + + + + + + + + + beta12orEarlier + 1.19 + + Align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment). + + + Sequence-to-3D-profile alignment + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Align molecular sequence to structure in 3D space (threading). + Sequence-structure alignment + Sequence-3D profile alignment + Sequence-to-3D-profile alignment + + + This includes sequence-to-3D-profile alignment methods, which align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment) - methods might perform one-to-one, one-to-many or many-to-many comparisons. + Use this concept for methods that evaluate sequence-structure compatibility by assessing residue interactions in 3D. Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Protein threading + + + + + + + + + + + + + + beta12orEarlier + Recognize (predict and identify) known protein structural domains or folds in protein sequence(s) which (typically) are not accompanied by any significant sequence similarity to know structures. + Domain prediction + Fold prediction + Protein domain prediction + Protein fold prediction + Protein fold recognition + + + Methods use some type of mapping between sequence and fold, for example secondary structure prediction and alignment, profile comparison, sequence properties, homologous sequence search, kernel machines etc. Domains and folds might be taken from SCOP or CATH. + Fold recognition + + + + + + + + + beta12orEarlier + (jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved. + 1.17 + + Search for and retrieve data concerning or describing some core data, as distinct from the primary data that is being described. + + + This includes documentation, general information and other metadata on entities such as databases, database entries and tools. + Metadata retrieval + true + + + + + + + + + + + + + + + beta12orEarlier + Query scientific literature, in search for articles, article data, concepts, named entities, or for statistics. + + + Literature search + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Text analysis + Process and analyse text (typically scientific literature) to extract information from it. + Literature mining + Text analytics + Text data mining + Article analysis + Literature analysis + + + Text mining + + + + + + + + + + beta12orEarlier + Perform in-silico (virtual) PCR. + + + Virtual PCR + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Design or predict oligonucleotide primers for PCR and DNA amplification etc. + PCR primer prediction + Primer design + PCR primer design (based on gene structure) + PCR primer design (for conserved primers) + PCR primer design (for gene transcription profiling) + PCR primer design (for genotyping polymorphisms) + PCR primer design (for large scale sequencing) + PCR primer design (for methylation PCRs) + Primer quality estimation + + + Primer design involves predicting or selecting primers that are specific to a provided PCR template. Primers can be designed with certain properties such as size of product desired, primer size etc. The output might be a minimal or overlapping primer set. + This includes predicting primers based on gene structure, promoters, exon-exon junctions, predicting primers that are conserved across multiple genomes or species, primers for for gene transcription profiling, for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs), for large scale sequencing, or for methylation PCRs. + PCR primer design + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict and/or optimize oligonucleotide probes for DNA microarrays, for example for transcription profiling of genes, or for genomes and gene families. + Microarray probe prediction + + + Microarray probe design + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Combine (align and merge) overlapping fragments of a DNA sequence to reconstruct the original sequence. + Metagenomic assembly + Sequence assembly editing + + + For example, assemble overlapping reads from paired-end sequencers into contigs (a contiguous sequence corresponding to read overlaps). Or assemble contigs, for example ESTs and genomic DNA fragments, depending on the detected fragment overlaps. + Sequence assembly + + + + + + + + + + beta12orEarlier + 1.16 + + Standardize or normalize microarray data. + + + Microarray data standardisation and normalisation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) SAGE, MPSS or SBS experimental data. + + Sequencing-based expression profile data processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Perform cluster analysis of expression data to identify groups with similar expression profiles, for example by clustering. + Gene expression clustering + Gene expression profile clustering + + + Expression profile clustering + + + + + + + + + beta12orEarlier + The measurement of the activity (expression) of multiple genes in a cell, tissue, sample etc., in order to get an impression of biological function. + Feature expression analysis + Functional profiling + Gene expression profile construction + Gene expression profile generation + Gene expression quantification + Gene transcription profiling + Non-coding RNA profiling + Protein profiling + RNA profiling + mRNA profiling + + + Gene expression profiling generates some sort of gene expression profile, for example from microarray data. + Gene expression profiling + + + + + + + + + + beta12orEarlier + Comparison of expression profiles. + Gene expression comparison + Gene expression profile comparison + + + Expression profile comparison + + + + + + + + + beta12orEarlier + beta12orEarlier + + Interpret (in functional terms) and annotate gene expression data. + + + Functional profiling + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse EST or cDNA sequences. + + For example, identify full-length cDNAs from EST sequences or detect potential EST antisense transcripts. + EST and cDNA sequence analysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identify and select targets for protein structural determination. + + Methods will typically navigate a graph of protein families of known structure. + Structural genomics target selection + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Assign secondary structure from protein coordinate or experimental data. + + + Includes secondary structure assignment from circular dichroism (CD) spectroscopic data, and from protein coordinate data. + Protein secondary structure assignment + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Assign a protein tertiary structure (3D coordinates), or other aspects of protein structure, from raw experimental data. + NOE assignment + Structure calculation + + + Protein structure assignment + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + WHATIF: CorrectedPDBasXML + WHATIF: UseFileDB + WHATIF: UseResidueDB + Evaluate the quality or correctness a protein three-dimensional model. + Protein model validation + Residue validation + + + Model validation might involve checks for atomic packing, steric clashes (bumps), volume irregularities, agreement with electron density maps, number of amino acid residues, percentage of residues with missing or bad atoms, irregular Ramachandran Z-scores, irregular Chi-1 / Chi-2 normality scores, RMS-Z score on bonds and angles etc. + The PDB file format has had difficulties, inconsistencies and errors. Corrections can include identifying a meaningful sequence, removal of alternate atoms, correction of nomenclature problems, removal of incomplete residues and spurious waters, addition or removal of water, modelling of missing side chains, optimisation of cysteine bonds, regularisation of bond lengths, bond angles and planarities etc. + This includes methods that calculate poor quality residues. The scoring function to identify poor quality residues may consider residues with bad atoms or atoms with high B-factor, residues in the N- or C-terminal position, adjacent to an unstructured residue, non-canonical residues, glycine and proline (or adjacent to these such residues). + Protein structure validation + + + + + + + + + + + beta12orEarlier + WHATIF: CorrectedPDBasXML + Refine (after evaluation) a model of a molecular structure (typically a protein structure) to reduce steric clashes, volume irregularities etc. + Protein model refinement + + + Molecular model refinement + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree. + Phlyogenetic tree construction + Phylogenetic reconstruction + Phylogenetic tree generation + + + Phylogenetic trees are usually constructed from a set of sequences from which an alignment (or data matrix) is calculated. + Phylogenetic inference + + + + + + + + + + + + + + + + beta12orEarlier + Analyse an existing phylogenetic tree or trees, typically to detect features or make predictions. + Phylogenetic tree analysis + Phylogenetic modelling + + + Phylgenetic modelling is the modelling of trait evolution and prediction of trait values using phylogeny as a basis. + Phylogenetic analysis + + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees. + + + For example, to produce a consensus tree, subtrees, supertrees, calculate distances between trees or test topological similarity between trees (e.g. a congruence index) etc. + Phylogenetic tree comparison + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Edit a phylogenetic tree. + + + Phylogenetic tree editing + + + + + + + + + + + + + + + beta12orEarlier + Comparison of a DNA sequence to orthologous sequences in different species and inference of a phylogenetic tree, in order to identify regulatory elements such as transcription factor binding sites (TFBS). + Phylogenetic shadowing + + + Phylogenetic shadowing is a type of footprinting where many closely related species are used. A phylogenetic 'shadow' represents the additive differences between individual sequences. By masking or 'shadowing' variable positions a conserved sequence is produced with few or none of the variations, which is then compared to the sequences of interest to identify significant regions of conservation. + Phylogenetic footprinting + + + + + + + + + + beta12orEarlier + 1.20 + + Simulate the folding of a protein. + + + Protein folding simulation + true + + + + + + + + + beta12orEarlier + 1.19 + + Predict the folding pathway(s) or non-native structural intermediates of a protein. + + + Protein folding pathway prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + Map and model the effects of single nucleotide polymorphisms (SNPs) on protein structure(s). + + + Protein SNP mapping + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict the effect of point mutation on a protein structure, in terms of strucural effects and protein folding, stability and function. + Variant functional prediction + Protein SNP mapping + Protein mutation modelling + Protein stability change prediction + + + Protein SNP mapping maps and modesl the effects of single nucleotide polymorphisms (SNPs) on protein structure(s). Methods might predict silent or pathological mutations. + Variant effect prediction + + + + + + + + + beta12orEarlier + beta12orEarlier + + Design molecules that elicit an immune response (immunogens). + + + Immunogen design + true + + + + + + + + + beta12orEarlier + 1.18 + + Predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases). + + + Zinc finger prediction + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate Km, Vmax and derived data for an enzyme reaction. + + + Enzyme kinetics calculation + + + + + + + + + beta12orEarlier + Reformat a file of data (or equivalent entity in memory). + File format conversion + File formatting + File reformatting + Format conversion + Reformatting + + + Formatting + + + + + + + + + beta12orEarlier + Test and validate the format and content of a data file. + File format validation + + + Format validation + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Visualise, plot or render (graphically) biomolecular data such as molecular sequences or structures. + Data visualisation + Rendering + Molecular visualisation + Plotting + + + This includes methods to render and visualise molecules. + Visualisation + + + + + + + + + + + + + + + + + beta12orEarlier + Search a sequence database by sequence comparison and retrieve similar sequences. Sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression. + + + This excludes direct retrieval methods (e.g. the dbfetch program). + Sequence database search + + + + + + + + + + + + + + + beta12orEarlier + Search a tertiary structure database, typically by sequence and/or structure comparison, or some other means, and retrieve structures and associated data. + + + Structure database search + + + + + + + + + beta12orEarlier + 1.8 + + Search a secondary protein database (of classification information) to assign a protein sequence(s) to a known protein family or group. + + + Protein secondary database search + true + + + + + + + + + beta12orEarlier + 1.8 + + + Screen a sequence against a motif or pattern database. + + Motif database search + true + + + + + + + + + beta12orEarlier + 1.4 + + + Search a database of sequence profiles with a query sequence. + + Sequence profile database search + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Search a database of transmembrane proteins, for example for sequence or structural similarities. + + Transmembrane protein database search + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a database and retrieve sequences with a given entry code or accession number. + + Sequence retrieval (by code) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a database and retrieve sequences containing a given keyword. + + Sequence retrieval (by keyword) + true + + + + + + + + + + + beta12orEarlier + Search a sequence database and retrieve sequences that are similar to a query sequence. + Sequence database search (by sequence) + Structure database search (by sequence) + + + Sequence similarity search + + + + + + + + + beta12orEarlier + 1.8 + + Search a sequence database and retrieve sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression. + + + Sequence database search (by motif or pattern) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database and retrieve sequences of a given amino acid composition. + + Sequence database search (by amino acid composition) + true + + + + + + + + + beta12orEarlier + Search a sequence database and retrieve sequences with a specified property, typically a physicochemical or compositional property. + + + Sequence database search (by property) + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database and retrieve sequences that are similar to a query sequence using a word-based method. + + Word-based methods (for example BLAST, gapped BLAST, MEGABLAST, WU-BLAST etc.) are usually quicker than alignment-based methods. They may or may not handle gaps. + Sequence database search (by sequence using word-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database and retrieve sequences that are similar to a query sequence using a sequence profile-based method, or with a supplied profile as query. + + This includes tools based on PSI-BLAST. + Sequence database search (by sequence using profile-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database for sequences that are similar to a query sequence using a local alignment-based method. + + This includes tools based on the Smith-Waterman algorithm or FASTA. + Sequence database search (by sequence using local alignment-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search sequence(s) or a sequence database for sequences that are similar to a query sequence using a global alignment-based method. + + This includes tools based on the Needleman and Wunsch algorithm. + Sequence database search (by sequence using global alignment-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a DNA database (for example a database of conserved sequence tags) for matches to Sequence-Tagged Site (STS) primer sequences. + + STSs are genetic markers that are easily detected by the polymerase chain reaction (PCR) using specific primers. + Sequence database search (by sequence for primer sequences) + true + + + + + + + + + beta12orEarlier + 1.6 + + Search sequence(s) or a sequence database for sequences which match a set of peptide masses, for example a peptide mass fingerprint from mass spectrometry. + + + Sequence database search (by molecular weight) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search sequence(s) or a sequence database for sequences of a given isoelectric point. + + Sequence database search (by isoelectric point) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a tertiary structure database and retrieve entries with a given entry code or accession number. + + Structure retrieval (by code) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a tertiary structure database and retrieve entries containing a given keyword. + + Structure retrieval (by keyword) + true + + + + + + + + + beta12orEarlier + 1.8 + + Search a tertiary structure database and retrieve structures with a sequence similar to a query sequence. + + + Structure database search (by sequence) + true + + + + + + + + + + beta12orEarlier + Search a database of molecular structure and retrieve structures that are similar to a query structure. + Structure database search (by structure) + Structure retrieval by structure + + + Structural similarity search + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Annotate a molecular sequence record with terms from a controlled vocabulary. + + + Sequence annotation + + + + + + + + + + beta12orEarlier + Annotate a genome sequence with terms from a controlled vocabulary. + Functional genome annotation + Metagenome annotation + Structural genome annotation + + + Genome annotation + + + + + + + + + beta12orEarlier + Generate the reverse and / or complement of a nucleotide sequence. + Nucleic acid sequence reverse and complement + Reverse / complement + Reverse and complement + + + Reverse complement + + + + + + + + + + beta12orEarlier + Generate a random sequence, for example, with a specific character composition. + + + Random sequence generation + + + + + + + + + + + + + + + + beta12orEarlier + Generate digest fragments for a nucleotide sequence containing restriction sites. + Nucleic acid restriction digest + + + Restriction digest + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Cleave a protein sequence into peptide fragments (corresponding to enzymatic or chemical cleavage). + + + This is often followed by calculation of protein fragment masses (http://edamontology.org/operation_0398). + Protein sequence cleavage + + + + + + + + + beta12orEarlier + Mutate a molecular sequence a specified amount or shuffle it to produce a randomised sequence with the same overall composition. + + + Sequence mutation and randomisation + + + + + + + + + beta12orEarlier + Mask characters in a molecular sequence (replacing those characters with a mask character). + + + For example, SNPs or repeats in a DNA sequence might be masked. + Sequence masking + + + + + + + + + beta12orEarlier + Cut (remove) characters or a region from a molecular sequence. + + + Sequence cutting + + + + + + + + + beta12orEarlier + Create (or remove) restriction sites in sequences, for example using silent mutations. + + + Restriction site creation + + + + + + + + + + + + + + + beta12orEarlier + Translate a DNA sequence into protein. + + + DNA translation + + + + + + + + + + + + + + + beta12orEarlier + Transcribe a nucleotide sequence into mRNA sequence(s). + + + DNA transcription + + + + + + + + + beta12orEarlier + 1.8 + + Calculate base frequency or word composition of a nucleotide sequence. + + + Sequence composition calculation (nucleic acid) + true + + + + + + + + + beta12orEarlier + 1.8 + + Calculate amino acid frequency or word composition of a protein sequence. + + + Sequence composition calculation (protein) + true + + + + + + + + + + beta12orEarlier + Find (and possibly render) short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences. + + + Repeat sequence detection + + + + + + + + + + beta12orEarlier + Analyse repeat sequence organisation such as periodicity. + + + Repeat sequence organisation analysis + + + + + + + + + beta12orEarlier + 1.12 + + Analyse the hydrophobic, hydrophilic or charge properties of a protein structure. + + + Protein hydropathy calculation (from structure) + true + + + + + + + + + + + + + + + beta12orEarlier + WHATIF:AtomAccessibilitySolvent + WHATIF:AtomAccessibilitySolventPlus + Calculate solvent accessible or buried surface areas in protein or other molecular structures. + Protein solvent accessibility calculation + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Accessible surface calculation + + + + + + + + + beta12orEarlier + 1.12 + + Identify clusters of hydrophobic or charged residues in a protein structure. + + + Protein hydropathy cluster calculation + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate whether a protein structure has an unusually large net charge (dipole moment). + + + Protein dipole moment calculation + + + + + + + + + beta12orEarlier + WHATIF:AtomAccessibilityMolecular + WHATIF:AtomAccessibilityMolecularPlus + WHATIF:ResidueAccessibilityMolecular + WHATIF:ResidueAccessibilitySolvent + WHATIF:ResidueAccessibilityVacuum + WHATIF:ResidueAccessibilityVacuumMolecular + WHATIF:TotAccessibilityMolecular + WHATIF:TotAccessibilitySolvent + Calculate the molecular surface area in proteins and other macromolecules. + Protein atom surface calculation + Protein residue surface calculation + Protein surface and interior calculation + Protein surface calculation + + + Molecular surface calculation + + + + + + + + + beta12orEarlier + 1.12 + + Identify or predict catalytic residues, active sites or other ligand-binding sites in protein structures. + + + Protein binding site prediction (from structure) + true + + + + + + + + + + + + + + + beta12orEarlier + Analyse the interaction of protein with nucleic acids, e.g. RNA or DNA-binding sites, interfaces etc. + Protein-nucleic acid binding site analysis + Protein-DNA interaction analysis + Protein-RNA interaction analysis + + + Protein-nucleic acid interaction analysis + + + + + + + + + beta12orEarlier + Decompose a structure into compact or globular fragments (protein peeling). + + + Protein peeling + + + + + + + + + + + + + + + beta12orEarlier + Calculate a matrix of distance between residues (for example the C-alpha atoms) in a protein structure. + + + Protein distance matrix calculation + + + + + + + + + + + + + + + beta12orEarlier + Calculate a residue contact map (typically all-versus-all inter-residue contacts) for a protein structure. + Protein contact map calculation + + + Contact map calculation + + + + + + + + + + + + + + + beta12orEarlier + Calculate clusters of contacting residues in protein structures. + + + This includes for example clusters of hydrophobic or charged residues, or clusters of contacting residues which have a key structural or functional role. + Residue cluster calculation + + + + + + + + + + + + + + + beta12orEarlier + WHATIF:HasHydrogenBonds + WHATIF:ShowHydrogenBonds + WHATIF:ShowHydrogenBondsM + Identify potential hydrogen bonds between amino acids and other groups. + + + The output might include the atoms involved in the bond, bond geometric parameters and bond enthalpy. + Hydrogen bond calculation + + + + + + + + + beta12orEarlier + 1.12 + + + Calculate non-canonical atomic interactions in protein structures. + + Residue non-canonical interaction detection + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate a Ramachandran plot of a protein structure. + + + Ramachandran plot calculation + + + + + + + + + + beta12orEarlier + 1.22 + + Validate a Ramachandran plot of a protein structure. + + + Ramachandran plot validation + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate the molecular weight of a protein sequence or fragments. + Peptide mass calculation + + + Protein molecular weight calculation + + + + + + + + + + + + + + + beta12orEarlier + Predict extinction coefficients or optical density of a protein sequence. + + + Protein extinction coefficient calculation + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate pH-dependent properties from pKa calculations of a protein sequence. + Protein pH-dependent property calculation + + + Protein pKa calculation + + + + + + + + + + beta12orEarlier + 1.12 + + Hydropathy calculation on a protein sequence. + + + Protein hydropathy calculation (from sequence) + true + + + + + + + + + + + + + + + + beta12orEarlier + Plot a protein titration curve. + + + Protein titration curve plotting + + + + + + + + + + + + + + + + beta12orEarlier + Calculate isoelectric point of a protein sequence. + + + Protein isoelectric point calculation + + + + + + + + + + + + + + + beta12orEarlier + Estimate hydrogen exchange rate of a protein sequence. + + + Protein hydrogen exchange rate calculation + + + + + + + + + beta12orEarlier + Calculate hydrophobic or hydrophilic / charged regions of a protein sequence. + + + Protein hydrophobic region calculation + + + + + + + + + + + + + + + beta12orEarlier + Calculate aliphatic index (relative volume occupied by aliphatic side chains) of a protein. + + + Protein aliphatic index calculation + + + + + + + + + + + + + + + + beta12orEarlier + Calculate the hydrophobic moment of a peptide sequence and recognize amphiphilicity. + + + Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation. + Protein hydrophobic moment plotting + + + + + + + + + + + + + + + beta12orEarlier + Predict the stability or globularity of a protein sequence, whether it is intrinsically unfolded etc. + + + Protein globularity prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict the solubility or atomic solvation energy of a protein sequence. + + + Protein solubility prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict crystallizability of a protein sequence. + + + Protein crystallizability prediction + + + + + + + + + beta12orEarlier + (jison)Too fine-grained. + 1.17 + + Detect or predict signal peptides (and typically predict subcellular localisation) of eukaryotic proteins. + + + Protein signal peptide detection (eukaryotes) + true + + + + + + + + + beta12orEarlier + (jison)Too fine-grained. + 1.17 + + Detect or predict signal peptides (and typically predict subcellular localisation) of bacterial proteins. + + + Protein signal peptide detection (bacteria) + true + + + + + + + + + beta12orEarlier + 1.12 + + Predict MHC class I or class II binding peptides, promiscuous binding peptides, immunogenicity etc. + + + MHC peptide immunogenicity prediction + true + + + + + + + + + beta12orEarlier + 1.6 + + + Predict, recognise and identify positional features in protein sequences such as functional sites or regions and secondary structure. + + Methods typically involve scanning for known motifs, patterns and regular expressions. + Protein feature prediction (from sequence) + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict, recognise and identify features in nucleotide sequences such as functional sites or regions, typically by scanning for known motifs, patterns and regular expressions. + Sequence feature detection (nucleic acid) + Nucleic acid feature prediction + Nucleic acid feature recognition + Nucleic acid site detection + Nucleic acid site prediction + Nucleic acid site recognition + + + Methods typically involve scanning for known motifs, patterns and regular expressions. + This is placeholder but does not comprehensively include all child concepts - please inspect other concepts under "Nucleic acid sequence analysis" for example "Gene prediction", for other feature detection operations. + Nucleic acid feature detection + + + + + + + + + + + + + + + + beta12orEarlier + Predict antigenic determinant sites (epitopes) in protein sequences. + Antibody epitope prediction + Epitope prediction + B cell epitope mapping + B cell epitope prediction + Epitope mapping (MHC Class I) + Epitope mapping (MHC Class II) + T cell epitope mapping + T cell epitope prediction + + + Epitope mapping is commonly done during vaccine design. + Epitope mapping + + + + + + + + + + + + + + + beta12orEarlier + Predict post-translation modification sites in protein sequences. + PTM analysis + PTM prediction + PTM site analysis + PTM site prediction + Post-translation modification site prediction + Post-translational modification analysis + Protein post-translation modification site prediction + Acetylation prediction + Acetylation site prediction + Dephosphorylation prediction + Dephosphorylation site prediction + GPI anchor prediction + GPI anchor site prediction + GPI modification prediction + GPI modification site prediction + Glycosylation prediction + Glycosylation site prediction + Hydroxylation prediction + Hydroxylation site prediction + Methylation prediction + Methylation site prediction + N-myristoylation prediction + N-myristoylation site prediction + N-terminal acetylation prediction + N-terminal acetylation site prediction + N-terminal myristoylation prediction + N-terminal myristoylation site prediction + Palmitoylation prediction + Palmitoylation site prediction + Phosphoglycerylation prediction + Phosphoglycerylation site prediction + Phosphorylation prediction + Phosphorylation site prediction + Phosphosite localization + Prenylation prediction + Prenylation site prediction + Pupylation prediction + Pupylation site prediction + S-nitrosylation prediction + S-nitrosylation site prediction + S-sulfenylation prediction + S-sulfenylation site prediction + Succinylation prediction + Succinylation site prediction + Sulfation prediction + Sulfation site prediction + Sumoylation prediction + Sumoylation site prediction + Tyrosine nitration prediction + Tyrosine nitration site prediction + Ubiquitination prediction + Ubiquitination site prediction + + + Methods might predict sites of methylation, N-terminal myristoylation, N-terminal acetylation, sumoylation, palmitoylation, phosphorylation, sulfation, glycosylation, glycosylphosphatidylinositol (GPI) modification sites (GPI lipid anchor signals) etc. + Post-translational modification site prediction + + + + + + + + + + + + + + + + beta12orEarlier + Detect or predict signal peptides and signal peptide cleavage sites in protein sequences. + + + Methods might use sequence motifs and features, amino acid composition, profiles, machine-learned classifiers, etc. + Protein signal peptide detection + + + + + + + + + beta12orEarlier + 1.12 + + Predict catalytic residues, active sites or other ligand-binding sites in protein sequences. + + + Protein binding site prediction (from sequence) + true + + + + + + + + + beta12orEarlier + Predict or detect RNA and DNA-binding binding sites in protein sequences. + Protein-nucleic acid binding detection + Protein-nucleic acid binding prediction + Protein-nucleic acid binding site detection + Protein-nucleic acid binding site prediction + Zinc finger prediction + + + This includes methods that predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases). + Nucleic acids-binding site prediction + + + + + + + + + beta12orEarlier + 1.20 + + Predict protein sites that are key to protein folding, such as possible sites of nucleation or stabilisation. + + + Protein folding site prediction + true + + + + + + + + + + + + + + + beta12orEarlier + Detect or predict cleavage sites (enzymatic or chemical) in protein sequences. + + + Protein cleavage site prediction + + + + + + + + + beta12orEarlier + 1.8 + + Predict epitopes that bind to MHC class I molecules. + + + Epitope mapping (MHC Class I) + true + + + + + + + + + beta12orEarlier + 1.8 + + Predict epitopes that bind to MHC class II molecules. + + + Epitope mapping (MHC Class II) + true + + + + + + + + + beta12orEarlier + 1.12 + + Detect, predict and identify whole gene structure in DNA sequences. This includes protein coding regions, exon-intron structure, regulatory regions etc. + + + Whole gene prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + Detect, predict and identify genetic elements such as promoters, coding regions, splice sites, etc in DNA sequences. + + + Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc. + Gene component prediction + true + + + + + + + + + beta12orEarlier + Detect or predict transposons, retrotransposons / retrotransposition signatures etc. + + + Transposon prediction + + + + + + + + + beta12orEarlier + Detect polyA signals in nucleotide sequences. + PolyA detection + PolyA prediction + PolyA signal prediction + Polyadenylation signal detection + Polyadenylation signal prediction + + + PolyA signal detection + + + + + + + + + + + + + + + beta12orEarlier + Detect quadruplex-forming motifs in nucleotide sequences. + Quadruplex structure prediction + + + Quadruplex (4-stranded) structures are formed by guanine-rich regions and are implicated in various important biological processes and as therapeutic targets. + Quadruplex formation site detection + + + + + + + + + + + + + + + beta12orEarlier + Find CpG rich regions in a nucleotide sequence or isochores in genome sequences. + CpG island and isochores detection + CpG island and isochores rendering + + + An isochore is long region (> 3 KB) of DNA with very uniform GC content, in contrast to the rest of the genome. Isochores tend tends to have more genes, higher local melting or denaturation temperatures, and different flexibility. Methods might calculate fractional GC content or variation of GC content, predict methylation status of CpG islands etc. This includes methods that visualise CpG rich regions in a nucleotide sequence, for example plot isochores in a genome sequence. + CpG island and isochore detection + + + + + + + + + + + + + + + beta12orEarlier + Find and identify restriction enzyme cleavage sites (restriction sites) in (typically) DNA sequences, for example to generate a restriction map. + + + Restriction site recognition + + + + + + + + + + beta12orEarlier + Identify or predict nucleosome exclusion sequences (nucleosome free regions) in DNA. + Nucleosome exclusion sequence prediction + Nucleosome formation sequence prediction + + + Nucleosome position prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify, predict or analyse splice sites in nucleotide sequences. + Splice prediction + + + Methods might require a pre-mRNA or genomic DNA sequence. + Splice site prediction + + + + + + + + + beta12orEarlier + 1.19 + + Predict whole gene structure using a combination of multiple methods to achieve better predictions. + + + Integrated gene prediction + true + + + + + + + + + beta12orEarlier + Find operons (operators, promoters and genes) in bacteria genes. + + + Operon prediction + + + + + + + + + beta12orEarlier + Predict protein-coding regions (CDS or exon) or open reading frames in nucleotide sequences. + ORF finding + ORF prediction + + + Coding region prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict selenocysteine insertion sequence (SECIS) in a DNA sequence. + Selenocysteine insertion sequence (SECIS) prediction + + + SECIS elements are around 60 nucleotides in length with a stem-loop structure directs the cell to translate UGA codons as selenocysteines. + SECIS element prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict transcriptional regulatory motifs, patterns, elements or regions in DNA sequences. + Regulatory element prediction + Transcription regulatory element prediction + Conserved transcription regulatory sequence identification + Translational regulatory element prediction + + + This includes comparative genomics approaches that identify common, conserved (homologous) or synonymous transcriptional regulatory elements. For example cross-species comparison of transcription factor binding sites (TFBS). Methods might analyse co-regulated or co-expressed genes, or sets of oppositely expressed genes. + This includes promoters, enhancers, silencers and boundary elements / insulators, regulatory protein or transcription factor binding sites etc. Methods might be specific to a particular genome and use motifs, word-based / grammatical methods, position-specific frequency matrices, discriminative pattern analysis etc. + Transcriptional regulatory element prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict translation initiation sites, possibly by searching a database of sites. + + + Translation initiation site prediction + + + + + + + + + beta12orEarlier + Identify or predict whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in DNA sequences. + + + Methods might recognize CG content, CpG islands, splice sites, polyA signals etc. + Promoter prediction + + + + + + + + + beta12orEarlier + Identify, predict or analyse cis-regulatory elements in DNA sequences (TATA box, Pribnow box, SOS box, CAAT box, CCAAT box, operator etc.) or in RNA sequences (e.g. riboswitches). + Transcriptional regulatory element prediction (DNA-cis) + Transcriptional regulatory element prediction (RNA-cis) + + + Cis-regulatory elements (cis-elements) regulate the expression of genes located on the same strand from which the element was transcribed. Cis-elements are found in the 5' promoter region of the gene, in an intron, or in the 3' untranslated region. Cis-elements are often binding sites of one or more trans-acting factors. They also occur in RNA sequences, e.g. a riboswitch is a region of an mRNA molecule that bind a small target molecule that regulates the gene's activity. + cis-regulatory element prediction + + + + + + + + + beta12orEarlier + 1.19 + + Identify, predict or analyse cis-regulatory elements (for example riboswitches) in RNA sequences. + + + Transcriptional regulatory element prediction (RNA-cis) + true + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict functional RNA sequences with a gene regulatory role (trans-regulatory elements) or targets. + Functional RNA identification + Transcriptional regulatory element prediction (trans) + + + Trans-regulatory elements regulate genes distant from the gene from which they were transcribed. + trans-regulatory element prediction + + + + + + + + + beta12orEarlier + Identify matrix/scaffold attachment regions (MARs/SARs) in DNA sequences. + MAR/SAR prediction + Matrix/scaffold attachment site prediction + + + MAR/SAR sites often flank a gene or gene cluster and are found nearby cis-regulatory sequences. They might contribute to transcription regulation. + S/MAR prediction + + + + + + + + + beta12orEarlier + Identify or predict transcription factor binding sites in DNA sequences. + + + Transcription factor binding site prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict exonic splicing enhancers (ESE) in exons. + + + An exonic splicing enhancer (ESE) is 6-base DNA sequence motif in an exon that enhances or directs splicing of pre-mRNA or hetero-nuclear RNA (hnRNA) into mRNA. + Exonic splicing enhancer prediction + + + + + + + + + + beta12orEarlier + Evaluate molecular sequence alignment accuracy. + Sequence alignment quality evaluation + + + Evaluation might be purely sequence-based or use structural information. + Sequence alignment validation + + + + + + + + + beta12orEarlier + Analyse character conservation in a molecular sequence alignment, for example to derive a consensus sequence. + Residue conservation analysis + + + Use this concept for methods that calculate substitution rates, estimate relative site variability, identify sites with biased properties, derive a consensus sequence, or identify highly conserved or very poorly conserved sites, regions, blocks etc. + Sequence alignment analysis (conservation) + + + + + + + + + + beta12orEarlier + Analyse correlations between sites in a molecular sequence alignment. + + + This is typically done to identify possible covarying positions and predict contacts or structural constraints in protein structures. + Sequence alignment analysis (site correlation) + + + + + + + + + beta12orEarlier + Detects chimeric sequences (chimeras) from a sequence alignment. + Chimeric sequence detection + + + A chimera includes regions from two or more phylogenetically distinct sequences. They are usually artifacts of PCR and are thought to occur when a prematurely terminated amplicon reanneals to another DNA strand and is subsequently copied to completion in later PCR cycles. + Chimera detection + + + + + + + + + beta12orEarlier + Detect recombination (hotspots and coldspots) and identify recombination breakpoints in a sequence alignment. + Sequence alignment analysis (recombination detection) + + + Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on. + Recombination detection + + + + + + + + + beta12orEarlier + Identify insertion, deletion and duplication events from a sequence alignment. + Indel discovery + Sequence alignment analysis (indel detection) + + + Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on. + Indel detection + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Predict nucleosome formation potential of DNA sequences. + + Nucleosome formation potential prediction + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate a thermodynamic property of DNA or DNA/RNA, such as melting temperature, enthalpy and entropy. + + + Nucleic acid thermodynamic property calculation + + + + + + + + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA melting profile. + + + A melting profile is used to visualise and analyse partly melted DNA conformations. + Nucleic acid melting profile plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA stitch profile. + + + A stitch profile represents the alternative conformations that partly melted DNA can adopt in a temperature range. + Nucleic acid stitch profile plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA melting curve. + + + Nucleic acid melting curve plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA probability profile. + + + Nucleic acid probability profile plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA temperature profile. + + + Nucleic acid temperature profile plotting + + + + + + + + + + + + + + + beta12orEarlier + Calculate curvature and flexibility / stiffness of a nucleotide sequence. + + + This includes properties such as. + Nucleic acid curvature calculation + + + + + + + + + beta12orEarlier + Identify or predict microRNA sequences (miRNA) and precursors or microRNA targets / binding sites in a DNA sequence. + miRNA prediction + microRNA detection + microRNA target detection + + + miRNA target prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict tRNA genes in genomic sequences (tRNA). + + + tRNA gene prediction + + + + + + + + + + + + + + + beta12orEarlier + Assess binding specificity of putative siRNA sequence(s), for example for a functional assay, typically with respect to designing specific siRNA sequences. + + + siRNA binding specificity prediction + + + + + + + + + beta12orEarlier + 1.18 + + Predict secondary structure of protein sequence(s) using multiple methods to achieve better predictions. + + + Protein secondary structure prediction (integrated) + true + + + + + + + + + beta12orEarlier + Predict helical secondary structure of protein sequences. + + + Protein secondary structure prediction (helices) + + + + + + + + + beta12orEarlier + Predict turn structure (for example beta hairpin turns) of protein sequences. + + + Protein secondary structure prediction (turns) + + + + + + + + + beta12orEarlier + Predict open coils, non-regular secondary structure and intrinsically disordered / unstructured regions of protein sequences. + + + Protein secondary structure prediction (coils) + + + + + + + + + beta12orEarlier + Predict cysteine bonding state and disulfide bond partners in protein sequences. + + + Disulfide bond prediction + + + + + + + + + beta12orEarlier + Not sustainable to have protein type-specific concepts. + 1.19 + + Predict G protein-coupled receptors (GPCR). + + + GPCR prediction + true + + + + + + + + + beta12orEarlier + Not sustainable to have protein type-specific concepts. + 1.19 + + Analyse G-protein coupled receptor proteins (GPCRs). + + + GPCR analysis + true + + + + + + + + + + + + + + + + + beta12orEarlier + Predict tertiary structure (backbone and side-chain conformation) of protein sequences. + Protein folding pathway prediction + + + This includes methods that predict the folding pathway(s) or non-native structural intermediates of a protein. + Protein structure prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Predict structure of DNA or RNA. + + + Methods might identify thermodynamically stable or evolutionarily conserved structures. + Nucleic acid structure prediction + + + + + + + + + + beta12orEarlier + Predict tertiary structure of protein sequence(s) without homologs of known structure. + de novo structure prediction + + + Ab initio structure prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Build a three-dimensional protein model based on known (for example homologs) structures. + Comparative modelling + Homology modelling + Homology structure modelling + Protein structure comparative modelling + + + The model might be of a whole, part or aspect of protein structure. Molecular modelling methods might use sequence-structure alignment, structural templates, molecular dynamics, energy minimisation etc. + Protein modelling + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Model the structure of a protein in complex with a small molecule or another macromolecule. + Docking simulation + Macromolecular docking + + + This includes protein-protein interactions, protein-nucleic acid, protein-ligand binding etc. Methods might predict whether the molecules are likely to bind in vivo, their conformation when bound, the strength of the interaction, possible mutations to achieve bonding and so on. + Molecular docking + + + + + + + + + + + beta12orEarlier + Model protein backbone conformation. + Protein modelling (backbone) + Design optimization + Epitope grafting + Scaffold search + Scaffold selection + + + Methods might require a preliminary C(alpha) trace. + Scaffold selection, scaffold search, epitope grafting and design optimization are stages of backbone modelling done during rational vaccine design. + Backbone modelling + + + + + + + + + beta12orEarlier + Model, analyse or edit amino acid side chain conformation in protein structure, optimize side-chain packing, hydrogen bonding etc. + Protein modelling (side chains) + Antibody optimisation + Antigen optimisation + Antigen resurfacing + Rotamer likelihood prediction + + + Antibody optimisation is to optimize the antibody-interacting surface of the antigen (epitope). Antigen optimisation is to optimize the antigen-interacting surface of the antibody (paratope). Antigen resurfacing is to resurface the antigen by varying the sequence of non-epitope regions. + Methods might use a residue rotamer library. + This includes rotamer likelihood prediction: the prediction of rotamer likelihoods for all 20 amino acid types at each position in a protein structure, where output typically includes, for each residue position, the likelihoods for the 20 amino acid types with estimated reliability of the 20 likelihoods. + Side chain modelling + + + + + + + + + beta12orEarlier + Model loop conformation in protein structures. + Protein loop modelling + Protein modelling (loops) + + + Loop modelling + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Model protein-ligand (for example protein-peptide) binding using comparative modelling or other techniques. + Ligand-binding simulation + Protein-peptide docking + + + Methods aim to predict the position and orientation of a ligand bound to a protein receptor or enzyme. + Virtual screening is used in drug discovery to search libraries of small molecules in order to identify those molecules which are most likely to bind to a drug target (typically a protein receptor or enzyme). + Protein-ligand docking + + + + + + + + + + + + + + + + beta12orEarlier + Predict or optimise RNA sequences (sequence pools) with likely secondary and tertiary structure for in vitro selection. + Nucleic acid folding family identification + Structured RNA prediction and optimisation + + + RNA inverse folding + + + + + + + + + beta12orEarlier + Find single nucleotide polymorphisms (SNPs) - single nucleotide change in base positions - between sequences. Typically done for sequences from a high-throughput sequencing experiment that differ from a reference genome and which might, especially by reference to population frequency or functional data, indicate a polymorphism. + SNP calling + SNP discovery + Single nucleotide polymorphism detection + + + This includes functional SNPs for large-scale genotyping purposes, disease-associated non-synonymous SNPs etc. + SNP detection + + + + + + + + + + + + + + + beta12orEarlier + Generate a physical (radiation hybrid) map of genetic markers in a DNA sequence using provided radiation hybrid (RH) scores for one or more markers. + + + Radiation Hybrid Mapping + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Map the genetic architecture of dynamic complex traits. + + This can involve characterisation of the underlying quantitative trait loci (QTLs) or nucleotides (QTNs). + Functional mapping + true + + + + + + + + + + + + + + + beta12orEarlier + Infer haplotypes, either alleles at multiple loci that are transmitted together on the same chromosome, or a set of single nucleotide polymorphisms (SNPs) on a single chromatid that are statistically associated. + Haplotype inference + Haplotype map generation + Haplotype reconstruction + + + Haplotype inference can help in population genetic studies and the identification of complex disease genes, , and is typically based on aligned single nucleotide polymorphism (SNP) fragments. Haplotype comparison is a useful way to characterize the genetic variation between individuals. An individual's haplotype describes which nucleotide base occurs at each position for a set of common SNPs. Tools might use combinatorial functions (for example parsimony) or a likelihood function or model with optimisation such as minimum error correction (MEC) model, expectation-maximisation algorithm (EM), genetic algorithm or Markov chain Monte Carlo (MCMC). + Haplotype mapping + + + + + + + + + + + + + + + beta12orEarlier + Calculate linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome). + + + Linkage disequilibrium is identified where a combination of alleles (or genetic markers) occurs more or less frequently in a population than expected by chance formation of haplotypes. + Linkage disequilibrium calculation + + + + + + + + + + + + + + + + beta12orEarlier + Predict genetic code from analysis of codon usage data. + + + Genetic code prediction + + + + + + + + + + + + + + + + beta12orEarlier + Render a representation of a distribution that consists of group of data points plotted on a simple scale. + Categorical plot plotting + Dotplot plotting + + + Dot plots are useful when having not too many (e.g. 20) data points for each category. Example: draw a dotplot of sequence similarities identified from word-matching or character comparison. + Dot plot plotting + + + + + + + + + + + + + + + + beta12orEarlier + Align exactly two molecular sequences. + Pairwise alignment + + + Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Pairwise sequence alignment + + + + + + + + + + beta12orEarlier + Align more than two molecular sequences. + Multiple alignment + + + This includes methods that use an existing alignment, for example to incorporate sequences into an alignment, or combine several multiple alignments into a single, improved alignment. + Multiple sequence alignment + + + + + + + + + + beta12orEarlier + 1.6 + + + + Locally align exactly two molecular sequences. + + Local alignment methods identify regions of local similarity. + Pairwise sequence alignment generation (local) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Globally align exactly two molecular sequences. + + Global alignment methods identify similarity across the entire length of the sequences. + Pairwise sequence alignment generation (global) + true + + + + + + + + + beta12orEarlier + Locally align two or more molecular sequences. + Local sequence alignment + Sequence alignment (local) + Smith-Waterman + + + Local alignment methods identify regions of local similarity. + Local alignment + + + + + + + + + + beta12orEarlier + Globally align two or more molecular sequences. + Global sequence alignment + Sequence alignment (global) + + + Global alignment methods identify similarity across the entire length of the sequences. + Global alignment + + + + + + + + + + beta12orEarlier + 1.19 + + Align two or more molecular sequences with user-defined constraints. + + + Constrained sequence alignment + true + + + + + + + + + beta12orEarlier + 1.16 + + Align two or more molecular sequences using multiple methods to achieve higher quality. + + + Consensus-based sequence alignment + true + + + + + + + + + + + + + + + beta12orEarlier + Align multiple sequences using relative gap costs calculated from neighbors in a supplied phylogenetic tree. + Multiple sequence alignment (phylogenetic tree-based) + Multiple sequence alignment construction (phylogenetic tree-based) + Phylogenetic tree-based multiple sequence alignment construction + Sequence alignment (phylogenetic tree-based) + Sequence alignment generation (phylogenetic tree-based) + + + This is supposed to give a more biologically meaningful alignment than standard alignments. + Tree-based sequence alignment + + + + + + + + + beta12orEarlier + 1.6 + + + Align molecular secondary structure (represented as a 1D string). + + Secondary structure alignment generation + true + + + + + + + + + beta12orEarlier + 1.18 + + Align protein secondary structures. + + + Protein secondary structure alignment generation + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Align RNA secondary structures. + RNA secondary structure alignment construction + RNA secondary structure alignment generation + Secondary structure alignment construction (RNA) + + + RNA secondary structure alignment + + + + + + + + + beta12orEarlier + Align (superimpose) exactly two molecular tertiary structures. + Structure alignment (pairwise) + Pairwise protein structure alignment + + + Pairwise structure alignment + + + + + + + + + beta12orEarlier + Align (superimpose) more than two molecular tertiary structures. + Structure alignment (multiple) + Multiple protein structure alignment + + + This includes methods that use an existing alignment. + Multiple structure alignment + + + + + + + + + beta12orEarlier + beta13 + + + Align protein tertiary structures. + + Structure alignment (protein) + true + + + + + + + + + beta12orEarlier + beta13 + + + Align RNA tertiary structures. + + Structure alignment (RNA) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Locally align (superimpose) exactly two molecular tertiary structures. + + Local alignment methods identify regions of local similarity, common substructures etc. + Pairwise structure alignment generation (local) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Globally align (superimpose) exactly two molecular tertiary structures. + + Global alignment methods identify similarity across the entire structures. + Pairwise structure alignment generation (global) + true + + + + + + + + + beta12orEarlier + Locally align (superimpose) two or more molecular tertiary structures. + Structure alignment (local) + Local protein structure alignment + + + Local alignment methods identify regions of local similarity, common substructures etc. + Local structure alignment + + + + + + + + + beta12orEarlier + Globally align (superimpose) two or more molecular tertiary structures. + Structure alignment (global) + Global protein structure alignment + + + Global alignment methods identify similarity across the entire structures. + Global structure alignment + + + + + + + + + beta12orEarlier + 1.16 + + + + Align exactly two molecular profiles. + + Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Profile-profile alignment (pairwise) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Align two or more molecular profiles. + + Sequence alignment generation (multiple profile) + true + + + + + + + + + beta12orEarlier + 1.16 + + + + + Align exactly two molecular Structural (3D) profiles. + + 3D profile-to-3D profile alignment (pairwise) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + + Align two or more molecular 3D profiles. + + Structural profile alignment generation (multiple) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search and retrieve names of or documentation on bioinformatics tools, for example by keyword or which perform a particular function. + + Data retrieval (tool metadata) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search and retrieve names of or documentation on bioinformatics databases or query terms, for example by keyword. + + Data retrieval (database metadata) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for large scale sequencing. + + + PCR primer design (for large scale sequencing) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs). + + + PCR primer design (for genotyping polymorphisms) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for gene transcription profiling. + + + PCR primer design (for gene transcription profiling) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers that are conserved across multiple genomes or species. + + + PCR primer design (for conserved primers) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers based on gene structure. + + + PCR primer design (based on gene structure) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for methylation PCRs. + + + PCR primer design (for methylation PCRs) + true + + + + + + + + + beta12orEarlier + Sequence assembly by combining fragments using an existing backbone sequence, typically a reference genome. + Sequence assembly (mapping assembly) + + + The final sequence will resemble the backbone sequence. Mapping assemblers are usually much faster and less memory intensive than de-novo assemblers. + Mapping assembly + + + + + + + + + + beta12orEarlier + Sequence assembly by combining fragments without the aid of a reference sequence or genome. + De Bruijn graph + Sequence assembly (de-novo assembly) + + + De-novo assemblers are much slower and more memory intensive than mapping assemblers. + De-novo assembly + + + + + + + + + + + beta12orEarlier + The process of assembling many short DNA sequences together such that they represent the original chromosomes from which the DNA originated. + Genomic assembly + Sequence assembly (genome assembly) + Breakend assembly + + + Genome assembly + + + + + + + + + + beta12orEarlier + Sequence assembly for EST sequences (transcribed mRNA). + Sequence assembly (EST assembly) + + + Assemblers must handle (or be complicated by) alternative splicing, trans-splicing, single-nucleotide polymorphism (SNP), recoding, and post-transcriptional modification. + EST assembly + + + + + + + + + + + beta12orEarlier + Make sequence tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. + Tag to gene assignment + + + Sequence tag mapping assigns experimentally obtained sequence tags to known transcripts or annotate potential virtual sequence tags in a genome. + Sequence tag mapping + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) serial analysis of gene expression (SAGE) data. + + SAGE data processing + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) massively parallel signature sequencing (MPSS) data. + + MPSS data processing + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) sequencing by synthesis (SBS) data. + + SBS data processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Generate a heat map of expression data from e.g. microarray data. + Heat map construction + Heatmap generation + + + The heat map usually uses a coloring scheme to represent expression values. They can show how quantitative measurements were influenced by experimental conditions. + Heat map generation + + + + + + + + + + beta12orEarlier + 1.6 + + + Analyse one or more gene expression profiles, typically to interpret them in functional terms. + + Gene expression profile analysis + true + + + + + + + + + + + + + + + + + beta12orEarlier + Map an expression profile to known biological pathways, for example, to identify or reconstruct a pathway. + Pathway mapping + Gene expression profile pathway mapping + Gene to pathway mapping + Gene-to-pathway mapping + + + Expression profile pathway mapping + + + + + + + + + beta12orEarlier + 1.18 + + Assign secondary structure from protein coordinate data. + + + Protein secondary structure assignment (from coordinate data) + true + + + + + + + + + beta12orEarlier + 1.18 + + Assign secondary structure from circular dichroism (CD) spectroscopic data. + + + Protein secondary structure assignment (from CD data) + true + + + + + + + + + beta12orEarlier + 1.7 + + Assign a protein tertiary structure (3D coordinates) from raw X-ray crystallography data. + + + Protein structure assignment (from X-ray crystallographic data) + true + + + + + + + + + beta12orEarlier + 1.7 + + Assign a protein tertiary structure (3D coordinates) from raw NMR spectroscopy data. + + + Protein structure assignment (from NMR data) + true + + + + + + + + + beta12orEarlier + true + Construct a phylogenetic tree from a specific type of data. + Phylogenetic tree construction (data centric) + Phylogenetic tree generation (data centric) + + + Subconcepts of this concept reflect different types of data used to generate a tree, and provide an alternate axis for curation. + Phylogenetic inference (data centric) + + + + + + + + + beta12orEarlier + true + Construct a phylogenetic tree using a specific method. + Phylogenetic tree construction (method centric) + Phylogenetic tree generation (method centric) + + + Subconcepts of this concept reflect different computational methods used to generate a tree, and provide an alternate axis for curation. + Phylogenetic inference (method centric) + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from molecular sequences. + Phylogenetic tree construction (from molecular sequences) + Phylogenetic tree generation (from molecular sequences) + + + Methods typically compare multiple molecular sequence and estimate evolutionary distances and relationships to infer gene families or make functional predictions. + Phylogenetic inference (from molecular sequences) + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from continuous quantitative character data. + Phylogenetic tree construction (from continuous quantitative characters) + Phylogenetic tree generation (from continuous quantitative characters) + + + Phylogenetic inference (from continuous quantitative characters) + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from gene frequency data. + Phylogenetic tree construction (from gene frequencies) + Phylogenetic tree generation (from gene frequencies) + + + Phylogenetic inference (from gene frequencies) + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from polymorphism data including microsatellites, RFLP (restriction fragment length polymorphisms), RAPD (random-amplified polymorphic DNA) and AFLP (amplified fragment length polymorphisms) data. + Phylogenetic tree construction (from polymorphism data) + Phylogenetic tree generation (from polymorphism data) + + + Phylogenetic inference (from polymorphism data) + + + + + + + + + beta12orEarlier + Construct a phylogenetic species tree, for example, from a genome-wide sequence comparison. + Phylogenetic species tree construction + Phylogenetic species tree generation + + + Species tree construction + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by computing a sequence alignment and searching for the tree with the fewest number of character-state changes from the alignment. + Phylogenetic tree construction (parsimony methods) + Phylogenetic tree generation (parsimony methods) + + + This includes evolutionary parsimony (invariants) methods. + Phylogenetic inference (parsimony methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by computing (or using precomputed) distances between sequences and searching for the tree with minimal discrepancies between pairwise distances. + Phylogenetic tree construction (minimum distance methods) + Phylogenetic tree generation (minimum distance methods) + + + This includes neighbor joining (NJ) clustering method. + Phylogenetic inference (minimum distance methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by relating sequence data to a hypothetical tree topology using a model of sequence evolution. + Phylogenetic tree construction (maximum likelihood and Bayesian methods) + Phylogenetic tree generation (maximum likelihood and Bayesian methods) + + + Maximum likelihood methods search for a tree that maximizes a likelihood function, i.e. that is most likely given the data and model. Bayesian analysis estimate the probability of tree for branch lengths and topology, typically using a Monte Carlo algorithm. + Phylogenetic inference (maximum likelihood and Bayesian methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by computing four-taxon trees (4-trees) and searching for the phylogeny that matches most closely. + Phylogenetic tree construction (quartet methods) + Phylogenetic tree generation (quartet methods) + + + Phylogenetic inference (quartet methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by using artificial-intelligence methods, for example genetic algorithms. + Phylogenetic tree construction (AI methods) + Phylogenetic tree generation (AI methods) + + + Phylogenetic inference (AI methods) + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Identify a plausible model of DNA substitution that explains a molecular (DNA or protein) sequence alignment. + Nucleotide substitution modelling + + + DNA substitution modelling + + + + + + + + + beta12orEarlier + Analyse the shape (topology) of a phylogenetic tree. + Phylogenetic tree analysis (shape) + + + Phylogenetic tree topology analysis + + + + + + + + + + beta12orEarlier + Apply bootstrapping or other measures to estimate confidence of a phylogenetic tree. + + + Phylogenetic tree bootstrapping + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Construct a "gene tree" which represents the evolutionary history of the genes included in the study. This can be used to predict families of genes and gene function based on their position in a phylogenetic tree. + Phylogenetic tree analysis (gene family prediction) + + + Gene trees can provide evidence for gene duplication events, as well as speciation events. Where sequences from different homologs are included in a gene tree, subsequent clustering of the orthologs can demonstrate evolutionary history of the orthologs. + Gene tree construction + + + + + + + + + beta12orEarlier + Analyse a phylogenetic tree to identify allele frequency distribution and change that is subject to evolutionary pressures (natural selection, genetic drift, mutation and gene flow). Identify type of natural selection (such as stabilizing, balancing or disruptive). + Phylogenetic tree analysis (natural selection) + + + Stabilizing/purifying (directional) selection favors a single phenotype and tends to decrease genetic diversity as a population stabilizes on a particular trait, selecting out trait extremes or deleterious mutations. In contrast, balancing selection maintain genetic polymorphisms (or multiple alleles), whereas disruptive (or diversifying) selection favors individuals at both extremes of a trait. + Allele frequency distribution analysis + + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees to produce a consensus tree. + Phylogenetic tree construction (consensus) + Phylogenetic tree generation (consensus) + + + Methods typically test for topological similarity between trees using for example a congruence index. + Consensus tree construction + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees to detect subtrees or supertrees. + Phylogenetic sub/super tree detection + Subtree construction + Supertree construction + + + Phylogenetic sub/super tree construction + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees to calculate distances between trees. + + + Phylogenetic tree distances calculation + + + + + + + + + beta12orEarlier + Annotate a phylogenetic tree with terms from a controlled vocabulary. + + + Phylogenetic tree annotation + http://www.evolutionaryontology.org/cdao.owl#CDAOAnnotation + + + + + + + + + beta12orEarlier + 1.12 + + Predict and optimise peptide ligands that elicit an immunological response. + + + Immunogenicity prediction + true + + + + + + + + + + + + + + + beta12orEarlier + Predict or optimise DNA to elicit (via DNA vaccination) an immunological response. + + + DNA vaccine design + + + + + + + + + beta12orEarlier + 1.12 + + Reformat (a file or other report of) molecular sequence(s). + + + Sequence formatting + true + + + + + + + + + beta12orEarlier + 1.12 + + Reformat (a file or other report of) molecular sequence alignment(s). + + + Sequence alignment formatting + true + + + + + + + + + beta12orEarlier + 1.12 + + Reformat a codon usage table. + + + Codon usage table formatting + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Visualise, format or render a molecular sequence or sequences such as a sequence alignment, possibly with sequence features or properties shown. + Sequence rendering + Sequence alignment visualisation + + + Sequence visualisation + + + + + + + + + beta12orEarlier + 1.15 + + Visualise, format or print a molecular sequence alignment. + + + Sequence alignment visualisation + true + + + + + + + + + + + + + + + beta12orEarlier + Visualise, format or render sequence clusters. + Sequence cluster rendering + + + Sequence cluster visualisation + + + + + + + + + + + + + + + + beta12orEarlier + Render or visualise a phylogenetic tree. + Phylogenetic tree rendering + + + Phylogenetic tree visualisation + + + + + + + + + beta12orEarlier + 1.15 + + Visualise RNA secondary structure, knots, pseudoknots etc. + + + RNA secondary structure visualisation + true + + + + + + + + + beta12orEarlier + 1.15 + + Render and visualise protein secondary structure. + + + Protein secondary structure visualisation + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Visualise or render molecular 3D structure, for example a high-quality static picture or animation. + Structure rendering + Protein secondary structure visualisation + RNA secondary structure visualisation + + + This includes visualisation of protein secondary structure such as knots, pseudoknots etc. as well as tertiary and quaternary structure. + Structure visualisation + + + + + + + + + + + + + + + + beta12orEarlier + Visualise microarray or other expression data. + Expression data rendering + Gene expression data visualisation + Microarray data rendering + + + Expression data visualisation + + + + + + + + + beta12orEarlier + 1.19 + + Identify and analyse networks of protein interactions. + + + Protein interaction network visualisation + true + + + + + + + + + + + + + + + beta12orEarlier + Draw or visualise a DNA map. + DNA map drawing + Map rendering + + + Map drawing + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Render a sequence with motifs. + + Sequence motif rendering + true + + + + + + + + + + + + + + + beta12orEarlier + Draw or visualise restriction maps in DNA sequences. + + + Restriction map drawing + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Draw a linear maps of DNA. + + DNA linear map rendering + true + + + + + + + + + beta12orEarlier + DNA circular map rendering + Draw a circular maps of DNA, for example a plasmid map. + + + Plasmid map drawing + + + + + + + + + + + + + + + beta12orEarlier + Visualise operon structure etc. + Operon rendering + + + Operon drawing + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identify folding families of related RNAs. + + Nucleic acid folding family identification + true + + + + + + + + + beta12orEarlier + 1.20 + + Compute energies of nucleic acid folding, e.g. minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants. + + + Nucleic acid folding energy calculation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Retrieve existing annotation (or documentation), typically annotation on a database entity. + + Use this concepts for tools which retrieve pre-existing annotations, not for example prediction methods that might make annotations. + Annotation retrieval + true + + + + + + + + + + + + + + + + beta12orEarlier + Predict the biological or biochemical role of a protein, or other aspects of a protein function. + Protein function analysis + Protein functional analysis + + + For functional properties that can be mapped to a sequence, use 'Sequence feature detection (protein)' instead. + Protein function prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Compare the functional properties of two or more proteins. + + + Protein function comparison + + + + + + + + + beta12orEarlier + 1.6 + + + Submit a molecular sequence to a database. + + Sequence submission + true + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a known network of gene regulation. + Gene regulatory network comparison + Gene regulatory network modelling + Regulatory network comparison + Regulatory network modelling + + + Gene regulatory network analysis + + + + + + + + + beta12orEarlier + WHATIF:UploadPDB + Parse, prepare or load a user-specified data file so that it is available for use. + Data loading + Loading + + + Parsing + + + + + + + + + beta12orEarlier + 1.6 + + + Query a sequence data resource (typically a database) and retrieve sequences and / or annotation. + + This includes direct retrieval methods (e.g. the dbfetch program) but not those that perform calculations on the sequence. + Sequence retrieval + true + + + + + + + + + beta12orEarlier + 1.6 + + + WHATIF:DownloadPDB + WHATIF:EchoPDB + Query a tertiary structure data resource (typically a database) and retrieve structures, structure-related data and annotation. + + This includes direct retrieval methods but not those that perform calculations on the sequence or structure. + Structure retrieval + true + + + + + + + + + + beta12orEarlier + WHATIF:GetSurfaceDots + Calculate the positions of dots that are homogeneously distributed over the surface of a molecule. + + + A dot has three coordinates (x,y,z) and (typically) a color. + Surface rendering + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible surface') for each atom in a structure. + + + Waters are not considered. + Protein atom surface calculation (accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible molecular surface') for each atom in a structure. + + + Waters are not considered. + Protein atom surface calculation (accessible molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible surface') for each residue in a structure. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('vacuum accessible surface') for each residue in a structure. This is the accessibility of the residue when taken out of the protein together with the backbone atoms of any residue it is covalently bound to. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (vacuum accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible molecular surface') for each residue in a structure. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (accessible molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('vacuum molecular surface') for each residue in a structure. This is the accessibility of the residue when taken out of the protein together with the backbone atoms of any residue it is covalently bound to. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (vacuum molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible molecular surface') for a structure as a whole. + + + Protein surface calculation (accessible molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible surface') for a structure as a whole. + + + Protein surface calculation (accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate for each residue in a protein structure all its backbone torsion angles. + + + Backbone torsion angle calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate for each residue in a protein structure all its torsion angles. + + + Full torsion angle calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate for each cysteine (bridge) all its torsion angles. + + + Cysteine torsion angle calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + For each amino acid in a protein structure calculate the backbone angle tau. + + + Tau is the backbone angle N-Calpha-C (angle over the C-alpha). + Tau angle calculation + true + + + + + + + + + beta12orEarlier + WHATIF:ShowCysteineBridge + Detect cysteine bridges (from coordinate data) in a protein structure. + + + Cysteine bridge detection + + + + + + + + + beta12orEarlier + WHATIF:ShowCysteineFree + Detect free cysteines in a protein structure. + + + A free cysteine is neither involved in a cysteine bridge, nor functions as a ligand to a metal. + Free cysteine detection + + + + + + + + + + beta12orEarlier + WHATIF:ShowCysteineMetal + Detect cysteines that are bound to metal in a protein structure. + + + Metal-bound cysteine detection + + + + + + + + + beta12orEarlier + 1.12 + + Calculate protein residue contacts with nucleic acids in a structure. + + + Residue contact calculation (residue-nucleic acid) + true + + + + + + + + + beta12orEarlier + Calculate protein residue contacts with metal in a structure. + Residue-metal contact calculation + + + Protein-metal contact calculation + + + + + + + + + beta12orEarlier + 1.12 + + Calculate ion contacts in a structure (all ions for all side chain atoms). + + + Residue contact calculation (residue-negative ion) + true + + + + + + + + + beta12orEarlier + WHATIF:ShowBumps + Detect 'bumps' between residues in a structure, i.e. those with pairs of atoms whose Van der Waals' radii interpenetrate more than a defined distance. + + + Residue bump detection + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF:SymmetryContact + Calculate the number of symmetry contacts made by residues in a protein structure. + + + A symmetry contact is a contact between two atoms in different asymmetric unit. + Residue symmetry contact calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate contacts between residues and ligands in a protein structure. + + + Residue contact calculation (residue-ligand) + true + + + + + + + + + beta12orEarlier + WHATIF:HasSaltBridge + WHATIF:HasSaltBridgePlus + WHATIF:ShowSaltBridges + WHATIF:ShowSaltBridgesH + Calculate (and possibly score) salt bridges in a protein structure. + + + Salt bridges are interactions between oppositely charged atoms in different residues. The output might include the inter-atomic distance. + Salt bridge calculation + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF:ShowLikelyRotamers + WHATIF:ShowLikelyRotamers100 + WHATIF:ShowLikelyRotamers200 + WHATIF:ShowLikelyRotamers300 + WHATIF:ShowLikelyRotamers400 + WHATIF:ShowLikelyRotamers500 + WHATIF:ShowLikelyRotamers600 + WHATIF:ShowLikelyRotamers700 + WHATIF:ShowLikelyRotamers800 + WHATIF:ShowLikelyRotamers900 + Predict rotamer likelihoods for all 20 amino acid types at each position in a protein structure. + + + Output typically includes, for each residue position, the likelihoods for the 20 amino acid types with estimated reliability of the 20 likelihoods. + Rotamer likelihood prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF:ProlineMutationValue + Calculate for each position in a protein structure the chance that a proline, when introduced at this position, would increase the stability of the whole protein. + + + Proline mutation value calculation + true + + + + + + + + + beta12orEarlier + WHATIF: PackingQuality + Identify poorly packed residues in protein structures. + + + Residue packing validation + + + + + + + + + beta12orEarlier + WHATIF: ImproperQualityMax + WHATIF: ImproperQualitySum + Validate protein geometry, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc. An example is validation of a Ramachandran plot of a protein structure. + Ramachandran plot validation + + + Protein geometry validation + + + + + + + + + + beta12orEarlier + beta12orEarlier + + WHATIF: PDB_sequence + Extract a molecular sequence from a PDB file. + + + PDB file sequence retrieval + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify HET groups in PDB files. + + + A HET group usually corresponds to ligands, lipids, but might also (not consistently) include groups that are attached to amino acids. Each HET group is supposed to have a unique three letter code and a unique name which might be given in the output. + HET group detection + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Determine for residue the DSSP determined secondary structure in three-state (HSC). + + DSSP secondary structure assignment + true + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF: PDBasXML + Reformat (a file or other report of) tertiary structure data. + + + Structure formatting + true + + + + + + + + + + + + + + + beta12orEarlier + Assign cysteine bonding state and disulfide bond partners in protein structures. + + + Protein cysteine and disulfide bond assignment + + + + + + + + + beta12orEarlier + 1.12 + + Identify poor quality amino acid positions in protein structures. + + + Residue validation + true + + + + + + + + + beta12orEarlier + 1.6 + + + WHATIF:MovedWaterPDB + Query a tertiary structure database and retrieve water molecules. + + Structure retrieval (water) + true + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict siRNA duplexes in RNA. + + + siRNA duplex prediction + + + + + + + + + + beta12orEarlier + Refine an existing sequence alignment. + + + Sequence alignment refinement + + + + + + + + + beta12orEarlier + 1.6 + + + Process an EMBOSS listfile (list of EMBOSS Uniform Sequence Addresses). + + Listfile processing + true + + + + + + + + + + beta12orEarlier + Perform basic (non-analytical) operations on a report or file of sequences (which might include features), such as file concatenation, removal or ordering of sequences, creation of subset or a new file of sequences. + + + Sequence file editing + + + + + + + + + beta12orEarlier + 1.6 + + + Perform basic (non-analytical) operations on a sequence alignment file, such as copying or removal and ordering of sequences. + + Sequence alignment file processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) physicochemical property data for small molecules. + + Small molecule data processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Search and retrieve documentation on a bioinformatics ontology. + + Data retrieval (ontology annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Query an ontology and retrieve concepts or relations. + + Data retrieval (ontology concept) + true + + + + + + + + + beta12orEarlier + Identify a representative sequence from a set of sequences, typically using scores from pair-wise alignment or other comparison of the sequences. + + + Representative sequence identification + + + + + + + + + beta12orEarlier + 1.6 + + + Perform basic (non-analytical) operations on a file of molecular tertiary structural data. + + Structure file processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Query a profile data resource and retrieve one or more profile(s) and / or associated annotation. + + This includes direct retrieval methods that retrieve a profile by, e.g. the profile name. + Data retrieval (sequence profile) + true + + + + + + + + + beta12orEarlier + Perform a statistical data operation of some type, e.g. calibration or validation. + Significance testing + Statistical analysis + Statistical test + Statistical testing + Expectation maximisation + Gibbs sampling + Hypothesis testing + Omnibus test + + + Statistical calculation + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate a 3D-1D scoring matrix from analysis of protein sequence and structural data. + 3D-1D scoring matrix construction + + + A 3D-1D scoring matrix scores the probability of amino acids occurring in different structural environments. + 3D-1D scoring matrix generation + + + + + + + + + + + + + + + + beta12orEarlier + Visualise transmembrane proteins, typically the transmembrane regions within a sequence. + Transmembrane protein rendering + + + Transmembrane protein visualisation + + + + + + + + + beta12orEarlier + beta13 + + + An operation performing purely illustrative (pedagogical) purposes. + + Demonstration + true + + + + + + + + + beta12orEarlier + beta13 + + + Query a biological pathways database and retrieve annotation on one or more pathways. + + Data retrieval (pathway or network) + true + + + + + + + + + beta12orEarlier + beta13 + + + Query a database and retrieve one or more data identifiers. + + Data retrieval (identifier) + true + + + + + + + + + + beta12orEarlier + Calculate a density plot (of base composition) for a nucleotide sequence. + + + Nucleic acid density plotting + + + + + + + + + + + + + + + beta12orEarlier + Analyse one or more known molecular sequences. + Sequence analysis (general) + + + Sequence analysis + + + + + + + + + + beta12orEarlier + Analyse molecular sequence motifs. + Sequence motif processing + + + Sequence motif analysis + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) protein interaction data. + + Protein interaction data processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse protein structural data. + Structure analysis (protein) + + + Protein structure analysis + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) annotation of some type, typically annotation on an entry from a biological or biomedical database entity. + + Annotation processing + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse features in molecular sequences. + + Sequence feature analysis + true + + + + + + + + + + + + + + + beta12orEarlier + true + Basic (non-analytical) operations of some data, either a file or equivalent entity in memory, such that the same basic type of data is consumed as input and generated as output. + File handling + File processing + Report handling + Utility operation + Processing + + + Data handling + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse gene expression and regulation data. + + Gene expression analysis + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) one or more structural (3D) profile(s) or template(s) of some type. + + Structural profile processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) an index of (typically a file of) biological data. + + Data index processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) some type of sequence profile. + + Sequence profile processing + true + + + + + + + + + beta12orEarlier + 1.22 + + Analyse protein function, typically by processing protein sequence and/or structural data, and generate an informative report. + + + Protein function analysis + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse, simulate or predict protein folding, typically by processing sequence and / or structural data. For example, predict sites of nucleation or stabilisation key to protein folding. + Protein folding modelling + Protein folding simulation + Protein folding site prediction + + + Protein folding analysis + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse protein secondary structure data. + Secondary structure analysis (protein) + + + Protein secondary structure analysis + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) data on the physicochemical property of a molecule. + + Physicochemical property data processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Predict oligonucleotide primers or probes. + Primer and probe prediction + + + Primer and probe design + + + + + + + + + beta12orEarlier + 1.12 + + Process (read and / or write) data of a specific type, for example applying analytical methods. + + + Operation (typed) + true + + + + + + + + + + + + + + + beta12orEarlier + Search a database (or other data resource) with a supplied query and retrieve entries (or parts of entries) that are similar to the query. + Search + + + Typically the query is compared to each entry and high scoring matches (hits) are returned. For example, a BLAST search of a sequence database. + Database search + + + + + + + + + + + + + + + + beta12orEarlier + Retrieve an entry (or part of an entry) from a data resource that matches a supplied query. This might include some primary data and annotation. The query is a data identifier or other indexed term. For example, retrieve a sequence record with the specified accession number, or matching supplied keywords. + Data extraction + Retrieval + Data retrieval (metadata) + Metadata retrieval + + + Data retrieval + + + + + + + + + beta12orEarlier + true + Predict, recognise, detect or identify some properties of a biomolecule. + Detection + Prediction + Recognition + + + Prediction and recognition + + + + + + + + + beta12orEarlier + true + Compare two or more things to identify similarities. + + + Comparison + + + + + + + + + beta12orEarlier + true + Refine or optimise some data model. + + + Optimisation and refinement + + + + + + + + + + + + + + + beta12orEarlier + true + Model or simulate some biological entity or system, typically using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models. + Mathematical modelling + + + Modelling and simulation + + + + + + + + + beta12orEarlier + beta12orEarlier + + Perform basic operations on some data or a database. + + + Data handling + true + + + + + + + + + beta12orEarlier + true + Validate some data. + Quality control + + + Validation + + + + + + + + + beta12orEarlier + true + Map properties to positions on an biological entity (typically a molecular sequence or structure), or assemble such an entity from constituent parts. + Cartography + + + Mapping + + + + + + + + + beta12orEarlier + true + Design a biological entity (typically a molecular sequence or structure) with specific properties. + + + Design + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) microarray data. + + Microarray data processing + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Process (read and / or write) a codon usage table. + + Codon usage table processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve a codon usage table and / or associated annotation. + + Data retrieval (codon usage table) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a gene expression profile. + + Gene expression profile processing + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Gene set testing + Identify classes of genes or proteins that are over or under-represented in a large set of genes or proteins. For example analysis of a set of genes corresponding to a gene expression profile, annotated with Gene Ontology (GO) concepts, where eventual over-/under-representation of certain GO concept within the studied set of genes is revealed. + Functional enrichment analysis + GSEA + Gene-set over-represenation analysis + Gene set analysis + GO-term enrichment + Gene Ontology concept enrichment + Gene Ontology term enrichment + + + "Gene set analysis" (often used interchangeably or in an overlapping sense with "gene-set enrichment analysis") refers to the functional analysis (term enrichment) of a differentially expressed set of genes, rather than all genes analysed. + Analyse gene expression patterns to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc. + Gene sets can be defined beforehand by biological function, chromosome locations and so on. + The Gene Ontology (GO) is typically used, the input is a set of Gene IDs, and the output of the analysis is typically a ranked list of GO concepts, each associated with a p-value. + Gene-set enrichment analysis + + + + + + + + + + + + + beta12orEarlier + Predict a network of gene regulation. + + + Gene regulatory network prediction + + + + + + + + + beta12orEarlier + 1.12 + + + + Generate, analyse or handle a biological pathway or network. + + Pathway or network processing + true + + + + + + + + + + + + + + + beta12orEarlier + Process (read and / or write) RNA secondary structure data. + + + RNA secondary structure analysis + + + + + + + + + beta12orEarlier + beta13 + + Process (read and / or write) RNA tertiary structure data. + + + Structure processing (RNA) + true + + + + + + + + + + + + + + + beta12orEarlier + Predict RNA tertiary structure. + + + RNA structure prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict DNA tertiary structure. + + + DNA structure prediction + + + + + + + + + beta12orEarlier + 1.12 + + Generate, process or analyse phylogenetic tree or trees. + + + Phylogenetic tree processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) protein secondary structure data. + + Protein secondary structure processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a network of protein interactions. + + Protein interaction network processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) one or more molecular sequences and associated annotation. + + Sequence processing + true + + + + + + + + + beta12orEarlier + 1.6 + + Process (read and / or write) a protein sequence and associated annotation. + + + Sequence processing (protein) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a nucleotide sequence and associated annotation. + + Sequence processing (nucleic acid) + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more molecular sequences. + + + Sequence comparison + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a sequence cluster. + + Sequence cluster processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a sequence feature table. + + Feature table processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Detect, predict and identify genes or components of genes in DNA sequences, including promoters, coding regions, splice sites, etc. + Gene calling + Gene finding + Whole gene prediction + + + Includes methods that predict whole gene structure using a combination of multiple methods to achieve better predictions. + Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc. + Gene prediction + + + + + + + + + + beta12orEarlier + 1.16 + + Classify G-protein coupled receptors (GPCRs) into families and subfamilies. + + + GPCR classification + true + + + + + + + + + beta12orEarlier + Not sustainable to have protein type-specific concepts. + 1.19 + + + Predict G-protein coupled receptor (GPCR) coupling selectivity. + + GPCR coupling selectivity prediction + true + + + + + + + + + beta12orEarlier + 1.6 + + Process (read and / or write) a protein tertiary structure. + + + Structure processing (protein) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility for each atom in a structure. + + + Waters are not considered. + Protein atom surface calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility for each residue in a structure. + + + Protein residue surface calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility of a structure as a whole. + + + Protein surface calculation + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular sequence alignment. + + Sequence alignment processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict protein-protein binding sites. + Protein-protein binding site detection + + + Protein-protein binding site prediction + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular tertiary structure. + + Structure processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Annotate a DNA map of some type with terms from a controlled vocabulary. + + Map annotation + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a protein. + + Data retrieval (protein annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve a phylogenetic tree from a data resource. + + Data retrieval (phylogenetic tree) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a protein interaction. + + Data retrieval (protein interaction annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a protein family. + + Data retrieval (protein family annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on an RNA family. + + Data retrieval (RNA family annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a specific gene. + + Data retrieval (gene annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a specific genotype or phenotype. + + Data retrieval (genotype and phenotype annotation) + true + + + + + + + + + + beta12orEarlier + Compare the architecture of two or more protein structures. + + + Protein architecture comparison + + + + + + + + + + + beta12orEarlier + Identify the architecture of a protein structure. + + + Includes methods that try to suggest the most likely biological unit for a given protein X-ray crystal structure based on crystal symmetry and scoring of putative protein-protein interfaces. + Protein architecture recognition + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + The simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation. + Molecular dynamics simulation + Protein dynamics + + + Molecular dynamics + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a nucleic acid sequence (using methods that are only applicable to nucleic acid sequences). + Sequence analysis (nucleic acid) + Nucleic acid sequence alignment analysis + Sequence alignment analysis (nucleic acid) + + + Nucleic acid sequence analysis + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a protein sequence (using methods that are only applicable to protein sequences). + Sequence analysis (protein) + Protein sequence alignment analysis + Sequence alignment analysis (protein) + + + Protein sequence analysis + + + + + + + + + + + + + + + beta12orEarlier + Analyse known molecular tertiary structures. + + + Structure analysis + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse nucleic acid tertiary structural data. + + + Nucleic acid structure analysis + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular secondary structure. + + Secondary structure processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more molecular tertiary structures. + + + Structure comparison + + + + + + + + + + + + + + + beta12orEarlier + Render a helical wheel representation of protein secondary structure. + Helical wheel rendering + + + Helical wheel drawing + + + + + + + + + + + + + + + + beta12orEarlier + Render a topology diagram of protein secondary structure. + Topology diagram rendering + + + Topology diagram drawing + + + + + + + + + + + + + + + + + + beta12orEarlier + Compare protein tertiary structures. + Structure comparison (protein) + + + Methods might identify structural neighbors, find structural similarities or define a structural core. + Protein structure comparison + + + + + + + + + + + beta12orEarlier + Compare protein secondary structures. + Protein secondary structure + Secondary structure comparison (protein) + Protein secondary structure alignment + + + Protein secondary structure comparison + + + + + + + + + + + + + + + beta12orEarlier + Predict the subcellular localisation of a protein sequence. + Protein cellular localization prediction + Protein subcellular localisation prediction + Protein targeting prediction + + + The prediction might include subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or export (extracellular proteins) of a protein. + Subcellular localisation prediction + + + + + + + + + + beta12orEarlier + 1.12 + + Calculate contacts between residues in a protein structure. + + + Residue contact calculation (residue-residue) + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify potential hydrogen bonds between amino acid residues. + + + Hydrogen bond calculation (inter-residue) + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict the interactions of proteins with other proteins. + Protein-protein interaction detection + Protein-protein binding prediction + Protein-protein interaction prediction + + + Protein interaction prediction + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) codon usage data. + + Codon usage data processing + true + + + + + + + + + + + + + + + beta12orEarlier + Process (read and/or write) expression data from experiments measuring molecules (e.g. omics data), including analysis of one or more expression profiles, typically to interpret them in functional terms. + Expression data analysis + Gene expression analysis + Gene expression data analysis + Gene expression regulation analysis + Metagenomic inference + Microarray data analysis + Protein expression analysis + + + Metagenomic inference is the profiling of phylogenetic marker genes in order to predict metagenome function. + Expression analysis + + + + + + + + + + + beta12orEarlier + 1.6 + + Process (read and / or write) a network of gene regulation. + + + Gene regulatory network processing + true + + + + + + + + + beta12orEarlier + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + Generate, process or analyse a biological pathway or network. + + Pathway or network analysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse SAGE, MPSS or SBS experimental data, typically to identify or quantify mRNA transcripts. + + Sequencing-based expression profile data analysis + true + + + + + + + + + + + + + + + + + beta12orEarlier + Predict, analyse, characterize or model splice sites, splicing events and so on, typically by comparing multiple nucleic acid sequences. + Splicing model analysis + + + Splicing analysis + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse raw microarray data. + + Microarray raw data analysis + true + + + + + + + + + beta12orEarlier + 1.19 + + + + Process (read and / or write) nucleic acid sequence or structural data. + + Nucleic acid analysis + true + + + + + + + + + beta12orEarlier + 1.19 + + + + Process (read and / or write) protein sequence or structural data. + + Protein analysis + true + + + + + + + + + beta12orEarlier + beta13 + + Process (read and / or write) molecular sequence data. + + + Sequence data processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) molecular structural data. + + Structural data processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Process (read and / or write) text. + + Text processing + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Analyse a protein sequence alignment, typically to detect features or make predictions. + + + Protein sequence alignment analysis + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Analyse a protein sequence alignment, typically to detect features or make predictions. + + + Nucleic acid sequence alignment analysis + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Compare two or more nucleic acid sequences. + + + Nucleic acid sequence comparison + true + + + + + + + + + beta12orEarlier + 1.18 + + Compare two or more protein sequences. + + + Protein sequence comparison + true + + + + + + + + + + + + + + + beta12orEarlier + Back-translate a protein sequence into DNA. + + + DNA back-translation + + + + + + + + + beta12orEarlier + 1.8 + + Edit or change a nucleic acid sequence, either randomly or specifically. + + + Sequence editing (nucleic acid) + true + + + + + + + + + beta12orEarlier + 1.8 + + Edit or change a protein sequence, either randomly or specifically. + + + Sequence editing (protein) + true + + + + + + + + + beta12orEarlier + 1.22 + + Generate a nucleic acid sequence by some means. + + + Sequence generation (nucleic acid) + true + + + + + + + + + beta12orEarlier + 1.22 + + Generate a protein sequence by some means. + + + Sequence generation (protein) + true + + + + + + + + + beta12orEarlier + 1.8 + + Visualise, format or render a nucleic acid sequence. + + + Various nucleic acid sequence analysis methods might generate a sequence rendering but are not (for brevity) listed under here. + Nucleic acid sequence visualisation + true + + + + + + + + + beta12orEarlier + 1.8 + + Visualise, format or render a protein sequence. + + + Various protein sequence analysis methods might generate a sequence rendering but are not (for brevity) listed under here. + Protein sequence visualisation + true + + + + + + + + + + + beta12orEarlier + Compare nucleic acid tertiary structures. + Structure comparison (nucleic acid) + + + Nucleic acid structure comparison + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) nucleic acid tertiary structure data. + + Structure processing (nucleic acid) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate a map of a DNA sequence annotated with positional or non-positional features of some type. + + + DNA mapping + + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a DNA map of some type. + + Map data processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse the hydrophobic, hydrophilic or charge properties of a protein (from analysis of sequence or structural information). + + + Protein hydropathy calculation + + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict catalytic residues, active sites or other ligand-binding sites in protein sequences or structures. + Protein binding site detection + Protein binding site prediction + + + Binding site prediction + + + + + + + + + + beta12orEarlier + Build clusters of similar structures, typically using scores from structural alignment methods. + Structural clustering + + + Structure clustering + + + + + + + + + + + + + + + beta12orEarlier + Generate a physical DNA map (sequence map) from analysis of sequence tagged sites (STS). + Sequence mapping + + + An STS is a short subsequence of known sequence and location that occurs only once in the chromosome or genome that is being mapped. Sources of STSs include 1. expressed sequence tags (ESTs), simple sequence length polymorphisms (SSLPs), and random genomic sequences from cloned genomic DNA or database sequences. + Sequence tagged site (STS) mapping + + + + + + + + + + beta12orEarlier + true + Compare two or more entities, typically the sequence or structure (or derivatives) of macromolecules, to identify equivalent subunits. + Alignment construction + Alignment generation + + + Alignment + + + + + + + + + + + beta12orEarlier + Calculate the molecular weight of a protein (or fragments) and compare it to another protein or reference data. Generally used for protein identification. + PMF + Peptide mass fingerprinting + Protein fingerprinting + + + Protein fragment weight comparison + + + + + + + + + + + + + + + beta12orEarlier + Compare the physicochemical properties of two or more proteins (or reference data). + + + Protein property comparison + + + + + + + + + beta12orEarlier + 1.18 + + + + Compare two or more molecular secondary structures. + + Secondary structure comparison + true + + + + + + + + + beta12orEarlier + 1.12 + + Generate a Hopp and Woods plot of antigenicity of a protein. + + + Hopp and Woods plotting + true + + + + + + + + + beta12orEarlier + 1.19 + + Generate a view of clustered quantitative data, annotated with textual information. + + + Cluster textual view generation + true + + + + + + + + + beta12orEarlier + Visualise clustered quantitative data as set of different profiles, where each profile is plotted versus different entities or samples on the X-axis. + Clustered quantitative data plotting + Clustered quantitative data rendering + Wave graph plotting + Microarray cluster temporal graph rendering + Microarray wave graph plotting + Microarray wave graph rendering + + + In the case of microarray data, visualise clustered gene expression data as a set of profiles, where each profile shows the gene expression values of a cluster across samples on the X-axis. + Clustering profile plotting + + + + + + + + + beta12orEarlier + 1.19 + + Generate a dendrograph of raw, preprocessed or clustered expression (e.g. microarray) data. + + + Dendrograph plotting + true + + + + + + + + + beta12orEarlier + Generate a plot of distances (distance or correlation matrix) between expression values. + Distance map rendering + Distance matrix plotting + Distance matrix rendering + Proximity map rendering + Correlation matrix plotting + Correlation matrix rendering + Microarray distance map rendering + Microarray proximity map plotting + Microarray proximity map rendering + + + Proximity map plotting + + + + + + + + + beta12orEarlier + Visualise clustered expression data using a tree diagram. + Dendrogram plotting + Dendrograph plotting + Dendrograph visualisation + Expression data tree or dendrogram rendering + Expression data tree visualisation + Microarray 2-way dendrogram rendering + Microarray checks view rendering + Microarray matrix tree plot rendering + Microarray tree or dendrogram rendering + + + Dendrogram visualisation + + + + + + + + + + beta12orEarlier + Visualize the results of a principal component analysis (orthogonal data transformation). For example, visualization of the principal components (essential subspace) coming from a Principal Component Analysis (PCA) on the trajectory atomistic coordinates of a molecular structure. + PCA plotting + Principal component plotting + ED visualization + Essential Dynamics visualization + Microarray principal component plotting + Microarray principal component rendering + PCA visualization + Principal modes visualization + + + Examples for visualization are the distribution of variance over the components, loading and score plots. + The use of Principal Component Analysis (PCA), a multivariate statistical analysis to obtain collective variables on the atomic positional fluctuations, helps to separate the configurational space in two subspaces: an essential subspace containing relevant motions, and another one containing irrelevant local fluctuations. + Principal component visualisation + + + + + + + + + beta12orEarlier + Render a graph in which the values of two variables are plotted along two axes; the pattern of the points reveals any correlation. + Scatter chart plotting + Microarray scatter plot plotting + Microarray scatter plot rendering + + + Comparison of two sets of quantitative data such as two samples of gene expression values. + Scatter plot plotting + + + + + + + + + beta12orEarlier + 1.18 + + Visualise gene expression data where each band (or line graph) corresponds to a sample. + + + Whole microarray graph plotting + true + + + + + + + + + beta12orEarlier + Visualise gene expression data after hierarchical clustering for representing hierarchical relationships. + Expression data tree-map rendering + Treemapping + Microarray tree-map rendering + + + Treemap visualisation + + + + + + + + + + beta12orEarlier + Generate a box plot, i.e. a depiction of groups of numerical data through their quartiles. + Box plot plotting + Microarray Box-Whisker plot plotting + + + In the case of micorarray data, visualise raw and pre-processed gene expression data, via a plot showing over- and under-expression along with mean, upper and lower quartiles. + Box-Whisker plot plotting + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate a physical (sequence) map of a DNA sequence showing the physical distance (base pairs) between features or landmarks such as restriction sites, cloned DNA fragments, genes and other genetic markers. + Physical cartography + + + Physical mapping + + + + + + + + + + beta12orEarlier + true + Apply analytical methods to existing data of a specific type. + + + This excludes non-analytical methods that read and write the same basic type of data (for that, see 'Data handling'). + Analysis + + + + + + + + + beta12orEarlier + 1.8 + + + Process or analyse an alignment of molecular sequences or structures. + + Alignment analysis + true + + + + + + + + + beta12orEarlier + 1.16 + + + + Analyse a body of scientific text (typically a full text article from a scientific journal). + + Article analysis + true + + + + + + + + + beta12orEarlier + beta13 + + + Analyse the interactions of two or more molecules (or parts of molecules) that are known to interact. + + Molecular interaction analysis + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse the interactions of proteins with other proteins. + Protein interaction analysis + Protein interaction raw data analysis + Protein interaction simulation + + + Includes analysis of raw experimental protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc. + Protein-protein interaction analysis + + + + + + + + + beta12orEarlier + WHATIF: HETGroupNames + WHATIF:HasMetalContacts + WHATIF:HasMetalContactsPlus + WHATIF:HasNegativeIonContacts + WHATIF:HasNegativeIonContactsPlus + WHATIF:HasNucleicContacts + WHATIF:ShowDrugContacts + WHATIF:ShowDrugContactsShort + WHATIF:ShowLigandContacts + WHATIF:ShowProteiNucleicContacts + Calculate contacts between residues, or between residues and other groups, in a protein structure, on the basis of distance calculations. + HET group detection + Residue contact calculation (residue-ligand) + Residue contact calculation (residue-metal) + Residue contact calculation (residue-negative ion) + Residue contact calculation (residue-nucleic acid) + WHATIF:SymmetryContact + + + This includes identifying HET groups, which usually correspond to ligands, lipids, but might also (not consistently) include groups that are attached to amino acids. Each HET group is supposed to have a unique three letter code and a unique name which might be given in the output. It can also include calculation of symmetry contacts, i.e. a contact between two atoms in different asymmetric unit. + Residue distance calculation + + + + + + + + + beta12orEarlier + 1.6 + + + + Process (read and / or write) an alignment of two or more molecular sequences, structures or derived data. + + Alignment processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular tertiary (3D) structure alignment. + + Structure alignment processing + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate codon usage bias, e.g. generate a codon usage bias plot. + Codon usage bias plotting + + + Codon usage bias calculation + + + + + + + + + beta12orEarlier + 1.22 + + Generate a codon usage bias plot. + + + Codon usage bias plotting + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate the differences in codon usage fractions between two sequences, sets of sequences, codon usage tables etc. + + + Codon usage fraction calculation + + + + + + + + + beta12orEarlier + true + Assign molecular sequences, structures or other biological data to a specific group or category according to qualities it shares with that group or category. + + + Classification + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) molecular interaction data. + + Molecular interaction data processing + true + + + + + + + + + + beta12orEarlier + Assign molecular sequence(s) to a group or category. + + + Sequence classification + + + + + + + + + + beta12orEarlier + Assign molecular structure(s) to a group or category. + + + Structure classification + + + + + + + + + beta12orEarlier + Compare two or more proteins (or some aspect) to identify similarities. + + + Protein comparison + + + + + + + + + beta12orEarlier + Compare two or more nucleic acids to identify similarities. + + + Nucleic acid comparison + + + + + + + + + beta12orEarlier + 1.19 + + Predict, recognise, detect or identify some properties of proteins. + + + Prediction and recognition (protein) + true + + + + + + + + + beta12orEarlier + 1.19 + + Predict, recognise, detect or identify some properties of nucleic acids. + + + Prediction and recognition (nucleic acid) + true + + + + + + + + + + + + + + + beta13 + Edit, convert or otherwise change a molecular tertiary structure, either randomly or specifically. + + + Structure editing + + + + + + + + + beta13 + Edit, convert or otherwise change a molecular sequence alignment, either randomly or specifically. + + + Sequence alignment editing + + + + + + + + + beta13 + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + Render (visualise) a biological pathway or network. + + Pathway or network visualisation + true + + + + + + + + + beta13 + 1.6 + + + Predict general (non-positional) functional properties of a protein from analysing its sequence. + + For functional properties that are positional, use 'Protein site detection' instead. + Protein function prediction (from sequence) + true + + + + + + + + + beta13 + (jison)This is a distinction made on basis of input; all features exist can be mapped to a sequence so this isn't needed (consolidate with "Protein feature detection"). + 1.17 + + + + Predict, recognise and identify functional or other key sites within protein sequences, typically by scanning for known motifs, patterns and regular expressions. + + + Protein sequence feature detection + true + + + + + + + + + beta13 + 1.18 + + + Calculate (or predict) physical or chemical properties of a protein, including any non-positional properties of the molecular sequence, from processing a protein sequence. + + + Protein property calculation (from sequence) + true + + + + + + + + + beta13 + 1.6 + + + Predict, recognise and identify positional features in proteins from analysing protein structure. + + Protein feature prediction (from structure) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta13 + Predict, recognise and identify positional features in proteins from analysing protein sequences or structures. + Protein feature prediction + Protein feature recognition + Protein secondary database search + Protein site detection + Protein site prediction + Protein site recognition + Sequence feature detection (protein) + Sequence profile database search + + + Features includes functional sites or regions, secondary structure, structural domains and so on. Methods might use fingerprints, motifs, profiles, hidden Markov models, sequence alignment etc to provide a mapping of a query protein sequence to a discriminatory element. This includes methods that search a secondary protein database (Prosite, Blocks, ProDom, Prints, Pfam etc.) to assign a protein sequence(s) to a known protein family or group. + Protein feature detection + + + + + + + + + beta13 + 1.6 + + + Screen a molecular sequence(s) against a database (of some type) to identify similarities between the sequence and database entries. + + Database search (by sequence) + true + + + + + + + + + + beta13 + Predict a network of protein interactions. + + + Protein interaction network prediction + + + + + + + + + + beta13 + Design (or predict) nucleic acid sequences with specific chemical or physical properties. + Gene design + + + Nucleic acid design + + + + + + + + + + beta13 + Edit a data entity, either randomly or specifically. + + + Editing + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.1 + Evaluate a DNA sequence assembly, typically for purposes of quality control. + Assembly QC + Assembly quality evaluation + Sequence assembly QC + Sequence assembly quality evaluation + + + Sequence assembly validation + + + + + + + + + + 1.1 + Align two or more (tpyically huge) molecular sequences that represent genomes. + Genome alignment construction + Whole genome alignment + + + Genome alignment + + + + + + + + + 1.1 + Reconstruction of a sequence assembly in a localised area. + + + Localised reassembly + + + + + + + + + 1.1 + Render and visualise a DNA sequence assembly. + Assembly rendering + Assembly visualisation + Sequence assembly rendering + + + Sequence assembly visualisation + + + + + + + + + + + + + + + 1.1 + Identify base (nucleobase) sequence from a fluorescence 'trace' data generated by an automated DNA sequencer. + Base calling + Phred base calling + Phred base-calling + + + Base-calling + + + + + + + + + + 1.1 + The mapping of methylation sites in a DNA (genome) sequence. Typically, the mapping of high-throughput bisulfite reads to the reference genome. + Bisulfite read mapping + Bisulfite sequence alignment + Bisulfite sequence mapping + + + Bisulfite mapping follows high-throughput sequencing of DNA which has undergone bisulfite treatment followed by PCR amplification; unmethylated cytosines are specifically converted to thymine, allowing the methylation status of cytosine in the DNA to be detected. + Bisulfite mapping + + + + + + + + + 1.1 + Identify and filter a (typically large) sequence data set to remove sequences from contaminants in the sample that was sequenced. + + + Sequence contamination filtering + + + + + + + + + 1.1 + 1.12 + + Trim sequences (typically from an automated DNA sequencer) to remove misleading ends. + + + For example trim polyA tails, introns and primer sequence flanking the sequence of amplified exons, or other unwanted sequence. + Trim ends + true + + + + + + + + + 1.1 + 1.12 + + Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences. + + + Trim vector + true + + + + + + + + + 1.1 + 1.12 + + Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence. + + + Trim to reference + true + + + + + + + + + 1.1 + Cut (remove) the end from a molecular sequence. + Trimming + Barcode sequence removal + Trim ends + Trim to reference + Trim vector + + + This includes end trimming, -- Trim sequences (typically from an automated DNA sequencer) to remove misleading ends. For example trim polyA tails, introns and primer sequence flanking the sequence of amplified exons, or other unwanted sequence.-- trimming to a reference sequence, --Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence. -- vector trimming -- Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences. + Sequence trimming + + + + + + + + + + 1.1 + Compare the features of two genome sequences. + + + Genomic elements that might be compared include genes, indels, single nucleotide polymorphisms (SNPs), retrotransposons, tandem repeats and so on. + Genome feature comparison + + + + + + + + + + + + + + + 1.1 + Detect errors in DNA sequences generated from sequencing projects). + Short read error correction + Short-read error correction + + + Sequencing error detection + + + + + + + + + 1.1 + Analyse DNA sequence data to identify differences between the genetic composition (genotype) of an individual compared to other individual's or a reference sequence. + + + Methods might consider cytogenetic analyses, copy number polymorphism (and calculate copy number calls for copy-number variation(CNV) regions), single nucleotide polymorphism (SNP), , rare copy number variation (CNV) identification, loss of heterozygosity data and so on. + Genotyping + + + + + + + + + 1.1 + Analyse a genetic variation, for example to annotate its location, alleles, classification, and effects on individual transcripts predicted for a gene model. + Genetic variation annotation + Sequence variation analysis + Variant analysis + Transcript variant analysis + + + Genetic variation annotation provides contextual interpretation of coding SNP consequences in transcripts. It allows comparisons to be made between variation data in different populations or strains for the same transcript. + Genetic variation analysis + + + + + + + + + + 1.1 + Align short oligonucleotide sequences (reads) to a larger (genomic) sequence. + Oligonucleotide alignment + Oligonucleotide alignment construction + Oligonucleotide alignment generation + Oligonucleotide mapping + Read alignment + Short oligonucleotide alignment + Short read alignment + Short read mapping + Short sequence read mapping + + + The purpose of read mapping is to identify the location of sequenced fragments within a reference genome and assumes that there is, in fact, at least local similarity between the fragment and reference sequences. + Read mapping + + + + + + + + + 1.1 + A variant of oligonucleotide mapping where a read is mapped to two separate locations because of possible structural variation. + Split-read mapping + + + Split read mapping + + + + + + + + + 1.1 + Analyse DNA sequences in order to identify a DNA 'barcode'; marker genes or any short fragment(s) of DNA that are useful to diagnose the taxa of biological organisms. + Community profiling + Sample barcoding + + + DNA barcoding + + + + + + + + + + 1.1 + 1.19 + + Identify single nucleotide change in base positions in sequencing data that differ from a reference genome and which might, especially by reference to population frequency or functional data, indicate a polymorphism. + + + SNP calling + true + + + + + + + + + 1.1 + "Polymorphism detection" and "Variant calling" are essentially the same thing - keeping the later as a more prevalent term nowadays. + 1.24 + + + Detect mutations in multiple DNA sequences, for example, from the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware. + + + Polymorphism detection + true + + + + + + + + + 1.1 + Visualise, format or render an image of a Chromatogram. + Chromatogram viewing + + + Chromatogram visualisation + + + + + + + + + 1.1 + Analyse cytosine methylation states in nucleic acid sequences. + Methylation profile analysis + + + Methylation analysis + + + + + + + + + 1.1 + 1.19 + + Determine cytosine methylation status of specific positions in a nucleic acid sequences. + + + Methylation calling + true + + + + + + + + + + 1.1 + Measure the overall level of methyl cytosines in a genome from analysis of experimental data, typically from chromatographic methods and methyl accepting capacity assay. + Genome methylation analysis + Global methylation analysis + Methylation level analysis (global) + + + Whole genome methylation analysis + + + + + + + + + 1.1 + Analysing the DNA methylation of specific genes or regions of interest. + Gene-specific methylation analysis + Methylation level analysis (gene-specific) + + + Gene methylation analysis + + + + + + + + + + 1.1 + Visualise, format or render a nucleic acid sequence that is part of (and in context of) a complete genome sequence. + Genome browser + Genome browsing + Genome rendering + Genome viewing + + + Genome visualisation + + + + + + + + + + 1.1 + Compare the sequence or features of two or more genomes, for example, to find matching regions. + Genomic region matching + + + Genome comparison + + + + + + + + + + + + + + + + 1.1 + Generate an index of a genome sequence. + Burrows-Wheeler + Genome indexing (Burrows-Wheeler) + Genome indexing (suffix arrays) + Suffix arrays + + + Many sequence alignment tasks involving many or very large sequences rely on a precomputed index of the sequence to accelerate the alignment. The Burrows-Wheeler Transform (BWT) is a permutation of the genome based on a suffix array algorithm. A suffix array consists of the lexicographically sorted list of suffixes of a genome. + Genome indexing + + + + + + + + + 1.1 + 1.12 + + Generate an index of a genome sequence using the Burrows-Wheeler algorithm. + + + The Burrows-Wheeler Transform (BWT) is a permutation of the genome based on a suffix array algorithm. + Genome indexing (Burrows-Wheeler) + true + + + + + + + + + 1.1 + 1.12 + + Generate an index of a genome sequence using a suffix arrays algorithm. + + + A suffix array consists of the lexicographically sorted list of suffixes of a genome. + Genome indexing (suffix arrays) + true + + + + + + + + + + + + + + + 1.1 + Analyse one or more spectra from mass spectrometry (or other) experiments. + Mass spectrum analysis + Spectrum analysis + + + Spectral analysis + + + + + + + + + + + + + + + + 1.1 + Identify peaks in a spectrum from a mass spectrometry, NMR, or some other spectrum-generating experiment. + Peak assignment + Peak finding + + + Peak detection + + + + + + + + + + + + + + + + 1.1 + Link together a non-contiguous series of genomic sequences into a scaffold, consisting of sequences separated by gaps of known length. The sequences that are linked are typically typically contigs; contiguous sequences corresponding to read overlaps. + Scaffold construction + Scaffold generation + + + Scaffold may be positioned along a chromosome physical map to create a "golden path". + Scaffolding + + + + + + + + + 1.1 + Fill the gaps in a sequence assembly (scaffold) by merging in additional sequences. + + + Different techniques are used to generate gap sequences to connect contigs, depending on the size of the gap. For small (5-20kb) gaps, PCR amplification and sequencing is used. For large (>20kb) gaps, fragments are cloned (e.g. in BAC (Bacterial artificial chromosomes) vectors) and then sequenced. + Scaffold gap completion + + + + + + + + + + 1.1 + Raw sequence data quality control. + Sequencing QC + Sequencing quality assessment + + + Analyse raw sequence data from a sequencing pipeline and identify (and possiby fix) problems. + Sequencing quality control + + + + + + + + + + 1.1 + Pre-process sequence reads to ensure (or improve) quality and reliability. + Sequence read pre-processing + + + For example process paired end reads to trim low quality ends remove short sequences, identify sequence inserts, detect chimeric reads, or remove low quality sequences including vector, adaptor, low complexity and contaminant sequences. Sequences might come from genomic DNA library, EST libraries, SSH library and so on. + Read pre-processing + + + + + + + + + + + + + + + 1.1 + Estimate the frequencies of different species from analysis of the molecular sequences, typically of DNA recovered from environmental samples. + + + Species frequency estimation + + + + + + + + + 1.1 + Identify putative protein-binding regions in a genome sequence from analysis of Chip-sequencing data or ChIP-on-chip data. + Protein binding peak detection + Peak-pair calling + + + Chip-sequencing combines chromatin immunoprecipitation (ChIP) with massively parallel DNA sequencing to generate a set of reads, which are aligned to a genome sequence. The enriched areas contain the binding sites of DNA-associated proteins. For example, a transcription factor binding site. ChIP-on-chip in contrast combines chromatin immunoprecipitation ('ChIP') with microarray ('chip'). "Peak-pair calling" is similar to "Peak calling" in the context of ChIP-exo. + Peak calling + + + + + + + + + 1.1 + Identify from molecular sequence analysis (typically from analysis of microarray or RNA-seq data) genes whose expression levels are significantly different between two sample groups. + Differential expression analysis + Differential gene analysis + Differential gene expression analysis + Differentially expressed gene identification + + + Differential gene expression analysis is used, for example, to identify which genes are up-regulated (increased expression) or down-regulated (decreased expression) between a group treated with a drug and a control groups. + Differential gene expression profiling + + + + + + + + + 1.1 + 1.21 + + Analyse gene expression patterns (typically from DNA microarray datasets) to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc. + + + Gene set testing + true + + + + + + + + + + 1.1 + Classify variants based on their potential effect on genes, especially functional effects on the expressed proteins. + + + Variants are typically classified by their position (intronic, exonic, etc.) in a gene transcript and (for variants in coding exons) by their effect on the protein sequence (synonymous, non-synonymous, frameshifting, etc.) + Variant classification + + + + + + + + + 1.1 + Identify biologically interesting variants by prioritizing individual variants, for example, homozygous variants absent in control genomes. + + + Variant prioritisation can be used for example to produce a list of variants responsible for 'knocking out' genes in specific genomes. Methods amino acid substitution, aggregative approaches, probabilistic approach, inheritance and unified likelihood-frameworks. + Variant prioritisation + + + + + + + + + + 1.1 + Detect, identify and map mutations, such as single nucleotide polymorphisms, short indels and structural variants, in multiple DNA sequences. Typically the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware, to study genomic alterations. + Variant mapping + Allele calling + Exome variant detection + Genome variant detection + Germ line variant calling + Mutation detection + Somatic variant calling + de novo mutation detection + + + Methods often utilise a database of aligned reads. + Somatic variant calling is the detection of variations established in somatic cells and hence not inherited as a germ line variant. + Variant detection + Variant calling + + + + + + + + + 1.1 + Detect large regions in a genome subject to copy-number variation, or other structural variations in genome(s). + Structural variation discovery + + + Methods might involve analysis of whole-genome array comparative genome hybridisation or single-nucleotide polymorphism arrays, paired-end mapping of sequencing data, or from analysis of short reads from new sequencing technologies. + Structural variation detection + + + + + + + + + 1.1 + Analyse sequencing data from experiments aiming to selectively sequence the coding regions of the genome. + Exome sequence analysis + + + Exome assembly + + + + + + + + + 1.1 + Analyse mapping density (read depth) of (typically) short reads from sequencing platforms, for example, to detect deletions and duplications. + + + Read depth analysis + + + + + + + + + 1.1 + Combine classical quantitative trait loci (QTL) analysis with gene expression profiling, for example, to describe describe cis- and trans-controlling elements for the expression of phenotype associated genes. + Gene expression QTL profiling + Gene expression quantitative trait loci profiling + eQTL profiling + + + Gene expression QTL analysis + + + + + + + + + 1.1 + Estimate the number of copies of loci of particular gene(s) in DNA sequences typically from gene-expression profiling technology based on microarray hybridisation-based experiments. For example, estimate copy number (or marker dosage) of a dominant marker in samples from polyploid plant cells or tissues, or chromosomal gains and losses in tumors. + Transcript copy number estimation + + + Methods typically implement some statistical model for hypothesis testing, and methods estimate total copy number, i.e. do not distinguish the two inherited chromosomes quantities (specific copy number). + Copy number estimation + + + + + + + + + 1.2 + Adapter removal + Remove forward and/or reverse primers from nucleic acid sequences (typically PCR products). + + + Primer removal + + + + + + + + + + + + + + + + + + + + + 1.2 + Infer a transcriptome sequence by analysis of short sequence reads. + + + Transcriptome assembly + + + + + + + + + 1.2 + 1.6 + + + Infer a transcriptome sequence without the aid of a reference genome, i.e. by comparing short sequences (reads) to each other. + + Transcriptome assembly (de novo) + true + + + + + + + + + 1.2 + 1.6 + + + Infer a transcriptome sequence by mapping short reads to a reference genome. + + Transcriptome assembly (mapping) + true + + + + + + + + + + + + + + + + + + + + + 1.3 + Convert one set of sequence coordinates to another, e.g. convert coordinates of one assembly to another, cDNA to genomic, CDS to genomic, protein translation to genomic etc. + + + Sequence coordinate conversion + + + + + + + + + 1.3 + Calculate similarity between 2 or more documents. + + + Document similarity calculation + + + + + + + + + + 1.3 + Cluster (group) documents on the basis of their calculated similarity. + + + Document clustering + + + + + + + + + + 1.3 + Recognise named entities, ontology concepts, tags, events, and dictionary terms within documents. + Concept mining + Entity chunking + Entity extraction + Entity identification + Event extraction + NER + Named-entity recognition + + + Named-entity and concept recognition + + + + + + + + + + + + 1.3 + Map data identifiers to one another for example to establish a link between two biological databases for the purposes of data integration. + Accession mapping + Identifier mapping + + + The mapping can be achieved by comparing identifier values or some other means, e.g. exact matches to a provided sequence. + ID mapping + + + + + + + + + 1.3 + Process data in such a way that makes it hard to trace to the person which the data concerns. + Data anonymisation + + + Anonymisation + + + + + + + + + 1.3 + (jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved. + 1.17 + + Search for and retrieve a data identifier of some kind, e.g. a database entry accession. + + + ID retrieval + true + + + + + + + + + + + + + + + + + + + + + 1.4 + Generate a checksum of a molecular sequence. + + + Sequence checksum generation + + + + + + + + + + + + + + + 1.4 + Construct a bibliography from the scientific literature. + Bibliography construction + + + Bibliography generation + + + + + + + + + 1.4 + Predict the structure of a multi-subunit protein and particularly how the subunits fit together. + + + Protein quaternary structure prediction + + + + + + + + + + + + + + + + + + + + + 1.4 + Analyse the surface properties of proteins or other macromolecules, including surface accessible pockets, interior inaccessible cavities etc. + + + Molecular surface analysis + + + + + + + + + 1.4 + Compare two or more ontologies, e.g. identify differences. + + + Ontology comparison + + + + + + + + + 1.4 + 1.9 + + Compare two or more ontologies, e.g. identify differences. + + + Ontology comparison + true + + + + + + + + + + + + + + + + 1.4 + Recognition of which format the given data is in. + Format identification + Format inference + Format recognition + + + 'Format recognition' is not a bioinformatics-specific operation, but of great relevance in bioinformatics. Should be removed from EDAM if/when captured satisfactorily in a suitable domain-generic ontology. + Format detection + + + + + + The has_input "Data" (data_0006) may cause visualisation or other problems although ontologically correct. But on the other hand it may be useful to distinguish from nullary operations without inputs. + + + + + + + + + 1.4 + Split a file containing multiple data items into many files, each containing one item. + File splitting + + + Splitting + + + + + + + + + 1.6 + true + Construct some data entity. + Construction + + + For non-analytical operations, see the 'Processing' branch. + Generation + + + + + + + + + 1.6 + (jison)This is a distinction made on basis of input; all features exist can be mapped to a sequence so this isn't needed. + 1.17 + + + Predict, recognise and identify functional or other key sites within nucleic acid sequences, typically by scanning for known motifs, patterns and regular expressions. + + + Nucleic acid sequence feature detection + true + + + + + + + + + 1.6 + Deposit some data in a database or some other type of repository or software system. + Data deposition + Data submission + Database deposition + Database submission + Submission + + + For non-analytical operations, see the 'Processing' branch. + Deposition + + + + + + + + + 1.6 + true + Group together some data entities on the basis of similarities such that entities in the same group (cluster) are more similar to each other than to those in other groups (clusters). + + + Clustering + + + + + + + + + 1.6 + 1.19 + + Construct some entity (typically a molecule sequence) from component pieces. + + + Assembly + true + + + + + + + + + 1.6 + true + Convert a data set from one form to another. + + + Conversion + + + + + + + + + 1.6 + Standardize or normalize data by some statistical method. + Normalisation + Standardisation + + + In the simplest normalisation means adjusting values measured on different scales to a common scale (often between 0.0 and 1.0), but can refer to more sophisticated adjustment whereby entire probability distributions of adjusted values are brought into alignment. Standardisation typically refers to an operation whereby a range of values are standardised to measure how many standard deviations a value is from its mean. + Standardisation and normalisation + + + + + + + + + 1.6 + Combine multiple files or data items into a single file or object. + + + Aggregation + + + + + + + + + + + + + + + 1.6 + Compare two or more scientific articles. + + + Article comparison + + + + + + + + + 1.6 + true + Mathematical determination of the value of something, typically a properly of a molecule. + + + Calculation + + + + + + + + + 1.6 + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + + Predict a molecular pathway or network. + + Pathway or network prediction + true + + + + + + + + + 1.6 + 1.12 + + The process of assembling many short DNA sequences together such that they represent the original chromosomes from which the DNA originated. + + + Genome assembly + true + + + + + + + + + 1.6 + 1.19 + + Generate a graph, or other visual representation, of data, showing the relationship between two or more variables. + + + Plotting + true + + + + + + + + + + + + + + + 1.7 + Image processing + The analysis of a image (typically a digital image) of some type in order to extract information from it. + + + Image analysis + + + + + + + + + + 1.7 + Analysis of data from a diffraction experiment. + + + Diffraction data analysis + + + + + + + + + + + + + + + 1.7 + Analysis of cell migration images in order to study cell migration, typically in order to study the processes that play a role in the disease progression. + + + Cell migration analysis + + + + + + + + + + 1.7 + Processing of diffraction data into a corrected, ordered, and simplified form. + + + Diffraction data reduction + + + + + + + + + + + + + + + 1.7 + Measurement of neurites; projections (axons or dendrites) from the cell body of a neuron, from analysis of neuron images. + + + Neurite measurement + + + + + + + + + 1.7 + The evaluation of diffraction intensities and integration of diffraction maxima from a diffraction experiment. + Diffraction profile fitting + Diffraction summation integration + + + Diffraction data integration + + + + + + + + + 1.7 + Phase a macromolecular crystal structure, for example by using molecular replacement or experimental phasing methods. + + + Phasing + + + + + + + + + 1.7 + A technique used to construct an atomic model of an unknown structure from diffraction data, based upon an atomic model of a known structure, either a related protein or the same protein from a different crystal form. + + + The technique solves the phase problem, i.e. retrieve information concern phases of the structure. + Molecular replacement + + + + + + + + + 1.7 + A method used to refine a structure by moving the whole molecule or parts of it as a rigid unit, rather than moving individual atoms. + + + Rigid body refinement usually follows molecular replacement in the assignment of a structure from diffraction data. + Rigid body refinement + + + + + + + + + + + + + + + + 1.7 + An image processing technique that combines and analyze multiple images of a particulate sample, in order to produce an image with clearer features that are more easily interpreted. + + + Single particle analysis is used to improve the information that can be obtained by relatively low resolution techniques, , e.g. an image of a protein or virus from transmission electron microscopy (TEM). + Single particle analysis + + + + + + + + + + + 1.7 + true + This is two related concepts. + Compare (align and classify) multiple particle images from a micrograph in order to produce a representative image of the particle. + + + A micrograph can include particles in multiple different orientations and/or conformations. Particles are compared and organised into sets based on their similarity. Typically iterations of classification and alignment and are performed to optimise the final 3D EM map. + Single particle alignment and classification + + + + + + + + + + + + + + + 1.7 + Clustering of molecular sequences on the basis of their function, typically using information from an ontology of gene function, or some other measure of functional phenotype. + Functional sequence clustering + + + Functional clustering + + + + + + + + + 1.7 + Classifiication (typically of molecular sequences) by assignment to some taxonomic hierarchy. + Taxonomy assignment + Taxonomic profiling + + + Taxonomic classification + + + + + + + + + + + + + + + + 1.7 + The prediction of the degree of pathogenicity of a microorganism from analysis of molecular sequences. + Pathogenicity prediction + + + Virulence prediction + + + + + + + + + + 1.7 + Analyse the correlation patterns among features/molecules across across a variety of experiments, samples etc. + Co-expression analysis + Gene co-expression network analysis + Gene expression correlation + Gene expression correlation analysis + + + Expression correlation analysis + + + + + + + + + + + + + + + 1.7 + true + Identify a correlation, i.e. a statistical relationship between two random variables or two sets of data. + + + Correlation + + + + + + + + + + + + + + + + 1.7 + Compute the covariance model for (a family of) RNA secondary structures. + + + RNA structure covariance model generation + + + + + + + + + 1.7 + 1.18 + + Predict RNA secondary structure by analysis, e.g. probabilistic analysis, of the shape of RNA folds. + + + RNA secondary structure prediction (shape-based) + true + + + + + + + + + 1.7 + 1.18 + + Prediction of nucleic-acid folding using sequence alignments as a source of data. + + + Nucleic acid folding prediction (alignment-based) + true + + + + + + + + + 1.7 + Count k-mers (substrings of length k) in DNA sequence data. + + + k-mer counting is used in genome and transcriptome assembly, metagenomic sequencing, and for error correction of sequence reads. + k-mer counting + + + + + + + + + + + + + + + 1.7 + Reconstructing the inner node labels of a phylogenetic tree from its leafes. + Phylogenetic tree reconstruction + Gene tree reconstruction + Species tree reconstruction + + + Note that this is somewhat different from simply analysing an existing tree or constructing a completely new one. + Phylogenetic reconstruction + + + + + + + + + 1.7 + Generate some data from a chosen probibalistic model, possibly to evaluate algorithms. + + + Probabilistic data generation + + + + + + + + + + 1.7 + Generate sequences from some probabilistic model, e.g. a model that simulates evolution. + + + Probabilistic sequence generation + + + + + + + + + + + + + + + + 1.7 + Identify or predict causes for antibiotic resistance from molecular sequence analysis. + + + Antimicrobial resistance prediction + + + + + + + + + + + + + + + 1.8 + Analysis of a set of objects, such as genes, annotated with given categories, where eventual over-/under-representation of certain categories within the studied set of objects is revealed. + Enrichment + Over-representation analysis + Functional enrichment + + + Categories from a relevant ontology can be used. The input is typically a set of genes or other biological objects, possibly represented by their identifiers, and the output of the analysis is typically a ranked list of categories, each associated with a statistical metric of over-/under-representation within the studied data. + Enrichment analysis + + + + + + + + + + + + + + + 1.8 + Analyse a dataset with respect to concepts from an ontology of chemical structure, leveraging chemical similarity information. + Chemical class enrichment + + + Chemical similarity enrichment + + + + + + + + + 1.8 + Plot an incident curve such as a survival curve, death curve, mortality curve. + + + Incident curve plotting + + + + + + + + + 1.8 + Identify and map patterns of genomic variations. + + + Methods often utilise a database of aligned reads. + Variant pattern analysis + + + + + + + + + 1.8 + 1.12 + + Model some biological system using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models. + + + Mathematical modelling + true + + + + + + + + + + + + + + + 1.9 + Visualise images resulting from various types of microscopy. + + + Microscope image visualisation + + + + + + + + + 1.9 + Annotate an image of some sort, typically with terms from a controlled vocabulary. + + + Image annotation + + + + + + + + + 1.9 + Replace missing data with substituted values, usually by using some statistical or other mathematical approach. + Data imputation + + + Imputation + + + + + + + + + + 1.9 + Visualise, format or render data from an ontology, typically a tree of terms. + Ontology browsing + + + Ontology visualisation + + + + + + + + + 1.9 + A method for making numerical assessments about the maximum percent of time that a conformer of a flexible macromolecule can exist and still be compatible with the experimental data. + + + Maximum occurrence analysis + + + + + + + + + + 1.9 + Compare the models or schemas used by two or more databases, or any other general comparison of databases rather than a detailed comparison of the entries themselves. + Data model comparison + Schema comparison + + + Database comparison + + + + + + + + + 1.9 + 1.24 + + + + Simulate the bevaviour of a biological pathway or network. + + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + Network simulation + true + + + + + + + + + 1.9 + Analyze read counts from RNA-seq experiments. + + + RNA-seq read count analysis + + + + + + + + + 1.9 + Identify and remove redundancy from a set of small molecule structures. + + + Chemical redundancy removal + + + + + + + + + 1.9 + Analyze time series data from an RNA-seq experiment. + + + RNA-seq time series data analysis + + + + + + + + + 1.9 + Simulate gene expression data, e.g. for purposes of benchmarking. + + + Simulated gene expression data generation + + + + + + + + + 1.12 + Identify semantic relations among entities and concepts within a text, using text mining techniques. + Relation discovery + Relation inference + Relationship discovery + Relationship extraction + Relationship inference + + + Relation extraction + + + + + + + + + + + + + + + 1.12 + Re-adjust the output of mass spectrometry experiments with shifted ppm values. + + + Mass spectra calibration + + + + + + + + + + + + + + + 1.12 + Align multiple data sets using information from chromatography and/or peptide identification, from mass spectrometry experiments. + + + Chromatographic alignment + + + + + + + + + + + + + + + 1.12 + The removal of isotope peaks in a spectrum, to represent the fragment ion as one data point. + Deconvolution + + + Deisotoping is commonly done to reduce complexity, and done in conjunction with the charge state deconvolution. + Deisotoping + + + + + + + + + + + + + + + + 1.12 + Technique for determining the amount of proteins in a sample. + Protein quantitation + + + Protein quantification + + + + + + + + + + + + + + + 1.12 + Determination of peptide sequence from mass spectrum. + Peptide-spectrum-matching + + + Peptide identification + + + + + + + + + + + + + + + + + + + + + 1.12 + Calculate the isotope distribution of a given chemical species. + + + Isotopic distributions calculation + + + + + + + + + 1.12 + Prediction of retention time in a mass spectrometry experiment based on compositional and structural properties of the separated species. + Retention time calculation + + + Retention time prediction + + + + + + + + + 1.12 + Quantification without the use of chemical tags. + + + Label-free quantification + + + + + + + + + 1.12 + Quantification based on the use of chemical tags. + + + Labeled quantification + + + + + + + + + 1.12 + Quantification by Selected/multiple Reaction Monitoring workflow (XIC quantitation of precursor / fragment mass pair). + + + MRM/SRM + + + + + + + + + 1.12 + Calculate number of identified MS2 spectra as approximation of peptide / protein quantity. + + + Spectral counting + + + + + + + + + 1.12 + Quantification analysis using stable isotope labeling by amino acids in cell culture. + + + SILAC + + + + + + + + + 1.12 + Quantification analysis using the AB SCIEX iTRAQ isobaric labelling workflow, wherein 2-8 reporter ions are measured in MS2 spectra near 114 m/z. + + + iTRAQ + + + + + + + + + 1.12 + Quantification analysis using labeling based on 18O-enriched H2O. + + + 18O labeling + + + + + + + + + 1.12 + Quantification analysis using the Thermo Fisher tandem mass tag labelling workflow. + + + TMT-tag + + + + + + + + + 1.12 + Quantification analysis using chemical labeling by stable isotope dimethylation. + + + Stable isotope dimethyl labelling + + + + + + + + + 1.12 + Peptide sequence tags are used as piece of information about a peptide obtained by tandem mass spectrometry. + + + Tag-based peptide identification + + + + + + + + + + 1.12 + Analytical process that derives a peptide's amino acid sequence from its tandem mass spectrum (MS/MS) without the assistance of a sequence database. + + + de Novo sequencing + + + + + + + + + 1.12 + Identification of post-translational modifications (PTMs) of peptides/proteins in mass spectrum. + + + PTM identification + + + + + + + + + + 1.12 + Determination of best matches between MS/MS spectrum and a database of protein or nucleic acid sequences. + + + Peptide database search + + + + + + + + + 1.12 + Peptide database search for identification of known and unknown PTMs looking for mass difference mismatches. + Modification-tolerant peptide database search + Unrestricted peptide database search + + + Blind peptide database search + + + + + + + + + 1.12 + 1.19 + + + Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search. + + + Validation of peptide-spectrum matches + true + + + + + + + + + + 1.12 + Validation of peptide-spectrum matches + Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search, and by comparison to search results with a database containing incorrect information. + + + Target-Decoy + + + + + + + + + 1.12 + Analyse data in order to deduce properties of an underlying distribution or population. + Empirical Bayes + + + Statistical inference + + + + + + + + + + 1.12 + A statistical calculation to estimate the relationships among variables. + Regression + + + Regression analysis + + + + + + + + + + + + + + + + + 1.12 + Model a metabolic network. This can include 1) reconstruction to break down a metabolic pathways into reactions, enzymes, and other relevant information, and compilation of this into a mathematical model and 2) simulations of metabolism based on the model. + + + Metabolic network reconstruction + Metabolic network simulation + Metabolic pathway simulation + Metabolic reconstruction + + + The terms and synyonyms here reflect that for practical intents and purposes, "pathway" and "network" can be treated the same. + Metabolic network modelling + + + + + + + + + + 1.12 + Predict the effect or function of an individual single nucleotide polymorphism (SNP). + + + SNP annotation + + + + + + + + + 1.12 + Prediction of genes or gene components from first principles, i.e. without reference to existing genes. + Gene prediction (ab-initio) + + + Ab-initio gene prediction + + + + + + + + + + 1.12 + Prediction of genes or gene components by reference to homologous genes. + Empirical gene finding + Empirical gene prediction + Evidence-based gene prediction + Gene prediction (homology-based) + Similarity-based gene prediction + Homology prediction + Orthology prediction + + + Homology-based gene prediction + + + + + + + + + + 1.12 + Construction of a statistical model, or a set of assumptions around some observed data, usually by describing a set of probability distributions which approximate the distribution of data. + + + Statistical modelling + + + + + + + + + + + 1.12 + Compare two or more molecular surfaces. + + + Molecular surface comparison + + + + + + + + + 1.12 + Annotate one or more sequences with functional information, such as cellular processes or metaobolic pathways, by reference to a controlled vocabulary - invariably the Gene Ontology (GO). + Sequence functional annotation + + + Gene functional annotation + + + + + + + + + 1.12 + Variant filtering is used to eliminate false positive variants based for example on base calling quality, strand and position information, and mapping info. + + + Variant filtering + + + + + + + + + 1.12 + Identify binding sites in nucleic acid sequences that are statistically significantly differentially bound between sample groups. + + + Differential binding analysis + + + + + + + + + + 1.13 + Analyze data from RNA-seq experiments. + + + RNA-Seq analysis + + + + + + + + + 1.13 + Visualise, format or render a mass spectrum. + + + Mass spectrum visualisation + + + + + + + + + 1.13 + Filter a set of files or data items according to some property. + Sequence filtering + rRNA filtering + + + Filtering + + + + + + + + + 1.14 + Identification of the best reference for mapping for a specific dataset from a list of potential references, when performing genetic variation analysis. + + + Reference identification + + + + + + + + + 1.14 + Label-free quantification by integration of ion current (ion counting). + Ion current integration + + + Ion counting + + + + + + + + + 1.14 + Chemical tagging free amino groups of intact proteins with stable isotopes. + ICPL + + + Isotope-coded protein label + + + + + + + + + 1.14 + Labeling all proteins and (possibly) all amino acids using C-13 or N-15 enriched grown medium or feed. + C-13 metabolic labeling + N-15 metabolic labeling + + + This includes N-15 metabolic labeling (labeling all proteins and (possibly) all amino acids using N-15 enriched grown medium or feed) and C-13 metabolic labeling (labeling all proteins and (possibly) all amino acids using C-13 enriched grown medium or feed). + Metabolic labeling + + + + + + + + + 1.15 + Construction of a single sequence assembly of all reads from different samples, typically as part of a comparative metagenomic analysis. + Sequence assembly (cross-assembly) + + + Cross-assembly + + + + + + + + + 1.15 + The comparison of samples from a metagenomics study, for example, by comparison of metagenome shotgun reads or assembled contig sequences, by comparison of functional profiles, or some other method. + + + Sample comparison + + + + + + + + + + 1.15 + Differential protein analysis + The analysis, using proteomics techniques, to identify proteins whose encoding genes are differentially expressed under a given experimental setup. + Differential protein expression analysis + + + Differential protein expression profiling + + + + + + + + + 1.15 + 1.17 + + The analysis, using any of diverse techniques, to identify genes that are differentially expressed under a given experimental setup. + + + Differential gene expression analysis + true + + + + + + + + + 1.15 + Visualise, format or render data arising from an analysis of multiple samples from a metagenomics/community experiment. + + + Multiple sample visualisation + + + + + + + + + 1.15 + The extrapolation of empirical characteristics of individuals or populations, backwards in time, to their common ancestors. + Ancestral sequence reconstruction + Character mapping + Character optimisation + + + Ancestral reconstruction is often used to recover possible ancestral character states of ancient, extinct organisms. + Ancestral reconstruction + + + + + + + + + 1.16 + Site localisation of post-translational modifications in peptide or protein mass spectra. + PTM scoring + Site localisation + + + PTM localisation + + + + + + + + + 1.16 + Operations concerning the handling and use of other tools. + Endpoint management + + + Service management + + + + + + + + + 1.16 + An operation supporting the browsing or discovery of other tools and services. + + + Service discovery + + + + + + + + + 1.16 + An operation supporting the aggregation of other services (at least two) into a functional unit, for the automation of some task. + + + Service composition + + + + + + + + + 1.16 + An operation supporting the calling (invocation) of other tools and services. + + + Service invocation + + + + + + + + + + + + + + + 1.16 + A data mining method typically used for studying biological networks based on pairwise correlations between variables. + WGCNA + Weighted gene co-expression network analysis + + + Weighted correlation network analysis + + + + + + + + + + + + + + + + 1.16 + Identification of protein, for example from one or more peptide identifications by tandem mass spectrometry. + Protein inference + + + Protein identification + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + Text annotation is the operation of adding notes, data and metadata, recognised entities and concepts, and their relations to a text (such as a scientific article). + Article annotation + Literature annotation + + + Text annotation + + + + + + + + + + 1.17 + A method whereby data on several variants are "collapsed" into a single covariate based on regions such as genes. + + + Genome-wide association studies (GWAS) analyse a genome-wide set of genetic variants in different individuals to see if any variant is associated with a trait. Traditional association techniques can lack the power to detect the significance of rare variants individually, or measure their compound effect (rare variant burden). "Collapsing methods" were developed to overcome these problems. + Collapsing methods + + + + + + + + + 1.17 + miRNA analysis + The analysis of microRNAs (miRNAs) : short, highly conserved small noncoding RNA molecules that are naturally occurring plant and animal genomes. + miRNA expression profiling + + + miRNA expression analysis + + + + + + + + + 1.17 + Counting and summarising the number of short sequence reads that map to genomic features. + + + Read summarisation + + + + + + + + + 1.17 + A technique whereby molecules with desired properties and function are isolated from libraries of random molecules, through iterative cycles of selection, amplification, and mutagenesis. + + + In vitro selection + + + + + + + + + 1.17 + The calculation of species richness for a number of individual samples, based on plots of the number of species as a function of the number of samples (rarefaction curves). + Species richness assessment + + + Rarefaction + + + + + + + + + + 1.17 + An operation which groups reads or contigs and assigns them to operational taxonomic units. + Binning + Binning shotgun reads + + + Binning methods use one or a combination of compositional features or sequence similarity. + Read binning + + + + + + + + + + 1.17 + true + Counting and measuring experimentally determined observations into quantities. + Quantitation + + + Quantification + + + + + + + + + 1.17 + Quantification of data arising from RNA-Seq high-throughput sequencing, typically the quantification of transcript abundances durnig transcriptome analysis in a gene expression study. + RNA-Seq quantitation + + + RNA-Seq quantification + + + + + + + + + + + + + + + 1.17 + Match experimentally measured mass spectrum to a spectrum in a spectral library or database. + + + Spectral library search + + + + + + + + + 1.17 + Sort a set of files or data items according to some property. + + + Sorting + + + + + + + + + 1.17 + Mass spectra identification of compounds that are produced by living systems. Including polyketides, terpenoids, phenylpropanoids, alkaloids and antibiotics. + De novo metabolite identification + Fragmenation tree generation + Metabolite identification + + + Natural product identification + + + + + + + + + 1.19 + Identify and assess specific genes or regulatory regions of interest that are differentially methylated. + Differentially-methylated region identification + + + DMR identification + + + + + + + + + 1.21 + + + Genotyping of multiple loci, typically characterizing microbial species isolates using internal fragments of multiple housekeeping genes. + MLST + + + Multilocus sequence typing + + + + + + + + + + + + + + + + + 1.21 + Calculate a theoretical mass spectrometry spectra for given sequences. + Spectrum prediction + + + Spectrum calculation + + + + + + + + + + + + + + + 1.22 + 3D visualization of a molecular trajectory. + + + Trajectory visualization + + + + + + + + + + 1.22 + Compute Essential Dynamics (ED) on a simulation trajectory: an analysis of molecule dynamics using PCA (Principal Component Analysis) applied to the atomic positional fluctuations. + ED + PCA + Principal modes + + + Principal Component Analysis (PCA) is a multivariate statistical analysis to obtain collective variables and reduce the dimensionality of the system. + Essential dynamics + + + + + + + + + + + + + + + + + + + + + 1.22 + Obtain force field parameters (charge, bonds, dihedrals, etc.) from a molecule, to be used in molecular simulations. + Ligand parameterization + Molecule parameterization + + + Forcefield parameterisation + + + + + + + + + 1.22 + Analyse DNA sequences in order to determine an individual's DNA characteristics, for example in criminal forensics, parentage testing and so on. + DNA fingerprinting + DNA profiling + + + + + + + + + + 1.22 + Predict or detect active sites in proteins; the region of an enzyme which binds a substrate bind and catalyses a reaction. + Active site detection + + + Active site prediction + + + + + + + + + + 1.22 + Predict or detect ligand-binding sites in proteins; a region of a protein which reversibly binds a ligand for some biochemical purpose, such as transport or regulation of protein function. + Ligand-binding site detection + Peptide-protein binding prediction + + + Ligand-binding site prediction + + + + + + + + + + 1.22 + Predict or detect metal ion-binding sites in proteins. + Metal-binding site detection + Protein metal-binding site prediction + + + Metal-binding site prediction + + + + + + + + + + + + + + + + + + + + + + 1.22 + Model or simulate protein-protein binding using comparative modelling or other techniques. + Protein docking + + + Protein-protein docking + + + + + + + + + + + + + + + + + + + + + 1.22 + Predict DNA-binding proteins. + DNA-binding protein detection + DNA-protein interaction prediction + Protein-DNA interaction prediction + + + DNA-binding protein prediction + + + + + + + + + + + + + + + + + + + + + 1.22 + Predict RNA-binding proteins. + Protein-RNA interaction prediction + RNA-binding protein detection + RNA-protein interaction prediction + + + RNA-binding protein prediction + + + + + + + + + 1.22 + Predict or detect RNA-binding sites in protein sequences. + Protein-RNA binding site detection + Protein-RNA binding site prediction + RNA binding site detection + + + RNA binding site prediction + + + + + + + + + 1.22 + Predict or detect DNA-binding sites in protein sequences. + Protein-DNA binding site detection + Protein-DNA binding site prediction + DNA binding site detection + + + DNA binding site prediction + + + + + + + + + + + + + + + + 1.22 + Identify or predict intrinsically disordered regions in proteins. + + + Protein disorder prediction + + + + + + + + + + 1.22 + Extract structured information from unstructured ("free") or semi-structured textual documents. + IE + + + Information extraction + + + + + + + + + + 1.22 + Retrieve resources from information systems matching a specific information need. + + + Information retrieval + + + + + + + + + + + + + + + 1.24 + Study of genomic feature structure, variation, function and evolution at a genomic scale. + Genomic analysis + Genome analysis + + + + + + + + + 1.24 + The determination of cytosine methylation status of specific positions in a nucleic acid sequences (usually reads from a bisulfite sequencing experiment). + + + Methylation calling + + + + + + + + + + + + + + + 1.24 + The identification of changes in DNA sequence or chromosome structure, usually in the context of diagnostic tests for disease, or to study ancestry or phylogeny. + Genetic testing + + + This can include indirect methods which reveal the results of genetic changes, such as RNA analysis to indicate gene expression, or biochemical analysis to identify expressed proteins. + DNA testing + + + + + + + + + + 1.24 + The processing of reads from high-throughput sequencing machines. + + + Sequence read processing + + + + + + + + + + + + + + + + 1.24 + Render (visualise) a network - typically a biological network of some sort. + Network rendering + Protein interaction network rendering + Protein interaction network visualisation + Network visualisation + + + + + + + + + + + + + + + + 1.24 + Render (visualise) a biological pathway. + Pathway rendering + + + Pathway visualisation + + + + + + + + + + + + + + + + + + + + + 1.24 + Generate, process or analyse a biological network. + Biological network analysis + Biological network modelling + Biological network prediction + Network comparison + Network modelling + Network prediction + Network simulation + Network topology simulation + + + Network analysis + + + + + + + + + + + + + + + + + + + + + + 1.24 + Generate, process or analyse a biological pathway. + Biological pathway analysis + Biological pathway modelling + Biological pathway prediction + Functional pathway analysis + Pathway comparison + Pathway modelling + Pathway prediction + Pathway simulation + + + Pathway analysis + + + + + + + + + + + 1.24 + Predict a metabolic pathway. + + + Metabolic pathway prediction + + + + + + + + + 1.24 + Assigning sequence reads to separate groups / files based on their index tag (sample origin). + Sequence demultiplexing + + + NGS sequence runs are often performed with multiple samples pooled together. In such cases, an index tag (or "barcode") - a unique sequence of between 6 and 12bp - is ligated to each sample's genetic material so that the sequence reads from different samples can be identified. The process of demultiplexing (dividing sequence reads into separate files for each index tag/sample) may be performed automatically by the sequencing hardware. Alternatively the reads may be lumped together in one file with barcodes still attached, requiring you to do the splitting using software. In such cases, a "mapping" file is used which indicates which barcodes correspond to which samples. + Demultiplexing + + + + + + + + + + + + + + + + + + + + + 1.24 + A process used in statistics, machine learning, and information theory that reduces the number of random variables by obtaining a set of principal variables. + Dimension reduction + + + Dimensionality reduction + + + + + + + + + + + + + + + + + + + + + + 1.24 + A dimensionality reduction process that selects a subset of relevant features (variables, predictors) for use in model construction. + Attribute selection + Variable selection + Variable subset selection + + + Feature selection + + + + + + + + + + + + + + + + + + + + + + 1.24 + A dimensionality reduction process which builds (ideally) informative and non-redundant values (features) from an initial set of measured data, to aid subsequent generalization, learning or interpretation. + Feature projection + + + Feature extraction + + + + + + + + + + + + + + + + + + + + + + 1.24 + Virtual screening is used in drug discovery to identify potential drug compounds. It involves searching libraries of small molecules in order to identify those molecules which are most likely to bind to a drug target (typically a protein receptor or enzyme). + Ligand-based screening + Ligand-based virtual screening + Structure-based screening + Structured-based virtual screening + Virtual ligand screening + + + Virtual screening is widely used for lead identification, lead optimization, and scaffold hopping during drug design and discovery. + Virtual screening + + + + + + + + + 1.24 + The application of phylogenetic and other methods to estimate paleogeographical events such as speciation. + Biogeographic dating + Speciation dating + Species tree dating + Tree-dating + + + Tree dating + + + + + + + + + + + + + + + + + + + + + + 1.24 + The development and use of mathematical models and systems analysis for the description of ecological processes, and applications such as the sustainable management of resources. + + + Ecological modelling + + + + + + + + + 1.24 + Mapping between gene tree nodes and species tree nodes or branches, to analyse and account for possible differences between gene histories and species histories, explaining this in terms of gene-scale events such as duplication, loss, transfer etc. + Gene tree / species tree reconciliation + + + Methods typically test for topological similarity between trees using for example a congruence index. + Phylogenetic tree reconciliation + + + + + + + + + 1.24 + The detection of genetic selection, or (the end result of) the process by which certain traits become more prevalent in a species than other traits. + + + Selection detection + + + + + + + + + 1.25 + A statistical procedure that uses an orthogonal transformation to convert a set of observations of possibly correlated variables into a set of values of linearly uncorrelated variables called principal components. + + + Principal component analysis + + + + + + + + + + 1.25 + Identify where sections of the genome are repeated and the number of repeats in the genome varies between individuals. + CNV detection + + + Copy number variation detection + + + + + + + + + 1.25 + Identify deletion events causing the number of repeats in the genome to vary between individuals. + + + Deletion detection + + + + + + + + + 1.25 + Identify duplication events causing the number of repeats in the genome to vary between individuals. + + + Duplication detection + + + + + + + + + 1.25 + Identify copy number variations which are complex, e.g. multi-allelic variations that have many structural alleles and have rearranged multiple times in the ancestral genomes. + + + Complex CNV detection + + + + + + + + + 1.25 + Identify amplification events causing the number of repeats in the genome to vary between individuals. + + + Amplification detection + + + + + + + + + + + + + + + + 1.25 + Predict adhesins in protein sequences. + + + An adhesin is a cell-surface component that facilitate the adherence of a microorganism to a cell or surface. They are important virulence factors during establishment of infection and thus are targeted during vaccine development approaches that seek to block adhesin function and prevent adherence to host cell. + Adhesin prediction + + + + + + + + + 1.25 + Design new protein molecules with specific structural or functional properties. + Protein redesign + Rational protein design + de novo protein design + + + Protein design + + + + + + + + + + 1.25 + The design of small molecules with specific biological activity, such as inhibitors or modulators for proteins that are of therapeutic interest. This can involve the modification of individual atoms, the addition or removal of molecular fragments, and the use reaction-based design to explore tractable synthesis options for the small molecule. + Drug design + Ligand-based drug design + Structure-based drug design + Structure-based small molecule design + Small molecule design can involve assessment of target druggability and flexibility, molecular docking, in silico fragment screening, molecular dynamics, and homology modeling. + There are two broad categories of small molecule design techniques when applied to the design of drugs: ligand-based drug design (e.g. ligand similarity) and structure-based drug design (ligand docking) methods. Ligand similarity methods exploit structural similarities to known active ligands, whereas ligand docking methods use the 3D structure of a target protein to predict the binding modes and affinities of ligands to it. + Small molecule design + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The estimation of the power of a test; that is the probability of correctly rejecting the null hypothesis when it is false. + Estimation of statistical power + Power analysis + + + Power test + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The prediction of DNA modifications (e.g. N4-methylcytosine and N6-Methyladenine) using, for example, statistical models. + + + DNA modification prediction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The analysis and simulation of disease transmission using, for example, statistical methods such as the SIR-model. + + + Disease transmission analysis + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The correction of p-values from multiple statistical tests to correct for false positives. + FDR estimation + False discovery rate estimation + + + Multiple testing correction + + + + + + + + + + beta12orEarlier + true + A category denoting a rather broad domain or field of interest, of study, application, work, data, or technology. Topics have no clearly defined borders between each other. + sumo:FieldOfStudy + + + Topic + + + + + + + + + + + + + + + + + beta12orEarlier + true + The processing and analysis of nucleic acid sequence, structural and other data. + Nucleic acid bioinformatics + Nucleic acid informatics + Nucleic_acids + Nucleic acid physicochemistry + Nucleic acid properties + + + Nucleic acids + + http://purl.bioontology.org/ontology/MSH/D017422 + http://purl.bioontology.org/ontology/MSH/D017423 + + + + + + + + + beta12orEarlier + true + Archival, processing and analysis of protein data, typically molecular sequence and structural data. + Protein bioinformatics + Protein informatics + Proteins + Protein databases + + + Proteins + + http://purl.bioontology.org/ontology/MSH/D020539 + + + + + + + + + beta12orEarlier + 1.13 + + The structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids. + + + Metabolites + true + + + + + + + + + beta12orEarlier + true + The archival, processing and analysis of molecular sequences (monomer composition of polymers) including molecular sequence data resources, sequence sites, alignments, motifs and profiles. + Sequence_analysis + Biological sequences + Sequence databases + + + + Sequence analysis + + http://purl.bioontology.org/ontology/MSH/D017421 + + + + + + + + + beta12orEarlier + true + The curation, processing, analysis and prediction of data about the structure of biological molecules, typically proteins and nucleic acids and other macromolecules. + Biomolecular structure + Structural bioinformatics + Structure_analysis + Computational structural biology + Molecular structure + Structure data resources + Structure databases + Structures + + + + This includes related concepts such as structural properties, alignments and structural motifs. + Structure analysis + + http://purl.bioontology.org/ontology/MSH/D015394 + + + + + + + + + beta12orEarlier + true + The prediction of molecular structure, including the prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features, and the folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations. + Structure_prediction + DNA structure prediction + Nucleic acid design + Nucleic acid folding + Nucleic acid structure prediction + Protein fold recognition + Protein structure prediction + RNA structure prediction + + + This includes the recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s), for example by threading, or the alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment). + Structure prediction + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + The alignment (equivalence between sites) of molecular sequences, structures or profiles (representing a sequence or structure alignment). + + Alignment + true + + + + + + + + + + beta12orEarlier + true + The study of evolutionary relationships amongst organisms. + Phylogeny + Phylogenetic clocks + Phylogenetic dating + Phylogenetic simulation + Phylogenetic stratigraphy + Phylogeny reconstruction + + + + This includes diverse phylogenetic methods, including phylogenetic tree construction, typically from molecular sequence or morphological data, methods that simulate DNA sequence evolution, a phylogenetic tree or the underlying data, or which estimate or use molecular clock and stratigraphic (age) data, methods for studying gene evolution etc. + Phylogeny + + http://purl.bioontology.org/ontology/MSH/D010802 + + + + + + + + + + beta12orEarlier + true + The study of gene or protein functions and their interactions in totality in a given organism, tissue, cell etc. + Functional_genomics + + + + Functional genomics + + + + + + + + + + beta12orEarlier + true + The conceptualisation, categorisation and nomenclature (naming) of entities or phenomena within biology or bioinformatics. This includes formal ontologies, controlled vocabularies, structured glossary, symbols and terminology or other related resource. + Ontology_and_terminology + Applied ontology + Ontologies + Ontology + Ontology relations + Terminology + Upper ontology + + + + Ontology and terminology + + http://purl.bioontology.org/ontology/MSH/D002965 + + + + + + + + + beta12orEarlier + 1.13 + + + + The search and query of data sources (typically databases or ontologies) in order to retrieve entries or other information. + + Information retrieval + true + + + + + + + + + beta12orEarlier + true + VT 1.5.6 Bioinformatics + The archival, curation, processing and analysis of complex biological data. + Bioinformatics + + + + This includes data processing in general, including basic handling of files and databases, datatypes, workflows and annotation. + Bioinformatics + + http://purl.bioontology.org/ontology/MSH/D016247 + + + + + + + + + beta12orEarlier + true + Computer graphics + VT 1.2.5 Computer graphics + Rendering (drawing on a computer screen) or visualisation of molecular sequences, structures or other biomolecular data. + Data rendering + Data_visualisation + + + Data visualisation + + + + + + + + + + beta12orEarlier + 1.3 + + + The study of the thermodynamic properties of a nucleic acid. + + Nucleic acid thermodynamics + true + + + + + + + + + + beta12orEarlier + The archival, curation, processing and analysis of nucleic acid structural information, such as whole structures, structural features and alignments, and associated annotation. + Nucleic acid structure + Nucleic_acid_structure_analysis + DNA melting + DNA structure + Nucleic acid denaturation + Nucleic acid thermodynamics + RNA alignment + RNA structure + RNA structure alignment + + + Includes secondary and tertiary nucleic acid structural data, nucleic acid thermodynamic, thermal and conformational properties including DNA or DNA/RNA denaturation (melting) etc. + Nucleic acid structure analysis + + + + + + + + + + beta12orEarlier + RNA sequences and structures. + RNA + Small RNA + + + RNA + + + + + + + + + + beta12orEarlier + 1.3 + + + Topic for the study of restriction enzymes, their cleavage sites and the restriction of nucleic acids. + + Nucleic acid restriction + true + + + + + + + + + beta12orEarlier + true + The mapping of complete (typically nucleotide) sequences. Mapping (in the sense of short read alignment, or more generally, just alignment) has application in RNA-Seq analysis (mapping of transcriptomics reads), variant discovery (e.g. mapping of exome capture), and re-sequencing (mapping of WGS reads). + Mapping + Genetic linkage + Linkage + Linkage mapping + Synteny + + + This includes resources that aim to identify, map or analyse genetic markers in DNA sequences, for example to produce a genetic (linkage) map of a chromosome or genome or to analyse genetic linkage and synteny. It also includes resources for physical (sequence) maps of a DNA sequence showing the physical distance (base pairs) between features or landmarks such as restriction sites, cloned DNA fragments, genes and other genetic markers. It also covers for example the alignment of sequences of (typically millions) of short reads to a reference genome. + Mapping + + + + + + + + + + beta12orEarlier + 1.3 + + + The study of codon usage in nucleotide sequence(s), genetic codes and so on. + + Genetic codes and codon usage + true + + + + + + + + + beta12orEarlier + The translation of mRNA into protein and subsequent protein processing in the cell. + Protein_expression + Translation + + + + Protein expression + + + + + + + + + + beta12orEarlier + 1.3 + + + Methods that aims to identify, predict, model or analyse genes or gene structure in DNA sequences. + + This includes the study of promoters, coding regions, splice sites, etc. Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc. + Gene finding + true + + + + + + + + + beta12orEarlier + 1.3 + + + The transcription of DNA into mRNA. + + Transcription + true + + + + + + + + + beta12orEarlier + beta13 + + + Promoters in DNA sequences (region of DNA that facilitates the transcription of a particular gene by binding RNA polymerase and transcription factor proteins). + + Promoters + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + The folding (in 3D space) of nucleic acid molecules. + + + Nucleic acid folding + true + + + + + + + + + beta12orEarlier + true + Gene structure, regions which make an RNA product and features such as promoters, coding regions, gene fusion, splice sites etc. + Gene features + Gene_structure + Fusion genes + + + This includes operons (operators, promoters and genes) from a bacterial genome. For example the operon leader and trailer gene, gene composition of the operon and associated information. + This includes the study of promoters, coding regions etc. + Gene structure + + + + + + + + + + beta12orEarlier + true + Protein and peptide identification, especially in the study of whole proteomes of organisms. + Proteomics + Bottom-up proteomics + Discovery proteomics + MS-based targeted proteomics + MS-based untargeted proteomics + Metaproteomics + Peptide identification + Protein and peptide identification + Quantitative proteomics + Targeted proteomics + Top-down proteomics + + + + Includes metaproteomics: proteomics analysis of an environmental sample. + Proteomics includes any methods (especially high-throughput) that separate, characterize and identify expressed proteins such as mass spectrometry, two-dimensional gel electrophoresis and protein microarrays, as well as in-silico methods that perform proteolytic or mass calculations on a protein sequence and other analyses of protein production data, for example in different cells or tissues. + Proteomics + + http://purl.bioontology.org/ontology/MSH/D040901 + + + + + + + + + + beta12orEarlier + true + The elucidation of the three dimensional structure for all (available) proteins in a given organism. + Structural_genomics + + + + Structural genomics + + + + + + + + + + beta12orEarlier + true + The study of the physical and biochemical properties of peptides and proteins, for example the hydrophobic, hydrophilic and charge properties of a protein. + Protein physicochemistry + Protein_properties + Protein hydropathy + + + Protein properties + + + + + + + + + + beta12orEarlier + true + Protein-protein, protein-DNA/RNA and protein-ligand interactions, including analysis of known interactions and prediction of putative interactions. + Protein_interactions + Protein interaction map + Protein interaction networks + Protein interactome + Protein-DNA interaction + Protein-DNA interactions + Protein-RNA interaction + Protein-RNA interactions + Protein-ligand interactions + Protein-nucleic acid interactions + Protein-protein interactions + + + This includes experimental (e.g. yeast two-hybrid) and computational analysis techniques. + Protein interactions + + + + + + + + + + beta12orEarlier + true + Protein stability, folding (in 3D space) and protein sequence-structure-function relationships. This includes for example study of inter-atomic or inter-residue interactions in protein (3D) structures, the effect of mutation, and the design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein. + Protein_folding_stability_and_design + Protein design + Protein folding + Protein residue interactions + Protein stability + Rational protein design + + + Protein folding, stability and design + + + + + + + + + + + beta12orEarlier + beta13 + + + Two-dimensional gel electrophoresis image and related data. + + Two-dimensional gel electrophoresis + true + + + + + + + + + beta12orEarlier + 1.13 + + An analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase. + + + Mass spectrometry + true + + + + + + + + + beta12orEarlier + beta13 + + + Protein microarray data. + + Protein microarrays + true + + + + + + + + + beta12orEarlier + 1.3 + + + The study of the hydrophobic, hydrophilic and charge properties of a protein. + + Protein hydropathy + true + + + + + + + + + beta12orEarlier + The study of how proteins are transported within and without the cell, including signal peptides, protein subcellular localisation and export. + Protein_targeting_and_localisation + Protein localisation + Protein sorting + Protein targeting + + + Protein targeting and localisation + + + + + + + + + + beta12orEarlier + 1.3 + + + Enzyme or chemical cleavage sites and proteolytic or mass calculations on a protein sequence. + + Protein cleavage sites and proteolysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + The comparison of two or more protein structures. + + + Use this concept for methods that are exclusively for protein structure. + Protein structure comparison + true + + + + + + + + + beta12orEarlier + 1.3 + + + The processing and analysis of inter-atomic or inter-residue interactions in protein (3D) structures. + + Protein residue interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein-protein interactions, individual interactions and networks, protein complexes, protein functional coupling etc. + + Protein-protein interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein-ligand (small molecule) interactions. + + Protein-ligand interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein-DNA/RNA interactions. + + Protein-nucleic acid interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + The design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein. + + Protein design + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + G-protein coupled receptors (GPCRs). + + G protein-coupled receptors (GPCR) + true + + + + + + + + + beta12orEarlier + true + Carbohydrates, typically including structural information. + Carbohydrates + + + Carbohydrates + + + + + + + + + + beta12orEarlier + true + Lipids and their structures. + Lipidomics + Lipids + + + Lipids + + + + + + + + + + beta12orEarlier + true + Small molecules of biological significance, typically archival, curation, processing and analysis of structural information. + Small_molecules + Amino acids + Chemical structures + Drug structures + Drug targets + Drugs and target structures + Metabolite structures + Peptides + Peptides and amino acids + Target structures + Targets + Toxins + Toxins and targets + CHEBI:23367 + + + Small molecules include organic molecules, metal-organic compounds, small polypeptides, small polysaccharides and oligonucleotides. Structural data is usually included. + This concept excludes macromolecules such as proteins and nucleic acids. + This includes the structures of drugs, drug target, their interactions and binding affinities. Also the structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids. Also the physicochemical, biochemical or structural properties of amino acids or peptides. Also structural and associated data for toxic chemical substances. + Small molecules + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Edit, convert or otherwise change a molecular sequence, either randomly or specifically. + + Sequence editing + true + + + + + + + + + beta12orEarlier + true + The archival, processing and analysis of the basic character composition of molecular sequences, for example character or word frequency, ambiguity, complexity, particularly regions of low complexity, and repeats or the repetitive nature of molecular sequences. + Sequence_composition_complexity_and_repeats + Low complexity sequences + Nucleic acid repeats + Protein repeats + Protein sequence repeats + Repeat sequences + Sequence complexity + Sequence composition + Sequence repeats + + + This includes repetitive elements within a nucleic acid sequence, e.g. long terminal repeats (LTRs); sequences (typically retroviral) directly repeated at both ends of a sequence and other types of repeating unit. + This includes short repetitive subsequences (repeat sequences) in a protein sequence. + Sequence composition, complexity and repeats + + + + + + + + + beta12orEarlier + 1.3 + + + Conserved patterns (motifs) in molecular sequences, that (typically) describe functional or other key sites. + + Sequence motifs + true + + + + + + + + + beta12orEarlier + 1.12 + + The comparison of two or more molecular sequences, for example sequence alignment and clustering. + + + The comparison might be on the basis of sequence, physico-chemical or some other properties of the sequences. + Sequence comparison + true + + + + + + + + + beta12orEarlier + true + The archival, detection, prediction and analysis of positional features such as functional and other key sites, in molecular sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them. + Sequence_sites_features_and_motifs + Functional sites + HMMs + Sequence features + Sequence motifs + Sequence profiles + Sequence sites + + + Sequence sites, features and motifs + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Search and retrieve molecular sequences that are similar to a sequence-based query (typically a simple sequence). + + The query is a sequence-based entity such as another sequence, a motif or profile. + Sequence database search + true + + + + + + + + + beta12orEarlier + 1.7 + + The comparison and grouping together of molecular sequences on the basis of their similarities. + + + This includes systems that generate, process and analyse sequence clusters. + Sequence clustering + true + + + + + + + + + beta12orEarlier + true + Structural features or common 3D motifs within protein structures, including the surface of a protein structure, such as biological interfaces with other molecules. + Protein 3D motifs + Protein_structural_motifs_and_surfaces + Protein structural features + Protein structural motifs + Protein surfaces + Structural motifs + + + This includes conformation of conserved substructures, conserved geometry (spatial arrangement) of secondary structure or protein backbone, solvent-exposed surfaces, internal cavities, the analysis of shape, hydropathy, electrostatic patches, role and functions etc. + Protein structural motifs and surfaces + + + + + + + + + + beta12orEarlier + 1.3 + + + The processing, analysis or use of some type of structural (3D) profile or template; a computational entity (typically a numerical matrix) that is derived from and represents a structure or structure alignment. + + Structural (3D) profiles + true + + + + + + + + + beta12orEarlier + 1.12 + + The prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features. + + + Protein structure prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + The folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations. + + + Nucleic acid structure prediction + true + + + + + + + + + beta12orEarlier + 1.7 + + The prediction of three-dimensional structure of a (typically protein) sequence from first principles, using a physics-based or empirical scoring function and without using explicit structural templates. + + + Ab initio structure prediction + true + + + + + + + + + beta12orEarlier + 1.4 + + + The modelling of the three-dimensional structure of a protein using known sequence and structural data. + + Homology modelling + true + + + + + + + + + + beta12orEarlier + true + Molecular flexibility + Molecular motions + The study and simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation. + Molecular_dynamics + Protein dynamics + + + This includes methods such as Molecular Dynamics, Coarse-grained dynamics, metadynamics, Quantum Mechanics, QM/MM, Markov State Models, etc. This includes resources concerning flexibility and motion in protein and other molecular structures. + Molecular dynamics + + + + + + + + + + beta12orEarlier + true + 1.12 + + The modelling the structure of proteins in complex with small molecules or other macromolecules. + + + Molecular docking + true + + + + + + + + + beta12orEarlier + 1.3 + + The prediction of secondary or supersecondary structure of protein sequences. + + + Protein secondary structure prediction + true + + + + + + + + + beta12orEarlier + 1.3 + + The prediction of tertiary structure of protein sequences. + + + Protein tertiary structure prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + The recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s). + + + Protein fold recognition + true + + + + + + + + + beta12orEarlier + 1.7 + + The alignment of molecular sequences or sequence profiles (representing sequence alignments). + + + This includes the generation of alignments (the identification of equivalent sites), the analysis of alignments, editing, visualisation, alignment databases, the alignment (equivalence between sites) of sequence profiles (representing sequence alignments) and so on. + Sequence alignment + true + + + + + + + + + beta12orEarlier + 1.7 + + The superimposition of molecular tertiary structures or structural (3D) profiles (representing a structure or structure alignment). + + + This includes the generation, storage, analysis, rendering etc. of structure alignments. + Structure alignment + true + + + + + + + + + beta12orEarlier + 1.3 + + The alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment). + + + Threading + true + + + + + + + + + beta12orEarlier + 1.3 + + + Sequence profiles; typically a positional, numerical matrix representing a sequence alignment. + + Sequence profiles include position-specific scoring matrix (position weight matrix), hidden Markov models etc. + Sequence profiles and HMMs + true + + + + + + + + + beta12orEarlier + 1.3 + + + The reconstruction of a phylogeny (evolutionary relatedness amongst organisms), for example, by building a phylogenetic tree. + + Currently too specific for the topic sub-ontology (but might be unobsoleted). + Phylogeny reconstruction + true + + + + + + + + + + beta12orEarlier + true + The integrated study of evolutionary relationships and whole genome data, for example, in the analysis of species trees, horizontal gene transfer and evolutionary reconstruction. + Phylogenomics + + + + Phylogenomics + + + + + + + + + + beta12orEarlier + beta13 + + + Simulated polymerase chain reaction (PCR). + + Virtual PCR + true + + + + + + + + + beta12orEarlier + true + The assembly of fragments of a DNA sequence to reconstruct the original sequence. + Sequence_assembly + Assembly + + + Assembly has two broad types, de-novo and re-sequencing. Re-sequencing is a specialised case of assembly, where an assembled (typically de-novo assembled) reference genome is available and is about 95% identical to the re-sequenced genome. All other cases of assembly are 'de-novo'. + Sequence assembly + + + + + + + + + + + beta12orEarlier + true + Stable, naturally occurring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms. + DNA variation + Genetic_variation + Genomic variation + Mutation + Polymorphism + Somatic mutations + + + Genetic variation + + http://purl.bioontology.org/ontology/MSH/D014644 + + + + + + + + + beta12orEarlier + 1.3 + + + Microarrays, for example, to process microarray data or design probes and experiments. + + Microarrays + http://purl.bioontology.org/ontology/MSH/D046228 + true + + + + + + + + + beta12orEarlier + true + VT 3.1.7 Pharmacology and pharmacy + The study of drugs and their effects or responses in living systems. + Pharmacology + Computational pharmacology + Pharmacoinformatics + + + + Pharmacology + + + + + + + + + + beta12orEarlier + true + http://edamontology.org/topic_0197 + The analysis of levels and patterns of synthesis of gene products (proteins and functional RNA) including interpretation in functional terms of gene expression data. + Expression + Gene_expression + Codon usage + DNA chips + DNA microarrays + Gene expression profiling + Gene transcription + Gene translation + Transcription + + + + Gene expression levels are analysed by identifying, quantifying or comparing mRNA transcripts, for example using microarrays, RNA-seq, northern blots, gene-indexed expression profiles etc. + This includes the study of codon usage in nucleotide sequence(s), genetic codes and so on. + Gene expression + + http://purl.bioontology.org/ontology/MSH/D015870 + + + + + + + + + beta12orEarlier + true + The regulation of gene expression. + Regulatory genomics + + + Gene regulation + + + + + + + + + + + beta12orEarlier + true + The influence of genotype on drug response, for example by correlating gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity. + Pharmacogenomics + Pharmacogenetics + + + + Pharmacogenomics + + + + + + + + + + + beta12orEarlier + true + VT 3.1.4 Medicinal chemistry + The design and chemical synthesis of bioactive molecules, for example drugs or potential drug compounds, for medicinal purposes. + Drug design + Medicinal_chemistry + + + + This includes methods that search compound collections, generate or analyse drug 3D conformations, identify drug targets with structural docking etc. + Medicinal chemistry + + + + + + + + + + beta12orEarlier + 1.3 + + + Information on a specific fish genome including molecular sequences, genes and annotation. + + Fish + true + + + + + + + + + beta12orEarlier + 1.3 + + + Information on a specific fly genome including molecular sequences, genes and annotation. + + Flies + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Information on a specific mouse or rat genome including molecular sequences, genes and annotation. + + The resource may be specific to a group of mice / rats or all mice / rats. + Mice or rats + true + + + + + + + + + beta12orEarlier + 1.3 + + + Information on a specific worm genome including molecular sequences, genes and annotation. + + Worms + true + + + + + + + + + beta12orEarlier + 1.3 + + The processing and analysis of the bioinformatics literature and bibliographic data, such as literature search and query. + + + Literature analysis + true + + + + + + + + + + beta12orEarlier + The processing and analysis of natural language, such as scientific literature in English, in order to extract data and information, or to enable human-computer interaction. + NLP + Natural_language_processing + BioNLP + Literature mining + Text analytics + Text data mining + Text mining + + + + Natural language processing + + + + + + + + + + + + beta12orEarlier + Deposition and curation of database accessions, including annotation, typically with terms from a controlled vocabulary. + Data_submission_annotation_and_curation + Data curation + Data provenance + Database curation + + + + Data submission, annotation, and curation + + + + + + + + + beta12orEarlier + 1.13 + + The management and manipulation of digital documents, including database records, files and reports. + + + Document, record and content management + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation of a molecular sequence. + + Sequence annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + + Annotation of a genome. + + Genome annotation + true + + + + + + + + + + beta12orEarlier + Spectroscopy + An analytical technique that exploits the magenetic properties of certain atomic nuclei to provide information on the structure, dynamics, reaction state and chemical environment of molecules. + NMR spectroscopy + Nuclear magnetic resonance spectroscopy + NMR + HOESY + Heteronuclear Overhauser Effect Spectroscopy + NOESY + Nuclear Overhauser Effect Spectroscopy + ROESY + Rotational Frame Nuclear Overhauser Effect Spectroscopy + + + + NMR + + + + + + + + + + beta12orEarlier + 1.12 + + The classification of molecular sequences based on some measure of their similarity. + + + Methods including sequence motifs, profile and other diagnostic elements which (typically) represent conserved patterns (of residues or properties) in molecular sequences. + Sequence classification + true + + + + + + + + + beta12orEarlier + 1.3 + + + primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc. + + Protein classification + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Sequence motifs, or sequence profiles derived from an alignment of molecular sequences of a particular type. + + This includes comparison, discovery, recognition etc. of sequence motifs. + Sequence motif or profile + true + + + + + + + + + beta12orEarlier + true + Protein chemical modifications, e.g. post-translational modifications. + PTMs + Post-translational modifications + Protein post-translational modification + Protein_modifications + Post-translation modifications + Protein chemical modifications + Protein post-translational modifications + GO:0006464 + MOD:00000 + + + EDAM does not describe all possible protein modifications. For fine-grained annotation of protein modification use the Gene Ontology (children of concept GO:0006464) and/or the Protein Modifications ontology (children of concept MOD:00000) + Protein modifications + + + + + + + + + + beta12orEarlier + true + http://edamontology.org/topic_3076 + Molecular interactions, biological pathways, networks and other models. + Molecular_interactions_pathways_and_networks + Biological models + Biological networks + Biological pathways + Cellular process pathways + Disease pathways + Environmental information processing pathways + Gene regulatory networks + Genetic information processing pathways + Interactions + Interactome + Metabolic pathways + Molecular interactions + Networks + Pathways + Signal transduction pathways + Signaling pathways + + + + Molecular interactions, pathways and networks + + + + + + + + + + + beta12orEarlier + true + VT 1.3 Information sciences + VT 1.3.3 Information retrieval + VT 1.3.4 Information management + VT 1.3.5 Knowledge management + VT 1.3.99 Other + The study and practice of information processing and use of computer information systems. + Information management + Information science + Knowledge management + Informatics + + + Informatics + + + + + + + + + + beta12orEarlier + 1.3 + + Data resources for the biological or biomedical literature, either a primary source of literature or some derivative. + + + Literature data resources + true + + + + + + + + + beta12orEarlier + true + Laboratory management and resources, for example, catalogues of biological resources for use in the lab including cell lines, viruses, plasmids, phages, DNA probes and primers and so on. + Laboratory_Information_management + Laboratory resources + + + + Laboratory information management + + + + + + + + + + beta12orEarlier + 1.3 + + + General cell culture or data on a specific cell lines. + + Cell and tissue culture + true + + + + + + + + + + beta12orEarlier + true + VT 1.5.15 Ecology + The ecological and environmental sciences and especially the application of information technology (ecoinformatics). + Ecology + Computational ecology + Ecoinformatics + Ecological informatics + Ecosystem science + + + + Ecology + + http://purl.bioontology.org/ontology/MSH/D004777 + + + + + + + + + + beta12orEarlier + Electron diffraction experiment + The study of matter by studying the interference pattern from firing electrons at a sample, to analyse structures at resolutions higher than can be achieved using light. + Electron_microscopy + Electron crystallography + SEM + Scanning electron microscopy + Single particle electron microscopy + TEM + Transmission electron microscopy + + + + Electron microscopy + + + + + + + + + + beta12orEarlier + beta13 + + + The cell cycle including key genes and proteins. + + Cell cycle + true + + + + + + + + + beta12orEarlier + 1.13 + + The physicochemical, biochemical or structural properties of amino acids or peptides. + + + Peptides and amino acids + true + + + + + + + + + beta12orEarlier + 1.3 + + + A specific organelle, or organelles in general, typically the genes and proteins (or genome and proteome). + + Organelles + true + + + + + + + + + beta12orEarlier + 1.3 + + + Ribosomes, typically of ribosome-related genes and proteins. + + Ribosomes + true + + + + + + + + + beta12orEarlier + beta13 + + + A database about scents. + + Scents + true + + + + + + + + + beta12orEarlier + 1.13 + + The structures of drugs, drug target, their interactions and binding affinities. + + + Drugs and target structures + true + + + + + + + + + beta12orEarlier + true + A specific organism, or group of organisms, used to study a particular aspect of biology. + Organisms + Model_organisms + + + + This may include information on the genome (including molecular sequences and map, genes and annotation), proteome, as well as more general information about an organism. + Model organisms + + + + + + + + + + beta12orEarlier + true + Whole genomes of one or more organisms, or genomes in general, such as meta-information on genomes, genome projects, gene names etc. + Genomics + Exomes + Genome annotation + Genomes + Personal genomics + Synthetic genomics + Viral genomics + Whole genomes + + + + Genomics + + http://purl.bioontology.org/ontology/MSH/D023281 + + + + + + + + + + beta12orEarlier + true + Particular gene(s), gene family or other gene group or system and their encoded proteins.Primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc., curation of a particular protein or protein family, or any other proteins that have been classified as members of a common group. + Genes, gene family or system + Gene_and protein_families + Gene families + Gene family + Gene system + Protein families + Protein sequence classification + + + + A protein families database might include the classifier (e.g. a sequence profile) used to build the classification. + Gene and protein families + + + + + + + + + + + beta12orEarlier + 1.13 + + Study of chromosomes. + + + Chromosomes + true + + + + + + + + + beta12orEarlier + true + The study of genetic constitution of a living entity, such as an individual, and organism, a cell and so on, typically with respect to a particular observable phenotypic traits, or resources concerning such traits, which might be an aspect of biochemistry, physiology, morphology, anatomy, development and so on. + Genotype and phenotype resources + Genotype-phenotype + Genotype-phenotype analysis + Genotype_and_phenotype + Genotype + Genotyping + Phenotype + Phenotyping + + + + Genotype and phenotype + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Gene expression e.g. microarray data, northern blots, gene-indexed expression profiles etc. + + Gene expression and microarray + true + + + + + + + + + beta12orEarlier + true + Molecular probes (e.g. a peptide probe or DNA microarray probe) or PCR primers and hybridisation oligos in a nucleic acid sequence. + Probes_and_primers + Primer quality + Primers + Probes + + + This includes the design of primers for PCR and DNA amplification or the design of molecular probes. + Probes and primers + http://purl.bioontology.org/ontology/MSH/D015335 + + + + + + + + + beta12orEarlier + true + VT 3.1.6 Pathology + Diseases, including diseases in general and the genes, gene variations and proteins involved in one or more specific diseases. + Disease + Pathology + + + + Pathology + + + + + + + + + + beta12orEarlier + 1.3 + + + A particular protein, protein family or other group of proteins. + + Specific protein resources + true + + + + + + + + + beta12orEarlier + true + VT 1.5.25 Taxonomy + Organism classification, identification and naming. + Taxonomy + + + Taxonomy + + + + + + + + + + beta12orEarlier + 1.8 + + Archival, processing and analysis of protein sequences and sequence-based entities such as alignments, motifs and profiles. + + + Protein sequence analysis + true + + + + + + + + + beta12orEarlier + 1.8 + + The archival, processing and analysis of nucleotide sequences and and sequence-based entities such as alignments, motifs and profiles. + + + Nucleic acid sequence analysis + true + + + + + + + + + beta12orEarlier + 1.3 + + + The repetitive nature of molecular sequences. + + Repeat sequences + true + + + + + + + + + beta12orEarlier + 1.3 + + + The (character) complexity of molecular sequences, particularly regions of low complexity. + + Low complexity sequences + true + + + + + + + + + beta12orEarlier + beta13 + + + A specific proteome including protein sequences and annotation. + + Proteome + true + + + + + + + + + beta12orEarlier + DNA sequences and structure, including processes such as methylation and replication. + DNA analysis + DNA + Ancient DNA + Chromosomes + + + The DNA sequences might be coding or non-coding sequences. + DNA + + + + + + + + + + beta12orEarlier + 1.13 + + Protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. + + + Coding RNA + true + + + + + + + + + + beta12orEarlier + true + Non-coding or functional RNA sequences, including regulatory RNA sequences, ribosomal RNA (rRNA) and transfer RNA (tRNA). + Functional_regulatory_and_non-coding_RNA + Functional RNA + Long ncRNA + Long non-coding RNA + Non-coding RNA + Regulatory RNA + Small and long non-coding RNAs + Small interfering RNA + Small ncRNA + Small non-coding RNA + Small nuclear RNA + Small nucleolar RNA + lncRNA + miRNA + microRNA + ncRNA + piRNA + piwi-interacting RNA + siRNA + snRNA + snoRNA + + + Non-coding RNA includes piwi-interacting RNA (piRNA), small nuclear RNA (snRNA) and small nucleolar RNA (snoRNA). Regulatory RNA includes microRNA (miRNA) - short single stranded RNA molecules that regulate gene expression, and small interfering RNA (siRNA). + Functional, regulatory and non-coding RNA + + + + + + + + + + beta12orEarlier + 1.3 + + + One or more ribosomal RNA (rRNA) sequences. + + rRNA + true + + + + + + + + + beta12orEarlier + 1.3 + + + One or more transfer RNA (tRNA) sequences. + + tRNA + true + + + + + + + + + beta12orEarlier + 1.8 + + Protein secondary structure or secondary structure alignments. + + + This includes assignment, analysis, comparison, prediction, rendering etc. of secondary structure data. + Protein secondary structure + true + + + + + + + + + beta12orEarlier + 1.3 + + + RNA secondary or tertiary structure and alignments. + + RNA structure + true + + + + + + + + + beta12orEarlier + 1.8 + + Protein tertiary structures. + + + Protein tertiary structure + true + + + + + + + + + beta12orEarlier + 1.3 + + + Classification of nucleic acid sequences and structures. + + Nucleic acid classification + true + + + + + + + + + beta12orEarlier + 1.14 + + Primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc., curation of a particular protein or protein family, or any other proteins that have been classified as members of a common group. + + + Protein families + true + + + + + + + + + beta12orEarlier + true + Protein tertiary structural domains and folds in a protein or polypeptide chain. + Protein_folds_and_structural_domains + Intramembrane regions + Protein domains + Protein folds + Protein membrane regions + Protein structural domains + Protein topological domains + Protein transmembrane regions + Transmembrane regions + + + This includes topological domains such as cytoplasmic regions in a protein. + This includes trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements. For example, the location and size of the membrane spanning segments and intervening loop regions, transmembrane region IN/OUT orientation relative to the membrane, plus the following data for each amino acid: A Z-coordinate (the distance to the membrane center), the free energy of membrane insertion (calculated in a sliding window over the sequence) and a reliability score. The z-coordinate implies information about re-entrant helices, interfacial helices, the tilt of a transmembrane helix and loop lengths. + Protein folds and structural domains + + + + + + + + + + beta12orEarlier + 1.3 + + Nucleotide sequence alignments. + + + Nucleic acid sequence alignment + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein sequence alignments. + + A sequence profile typically represents a sequence alignment. + Protein sequence alignment + true + + + + + + + + + beta12orEarlier + 1.3 + + + + The archival, detection, prediction and analysis ofpositional features such as functional sites in nucleotide sequences. + + Nucleic acid sites and features + true + + + + + + + + + beta12orEarlier + 1.3 + + + + The detection, identification and analysis of positional features in proteins, such as functional sites. + + Protein sites and features + true + + + + + + + + + + + beta12orEarlier + Proteins that bind to DNA and control transcription of DNA to mRNA (transcription factors) and also transcriptional regulatory sites, elements and regions (such as promoters, enhancers, silencers and boundary elements / insulators) in nucleotide sequences. + Transcription_factors_and_regulatory_sites + -10 signals + -35 signals + Attenuators + CAAT signals + CAT box + CCAAT box + CpG islands + Enhancers + GC signals + Isochores + Promoters + TATA signals + TFBS + Terminators + Transcription factor binding sites + Transcription factors + Transcriptional regulatory sites + + + This includes CpG rich regions (isochores) in a nucleotide sequence. + This includes promoters, CAAT signals, TATA signals, -35 signals, -10 signals, GC signals, primer binding sites for initiation of transcription or reverse transcription, enhancer, attenuator, terminators and ribosome binding sites. + Transcription factor proteins either promote (as an activator) or block (as a repressor) the binding to DNA of RNA polymerase. Regulatory sites including transcription factor binding site as well as promoters, enhancers, silencers and boundary elements / insulators. + Transcription factors and regulatory sites + + + + + + + + + + + beta12orEarlier + 1.0 + + + + Protein phosphorylation and phosphorylation sites in protein sequences. + + Phosphorylation sites + true + + + + + + + + + beta12orEarlier + 1.13 + + Metabolic pathways. + + + Metabolic pathways + true + + + + + + + + + beta12orEarlier + 1.13 + + Signaling pathways. + + + Signaling pathways + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein and peptide identification. + + Protein and peptide identification + true + + + + + + + + + beta12orEarlier + Biological or biomedical analytical workflows or pipelines. + Pipelines + Workflows + Software integration + Tool integration + Tool interoperability + + + Workflows + + + + + + + + + + beta12orEarlier + 1.0 + + + Structuring data into basic types and (computational) objects. + + Data types and objects + true + + + + + + + + + beta12orEarlier + 1.3 + + + Theoretical biology. + + Theoretical biology + true + + + + + + + + + beta12orEarlier + 1.3 + + + Mitochondria, typically of mitochondrial genes and proteins. + + Mitochondria + true + + + + + + + + + beta12orEarlier + VT 1.5.10 Botany + VT 1.5.22 Plant science + Plants, e.g. information on a specific plant genome including molecular sequences, genes and annotation. + Botany + Plant + Plant science + Plants + Plant_biology + Plant anatomy + Plant cell biology + Plant ecology + Plant genetics + Plant physiology + + + The resource may be specific to a plant, a group of plants or all plants. + Plant biology + + + + + + + + + + beta12orEarlier + VT 1.5.28 + Study of viruses, e.g. sequence and structural data, interactions of viral proteins, or a viral genome including molecular sequences, genes and annotation. + Virology + + + Virology + + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Fungi and molds, e.g. information on a specific fungal genome including molecular sequences, genes and annotation. + + The resource may be specific to a fungus, a group of fungi or all fungi. + Fungi + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). Definition is wrong anyway. + 1.17 + + + Pathogens, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation. + + The resource may be specific to a pathogen, a group of pathogens or all pathogens. + Pathogens + true + + + + + + + + + beta12orEarlier + 1.3 + + + Arabidopsis-specific data. + + Arabidopsis + true + + + + + + + + + beta12orEarlier + 1.3 + + + Rice-specific data. + + Rice + true + + + + + + + + + beta12orEarlier + 1.3 + + + Informatics resources that aim to identify, map or analyse genetic markers in DNA sequences, for example to produce a genetic (linkage) map of a chromosome or genome or to analyse genetic linkage and synteny. + + Genetic mapping and linkage + true + + + + + + + + + beta12orEarlier + true + The study (typically comparison) of the sequence, structure or function of multiple genomes. + Comparative_genomics + + + + Comparative genomics + + + + + + + + + + beta12orEarlier + Mobile genetic elements, such as transposons, Plasmids, Bacteriophage elements and Group II introns. + Mobile_genetic_elements + Transposons + + + Mobile genetic elements + + + + + + + + + + beta12orEarlier + beta13 + + + Human diseases, typically describing the genes, mutations and proteins implicated in disease. + + Human disease + true + + + + + + + + + beta12orEarlier + true + VT 3.1.3 Immunology + The application of information technology to immunology such as immunological processes, immunological genes, proteins and peptide ligands, antigens and so on. + Immunology + + + + Immunology + + http://purl.bioontology.org/ontology/MSH/D007120 + http://purl.bioontology.org/ontology/MSH/D007125 + + + + + + + + + beta12orEarlier + true + Lipoproteins (protein-lipid assemblies), and proteins or region of a protein that spans or are associated with a membrane. + Membrane_and_lipoproteins + Lipoproteins + Membrane proteins + Transmembrane proteins + + + Membrane and lipoproteins + + + + + + + + + + + beta12orEarlier + true + Proteins that catalyze chemical reaction, the kinetics of enzyme-catalysed reactions, enzyme nomenclature etc. + Enzymology + Enzymes + + + Enzymes + + + + + + + + + + beta12orEarlier + 1.13 + + PCR primers and hybridisation oligos in a nucleic acid sequence. + + + Primers + true + + + + + + + + + beta12orEarlier + 1.13 + + Regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript. + + + PolyA signal or sites + true + + + + + + + + + beta12orEarlier + 1.13 + + CpG rich regions (isochores) in a nucleotide sequence. + + + CpG island and isochores + true + + + + + + + + + beta12orEarlier + 1.13 + + Restriction enzyme recognition sites (restriction sites) in a nucleic acid sequence. + + + Restriction sites + true + + + + + + + + + beta12orEarlier + 1.13 + + + + Splice sites in a nucleotide sequence or alternative RNA splicing events. + + Splice sites + true + + + + + + + + + beta12orEarlier + 1.13 + + Matrix/scaffold attachment regions (MARs/SARs) in a DNA sequence. + + + Matrix/scaffold attachment sites + true + + + + + + + + + beta12orEarlier + 1.13 + + Operons (operators, promoters and genes) from a bacterial genome. + + + Operon + true + + + + + + + + + beta12orEarlier + 1.13 + + Whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in a DNA sequence. + + + Promoters + true + + + + + + + + + beta12orEarlier + true + VT 1.5.24 Structural biology + The molecular structure of biological molecules, particularly macromolecules such as proteins and nucleic acids. + Structural_biology + Structural assignment + Structural determination + Structure determination + + + + This includes experimental methods for biomolecular structure determination, such as X-ray crystallography, nuclear magnetic resonance (NMR), circular dichroism (CD) spectroscopy, microscopy etc., including the assignment or modelling of molecular structure from such data. + Structural biology + + + + + + + + + + beta12orEarlier + 1.13 + + Trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements. + + + Protein membrane regions + true + + + + + + + + + beta12orEarlier + 1.13 + + The comparison of two or more molecular structures, for example structure alignment and clustering. + + + This might involve comparison of secondary or tertiary (3D) structural information. + Structure comparison + true + + + + + + + + + beta12orEarlier + true + The study of gene and protein function including the prediction of functional properties of a protein. + Functional analysis + Function_analysis + Protein function analysis + Protein function prediction + + + + Function analysis + + + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Specific bacteria or archaea, e.g. information on a specific prokaryote genome including molecular sequences, genes and annotation. + + The resource may be specific to a prokaryote, a group of prokaryotes or all prokaryotes. + Prokaryotes and Archaea + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein data resources. + + Protein databases + true + + + + + + + + + beta12orEarlier + 1.3 + + + Experimental methods for biomolecular structure determination, such as X-ray crystallography, nuclear magnetic resonance (NMR), circular dichroism (CD) spectroscopy, microscopy etc., including the assignment or modelling of molecular structure from such data. + + Structure determination + true + + + + + + + + + beta12orEarlier + true + VT 1.5.11 Cell biology + Cells, such as key genes and proteins involved in the cell cycle. + Cell_biology + Cells + Cellular processes + Protein subcellular localization + + + Cell biology + + + + + + + + + + beta12orEarlier + beta13 + + + Topic focused on identifying, grouping, or naming things in a structured way according to some schema based on observable relationships. + + Classification + true + + + + + + + + + beta12orEarlier + 1.3 + + + Lipoproteins (protein-lipid assemblies). + + Lipoproteins + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Visualise a phylogeny, for example, render a phylogenetic tree. + + Phylogeny visualisation + true + + + + + + + + + beta12orEarlier + true + The application of information technology to chemistry in biological research environment. + Chemical informatics + Chemoinformatics + Cheminformatics + + + + Cheminformatics + + + + + + + + + + beta12orEarlier + true + The holistic modelling and analysis of complex biological systems and the interactions therein. + Systems_biology + Biological modelling + Biological system modelling + Systems modelling + + + + This includes databases of models and methods to construct or analyse a model. + Systems biology + + http://purl.bioontology.org/ontology/MSH/D049490 + + + + + + + + + beta12orEarlier + The application of statistical methods to biological problems. + Statistics_and_probability + Bayesian methods + Biostatistics + Descriptive statistics + Gaussian processes + Inferential statistics + Markov processes + Multivariate statistics + Probabilistic graphical model + Probability + Statistics + + + + Statistics and probability + + + + http://purl.bioontology.org/ontology/MSH/D056808 + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Search for and retrieve molecular structures that are similar to a structure-based query (typically another structure or part of a structure). + + The query is a structure-based entity such as another structure, a 3D (structural) motif, 3D profile or template. + Structure database search + true + + + + + + + + + beta12orEarlier + true + The construction, analysis, evaluation, refinement etc. of models of a molecules properties or behaviour, including the modelling the structure of proteins in complex with small molecules or other macromolecules (docking). + Molecular_modelling + Comparative modelling + Docking + Homology modeling + Homology modelling + Molecular docking + + + Molecular modelling + + + + + + + + + + beta12orEarlier + 1.2 + + + The prediction of functional properties of a protein. + + Protein function prediction + true + + + + + + + + + beta12orEarlier + 1.13 + + Single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs. + + + SNP + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Predict transmembrane domains and topology in protein sequences. + + Transmembrane protein prediction + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + The comparison two or more nucleic acid (typically RNA) secondary or tertiary structures. + + Use this concept for methods that are exclusively for nucleic acid structures. + Nucleic acid structure comparison + true + + + + + + + + + beta12orEarlier + 1.13 + + Exons in a nucleotide sequences. + + + Exons + true + + + + + + + + + beta12orEarlier + 1.13 + + Transcription of DNA into RNA including the regulation of transcription. + + + Gene transcription + true + + + + + + + + + + beta12orEarlier + DNA mutation. + DNA_mutation + + + DNA mutation + + + + + + + + + + beta12orEarlier + true + VT 3.2.16 Oncology + The study of cancer, for example, genes and proteins implicated in cancer. + Cancer biology + Oncology + Cancer + Neoplasm + Neoplasms + + + + Oncology + + + + + + + + + + beta12orEarlier + 1.13 + + Structural and associated data for toxic chemical substances. + + + Toxins and targets + true + + + + + + + + + beta12orEarlier + 1.13 + + Introns in a nucleotide sequences. + + + Introns + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A topic concerning primarily bioinformatics software tools, typically the broad function or purpose of a tool. + + + Tool topic + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A general area of bioinformatics study, typically the broad scope or category of content of a bioinformatics journal or conference proceeding. + + + Study topic + true + + + + + + + + + beta12orEarlier + 1.3 + + + Biological nomenclature (naming), symbols and terminology. + + Nomenclature + true + + + + + + + + + beta12orEarlier + 1.3 + + + The genes, gene variations and proteins involved in one or more specific diseases. + + Disease genes and proteins + true + + + + + + + + + + beta12orEarlier + true + http://edamontology.org/topic_3040 + Protein secondary or tertiary structural data and/or associated annotation. + Protein structure + Protein_structure_analysis + Protein tertiary structure + + + + Protein structure analysis + + + + + + + + + + beta12orEarlier + The study of human beings in general, including the human genome and proteome. + Humans + Human_biology + + + Human biology + + + + + + + + + + beta12orEarlier + 1.3 + + + Informatics resource (typically a database) primarily focused on genes. + + Gene resources + true + + + + + + + + + beta12orEarlier + 1.3 + + + Yeast, e.g. information on a specific yeast genome including molecular sequences, genes and annotation. + + Yeast + true + + + + + + + + + beta12orEarlier + (jison) Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Eukaryotes or data concerning eukaryotes, e.g. information on a specific eukaryote genome including molecular sequences, genes and annotation. + + The resource may be specific to a eukaryote, a group of eukaryotes or all eukaryotes. + Eukaryotes + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Invertebrates, e.g. information on a specific invertebrate genome including molecular sequences, genes and annotation. + + The resource may be specific to an invertebrate, a group of invertebrates or all invertebrates. + Invertebrates + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Vertebrates, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation. + + The resource may be specific to a vertebrate, a group of vertebrates or all vertebrates. + Vertebrates + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Unicellular eukaryotes, e.g. information on a unicellular eukaryote genome including molecular sequences, genes and annotation. + + The resource may be specific to a unicellular eukaryote, a group of unicellular eukaryotes or all unicellular eukaryotes. + Unicellular eukaryotes + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein secondary or tertiary structure alignments. + + Protein structure alignment + true + + + + + + + + + + beta12orEarlier + The study of matter and their structure by means of the diffraction of X-rays, typically the diffraction pattern caused by the regularly spaced atoms of a crystalline sample. + Crystallography + X-ray_diffraction + X-ray crystallography + X-ray microscopy + + + + X-ray diffraction + + + + + + + + + + beta12orEarlier + 1.3 + + + Conceptualisation, categorisation and naming of entities or phenomena within biology or bioinformatics. + + Ontologies, nomenclature and classification + http://purl.bioontology.org/ontology/MSH/D002965 + true + + + + + + + + + + beta12orEarlier + Immunity-related proteins and their ligands. + Immunoproteins_and_antigens + Antigens + Immunopeptides + Immunoproteins + Therapeutic antibodies + + + + This includes T cell receptors (TR), major histocompatibility complex (MHC), immunoglobulin superfamily (IgSF) / antibodies, major histocompatibility complex superfamily (MhcSF), etc." + Immunoproteins and antigens + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Specific molecules, including large molecules built from repeating subunits (macromolecules) and small molecules of biological significance. + CHEBI:23367 + + Molecules + true + + + + + + + + + + beta12orEarlier + true + VT 3.1.9 Toxicology + Toxins and the adverse effects of these chemical substances on living organisms. + Toxicology + Computational toxicology + Toxicoinformatics + + + + Toxicology + + + + + + + + + + beta12orEarlier + beta13 + + + Parallelised sequencing processes that are capable of sequencing many thousands of sequences simultaneously. + + High-throughput sequencing + true + + + + + + + + + beta12orEarlier + 1.13 + + Gene regulatory networks. + + + Gene regulatory networks + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Informatics resources dedicated to one or more specific diseases (not diseases in general). + + Disease (specific) + true + + + + + + + + + beta12orEarlier + 1.13 + + Variable number of tandem repeat (VNTR) polymorphism in a DNA sequence. + + + VNTR + true + + + + + + + + + beta12orEarlier + 1.13 + + + Microsatellite polymorphism in a DNA sequence. + + + Microsatellites + true + + + + + + + + + beta12orEarlier + 1.13 + + + Restriction fragment length polymorphisms (RFLP) in a DNA sequence. + + + RFLP + true + + + + + + + + + + beta12orEarlier + true + DNA polymorphism. + DNA_polymorphism + Microsatellites + RFLP + SNP + Single nucleotide polymorphism + VNTR + Variable number of tandem repeat polymorphism + snps + + + Includes microsatellite polymorphism in a DNA sequence. A microsatellite polymorphism is a very short subsequence that is repeated a variable number of times between individuals. These repeats consist of the nucleotides cytosine and adenosine. + Includes restriction fragment length polymorphisms (RFLP) in a DNA sequence. An RFLP is defined by the presence or absence of a specific restriction site of a bacterial restriction enzyme. + Includes single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs. A SNP is a DNA sequence variation where a single nucleotide differs between members of a species or paired chromosomes in an individual. + Includes variable number of tandem repeat (VNTR) polymorphism in a DNA sequence. VNTRs occur in non-coding regions of DNA and consists sub-sequence that is repeated a multiple (and varied) number of times. + DNA polymorphism + + + + + + + + + + beta12orEarlier + 1.3 + + + Topic for the design of nucleic acid sequences with specific conformations. + + Nucleic acid design + true + + + + + + + + + beta13 + 1.3 + + + The design of primers for PCR and DNA amplification or the design of molecular probes. + + Primer or probe design + true + + + + + + + + + beta13 + 1.2 + + + Molecular secondary or tertiary (3D) structural data resources, typically of proteins and nucleic acids. + + Structure databases + true + + + + + + + + + beta13 + 1.2 + + + Nucleic acid (secondary or tertiary) structure, such as whole structures, structural features and associated annotation. + + Nucleic acid structure + true + + + + + + + + + beta13 + 1.3 + + + Molecular sequence data resources, including sequence sites, alignments, motifs and profiles. + + Sequence databases + true + + + + + + + + + beta13 + 1.3 + + + Nucleotide sequences and associated concepts such as sequence sites, alignments, motifs and profiles. + + Nucleic acid sequences + true + + + + + + + + + beta13 + 1.3 + + Protein sequences and associated concepts such as sequence sites, alignments, motifs and profiles. + + + Protein sequences + true + + + + + + + + + beta13 + 1.3 + + + Protein interaction networks. + + Protein interaction networks + true + + + + + + + + + beta13 + true + VT 1.5.4 Biochemistry and molecular biology + The molecular basis of biological activity, particularly the macromolecules (e.g. proteins and nucleic acids) that are essential to life. + Molecular_biology + Biological processes + + + + Molecular biology + + + + + + + + + + beta13 + 1.3 + + + Mammals, e.g. information on a specific mammal genome including molecular sequences, genes and annotation. + + Mammals + true + + + + + + + + + beta13 + true + VT 1.5.5 Biodiversity conservation + The degree of variation of life forms within a given ecosystem, biome or an entire planet. + Biodiversity + + + + Biodiversity + + http://purl.bioontology.org/ontology/MSH/D044822 + + + + + + + + + beta13 + 1.3 + + + The comparison, grouping together and classification of macromolecules on the basis of sequence similarity. + + This includes the results of sequence clustering, ortholog identification, assignment to families, annotation etc. + Sequence clusters and classification + true + + + + + + + + + beta13 + true + The study of genes, genetic variation and heredity in living organisms. + Genetics + Genes + Heredity + + + + Genetics + + http://purl.bioontology.org/ontology/MSH/D005823 + + + + + + + + + beta13 + true + The genes and genetic mechanisms such as Mendelian inheritance that underly continuous phenotypic traits (such as height or weight). + Quantitative_genetics + + + Quantitative genetics + + + + + + + + + + beta13 + true + The distribution of allele frequencies in a population of organisms and its change subject to evolutionary processes including natural selection, genetic drift, mutation and gene flow. + Population_genetics + + + + Population genetics + + + + + + + + + + beta13 + 1.3 + + Regulatory RNA sequences including microRNA (miRNA) and small interfering RNA (siRNA). + + + Regulatory RNA + true + + + + + + + + + beta13 + 1.13 + + The documentation of resources such as tools, services and databases and how to get help. + + + Documentation and help + true + + + + + + + + + beta13 + 1.3 + + + The structural and functional organisation of genes and other genetic elements. + + Genetic organisation + true + + + + + + + + + beta13 + true + The application of information technology to health, disease and biomedicine. + Biomedical informatics + Clinical informatics + Health and disease + Health informatics + Healthcare informatics + Medical_informatics + + + + Medical informatics + + + + + + + + + + beta13 + true + VT 1.5.14 Developmental biology + How organisms grow and develop. + Developmental_biology + Development + + + + Developmental biology + + + + + + + + + + beta13 + true + The development of organisms between the one-cell stage (typically the zygote) and the end of the embryonic stage. + Embryology + + + + Embryology + + + + + + + + + + beta13 + true + VT 3.1.1 Anatomy and morphology + The form and function of the structures of living organisms. + Anatomy + + + + Anatomy + + + + + + + + + + beta13 + true + The scientific literature, language processing, reference information, and documentation. + Language + Literature + Literature_and_language + Bibliography + Citations + Documentation + References + Scientific literature + + + + This includes the documentation of resources such as tools, services and databases, user support, how to get help etc. + Literature and language + http://purl.bioontology.org/ontology/MSH/D011642 + + + + + + + + + beta13 + true + VT 1.5 Biological sciences + VT 1.5.1 Aerobiology + VT 1.5.13 Cryobiology + VT 1.5.23 Reproductive biology + VT 1.5.3 Behavioural biology + VT 1.5.7 Biological rhythm + VT 1.5.8 Biology + VT 1.5.99 Other + The study of life and living organisms, including their morphology, biochemistry, physiology, development, evolution, and so on. + Biological science + Biology + Aerobiology + Behavioural biology + Biological rhythms + Chronobiology + Cryobiology + Reproductive biology + + + + Biology + + + + + + + + + + beta13 + true + Data stewardship + VT 1.3.1 Data management + Data management comprises the practices and principles of taking care of data, other than analysing them. This includes for example taking care of the associated metadata, formatting, storage, archiving, or access. + Metadata management + + + + Data management + + + http://purl.bioontology.org/ontology/MSH/D000079803 + + + + + + + + + beta13 + 1.3 + + + The detection of the positional features, such as functional and other key sites, in molecular sequences. + + Sequence feature detection + http://purl.bioontology.org/ontology/MSH/D058977 + true + + + + + + + + + beta13 + 1.3 + + + The detection of positional features such as functional sites in nucleotide sequences. + + Nucleic acid feature detection + true + + + + + + + + + beta13 + 1.3 + + + The detection, identification and analysis of positional protein sequence features, such as functional sites. + + Protein feature detection + true + + + + + + + + + beta13 + 1.2 + + + Topic for modelling biological systems in mathematical terms. + + Biological system modelling + true + + + + + + + + + beta13 + The acquisition of data, typically measurements of physical systems using any type of sampling system, or by another other means. + Data collection + + + Data acquisition + + + + + + + + + + beta13 + 1.3 + + + Specific genes and/or their encoded proteins or a family or other grouping of related genes and proteins. + + Genes and proteins resources + true + + + + + + + + + beta13 + 1.13 + + Topological domains such as cytoplasmic regions in a protein. + + + Protein topological domains + true + + + + + + + + + beta13 + true + + Protein sequence variants produced e.g. from alternative splicing, alternative promoter usage, alternative initiation and ribosomal frameshifting. + Protein_variants + + + Protein variants + + + + + + + + + + beta13 + 1.12 + + + Regions within a nucleic acid sequence containing a signal that alters a biological function. + + Expression signals + true + + + + + + + + + + beta13 + + Nucleic acids binding to some other molecule. + DNA_binding_sites + Matrix-attachment region + Matrix/scaffold attachment region + Nucleosome exclusion sequences + Restriction sites + Ribosome binding sites + Scaffold-attachment region + + + This includes ribosome binding sites (Shine-Dalgarno sequence in prokaryotes), restriction enzyme recognition sites (restriction sites) etc. + This includes sites involved with DNA replication and recombination. This includes binding sites for initiation of replication (origin of replication), regions where transfer is initiated during the conjugation or mobilisation (origin of transfer), starting sites for DNA duplication (origin of replication) and regions which are eliminated through any of kind of recombination. Also nucleosome exclusion regions, i.e. specific patterns or regions which exclude nucleosomes (the basic structural units of eukaryotic chromatin which play a significant role in regulating gene expression). + DNA binding sites + + + + + + + + + + beta13 + 1.13 + + Repetitive elements within a nucleic acid sequence. + + + This includes long terminal repeats (LTRs); sequences (typically retroviral) directly repeated at both ends of a defined sequence and other types of repeating unit. + Nucleic acid repeats + true + + + + + + + + + beta13 + true + DNA replication or recombination. + DNA_replication_and_recombination + + + DNA replication and recombination + + + + + + + + + + + beta13 + 1.13 + + Coding sequences for a signal or transit peptide. + + + Signal or transit peptide + true + + + + + + + + + beta13 + 1.13 + + Sequence tagged sites (STS) in nucleic acid sequences. + + + Sequence tagged sites + true + + + + + + + + + 1.1 + true + The determination of complete (typically nucleotide) sequences, including those of genomes (full genome sequencing, de novo sequencing and resequencing), amplicons and transcriptomes. + DNA-Seq + Sequencing + Chromosome walking + Clone verification + DNase-Seq + High throughput sequencing + High-throughput sequencing + NGS + NGS data analysis + Next gen sequencing + Next generation sequencing + Panels + Primer walking + Sanger sequencing + Targeted next-generation sequencing panels + + + + Sequencing + + http://purl.bioontology.org/ontology/MSH/D059014 + + + + + + + + + + 1.1 + The analysis of protein-DNA interactions where chromatin immunoprecipitation (ChIP) is used in combination with massively parallel DNA sequencing to identify the binding sites of DNA-associated proteins. + ChIP-sequencing + Chip Seq + Chip sequencing + Chip-sequencing + ChIP-seq + ChIP-exo + + + ChIP-seq + + + + + + + + + + 1.1 + A topic concerning high-throughput sequencing of cDNA to measure the RNA content (transcriptome) of a sample, for example, to investigate how different alleles of a gene are expressed, detect post-transcriptional mutations or identify gene fusions. + RNA sequencing + RNA-Seq analysis + Small RNA sequencing + Small RNA-Seq + Small-Seq + Transcriptome profiling + WTSS + Whole transcriptome shotgun sequencing + RNA-Seq + MicroRNA sequencing + miRNA-seq + + + This includes small RNA profiling (small RNA-Seq), for example to find novel small RNAs, characterize mutations and analyze expression of small RNAs. + RNA-Seq + + + + + + + + + + + 1.1 + 1.3 + + DNA methylation including bisulfite sequencing, methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc. + + + DNA methylation + true + + + + + + + + + 1.1 + true + The systematic study of metabolites, the chemical processes they are involved, and the chemical fingerprints of specific cellular processes in a whole cell, tissue, organ or organism. + Metabolomics + Exometabolomics + LC-MS-based metabolomics + MS-based metabolomics + MS-based targeted metabolomics + MS-based untargeted metabolomics + Mass spectrometry-based metabolomics + Metabolites + Metabolome + Metabonomics + NMR-based metabolomics + + + + Metabolomics + + http://purl.bioontology.org/ontology/MSH/D055432 + + + + + + + + + + 1.1 + true + The study of the epigenetic modifications of a whole cell, tissue, organism etc. + Epigenomics + + + + Epigenetics concerns the heritable changes in gene expression owing to mechanisms other than DNA sequence variation. + Epigenomics + + http://purl.bioontology.org/ontology/MSH/D057890 + + + + + + + + + + 1.1 + true + Environmental DNA (eDNA) + Environmental sequencing + Biome sequencing + Community genomics + Ecogenomics + Environmental genomics + Environmental omics + The study of genetic material recovered from environmental samples, and associated environmental data. + Metagenomics + Shotgun metagenomics + + + + Metagenomics + + + + + + + + + + + + 1.1 + Variation in chromosome structure including microscopic and submicroscopic types of variation such as deletions, duplications, copy-number variants, insertions, inversions and translocations. + DNA structural variation + Genomic structural variation + DNA_structural_variation + Deletion + Duplication + Insertion + Inversion + Translocation + + + Structural variation + + + + + + + + + + 1.1 + DNA-histone complexes (chromatin), organisation of chromatin into nucleosomes and packaging into higher-order structures. + DNA_packaging + Nucleosome positioning + + + DNA packaging + + http://purl.bioontology.org/ontology/MSH/D042003 + + + + + + + + + 1.1 + 1.3 + + + A topic concerning high-throughput sequencing of randomly fragmented genomic DNA, for example, to investigate whole-genome sequencing and resequencing, SNP discovery, identification of copy number variations and chromosomal rearrangements. + + DNA-Seq + true + + + + + + + + + 1.1 + 1.3 + + + The alignment of sequences of (typically millions) of short reads to a reference genome. This is a specialised topic within sequence alignment, especially because of complications arising from RNA splicing. + + RNA-Seq alignment + true + + + + + + + + + 1.1 + Experimental techniques that combine chromatin immunoprecipitation ('ChIP') with microarray ('chip'). ChIP-on-chip is used for high-throughput study protein-DNA interactions. + ChIP-chip + ChIP-on-chip + ChiP + + + ChIP-on-chip + + + + + + + + + + 1.3 + The protection of data, such as patient health data, from damage or unwanted access from unauthorised users. + Data privacy + Data_security + + + Data security + + + + + + + + + + 1.3 + Biological samples and specimens. + Specimen collections + Sample_collections + biosamples + samples + + + + Sample collections + + + + + + + + + + + 1.3 + true + VT 1.5.4 Biochemistry and molecular biology + Chemical substances and physico-chemical processes and that occur within living organisms. + Biological chemistry + Biochemistry + Glycomics + Pathobiochemistry + Phytochemistry + + + + Biochemistry + + + + + + + + + + + 1.3 + true + The study of evolutionary relationships amongst organisms from analysis of genetic information (typically gene or protein sequences). + Phylogenetics + + + Phylogenetics + + http://purl.bioontology.org/ontology/MSH/D010802 + + + + + + + + + 1.3 + true + Topic concerning the study of heritable changes, for example in gene expression or phenotype, caused by mechanisms other than changes in the DNA sequence. + Epigenetics + DNA methylation + Histone modification + Methylation profiles + + + + This includes sub-topics such as histone modification and DNA methylation (methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc.) + Epigenetics + + http://purl.bioontology.org/ontology/MSH/D019175 + + + + + + + + + 1.3 + true + The exploitation of biological process, structure and function for industrial purposes, for example the genetic manipulation of microorganisms for the antibody production. + Biotechnology + Applied microbiology + + + + Biotechnology + + + + + + + + + + + + 1.3 + true + Phenomes, or the study of the change in phenotype (the physical and biochemical traits of organisms) in response to genetic and environmental factors. + Phenomics + + + + Phenomics + + + + + + + + + + 1.3 + true + VT 1.5.16 Evolutionary biology + The evolutionary processes, from the genetic to environmental scale, that produced life in all its diversity. + Evolution + Evolutionary_biology + + + + Evolutionary biology + + + + + + + + + + 1.3 + true + VT 3.1.8 Physiology + The functions of living organisms and their constituent parts. + Physiology + Electrophysiology + + + + Physiology + + + + + + + + + + 1.3 + true + VT 1.5.20 Microbiology + The biology of microorganisms. + Microbiology + Antimicrobial stewardship + Medical microbiology + Microbial genetics + Microbial physiology + Microbial surveillance + Microbiological surveillance + Molecular infection biology + Molecular microbiology + + + + Microbiology + + + + + + + + + + 1.3 + true + The biology of parasites. + Parasitology + + + + Parasitology + + + + + + + + + + 1.3 + true + VT 3.1 Basic medicine + VT 3.2 Clinical medicine + VT 3.2.9 General and internal medicine + Research in support of healing by diagnosis, treatment, and prevention of disease. + Biomedical research + Clinical medicine + Experimental medicine + Medicine + General medicine + Internal medicine + + + + Medicine + + + + + + + + + + 1.3 + true + Neuroscience + VT 3.1.5 Neuroscience + The study of the nervous system and brain; its anatomy, physiology and function. + Neurobiology + Molecular neuroscience + Neurophysiology + Systemetic neuroscience + + + + Neurobiology + + + + + + + + + + 1.3 + true + VT 3.3.1 Epidemiology + Topic concerning the the patterns, cause, and effect of disease within populations. + Public_health_and_epidemiology + Epidemiology + Public health + + + + Public health and epidemiology + + + + + + + + + + + + 1.3 + true + VT 1.5.9 Biophysics + The use of physics to study biological system. + Biophysics + Medical physics + + + + Biophysics + + + + + + + + + + 1.3 + true + VT 1.5.12 Computational biology + VT 1.5.19 Mathematical biology + VT 1.5.26 Theoretical biology + The development and application of theory, analytical methods, mathematical models and computational simulation of biological systems. + Computational_biology + Biomathematics + Mathematical biology + Theoretical biology + + + + This includes the modeling and treatment of biological processes and systems in mathematical terms (theoretical biology). + Computational biology + + + + + + + + + + + 1.3 + true + The analysis of transcriptomes, or a set of all the RNA molecules in a specific cell, tissue etc. + Transcriptomics + Comparative transcriptomics + Transcriptome + + + + Transcriptomics + + + + + + + + + + 1.3 + Chemical science + Polymer science + VT 1.7.10 Polymer science + VT 1.7 Chemical sciences + VT 1.7.2 Chemistry + VT 1.7.3 Colloid chemistry + VT 1.7.5 Electrochemistry + VT 1.7.6 Inorganic and nuclear chemistry + VT 1.7.7 Mathematical chemistry + VT 1.7.8 Organic chemistry + VT 1.7.9 Physical chemistry + The composition and properties of matter, reactions, and the use of reactions to create new substances. + Chemistry + Inorganic chemistry + Mathematical chemistry + Nuclear chemistry + Organic chemistry + Physical chemistry + + + + Chemistry + + + + + + + + + + 1.3 + VT 1.1.99 Other + VT:1.1 Mathematics + The study of numbers (quantity) and other topics including structure, space, and change. + Maths + Mathematics + Dynamic systems + Dynamical systems + Dynymical systems theory + Graph analytics + Monte Carlo methods + Multivariate analysis + + + + Mathematics + + + + + + + + + + 1.3 + VT 1.2 Computer sciences + VT 1.2.99 Other + The theory and practical use of computer systems. + Computer_science + Cloud computing + HPC + High performance computing + High-performance computing + + + + Computer science + + + + + + + + + + 1.3 + The study of matter, space and time, and related concepts such as energy and force. + Physics + + + + Physics + + + + + + + + + + + 1.3 + true + RNA splicing; post-transcription RNA modification involving the removal of introns and joining of exons. + Alternative splicing + RNA_splicing + Splice sites + + + This includes the study of splice sites, splicing patterns, alternative splicing events and variants, isoforms, etc.. + RNA splicing + + + + + + + + + + + 1.3 + true + The structure and function of genes at a molecular level. + Molecular_genetics + + + + Molecular genetics + + + + + + + + + + 1.3 + true + VT 3.2.25 Respiratory systems + The study of respiratory system. + Pulmonary medicine + Pulmonology + Respiratory_medicine + Pulmonary disorders + Respiratory disease + + + + Respiratory medicine + + + + + + + + + + 1.3 + 1.4 + + + The study of metabolic diseases. + + Metabolic disease + true + + + + + + + + + 1.3 + VT 3.3.4 Infectious diseases + The branch of medicine that deals with the prevention, diagnosis and management of transmissible disease with clinically evident illness resulting from infection with pathogenic biological agents (viruses, bacteria, fungi, protozoa, parasites and prions). + Communicable disease + Transmissible disease + Infectious_disease + + + + Infectious disease + + + + + + + + + + 1.3 + The study of rare diseases. + Rare_diseases + + + + Rare diseases + + + + + + + + + + + 1.3 + true + VT 1.7.4 Computational chemistry + Topic concerning the development and application of theory, analytical methods, mathematical models and computational simulation of chemical systems. + Computational_chemistry + + + + Computational chemistry + + + + + + + + + + 1.3 + true + The branch of medicine that deals with the anatomy, functions and disorders of the nervous system. + Neurology + Neurological disorders + + + + Neurology + + + + + + + + + + 1.3 + true + VT 3.2.22 Peripheral vascular disease + VT 3.2.4 Cardiac and Cardiovascular systems + The diseases and abnormalities of the heart and circulatory system. + Cardiovascular medicine + Cardiology + Cardiovascular disease + Heart disease + + + + Cardiology + + + + + + + + + + + 1.3 + true + The discovery and design of drugs or potential drug compounds. + Drug_discovery + + + + This includes methods that search compound collections, generate or analyse drug 3D conformations, identify drug targets with structural docking etc. + Drug discovery + + + + + + + + + + 1.3 + true + Repositories of biological samples, typically human, for basic biological and clinical research. + Tissue collection + biobanking + Biobank + + + + Biobank + + + + + + + + + + 1.3 + Laboratory study of mice, for example, phenotyping, and mutagenesis of mouse cell lines. + Laboratory mouse + Mouse_clinic + + + + Mouse clinic + + + + + + + + + + 1.3 + Collections of microbial cells including bacteria, yeasts and moulds. + Microbial_collection + + + + Microbial collection + + + + + + + + + + 1.3 + Collections of cells grown under laboratory conditions, specifically, cells from multi-cellular eukaryotes and especially animal cells. + Cell_culture_collection + + + + Cell culture collection + + + + + + + + + + 1.3 + Collections of DNA, including both collections of cloned molecules, and populations of micro-organisms that store and propagate cloned DNA. + Clone_library + + + + Clone library + + + + + + + + + + 1.3 + true + 'translating' the output of basic and biomedical research into better diagnostic tools, medicines, medical procedures, policies and advice. + Translational_medicine + + + + Translational medicine + + + + + + + + + + 1.3 + Collections of chemicals, typically for use in high-throughput screening experiments. + Compound_libraries_and_screening + Chemical library + Chemical screening + Compound library + Small chemical compounds libraries + Small compounds libraries + Target identification and validation + + + + Compound libraries and screening + + + + + + + + + + 1.3 + true + VT 3.3 Health sciences + Topic concerning biological science that is (typically) performed in the context of medicine. + Biomedical sciences + Health science + Biomedical_science + + + + Biomedical science + + + + + + + + + + 1.3 + Topic concerning the identity of biological entities, or reports on such entities, and the mapping of entities and records in different databases. + Data_identity_and_mapping + + + + Data identity and mapping + + + + + + + + + 1.3 + 1.12 + + The search and retrieval from a database on the basis of molecular sequence similarity. + + + Sequence search + true + + + + + + + + + 1.4 + true + Objective indicators of biological state often used to assess health, and determinate treatment. + Diagnostic markers + Biomarkers + + + Biomarkers + + + + + + + + + + 1.4 + The procedures used to conduct an experiment. + Experimental techniques + Lab method + Lab techniques + Laboratory method + Laboratory_techniques + Experiments + Laboratory experiments + + + + Laboratory techniques + + + + + + + + + + 1.4 + The development of policies, models and standards that cover data acquisition, storage and integration, such that it can be put to use, typically through a process of systematically applying statistical and / or logical techniques to describe, illustrate, summarise or evaluate data. + Data_architecture_analysis_and_design + Data analysis + Data architecture + Data design + + + + Data architecture, analysis and design + + + + + + + + + + 1.4 + The combination and integration of data from different sources, for example into a central repository or warehouse, to provide users with a unified view of these data. + Data_integration_and_warehousing + Data integration + Data warehousing + + + + Data integration and warehousing + + + + + + + + + + + 1.4 + Any matter, surface or construct that interacts with a biological system. + Biomaterials + + + + Biomaterials + + + + + + + + + + + 1.4 + true + The use of synthetic chemistry to study and manipulate biological systems. + Chemical_biology + + + + Chemical biology + + + + + + + + + + 1.4 + VT 1.7.1 Analytical chemistry + The study of the separation, identification, and quantification of the chemical components of natural and artificial materials. + Analytical_chemistry + + + + Analytical chemistry + + + + + + + + + + 1.4 + The use of chemistry to create new compounds. + Synthetic_chemistry + Synthetic organic chemistry + + + + Synthetic chemistry + + + + + + + + + + 1.4 + 1.2.12 Programming languages + Software engineering + VT 1.2.1 Algorithms + VT 1.2.14 Software engineering + VT 1.2.7 Data structures + The process that leads from an original formulation of a computing problem to executable programs. + Computer programming + Software development + Software_engineering + Algorithms + Data structures + Programming languages + + + + Software engineering + + + + + + + + + + 1.4 + true + The process of bringing a new drug to market once a lead compounds has been identified through drug discovery. + Drug development science + Medicine development + Medicines development + Drug_development + + + + Drug development + + + + + + + + + + 1.4 + Drug delivery + Drug formulation + Drug formulation and delivery + The process of formulating and administering a pharmaceutical compound to achieve a therapeutic effect. + Biotherapeutics + + + + Biotherapeutics + + + + + + + + + 1.4 + true + The study of how a drug interacts with the body. + Drug_metabolism + ADME + Drug absorption + Drug distribution + Drug excretion + Pharmacodynamics + Pharmacokinetics + Pharmacokinetics and pharmacodynamics + + + + Drug metabolism + + + + + + + + + + 1.4 + Health care research + Health care science + The discovery, development and approval of medicines. + Drug discovery and development + Medicines_research_and_development + + + + Medicines research and development + + + + + + + + + + + 1.4 + The safety (or lack) of drugs and other medical interventions. + Patient safety + Safety_sciences + Drug safety + + + + Safety sciences + + + + + + + + + + 1.4 + The detection, assessment, understanding and prevention of adverse effects of medicines. + Pharmacovigilence + + + + Pharmacovigilence concerns safety once a drug has gone to market. + Pharmacovigilance + + + + + + + + + + + 1.4 + The testing of new medicines, vaccines or procedures on animals (preclinical) and humans (clinical) prior to their approval by regulatory authorities. + Preclinical_and_clinical_studies + Clinical studies + Clinical study + Clinical trial + Drug trials + Preclinical studies + Preclinical study + + + + Preclinical and clinical studies + + + + + + + + + + 1.4 + true + The visual representation of an object. + Imaging + Diffraction experiment + Microscopy + Microscopy imaging + Optical super resolution microscopy + Photonic force microscopy + Photonic microscopy + + + + This includes diffraction experiments that are based upon the interference of waves, typically electromagnetic waves such as X-rays or visible light, by some object being studied, typical in order to produce an image of the object or determine its structure. + Imaging + + + + + + + + + + 1.4 + The use of imaging techniques to understand biology. + Biological imaging + Biological_imaging + + + + Bioimaging + + + + + + + + + + 1.4 + VT 3.2.13 Medical imaging + VT 3.2.14 Nuclear medicine + VT 3.2.24 Radiology + The use of imaging techniques for clinical purposes for medical research. + Medical_imaging + Neuroimaging + Nuclear medicine + Radiology + + + + Medical imaging + + + + + + + + + + 1.4 + The use of optical instruments to magnify the image of an object. + Light_microscopy + + + + Light microscopy + + + + + + + + + + 1.4 + The use of animals and alternatives in experimental research. + Animal experimentation + Animal research + Animal testing + In vivo testing + Laboratory_animal_science + + + + Laboratory animal science + + + + + + + + + + 1.4 + true + VT 1.5.18 Marine and Freshwater biology + The study of organisms in the ocean or brackish waters. + Marine_biology + + + + Marine biology + + + + + + + + + + 1.4 + true + The identification of molecular and genetic causes of disease and the development of interventions to correct them. + Molecular_medicine + + + + Molecular medicine + + + + + + + + + + 1.4 + VT 3.3.7 Nutrition and Dietetics + The study of the effects of food components on the metabolism, health, performance and disease resistance of humans and animals. It also includes the study of human behaviours related to food choices. + Nutrition + Nutrition science + Nutritional_science + Dietetics + + + + Nutritional science + + + + + + + + + + 1.4 + true + The collective characterisation and quantification of pools of biological molecules that translate into the structure, function, and dynamics of an organism or organisms. + Omics + + + + Omics + + + + + + + + + + 1.4 + The processes that need to be in place to ensure the quality of products for human or animal use. + Quality assurance + Quality_affairs + Good clinical practice + Good laboratory practice + Good manufacturing practice + + + + Quality affairs + + + + + + + + + 1.4 + The protection of public health by controlling the safety and efficacy of products in areas including pharmaceuticals, veterinary medicine, medical devices, pesticides, agrochemicals, cosmetics, and complementary medicines. + Healthcare RA + Regulatory_affairs + + + + Regulatory affairs + + + + + + + + + + 1.4 + true + Biomedical approaches to clinical interventions that involve the use of stem cells. + Stem cell research + Regenerative_medicine + + + + Regenerative medicine + + + + + + + + + + 1.4 + true + An interdisciplinary field of study that looks at the dynamic systems of the human body as part of an integrted whole, incorporating biochemical, physiological, and environmental interactions that sustain life. + Systems_medicine + + + + Systems medicine + + + + + + + + + + 1.4 + Topic concerning the branch of medicine that deals with the prevention, diagnosis, and treatment of disease, disorder and injury in animals. + Veterinary_medicine + Clinical veterinary medicine + + + + Veterinary medicine + + + + + + + + + + 1.4 + The application of biological concepts and methods to the analytical and synthetic methodologies of engineering. + Biological engineering + Bioengineering + + + + Bioengineering + + + + + + + + + + 1.4 + true + Ageing + Aging + Gerontology + VT 3.2.10 Geriatrics and gerontology + The branch of medicine dealing with the diagnosis, treatment and prevention of disease in older people, and the problems specific to aging. + Geriatrics + Geriatric_medicine + + + + Geriatric medicine + + + + + + + + + + 1.4 + true + VT 3.2.1 Allergy + Health issues related to the immune system and their prevention, diagnosis and management. + Allergy_clinical_immunology_and_immunotherapeutics + Allergy + Clinical immunology + Immune disorders + Immunomodulators + Immunotherapeutics + + + + Allergy, clinical immunology and immunotherapeutics + + + + + + + + + + + + 1.4 + true + The prevention of pain and the evaluation, treatment and rehabilitation of persons in pain. + Algiatry + Pain management + Pain_medicine + + + + Pain medicine + + + + + + + + + + 1.4 + VT 3.2.2 Anaesthesiology + Anaesthesia and anaesthetics. + Anaesthetics + Anaesthesiology + + + + Anaesthesiology + + + + + + + + + + 1.4 + VT 3.2.5 Critical care/Emergency medicine + The multidisciplinary that cares for patients with acute, life-threatening illness or injury. + Acute medicine + Emergency medicine + Intensive care medicine + Critical_care_medicine + + + + Critical care medicine + + + + + + + + + + 1.4 + VT 3.2.7 Dermatology and venereal diseases + The branch of medicine that deals with prevention, diagnosis and treatment of disorders of the skin, scalp, hair and nails. + Dermatology + Dermatological disorders + + + + Dermatology + + + + + + + + + + 1.4 + The study, diagnosis, prevention and treatments of disorders of the oral cavity, maxillofacial area and adjacent structures. + Dentistry + + + + Dentistry + + + + + + + + + + 1.4 + VT 3.2.20 Otorhinolaryngology + The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the ear, nose and throat. + Audiovestibular medicine + Otolaryngology + Otorhinolaryngology + Ear_nose_and_throat_medicine + Head and neck disorders + + + + Ear, nose and throat medicine + + + + + + + + + + 1.4 + true + The branch of medicine dealing with diseases of endocrine organs, hormone systems, their target organs, and disorders of the pathways of glucose and lipid metabolism. + Endocrinology_and_metabolism + Endocrine disorders + Endocrinology + Metabolic disorders + Metabolism + + + + Endocrinology and metabolism + + + + + + + + + + 1.4 + true + VT 3.2.11 Hematology + The branch of medicine that deals with the blood, blood-forming organs and blood diseases. + Haematology + Blood disorders + Haematological disorders + + + + Haematology + + + + + + + + + + 1.4 + true + VT 3.2.8 Gastroenterology and hepatology + The branch of medicine that deals with disorders of the oesophagus, stomach, duodenum, jejenum, ileum, large intestine, sigmoid colon and rectum. + Gastroenterology + Gastrointestinal disorders + + + + Gastroenterology + + + + + + + + + + 1.4 + The study of the biological and physiological differences between males and females and how they effect differences in disease presentation and management. + Gender_medicine + + + + Gender medicine + + + + + + + + + + 1.4 + true + VT 3.2.15 Obstetrics and gynaecology + The branch of medicine that deals with the health of the female reproductive system, pregnancy and birth. + Gynaecology_and_obstetrics + Gynaecological disorders + Gynaecology + Obstetrics + + + + Gynaecology and obstetrics + + + + + + + + + + + 1.4 + true + The branch of medicine that deals with the liver, gallbladder, bile ducts and bile. + Hepatology + Hepatic_and_biliary_medicine + Liver disorders + + + + Hepatic and biliary medicine + + Hepatobiliary medicine + + + + + + + + + 1.4 + 1.13 + + The branch of medicine that deals with the infectious diseases of the tropics. + + + Infectious tropical disease + true + + + + + + + + + 1.4 + The branch of medicine that treats body wounds or shock produced by sudden physical injury, as from violence or accident. + Traumatology + Trauma_medicine + + + + Trauma medicine + + + + + + + + + + 1.4 + true + The branch of medicine that deals with the diagnosis, management and prevention of poisoning and other adverse health effects caused by medications, occupational and environmental toxins, and biological agents. + Medical_toxicology + + + + Medical toxicology + + + + + + + + + + 1.4 + VT 3.2.19 Orthopaedics + VT 3.2.26 Rheumatology + The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the muscle, bone and connective tissue. It incorporates aspects of orthopaedics, rheumatology, rehabilitation medicine and pain medicine. + Musculoskeletal_medicine + Musculoskeletal disorders + Orthopaedics + Rheumatology + + + + Musculoskeletal medicine + + + + + + + + + + + + 1.4 + Optometry + VT 3.2.17 Ophthalmology + VT 3.2.18 Optometry + The branch of medicine that deals with disorders of the eye, including eyelid, optic nerve/visual pathways and occular muscles. + Ophthalmology + Eye disoders + + + + Ophthalmology + + + + + + + + + + 1.4 + VT 3.2.21 Paediatrics + The branch of medicine that deals with the medical care of infants, children and adolescents. + Child health + Paediatrics + + + + Paediatrics + + + + + + + + + + 1.4 + Mental health + VT 3.2.23 Psychiatry + The branch of medicine that deals with the management of mental illness, emotional disturbance and abnormal behaviour. + Psychiatry + Psychiatric disorders + + + + Psychiatry + + + + + + + + + + 1.4 + VT 3.2.3 Andrology + The health of the reproductive processes, functions and systems at all stages of life. + Reproductive_health + Andrology + Family planning + Fertility medicine + Reproductive disorders + + + + Reproductive health + + + + + + + + + + 1.4 + VT 3.2.28 Transplantation + The use of operative, manual and instrumental techniques on a patient to investigate and/or treat a pathological condition or help improve bodily function or appearance. + Surgery + Transplantation + + + + Surgery + + + + + + + + + + 1.4 + VT 3.2.29 Urology and nephrology + The branches of medicine and physiology focussing on the function and disorders of the urinary system in males and females, the reproductive system in males, and the kidney. + Urology_and_nephrology + Kidney disease + Nephrology + Urological disorders + Urology + + + + Urology and nephrology + + + + + + + + + + + 1.4 + Alternative medicine + Holistic medicine + Integrative medicine + VT 3.2.12 Integrative and Complementary medicine + Medical therapies that fall beyond the scope of conventional medicine but may be used alongside it in the treatment of disease and ill health. + Complementary_medicine + + + + Complementary medicine + + + + + + + + + + 1.7 + Techniques that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body. + MRT + Magnetic resonance imaging + Magnetic resonance tomography + NMRI + Nuclear magnetic resonance imaging + MRI + + + MRI + + + + + + + + + + + 1.7 + The study of matter by studying the diffraction pattern from firing neutrons at a sample, typically to determine atomic and/or magnetic structure. + Neutron diffraction experiment + Neutron_diffraction + Elastic neutron scattering + Neutron microscopy + + + Neutron diffraction + + + + + + + + + + 1.7 + Imaging in sections (sectioning), through the use of a wave-generating device (tomograph) that generates an image (a tomogram). + CT + Computed tomography + TDM + Tomography + Electron tomography + PET + Positron emission tomography + X-ray tomography + + + Tomography + + + + + + + + + + 1.7 + true + KDD + Knowledge discovery in databases + VT 1.3.2 Data mining + The discovery of patterns in large data sets and the extraction and trasnsformation of those patterns into a useful format. + Data_mining + Pattern recognition + + + Data mining + + + + + + + + + + 1.7 + Artificial Intelligence + VT 1.2.2 Artificial Intelligence (expert systems, machine learning, robotics) + A topic concerning the application of artificial intelligence methods to algorithms, in order to create methods that can learn from data in order to generate an output, rather than relying on explicitly encoded information only. + Machine_learning + Active learning + Ensembl learning + Kernel methods + Knowledge representation + Neural networks + Recommender system + Reinforcement learning + Supervised learning + Unsupervised learning + + + Machine learning + + + + + + + + + + 1.8 + Database administration + Information systems + Databases + The general handling of data stored in digital archives such as databases, databanks, web portals, and other data resources. + Database_management + Content management + Document management + File management + Record management + + + This includes databases for the results of scientific experiments, the application of high-throughput technology, computational analysis and the scientific literature. It covers the management and manipulation of digital documents, including database records, files, and reports. + Database management + + + + + + + + + + 1.8 + VT 1.5.29 Zoology + Animals, e.g. information on a specific animal genome including molecular sequences, genes and annotation. + Animal + Animal biology + Animals + Metazoa + Zoology + Animal genetics + Animal physiology + Entomology + + + The study of the animal kingdom. + Zoology + + + + + + + + + + + 1.8 + The biology, archival, detection, prediction and analysis of positional features such as functional and other key sites, in protein sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them. + Protein_sites_features_and_motifs + Protein sequence features + Signal peptide cleavage sites + + + A signal peptide coding sequence encodes an N-terminal domain of a secreted protein, which is involved in attaching the polypeptide to a membrane leader sequence. A transit peptide coding sequence encodes an N-terminal domain of a nuclear-encoded organellar protein; which is involved in import of the protein into the organelle. + Protein sites, features and motifs + + + + + + + + + + 1.8 + The biology, archival, detection, prediction and analysis of positional features such as functional and other key sites, in nucleic acid sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them. + Nucleic_acid_sites_features_and_motifs + Nucleic acid functional sites + Nucleic acid sequence features + Primer binding sites + Sequence tagged sites + + + Sequence tagged sites are short DNA sequences that are unique within a genome and serve as a mapping landmark, detectable by PCR they allow a genome to be mapped via an ordering of STSs. + Nucleic acid sites, features and motifs + + + + + + + + + + 1.8 + Transcription of DNA into RNA and features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules. + Gene_transcripts + Coding RNA + EST + Exons + Fusion transcripts + Gene transcript features + Introns + PolyA signal + PolyA site + Signal peptide coding sequence + Transit peptide coding sequence + cDNA + mRNA + mRNA features + + + This includes 5'untranslated region (5'UTR), coding sequences (CDS), exons, intervening sequences (intron) and 3'untranslated regions (3'UTR). + This includes Introns, and protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. Also expressed sequence tag (EST) or complementary DNA (cDNA) sequences. + This includes coding sequences for a signal or transit peptide. A signal peptide coding sequence encodes an N-terminal domain of a secreted protein, which is involved in attaching the polypeptide to a membrane leader sequence. A transit peptide coding sequence encodes an N-terminal domain of a nuclear-encoded organellar protein; which is involved in import of the protein into the organelle. + This includes regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript. A polyA signal is required for endonuclease cleavage of an RNA transcript that is followed by polyadenylation. A polyA site is a site on an RNA transcript to which adenine residues will be added during post-transcriptional polyadenylation. + Gene transcripts + + + + + + + + + + 1.8 + 1.13 + + Protein-ligand (small molecule) interaction(s). + + + Protein-ligand interactions + true + + + + + + + + + 1.8 + 1.13 + + Protein-drug interaction(s). + + + Protein-drug interactions + true + + + + + + + + + 1.8 + Genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods. + Genotyping_experiment + + + Genotyping experiment + + + + + + + + + + 1.8 + Genome-wide association study experiments. + GWAS + GWAS analysis + Genome-wide association study + GWAS_study + + + GWAS study + + + + + + + + + + 1.8 + Microarray experiments including conditions, protocol, sample:data relationships etc. + Microarrays + Microarray_experiment + Gene expression microarray + Genotyping array + Methylation array + MicroRNA array + Multichannel microarray + One channel microarray + Proprietary platform micoarray + RNA chips + RNA microarrays + Reverse phase protein array + SNP array + Tiling arrays + Tissue microarray + Two channel microarray + aCGH microarray + mRNA microarray + miRNA array + + + This might specify which raw data file relates to which sample and information on hybridisations, e.g. which are technical and which are biological replicates. + Microarray experiment + + + + + + + + + + 1.8 + PCR experiments, e.g. quantitative real-time PCR. + Polymerase chain reaction + PCR_experiment + Quantitative PCR + RT-qPCR + Real Time Quantitative PCR + + + PCR experiment + + + + + + + + + + 1.8 + Proteomics experiments. + Proteomics_experiment + 2D PAGE experiment + DIA + Data-independent acquisition + MS + MS experiments + Mass spectrometry + Mass spectrometry experiments + Northern blot experiment + Spectrum demultiplexing + + + This includes two-dimensional gel electrophoresis (2D PAGE) experiments, gels or spots in a gel. Also mass spectrometry - an analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase. Also Northern blot experiments. + Proteomics experiment + + + + + + + + + + + 1.8 + 1.13 + + Two-dimensional gel electrophoresis experiments, gels or spots in a gel. + + + 2D PAGE experiment + true + + + + + + + + + 1.8 + 1.13 + + Northern Blot experiments. + + + Northern blot experiment + true + + + + + + + + + 1.8 + RNAi experiments. + RNAi_experiment + + + RNAi experiment + + + + + + + + + + 1.8 + Biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction. + Simulation_experiment + + + Simulation experiment + + + + + + + + + 1.8 + 1.13 + + Protein-DNA/RNA interaction(s). + + + Protein-nucleic acid interactions + true + + + + + + + + + 1.8 + 1.13 + + Protein-protein interaction(s), including interactions between protein domains. + + + Protein-protein interactions + true + + + + + + + + + 1.8 + 1.13 + + Cellular process pathways. + + + Cellular process pathways + true + + + + + + + + + 1.8 + 1.13 + + Disease pathways, typically of human disease. + + + Disease pathways + true + + + + + + + + + 1.8 + 1.13 + + Environmental information processing pathways. + + + Environmental information processing pathways + true + + + + + + + + + 1.8 + 1.13 + + Genetic information processing pathways. + + + Genetic information processing pathways + true + + + + + + + + + 1.8 + 1.13 + + Super-secondary structure of protein sequence(s). + + + Protein super-secondary structure + true + + + + + + + + + 1.8 + 1.13 + + Catalytic residues (active site) of an enzyme. + + + Protein active sites + true + + + + + + + + + 1.8 + Binding sites in proteins, including cleavage sites (for a proteolytic enzyme or agent), key residues involved in protein folding, catalytic residues (active site) of an enzyme, ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids, RNA and DNA-binding proteins and binding sites etc. + Protein_binding_sites + Enzyme active site + Protein cleavage sites + Protein functional sites + Protein key folding sites + Protein-nucleic acid binding sites + + + Protein binding sites + + + + + + + + + + 1.8 + 1.13 + + RNA and DNA-binding proteins and binding sites in protein sequences. + + + Protein-nucleic acid binding sites + true + + + + + + + + + 1.8 + 1.13 + + Cleavage sites (for a proteolytic enzyme or agent) in a protein sequence. + + + Protein cleavage sites + true + + + + + + + + + 1.8 + 1.13 + + Chemical modification of a protein. + + + Protein chemical modifications + true + + + + + + + + + 1.8 + Disordered structure in a protein. + Protein features (disordered structure) + Protein_disordered_structure + + + Protein disordered structure + + + + + + + + + + 1.8 + 1.13 + + Structural domains or 3D folds in a protein or polypeptide chain. + + + Protein domains + true + + + + + + + + + 1.8 + 1.13 + + Key residues involved in protein folding. + + + Protein key folding sites + true + + + + + + + + + 1.8 + 1.13 + + Post-translation modifications in a protein sequence, typically describing the specific sites involved. + + + Protein post-translational modifications + true + + + + + + + + + 1.8 + Secondary structure (predicted or real) of a protein, including super-secondary structure. + Protein features (secondary structure) + Protein_secondary_structure + Protein super-secondary structure + + + Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc. + The location and size of the secondary structure elements and intervening loop regions is typically given. The report can include disulphide bonds and post-translationally formed peptide bonds (crosslinks). + Protein secondary structure + + + + + + + + + + 1.8 + 1.13 + + Short repetitive subsequences (repeat sequences) in a protein sequence. + + + Protein sequence repeats + true + + + + + + + + + 1.8 + 1.13 + + Signal peptides or signal peptide cleavage sites in protein sequences. + + + Protein signal peptides + true + + + + + + + + + 1.10 + VT 1.1.1 Applied mathematics + The application of mathematics to specific problems in science, typically by the formulation and analysis of mathematical models. + Applied_mathematics + + + Applied mathematics + + + + + + + + + + 1.10 + VT 1.1.1 Pure mathematics + The study of abstract mathematical concepts. + Pure_mathematics + Linear algebra + + + Pure mathematics + + + + + + + + + + 1.10 + The control of data entry and maintenance to ensure the data meets defined standards, qualities or constraints. + Data_governance + Data stewardship + + + Data governance + + http://purl.bioontology.org/ontology/MSH/D030541 + + + + + + + + + 1.10 + The quality, integrity, and cleaning up of data. + Data_quality_management + Data clean-up + Data cleaning + Data integrity + Data quality + + + Data quality management + + + + + + + + + + 1.10 + Freshwater science + VT 1.5.18 Marine and Freshwater biology + The study of organisms in freshwater ecosystems. + Freshwater_biology + + + + Freshwater biology + + + + + + + + + + 1.10 + true + VT 3.1.2 Human genetics + The study of inheritance in human beings. + Human_genetics + + + + Human genetics + + + + + + + + + + 1.10 + VT 3.3.14 Tropical medicine + Health problems that are prevalent in tropical and subtropical regions. + Tropical_medicine + + + + Tropical medicine + + + + + + + + + + 1.10 + true + VT 3.3.14 Tropical medicine + VT 3.4 Medical biotechnology + VT 3.4.1 Biomedical devices + VT 3.4.2 Health-related biotechnology + Biotechnology applied to the medical sciences and the development of medicines. + Medical_biotechnology + Pharmaceutical biotechnology + + + + Medical biotechnology + + + + + + + + + + 1.10 + true + VT 3.4.5 Molecular diagnostics + An approach to medicine whereby decisions, practices and are tailored to the individual patient based on their predicted response or risk of disease. + Precision medicine + Personalised_medicine + Molecular diagnostics + + + + Personalised medicine + + + + + + + + + + 1.12 + Experimental techniques to purify a protein-DNA crosslinked complex. Usually sequencing follows e.g. in the techniques ChIP-chip, ChIP-seq and MeDIP-seq. + Chromatin immunoprecipitation + Immunoprecipitation_experiment + + + Immunoprecipitation experiment + + + + + + + + + + 1.12 + Laboratory technique to sequence the complete DNA sequence of an organism's genome at a single time. + Genome sequencing + WGS + Whole_genome_sequencing + De novo genome sequencing + Whole genome resequencing + + + Whole genome sequencing + + + + + + + + + + 1.12 + + Laboratory technique to sequence the methylated regions in DNA. + MeDIP-chip + MeDIP-seq + mDIP + Methylated_DNA_immunoprecipitation + BS-Seq + Bisulfite sequencing + MeDIP + Methylated DNA immunoprecipitation (MeDIP) + Methylation sequencing + WGBS + Whole-genome bisulfite sequencing + methy-seq + methyl-seq + + + Methylated DNA immunoprecipitation + + + + + + + + + + 1.12 + Laboratory technique to sequence all the protein-coding regions in a genome, i.e., the exome. + Exome + Exome analysis + Exome capture + Targeted exome capture + WES + Whole exome sequencing + Exome_sequencing + + + Exome sequencing is considered a cheap alternative to whole genome sequencing. + Exome sequencing + + + + + + + + + + 1.12 + + true + The design of an experiment intended to test a hypothesis, and describe or explain empirical data obtained under various experimental conditions. + Design of experiments + Experimental design + Studies + Experimental_design_and_studies + + + Experimental design and studies + + + + + + + + + + + 1.12 + The design of an experiment involving non-human animals. + Animal_study + Challenge study + + + Animal study + + + + + + + + + + + 1.13 + true + The ecology of microorganisms including their relationship with one another and their environment. + Environmental microbiology + Microbial_ecology + Community analysis + Microbiome + Molecular community analysis + + + Microbial ecology + + + + + + + + + + 1.17 + An antibody-based technique used to map in vivo RNA-protein interactions. + RIP + RNA_immunoprecipitation + CLIP + CLIP-seq + HITS-CLIP + PAR-CLIP + iCLIP + + + RNA immunoprecipitation + + + + + + + + + + 1.17 + Large-scale study (typically comparison) of DNA sequences of populations. + Population_genomics + + + + Population genomics + + + + + + + + + + 1.20 + Agriculture + Agroecology + Agronomy + Multidisciplinary study, research and development within the field of agriculture. + Agricultural_science + Agricultural biotechnology + Agricultural economics + Animal breeding + Animal husbandry + Animal nutrition + Farming systems research + Food process engineering + Food security + Horticulture + Phytomedicine + Plant breeding + Plant cultivation + Plant nutrition + Plant pathology + Soil science + + + Agricultural science + + + + + + + + + + 1.20 + Approach which samples, in parallel, all genes in all organisms present in a given sample, e.g. to provide insight into biodiversity and function. + Shotgun metagenomic sequencing + Metagenomic_sequencing + + + Metagenomic sequencing + + + + + + + + + + 1.21 + Environment + Study of the environment, the interactions between its physical, chemical, and biological components and it's effect on life. Also how humans impact upon the environment, and how we can manage and utilise natural resources. + Environmental_science + + + Environmental sciences + + + + + + + + + + 1.22 + The study and simulation of molecular conformations using a computational model and computer simulations. + + + This includes methods such as Molecular Dynamics, Coarse-grained dynamics, metadynamics, Quantum Mechanics, QM/MM, Markov State Models, etc. + Biomolecular simulation + + + + + + + + + + 1.22 + The application of multi-disciplinary science and technology for the construction of artificial biological systems for diverse applications. + Biomimeic chemistry + + + Synthetic biology + + + + + + + + + + + 1.22 + The application of biotechnology to directly manipulate an organism's genes. + Genetic manipulation + Genetic modification + Genetic_engineering + Genome editing + Genome engineering + + + Genetic engineering + + + + + + + + + + 1.24 + A field of biological research focused on the discovery and identification of peptides, typically by comparing mass spectra against a protein database. + Proteogenomics + + + Proteogenomics + + + + + + + + + + 1.24 + Amplicon panels + Resequencing + Laboratory experiment to identify the differences between a specific genome (of an individual) and a reference genome (developed typically from many thousands of individuals). WGS re-sequencing is used as golden standard to detect variations compared to a given reference genome, including small variants (SNP and InDels) as well as larger genome re-organisations (CNVs, translocations, etc.). + Highly targeted resequencing + Whole genome resequencing (WGR) + Whole-genome re-sequencing (WGSR) + Amplicon sequencing + Amplicon-based sequencing + Ultra-deep sequencing + Amplicon sequencing is the ultra-deep sequencing of PCR products (amplicons), usually for the purpose of efficient genetic variant identification and characterisation in specific genomic regions. + Genome resequencing + + + + + + + + + + 1.24 + A biomedical field that bridges immunology and genetics, to study the genetic basis of the immune system. + Immune system genetics + Immungenetics + Immunology and genetics + Immunogenetics + Immunogenes + + + This involves the study of often complex genetic traits underlying diseases involving defects in the immune system. For example, identifying target genes for therapeutic approaches, or genetic variations involved in immunological pathology. + Immunogenetics + + + + + + + + + + 1.24 + Interdisciplinary science focused on extracting information from chemical systems by data analytical approaches, for example multivariate statistics, applied mathematics, and computer science. + Chemometrics + + + Chemometrics + + + + + + + + + + 1.24 + Cytometry is the measurement of the characteristics of cells. + Cytometry + Flow cytometry + Image cytometry + Mass cytometry + + + Cytometry + + + + + + + + + + 1.24 + Biotechnology approach that seeks to optimize cellular genetic and regulatory processes in order to increase the cells' production of a certain substance. + + + Metabolic engineering + + + + + + + + + + 1.24 + Molecular biology methods used to analyze the spatial organization of chromatin in a cell. + 3C technologies + 3C-based methods + Chromosome conformation analysis + Chromosome_conformation_capture + Chromatin accessibility + Chromatin accessibility assay + Chromosome conformation capture + + + + + + + + + + + 1.24 + The study of microbe gene expression within natural environments (i.e. the metatranscriptome). + Metatranscriptomics + + + Metatranscriptomics methods can be used for whole gene expression profiling of complex microbial communities. + Metatranscriptomics + + + + + + + + + + 1.24 + The reconstruction and analysis of genomic information in extinct species. + Paleogenomics + Ancestral genomes + Paleogenetics + Paleogenomics + + + + + + + + + + + 1.24 + The biological classification of organisms by categorizing them in groups ("clades") based on their most recent common ancestor. + Cladistics + Tree of life + + + Cladistics + + + + + + + + + + + + 1.24 + The study of the process and mechanism of change of biomolecules such as DNA, RNA, and proteins across generations. + Molecular_evolution + + + Molecular evolution + + + + + + + + + + + 1.24 + Immunoinformatics is the field of computational biology that deals with the study of immunoloogical questions. Immunoinformatics is at the interface between immunology and computer science. It takes advantage of computational, statistical, mathematical approaches and enhances the understanding of immunological knowledge. + Computational immunology + Immunoinformatics + This involves the study of often complex genetic traits underlying diseases involving defects in the immune system. For example, identifying target genes for therapeutic approaches, or genetic variations involved in immunological pathology. + Immunoinformatics + + + + + + + + + + 1.24 + A diagnostic imaging technique based on the application of ultrasound. + Standardized echography + Ultrasound imaging + Echography + Diagnostic sonography + Medical ultrasound + Standard echography + Ultrasonography + + + Echography + + + + + + + + + + 1.24 + Experimental approaches to determine the rates of metabolic reactions - the metabolic fluxes - within a biological entity. + Fluxomics + The "fluxome" is the complete set of metabolic fluxes in a cell, and is a dynamic aspect of phenotype. + Fluxomics + + + + + + + + + + 1.12 + An experiment for studying protein-protein interactions. + Protein_interaction_experiment + Co-immunoprecipitation + Phage display + Yeast one-hybrid + Yeast two-hybrid + + + This used to have the ID http://edamontology.org/topic_3557 but the numerical part (owing to an error) duplicated http://edamontology.org/operation_3557 ('Imputation'). ID of this concept set to http://edamontology.org/topic_3957 in EDAM 1.24. + Protein interaction experiment + + + + + + + + + + 1.25 + A DNA structural variation, specifically a duplication or deletion event, resulting in sections of the genome to be repeated, or the number of repeats in the genome to vary between individuals. + Copy_number_variation + CNV deletion + CNV duplication + CNV insertion / amplification + Complex CNV + Copy number variant + Copy number variation + + + + + + + + + + 1.25 + The branch of genetics concerned with the relationships between chromosomes and cellular behaviour, especially during mitosis and meiosis. + + + Cytogenetics + + + + + + + + + + 1.25 + The design of vaccines to protect against a particular pathogen, including antigens, delivery systems, and adjuvants to elicit a predictable immune response against specific epitopes. + Vaccinology + Rational vaccine design + Reverse vaccinology + Structural vaccinology + Structure-based immunogen design + Vaccine design + + + Vaccinology + + + + + + + + + + 1.25 + The study of immune system as a whole, its regulation and response to pathogens using genome-wide approaches. + + + Immunomics + + + + + + + + + + 1.25 + Epistasis can be defined as the ability of the genotype at one locus to supersede the phenotypic effect of a mutation at another locus. This interaction between genes can occur at different level: gene expression, protein levels, etc... + Epistatic genetic interaction + Epistatic interactions + + + Epistasis + + http://purl.bioontology.org/ontology/MSH/D004843 + + + + + + + + + 1.26 + Open science encompasses the practices of making scientific research transparent and participatory, and its outputs publicly accessible. + + + Open science + + + + + + + + + + 1.26 + Data rescue denotes digitalisation, formatting, archival, and publication of data that were not available in accessible or usable form. Examples are data from private archives, data inside publications, or in paper records stored privately or publicly. + + + Data rescue + + + + + + + + + + + 1.26 + FAIR data principles + FAIRification + FAIR data is data that meets the principles of being findable, accessible, interoperable, and reusable. + Findable, accessible, interoperable, reusable data + Open data + + + A substantially overlapping term is 'open data', i.e. publicly available data that is free to use, distribute, and create derivative work from, without restrictions. Open data does not automatically have to be FAIR (e.g. findable or interoperable), while FAIR data does in some cases not have to be publicly available without restrictions (especially sensitive personal data). + FAIR data + + + + + + + + + + + + 1.26 + Microbial mechanisms for protecting microorganisms against antimicrobial agents. + AMR + Antifungal resistance + Antiprotozoal resistance + Antiviral resistance + Extensive drug resistance (XDR) + Multidrug resistance + Multiple drug resistance (MDR) + Multiresistance + Pandrug resistance (PDR) + Total drug resistance (TDR) + + + Antimicrobial Resistance + + + + + + + + + + + 1.26 + The monitoring method for measuring electrical activity in the brain. + EEG + + + Electroencephalography + + + + + + + + + + + 1.26 + The monitoring method for measuring electrical activity in the heart. + ECG + EKG + + + Electrocardiography + + + + + + + + + + 1.26 + A method for studying biomolecules and other structures at very low (cryogenic) temperature using electron microscopy. + cryo-EM + + + Cryogenic electron microscopy + + + + + + + + + + 1.26 + Biosciences, or life sciences, include fields of study related to life, living beings, and biomolecules. + Life sciences + + + Biosciences + + + + + + + + + + + + + 1.26 + Biogeochemical cycle + The carbon cycle is the biogeochemical pathway of carbon moving through the different parts of the Earth (such as ocean, atmosphere, soil), or eventually another planet. + + + Note that the carbon-nitrogen-oxygen (CNO) cycle (https://en.wikipedia.org/wiki/CNO_cycle) is a completely different, thermonuclear reaction in stars. + Carbon cycle + + + + + + + + + + + 1.26 + Multiomics concerns integration of data from multiple omics (e.g. transcriptomics, proteomics, epigenomics). + Integrative omics + Multi-omics + Pan-omics + Panomics + + + Multiomics + + + + + + + + + + + 1.26 + With ribosome profiling, ribosome-protected mRNA fragments are analyzed with RNA-seq techniques leading to a genome-wide measurement of the translation landscape. + RIBO-seq + Ribo-Seq + RiboSeq + ribo-seq + ribosomal footprinting + translation footprinting + + + Ribosome Profiling + + + + + + + + + + 1.26 + Combined with NGS (Next Generation Sequencing) technologies, single-cell sequencing allows the study of genetic information (DNA, RNA, epigenome...) at a single cell level. It is often used for differential analysis and gene expression profiling. + Single Cell Genomics + + + Single-Cell Sequencing + + + + + + + + + + + 1.26 + The study of mechanical waves in liquids, solids, and gases. + + + Acoustics + + + + + + + + + + + + 1.26 + Interdisplinary study of behavior, precise control, and manipulation of low (microlitre) volume fluids in constrained space. + Fluidics + + + Microfluidics + + + + + + + + + + 1.26 + Genomic imprinting is a gene regulation mechanism by which a subset of genes are expressed from one of the two parental chromosomes only. Imprinted genes are organized in clusters, their silencing/activation of the imprinted loci involves epigenetic marks (DNA methylation, etc) and so-called imprinting control regions (ICR). It has been described in mammals, but also plants and insects. + Gene imprinting + + + Genomic imprinting + + + + + + + + + + + + + + + + + 1.26 + Environmental DNA (eDNA) + Environmental RNA (eRNA) + Environmental sequencing + Taxonomic profiling + Metabarcoding is the barcoding of (environmental) DNA or RNA to identify multiple taxa from the same sample. + DNA metabarcoding + Environmental metabarcoding + RNA metabarcoding + eDNA metabarcoding + eRNA metabarcoding + + + Typically, high-throughput sequencing is performed and the resulting sequence reads are matched to DNA barcodes in a reference database. + Metabarcoding + + + + + + + + + + + + + 1.2 + + An obsolete concept (redefined in EDAM). + + Needed for conversion to the OBO format. + Obsolete concept (EDAM) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + A serialisation format conforming to the Web Ontology Language (OWL) model. + + + OWL format + + + 1.2 + rdf + + Resource Description Framework (RDF) XML format. + + + RDF/XML can be used as a standard serialisation syntax for OWL DL, but not for OWL Full. + RDF/XML + http://www.ebi.ac.uk/SWO/data/SWO_3000006 + + + + + + + diff --git a/edamfu/tests/edamontology.org.owl b/edamfu/tests/edamontology.org.owl new file mode 100644 index 0000000..af5b2c7 --- /dev/null +++ b/edamfu/tests/edamontology.org.owl @@ -0,0 +1,61094 @@ + + + + + 4040 + + 03.10.2023 11:14 UTC + EDAM http://edamontology.org/ "EDAM relations, concept properties, and subsets" + EDAM_data http://edamontology.org/data_ "EDAM types of data" + EDAM_format http://edamontology.org/format_ "EDAM data formats" + EDAM_operation http://edamontology.org/operation_ "EDAM operations" + EDAM_topic http://edamontology.org/topic_ "EDAM topics" + EDAM is a community project and its development can be followed and contributed to at https://github.com/edamontology/edamontology. + EDAM is particularly suitable for semantic annotations and categorisation of diverse resources related to data analysis and management: e.g. tools, workflows, learning materials, or standards. EDAM is also useful in data management itself, for recording provenance metadata of processed data. + https://github.com/edamontology/edamontology/graphs/contributors and many more! + Hervé Ménager + Jon Ison + Matúš Kalaš + EDAM is a domain ontology of data analysis and data management in bio- and other sciences, and science-based applications. It comprises concepts related to analysis, modelling, optimisation, and data life-cycle. Targetting usability by diverse users, the structure of EDAM is relatively simple, divided into 4 main sections: Topic, Operation, Data (incl. Identifier), and Format. + application/rdf+xml + EDAM - The ontology of data analysis and management + + + 1.26_dev + + + + + + + + + + Matúš Kalaš + + + + + + + + + + + + + + + + + + + + + + + + 1.13 + true + Publication reference + 'Citation' concept property ('citation' metadata tag) contains a dereferenceable URI, preferably including a DOI, pointing to a citeable publication of the given data format. + Publication + + Citation + + + + + + + + + + + + + + true + Version in which a concept was created. + + Created in + + + + + + + + + + + + + + + + true + A comment explaining why the comment should be or was deprecated, including name of person commenting (jison, mkalas etc.). + + deprecation_comment + + + + + + + + true + 'Documentation' trailing modifier (qualifier, 'documentation') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to a page with explanation, description, documentation, or specification of the given data format. + Specification + + Documentation + + + + + + + + + + + + + + + + true + 'Example' concept property ('example' metadata tag) lists examples of valid values of types of identifiers (accessions). Applicable to some other types of data, too. + + Separated by bar ('|'). For more complex data and data formats, it can be a link to a website with examples, instead. + Example + + + + + + + + true + 'File extension' concept property ('file_extension' metadata tag) lists examples of usual file extensions of formats. + + N.B.: File extensions that are not correspondigly defined at http://filext.com are recorded in EDAM only if not in conflict with http://filext.com, and/or unique and usual within life-science computing. + Separated by bar ('|'), without a dot ('.') prefix, preferably not all capital characters. + File extension + + + + + + + + + + + + + + + + + + + + + + + + true + 'Information standard' trailing modifier (qualifier, 'information_standard') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to an information standard supported by the given data format. + Minimum information checklist + Minimum information standard + + "Supported by the given data format" here means, that the given format enables representation of data that satisfies the information standard. + Information standard + + + + + + + + true + When 'true', the concept has been proposed to be deprecated. + + deprecation_candidate + + + + + + + + true + When 'true', the concept has been proposed to be refactored. + + refactor_candidate + + + + + + + + true + When 'true', the concept has been proposed or is supported within Debian as a tag. + + isdebtag + + + + + + + + true + 'Media type' trailing modifier (qualifier, 'media_type') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to a page specifying a media type of the given data format. + MIME type + + Media type + + + + + + + + + + + + + + true + Whether terms associated with this concept are recommended for use in annotation. + + notRecommendedForAnnotation + + + + + + + + + + + + + + + + true + Version in which a concept was made obsolete. + + Obsolete since + + + + + + + + true + EDAM concept URI of the erstwhile "parent" of a now deprecated concept. + + Old parent + + + + + + + + true + EDAM concept URI of an erstwhile related concept (by has_input, has_output, has_topic, is_format_of, etc.) of a now deprecated concept. + + Old related + + + + + + + + true + 'Ontology used' concept property ('ontology_used' metadata tag) of format concepts links to a domain ontology that is used inside the given data format, or contains a note about ontology use within the format. + + Ontology used + + + + + + + + + + + + + + + + true + 'Organisation' trailing modifier (qualifier, 'organisation') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to an organisation that developed, standardised, and maintains the given data format. + Organization + + Organisation + + + + + + + + true + A comment explaining the proposed refactoring, including name of person commenting (jison, mkalas etc.). + + refactor_comment + + + + + + + + true + 'Regular expression' concept property ('regex' metadata tag) specifies the allowed values of types of identifiers (accessions). Applicable to some other types of data, too. + + Regular expression + + + + + + + + 'Related term' concept property ('related_term'; supposedly a synonym modifier in OBO format) states a related term - not necessarily closely semantically related - that users (also non-specialists) may use when searching. + + Related term + + + + + + + + + true + 'Repository' trailing modifier (qualifier, 'repository') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to the public source-code repository where the given data format is developed or maintained. + Public repository + Source-code repository + + Repository + + + + + + + + true + Name of thematic editor (http://biotools.readthedocs.io/en/latest/governance.html#registry-editors) responsible for this concept and its children. + + thematic_editor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_format B' defines for the subject A, that it has the object B as its data format. + + false + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is (or is in a role of) 'Data', or an input, output, input or output argument of an 'Operation'. Object B can either be a concept that is a 'Format', or in unexpected cases an entity outside of an ontology that is a 'Format' or is in the role of a 'Format'. In EDAM, 'has_format' is not explicitly defined between EDAM concepts, only the inverse 'is_format_of'. + has format + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_function B' defines for the subject A, that it has the object B as its function. + OBO_REL:bearer_of + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is (or is in a role of) a function, or an entity outside of an ontology that is (or is in a role of) a function specification. In the scope of EDAM, 'has_function' serves only for relating annotated entities outside of EDAM with 'Operation' concepts. + has function + + + + + + + + OBO_REL:bearer_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:bearer_of' is narrower in the sense that it only relates ontological categories (concepts) that are an 'independent_continuant' (snap:IndependentContinuant) with ontological categories that are a 'specifically_dependent_continuant' (snap:SpecificallyDependentContinuant), and broader in the sense that it relates with any borne objects not just functions of the subject. + + + + + true + In very unusual cases. + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_identifier B' defines for the subject A, that it has the object B as its identifier. + + false + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is an 'Identifier', or an entity outside of an ontology that is an 'Identifier' or is in the role of an 'Identifier'. In EDAM, 'has_identifier' is not explicitly defined between EDAM concepts, only the inverse 'is_identifier_of'. + has identifier + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_input B' defines for the subject A, that it has the object B as a necessary or actual input or input argument. + OBO_REL:has_participant + + true + Subject A can either be concept that is or has an 'Operation' function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that has an 'Operation' function or is an 'Operation'. Object B can be any concept or entity. In EDAM, only 'has_input' is explicitly defined between EDAM concepts ('Operation' 'has_input' 'Data'). The inverse, 'is_input_of', is not explicitly defined. + has input + + + + + + + OBO_REL:has_participant + 'OBO_REL:has_participant' is narrower in the sense that it only relates ontological categories (concepts) that are a 'process' (span:Process) with ontological categories that are a 'continuant' (snap:Continuant), and broader in the sense that it relates with any participating objects not just inputs or input arguments of the subject. + + + + + true + In very unusual cases. + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_output B' defines for the subject A, that it has the object B as a necessary or actual output or output argument. + OBO_REL:has_participant + + true + Subject A can either be concept that is or has an 'Operation' function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that has an 'Operation' function or is an 'Operation'. Object B can be any concept or entity. In EDAM, only 'has_output' is explicitly defined between EDAM concepts ('Operation' 'has_output' 'Data'). The inverse, 'is_output_of', is not explicitly defined. + has output + + + + + + + OBO_REL:has_participant + 'OBO_REL:has_participant' is narrower in the sense that it only relates ontological categories (concepts) that are a 'process' (span:Process) with ontological categories that are a 'continuant' (snap:Continuant), and broader in the sense that it relates with any participating objects not just outputs or output arguments of the subject. It is also not clear whether an output (result) actually participates in the process that generates it. + + + + + true + In very unusual cases. + + + + + + + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_topic B' defines for the subject A, that it has the object B as its topic (A is in the scope of a topic B). + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is a 'Topic', or in unexpected cases an entity outside of an ontology that is a 'Topic' or is in the role of a 'Topic'. In EDAM, only 'has_topic' is explicitly defined between EDAM concepts ('Operation' or 'Data' 'has_topic' 'Topic'). The inverse, 'is_topic_of', is not explicitly defined. + has topic + + + + + + + + + true + In very unusual cases. + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_format_of B' defines for the subject A, that it is a data format of the object B. + OBO_REL:quality_of + + false + Subject A can either be a concept that is a 'Format', or in unexpected cases an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is a 'Format' or is in the role of a 'Format'. Object B can be any concept or entity outside of an ontology that is (or is in a role of) 'Data', or an input, output, input or output argument of an 'Operation'. In EDAM, only 'is_format_of' is explicitly defined between EDAM concepts ('Format' 'is_format_of' 'Data'). The inverse, 'has_format', is not explicitly defined. + is format of + + + + + + OBO_REL:quality_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:quality_of' might be seen narrower in the sense that it only relates subjects that are a 'quality' (snap:Quality) with objects that are an 'independent_continuant' (snap:IndependentContinuant), and is broader in the sense that it relates any qualities of the object. + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_function_of B' defines for the subject A, that it is a function of the object B. + OBO_REL:function_of + OBO_REL:inheres_in + + true + Subject A can either be concept that is (or is in a role of) a function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is (or is in a role of) a function specification. Object B can be any concept or entity. Within EDAM itself, 'is_function_of' is not used. + is function of + + + + + + + OBO_REL:function_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:function_of' only relates subjects that are a 'function' (snap:Function) with objects that are an 'independent_continuant' (snap:IndependentContinuant), so for example no processes. It does not define explicitly that the subject is a function of the object. + + + + + OBO_REL:inheres_in + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:inheres_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'specifically_dependent_continuant' (snap:SpecificallyDependentContinuant) with ontological categories that are an 'independent_continuant' (snap:IndependentContinuant), and broader in the sense that it relates any borne subjects not just functions. + + + + + true + In very unusual cases. + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_identifier_of B' defines for the subject A, that it is an identifier of the object B. + + false + Subject A can either be a concept that is an 'Identifier', or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is an 'Identifier' or is in the role of an 'Identifier'. Object B can be any concept or entity outside of an ontology. In EDAM, only 'is_identifier_of' is explicitly defined between EDAM concepts (only 'Identifier' 'is_identifier_of' 'Data'). The inverse, 'has_identifier', is not explicitly defined. + is identifier of + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_input_of B' defines for the subject A, that it as a necessary or actual input or input argument of the object B. + OBO_REL:participates_in + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is or has an 'Operation' function, or an entity outside of an ontology that has an 'Operation' function or is an 'Operation'. In EDAM, 'is_input_of' is not explicitly defined between EDAM concepts, only the inverse 'has_input'. + is input of + + + + + + + OBO_REL:participates_in + 'OBO_REL:participates_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'continuant' (snap:Continuant) with ontological categories that are a 'process' (span:Process), and broader in the sense that it relates any participating subjects not just inputs or input arguments. + + + + + true + In very unusual cases. + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_output_of B' defines for the subject A, that it as a necessary or actual output or output argument of the object B. + OBO_REL:participates_in + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is or has an 'Operation' function, or an entity outside of an ontology that has an 'Operation' function or is an 'Operation'. In EDAM, 'is_output_of' is not explicitly defined between EDAM concepts, only the inverse 'has_output'. + is output of + + + + + + + OBO_REL:participates_in + 'OBO_REL:participates_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'continuant' (snap:Continuant) with ontological categories that are a 'process' (span:Process), and broader in the sense that it relates any participating subjects not just outputs or output arguments. It is also not clear whether an output (result) actually participates in the process that generates it. + + + + + true + In very unusual cases. + + + + + + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_topic_of B' defines for the subject A, that it is a topic of the object B (a topic A is the scope of B). + OBO_REL:quality_of + + true + Subject A can either be a concept that is a 'Topic', or in unexpected cases an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is a 'Topic' or is in the role of a 'Topic'. Object B can be any concept or entity outside of an ontology. In EDAM, 'is_topic_of' is not explicitly defined between EDAM concepts, only the inverse 'has_topic'. + is topic of + + + + + + OBO_REL:quality_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:quality_of' might be seen narrower in the sense that it only relates subjects that are a 'quality' (snap:Quality) with objects that are an 'independent_continuant' (snap:IndependentContinuant), and is broader in the sense that it relates any qualities of the object. + + + + + true + In very unusual cases. + + + + + + + + + + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A type of computational resource used in bioinformatics. + + Resource type + true + + + + + + + + + + + + beta12orEarlier + true + Information, represented in an information artefact (data record) that is 'understandable' by dedicated computational tools that can use the data as input or produce it as output. + Data record + Data set + Datum + + + Data + + + + + + + + + + + + + Data record + EDAM does not distinguish a data record (a tool-understandable information artefact) from data or datum (its content, the tool-understandable encoding of an information). + + + + + Data set + EDAM does not distinguish the multiplicity of data, such as one data item (datum) versus a collection of data (data set). + + + + + Datum + EDAM does not distinguish the multiplicity of data, such as one data item (datum) versus a collection of data (data set). + + + + + + + + + beta12orEarlier + beta12orEarlier + + A bioinformatics package or tool, e.g. a standalone application or web service. + + + Tool + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A digital data archive typically based around a relational model but sometimes using an object-oriented, tree or graph-based model. + + + Database + true + + + + + + + + + + + + + + + beta12orEarlier + An ontology of biological or bioinformatics concepts and relations, a controlled vocabulary, structured glossary etc. + + + Ontology + + + + + + + + + beta12orEarlier + 1.5 + + + A directory on disk from which files are read. + + Directory metadata + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controlled vocabulary from National Library of Medicine. The MeSH thesaurus is used to index articles in biomedical journals for the Medline/PubMED databases. + + MeSH vocabulary + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controlled vocabulary for gene names (symbols) from HUGO Gene Nomenclature Committee. + + HGNC vocabulary + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Compendium of controlled vocabularies for the biomedical domain (Unified Medical Language System). + + UMLS vocabulary + true + + + + + + + + + + + + + + + + beta12orEarlier + true + A text token, number or something else which identifies an entity, but which may not be persistent (stable) or unique (the same identifier may identify multiple things). + ID + + + + Identifier + + + + + + + + + Almost exact but limited to identifying resources, and being unambiguous. + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An entry (retrievable via URL) from a biological database. + + Database entry + true + + + + + + + + + beta12orEarlier + Mass of a molecule. + + + Molecular mass + + + + + + + + + beta12orEarlier + PDBML:pdbx_formal_charge + Net charge of a molecule. + + + Molecular charge + + + + + + + + + beta12orEarlier + A specification of a chemical structure. + Chemical structure specification + + + Chemical formula + + + + + + + + + beta12orEarlier + A QSAR quantitative descriptor (name-value pair) of chemical structure. + + + QSAR descriptors have numeric values that quantify chemical information encoded in a symbolic representation of a molecule. They are used in quantitative structure activity relationship (QSAR) applications. Many subtypes of individual descriptors (not included in EDAM) cover various types of protein properties. + QSAR descriptor + + + + + + + + + beta12orEarlier + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw molecular sequence (string of characters) which might include ambiguity, unknown positions and non-sequence characters. + + + Non-sequence characters may be used for example for gaps and translation stop. + Raw sequence + true + + + + + + + + + beta12orEarlier + SO:2000061 + A molecular sequence and associated metadata. + + + Sequence record + http://purl.bioontology.org/ontology/MSH/D058977 + + + + + + + + + beta12orEarlier + A collection of one or typically multiple molecular sequences (which can include derived data or metadata) that do not (typically) correspond to molecular sequence database records or entries and which (typically) are derived from some analytical method. + Alignment reference + SO:0001260 + + + An example is an alignment reference; one or a set of reference molecular sequences, structures, or profiles used for alignment of genomic, transcriptomic, or proteomic experimental data. + This concept may be used for arbitrary sequence sets and associated data arising from processing. + Sequence set + + + + + + + + + beta12orEarlier + 1.5 + + + A character used to replace (mask) other characters in a molecular sequence. + + Sequence mask character + true + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of sequence masking to perform. + + Sequence masking is where specific characters or positions in a molecular sequence are masked (replaced) with an another (mask character). The mask type indicates what is masked, for example regions that are not of interest or which are information-poor including acidic protein regions, basic protein regions, proline-rich regions, low compositional complexity regions, short-periodicity internal repeats, simple repeats and low complexity regions. Masked sequences are used in database search to eliminate statistically significant but biologically uninteresting hits. + Sequence mask type + true + + + + + + + + + beta12orEarlier + 1.20 + + + The strand of a DNA sequence (forward or reverse). + + The forward or 'top' strand might specify a sequence is to be used as given, the reverse or 'bottom' strand specifying the reverse complement of the sequence is to be used. + DNA sense specification + true + + + + + + + + + beta12orEarlier + 1.5 + + + A specification of sequence length(s). + + Sequence length specification + true + + + + + + + + + beta12orEarlier + 1.5 + + + Basic or general information concerning molecular sequences. + + This is used for such things as a report including the sequence identifier, type and length. + Sequence metadata + true + + + + + + + + + beta12orEarlier + How the annotation of a sequence feature (for example in EMBL or Swiss-Prot) was derived. + + + This might be the name and version of a software tool, the name of a database, or 'curated' to indicate a manual annotation (made by a human). + Sequence feature source + + + + + + + + + beta12orEarlier + A report of sequence hits and associated data from searching a database of sequences (for example a BLAST search). This will typically include a list of scores (often with statistical evaluation) and a set of alignments for the hits. + Database hits (sequence) + Sequence database hits + Sequence database search results + Sequence search hits + + + The score list includes the alignment score, percentage of the query sequence matched, length of the database sequence entry in this alignment, identifier of the database sequence entry, excerpt of the database sequence entry description etc. + Sequence search results + + + + + + + + + + beta12orEarlier + Report on the location of matches ("hits") between sequences, sequence profiles, motifs (conserved or functional patterns) and other types of sequence signatures. + Profile-profile alignment + Protein secondary database search results + Search results (protein secondary database) + Sequence motif hits + Sequence motif matches + Sequence profile alignment + Sequence profile hits + Sequence profile matches + Sequence-profile alignment + + + A "profile-profile alignment" is an alignment of two sequence profiles, each profile typically representing a sequence alignment. + A "sequence-profile alignment" is an alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment). + This includes reports of hits from a search of a protein secondary or domain database. Data associated with the search or alignment might also be included, e.g. ranked list of best-scoring sequences, a graphical representation of scores etc. + Sequence signature matches + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data files used by motif or profile methods. + + Sequence signature model + true + + + + + + + + + + + + + + + beta12orEarlier + Data concerning concerning specific or conserved pattern in molecular sequences and the classifiers used for their identification, including sequence motifs, profiles or other diagnostic element. + + + This can include metadata about a motif or sequence profile such as its name, length, technical details about the profile construction, and so on. + Sequence signature data + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment of exact matches between subsequences (words) within two or more molecular sequences. + + Sequence alignment (words) + true + + + + + + + + + beta12orEarlier + A dotplot of sequence similarities identified from word-matching or character comparison. + + + Dotplot + + + + + + + + + + + + + + + beta12orEarlier + Alignment of multiple molecular sequences. + Multiple sequence alignment + msa + + + Sequence alignment + + http://purl.bioontology.org/ontology/MSH/D016415 + http://semanticscience.org/resource/SIO_010066 + + + + + + + + + beta12orEarlier + 1.5 + + + Some simple value controlling a sequence alignment (or similar 'match') operation. + + Sequence alignment parameter + true + + + + + + + + + beta12orEarlier + A value representing molecular sequence similarity. + + + Sequence similarity score + + + + + + + + + beta12orEarlier + 1.5 + + + Report of general information on a sequence alignment, typically include a description, sequence identifiers and alignment score. + + Sequence alignment metadata + true + + + + + + + + + beta12orEarlier + An informative report of molecular sequence alignment-derived data or metadata. + Sequence alignment metadata + + + Use this for any computer-generated reports on sequence alignments, and for general information (metadata) on a sequence alignment, such as a description, sequence identifiers and alignment score. + Sequence alignment report + + + + + + + + + beta12orEarlier + "Sequence-profile alignment" and "Profile-profile alignment" are synonymous with "Sequence signature matches" which was already stated as including matches (alignment) and other data. + 1.25 or earlier + + A profile-profile alignment (each profile typically representing a sequence alignment). + + + Profile-profile alignment + true + + + + + + + + + beta12orEarlier + "Sequence-profile alignment" and "Profile-profile alignment" are synonymous with "Sequence signature matches" which was already stated as including matches (alignment) and other data. + 1.24 + + Alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment). + + + Sequence-profile alignment + true + + + + + + + + + beta12orEarlier + Moby:phylogenetic_distance_matrix + A matrix of estimated evolutionary distance between molecular sequences, such as is suitable for phylogenetic tree calculation. + Phylogenetic distance matrix + + + Methods might perform character compatibility analysis or identify patterns of similarity in an alignment or data matrix. + Sequence distance matrix + + + + + + + + + beta12orEarlier + Basic character data from which a phylogenetic tree may be generated. + + + As defined, this concept would also include molecular sequences, microsatellites, polymorphisms (RAPDs, RFLPs, or AFLPs), restriction sites and fragments + Phylogenetic character data + http://www.evolutionaryontology.org/cdao.owl#Character + + + + + + + + + + + + + + + beta12orEarlier + Moby:Tree + Moby:myTree + Moby:phylogenetic_tree + The raw data (not just an image) from which a phylogenetic tree is directly generated or plotted, such as topology, lengths (in time or in expected amounts of variance) and a confidence interval for each length. + Phylogeny + + + A phylogenetic tree is usually constructed from a set of sequences from which an alignment (or data matrix) is calculated. See also 'Phylogenetic tree image'. + Phylogenetic tree + http://purl.bioontology.org/ontology/MSH/D010802 + http://www.evolutionaryontology.org/cdao.owl#Tree + + + + + + + + + beta12orEarlier + Matrix of integer or floating point numbers for amino acid or nucleotide sequence comparison. + Substitution matrix + + + The comparison matrix might include matrix name, optional comment, height and width (or size) of matrix, an index row/column (of characters) and data rows/columns (of integers or floats). + Comparison matrix + + + + + + + + + beta12orEarlier + beta12orEarlier + + Predicted or actual protein topology represented as a string of protein secondary structure elements. + + + The location and size of the secondary structure elements and intervening loop regions is usually indicated. + Protein topology + true + + + + + + + + + beta12orEarlier + 1.8 + + Secondary structure (predicted or real) of a protein. + + + Protein features report (secondary structure) + true + + + + + + + + + beta12orEarlier + 1.8 + + Super-secondary structure of protein sequence(s). + + + Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc. + Protein features report (super-secondary) + true + + + + + + + + + beta12orEarlier + true + Alignment of the (1D representations of) secondary structure of two or more proteins. + Secondary structure alignment (protein) + + + Protein secondary structure alignment + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on protein secondary structure alignment-derived data or metadata. + + Secondary structure alignment metadata (protein) + true + + + + + + + + + + + + + + + beta12orEarlier + Moby:RNAStructML + An informative report of secondary structure (predicted or real) of an RNA molecule. + Secondary structure (RNA) + + + This includes thermodynamically stable or evolutionarily conserved structures such as knots, pseudoknots etc. + RNA secondary structure + + + + + + + + + beta12orEarlier + true + Moby:RNAStructAlignmentML + Alignment of the (1D representations of) secondary structure of two or more RNA molecules. + Secondary structure alignment (RNA) + + + RNA secondary structure alignment + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report of RNA secondary structure alignment-derived data or metadata. + + Secondary structure alignment metadata (RNA) + true + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a macromolecular tertiary (3D) structure or part of a structure. + Coordinate model + Structure data + + + The coordinate data may be predicted or real. + Structure + http://purl.bioontology.org/ontology/MSH/D015394 + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An entry from a molecular tertiary (3D) structure database. + + Tertiary structure record + true + + + + + + + + + beta12orEarlier + 1.8 + + + Results (hits) from searching a database of tertiary structure. + + Structure database search results + true + + + + + + + + + + + + + + + beta12orEarlier + Alignment (superimposition) of molecular tertiary (3D) structures. + + + A tertiary structure alignment will include the untransformed coordinates of one macromolecule, followed by the second (or subsequent) structure(s) with all the coordinates transformed (by rotation / translation) to give a superposition. + Structure alignment + + + + + + + + + beta12orEarlier + An informative report of molecular tertiary structure alignment-derived data. + + + This is a broad data type and is used a placeholder for other, more specific types. + Structure alignment report + + + + + + + + + beta12orEarlier + A value representing molecular structure similarity, measured from structure alignment or some other type of structure comparison. + + + Structure similarity score + + + + + + + + + + + + + + + beta12orEarlier + Some type of structural (3D) profile or template (representing a structure or structure alignment). + 3D profile + Structural (3D) profile + + + Structural profile + + + + + + + + + beta12orEarlier + A 3D profile-3D profile alignment (each profile representing structures or a structure alignment). + Structural profile alignment + + + Structural (3D) profile alignment + + + + + + + + + beta12orEarlier + 1.5 + + + An alignment of a sequence to a 3D profile (representing structures or a structure alignment). + + Sequence-3D profile alignment + true + + + + + + + + + beta12orEarlier + Matrix of values used for scoring sequence-structure compatibility. + + + Protein sequence-structure scoring matrix + + + + + + + + + beta12orEarlier + An alignment of molecular sequence to structure (from threading sequence(s) through 3D structure or representation of structure(s)). + + + Sequence-structure alignment + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific amino acid. + + Amino acid annotation + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific peptide. + + Peptide annotation + true + + + + + + + + + beta12orEarlier + An informative human-readable report about one or more specific protein molecules or protein structural domains, derived from analysis of primary (sequence or structural) data. + Gene product annotation + + + Protein report + + + + + + + + + beta12orEarlier + A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a protein molecule or model. + Protein physicochemical property + Protein properties + Protein sequence statistics + + + This is a broad data type and is used a placeholder for other, more specific types. Data may be based on analysis of nucleic acid sequence or structural data, for example reports on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure, protein flexibility or motion, and protein architecture (spatial arrangement of secondary structure). + Protein property + + + + + + + + + beta12orEarlier + 1.8 + + 3D structural motifs in a protein. + + Protein structural motifs and surfaces + true + + + + + + + + + beta12orEarlier + 1.5 + + + Data concerning the classification of the sequences and/or structures of protein structural domain(s). + + Protein domain classification + true + + + + + + + + + beta12orEarlier + 1.8 + + structural domains or 3D folds in a protein or polypeptide chain. + + + Protein features report (domains) + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on architecture (spatial arrangement of secondary structure) of a protein structure. + + Protein architecture report + true + + + + + + + + + beta12orEarlier + 1.8 + + A report on an analysis or model of protein folding properties, folding pathways, residues or sites that are key to protein folding, nucleation or stabilisation centers etc. + + + Protein folding report + true + + + + + + + + + beta12orEarlier + beta13 + + + Data on the effect of (typically point) mutation on protein folding, stability, structure and function. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein features (mutation) + true + + + + + + + + + beta12orEarlier + Protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc. + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein interaction raw data + + + + + + + + + + + + + + + beta12orEarlier + Data concerning the interactions (predicted or known) within or between a protein, structural domain or part of a protein. This includes intra- and inter-residue contacts and distances, as well as interactions with other proteins and non-protein entities such as nucleic acid, metal atoms, water, ions etc. + Protein interaction record + Protein interaction report + Protein report (interaction) + Protein-protein interaction data + Atom interaction data + Protein non-covalent interactions report + Residue interaction data + + + Protein interaction data + + + + + + + + + + + + + + + beta12orEarlier + Protein classification data + An informative report on a specific protein family or other classification or group of protein sequences or structures. + Protein family annotation + + + Protein family report + + + + + + + + + beta12orEarlier + The maximum initial velocity or rate of a reaction. It is the limiting velocity as substrate concentrations get very large. + + + Vmax + + + + + + + + + beta12orEarlier + Km is the concentration (usually in Molar units) of substrate that leads to half-maximal velocity of an enzyme-catalysed reaction. + + + Km + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific nucleotide base. + + Nucleotide base annotation + true + + + + + + + + + beta12orEarlier + A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a nucleic acid molecule. + Nucleic acid physicochemical property + GC-content + Nucleic acid property (structural) + Nucleic acid structural property + + + Nucleic acid structural properties stiffness, curvature, twist/roll data or other conformational parameters or properties. + This is a broad data type and is used a placeholder for other, more specific types. + Nucleic acid property + + + + + + + + + + + + + + + beta12orEarlier + Data derived from analysis of codon usage (typically a codon usage table) of DNA sequences. + Codon usage report + + + This is a broad data type and is used a placeholder for other, more specific types. + Codon usage data + + + + + + + + + beta12orEarlier + Moby:GeneInfo + Moby:gene + Moby_namespace:Human_Readable_Description + A report on predicted or actual gene structure, regions which make an RNA product and features such as promoters, coding regions, splice sites etc. + Gene and transcript structure (report) + Gene annotation + Gene features report + Gene function (report) + Gene structure (repot) + Nucleic acid features (gene and transcript structure) + + + This includes any report on a particular locus or gene. This might include the gene name, description, summary and so on. It can include details about the function of a gene, such as its encoded protein or a functional classification of the gene sequence along according to the encoded protein(s). + Gene report + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on the classification of nucleic acid / gene sequences according to the functional classification of their gene products. + + Gene classification + true + + + + + + + + + beta12orEarlier + 1.8 + + stable, naturally occurring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms. + + + DNA variation + true + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific chromosome. + + + This includes basic information. e.g. chromosome number, length, karyotype features, chromosome sequence etc. + Chromosome report + + + + + + + + + beta12orEarlier + A human-readable collection of information about the set of genes (or allelic forms) present in an individual, organism or cell and associated with a specific physical characteristic, or a report concerning an organisms traits and phenotypes. + Genotype/phenotype annotation + + + Genotype/phenotype report + + + + + + + + + beta12orEarlier + 1.8 + + PCR experiments, e.g. quantitative real-time PCR. + + + PCR experiment report + true + + + + + + + + + + beta12orEarlier + Fluorescence trace data generated by an automated DNA sequencer, which can be interpreted as a molecular sequence (reads), given associated sequencing metadata such as base-call quality scores. + + + This is the raw data produced by a DNA sequencing machine. + Sequence trace + + + + + + + + + beta12orEarlier + An assembly of fragments of a (typically genomic) DNA sequence. + Contigs + SO:0000353 + SO:0001248 + + + Typically, an assembly is a collection of contigs (for example ESTs and genomic DNA fragments) that are ordered, aligned and merged. Annotation of the assembled sequence might be included. + Sequence assembly + + + + + + SO:0001248 + Perhaps surprisingly, the definition of 'SO:assembly' is narrower than the 'SO:sequence_assembly'. + + + + + + + + + beta12orEarlier + Radiation hybrid scores (RH) scores for one or more markers. + Radiation Hybrid (RH) scores + + + Radiation Hybrid (RH) scores are used in Radiation Hybrid mapping. + RH scores + + + + + + + + + beta12orEarlier + A human-readable collection of information about the linkage of alleles. + Gene annotation (linkage) + Linkage disequilibrium (report) + + + This includes linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome). + Genetic linkage report + + + + + + + + + beta12orEarlier + Data quantifying the level of expression of (typically) multiple genes, derived for example from microarray experiments. + Gene expression pattern + + + Gene expression profile + + + + + + + + + beta12orEarlier + 1.8 + + microarray experiments including conditions, protocol, sample:data relationships etc. + + + Microarray experiment report + true + + + + + + + + + beta12orEarlier + beta13 + + + Data on oligonucleotide probes (typically for use with DNA microarrays). + + Oligonucleotide probe data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Output from a serial analysis of gene expression (SAGE) experiment. + + SAGE experimental data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Massively parallel signature sequencing (MPSS) data. + + MPSS experimental data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Sequencing by synthesis (SBS) data. + + SBS experimental data + true + + + + + + + + + beta12orEarlier + 1.14 + + Tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. Typically this is the sequencing-based expression profile annotated with gene identifiers. + + + Sequence tag profile (with gene assignment) + true + + + + + + + + + beta12orEarlier + Protein X-ray crystallographic data + X-ray crystallography data. + + + Electron density map + + + + + + + + + beta12orEarlier + Nuclear magnetic resonance (NMR) raw data, typically for a protein. + Protein NMR data + + + Raw NMR data + + + + + + + + + beta12orEarlier + Protein secondary structure from protein coordinate or circular dichroism (CD) spectroscopic data. + CD spectrum + Protein circular dichroism (CD) spectroscopic data + + + CD spectra + + + + + + + + + + + + + + + beta12orEarlier + Volume map data from electron microscopy. + 3D volume map + EM volume map + Electron microscopy volume map + + + Volume map + + + + + + + + + beta12orEarlier + 1.19 + + Annotation on a structural 3D model (volume map) from electron microscopy. + + + Electron microscopy model + true + + + + + + + + + + + + + + + beta12orEarlier + Two-dimensional gel electrophoresis image. + + + 2D PAGE image + + + + + + + + + + + + + + + beta12orEarlier + Spectra from mass spectrometry. + Mass spectrometry spectra + + + Mass spectrum + + + + + + + + + + + + + + + + beta12orEarlier + A set of peptide masses (peptide mass fingerprint) from mass spectrometry. + Peak list + Protein fingerprint + Molecular weights standard fingerprint + + + A molecular weight standard fingerprint is standard protonated molecular masses e.g. from trypsin (modified porcine trypsin, Promega) and keratin peptides. + Peptide mass fingerprint + + + + + + + + + + + + + + + + beta12orEarlier + Protein or peptide identifications with evidence supporting the identifications, for example from comparing a peptide mass fingerprint (from mass spectrometry) to a sequence database, or the set of typical spectra one obtains when running a protein through a mass spectrometer. + 'Protein identification' + Peptide spectrum match + + + Peptide identification + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report about a specific biological pathway or network, typically including a map (diagram) of the pathway. + + Pathway or network annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A map (typically a diagram) of a biological pathway. + + Biological pathway map + true + + + + + + + + + beta12orEarlier + 1.5 + + + A definition of a data resource serving one or more types of data, including metadata and links to the resource or data proper. + + Data resource definition + true + + + + + + + + + beta12orEarlier + Basic information, annotation or documentation concerning a workflow (but not the workflow itself). + + + Workflow metadata + + + + + + + + + + + + + + + beta12orEarlier + A biological model represented in mathematical terms. + Biological model + + + Mathematical model + + + + + + + + + beta12orEarlier + A value representing estimated statistical significance of some observed data; typically sequence database hits. + + + Statistical estimate score + + + + + + + + + beta12orEarlier + 1.5 + + + Resource definition for an EMBOSS database. + + EMBOSS database resource definition + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a version of software or data, for example name, version number and release date. + + Development status / maturity may be part of the version information, for example in case of tools, standards, or some data records. + Version information + true + + + + + + + + + beta12orEarlier + A mapping of the accession numbers (or other database identifier) of entries between (typically) two biological or biomedical databases. + + + The cross-mapping is typically a table where each row is an accession number and each column is a database being cross-referenced. The cells give the accession number or identifier of the corresponding entry in a database. If a cell in the table is not filled then no mapping could be found for the database. Additional information might be given on version, date etc. + Database cross-mapping + + + + + + + + + + + + + + + beta12orEarlier + An index of data of biological relevance. + + + Data index + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information concerning an analysis of an index of biological data. + Database index annotation + + + Data index report + + + + + + + + + beta12orEarlier + Basic information on bioinformatics database(s) or other data sources such as name, type, description, URL etc. + + + Database metadata + + + + + + + + + beta12orEarlier + Basic information about one or more bioinformatics applications or packages, such as name, type, description, or other documentation. + + + Tool metadata + + + + + + + + + beta12orEarlier + 1.5 + + + Textual metadata on a submitted or completed job. + + Job metadata + true + + + + + + + + + beta12orEarlier + Textual metadata on a software author or end-user, for example a person or other software. + + + User metadata + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific chemical compound. + Chemical compound annotation + Chemical structure report + Small molecule annotation + + + Small molecule report + + + + + + + + + beta12orEarlier + A human-readable collection of information about a particular strain of organism cell line including plants, virus, fungi and bacteria. The data typically includes strain number, organism type, growth conditions, source and so on. + Cell line annotation + Organism strain data + + + Cell line report + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific scent. + + Scent annotation + true + + + + + + + + + beta12orEarlier + A term (name) from an ontology. + Ontology class name + Ontology terms + + + Ontology term + + + + + + + + + beta12orEarlier + Data concerning or derived from a concept from a biological ontology. + Ontology class metadata + Ontology term metadata + + + Ontology concept data + + + + + + + + + beta12orEarlier + Moby:BooleanQueryString + Moby:Global_Keyword + Moby:QueryString + Moby:Wildcard_Query + Keyword(s) or phrase(s) used (typically) for text-searching purposes. + Phrases + Term + + + Boolean operators (AND, OR and NOT) and wildcard characters may be allowed. + Keyword + + + + + + + + + beta12orEarlier + Moby:GCP_SimpleCitation + Moby:Publication + Bibliographic data that uniquely identifies a scientific article, book or other published material. + Bibliographic reference + Reference + + + A bibliographic reference might include information such as authors, title, journal name, date and (possibly) a link to the abstract or full-text of the article if available. + Citation + + + + + + + + + + beta12orEarlier + A scientific text, typically a full text article from a scientific journal. + Article text + Scientific article + + + Article + + + + + + + + + + beta12orEarlier + A human-readable collection of information resulting from text mining. + Text mining output + + + A text mining abstract will typically include an annotated a list of words or sentences extracted from one or more scientific articles. + Text mining report + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of a biological entity or phenomenon. + + Entity identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of a data resource. + + Data resource identifier + true + + + + + + + + + beta12orEarlier + true + An identifier that identifies a particular type of data. + Identifier (typed) + + + + This concept exists only to assist EDAM maintenance and navigation in graphical browsers. It does not add semantic information. This branch provides an alternative organisation of the concepts nested under 'Accession' and 'Name'. All concepts under here are already included under 'Accession' or 'Name'. + Identifier (by type of entity) + + + + + + + + + beta12orEarlier + true + An identifier of a bioinformatics tool, e.g. an application or web service. + + + + Tool identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a discrete entity (any biological thing with a distinct, discrete physical existence). + + Discrete entity identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of an entity feature (a physical part or region of a discrete biological entity, or a feature that can be mapped to such a thing). + + Entity feature identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a collection of discrete biological entities. + + Entity collection identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a physical, observable biological occurrence or event. + + Phenomenon identifier + true + + + + + + + + + beta12orEarlier + true + Name or other identifier of a molecule. + + + + Molecule identifier + + + + + + + + + beta12orEarlier + true + Identifier (e.g. character symbol) of a specific atom. + Atom identifier + + + + Atom ID + + + + + + + + + + beta12orEarlier + true + Name of a specific molecule. + + + + Molecule name + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type a molecule. + + For example, 'Protein', 'DNA', 'RNA' etc. + Molecule type + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Unique identifier of a chemical compound. + + Chemical identifier + true + + + + + + + + + + + + + + + + beta12orEarlier + Name of a chromosome. + + + + Chromosome name + + + + + + + + + beta12orEarlier + true + Identifier of a peptide chain. + + + + Peptide identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a protein. + + + + Protein identifier + + + + + + + + + + beta12orEarlier + Unique name of a chemical compound. + Chemical name + + + + Compound name + + + + + + + + + beta12orEarlier + Unique registry number of a chemical compound. + + + + Chemical registry number + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Code word for a ligand, for example from a PDB file. + + Ligand identifier + true + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a drug. + + + + Drug identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an amino acid. + Residue identifier + + + + Amino acid identifier + + + + + + + + + beta12orEarlier + true + Name or other identifier of a nucleotide. + + + + Nucleotide identifier + + + + + + + + + beta12orEarlier + true + Identifier of a monosaccharide. + + + + Monosaccharide identifier + + + + + + + + + beta12orEarlier + Unique name from Chemical Entities of Biological Interest (ChEBI) of a chemical compound. + ChEBI chemical name + + + + This is the recommended chemical name for use for example in database annotation. + Chemical name (ChEBI) + + + + + + + + + beta12orEarlier + IUPAC recommended name of a chemical compound. + IUPAC chemical name + + + + Chemical name (IUPAC) + + + + + + + + + beta12orEarlier + International Non-proprietary Name (INN or 'generic name') of a chemical compound, assigned by the World Health Organisation (WHO). + INN chemical name + + + + Chemical name (INN) + + + + + + + + + beta12orEarlier + Brand name of a chemical compound. + Brand chemical name + + + + Chemical name (brand) + + + + + + + + + beta12orEarlier + Synonymous name of a chemical compound. + Synonymous chemical name + + + + Chemical name (synonymous) + + + + + + + + + + + beta12orEarlier + CAS registry number of a chemical compound; a unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service. + CAS chemical registry number + Chemical registry number (CAS) + + + + CAS number + + + + + + + + + + beta12orEarlier + Beilstein registry number of a chemical compound. + Beilstein chemical registry number + + + + Chemical registry number (Beilstein) + + + + + + + + + + beta12orEarlier + Gmelin registry number of a chemical compound. + Gmelin chemical registry number + + + + Chemical registry number (Gmelin) + + + + + + + + + beta12orEarlier + 3-letter code word for a ligand (HET group) from a PDB file, for example ATP. + Component identifier code + Short ligand name + + + + HET group name + + + + + + + + + beta12orEarlier + String of one or more ASCII characters representing an amino acid. + + + + Amino acid name + + + + + + + + + + beta12orEarlier + String of one or more ASCII characters representing a nucleotide. + + + + Nucleotide code + + + + + + + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_strand_id + WHATIF: chain + Identifier of a polypeptide chain from a protein. + Chain identifier + PDB chain identifier + PDB strand id + Polypeptide chain identifier + Protein chain identifier + + + + This is typically a character (for the chain) appended to a PDB identifier, e.g. 1cukA + Polypeptide chain ID + + + + + + + + + + beta12orEarlier + Name of a protein. + + + + Protein name + + + + + + + + + beta12orEarlier + Name or other identifier of an enzyme or record from a database of enzymes. + + + + Enzyme identifier + + + + + + + + + + beta12orEarlier + [0-9]+\.-\.-\.-|[0-9]+\.[0-9]+\.-\.-|[0-9]+\.[0-9]+\.[0-9]+\.-|[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+ + Moby:Annotated_EC_Number + Moby:EC_Number + An Enzyme Commission (EC) number of an enzyme. + EC + EC code + Enzyme Commission number + + + + EC number + + + + + + + + + + beta12orEarlier + Name of an enzyme. + + + + Enzyme name + + + + + + + + + beta12orEarlier + Name of a restriction enzyme. + + + + Restriction enzyme name + + + + + + + + + beta12orEarlier + 1.5 + + + A specification (partial or complete) of one or more positions or regions of a molecular sequence or map. + + Sequence position specification + true + + + + + + + + + beta12orEarlier + A unique identifier of molecular sequence feature, for example an ID of a feature that is unique within the scope of the GFF file. + + + + Sequence feature ID + + + + + + + + + beta12orEarlier + PDBML:_atom_site.id + WHATIF: PDBx_atom_site + WHATIF: number + A position of one or more points (base or residue) in a sequence, or part of such a specification. + SO:0000735 + + + Sequence position + + + + + + + + + beta12orEarlier + Specification of range(s) of sequence positions. + + + Sequence range + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of an nucleic acid feature. + + Nucleic acid feature identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a protein feature. + + Protein feature identifier + true + + + + + + + + + beta12orEarlier + The type of a sequence feature, typically a term or accession from the Sequence Ontology, for example an EMBL or Swiss-Prot sequence feature key. + Sequence feature method + Sequence feature type + + + A feature key indicates the biological nature of the feature or information about changes to or versions of the sequence. + Sequence feature key + + + + + + + + + beta12orEarlier + Typically one of the EMBL or Swiss-Prot feature qualifiers. + + + Feature qualifiers hold information about a feature beyond that provided by the feature key and location. + Sequence feature qualifier + + + + + + + + + + + beta12orEarlier + A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user. Typically an EMBL or Swiss-Prot feature label. + Sequence feature name + + + A feature label identifies a feature of a sequence database entry. When used with the database name and the entry's primary accession number, it is a unique identifier of that feature. + Sequence feature label + + + + + + + + + + beta12orEarlier + The name of a sequence feature-containing entity adhering to the standard feature naming scheme used by all EMBOSS applications. + UFO + + + EMBOSS Uniform Feature Object + + + + + + + + + beta12orEarlier + beta12orEarlier + + + String of one or more ASCII characters representing a codon. + + Codon name + true + + + + + + + + + + + + + + + beta12orEarlier + true + Moby:GeneAccessionList + An identifier of a gene, such as a name/symbol or a unique identifier of a gene in a database. + + + + Gene identifier + + + + + + + + + beta12orEarlier + Moby_namespace:Global_GeneCommonName + Moby_namespace:Global_GeneSymbol + The short name of a gene; a single word that does not contain white space characters. It is typically derived from the gene name. + + + + Gene symbol + + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs:LocusID + http://www.geneontology.org/doc/GO.xrf_abbs:NCBI_Gene + An NCBI unique identifier of a gene. + Entrez gene ID + Gene identifier (Entrez) + Gene identifier (NCBI) + NCBI gene ID + NCBI geneid + + + + Gene ID (NCBI) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An NCBI RefSeq unique identifier of a gene. + + Gene identifier (NCBI RefSeq) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An NCBI UniGene unique identifier of a gene. + + Gene identifier (NCBI UniGene) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An Entrez unique identifier of a gene. + + Gene identifier (Entrez) + true + + + + + + + + + + beta12orEarlier + Identifier of a gene or feature from the CGD database. + CGD ID + + + + Gene ID (CGD) + + + + + + + + + + beta12orEarlier + Identifier of a gene from DictyBase. + + + + Gene ID (DictyBase) + + + + + + + + + + + beta12orEarlier + Unique identifier for a gene (or other feature) from the Ensembl database. + Gene ID (Ensembl) + + + + Ensembl gene ID + + + + + + + + + + + beta12orEarlier + S[0-9]+ + Identifier of an entry from the SGD database. + SGD identifier + + + + Gene ID (SGD) + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9\.-]* + Moby_namespace:GeneDB + Identifier of a gene from the GeneDB database. + GeneDB identifier + + + + Gene ID (GeneDB) + + + + + + + + + + + beta12orEarlier + Identifier of an entry from the TIGR database. + + + + TIGR identifier + + + + + + + + + + beta12orEarlier + Gene:[0-9]{7} + Identifier of an gene from the TAIR database. + + + + TAIR accession (gene) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a protein structural domain. + + + + This is typically a character or string concatenated with a PDB identifier and a chain identifier. + Protein domain ID + + + + + + + + + + beta12orEarlier + Identifier of a protein domain (or other node) from the SCOP database. + + + + SCOP domain identifier + + + + + + + + + beta12orEarlier + 1nr3A00 + Identifier of a protein domain from CATH. + CATH domain identifier + + + + CATH domain ID + + + + + + + + + beta12orEarlier + A SCOP concise classification string (sccs) is a compact representation of a SCOP domain classification. + + + + An scss includes the class (alphabetical), fold, superfamily and family (all numerical) to which a given domain belongs. + SCOP concise classification string (sccs) + + + + + + + + + beta12orEarlier + 33229 + Unique identifier (number) of an entry in the SCOP hierarchy, for example 33229. + SCOP unique identifier + sunid + + + + A sunid uniquely identifies an entry in the SCOP hierarchy, including leaves (the SCOP domains) and higher level nodes including entries corresponding to the protein level. + SCOP sunid + + + + + + + + + beta12orEarlier + 3.30.1190.10.1.1.1.1.1 + A code number identifying a node from the CATH database. + CATH code + CATH node identifier + + + + CATH node ID + + + + + + + + + beta12orEarlier + The name of a biological kingdom (Bacteria, Archaea, or Eukaryotes). + + + + Kingdom name + + + + + + + + + beta12orEarlier + The name of a species (typically a taxonomic group) of organism. + Organism species + + + + Species name + + + + + + + + + + beta12orEarlier + The name of a strain of an organism variant, typically a plant, virus or bacterium. + + + + Strain name + + + + + + + + + beta12orEarlier + true + A string of characters that name or otherwise identify a resource on the Internet. + URIs + + + URI + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a biological or bioinformatics database. + Database identifier + + + + Database ID + + + + + + + + + beta12orEarlier + The name of a directory. + + + + Directory name + + + + + + + + + beta12orEarlier + The name (or part of a name) of a file (of any type). + + + + File name + + + + + + + + + + + + + + + + beta12orEarlier + Name of an ontology of biological or bioinformatics concepts and relations. + + + + Ontology name + + + + + + + + + beta12orEarlier + Moby:Link + Moby:URL + A Uniform Resource Locator (URL). + + + URL + + + + + + + + + beta12orEarlier + A Uniform Resource Name (URN). + + + URN + + + + + + + + + beta12orEarlier + A Life Science Identifier (LSID) - a unique identifier of some data. + Life Science Identifier + + + LSIDs provide a standard way to locate and describe data. An LSID is represented as a Uniform Resource Name (URN) with the following format: URN:LSID:<Authority>:<Namespace>:<ObjectID>[:<Version>] + LSID + + + + + + + + + + beta12orEarlier + The name of a biological or bioinformatics database. + + + + Database name + + + + + + + + + beta12orEarlier + beta13 + + + The name of a molecular sequence database. + + Sequence database name + true + + + + + + + + + beta12orEarlier + The name of a file (of any type) with restricted possible values. + + + + Enumerated file name + + + + + + + + + beta12orEarlier + The extension of a file name. + + + + A file extension is the characters appearing after the final '.' in the file name. + File name extension + + + + + + + + + beta12orEarlier + The base name of a file. + + + + A file base name is the file name stripped of its directory specification and extension. + File base name + + + + + + + + + + + + + + + + beta12orEarlier + Name of a QSAR descriptor. + + + + QSAR descriptor name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of an entry from a database where the same type of identifier is used for objects (data) of different semantic type. + + This concept is required for completeness. It should never have child concepts. + Database entry identifier + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of molecular sequence(s) or entries from a molecular sequence database. + + + + Sequence identifier + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a set of molecular sequence(s). + + + + Sequence set ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Identifier of a sequence signature (motif or profile) for example from a database of sequence patterns. + + Sequence signature identifier + true + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a molecular sequence alignment, for example a record from an alignment database. + + + + Sequence alignment ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of a phylogenetic distance matrix. + + Phylogenetic distance matrix identifier + true + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a phylogenetic tree for example from a phylogenetic tree database. + + + + Phylogenetic tree ID + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a comparison matrix. + Substitution matrix identifier + + + + Comparison matrix identifier + + + + + + + + + beta12orEarlier + true + A unique and persistent identifier of a molecular tertiary structure, typically an entry from a structure database. + + + + Structure ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier or name of a structural (3D) profile or template (representing a structure or structure alignment). + Structural profile identifier + + + + Structural (3D) profile ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of tertiary structure alignments. + + + + Structure alignment ID + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an index of amino acid physicochemical and biochemical property data. + + + + Amino acid index ID + + + + + + + + + + + + + + + beta12orEarlier + true + Molecular interaction ID + Identifier of a report of protein interactions from a protein interaction database (typically). + + + + Protein interaction ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a protein family. + Protein secondary database record identifier + + + + Protein family identifier + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Unique name of a codon usage table. + + + + Codon usage table name + + + + + + + + + + beta12orEarlier + true + Identifier of a transcription factor (or a TF binding site). + + + + Transcription factor identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of microarray data. + + + + Experiment annotation ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of electron microscopy data. + + + + Electron microscopy model ID + + + + + + + + + + + + + + + beta12orEarlier + true + Accession of a report of gene expression (e.g. a gene expression profile) from a database. + Gene expression profile identifier + + + + Gene expression report ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of genotypes and phenotypes. + + + + Genotype and phenotype annotation ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of biological pathways or networks. + + + + Pathway or network identifier + + + + + + + + + beta12orEarlier + true + Identifier of a biological or biomedical workflow, typically from a database of workflows. + + + + Workflow ID + + + + + + + + + beta12orEarlier + true + Identifier of a data type definition from some provider. + Data resource definition identifier + + + + Data resource definition ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a mathematical model, typically an entry from a database. + Biological model identifier + + + + Biological model ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of chemicals. + Chemical compound identifier + Compound ID + Small molecule identifier + + + + Compound identifier + + + + + + + + + beta12orEarlier + A unique (typically numerical) identifier of a concept in an ontology of biological or bioinformatics concepts and relations. + + + + Ontology concept ID + + + + + + + + + + + + + + + beta12orEarlier + true + Unique identifier of a scientific article. + Article identifier + + + + Article ID + + + + + + + + + + beta12orEarlier + FB[a-zA-Z_0-9]{2}[0-9]{7} + Identifier of an object from the FlyBase database. + + + + FlyBase ID + + + + + + + + + + beta12orEarlier + Name of an object from the WormBase database, usually a human-readable name. + + + + WormBase name + + + + + + + + + beta12orEarlier + Class of an object from the WormBase database. + + + + A WormBase class describes the type of object such as 'sequence' or 'protein'. + WormBase class + + + + + + + + + beta12orEarlier + true + A persistent, unique identifier of a molecular sequence database entry. + Sequence accession number + + + + Sequence accession + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing a type of molecular sequence. + + Sequence type might reflect the molecule (protein, nucleic acid etc) or the sequence itself (gapped, ambiguous etc). + Sequence type + true + + + + + + + + + + beta12orEarlier + The name of a sequence-based entity adhering to the standard sequence naming scheme used by all EMBOSS applications. + EMBOSS USA + + + + EMBOSS Uniform Sequence Address + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a protein sequence database entry. + Protein sequence accession number + + + + Sequence accession (protein) + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a nucleotide sequence database entry. + Nucleotide sequence accession number + + + + Sequence accession (nucleic acid) + + + + + + + + + + beta12orEarlier + (NC|AC|NG|NT|NW|NZ|NM|NR|XM|XR|NP|AP|XP|YP|ZP)_[0-9]+ + Accession number of a RefSeq database entry. + RefSeq ID + + + + RefSeq accession + + + + + + + + + beta12orEarlier + 1.0 + + + Accession number of a UniProt (protein sequence) database entry. May contain version or isoform number. + + UniProt accession (extended) + true + + + + + + + + + + beta12orEarlier + An identifier of PIR sequence database entry. + PIR ID + PIR accession number + + + + PIR identifier + + + + + + + + + beta12orEarlier + 1.2 + + Identifier of a TREMBL sequence database entry. + + + TREMBL accession + true + + + + + + + + + beta12orEarlier + Primary identifier of a Gramene database entry. + Gramene primary ID + + + + Gramene primary identifier + + + + + + + + + + beta12orEarlier + Identifier of a (nucleic acid) entry from the EMBL/GenBank/DDBJ databases. + + + + EMBL/GenBank/DDBJ ID + + + + + + + + + + beta12orEarlier + A unique identifier of an entry (gene cluster) from the NCBI UniGene database. + UniGene ID + UniGene cluster ID + UniGene identifier + + + + Sequence cluster ID (UniGene) + + + + + + + + + + + beta12orEarlier + Identifier of a dbEST database entry. + dbEST ID + + + + dbEST accession + + + + + + + + + + beta12orEarlier + Identifier of a dbSNP database entry. + dbSNP identifier + + + + dbSNP ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The EMBOSS type of a molecular sequence. + + See the EMBOSS documentation (http://emboss.sourceforge.net/) for a definition of what this includes. + EMBOSS sequence type + true + + + + + + + + + beta12orEarlier + 1.5 + + + List of EMBOSS Uniform Sequence Addresses (EMBOSS listfile). + + EMBOSS listfile + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a cluster of molecular sequence(s). + + + + Sequence cluster ID + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the COG database. + COG ID + + + + Sequence cluster ID (COG) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a sequence motif, for example an entry from a motif database. + + + + Sequence motif identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a sequence profile. + + + + A sequence profile typically represents a sequence alignment. + Sequence profile ID + + + + + + + + + beta12orEarlier + Identifier of an entry from the ELMdb database of protein functional sites. + + + + ELM ID + + + + + + + + + beta12orEarlier + PS[0-9]{5} + Accession number of an entry from the Prosite database. + Prosite ID + + + + Prosite accession number + + + + + + + + + + + + + + + + beta12orEarlier + Unique identifier or name of a HMMER hidden Markov model. + + + + HMMER hidden Markov model ID + + + + + + + + + + beta12orEarlier + Unique identifier or name of a profile from the JASPAR database. + + + + JASPAR profile ID + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a sequence alignment. + + Possible values include for example the EMBOSS alignment types, BLAST alignment types and so on. + Sequence alignment type + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The type of a BLAST sequence alignment. + + BLAST sequence alignment type + true + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a phylogenetic tree. + + For example 'nj', 'upgmp' etc. + Phylogenetic tree type + true + + + + + + + + + + beta12orEarlier + Accession number of an entry from the TreeBASE database. + + + + TreeBASE study accession number + + + + + + + + + + beta12orEarlier + Accession number of an entry from the TreeFam database. + + + + TreeFam accession number + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a comparison matrix. + + For example 'blosum', 'pam', 'gonnet', 'id' etc. Comparison matrix type may be required where a series of matrices of a certain type are used. + Comparison matrix type + true + + + + + + + + + + + + + + + + beta12orEarlier + Unique name or identifier of a comparison matrix. + Substitution matrix name + + + + See for example http://www.ebi.ac.uk/Tools/webservices/help/matrix. + Comparison matrix name + + + + + + + + + + beta12orEarlier + [0-9][a-zA-Z_0-9]{3} + An identifier of an entry from the PDB database. + PDB identifier + PDBID + + + + A PDB identification code which consists of 4 characters, the first of which is a digit in the range 0 - 9; the remaining 3 are alphanumeric, and letters are upper case only. (source: https://cdn.rcsb.org/wwpdb/docs/documentation/file-format/PDB_format_1996.pdf) + PDB ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the AAindex database. + + + + AAindex ID + + + + + + + + + + beta12orEarlier + Accession number of an entry from the BIND database. + + + + BIND accession number + + + + + + + + + + beta12orEarlier + EBI\-[0-9]+ + Accession number of an entry from the IntAct database. + + + + IntAct accession number + + + + + + + + + + beta12orEarlier + Name of a protein family. + + + + Protein family name + + + + + + + + + + + + + + + beta12orEarlier + Name of an InterPro entry, usually indicating the type of protein matches for that entry. + + + + InterPro entry name + + + + + + + + + + + + + + + + beta12orEarlier + IPR015590 + IPR[0-9]{6} + Primary accession number of an InterPro entry. + InterPro primary accession + InterPro primary accession number + + + + Every InterPro entry has a unique accession number to provide a persistent citation of database records. + InterPro accession + + + + + + + + + + + + + + + beta12orEarlier + Secondary accession number of an InterPro entry. + InterPro secondary accession number + + + + InterPro secondary accession + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the Gene3D database. + + + + Gene3D ID + + + + + + + + + + beta12orEarlier + PIRSF[0-9]{6} + Unique identifier of an entry from the PIRSF database. + + + + PIRSF ID + + + + + + + + + + beta12orEarlier + PR[0-9]{5} + The unique identifier of an entry in the PRINTS database. + + + + PRINTS code + + + + + + + + + + beta12orEarlier + PF[0-9]{5} + Accession number of a Pfam entry. + + + + Pfam accession number + + + + + + + + + + beta12orEarlier + SM[0-9]{5} + Accession number of an entry from the SMART database. + + + + SMART accession number + + + + + + + + + + beta12orEarlier + Unique identifier (number) of a hidden Markov model from the Superfamily database. + + + + Superfamily hidden Markov model number + + + + + + + + + + beta12orEarlier + Accession number of an entry (family) from the TIGRFam database. + TIGRFam accession number + + + + TIGRFam ID + + + + + + + + + + beta12orEarlier + PD[0-9]+ + A ProDom domain family accession number. + + + + ProDom is a protein domain family database. + ProDom accession number + + + + + + + + + + beta12orEarlier + Identifier of an entry from the TRANSFAC database. + + + + TRANSFAC accession number + + + + + + + + + beta12orEarlier + [AEP]-[a-zA-Z_0-9]{4}-[0-9]+ + Accession number of an entry from the ArrayExpress database. + ArrayExpress experiment ID + + + + ArrayExpress accession number + + + + + + + + + beta12orEarlier + [0-9]+ + PRIDE experiment accession number. + + + + PRIDE experiment accession number + + + + + + + + + + beta12orEarlier + Identifier of an entry from the EMDB electron microscopy database. + + + + EMDB ID + + + + + + + + + + beta12orEarlier + [GDS|GPL|GSE|GSM][0-9]+ + Accession number of an entry from the GEO database. + + + + GEO accession number + + + + + + + + + + beta12orEarlier + Identifier of an entry from the GermOnline database. + + + + GermOnline ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the EMAGE database. + + + + EMAGE ID + + + + + + + + + beta12orEarlier + true + Accession number of an entry from a database of disease. + + + + Disease ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the HGVbase database. + + + + HGVbase ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry from the HIVDB database. + + HIVDB identifier + true + + + + + + + + + + beta12orEarlier + [*#+%^]?[0-9]{6} + Identifier of an entry from the OMIM database. + + + + OMIM ID + + + + + + + + + + + beta12orEarlier + Unique identifier of an object from one of the KEGG databases (excluding the GENES division). + + + + KEGG object identifier + + + + + + + + + + beta12orEarlier + REACT_[0-9]+(\.[0-9]+)? + Identifier of an entry from the Reactome database. + Reactome ID + + + + Pathway ID (reactome) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry from the aMAZE database. + + Pathway ID (aMAZE) + true + + + + + + + + + + + beta12orEarlier + Identifier of an pathway from the BioCyc biological pathways database. + BioCyc pathway ID + + + + Pathway ID (BioCyc) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the INOH database. + INOH identifier + + + + Pathway ID (INOH) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the PATIKA database. + PATIKA ID + + + + Pathway ID (PATIKA) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the CPDB (ConsensusPathDB) biological pathways database, which is an identifier from an external database integrated into CPDB. + CPDB ID + + + + This concept refers to identifiers used by the databases collated in CPDB; CPDB identifiers are not independently defined. + Pathway ID (CPDB) + + + + + + + + + + beta12orEarlier + PTHR[0-9]{5} + Identifier of a biological pathway from the Panther Pathways database. + Panther Pathways ID + + + + Pathway ID (Panther) + + + + + + + + + + + + + + + + beta12orEarlier + MIR:00100005 + MIR:[0-9]{8} + Unique identifier of a MIRIAM data resource. + + + + This is the identifier used internally by MIRIAM for a data type. + MIRIAM identifier + + + + + + + + + + + + + + + beta12orEarlier + The name of a data type from the MIRIAM database. + + + + MIRIAM data type name + + + + + + + + + + + + + + + + + beta12orEarlier + urn:miriam:pubmed:16333295|urn:miriam:obo.go:GO%3A0045202 + The URI (URL or URN) of a data entity from the MIRIAM database. + identifiers.org synonym + + + + A MIRIAM URI consists of the URI of the MIRIAM data type (PubMed, UniProt etc) followed by the identifier of an element of that data type, for example PMID for a publication or an accession number for a GO term. + MIRIAM URI + + + + + + + + + beta12orEarlier + UniProt|Enzyme Nomenclature + The primary name of a data type from the MIRIAM database. + + + + The primary name of a MIRIAM data type is taken from a controlled vocabulary. + MIRIAM data type primary name + + + + + UniProt|Enzyme Nomenclature + A protein entity has the MIRIAM data type 'UniProt', and an enzyme has the MIRIAM data type 'Enzyme Nomenclature'. + + + + + + + + + beta12orEarlier + A synonymous name of a data type from the MIRIAM database. + + + + A synonymous name for a MIRIAM data type taken from a controlled vocabulary. + MIRIAM data type synonymous name + + + + + + + + + + beta12orEarlier + Unique identifier of a Taverna workflow. + + + + Taverna workflow ID + + + + + + + + + + beta12orEarlier + Name of a biological (mathematical) model. + + + + Biological model name + + + + + + + + + + beta12orEarlier + (BIOMD|MODEL)[0-9]{10} + Unique identifier of an entry from the BioModel database. + + + + BioModel ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Chemical structure specified in PubChem Compound Identification (CID), a non-zero integer identifier for a unique chemical structure. + PubChem compound accession identifier + + + + PubChem CID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the ChemSpider database. + + + + ChemSpider ID + + + + + + + + + + beta12orEarlier + CHEBI:[0-9]+ + Identifier of an entry from the ChEBI database. + ChEBI IDs + ChEBI identifier + + + + ChEBI ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the BioPax ontology. + + + + BioPax concept ID + + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a concept from The Gene Ontology. + GO concept identifier + + + + GO concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the MeSH vocabulary. + + + + MeSH concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the HGNC controlled vocabulary. + + + + HGNC concept ID + + + + + + + + + + + beta12orEarlier + 9662|3483|182682 + [1-9][0-9]{0,8} + A stable unique identifier for each taxon (for a species, a family, an order, or any other group in the NCBI taxonomy database. + NCBI tax ID + NCBI taxonomy identifier + + + + NCBI taxonomy ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the Plant Ontology (PO). + + + + Plant Ontology concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the UMLS vocabulary. + + + + UMLS concept ID + + + + + + + + + + beta12orEarlier + FMA:[0-9]+ + An identifier of a concept from Foundational Model of Anatomy. + + + + Classifies anatomical entities according to their shared characteristics (genus) and distinguishing characteristics (differentia). Specifies the part-whole and spatial relationships of the entities, morphological transformation of the entities during prenatal development and the postnatal life cycle and principles, rules and definitions according to which classes and relationships in the other three components of FMA are represented. + FMA concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the EMAP mouse ontology. + + + + EMAP concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the ChEBI ontology. + + + + ChEBI concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the MGED ontology. + + + + MGED concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the myGrid ontology. + + + + The ontology is provided as two components, the service ontology and the domain ontology. The domain ontology acts provides concepts for core bioinformatics data types and their relations. The service ontology describes the physical and operational features of web services. + myGrid concept ID + + + + + + + + + + beta12orEarlier + 4963447 + [1-9][0-9]{0,8} + PubMed unique identifier of an article. + PMID + + + + PubMed ID + + + + + + + + + + beta12orEarlier + (doi\:)?[0-9]{2}\.[0-9]{4}/.* + Digital Object Identifier (DOI) of a published article. + Digital Object Identifier + + + + DOI + + + + + + + + + + beta12orEarlier + Medline UI (unique identifier) of an article. + Medline unique identifier + + + + The use of Medline UI has been replaced by the PubMed unique identifier. + Medline UI + + + + + + + + + beta12orEarlier + The name of a computer package, application, method or function. + + + + Tool name + + + + + + + + + beta12orEarlier + The unique name of a signature (sequence classifier) method. + + + + Signature methods from http://www.ebi.ac.uk/Tools/InterProScan/help.html#results include BlastProDom, FPrintScan, HMMPIR, HMMPfam, HMMSmart, HMMTigr, ProfileScan, ScanRegExp, SuperFamily and HAMAP. + Tool name (signature) + + + + + + + + + beta12orEarlier + The name of a BLAST tool. + BLAST name + + + + This include 'blastn', 'blastp', 'blastx', 'tblastn' and 'tblastx'. + Tool name (BLAST) + + + + + + + + + beta12orEarlier + The name of a FASTA tool. + + + + This includes 'fasta3', 'fastx3', 'fasty3', 'fastf3', 'fasts3' and 'ssearch'. + Tool name (FASTA) + + + + + + + + + beta12orEarlier + The name of an EMBOSS application. + + + + Tool name (EMBOSS) + + + + + + + + + beta12orEarlier + The name of an EMBASSY package. + + + + Tool name (EMBASSY package) + + + + + + + + + beta12orEarlier + A QSAR constitutional descriptor. + QSAR constitutional descriptor + + + QSAR descriptor (constitutional) + + + + + + + + + beta12orEarlier + A QSAR electronic descriptor. + QSAR electronic descriptor + + + QSAR descriptor (electronic) + + + + + + + + + beta12orEarlier + A QSAR geometrical descriptor. + QSAR geometrical descriptor + + + QSAR descriptor (geometrical) + + + + + + + + + beta12orEarlier + A QSAR topological descriptor. + QSAR topological descriptor + + + QSAR descriptor (topological) + + + + + + + + + beta12orEarlier + A QSAR molecular descriptor. + QSAR molecular descriptor + + + QSAR descriptor (molecular) + + + + + + + + + beta12orEarlier + Any collection of multiple protein sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries. + + + Sequence set (protein) + + + + + + + + + beta12orEarlier + Any collection of multiple nucleotide sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries. + + + Sequence set (nucleic acid) + + + + + + + + + + + + + + + beta12orEarlier + A set of sequences that have been clustered or otherwise classified as belonging to a group including (typically) sequence cluster information. + + + The cluster might include sequences identifiers, short descriptions, alignment and summary information. + Sequence cluster + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A file of intermediate results from a PSIBLAST search that is used for priming the search in the next PSIBLAST iteration. + + A Psiblast checkpoint file uses ASN.1 Binary Format and usually has the extension '.asn'. + Psiblast checkpoint file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Sequences generated by HMMER package in FASTA-style format. + + HMMER synthetic sequences set + true + + + + + + + + + + + + + + + beta12orEarlier + A protein sequence cleaved into peptide fragments (by enzymatic or chemical cleavage) with fragment masses. + + + Proteolytic digest + + + + + + + + + beta12orEarlier + SO:0000412 + Restriction digest fragments from digesting a nucleotide sequence with restriction sites using a restriction endonuclease. + + + Restriction digest + + + + + + + + + beta12orEarlier + Oligonucleotide primer(s) for PCR and DNA amplification, for example a minimal primer set. + + + PCR primers + + + + + + + + + beta12orEarlier + beta12orEarlier + + + File of sequence vectors used by EMBOSS vectorstrip application, or any file in same format. + + vectorstrip cloning vector definition file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A library of nucleotide sequences to avoid during hybridisation events. Hybridisation of the internal oligo to sequences in this library is avoided, rather than priming from them. The file is in a restricted FASTA format. + + Primer3 internal oligo mishybridizing library + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A nucleotide sequence library of sequences to avoid during amplification (for example repetitive sequences, or possibly the sequences of genes in a gene family that should not be amplified. The file must is in a restricted FASTA format. + + Primer3 mispriming library file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + File of one or more pairs of primer sequences, as used by EMBOSS primersearch application. + + primersearch primer pairs sequence record + true + + + + + + + + + + beta12orEarlier + A cluster of protein sequences. + Protein sequence cluster + + + The sequences are typically related, for example a family of sequences. + Sequence cluster (protein) + + + + + + + + + + beta12orEarlier + A cluster of nucleotide sequences. + Nucleotide sequence cluster + + + The sequences are typically related, for example a family of sequences. + Sequence cluster (nucleic acid) + + + + + + + + + beta12orEarlier + The size (length) of a sequence, subsequence or region in a sequence, or range(s) of lengths. + + + Sequence length + + + + + + + + + beta12orEarlier + 1.5 + + + Size of a sequence word. + + Word size is used for example in word-based sequence database search methods. + Word size + true + + + + + + + + + beta12orEarlier + 1.5 + + + Size of a sequence window. + + A window is a region of fixed size but not fixed position over a molecular sequence. It is typically moved (computationally) over a sequence during scoring. + Window size + true + + + + + + + + + beta12orEarlier + 1.5 + + + Specification of range(s) of length of sequences. + + Sequence length range + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Report on basic information about a molecular sequence such as name, accession number, type (nucleic or protein), length, description etc. + + + Sequence information report + true + + + + + + + + + beta12orEarlier + An informative report about non-positional sequence features, typically a report on general molecular sequence properties derived from sequence analysis. + Sequence properties report + + + Sequence property + + + + + + + + + beta12orEarlier + Annotation of positional features of molecular sequence(s), i.e. that can be mapped to position(s) in the sequence. + Feature record + Features + General sequence features + Sequence features report + SO:0000110 + + + This includes annotation of positional sequence features, organised into a standard feature table, or any other report of sequence features. General feature reports are a source of sequence feature table information although internal conversion would be required. + Sequence features + http://purl.bioontology.org/ontology/MSH/D058977 + + + + + + + + + beta12orEarlier + beta13 + + + Comparative data on sequence features such as statistics, intersections (and data on intersections), differences etc. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Sequence features (comparative) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report of general sequence properties derived from protein sequence data. + + Sequence property (protein) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report of general sequence properties derived from nucleotide sequence data. + + Sequence property (nucleic acid) + true + + + + + + + + + beta12orEarlier + A report on sequence complexity, for example low-complexity or repeat regions in sequences. + Sequence property (complexity) + + + Sequence complexity report + + + + + + + + + beta12orEarlier + A report on ambiguity in molecular sequence(s). + Sequence property (ambiguity) + + + Sequence ambiguity report + + + + + + + + + beta12orEarlier + A report (typically a table) on character or word composition / frequency of a molecular sequence(s). + Sequence composition + Sequence property (composition) + + + Sequence composition report + + + + + + + + + beta12orEarlier + A report on peptide fragments of certain molecular weight(s) in one or more protein sequences. + + + Peptide molecular weight hits + + + + + + + + + beta12orEarlier + A plot of third base position variability in a nucleotide sequence. + + + Base position variability plot + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A table of character or word composition / frequency of a molecular sequence. + + Sequence composition table + true + + + + + + + + + + beta12orEarlier + A table of base frequencies of a nucleotide sequence. + + + Base frequencies table + + + + + + + + + + beta12orEarlier + A table of word composition of a nucleotide sequence. + + + Base word frequencies table + + + + + + + + + + beta12orEarlier + A table of amino acid frequencies of a protein sequence. + Sequence composition (amino acid frequencies) + + + Amino acid frequencies table + + + + + + + + + + beta12orEarlier + A table of amino acid word composition of a protein sequence. + Sequence composition (amino acid words) + + + Amino acid word frequencies table + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation of a molecular sequence in DAS format. + + DAS sequence feature annotation + true + + + + + + + + + beta12orEarlier + Annotation of positional sequence features, organised into a standard feature table. + Sequence feature table + + + Feature table + + + + + + + + + + + + + + + beta12orEarlier + A map of (typically one) DNA sequence annotated with positional or non-positional features. + DNA map + + + Map + + + + + + + + + beta12orEarlier + An informative report on intrinsic positional features of a nucleotide sequence, formatted to be machine-readable. + Feature table (nucleic acid) + Nucleic acid feature table + Genome features + Genomic features + + + This includes nucleotide sequence feature annotation in any known sequence feature table format and any other report of nucleic acid features. + Nucleic acid features + + + + + + + + + + beta12orEarlier + An informative report on intrinsic positional features of a protein sequence. + Feature table (protein) + Protein feature table + + + This includes protein sequence feature annotation in any known sequence feature table format and any other report of protein features. + Protein features + + + + + + + + + beta12orEarlier + Moby:GeneticMap + A map showing the relative positions of genetic markers in a nucleic acid sequence, based on estimation of non-physical distance such as recombination frequencies. + Linkage map + + + A genetic (linkage) map indicates the proximity of two genes on a chromosome, whether two genes are linked and the frequency they are transmitted together to an offspring. They are limited to genetic markers of traits observable only in whole organisms. + Genetic map + + + + + + + + + beta12orEarlier + A map of genetic markers in a contiguous, assembled genomic sequence, with the sizes and separation of markers measured in base pairs. + + + A sequence map typically includes annotation on significant subsequences such as contigs, haplotypes and genes. The contigs shown will (typically) be a set of small overlapping clones representing a complete chromosomal segment. + Sequence map + + + + + + + + + beta12orEarlier + A map of DNA (linear or circular) annotated with physical features or landmarks such as restriction sites, cloned DNA fragments, genes or genetic markers, along with the physical distances between them. + + + Distance in a physical map is measured in base pairs. A physical map might be ordered relative to a reference map (typically a genetic map) in the process of genome sequencing. + Physical map + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image of a sequence with matches to signatures, motifs or profiles. + + + Sequence signature map + true + + + + + + + + + beta12orEarlier + A map showing banding patterns derived from direct observation of a stained chromosome. + Chromosome map + Cytogenic map + Cytologic map + + + This is the lowest-resolution physical map and can provide only rough estimates of physical (base pair) distances. Like a genetic map, they are limited to genetic markers of traits observable only in whole organisms. + Cytogenetic map + + + + + + + + + beta12orEarlier + A gene map showing distances between loci based on relative cotransduction frequencies. + + + DNA transduction map + + + + + + + + + beta12orEarlier + Sequence map of a single gene annotated with genetic features such as introns, exons, untranslated regions, polyA signals, promoters, enhancers and (possibly) mutations defining alleles of a gene. + + + Gene map + + + + + + + + + beta12orEarlier + Sequence map of a plasmid (circular DNA). + + + Plasmid map + + + + + + + + + beta12orEarlier + Sequence map of a whole genome. + + + Genome map + + + + + + + + + + beta12orEarlier + Image of the restriction enzyme cleavage sites (restriction sites) in a nucleic acid sequence. + + + Restriction map + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image showing matches between protein sequence(s) and InterPro Entries. + + + The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. Each protein is represented as a scaled horizontal line with colored bars indicating the position of the matches. + InterPro compact match image + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image showing detailed information on matches between protein sequence(s) and InterPro Entries. + + + The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. + InterPro detailed match image + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image showing the architecture of InterPro domains in a protein sequence. + + + The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. Domain architecture is shown as a series of non-overlapping domains in the protein. + InterPro architecture image + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + SMART protein schematic in PNG format. + + SMART protein schematic + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Images based on GlobPlot prediction of intrinsic disordered regions and globular domains in protein sequences. + + + GlobPlot domain image + true + + + + + + + + + beta12orEarlier + 1.8 + + Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more sequences. + + + Sequence motif matches + true + + + + + + + + + beta12orEarlier + 1.5 + + + Location of short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences. + + The report might include derived data map such as classification, annotation, organisation, periodicity etc. + Sequence features (repeats) + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on predicted or actual gene structure, regions which make an RNA product and features such as promoters, coding regions, splice sites etc. + + Gene and transcript structure (report) + true + + + + + + + + + beta12orEarlier + 1.8 + + regions of a nucleic acid sequence containing mobile genetic elements. + + + Mobile genetic elements + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on quadruplex-forming motifs in a nucleotide sequence. + + Nucleic acid features (quadruplexes) + true + + + + + + + + + beta12orEarlier + 1.8 + + Report on nucleosome formation potential or exclusion sequence(s). + + + Nucleosome exclusion sequences + true + + + + + + + + + beta12orEarlier + beta13 + + A report on exonic splicing enhancers (ESE) in an exon. + + + Gene features (exonic splicing enhancer) + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on microRNA sequence (miRNA) or precursor, microRNA targets, miRNA binding sites in an RNA sequence etc. + + Nucleic acid features (microRNA) + true + + + + + + + + + beta12orEarlier + 1.8 + + protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. + + + Coding region + true + + + + + + + + + beta12orEarlier + beta13 + + + A report on selenocysteine insertion sequence (SECIS) element in a DNA sequence. + + Gene features (SECIS element) + true + + + + + + + + + beta12orEarlier + 1.8 + + transcription factor binding sites (TFBS) in a DNA sequence. + + + Transcription factor binding sites + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on predicted or known key residue positions (sites) in a protein sequence, such as binding or functional sites. + + Use this concept for collections of specific sites which are not necessarily contiguous, rather than contiguous stretches of amino acids. + Protein features (sites) + true + + + + + + + + + beta12orEarlier + 1.8 + + signal peptides or signal peptide cleavage sites in protein sequences. + + + Protein features report (signal peptides) + true + + + + + + + + + beta12orEarlier + 1.8 + + cleavage sites (for a proteolytic enzyme or agent) in a protein sequence. + + + Protein features report (cleavage sites) + true + + + + + + + + + beta12orEarlier + 1.8 + + post-translation modifications in a protein sequence, typically describing the specific sites involved. + + + Protein features (post-translation modifications) + true + + + + + + + + + beta12orEarlier + 1.8 + + catalytic residues (active site) of an enzyme. + + + Protein features report (active sites) + true + + + + + + + + + beta12orEarlier + 1.8 + + ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids. + + + Protein features report (binding sites) + true + + + + + + + + + beta12orEarlier + beta13 + + A report on antigenic determinant sites (epitopes) in proteins, from sequence and / or structural data. + + + Epitope mapping is commonly done during vaccine design. + Protein features (epitopes) + true + + + + + + + + + beta12orEarlier + 1.8 + + RNA and DNA-binding proteins and binding sites in protein sequences. + + + Protein features report (nucleic acid binding sites) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on epitopes that bind to MHC class I molecules. + + MHC Class I epitopes report + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on predicted epitopes that bind to MHC class II molecules. + + MHC Class II epitopes report + true + + + + + + + + + beta12orEarlier + beta13 + + A report or plot of PEST sites in a protein sequence. + + + 'PEST' motifs target proteins for proteolytic degradation and reduce the half-lives of proteins dramatically. + Protein features (PEST sites) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Scores from a sequence database search (for example a BLAST search). + + Sequence database hits scores list + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignments from a sequence database search (for example a BLAST search). + + Sequence database hits alignments list + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on the evaluation of the significance of sequence similarity scores from a sequence database search (for example a BLAST search). + + Sequence database hits evaluation data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alphabet for the motifs (patterns) that MEME will search for. + + MEME motif alphabet + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + MEME background frequencies file. + + MEME background frequencies file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + File of directives for ordering and spacing of MEME motifs. + + MEME motifs directive file + true + + + + + + + + + beta12orEarlier + Dirichlet distribution used by hidden Markov model analysis programs. + + + Dirichlet distribution + + + + + + + + + beta12orEarlier + 1.4 + + + + Emission and transition counts of a hidden Markov model, generated once HMM has been determined, for example after residues/gaps have been assigned to match, delete and insert states. + + HMM emission and transition counts + true + + + + + + + + + beta12orEarlier + Regular expression pattern. + + + Regular expression + + + + + + + + + + + + + + + beta12orEarlier + Any specific or conserved pattern (typically expressed as a regular expression) in a molecular sequence. + + + Sequence motif + + + + + + + + + + + + + + + beta12orEarlier + Some type of statistical model representing a (typically multiple) sequence alignment. + + + Sequence profile + http://semanticscience.org/resource/SIO_010531 + + + + + + + + + beta12orEarlier + An informative report about a specific or conserved protein sequence pattern. + InterPro entry + Protein domain signature + Protein family signature + Protein region signature + Protein repeat signature + Protein site signature + + + Protein signature + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A nucleotide regular expression pattern from the Prosite database. + + Prosite nucleotide pattern + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A protein regular expression pattern from the Prosite database. + + Prosite protein pattern + true + + + + + + + + + beta12orEarlier + A profile (typically representing a sequence alignment) that is a simple matrix of nucleotide (or amino acid) counts per position. + PFM + + + Position frequency matrix + + + + + + + + + beta12orEarlier + A profile (typically representing a sequence alignment) that is weighted matrix of nucleotide (or amino acid) counts per position. + PWM + + + Contributions of individual sequences to the matrix might be uneven (weighted). + Position weight matrix + + + + + + + + + beta12orEarlier + A profile (typically representing a sequence alignment) derived from a matrix of nucleotide (or amino acid) counts per position that reflects information content at each position. + ICM + + + Information content matrix + + + + + + + + + beta12orEarlier + A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states. For example, a hidden Markov model representation of a set or alignment of sequences. + HMM + + + Hidden Markov model + + + + + + + + + beta12orEarlier + One or more fingerprints (sequence classifiers) as used in the PRINTS database. + + + Fingerprint + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A protein signature of the type used in the EMBASSY Signature package. + + Domainatrix signature + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + NULL hidden Markov model representation used by the HMMER package. + + HMMER NULL hidden Markov model + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein family signature (sequence classifier) from the InterPro database. + + Protein family signatures cover all domains in the matching proteins and span >80% of the protein length and with no adjacent protein domain signatures or protein region signatures. + Protein family signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein domain signature (sequence classifier) from the InterPro database. + + Protein domain signatures identify structural or functional domains or other units with defined boundaries. + Protein domain signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein region signature (sequence classifier) from the InterPro database. + + A protein region signature defines a region which cannot be described as a protein family or domain signature. + Protein region signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein repeat signature (sequence classifier) from the InterPro database. + + A protein repeat signature is a repeated protein motif, that is not in single copy expected to independently fold into a globular domain. + Protein repeat signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein site signature (sequence classifier) from the InterPro database. + + A protein site signature is a classifier for a specific site in a protein. + Protein site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein conserved site signature (sequence classifier) from the InterPro database. + + A protein conserved site signature is any short sequence pattern that may contain one or more unique residues and is cannot be described as a active site, binding site or post-translational modification. + Protein conserved site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein active site signature (sequence classifier) from the InterPro database. + + A protein active site signature corresponds to an enzyme catalytic pocket. An active site typically includes non-contiguous residues, therefore multiple signatures may be required to describe an active site. ; residues involved in enzymatic reactions for which mutational data is typically available. + Protein active site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein binding site signature (sequence classifier) from the InterPro database. + + A protein binding site signature corresponds to a site that reversibly binds chemical compounds, which are not themselves substrates of the enzymatic reaction. This includes enzyme cofactors and residues involved in electron transport or protein structure modification. + Protein binding site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein post-translational modification signature (sequence classifier) from the InterPro database. + + A protein post-translational modification signature corresponds to sites that undergo modification of the primary structure, typically to activate or de-activate a function. For example, methylation, sumoylation, glycosylation etc. The modification might be permanent or reversible. + Protein post-translational modification signature + true + + + + + + + + + beta12orEarlier + true + Alignment of exactly two molecular sequences. + Sequence alignment (pair) + + + Pair sequence alignment + http://semanticscience.org/resource/SIO_010068 + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of more than two molecular sequences. + + Sequence alignment (multiple) + true + + + + + + + + + beta12orEarlier + Alignment of multiple nucleotide sequences. + Sequence alignment (nucleic acid) + DNA sequence alignment + RNA sequence alignment + + + Nucleic acid sequence alignment + + + + + + + + + beta12orEarlier + Alignment of multiple protein sequences. + Sequence alignment (protein) + + + Protein sequence alignment + + + + + + + + + beta12orEarlier + Alignment of multiple molecular sequences of different types. + Sequence alignment (hybrid) + + + Hybrid sequence alignments include for example genomic DNA to EST, cDNA or mRNA. + Hybrid sequence alignment + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment of exactly two nucleotide sequences. + + Sequence alignment (nucleic acid pair) + true + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment of exactly two protein sequences. + + Sequence alignment (protein pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of exactly two molecular sequences of different types. + + Hybrid sequence alignment (pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of more than two nucleotide sequences. + + Multiple nucleotide sequence alignment + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of more than two protein sequences. + + Multiple protein sequence alignment + true + + + + + + + + + beta12orEarlier + A simple floating point number defining the penalty for opening or extending a gap in an alignment. + + + Alignment score or penalty + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Whether end gaps are scored or not. + + Score end gaps control + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controls the order of sequences in an output sequence alignment. + + Aligned sequence order + true + + + + + + + + + beta12orEarlier + A penalty for opening a gap in an alignment. + + + Gap opening penalty + + + + + + + + + beta12orEarlier + A penalty for extending a gap in an alignment. + + + Gap extension penalty + + + + + + + + + beta12orEarlier + A penalty for gaps that are close together in an alignment. + + + Gap separation penalty + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + A penalty for gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences. + + Terminal gap penalty + true + + + + + + + + + beta12orEarlier + The score for a 'match' used in various sequence database search applications with simple scoring schemes. + + + Match reward score + + + + + + + + + beta12orEarlier + The score (penalty) for a 'mismatch' used in various alignment and sequence database search applications with simple scoring schemes. + + + Mismatch penalty score + + + + + + + + + beta12orEarlier + This is the threshold drop in score at which extension of word alignment is halted. + + + Drop off score + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for opening a gap in an alignment. + + Gap opening penalty (integer) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for opening a gap in an alignment. + + Gap opening penalty (float) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for extending a gap in an alignment. + + Gap extension penalty (integer) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for extending a gap in an alignment. + + Gap extension penalty (float) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for gaps that are close together in an alignment. + + Gap separation penalty (integer) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for gaps that are close together in an alignment. + + Gap separation penalty (float) + true + + + + + + + + + beta12orEarlier + A number defining the penalty for opening gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences. + + + Terminal gap opening penalty + + + + + + + + + beta12orEarlier + A number defining the penalty for extending gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences. + + + Terminal gap extension penalty + + + + + + + + + beta12orEarlier + Sequence identity is the number (%) of matches (identical characters) in positions from an alignment of two molecular sequences. + + + Sequence identity + + + + + + + + + beta12orEarlier + Sequence similarity is the similarity (expressed as a percentage) of two molecular sequences calculated from their alignment, a scoring matrix for scoring characters substitutions and penalties for gap insertion and extension. + + + Data Type is float probably. + Sequence similarity + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data on molecular sequence alignment quality (estimated accuracy). + + Sequence alignment metadata (quality report) + true + + + + + + + + + beta12orEarlier + 1.4 + + + Data on character conservation in a molecular sequence alignment. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. Use this concept for calculated substitution rates, relative site variability, data on sites with biased properties, highly conserved or very poorly conserved sites, regions, blocks etc. + Sequence alignment report (site conservation) + true + + + + + + + + + beta12orEarlier + 1.4 + + + Data on correlations between sites in a molecular sequence alignment, typically to identify possible covarying positions and predict contacts or structural constraints in protein structures. + + Sequence alignment report (site correlation) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of molecular sequences to a Domainatrix signature (representing a sequence alignment). + + Sequence-profile alignment (Domainatrix signature) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment of molecular sequence(s) to a hidden Markov model(s). + + Sequence-profile alignment (HMM) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment of molecular sequences to a protein fingerprint from the PRINTS database. + + Sequence-profile alignment (fingerprint) + true + + + + + + + + + beta12orEarlier + Continuous quantitative data that may be read during phylogenetic tree calculation. + Phylogenetic continuous quantitative characters + Quantitative traits + + + Phylogenetic continuous quantitative data + + + + + + + + + beta12orEarlier + Character data with discrete states that may be read during phylogenetic tree calculation. + Discrete characters + Discretely coded characters + Phylogenetic discrete states + + + Phylogenetic discrete data + + + + + + + + + beta12orEarlier + One or more cliques of mutually compatible characters that are generated, for example from analysis of discrete character data, and are used to generate a phylogeny. + Phylogenetic report (cliques) + + + Phylogenetic character cliques + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic invariants data for testing alternative tree topologies. + Phylogenetic report (invariants) + + + Phylogenetic invariants + + + + + + + + + beta12orEarlier + 1.5 + + + A report of data concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees. + + This is a broad data type and is used for example for reports on confidence, shape or stratigraphic (age) data derived from phylogenetic tree analysis. + Phylogenetic report + true + + + + + + + + + beta12orEarlier + A model of DNA substitution that explains a DNA sequence alignment, derived from phylogenetic tree analysis. + Phylogenetic tree report (DNA substitution model) + Sequence alignment report (DNA substitution model) + Substitution model + + + DNA substitution model + + + + + + + + + beta12orEarlier + 1.4 + + + Data about the shape of a phylogenetic tree. + + Phylogenetic tree report (tree shape) + true + + + + + + + + + beta12orEarlier + 1.4 + + + Data on the confidence of a phylogenetic tree. + + Phylogenetic tree report (tree evaluation) + true + + + + + + + + + beta12orEarlier + Distances, such as Branch Score distance, between two or more phylogenetic trees. + Phylogenetic tree report (tree distances) + + + Phylogenetic tree distances + + + + + + + + + beta12orEarlier + 1.4 + + + Molecular clock and stratigraphic (age) data derived from phylogenetic tree analysis. + + Phylogenetic tree report (tree stratigraphic) + true + + + + + + + + + beta12orEarlier + Independent contrasts for characters used in a phylogenetic tree, or covariances, regressions and correlations between characters for those contrasts. + Phylogenetic report (character contrasts) + + + Phylogenetic character contrasts + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of integer numbers for sequence comparison. + + Comparison matrix (integers) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of floating point numbers for sequence comparison. + + Comparison matrix (floats) + true + + + + + + + + + beta12orEarlier + Matrix of integer or floating point numbers for nucleotide comparison. + Nucleotide comparison matrix + Nucleotide substitution matrix + + + Comparison matrix (nucleotide) + + + + + + + + + + beta12orEarlier + Matrix of integer or floating point numbers for amino acid comparison. + Amino acid comparison matrix + Amino acid substitution matrix + + + Comparison matrix (amino acid) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of integer numbers for nucleotide comparison. + + Nucleotide comparison matrix (integers) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of floating point numbers for nucleotide comparison. + + Nucleotide comparison matrix (floats) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of integer numbers for amino acid comparison. + + Amino acid comparison matrix (integers) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of floating point numbers for amino acid comparison. + + Amino acid comparison matrix (floats) + true + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a nucleic acid tertiary (3D) structure. + + + Nucleic acid structure + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a protein tertiary (3D) structure, or part of a structure, possibly in complex with other molecules. + Protein structures + + + Protein structure + + + + + + + + + beta12orEarlier + The structure of a protein in complex with a ligand, typically a small molecule such as an enzyme substrate or cofactor, but possibly another macromolecule. + + + This includes interactions of proteins with atoms, ions and small molecules or macromolecules such as nucleic acids or other polypeptides. For stable inter-polypeptide interactions use 'Protein complex' instead. + Protein-ligand complex + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a carbohydrate (3D) structure. + + + Carbohydrate structure + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the (3D) structure of a small molecule, such as any common chemical compound. + CHEBI:23367 + + + Small molecule structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a DNA tertiary (3D) structure. + + + DNA structure + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for an RNA tertiary (3D) structure. + + + RNA structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a tRNA tertiary (3D) structure, including tmRNA, snoRNAs etc. + + + tRNA structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the tertiary (3D) structure of a polypeptide chain. + + + Protein chain + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the tertiary (3D) structure of a protein domain. + + + Protein domain + + + + + + + + + beta12orEarlier + 1.5 + + + 3D coordinate and associated data for a protein tertiary (3D) structure (all atoms). + + Protein structure (all atoms) + true + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a protein tertiary (3D) structure (typically C-alpha atoms only). + Protein structure (C-alpha atoms) + + + C-beta atoms from amino acid side-chains may be included. + C-alpha trace + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (all atoms). + + Protein chain (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (typically C-alpha atoms only). + + C-beta atoms from amino acid side-chains may be included. + Protein chain (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a protein domain tertiary (3D) structure (all atoms). + + Protein domain (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a protein domain tertiary (3D) structure (typically C-alpha atoms only). + + C-beta atoms from amino acid side-chains may be included. + Protein domain (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + Alignment (superimposition) of exactly two molecular tertiary (3D) structures. + Pair structure alignment + + + Structure alignment (pair) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of more than two molecular tertiary (3D) structures. + + Structure alignment (multiple) + true + + + + + + + + + beta12orEarlier + Alignment (superimposition) of protein tertiary (3D) structures. + Structure alignment (protein) + + + Protein structure alignment + + + + + + + + + beta12orEarlier + Alignment (superimposition) of nucleic acid tertiary (3D) structures. + Structure alignment (nucleic acid) + + + Nucleic acid structure alignment + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures. + + Structure alignment (protein pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of more than two protein tertiary (3D) structures. + + Multiple protein tertiary structure alignment + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment (superimposition) of protein tertiary (3D) structures (all atoms considered). + + Structure alignment (protein all atoms) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment (superimposition) of protein tertiary (3D) structures (typically C-alpha atoms only considered). + + C-beta atoms from amino acid side-chains may be considered. + Structure alignment (protein C-alpha atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered). + + Pairwise protein tertiary structure alignment (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered). + + C-beta atoms from amino acid side-chains may be included. + Pairwise protein tertiary structure alignment (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered). + + Multiple protein tertiary structure alignment (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered). + + C-beta atoms from amino acid side-chains may be included. + Multiple protein tertiary structure alignment (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment (superimposition) of exactly two nucleic acid tertiary (3D) structures. + + Structure alignment (nucleic acid pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of more than two nucleic acid tertiary (3D) structures. + + Multiple nucleic acid tertiary structure alignment + true + + + + + + + + + beta12orEarlier + Alignment (superimposition) of RNA tertiary (3D) structures. + Structure alignment (RNA) + + + RNA structure alignment + + + + + + + + + beta12orEarlier + Matrix to transform (rotate/translate) 3D coordinates, typically the transformation necessary to superimpose two molecular structures. + + + Structural transformation matrix + + + + + + + + + beta12orEarlier + beta12orEarlier + + + DaliLite hit table of protein chain tertiary structure alignment data. + + The significant and top-scoring hits for regions of the compared structures is shown. Data such as Z-Scores, number of aligned residues, root-mean-square deviation (RMSD) of atoms and sequence identity are given. + DaliLite hit table + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A score reflecting structural similarities of two molecules. + + Molecular similarity score + true + + + + + + + + + beta12orEarlier + Root-mean-square deviation (RMSD) is calculated to measure the average distance between superimposed macromolecular coordinates. + RMSD + + + Root-mean-square deviation + + + + + + + + + beta12orEarlier + A measure of the similarity between two ligand fingerprints. + + + A ligand fingerprint is derived from ligand structural data from a Protein DataBank file. It reflects the elements or groups present or absent, covalent bonds and bond orders and the bonded environment in terms of SATIS codes and BLEEP atom types. + Tanimoto similarity score + + + + + + + + + beta12orEarlier + A matrix of 3D-1D scores reflecting the probability of amino acids to occur in different tertiary structural environments. + + + 3D-1D scoring matrix + + + + + + + + + + beta12orEarlier + A table of 20 numerical values which quantify a property (e.g. physicochemical or biochemical) of the common amino acids. + + + Amino acid index + + + + + + + + + beta12orEarlier + Chemical classification (small, aliphatic, aromatic, polar, charged etc) of amino acids. + Chemical classes (amino acids) + + + Amino acid index (chemical classes) + + + + + + + + + beta12orEarlier + Statistical protein contact potentials. + Contact potentials (amino acid pair-wise) + + + Amino acid pair-wise contact potentials + + + + + + + + + beta12orEarlier + Molecular weights of amino acids. + Molecular weight (amino acids) + + + Amino acid index (molecular weight) + + + + + + + + + beta12orEarlier + Hydrophobic, hydrophilic or charge properties of amino acids. + Hydropathy (amino acids) + + + Amino acid index (hydropathy) + + + + + + + + + beta12orEarlier + Experimental free energy values for the water-interface and water-octanol transitions for the amino acids. + White-Wimley data (amino acids) + + + Amino acid index (White-Wimley data) + + + + + + + + + beta12orEarlier + Van der Waals radii of atoms for different amino acid residues. + van der Waals radii (amino acids) + + + Amino acid index (van der Waals radii) + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on a specific enzyme. + + Enzyme report + true + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on a specific restriction enzyme such as enzyme reference data. + + This might include name of enzyme, organism, isoschizomers, methylation, source, suppliers, literature references, or data on restriction enzyme patterns such as name of enzyme, recognition site, length of pattern, number of cuts made by enzyme, details of blunt or sticky end cut etc. + Restriction enzyme report + true + + + + + + + + + beta12orEarlier + List of molecular weight(s) of one or more proteins or peptides, for example cut by proteolytic enzymes or reagents. + + + The report might include associated data such as frequency of peptide fragment molecular weights. + Peptide molecular weights + + + + + + + + + beta12orEarlier + Report on the hydrophobic moment of a polypeptide sequence. + + + Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation. + Peptide hydrophobic moment + + + + + + + + + beta12orEarlier + The aliphatic index of a protein. + + + The aliphatic index is the relative protein volume occupied by aliphatic side chains. + Protein aliphatic index + + + + + + + + + beta12orEarlier + A protein sequence with annotation on hydrophobic or hydrophilic / charged regions, hydrophobicity plot etc. + + + Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation. + Protein sequence hydropathy plot + + + + + + + + + beta12orEarlier + A plot of the mean charge of the amino acids within a window of specified length as the window is moved along a protein sequence. + + + Protein charge plot + + + + + + + + + beta12orEarlier + The solubility or atomic solvation energy of a protein sequence or structure. + Protein solubility data + + + Protein solubility + + + + + + + + + beta12orEarlier + Data on the crystallizability of a protein sequence. + Protein crystallizability data + + + Protein crystallizability + + + + + + + + + beta12orEarlier + Data on the stability, intrinsic disorder or globularity of a protein sequence. + Protein globularity data + + + Protein globularity + + + + + + + + + + beta12orEarlier + The titration curve of a protein. + + + Protein titration curve + + + + + + + + + beta12orEarlier + The isoelectric point of one proteins. + + + Protein isoelectric point + + + + + + + + + beta12orEarlier + The pKa value of a protein. + + + Protein pKa value + + + + + + + + + beta12orEarlier + The hydrogen exchange rate of a protein. + + + Protein hydrogen exchange rate + + + + + + + + + beta12orEarlier + The extinction coefficient of a protein. + + + Protein extinction coefficient + + + + + + + + + beta12orEarlier + The optical density of a protein. + + + Protein optical density + + + + + + + + + beta12orEarlier + beta13 + + + An informative report on protein subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or destination (exported / extracellular proteins). + + Protein subcellular localisation + true + + + + + + + + + beta12orEarlier + An report on allergenicity / immunogenicity of peptides and proteins. + Peptide immunogenicity + Peptide immunogenicity report + + + This includes data on peptide ligands that elicit an immune response (immunogens), allergic cross-reactivity, predicted antigenicity (Hopp and Woods plot) etc. These data are useful in the development of peptide-specific antibodies or multi-epitope vaccines. Methods might use sequence data (for example motifs) and / or structural data. + Peptide immunogenicity data + + + + + + + + + beta12orEarlier + beta13 + + + A report on the immunogenicity of MHC class I or class II binding peptides. + + MHC peptide immunogenicity report + true + + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific protein 3D structure(s) or structural domains. + Protein property (structural) + Protein report (structure) + Protein structural property + Protein structure report (domain) + Protein structure-derived report + + + Protein structure report + + + + + + + + + beta12orEarlier + Report on the quality of a protein three-dimensional model. + Protein property (structural quality) + Protein report (structural quality) + Protein structure report (quality evaluation) + Protein structure validation report + + + Model validation might involve checks for atomic packing, steric clashes, agreement with electron density maps etc. + Protein structural quality report + + + + + + + + + beta12orEarlier + 1.12 + + Data on inter-atomic or inter-residue contacts, distances and interactions in protein structure(s) or on the interactions of protein atoms or residues with non-protein groups. + + + Protein non-covalent interactions report + true + + + + + + + + + beta12orEarlier + 1.4 + + + Informative report on flexibility or motion of a protein structure. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein flexibility or motion report + true + + + + + + + + + beta12orEarlier + Data on the solvent accessible or buried surface area of a protein structure. + + + This concept covers definitions of the protein surface, interior and interfaces, accessible and buried residues, surface accessible pockets, interior inaccessible cavities etc. + Protein solvent accessibility + + + + + + + + + beta12orEarlier + 1.4 + + + Data on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein surface report + true + + + + + + + + + beta12orEarlier + Phi/psi angle data or a Ramachandran plot of a protein structure. + + + Ramachandran plot + + + + + + + + + beta12orEarlier + Data on the net charge distribution (dipole moment) of a protein structure. + + + Protein dipole moment + + + + + + + + + + beta12orEarlier + A matrix of distances between amino acid residues (for example the C-alpha atoms) in a protein structure. + + + Protein distance matrix + + + + + + + + + beta12orEarlier + An amino acid residue contact map for a protein structure. + + + Protein contact map + + + + + + + + + beta12orEarlier + Report on clusters of contacting residues in protein structures such as a key structural residue network. + + + Protein residue 3D cluster + + + + + + + + + beta12orEarlier + Patterns of hydrogen bonding in protein structures. + + + Protein hydrogen bonds + + + + + + + + + beta12orEarlier + 1.4 + + + Non-canonical atomic interactions in protein structures. + + Protein non-canonical interactions + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a node from the CATH database. + + The report (for example http://www.cathdb.info/cathnode/1.10.10.10) includes CATH code (of the node and upper levels in the hierarchy), classification text (of appropriate levels in hierarchy), list of child nodes, representative domain and other relevant data and links. + CATH node + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a node from the SCOP database. + + SCOP node + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + An EMBASSY domain classification file (DCF) of classification and other data for domains from SCOP or CATH, in EMBL-like format. + + + EMBASSY domain classification + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'class' node from the CATH database. + + CATH class + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'architecture' node from the CATH database. + + CATH architecture + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'topology' node from the CATH database. + + CATH topology + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'homologous superfamily' node from the CATH database. + + CATH homologous superfamily + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'structurally similar group' node from the CATH database. + + CATH structurally similar group + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'functional category' node from the CATH database. + + CATH functional category + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on known protein structural domains or folds that are recognised (identified) in protein sequence(s). + + Methods use some type of mapping between sequence and fold, for example secondary structure prediction and alignment, profile comparison, sequence properties, homologous sequence search, kernel machines etc. Domains and folds might be taken from SCOP or CATH. + Protein fold recognition report + true + + + + + + + + + beta12orEarlier + 1.8 + + protein-protein interaction(s), including interactions between protein domains. + + + Protein-protein interaction report + true + + + + + + + + + beta12orEarlier + An informative report on protein-ligand (small molecule) interaction(s). + Protein-drug interaction report + + + Protein-ligand interaction report + + + + + + + + + beta12orEarlier + 1.8 + + protein-DNA/RNA interaction(s). + + + Protein-nucleic acid interactions report + true + + + + + + + + + beta12orEarlier + Data on the dissociation characteristics of a double-stranded nucleic acid molecule (DNA or a DNA/RNA hybrid) during heating. + Nucleic acid stability profile + Melting map + Nucleic acid melting curve + + + A melting (stability) profile calculated the free energy required to unwind and separate the nucleic acid strands, plotted for sliding windows over a sequence. + Nucleic acid melting curve: a melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Shows the proportion of nucleic acid which are double-stranded versus temperature. + Nucleic acid probability profile: a probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Shows the probability of a base pair not being melted (i.e. remaining as double-stranded DNA) at a specified temperature + Nucleic acid stitch profile: stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA). A stitch profile diagram shows partly melted DNA conformations (with probabilities) at a range of temperatures. For example, a stitch profile might show possible loop openings with their location, size, probability and fluctuations at a given temperature. + Nucleic acid temperature profile: a temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Plots melting temperature versus base position. + Nucleic acid melting profile + + + + + + + + + beta12orEarlier + Enthalpy of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + + Nucleic acid enthalpy + + + + + + + + + beta12orEarlier + Entropy of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + + Nucleic acid entropy + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Melting temperature of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + Nucleic acid melting temperature + true + + + + + + + + + beta12orEarlier + 1.21 + + Stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + + Nucleic acid stitch profile + true + + + + + + + + + beta12orEarlier + DNA base pair stacking energies data. + + + DNA base pair stacking energies data + + + + + + + + + beta12orEarlier + DNA base pair twist angle data. + + + DNA base pair twist angle data + + + + + + + + + beta12orEarlier + DNA base trimer roll angles data. + + + DNA base trimer roll angles data + + + + + + + + + beta12orEarlier + beta12orEarlier + + + RNA parameters used by the Vienna package. + + Vienna RNA parameters + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Structure constraints used by the Vienna package. + + Vienna RNA structure constraints + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + RNA concentration data used by the Vienna package. + + Vienna RNA concentration data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + RNA calculated energy data generated by the Vienna package. + + Vienna RNA calculated energy + true + + + + + + + + + + beta12orEarlier + Dotplot of RNA base pairing probability matrix. + + + Such as generated by the Vienna package. + Base pairing probability matrix dotplot + + + + + + + + + beta12orEarlier + A human-readable collection of information about RNA/DNA folding, minimum folding energies for DNA or RNA sequences, energy landscape of RNA mutants etc. + Nucleic acid report (folding model) + Nucleic acid report (folding) + RNA secondary structure folding classification + RNA secondary structure folding probabilities + + + Nucleic acid folding report + + + + + + + + + + + + + + + beta12orEarlier + Table of codon usage data calculated from one or more nucleic acid sequences. + + + A codon usage table might include the codon usage table name, optional comments and a table with columns for codons and corresponding codon usage data. A genetic code can be extracted from or represented by a codon usage table. + Codon usage table + + + + + + + + + beta12orEarlier + A genetic code for an organism. + + + A genetic code need not include detailed codon usage information. + Genetic code + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple measure of synonymous codon usage bias often used to predict gene expression levels. + + Codon adaptation index + true + + + + + + + + + beta12orEarlier + A plot of the synonymous codon usage calculated for windows over a nucleotide sequence. + Synonymous codon usage statistic plot + + + Codon usage bias plot + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The effective number of codons used in a gene sequence. This reflects how far codon usage of a gene departs from equal usage of synonymous codons. + + Nc statistic + true + + + + + + + + + beta12orEarlier + The differences in codon usage fractions between two codon usage tables. + + + Codon usage fraction difference + + + + + + + + + beta12orEarlier + A human-readable collection of information about the influence of genotype on drug response. + + + The report might correlate gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity. + Pharmacogenomic test report + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific disease. + + + For example, an informative report on a specific tumor including nature and origin of the sample, anatomic site, organ or tissue, tumor type, including morphology and/or histologic type, and so on. + Disease report + + + + + + + + + beta12orEarlier + 1.8 + + A report on linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome). + + + Linkage disequilibrium (report) + true + + + + + + + + + + beta12orEarlier + A graphical 2D tabular representation of expression data, typically derived from an omics experiment. A heat map is a table where rows and columns correspond to different features and contexts (for example, cells or samples) and the cell colour represents the level of expression of a gene that context. + + + Heat map + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Affymetrix library file of information about which probes belong to which probe set. + + Affymetrix probe sets library file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Affymetrix library file of information about the probe sets such as the gene name with which the probe set is associated. + GIN file + + Affymetrix probe sets information library file + true + + + + + + + + + beta12orEarlier + 1.12 + + Standard protonated molecular masses from trypsin (modified porcine trypsin, Promega) and keratin peptides, used in EMBOSS. + + + Molecular weights standard fingerprint + true + + + + + + + + + beta12orEarlier + 1.8 + + A report typically including a map (diagram) of a metabolic pathway. + + + This includes carbohydrate, energy, lipid, nucleotide, amino acid, glycan, PK/NRP, cofactor/vitamin, secondary metabolite, xenobiotics etc. + Metabolic pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + genetic information processing pathways. + + + Genetic information processing pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + environmental information processing pathways. + + + Environmental information processing pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + A report typically including a map (diagram) of a signal transduction pathway. + + + Signal transduction pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + Topic concernning cellular process pathways. + + + Cellular process pathways report + true + + + + + + + + + beta12orEarlier + 1.8 + + disease pathways, typically of human disease. + + + Disease pathway or network report + true + + + + + + + + + beta12orEarlier + 1.21 + + A report typically including a map (diagram) of drug structure relationships. + + + Drug structure relationship map + true + + + + + + + + + beta12orEarlier + 1.8 + + + networks of protein interactions. + + Protein interaction networks + true + + + + + + + + + beta12orEarlier + 1.5 + + + An entry (data type) from the Minimal Information Requested in the Annotation of Biochemical Models (MIRIAM) database of data resources. + + A MIRIAM entry describes a MIRIAM data type including the official name, synonyms, root URI, identifier pattern (regular expression applied to a unique identifier of the data type) and documentation. Each data type can be associated with several resources. Each resource is a physical location of a service (typically a database) providing information on the elements of a data type. Several resources may exist for each data type, provided the same (mirrors) or different information. MIRIAM provides a stable and persistent reference to its data types. + MIRIAM datatype + true + + + + + + + + + beta12orEarlier + A simple floating point number defining the lower or upper limit of an expectation value (E-value). + Expectation value + + + An expectation value (E-Value) is the expected number of observations which are at least as extreme as observations expected to occur by random chance. The E-value describes the number of hits with a given score or better that are expected to occur at random when searching a database of a particular size. It decreases exponentially with the score (S) of a hit. A low E value indicates a more significant score. + E-value + + + + + + + + + beta12orEarlier + The z-value is the number of standard deviations a data value is above or below a mean value. + + + A z-value might be specified as a threshold for reporting hits from database searches. + Z-value + + + + + + + + + beta12orEarlier + The P-value is the probability of obtaining by random chance a result that is at least as extreme as an observed result, assuming a NULL hypothesis is true. + + + A z-value might be specified as a threshold for reporting hits from database searches. + P-value + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a database (or ontology) version, for example name, version number and release date. + + Database version information + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on an application version, for example name, version number and release date. + + Tool version information + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Information on a version of the CATH database. + + CATH version information + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Cross-mapping of Swiss-Prot codes to PDB identifiers. + + Swiss-Prot to PDB mapping + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Cross-references from a sequence record to other databases. + + Sequence database cross-references + true + + + + + + + + + beta12orEarlier + 1.5 + + + Metadata on the status of a submitted job. + + Values for EBI services are 'DONE' (job has finished and the results can then be retrieved), 'ERROR' (the job failed or no results where found), 'NOT_FOUND' (the job id is no longer available; job results might be deleted, 'PENDING' (the job is in a queue waiting processing), 'RUNNING' (the job is currently being processed). + Job status + true + + + + + + + + + beta12orEarlier + 1.0 + + + The (typically numeric) unique identifier of a submitted job. + + Job ID + true + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of job, for example interactive or non-interactive. + + Job type + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report of tool-specific metadata on some analysis or process performed, for example a log of diagnostic or error messages. + + Tool log + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + DaliLite log file describing all the steps taken by a DaliLite alignment of two protein structures. + + DaliLite log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + STRIDE log file. + + STRIDE log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + NACCESS log file. + + NACCESS log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS wordfinder log file. + + EMBOSS wordfinder log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS (EMBASSY) domainatrix application log file. + + EMBOSS domainatrix log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS (EMBASSY) sites application log file. + + EMBOSS sites log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS (EMBASSY) supermatcher error file. + + EMBOSS supermatcher error file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS megamerger log file. + + EMBOSS megamerger log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS megamerger log file. + + EMBOSS whichdb log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS vectorstrip log file. + + EMBOSS vectorstrip log file + true + + + + + + + + + beta12orEarlier + A username on a computer system or a website. + + + + Username + + + + + + + + + beta12orEarlier + A password on a computer system, or a website. + + + + Password + + + + + + + + + beta12orEarlier + Moby:Email + Moby:EmailAddress + A valid email address of an end-user. + + + + Email address + + + + + + + + + beta12orEarlier + The name of a person. + + + + Person name + + + + + + + + + beta12orEarlier + 1.5 + + + Number of iterations of an algorithm. + + Number of iterations + true + + + + + + + + + beta12orEarlier + 1.5 + + + Number of entities (for example database hits, sequences, alignments etc) to write to an output file. + + Number of output entities + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controls the order of hits (reported matches) in an output file from a database search. + + Hit sort order + true + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific drug. + Drug annotation + Drug structure relationship map + + + A drug structure relationship map is report (typically a map diagram) of drug structure relationships. + Drug report + + + + + + + + + beta12orEarlier + An image (for viewing or printing) of a phylogenetic tree including (typically) a plot of rooted or unrooted phylogenies, cladograms, circular trees or phenograms and associated information. + + + See also 'Phylogenetic tree' + Phylogenetic tree image + + + + + + + + + beta12orEarlier + Image of RNA secondary structure, knots, pseudoknots etc. + + + RNA secondary structure image + + + + + + + + + beta12orEarlier + Image of protein secondary structure. + + + Protein secondary structure image + + + + + + + + + beta12orEarlier + Image of one or more molecular tertiary (3D) structures. + + + Structure image + + + + + + + + + beta12orEarlier + Image of two or more aligned molecular sequences possibly annotated with alignment features. + + + Sequence alignment image + + + + + + + + + beta12orEarlier + An image of the structure of a small chemical compound. + Small molecule structure image + Chemical structure sketch + Small molecule sketch + + + The molecular identifier and formula are typically included. + Chemical structure image + + + + + + + + + + + + + + + beta12orEarlier + A fate map is a plan of early stage of an embryo such as a blastula, showing areas that are significance to development. + + + Fate map + + + + + + + + + + beta12orEarlier + An image of spots from a microarray experiment. + + + Microarray spots image + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the BioPax ontology. + + BioPax term + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition from The Gene Ontology (GO). + + GO + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the MeSH vocabulary. + + MeSH + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the HGNC controlled vocabulary. + + HGNC + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the NCBI taxonomy vocabulary. + + NCBI taxonomy vocabulary + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the Plant Ontology (PO). + + Plant ontology term + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the UMLS vocabulary. + + UMLS + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from Foundational Model of Anatomy. + + Classifies anatomical entities according to their shared characteristics (genus) and distinguishing characteristics (differentia). Specifies the part-whole and spatial relationships of the entities, morphological transformation of the entities during prenatal development and the postnatal life cycle and principles, rules and definitions according to which classes and relationships in the other three components of FMA are represented. + FMA + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the EMAP mouse ontology. + + EMAP + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the ChEBI ontology. + + ChEBI + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the MGED ontology. + + MGED + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the myGrid ontology. + + The ontology is provided as two components, the service ontology and the domain ontology. The domain ontology acts provides concepts for core bioinformatics data types and their relations. The service ontology describes the physical and operational features of web services. + myGrid + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition for a biological process from the Gene Ontology (GO). + + Data Type is an enumerated string. + GO (biological process) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition for a molecular function from the Gene Ontology (GO). + + Data Type is an enumerated string. + GO (molecular function) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition for a cellular component from the Gene Ontology (GO). + + Data Type is an enumerated string. + GO (cellular component) + true + + + + + + + + + beta12orEarlier + 1.5 + + + A relation type defined in an ontology. + + Ontology relation type + true + + + + + + + + + beta12orEarlier + The definition of a concept from an ontology. + Ontology class definition + + + Ontology concept definition + + + + + + + + + beta12orEarlier + 1.4 + + + A comment on a concept from an ontology. + + Ontology concept comment + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Reference for a concept from an ontology. + + Ontology concept reference + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Information on a published article provided by the doc2loc program. + + The doc2loc output includes the url, format, type and availability code of a document for every service provider. + doc2loc document information + true + + + + + + + + + beta12orEarlier + PDBML:PDB_residue_no + WHATIF: pdb_number + A residue identifier (a string) from a PDB file. + + + PDB residue number + + + + + + + + + beta12orEarlier + Cartesian coordinate of an atom (in a molecular structure). + Cartesian coordinate + + + Atomic coordinate + + + + + + + + + beta12orEarlier + 1.21 + + Cartesian x coordinate of an atom (in a molecular structure). + + + Atomic x coordinate + true + + + + + + + + + beta12orEarlier + 1.21 + + Cartesian y coordinate of an atom (in a molecular structure). + + + Atomic y coordinate + true + + + + + + + + + beta12orEarlier + 1.21 + + Cartesian z coordinate of an atom (in a molecular structure). + + + Atomic z coordinate + true + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_atom_name + WHATIF: PDBx_auth_atom_id + WHATIF: PDBx_type_symbol + WHATIF: alternate_atom + WHATIF: atom_type + Identifier (a string) of a specific atom from a PDB file for a molecular structure. + + + + PDB atom name + + + + + + + + + beta12orEarlier + Data on a single atom from a protein structure. + Atom data + CHEBI:33250 + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein atom + + + + + + + + + beta12orEarlier + Data on a single amino acid residue position in a protein structure. + Residue + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein residue + + + + + + + + + + beta12orEarlier + Name of an atom. + + + + Atom name + + + + + + + + + beta12orEarlier + WHATIF: type + Three-letter amino acid residue names as used in PDB files. + + + + PDB residue name + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_model_num + WHATIF: model_number + Identifier of a model structure from a PDB file. + Model number + + + + PDB model number + + + + + + + + + beta12orEarlier + beta13 + + + Summary of domain classification information for a CATH domain. + + The report (for example http://www.cathdb.info/domain/1cukA01) includes CATH codes for levels in the hierarchy for the domain, level descriptions and relevant data and links. + CATH domain report + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database (based on ATOM records in PDB) for CATH domains (clustered at different levels of sequence identity). + + CATH representative domain sequences (ATOM) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database (based on COMBS sequence data) for CATH domains (clustered at different levels of sequence identity). + + CATH representative domain sequences (COMBS) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database for all CATH domains (based on PDB ATOM records). + + CATH domain sequences (ATOM) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database for all CATH domains (based on COMBS sequence data). + + CATH domain sequences (COMBS) + true + + + + + + + + + beta12orEarlier + Information on an molecular sequence version. + Sequence version information + + + Sequence version + + + + + + + + + beta12orEarlier + A numerical value, that is some type of scored value arising for example from a prediction method. + + + Score + + + + + + + + + beta12orEarlier + beta13 + + + Report on general functional properties of specific protein(s). + + For properties that can be mapped to a sequence, use 'Sequence report' instead. + Protein report (function) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Aspergillus Genome Database. + + Gene name (ASPGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Candida Genome Database. + + Gene name (CGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from dictyBase database. + + Gene name (dictyBase) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Primary name of a gene from EcoGene Database. + + Gene name (EcoGene primary) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from MaizeGDB (maize genes) database. + + Gene name (MaizeGDB) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Saccharomyces Genome Database. + + Gene name (SGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Tetrahymena Genome Database. + + Gene name (TGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene from E.coli Genetic Stock Center. + + Gene name (CGSC) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene approved by the HUGO Gene Nomenclature Committee. + + Gene name (HGNC) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene from the Mouse Genome Database. + + Gene name (MGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene from Bacillus subtilis Genome Sequence Project. + + Gene name (Bacillus subtilis) + true + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: ApiDB_PlasmoDB + Identifier of a gene from PlasmoDB Plasmodium Genome Resource. + + + + Gene ID (PlasmoDB) + + + + + + + + + + beta12orEarlier + Identifier of a gene from EcoGene Database. + EcoGene Accession + EcoGene ID + + + + Gene ID (EcoGene) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: FB + http://www.geneontology.org/doc/GO.xrf_abbs: FlyBase + Gene identifier from FlyBase database. + + + + Gene ID (FlyBase) + + + + + + + + + beta12orEarlier + beta13 + + + Gene identifier from Glossina morsitans GeneDB database. + + Gene ID (GeneDB Glossina morsitans) + true + + + + + + + + + beta12orEarlier + beta13 + + + Gene identifier from Leishmania major GeneDB database. + + Gene ID (GeneDB Leishmania major) + true + + + + + + + + + beta12orEarlier + beta13 + + + http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Pfalciparum + Gene identifier from Plasmodium falciparum GeneDB database. + + Gene ID (GeneDB Plasmodium falciparum) + true + + + + + + + + + beta12orEarlier + beta13 + + + http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Spombe + Gene identifier from Schizosaccharomyces pombe GeneDB database. + + Gene ID (GeneDB Schizosaccharomyces pombe) + true + + + + + + + + + beta12orEarlier + beta13 + + + http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Tbrucei + Gene identifier from Trypanosoma brucei GeneDB database. + + Gene ID (GeneDB Trypanosoma brucei) + true + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: GR_GENE + http://www.geneontology.org/doc/GO.xrf_abbs: GR_gene + Gene identifier from Gramene database. + + + + Gene ID (Gramene) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: PAMGO_VMD + http://www.geneontology.org/doc/GO.xrf_abbs: VMD + Gene identifier from Virginia Bioinformatics Institute microbial database. + + + + Gene ID (Virginia microbial) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: SGN + Gene identifier from Sol Genomics Network. + + + + Gene ID (SGN) + + + + + + + + + + + beta12orEarlier + WBGene[0-9]{8} + http://www.geneontology.org/doc/GO.xrf_abbs: WB + http://www.geneontology.org/doc/GO.xrf_abbs: WormBase + Gene identifier used by WormBase database. + + + + Gene ID (WormBase) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Any name (other than the recommended one) for a gene. + + Gene synonym + true + + + + + + + + + + beta12orEarlier + The name of an open reading frame attributed by a sequencing project. + + + + ORF name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A component of a larger sequence assembly. + + Sequence assembly component + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on a chromosome aberration such as abnormalities in chromosome structure. + + Chromosome annotation (aberration) + true + + + + + + + + + beta12orEarlier + true + An identifier of a clone (cloned molecular sequence) from a database. + + + + Clone ID + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_ins_code + WHATIF: insertion_code + An insertion code (part of the residue number) for an amino acid residue from a PDB file. + + + PDB insertion code + + + + + + + + + beta12orEarlier + WHATIF: PDBx_occupancy + The fraction of an atom type present at a site in a molecular structure. + + + The sum of the occupancies of all the atom types at a site should not normally significantly exceed 1.0. + Atomic occupancy + + + + + + + + + beta12orEarlier + WHATIF: PDBx_B_iso_or_equiv + Isotropic B factor (atomic displacement parameter) for an atom from a PDB file. + + + Isotropic B factor + + + + + + + + + beta12orEarlier + A cytogenetic map showing chromosome banding patterns in mutant cell lines relative to the wild type. + Deletion-based cytogenetic map + + + A cytogenetic map is built from a set of mutant cell lines with sub-chromosomal deletions and a reference wild-type line ('genome deletion panel'). The panel is used to map markers onto the genome by comparing mutant to wild-type banding patterns. Markers are linked (occur in the same deleted region) if they share the same banding pattern (presence or absence) as the deletion panel. + Deletion map + + + + + + + + + beta12orEarlier + A genetic map which shows the approximate location of quantitative trait loci (QTL) between two or more markers. + Quantitative trait locus map + + + QTL map + + + + + + + + + beta12orEarlier + Moby:Haplotyping_Study_obj + A map of haplotypes in a genome or other sequence, describing common patterns of genetic variation. + + + Haplotype map + + + + + + + + + beta12orEarlier + 1.21 + + Data describing a set of multiple genetic or physical maps, typically sharing a common set of features which are mapped. + + + Map set data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + + A feature which may mapped (positioned) on a genetic or other type of map. + + Mappable features may be based on Gramene's notion of map features; see http://www.gramene.org/db/cmap/feature_type_info. + Map feature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A designation of the type of map (genetic map, physical map, sequence map etc) or map set. + + Map types may be based on Gramene's notion of a map type; see http://www.gramene.org/db/cmap/map_type_info. + Map type + true + + + + + + + + + beta12orEarlier + The name of a protein fold. + + + + Protein fold name + + + + + + + + + beta12orEarlier + Moby:BriefTaxonConcept + Moby:PotentialTaxon + The name of a group of organisms belonging to the same taxonomic rank. + Taxonomic rank + Taxonomy rank + + + + For a complete list of taxonomic ranks see https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary. + Taxon + + + + + + + + + + + + + + + beta12orEarlier + true + A unique identifier of a (group of) organisms. + + + + Organism identifier + + + + + + + + + beta12orEarlier + The name of a genus of organism. + + + + Genus name + + + + + + + + + beta12orEarlier + Moby:GCP_Taxon + Moby:TaxonName + Moby:TaxonScientificName + Moby:TaxonTCS + Moby:iANT_organism-xml + The full name for a group of organisms, reflecting their biological classification and (usually) conforming to a standard nomenclature. + Taxonomic information + Taxonomic name + + + + Name components correspond to levels in a taxonomic hierarchy (e.g. 'Genus', 'Species', etc.) Meta information such as a reference where the name was defined and a date might be included. + Taxonomic classification + + + + + + + + + + beta12orEarlier + Moby_namespace:iHOPorganism + A unique identifier for an organism used in the iHOP database. + + + + iHOP organism ID + + + + + + + + + beta12orEarlier + Common name for an organism as used in the GenBank database. + + + + Genbank common name + + + + + + + + + beta12orEarlier + The name of a taxon from the NCBI taxonomy database. + + + + NCBI taxon + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An alternative for a word. + + Synonym + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A common misspelling of a word. + + Misspelling + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An abbreviation of a phrase or word. + + Acronym + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term which is likely to be misleading of its meaning. + + Misnomer + true + + + + + + + + + beta12orEarlier + Moby:Author + Information on the authors of a published work. + + + + Author ID + + + + + + + + + beta12orEarlier + An identifier representing an author in the DragonDB database. + + + + DragonDB author identifier + + + + + + + + + beta12orEarlier + Moby:DescribedLink + A URI along with annotation describing the data found at the address. + + + Annotated URI + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A controlled vocabulary for words and phrases that can appear in the keywords field (KW line) of entries from the UniProt database. + + UniProt keywords + true + + + + + + + + + + beta12orEarlier + Moby_namespace:GENEFARM_GeneID + Identifier of a gene from the GeneFarm database. + + + + Gene ID (GeneFarm) + + + + + + + + + + beta12orEarlier + Moby_namespace:Blattner_number + The blattner identifier for a gene. + + + + Blattner number + + + + + + + + + beta12orEarlier + beta13 + + + Moby_namespace:MIPS_GE_Maize + Identifier for genetic elements in MIPS Maize database. + + Gene ID (MIPS Maize) + true + + + + + + + + + beta12orEarlier + beta13 + + + Moby_namespace:MIPS_GE_Medicago + Identifier for genetic elements in MIPS Medicago database. + + Gene ID (MIPS Medicago) + true + + + + + + + + + beta12orEarlier + 1.3 + + + The name of an Antirrhinum Gene from the DragonDB database. + + Gene name (DragonDB) + true + + + + + + + + + beta12orEarlier + 1.3 + + + A unique identifier for an Arabidopsis gene, which is an acronym or abbreviation of the gene name. + + Gene name (Arabidopsis) + true + + + + + + + + + + + + beta12orEarlier + Moby_namespace:iHOPsymbol + A unique identifier of a protein or gene used in the iHOP database. + + + + iHOP symbol + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from the GeneFarm database. + + Gene name (GeneFarm) + true + + + + + + + + + + + + + + + beta12orEarlier + true + A unique name or other identifier of a genetic locus, typically conforming to a scheme that names loci (such as predicted genes) depending on their position in a molecular sequence, for example a completely sequenced genome or chromosome. + Locus identifier + Locus name + + + + Locus ID + + + + + + + + + + beta12orEarlier + AT[1-5]G[0-9]{5} + http://www.geneontology.org/doc/GO.xrf_abbs:AGI_LocusCode + Locus identifier for Arabidopsis Genome Initiative (TAIR, TIGR and MIPS databases). + AGI ID + AGI identifier + AGI locus code + Arabidopsis gene loci number + + + + Locus ID (AGI) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: ASPGD + http://www.geneontology.org/doc/GO.xrf_abbs: ASPGDID + Identifier for loci from ASPGD (Aspergillus Genome Database). + + + + Locus ID (ASPGD) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: Broad_MGG + Identifier for loci from Magnaporthe grisea Database at the Broad Institute. + + + + Locus ID (MGG) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: CGD + http://www.geneontology.org/doc/GO.xrf_abbs: CGDID + Identifier for loci from CGD (Candida Genome Database). + CGD locus identifier + CGDID + + + + Locus ID (CGD) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: JCVI_CMR + http://www.geneontology.org/doc/GO.xrf_abbs: TIGR_CMR + Locus identifier for Comprehensive Microbial Resource at the J. Craig Venter Institute. + + + + Locus ID (CMR) + + + + + + + + + + beta12orEarlier + Moby_namespace:LocusID + http://www.geneontology.org/doc/GO.xrf_abbs: NCBI_locus_tag + Identifier for loci from NCBI database. + Locus ID (NCBI) + + + + NCBI locus tag + + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: SGD + http://www.geneontology.org/doc/GO.xrf_abbs: SGDID + Identifier for loci from SGD (Saccharomyces Genome Database). + SGDID + + + + Locus ID (SGD) + + + + + + + + + + beta12orEarlier + Moby_namespace:MMP_Locus + Identifier of loci from Maize Mapping Project. + + + + Locus ID (MMP) + + + + + + + + + + beta12orEarlier + Moby_namespace:DDB_gene + Identifier of locus from DictyBase (Dictyostelium discoideum). + + + + Locus ID (DictyBase) + + + + + + + + + + beta12orEarlier + Moby_namespace:EntrezGene_EntrezGeneID + Moby_namespace:EntrezGene_ID + Identifier of a locus from EntrezGene database. + + + + Locus ID (EntrezGene) + + + + + + + + + + beta12orEarlier + Moby_namespace:MaizeGDB_Locus + Identifier of locus from MaizeGDB (Maize genome database). + + + + Locus ID (MaizeGDB) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Moby:SO_QTL + A stretch of DNA that is closely linked to the genes underlying a quantitative trait (a phenotype that varies in degree and depends upon the interactions between multiple genes and their environment). + + A QTL sometimes but does not necessarily correspond to a gene. + Quantitative trait locus + true + + + + + + + + + + beta12orEarlier + Moby_namespace:GeneId + Identifier of a gene from the KOME database. + + + + Gene ID (KOME) + + + + + + + + + + beta12orEarlier + Moby:Tropgene_locus + Identifier of a locus from the Tropgene database. + + + + Locus ID (Tropgene) + + + + + + + + + beta12orEarlier + true + An alignment of molecular sequences, structures or profiles derived from them. + + + Alignment + + + + + + + + + beta12orEarlier + Data for an atom (in a molecular structure). + General atomic property + + + Atomic property + + + + + + + + + beta12orEarlier + Moby_namespace:SP_KW + http://www.geneontology.org/doc/GO.xrf_abbs: SP_KW + A word or phrase that can appear in the keywords field (KW line) of entries from the UniProt database. + + + UniProt keyword + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A name for a genetic locus conforming to a scheme that names loci (such as predicted genes) depending on their position in a molecular sequence, for example a completely sequenced genome or chromosome. + + Ordered locus name + true + + + + + + + + + + + beta12orEarlier + Moby:GCP_MapInterval + Moby:GCP_MapPoint + Moby:GCP_MapPosition + Moby:GenePosition + Moby:HitPosition + Moby:Locus + Moby:MapPosition + Moby:Position + PDBML:_atom_site.id + A position in a map (for example a genetic map), either a single position (point) or a region / interval. + Locus + Map position + + + This includes positions in genomes based on a reference sequence. A position may be specified for any mappable object, i.e. anything that may have positional information such as a physical position in a chromosome. Data might include sequence region name, strand, coordinate system name, assembly name, start position and end position. + Sequence coordinates + + + + + + + + + beta12orEarlier + Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all amino acids. + Amino acid data + + + Amino acid property + + + + + + + + + beta12orEarlier + beta13 + + + A human-readable collection of information which (typically) is generated or collated by hand and which describes a biological entity, phenomena or associated primary (e.g. sequence or structural) data, as distinct from the primary data itself and computer-generated reports derived from it. + + This is a broad data type and is used a placeholder for other, more specific types. + Annotation + true + + + + + + + + + + + + + + + beta12orEarlier + Data describing a molecular map (genetic or physical) or a set of such maps, including various attributes of, data extracted from or derived from the analysis of them, but excluding the map(s) themselves. This includes metadata for map sets that share a common set of features which are mapped. + Map attribute + Map set data + + + Map data + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data used by the Vienna RNA analysis package. + + Vienna RNA structural data + true + + + + + + + + + beta12orEarlier + 1.5 + + + Data used to replace (mask) characters in a molecular sequence. + + Sequence mask parameter + true + + + + + + + + + + beta12orEarlier + Data concerning chemical reaction(s) catalysed by enzyme(s). + + + This is a broad data type and is used a placeholder for other, more specific types. + Enzyme kinetics data + + + + + + + + + beta12orEarlier + A plot giving an approximation of the kinetics of an enzyme-catalysed reaction, assuming simple kinetics (i.e. no intermediate or product inhibition, allostericity or cooperativity). It plots initial reaction rate to the substrate concentration (S) from which the maximum rate (vmax) is apparent. + + + Michaelis Menten plot + + + + + + + + + beta12orEarlier + A plot based on the Michaelis Menten equation of enzyme kinetics plotting the ratio of the initial substrate concentration (S) against the reaction velocity (v). + + + Hanes Woolf plot + + + + + + + + + beta12orEarlier + beta13 + + + + Raw data from or annotation on laboratory experiments. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Experimental data + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a genome version. + + Genome version information + true + + + + + + + + + beta12orEarlier + Typically a human-readable summary of body of facts or information indicating why a statement is true or valid. This may include a computational prediction, laboratory experiment, literature reference etc. + + + Evidence + + + + + + + + + beta12orEarlier + 1.8 + + A molecular sequence and minimal metadata, typically an identifier of the sequence and/or a comment. + + + Sequence record lite + true + + + + + + + + + + + + + + + beta12orEarlier + One or more molecular sequences, possibly with associated annotation. + Sequences + + + This concept is a placeholder of concepts for primary sequence data including raw sequences and sequence records. It should not normally be used for derivatives such as sequence alignments, motifs or profiles. + Sequence + http://purl.bioontology.org/ontology/MSH/D008969 + http://purl.org/biotop/biotop.owl#BioMolecularSequenceInformation + + + + + + + + + beta12orEarlier + 1.8 + + A nucleic acid sequence and minimal metadata, typically an identifier of the sequence and/or a comment. + + + Nucleic acid sequence record (lite) + true + + + + + + + + + beta12orEarlier + 1.8 + + A protein sequence and minimal metadata, typically an identifier of the sequence and/or a comment. + + + Protein sequence record (lite) + true + + + + + + + + + beta12orEarlier + A human-readable collection of information including annotation on a biological entity or phenomena, computer-generated reports of analysis of primary data (e.g. sequence or structural), and metadata (data about primary data) or any other free (essentially unformatted) text, as distinct from the primary data itself. + Document + Record + + + You can use this term by default for any textual report, in case you can't find another, more specific term. Reports may be generated automatically or collated by hand and can include metadata on the origin, source, history, ownership or location of some thing. + Report + http://semanticscience.org/resource/SIO_000148 + + + + + + + + + beta12orEarlier + General data for a molecule. + General molecular property + + + Molecular property (general) + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning molecular structural data. + + This is a broad data type and is used a placeholder for other, more specific types. + Structural data + true + + + + + + + + + beta12orEarlier + A nucleotide sequence motif. + Nucleic acid sequence motif + DNA sequence motif + RNA sequence motif + + + Sequence motif (nucleic acid) + + + + + + + + + beta12orEarlier + An amino acid sequence motif. + Protein sequence motif + + + Sequence motif (protein) + + + + + + + + + beta12orEarlier + 1.5 + + + Some simple value controlling a search operation, typically a search of a database. + + Search parameter + true + + + + + + + + + beta12orEarlier + A report of hits from searching a database of some type. + Database hits + Search results + + + Database search results + + + + + + + + + beta12orEarlier + 1.5 + + + The secondary structure assignment (predicted or real) of a nucleic acid or protein. + + Secondary structure + true + + + + + + + + + beta12orEarlier + An array of numerical values. + Array + + + This is a broad data type and is used a placeholder for other, more specific types. + Matrix + + + + + + + + + beta12orEarlier + 1.8 + + + Data concerning, extracted from, or derived from the analysis of molecular alignment of some type. + + This is a broad data type and is used a placeholder for other, more specific types. + Alignment data + true + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific nucleic acid molecules. + + + Nucleic acid report + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more molecular tertiary (3D) structures. It might include annotation on the structure, a computer-generated report of analysis of structural data, and metadata (data about primary data) or any other free (essentially unformatted) text, as distinct from the primary data itself. + Structure-derived report + + + Structure report + + + + + + + + + beta12orEarlier + 1.21 + + + + A report on nucleic acid structure-derived data, describing structural properties of a DNA molecule, or any other annotation or information about specific nucleic acid 3D structure(s). + + Nucleic acid structure data + true + + + + + + + + + beta12orEarlier + A report on the physical (e.g. structural) or chemical properties of molecules, or parts of a molecule. + Physicochemical property + SO:0000400 + + + Molecular property + + + + + + + + + beta12orEarlier + Structural data for DNA base pairs or runs of bases, such as energy or angle data. + + + DNA base structural data + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a database (or ontology) entry version, such as name (or other identifier) or parent database, unique identifier of entry, data, author and so on. + + Database entry version information + true + + + + + + + + + beta12orEarlier + true + A persistent (stable) and unique identifier, typically identifying an object (entry) from a database. + + + + Accession + http://semanticscience.org/resource/SIO_000675 + http://semanticscience.org/resource/SIO_000731 + + + + + + + + + beta12orEarlier + 1.8 + + single nucleotide polymorphism (SNP) in a DNA sequence. + + + SNP + true + + + + + + + + + beta12orEarlier + Reference to a dataset (or a cross-reference between two datasets), typically one or more entries in a biological database or ontology. + + + A list of database accessions or identifiers are usually included. + Data reference + + + + + + + + + beta12orEarlier + true + An identifier of a submitted job. + + + + Job identifier + http://wsio.org/data_009 + + + + + + + + + beta12orEarlier + true + + A name of a thing, which need not necessarily uniquely identify it. + Symbolic name + + + + Name + "http://www.w3.org/2000/01/rdf-schema#label + http://semanticscience.org/resource/SIO_000116 + http://usefulinc.com/ns/doap#name + + + + + + Closely related, but focusing on labeling and human readability but not on identification. + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a thing, typically an enumerated string (a string with one of a limited set of values). + + Type + http://purl.org/dc/elements/1.1/type + true + + + + + + + + + beta12orEarlier + Authentication data usually used to log in into an account on an information system such as a web application or a database. + + + + Account authentication + + + + + + + + + + beta12orEarlier + A three-letter code used in the KEGG databases to uniquely identify organisms. + + + + KEGG organism code + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the KEGG GENES database. + + Gene name (KEGG GENES) + true + + + + + + + + + + beta12orEarlier + Identifier of an object from one of the BioCyc databases. + + + + BioCyc ID + + + + + + + + + + + beta12orEarlier + Identifier of a compound from the BioCyc chemical compounds database. + BioCyc compound ID + BioCyc compound identifier + + + + Compound ID (BioCyc) + + + + + + + + + + + beta12orEarlier + Identifier of a biological reaction from the BioCyc reactions database. + + + + Reaction ID (BioCyc) + + + + + + + + + + + beta12orEarlier + Identifier of an enzyme from the BioCyc enzymes database. + BioCyc enzyme ID + + + + Enzyme ID (BioCyc) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a biological reaction from a database. + + + + Reaction ID + + + + + + + + + beta12orEarlier + true + An identifier that is re-used for data objects of fundamentally different types (typically served from a single database). + + + + This branch provides an alternative organisation of the concepts nested under 'Accession' and 'Name'. All concepts under here are already included under 'Accession' or 'Name'. + Identifier (hybrid) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a molecular property. + + + + Molecular property identifier + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a codon usage table, for example a genetic code. + Codon usage table identifier + + + + Codon usage table ID + + + + + + + + + beta12orEarlier + Primary identifier of an object from the FlyBase database. + + + + FlyBase primary identifier + + + + + + + + + beta12orEarlier + Identifier of an object from the WormBase database. + + + + WormBase identifier + + + + + + + + + + + beta12orEarlier + CE[0-9]{5} + Protein identifier used by WormBase database. + + + + WormBase wormpep ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on a trinucleotide sequence that encodes an amino acid including the triplet sequence, the encoded amino acid or whether it is a start or stop codon. + + Nucleic acid features (codon) + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a map of a molecular sequence. + + + + Map identifier + + + + + + + + + beta12orEarlier + true + An identifier of a software end-user on a website or a database (typically a person or an entity). + + + + Person identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Name or other identifier of a nucleic acid molecule. + + + + Nucleic acid identifier + + + + + + + + + beta12orEarlier + 1.20 + + + Frame for translation of DNA (3 forward and 3 reverse frames relative to a chromosome). + + Translation frame specification + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a genetic code. + + + + Genetic code identifier + + + + + + + + + + beta12orEarlier + Informal name for a genetic code, typically an organism name. + + + + Genetic code name + + + + + + + + + + beta12orEarlier + Name of a file format such as HTML, PNG, PDF, EMBL, GenBank and so on. + + + + File format name + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing a type of sequence profile such as frequency matrix, Gribskov profile, hidden Markov model etc. + + Sequence profile type + true + + + + + + + + + beta12orEarlier + Name of a computer operating system such as Linux, PC or Mac. + + + + Operating system name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A type of point or block mutation, including insertion, deletion, change, duplication and moves. + + Mutation type + true + + + + + + + + + beta12orEarlier + A logical operator such as OR, AND, XOR, and NOT. + + + + Logical operator + + + + + + + + + beta12orEarlier + 1.5 + + + A control of the order of data that is output, for example the order of sequences in an alignment. + + Possible options including sorting by score, rank, by increasing P-value (probability, i.e. most statistically significant hits given first) and so on. + Results sort order + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple parameter that is a toggle (boolean value), typically a control for a modal tool. + + Toggle + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The width of an output sequence or alignment. + + Sequence width + true + + + + + + + + + beta12orEarlier + A penalty for introducing or extending a gap in an alignment. + + + Gap penalty + + + + + + + + + beta12orEarlier + A temperature concerning nucleic acid denaturation, typically the temperature at which the two strands of a hybridised or double stranded nucleic acid (DNA or RNA/DNA) molecule separate. + Melting temperature + + + Nucleic acid melting temperature + + + + + + + + + beta12orEarlier + The concentration of a chemical compound. + + + Concentration + + + + + + + + + beta12orEarlier + 1.5 + + + Size of the incremental 'step' a sequence window is moved over a sequence. + + Window step size + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An image of a graph generated by the EMBOSS suite. + + EMBOSS graph + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An application report generated by the EMBOSS suite. + + EMBOSS report + true + + + + + + + + + beta12orEarlier + 1.5 + + + An offset for a single-point sequence position. + + Sequence offset + true + + + + + + + + + beta12orEarlier + 1.5 + + + A value that serves as a threshold for a tool (usually to control scoring or output). + + Threshold + true + + + + + + + + + beta12orEarlier + beta13 + + + An informative report on a transcription factor protein. + + This might include conformational or physicochemical properties, as well as sequence information for transcription factor(s) binding sites. + Protein report (transcription factor) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a category of biological or bioinformatics database. + + Database category name + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name of a sequence profile. + + Sequence profile name + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Specification of one or more colors. + + Color + true + + + + + + + + + beta12orEarlier + 1.5 + + + A parameter that is used to control rendering (drawing) to a device or image. + + Rendering parameter + true + + + + + + + + + + beta12orEarlier + Any arbitrary name of a molecular sequence. + + + + Sequence name + + + + + + + + + beta12orEarlier + 1.5 + + + A temporal date. + + Date + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Word composition data for a molecular sequence. + + Word composition + true + + + + + + + + + beta12orEarlier + A plot of Fickett testcode statistic (identifying protein coding regions) in a nucleotide sequences. + + + Fickett testcode plot + + + + + + + + + + beta12orEarlier + A plot of sequence similarities identified from word-matching or character comparison. + Sequence conservation report + + + Use this concept for calculated substitution rates, relative site variability, data on sites with biased properties, highly conserved or very poorly conserved sites, regions, blocks etc. + Sequence similarity plot + + + + + + + + + beta12orEarlier + An image of peptide sequence sequence looking down the axis of the helix for highlighting amphipathicity and other properties. + + + Helical wheel + + + + + + + + + beta12orEarlier + An image of peptide sequence sequence in a simple 3,4,3,4 repeating pattern that emulates at a simple level the arrangement of residues around an alpha helix. + + + Useful for highlighting amphipathicity and other properties. + Helical net + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A plot of general physicochemical properties of a protein sequence. + + Protein sequence properties plot + true + + + + + + + + + + beta12orEarlier + A plot of pK versus pH for a protein. + + + Protein ionisation curve + + + + + + + + + + beta12orEarlier + A plot of character or word composition / frequency of a molecular sequence. + + + Sequence composition plot + + + + + + + + + + beta12orEarlier + Density plot (of base composition) for a nucleotide sequence. + + + Nucleic acid density plot + + + + + + + + + beta12orEarlier + Image of a sequence trace (nucleotide sequence versus probabilities of each of the 4 bases). + + + Sequence trace image + + + + + + + + + beta12orEarlier + 1.5 + + + A report on siRNA duplexes in mRNA. + + Nucleic acid features (siRNA) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A collection of multiple molecular sequences and (typically) associated metadata that is intended for sequential processing. + + This concept may be used for sequence sets that are expected to be read and processed a single sequence at a time. + Sequence set (stream) + true + + + + + + + + + beta12orEarlier + Secondary identifier of an object from the FlyBase database. + + + + Secondary identifier are used to handle entries that were merged with or split from other entries in the database. + FlyBase secondary identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The number of a certain thing. + + Cardinality + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A single thing. + + Exactly 1 + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + One or more things. + + 1 or more + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Exactly two things. + + Exactly 2 + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Two or more things. + + 2 or more + true + + + + + + + + + beta12orEarlier + A fixed-size datum calculated (by using a hash function) for a molecular sequence, typically for purposes of error detection or indexing. + Hash + Hash code + Hash sum + Hash value + + + Sequence checksum + + + + + + + + + beta12orEarlier + 1.8 + + chemical modification of a protein. + + + Protein features report (chemical modifications) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Data on an error generated by computer system or tool. + + Error + true + + + + + + + + + beta12orEarlier + Basic information on any arbitrary database entry. + + + Database entry metadata + + + + + + + + + beta12orEarlier + beta13 + + + A cluster of similar genes. + + Gene cluster + true + + + + + + + + + beta12orEarlier + 1.8 + + A molecular sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database. + + + Sequence record full + true + + + + + + + + + beta12orEarlier + true + An identifier of a plasmid in a database. + + + + Plasmid identifier + + + + + + + + + + beta12orEarlier + true + A unique identifier of a specific mutation catalogued in a database. + + + + Mutation ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Information describing the mutation itself, the organ site, tissue and type of lesion where the mutation has been identified, description of the patient origin and life-style. + + Mutation annotation (basic) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on the prevalence of mutation(s), including data on samples and mutation prevalence (e.g. by tumour type).. + + Mutation annotation (prevalence) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on mutation prognostic data, such as information on patient cohort, the study settings and the results of the study. + + Mutation annotation (prognostic) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on the functional properties of mutant proteins including transcriptional activities, promotion of cell growth and tumorigenicity, dominant negative effects, capacity to induce apoptosis, cell-cycle arrest or checkpoints in human cells and so on. + + Mutation annotation (functional) + true + + + + + + + + + beta12orEarlier + The number of a codon, for instance, at which a mutation is located. + + + Codon number + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific tumor including nature and origin of the sample, anatomic site, organ or tissue, tumor type, including morphology and/or histologic type, and so on. + + Tumor annotation + true + + + + + + + + + beta12orEarlier + 1.5 + + + Basic information about a server on the web, such as an SRS server. + + Server metadata + true + + + + + + + + + beta12orEarlier + The name of a field in a database. + + + + Database field name + + + + + + + + + + beta12orEarlier + Unique identifier of a sequence cluster from the SYSTERS database. + SYSTERS cluster ID + + + + Sequence cluster ID (SYSTERS) + + + + + + + + + + + + + + + beta12orEarlier + Data concerning a biological ontology. + + + Ontology metadata + + + + + + + + + beta12orEarlier + beta13 + + + Raw SCOP domain classification data files. + + These are the parsable data files provided by SCOP. + Raw SCOP domain classification + true + + + + + + + + + beta12orEarlier + beta13 + + + Raw CATH domain classification data files. + + These are the parsable data files provided by CATH. + Raw CATH domain classification + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on the types of small molecules or 'heterogens' (non-protein groups) that are represented in PDB files. + + Heterogen annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Phylogenetic property values data. + + Phylogenetic property values + true + + + + + + + + + beta12orEarlier + 1.5 + + + A collection of sequences output from a bootstrapping (resampling) procedure. + + Bootstrapping is often performed in phylogenetic analysis. + Sequence set (bootstrapped) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A consensus phylogenetic tree derived from comparison of multiple trees. + + Phylogenetic consensus tree + true + + + + + + + + + beta12orEarlier + 1.5 + + + A data schema for organising or transforming data of some type. + + Schema + true + + + + + + + + + beta12orEarlier + 1.5 + + + A DTD (document type definition). + + DTD + true + + + + + + + + + beta12orEarlier + 1.5 + + + An XML Schema. + + XML Schema + true + + + + + + + + + beta12orEarlier + 1.5 + + + A relax-NG schema. + + Relax-NG schema + true + + + + + + + + + beta12orEarlier + 1.5 + + + An XSLT stylesheet. + + XSLT stylesheet + true + + + + + + + + + + beta12orEarlier + The name of a data type. + + + + Data resource definition name + + + + + + + + + beta12orEarlier + Name of an OBO file format such as OBO-XML, plain and so on. + + + + OBO file format name + + + + + + + + + + beta12orEarlier + Identifier for genetic elements in MIPS database. + MIPS genetic element identifier + + + + Gene ID (MIPS) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of protein sequence(s) or protein sequence database entries. + + Sequence identifier (protein) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of nucleotide sequence(s) or nucleotide sequence database entries. + + Sequence identifier (nucleic acid) + true + + + + + + + + + beta12orEarlier + An accession number of an entry from the EMBL sequence database. + EMBL ID + EMBL accession number + EMBL identifier + + + + EMBL accession + + + + + + + + + + + + + + + beta12orEarlier + An identifier of a polypeptide in the UniProt database. + UniProt entry name + UniProt identifier + UniProtKB entry name + UniProtKB identifier + + + + UniProt ID + + + + + + + + + beta12orEarlier + Accession number of an entry from the GenBank sequence database. + GenBank ID + GenBank accession number + GenBank identifier + + + + GenBank accession + + + + + + + + + beta12orEarlier + Secondary (internal) identifier of a Gramene database entry. + Gramene internal ID + Gramene internal identifier + Gramene secondary ID + + + + Gramene secondary identifier + + + + + + + + + beta12orEarlier + true + An identifier of an entry from a database of molecular sequence variation. + + + + Sequence variation ID + + + + + + + + + + beta12orEarlier + true + A unique (and typically persistent) identifier of a gene in a database, that is (typically) different to the gene name/symbol. + Gene accession + Gene code + + + + Gene ID + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the AceView genes database. + + Gene name (AceView) + true + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: ECK + Identifier of an E. coli K-12 gene from EcoGene Database. + E. coli K-12 gene identifier + ECK accession + + + + Gene ID (ECK) + + + + + + + + + + beta12orEarlier + Identifier for a gene approved by the HUGO Gene Nomenclature Committee. + HGNC ID + + + + Gene ID (HGNC) + + + + + + + + + + beta12orEarlier + The name of a gene, (typically) assigned by a person and/or according to a naming scheme. It may contain white space characters and is typically more intuitive and readable than a gene symbol. It (typically) may be used to identify similar genes in different species and to derive a gene symbol. + Allele name + + + + Gene name + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the NCBI genes database. + + Gene name (NCBI) + true + + + + + + + + + beta12orEarlier + A specification of a chemical structure in SMILES format. + + + SMILES string + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the STRING database of protein-protein interactions. + + + + STRING ID + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific virus. + + Virus annotation + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on the taxonomy of a specific virus. + + Virus annotation (taxonomy) + true + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a biological reaction from the SABIO-RK reactions database. + + + + Reaction ID (SABIO-RK) + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific carbohydrate 3D structure(s). + + + Carbohydrate report + + + + + + + + + + beta12orEarlier + A series of digits that are assigned consecutively to each sequence record processed by NCBI. The GI number bears no resemblance to the Accession number of the sequence record. + NCBI GI number + + + + Nucleotide sequence GI number is shown in the VERSION field of the database record. Protein sequence GI number is shown in the CDS/db_xref field of a nucleotide database record, and the VERSION field of a protein database record. + GI number + + + + + + + + + + beta12orEarlier + An identifier assigned to sequence records processed by NCBI, made of the accession number of the database record followed by a dot and a version number. + NCBI accession.version + accession.version + + + + Nucleotide sequence version contains two letters followed by six digits, a dot, and a version number (or for older nucleotide sequence records, the format is one letter followed by five digits, a dot, and a version number). Protein sequence version contains three letters followed by five digits, a dot, and a version number. + NCBI version + + + + + + + + + beta12orEarlier + The name of a cell line. + + + + Cell line name + + + + + + + + + beta12orEarlier + The exact name of a cell line. + + + + Cell line name (exact) + + + + + + + + + beta12orEarlier + The truncated name of a cell line. + + + + Cell line name (truncated) + + + + + + + + + beta12orEarlier + The name of a cell line without any punctuation. + + + + Cell line name (no punctuation) + + + + + + + + + beta12orEarlier + The assonant name of a cell line. + + + + Cell line name (assonant) + + + + + + + + + + beta12orEarlier + true + A unique, persistent identifier of an enzyme. + Enzyme accession + + + + Enzyme ID + + + + + + + + + + beta12orEarlier + Identifier of an enzyme from the REBASE enzymes database. + + + + REBASE enzyme number + + + + + + + + + + beta12orEarlier + DB[0-9]{5} + Unique identifier of a drug from the DrugBank database. + + + + DrugBank ID + + + + + + + + + beta12orEarlier + A unique identifier assigned to NCBI protein sequence records. + protein gi + protein gi number + + + + Nucleotide sequence GI number is shown in the VERSION field of the database record. Protein sequence GI number is shown in the CDS/db_xref field of a nucleotide database record, and the VERSION field of a protein database record. + GI number (protein) + + + + + + + + + beta12orEarlier + A score derived from the alignment of two sequences, which is then normalised with respect to the scoring system. + + + Bit scores are normalised with respect to the scoring system and therefore can be used to compare alignment scores from different searches. + Bit score + + + + + + + + + beta12orEarlier + 1.20 + + + Phase for translation of DNA (0, 1 or 2) relative to a fragment of the coding sequence. + + Translation phase specification + true + + + + + + + + + beta12orEarlier + Data concerning or describing some core computational resource, as distinct from primary data. This includes metadata on the origin, source, history, ownership or location of some thing. + Provenance metadata + + + This is a broad data type and is used a placeholder for other, more specific types. + Resource metadata + + + + + + + + + + + + + + + beta12orEarlier + Any arbitrary identifier of an ontology. + + + + Ontology identifier + + + + + + + + + + beta12orEarlier + The name of a concept in an ontology. + + + + Ontology concept name + + + + + + + + + beta12orEarlier + An identifier of a build of a particular genome. + + + + Genome build identifier + + + + + + + + + beta12orEarlier + The name of a biological pathway or network. + + + + Pathway or network name + + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]{2,3}[0-9]{5} + Identifier of a pathway from the KEGG pathway database. + KEGG pathway ID + + + + Pathway ID (KEGG) + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+ + Identifier of a pathway from the NCI-Nature pathway database. + + + + Pathway ID (NCI-Nature) + + + + + + + + + + + beta12orEarlier + Identifier of a pathway from the ConsensusPathDB pathway database. + + + + Pathway ID (ConsensusPathDB) + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef database. + UniRef cluster id + UniRef entry accession + + + + Sequence cluster ID (UniRef) + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef100 database. + UniRef100 cluster id + UniRef100 entry accession + + + + Sequence cluster ID (UniRef100) + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef90 database. + UniRef90 cluster id + UniRef90 entry accession + + + + Sequence cluster ID (UniRef90) + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef50 database. + UniRef50 cluster id + UniRef50 entry accession + + + + Sequence cluster ID (UniRef50) + + + + + + + + + + + + + + + beta12orEarlier + Data concerning or derived from an ontology. + Ontological data + + + This is a broad data type and is used a placeholder for other, more specific types. + Ontology data + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific RNA family or other group of classified RNA sequences. + RNA family annotation + + + RNA family report + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an RNA family, typically an entry from a RNA sequence classification database. + + + + RNA family identifier + + + + + + + + + + beta12orEarlier + Stable accession number of an entry (RNA family) from the RFAM database. + + + + RFAM accession + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing a type of protein family signature (sequence classifier) from the InterPro database. + + Protein signature type + true + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on protein domain-DNA/RNA interaction(s). + + Domain-nucleic acid interaction report + true + + + + + + + + + beta12orEarlier + 1.8 + + + An informative report on protein domain-protein domain interaction(s). + + Domain-domain interactions + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data on indirect protein domain-protein domain interaction(s). + + Domain-domain interaction (indirect) + true + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a nucleotide or protein sequence database entry. + + + + Sequence accession (hybrid) + + + + + + + + + beta12orEarlier + beta13 + + Data concerning two-dimensional polygel electrophoresis. + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + 2D PAGE data + true + + + + + + + + + beta12orEarlier + 1.8 + + two-dimensional gel electrophoresis experiments, gels or spots in a gel. + + + 2D PAGE report + true + + + + + + + + + beta12orEarlier + true + A persistent, unique identifier of a biological pathway or network (typically a database entry). + + + + Pathway or network accession + + + + + + + + + beta12orEarlier + Alignment of the (1D representations of) secondary structure of two or more molecules. + + + Secondary structure alignment + + + + + + + + + + + beta12orEarlier + Identifier of an object from the ASTD database. + + + + ASTD ID + + + + + + + + + beta12orEarlier + Identifier of an exon from the ASTD database. + + + + ASTD ID (exon) + + + + + + + + + beta12orEarlier + Identifier of an intron from the ASTD database. + + + + ASTD ID (intron) + + + + + + + + + beta12orEarlier + Identifier of a polyA signal from the ASTD database. + + + + ASTD ID (polya) + + + + + + + + + beta12orEarlier + Identifier of a transcription start site from the ASTD database. + + + + ASTD ID (tss) + + + + + + + + + beta12orEarlier + 1.8 + + An informative report on individual spot(s) from a two-dimensional (2D PAGE) gel. + + + 2D PAGE spot report + true + + + + + + + + + beta12orEarlier + true + Unique identifier of a spot from a two-dimensional (protein) gel. + + + + Spot ID + + + + + + + + + + beta12orEarlier + Unique identifier of a spot from a two-dimensional (protein) gel in the SWISS-2DPAGE database. + + + + Spot serial number + + + + + + + + + + beta12orEarlier + Unique identifier of a spot from a two-dimensional (protein) gel from a HSC-2DPAGE database. + + + + Spot ID (HSC-2DPAGE) + + + + + + + + + beta12orEarlier + beta13 + + + Data on the interaction of a protein (or protein domain) with specific structural (3D) and/or sequence motifs. + + Protein-motif interaction + true + + + + + + + + + beta12orEarlier + true + Identifier of a strain of an organism variant, typically a plant, virus or bacterium. + + + + Strain identifier + + + + + + + + + + beta12orEarlier + A unique identifier of an item from the CABRI database. + + + + CABRI accession + + + + + + + + + beta12orEarlier + 1.8 + + Report of genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods. + + + Experiment report (genotyping) + true + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of genotype experiment metadata. + + + + Genotype experiment ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the EGA database. + + + + EGA accession + + + + + + + + + + beta12orEarlier + IPI[0-9]{8} + Identifier of a protein entry catalogued in the International Protein Index (IPI) database. + + + + IPI protein ID + + + + + + + + + beta12orEarlier + Accession number of a protein from the RefSeq database. + RefSeq protein ID + + + + RefSeq accession (protein) + + + + + + + + + + beta12orEarlier + Identifier of an entry (promoter) from the EPD database. + EPD identifier + + + + EPD ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the TAIR database. + + + + TAIR accession + + + + + + + + + beta12orEarlier + Identifier of an Arabidopsis thaliana gene from the TAIR database. + + + + TAIR accession (At gene) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the UniSTS database. + + + + UniSTS accession + + + + + + + + + + beta12orEarlier + Identifier of an entry from the UNITE database. + + + + UNITE accession + + + + + + + + + + beta12orEarlier + Identifier of an entry from the UTR database. + + + + UTR accession + + + + + + + + + + beta12orEarlier + UPI[A-F0-9]{10} + Accession number of a UniParc (protein sequence) database entry. + UPI + UniParc ID + + + + UniParc accession + + + + + + + + + + beta12orEarlier + Identifier of an entry from the Rouge or HUGE databases. + + + + mFLJ/mKIAA number + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific fungus. + + Fungi annotation + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific fungus anamorph. + + Fungi annotation (anamorph) + true + + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the Ensembl database. + Ensembl ID (protein) + Protein ID (Ensembl) + + + + Ensembl protein ID + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific toxin. + + Toxin annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on a membrane protein. + + Protein report (membrane protein) + true + + + + + + + + + beta12orEarlier + 1.12 + + An informative report on tentative or known protein-drug interaction(s). + + + Protein-drug interaction report + true + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning a map of molecular sequence(s). + + This is a broad data type and is used a placeholder for other, more specific types. + Map data + true + + + + + + + + + beta12orEarlier + Data concerning phylogeny, typically of molecular sequences, including reports of information concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees. + + + This is a broad data type and is used a placeholder for other, more specific types. + Phylogenetic data + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning one or more protein molecules. + + This is a broad data type and is used a placeholder for other, more specific types. + Protein data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning one or more nucleic acid molecules. + + This is a broad data type and is used a placeholder for other, more specific types. + Nucleic acid data + true + + + + + + + + + + + + + + + beta12orEarlier + Data concerning, extracted from, or derived from the analysis of a scientific text (or texts) such as a full text article from a scientific journal. + Article data + Scientific text data + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. It includes concepts that are best described as scientific text or closely concerned with or derived from text. + Text data + + + + + + + + + beta12orEarlier + 1.16 + + + Typically a simple numerical or string value that controls the operation of a tool. + + Parameter + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning a specific type of molecule. + + This is a broad data type and is used a placeholder for other, more specific types. + Molecular data + true + + + + + + + + + beta12orEarlier + 1.5 + + + + An informative report on a specific molecule. + + Molecule report + true + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific organism. + Organism annotation + + + Organism report + + + + + + + + + beta12orEarlier + A human-readable collection of information about about how a scientific experiment or analysis was carried out that results in a specific set of data or results used for further analysis or to test a specific hypothesis. + Experiment annotation + Experiment metadata + Experiment report + + + Protocol + + + + + + + + + beta12orEarlier + An attribute of a molecular sequence, possibly in reference to some other sequence. + Sequence parameter + + + Sequence attribute + + + + + + + + + beta12orEarlier + Output from a serial analysis of gene expression (SAGE), massively parallel signature sequencing (MPSS) or sequencing by synthesis (SBS) experiment. In all cases this is a list of short sequence tags and the number of times it is observed. + Sequencing-based expression profile + Sequence tag profile (with gene assignment) + + + SAGE, MPSS and SBS experiments are usually performed to study gene expression. The sequence tags are typically subsequently annotated (after a database search) with the mRNA (and therefore gene) the tag was extracted from. + This includes tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. Typically this is the sequencing-based expression profile annotated with gene identifiers. + Sequence tag profile + + + + + + + + + beta12orEarlier + Data concerning a mass spectrometry measurement. + + + Mass spectrometry data + + + + + + + + + beta12orEarlier + Raw data from experimental methods for determining protein structure. + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein structure raw data + + + + + + + + + beta12orEarlier + true + An identifier of a mutation. + + + + Mutation identifier + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning an alignment of two or more molecular sequences, structures or derived data. + + This is a broad data type and is used a placeholder for other, more specific types. This includes entities derived from sequences and structures such as motifs and profiles. + Alignment data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning an index of data. + + This is a broad data type and is used a placeholder for other, more specific types. + Data index data + true + + + + + + + + + beta12orEarlier + Single letter amino acid identifier, e.g. G. + + + + Amino acid name (single letter) + + + + + + + + + beta12orEarlier + Three letter amino acid identifier, e.g. GLY. + + + + Amino acid name (three letter) + + + + + + + + + beta12orEarlier + Full name of an amino acid, e.g. Glycine. + + + + Amino acid name (full name) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a toxin. + + + + Toxin identifier + + + + + + + + + + beta12orEarlier + Unique identifier of a toxin from the ArachnoServer database. + + + + ArachnoServer ID + + + + + + + + + beta12orEarlier + 1.5 + + + A simple summary of expressed genes. + + Expressed gene list + true + + + + + + + + + + beta12orEarlier + Unique identifier of a monomer from the BindingDB database. + + + + BindingDB Monomer ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept from the GO ontology. + + GO concept name + true + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a 'biological process' concept from the the Gene Ontology. + + + + GO concept ID (biological process) + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a 'molecular function' concept from the the Gene Ontology. + + + + GO concept ID (molecular function) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept for a cellular component from the GO ontology. + + GO concept name (cellular component) + true + + + + + + + + + beta12orEarlier + An image arising from a Northern Blot experiment. + + + Northern blot image + + + + + + + + + beta12orEarlier + true + Unique identifier of a blot from a Northern Blot. + + + + Blot ID + + + + + + + + + + beta12orEarlier + Unique identifier of a blot from a Northern Blot from the BlotBase database. + + + + BlotBase blot ID + + + + + + + + + beta12orEarlier + Raw data on a biological hierarchy, describing the hierarchy proper, hierarchy components and possibly associated annotation. + Hierarchy annotation + + + Hierarchy + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry from a database of biological hierarchies. + + Hierarchy identifier + true + + + + + + + + + + beta12orEarlier + Identifier of an entry from the Brite database of biological hierarchies. + + + + Brite hierarchy ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A type (represented as a string) of cancer. + + Cancer type + true + + + + + + + + + + beta12orEarlier + A unique identifier for an organism used in the BRENDA database. + + + + BRENDA organism ID + + + + + + + + + beta12orEarlier + The name of a taxon using the controlled vocabulary of the UniGene database. + UniGene organism abbreviation + + + + UniGene taxon + + + + + + + + + beta12orEarlier + The name of a taxon using the controlled vocabulary of the UTRdb database. + + + + UTRdb taxon + + + + + + + + + beta12orEarlier + true + An identifier of a catalogue of biological resources. + Catalogue identifier + + + + Catalogue ID + + + + + + + + + + beta12orEarlier + The name of a catalogue of biological resources from the CABRI database. + + + + CABRI catalogue name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on protein secondary structure alignment-derived data or metadata. + + Secondary structure alignment metadata + true + + + + + + + + + beta12orEarlier + Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19. + 1.5 + + + An informative report on the physical, chemical or other information concerning the interaction of two or more molecules (or parts of molecules). + + Molecule interaction report + true + + + + + + + + + + + + + + + beta12orEarlier + Primary data about a specific biological pathway or network (the nodes and connections within the pathway or network). + Network + Pathway + + + Pathway or network + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning one or more small molecules. + + This is a broad data type and is used a placeholder for other, more specific types. + Small molecule data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning a particular genotype, phenotype or a genotype / phenotype relation. + + Genotype and phenotype data + true + + + + + + + + + + + + + + + beta12orEarlier + Image, hybridisation or some other data arising from a study of feature/molecule expression, typically profiling or quantification. + Gene expression data + Gene product profile + Gene product quantification data + Gene transcription profile + Gene transcription quantification data + Metabolite expression data + Microarray data + Non-coding RNA profile + Non-coding RNA quantification data + Protein expression data + RNA profile + RNA quantification data + RNA-seq data + Transcriptome profile + Transcriptome quantification data + mRNA profile + mRNA quantification data + Protein profile + Protein quantification data + Proteome profile + Proteome quantification data + + + Expression data + + + + + + + + + + beta12orEarlier + C[0-9]+ + Unique identifier of a chemical compound from the KEGG database. + KEGG compound ID + KEGG compound identifier + + + + Compound ID (KEGG) + + + + + + + + + + beta12orEarlier + Name (not necessarily stable) an entry (RNA family) from the RFAM database. + + + + RFAM name + + + + + + + + + + beta12orEarlier + R[0-9]+ + Identifier of a biological reaction from the KEGG reactions database. + + + + Reaction ID (KEGG) + + + + + + + + + + + beta12orEarlier + D[0-9]+ + Unique identifier of a drug from the KEGG Drug database. + + + + Drug ID (KEGG) + + + + + + + + + + beta12orEarlier + ENS[A-Z]*[FPTG][0-9]{11} + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl database. + Ensembl IDs + + + + Ensembl ID + + + + + + + + + + + + + + + + beta12orEarlier + [A-Z][0-9]+(\.[-[0-9]+])? + An identifier of a disease from the International Classification of Diseases (ICD) database. + + + + ICD identifier + + + + + + + + + + beta12orEarlier + [0-9A-Za-z]+:[0-9]+:[0-9]{1,5}(\.[0-9])? + Unique identifier of a sequence cluster from the CluSTr database. + CluSTr ID + CluSTr cluster ID + + + + Sequence cluster ID (CluSTr) + + + + + + + + + + + beta12orEarlier + G[0-9]+ + Unique identifier of a glycan ligand from the KEGG GLYCAN database (a subset of KEGG LIGAND). + + + + KEGG Glycan ID + + + + + + + + + + beta12orEarlier + [0-9]+\.[A-Z]\.[0-9]+\.[0-9]+\.[0-9]+ + A unique identifier of a family from the transport classification database (TCDB) of membrane transport proteins. + TC number + + + + OBO file for regular expression. + TCDB ID + + + + + + + + + + beta12orEarlier + MINT\-[0-9]{1,5} + Unique identifier of an entry from the MINT database of protein-protein interactions. + + + + MINT ID + + + + + + + + + + beta12orEarlier + DIP[\:\-][0-9]{3}[EN] + Unique identifier of an entry from the DIP database of protein-protein interactions. + + + + DIP ID + + + + + + + + + + beta12orEarlier + A[0-9]{6} + Unique identifier of a protein listed in the UCSD-Nature Signaling Gateway Molecule Pages database. + + + + Signaling Gateway protein ID + + + + + + + + + beta12orEarlier + true + Identifier of a protein modification catalogued in a database. + + + + Protein modification ID + + + + + + + + + + beta12orEarlier + AA[0-9]{4} + Identifier of a protein modification catalogued in the RESID database. + + + + RESID ID + + + + + + + + + + beta12orEarlier + [0-9]{4,7} + Identifier of an entry from the RGD database. + + + + RGD ID + + + + + + + + + + beta12orEarlier + AASequence:[0-9]{10} + Identifier of a protein sequence from the TAIR database. + + + + TAIR accession (protein) + + + + + + + + + + beta12orEarlier + HMDB[0-9]{5} + Identifier of a small molecule metabolite from the Human Metabolome Database (HMDB). + HMDB ID + + + + Compound ID (HMDB) + + + + + + + + + + beta12orEarlier + LM(FA|GL|GP|SP|ST|PR|SL|PK)[0-9]{4}([0-9a-zA-Z]{4})? + Identifier of an entry from the LIPID MAPS database. + LM ID + + + + LIPID MAPS ID + + + + + + + + + + beta12orEarlier + PAp[0-9]{8} + PDBML:pdbx_PDB_strand_id + Identifier of a peptide from the PeptideAtlas peptide databases. + + + + PeptideAtlas ID + + + + + + + + + beta12orEarlier + 1.7 + + Identifier of a report of molecular interactions from a database (typically). + + + Molecular interaction ID + true + + + + + + + + + + beta12orEarlier + [0-9]+ + A unique identifier of an interaction from the BioGRID database. + + + + BioGRID interaction ID + + + + + + + + + + beta12orEarlier + S[0-9]{2}\.[0-9]{3} + Unique identifier of a peptidase enzyme from the MEROPS database. + MEROPS ID + + + + Enzyme ID (MEROPS) + + + + + + + + + beta12orEarlier + true + An identifier of a mobile genetic element. + + + + Mobile genetic element ID + + + + + + + + + + beta12orEarlier + mge:[0-9]+ + An identifier of a mobile genetic element from the Aclame database. + + + + ACLAME ID + + + + + + + + + + beta12orEarlier + PWY[a-zA-Z_0-9]{2}\-[0-9]{3} + Identifier of an entry from the Saccharomyces genome database (SGD). + + + + SGD ID + + + + + + + + + beta12orEarlier + true + Unique identifier of a book. + + + + Book ID + + + + + + + + + + beta12orEarlier + (ISBN)?(-13|-10)?[:]?[ ]?([0-9]{2,3}[ -]?)?[0-9]{1,5}[ -]?[0-9]{1,7}[ -]?[0-9]{1,6}[ -]?([0-9]|X) + The International Standard Book Number (ISBN) is for identifying printed books. + + + + ISBN + + + + + + + + + + beta12orEarlier + B[0-9]{5} + Identifier of a metabolite from the 3DMET database. + 3DMET ID + + + + Compound ID (3DMET) + + + + + + + + + + beta12orEarlier + ([A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9])_.*|([OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9]_.*)|(GAG_.*)|(MULT_.*)|(PFRAG_.*)|(LIP_.*)|(CAT_.*) + A unique identifier of an interaction from the MatrixDB database. + + + + MatrixDB interaction ID + + + + + + + + + + + beta12orEarlier + [0-9]+ + A unique identifier for pathways, reactions, complexes and small molecules from the cPath (Pathway Commons) database. + + + + These identifiers are unique within the cPath database, however, they are not stable between releases. + cPath ID + + + + + + + + + + beta12orEarlier + true + [0-9]+ + Identifier of an assay from the PubChem database. + + + + PubChem bioassay ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the PubChem database. + PubChem identifier + + + + PubChem ID + + + + + + + + + + beta12orEarlier + M[0-9]{4} + Identifier of an enzyme reaction mechanism from the MACie database. + MACie entry number + + + + Reaction ID (MACie) + + + + + + + + + + beta12orEarlier + MI[0-9]{7} + Identifier for a gene from the miRBase database. + miRNA ID + miRNA identifier + miRNA name + + + + Gene ID (miRBase) + + + + + + + + + + beta12orEarlier + ZDB\-GENE\-[0-9]+\-[0-9]+ + Identifier for a gene from the Zebrafish information network genome (ZFIN) database. + + + + Gene ID (ZFIN) + + + + + + + + + + beta12orEarlier + [0-9]{5} + Identifier of an enzyme-catalysed reaction from the Rhea database. + + + + Reaction ID (Rhea) + + + + + + + + + + beta12orEarlier + UPA[0-9]{5} + Identifier of a biological pathway from the Unipathway database. + upaid + + + + Pathway ID (Unipathway) + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a small molecular from the ChEMBL database. + ChEMBL ID + + + + Compound ID (ChEMBL) + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+ + Unique identifier of an entry from the Ligand-gated ion channel (LGICdb) database. + + + + LGICdb identifier + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a biological reaction (kinetics entry) from the SABIO-RK reactions database. + + + + Reaction kinetics ID (SABIO-RK) + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of an entry from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + PharmGKB ID + + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of a pathway from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + Pathway ID (PharmGKB) + + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of a disease from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + Disease ID (PharmGKB) + + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of a drug from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + Drug ID (PharmGKB) + + + + + + + + + + beta12orEarlier + DAP[0-9]+ + Identifier of a drug from the Therapeutic Target Database (TTD). + + + + Drug ID (TTD) + + + + + + + + + + beta12orEarlier + TTDS[0-9]+ + Identifier of a target protein from the Therapeutic Target Database (TTD). + + + + Target ID (TTD) + + + + + + + + + beta12orEarlier + true + A unique identifier of a type or group of cells. + + + + Cell type identifier + + + + + + + + + + beta12orEarlier + [0-9]+ + A unique identifier of a neuron from the NeuronDB database. + + + + NeuronDB ID + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+ + A unique identifier of a neuron from the NeuroMorpho database. + + + + NeuroMorpho ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a chemical from the ChemIDplus database. + ChemIDplus ID + + + + Compound ID (ChemIDplus) + + + + + + + + + + beta12orEarlier + SMP[0-9]{5} + Identifier of a pathway from the Small Molecule Pathway Database (SMPDB). + + + + Pathway ID (SMPDB) + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the BioNumbers database of key numbers and associated data in molecular biology. + + + + BioNumbers ID + + + + + + + + + + beta12orEarlier + T3D[0-9]+ + Unique identifier of a toxin from the Toxin and Toxin Target Database (T3DB) database. + + + + T3DB ID + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a carbohydrate. + + + + Carbohydrate identifier + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the GlycomeDB database. + + + + GlycomeDB ID + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+[0-9]+ + Identifier of an entry from the LipidBank database. + + + + LipidBank ID + + + + + + + + + + beta12orEarlier + cd[0-9]{5} + Identifier of a conserved domain from the Conserved Domain Database. + + + + CDD ID + + + + + + + + + + beta12orEarlier + [0-9]{1,5} + An identifier of an entry from the MMDB database. + MMDB accession + + + + MMDB ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Unique identifier of an entry from the iRefIndex database of protein-protein interactions. + + + + iRefIndex ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Unique identifier of an entry from the ModelDB database. + + + + ModelDB ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a signaling pathway from the Database of Quantitative Cellular Signaling (DQCS). + + + + Pathway ID (DQCS) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database (Homo sapiens division). + + Ensembl ID (Homo sapiens) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Bos taurus' division). + + Ensembl ID ('Bos taurus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Canis familiaris' division). + + Ensembl ID ('Canis familiaris') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Cavia porcellus' division). + + Ensembl ID ('Cavia porcellus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona intestinalis' division). + + Ensembl ID ('Ciona intestinalis') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona savignyi' division). + + Ensembl ID ('Ciona savignyi') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Danio rerio' division). + + Ensembl ID ('Danio rerio') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Dasypus novemcinctus' division). + + Ensembl ID ('Dasypus novemcinctus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Echinops telfairi' division). + + Ensembl ID ('Echinops telfairi') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Erinaceus europaeus' division). + + Ensembl ID ('Erinaceus europaeus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Felis catus' division). + + Ensembl ID ('Felis catus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gallus gallus' division). + + Ensembl ID ('Gallus gallus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gasterosteus aculeatus' division). + + Ensembl ID ('Gasterosteus aculeatus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Homo sapiens' division). + + Ensembl ID ('Homo sapiens') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Loxodonta africana' division). + + Ensembl ID ('Loxodonta africana') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Macaca mulatta' division). + + Ensembl ID ('Macaca mulatta') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Monodelphis domestica' division). + + Ensembl ID ('Monodelphis domestica') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Mus musculus' division). + + Ensembl ID ('Mus musculus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Myotis lucifugus' division). + + Ensembl ID ('Myotis lucifugus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ornithorhynchus anatinus' division). + + Ensembl ID ("Ornithorhynchus anatinus") + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryctolagus cuniculus' division). + + Ensembl ID ('Oryctolagus cuniculus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryzias latipes' division). + + Ensembl ID ('Oryzias latipes') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Otolemur garnettii' division). + + Ensembl ID ('Otolemur garnettii') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Pan troglodytes' division). + + Ensembl ID ('Pan troglodytes') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Rattus norvegicus' division). + + Ensembl ID ('Rattus norvegicus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Spermophilus tridecemlineatus' division). + + Ensembl ID ('Spermophilus tridecemlineatus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Takifugu rubripes' division). + + Ensembl ID ('Takifugu rubripes') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Tupaia belangeri' division). + + Ensembl ID ('Tupaia belangeri') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Xenopus tropicalis' division). + + Ensembl ID ('Xenopus tropicalis') + true + + + + + + + + + + beta12orEarlier + Identifier of a protein domain (or other node) from the CATH database. + + + + CATH identifier + + + + + + + + + beta12orEarlier + 2.10.10.10 + A code number identifying a family from the CATH database. + + + + CATH node ID (family) + + + + + + + + + + beta12orEarlier + Identifier of an enzyme from the CAZy enzymes database. + CAZy ID + + + + Enzyme ID (CAZy) + + + + + + + + + + beta12orEarlier + A unique identifier assigned by the I.M.A.G.E. consortium to a clone (cloned molecular sequence). + I.M.A.G.E. cloneID + IMAGE cloneID + + + + Clone ID (IMAGE) + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a 'cellular component' concept from the Gene Ontology. + GO concept identifier (cellular compartment) + + + + GO concept ID (cellular component) + + + + + + + + + beta12orEarlier + Name of a chromosome as used in the BioCyc database. + + + + Chromosome name (BioCyc) + + + + + + + + + + beta12orEarlier + An identifier of a gene expression profile from the CleanEx database. + + + + CleanEx entry name + + + + + + + + + beta12orEarlier + An identifier of (typically a list of) gene expression experiments catalogued in the CleanEx database. + + + + CleanEx dataset code + + + + + + + + + beta12orEarlier + A human-readable collection of information concerning a genome as a whole. + + + Genome report + + + + + + + + + + beta12orEarlier + Unique identifier for a protein complex from the CORUM database. + CORUM complex ID + + + + Protein ID (CORUM) + + + + + + + + + + beta12orEarlier + Unique identifier of a position-specific scoring matrix from the CDD database. + + + + CDD PSSM-ID + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the CuticleDB database. + CuticleDB ID + + + + Protein ID (CuticleDB) + + + + + + + + + + beta12orEarlier + Identifier of a predicted transcription factor from the DBD database. + + + + DBD ID + + + + + + + + + + + + + + + beta12orEarlier + General annotation on an oligonucleotide probe, or a set of probes. + Oligonucleotide probe sets annotation + + + Oligonucleotide probe annotation + + + + + + + + + + beta12orEarlier + true + Identifier of an oligonucleotide from a database. + + + + Oligonucleotide ID + + + + + + + + + + beta12orEarlier + Identifier of an oligonucleotide probe from the dbProbe database. + + + + dbProbe ID + + + + + + + + + beta12orEarlier + Physicochemical property data for one or more dinucleotides. + + + Dinucleotide property + + + + + + + + + + beta12orEarlier + Identifier of an dinucleotide property from the DiProDB database. + + + + DiProDB ID + + + + + + + + + beta12orEarlier + 1.8 + + disordered structure in a protein. + + + Protein features report (disordered structure) + true + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the DisProt database. + DisProt ID + + + + Protein ID (DisProt) + + + + + + + + + beta12orEarlier + 1.5 + + + Annotation on an embryo or concerning embryological development. + + Embryo report + true + + + + + + + + + + + beta12orEarlier + Unique identifier for a gene transcript from the Ensembl database. + Transcript ID (Ensembl) + + + + Ensembl transcript ID + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on one or more small molecules that are enzyme inhibitors. + + Inhibitor annotation + true + + + + + + + + + beta12orEarlier + true + Moby:GeneAccessionList + An identifier of a promoter of a gene that is catalogued in a database. + + + + Promoter ID + + + + + + + + + beta12orEarlier + Identifier of an EST sequence. + + + + EST accession + + + + + + + + + + beta12orEarlier + Identifier of an EST sequence from the COGEME database. + + + + COGEME EST ID + + + + + + + + + + beta12orEarlier + Identifier of a unisequence from the COGEME database. + + + + A unisequence is a single sequence assembled from ESTs. + COGEME unisequence ID + + + + + + + + + + beta12orEarlier + Accession number of an entry (protein family) from the GeneFarm database. + GeneFarm family ID + + + + Protein family ID (GeneFarm) + + + + + + + + + beta12orEarlier + The name of a family of organism. + + + + Family name + + + + + + + + + beta12orEarlier + beta13 + + + The name of a genus of viruses. + + Genus name (virus) + true + + + + + + + + + beta12orEarlier + beta13 + + + The name of a family of viruses. + + Family name (virus) + true + + + + + + + + + beta12orEarlier + beta13 + + + The name of a SwissRegulon database. + + Database name (SwissRegulon) + true + + + + + + + + + + beta12orEarlier + A feature identifier as used in the SwissRegulon database. + + + + This can be name of a gene, the ID of a TFBS, or genomic coordinates in form "chr:start..end". + Sequence feature ID (SwissRegulon) + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the NMPDR database. + + + + A FIG ID consists of four parts: a prefix, genome id, locus type and id number. + FIG ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the Xenbase database. + + + + Gene ID (Xenbase) + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the Genolist database. + + + + Gene ID (Genolist) + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the Genolist genes database. + + Gene name (Genolist) + true + + + + + + + + + + beta12orEarlier + Identifier of an entry (promoter) from the ABS database. + ABS identifier + + + + ABS ID + + + + + + + + + + beta12orEarlier + Identifier of a transcription factor from the AraC-XylS database. + + + + AraC-XylS ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name of an entry (gene) from the HUGO database. + + Gene name (HUGO) + true + + + + + + + + + + beta12orEarlier + Identifier of a locus from the PseudoCAP database. + + + + Locus ID (PseudoCAP) + + + + + + + + + + beta12orEarlier + Identifier of a locus from the UTR database. + + + + Locus ID (UTR) + + + + + + + + + + beta12orEarlier + Unique identifier of a monosaccharide from the MonosaccharideDB database. + + + + MonosaccharideDB ID + + + + + + + + + beta12orEarlier + beta13 + + + The name of a subdivision of the Collagen Mutation Database (CMD) database. + + Database name (CMD) + true + + + + + + + + + beta12orEarlier + beta13 + + + The name of a subdivision of the Osteogenesis database. + + Database name (Osteogenesis) + true + + + + + + + + + beta12orEarlier + true + An identifier of a particular genome. + + + + Genome identifier + + + + + + + + + beta12orEarlier + 1.26 + + + An identifier of a particular genome. + + + GenomeReviews ID + true + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the GlycoMapsDB (Glycosciences.de) database. + + + + GlycoMap ID + + + + + + + + + beta12orEarlier + A conformational energy map of the glycosidic linkages in a carbohydrate molecule. + + + Carbohydrate conformational map + + + + + + + + + + beta12orEarlier + The name of a transcription factor. + + + + Transcription factor name + + + + + + + + + + beta12orEarlier + Identifier of a membrane transport proteins from the transport classification database (TCDB). + + + + TCID + + + + + + + + + beta12orEarlier + PF[0-9]{5} + Name of a domain from the Pfam database. + + + + Pfam domain name + + + + + + + + + + beta12orEarlier + CL[0-9]{4} + Accession number of a Pfam clan. + + + + Pfam clan ID + + + + + + + + + + beta12orEarlier + Identifier for a gene from the VectorBase database. + VectorBase ID + + + + Gene ID (VectorBase) + + + + + + + + + beta12orEarlier + Identifier of an entry from the UTRSite database of regulatory motifs in eukaryotic UTRs. + + + + UTRSite ID + + + + + + + + + + + + + + + beta12orEarlier + An informative report about a specific or conserved pattern in a molecular sequence, such as its context in genes or proteins, its role, origin or method of construction, etc. + Sequence motif report + Sequence profile report + + + Sequence signature report + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on a particular locus. + + Locus annotation + true + + + + + + + + + beta12orEarlier + Official name of a protein as used in the UniProt database. + + + + Protein name (UniProt) + + + + + + + + + beta12orEarlier + 1.5 + + + One or more terms from one or more controlled vocabularies which are annotations on an entity. + + The concepts are typically provided as a persistent identifier or some other link the source ontologies. Evidence of the validity of the annotation might be included. + Term ID list + true + + + + + + + + + + beta12orEarlier + Name of a protein family from the HAMAP database. + + + + HAMAP ID + + + + + + + + + beta12orEarlier + 1.12 + + + Basic information concerning an identifier of data (typically including the identifier itself). For example, a gene symbol with information concerning its provenance. + + Identifier with metadata + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation about a gene symbol. + + Gene symbol annotation + true + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a RNA transcript. + + + + Transcript ID + + + + + + + + + + beta12orEarlier + Identifier of an RNA transcript from the H-InvDB database. + + + + HIT ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene cluster in the H-InvDB database. + + + + HIX ID + + + + + + + + + + beta12orEarlier + Identifier of a antibody from the HPA database. + + + + HPA antibody id + + + + + + + + + + beta12orEarlier + Identifier of a human major histocompatibility complex (HLA) or other protein from the IMGT/HLA database. + + + + IMGT/HLA ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene assigned by the J. Craig Venter Institute (JCVI). + + + + Gene ID (JCVI) + + + + + + + + + beta12orEarlier + The name of a kinase protein. + + + + Kinase name + + + + + + + + + + beta12orEarlier + Identifier of a physical entity from the ConsensusPathDB database. + + + + ConsensusPathDB entity ID + + + + + + + + + + beta12orEarlier + Name of a physical entity from the ConsensusPathDB database. + + + + ConsensusPathDB entity name + + + + + + + + + + beta12orEarlier + The number of a strain of algae and protozoa from the CCAP database. + + + + CCAP strain number + + + + + + + + + beta12orEarlier + true + An identifier of stock from a catalogue of biological resources. + + + + Stock number + + + + + + + + + + beta12orEarlier + A stock number from The Arabidopsis information resource (TAIR). + + + + Stock number (TAIR) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the RNA editing database (REDIdb). + + + + REDIdb ID + + + + + + + + + beta12orEarlier + Name of a domain from the SMART database. + + + + SMART domain name + + + + + + + + + + beta12orEarlier + Accession number of an entry (family) from the PANTHER database. + Panther family ID + + + + Protein family ID (PANTHER) + + + + + + + + + + beta12orEarlier + A unique identifier for a virus from the RNAVirusDB database. + + + + Could list (or reference) other taxa here from https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary. + RNAVirusDB ID + + + + + + + + + beta12orEarlier + true + An accession of annotation on a (group of) viruses (catalogued in a database). + Virus ID + + + + Virus identifier + + + + + + + + + + beta12orEarlier + An identifier of a genome project assigned by NCBI. + + + + NCBI Genome Project ID + + + + + + + + + + beta12orEarlier + A unique identifier of a whole genome assigned by the NCBI. + + + + NCBI genome accession + + + + + + + + + beta12orEarlier + 1.8 + + Data concerning, extracted from, or derived from the analysis of a sequence profile, such as its name, length, technical details about the profile or it's construction, the biological role or annotation, and so on. + + + Sequence profile data + true + + + + + + + + + + beta12orEarlier + Unique identifier for a membrane protein from the TopDB database. + TopDB ID + + + + Protein ID (TopDB) + + + + + + + + + beta12orEarlier + true + Identifier of a two-dimensional (protein) gel. + Gel identifier + + + + Gel ID + + + + + + + + + + beta12orEarlier + Name of a reference map gel from the SWISS-2DPAGE database. + + + + Reference map name (SWISS-2DPAGE) + + + + + + + + + + beta12orEarlier + Unique identifier for a peroxidase protein from the PeroxiBase database. + PeroxiBase ID + + + + Protein ID (PeroxiBase) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the SISYPHUS database of tertiary structure alignments. + + + + SISYPHUS ID + + + + + + + + + + + beta12orEarlier + true + Accession of an open reading frame (catalogued in a database). + + + + ORF ID + + + + + + + + + beta12orEarlier + true + An identifier of an open reading frame. + + + + ORF identifier + + + + + + + + + + beta12orEarlier + [1-9][0-9]* + Identifier of an entry from the GlycosciencesDB database. + LInear Notation for Unique description of Carbohydrate Sequences ID + + + + LINUCS ID + + + + + + + + + + + beta12orEarlier + Unique identifier for a ligand-gated ion channel protein from the LGICdb database. + LGICdb ID + + + + Protein ID (LGICdb) + + + + + + + + + + beta12orEarlier + Identifier of an EST sequence from the MaizeDB database. + + + + MaizeDB ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the MfunGD database. + + + + Gene ID (MfunGD) + + + + + + + + + + + + + + + + beta12orEarlier + An identifier of a disease from the Orpha database. + + + + Orpha number + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the EcID database. + + + + Protein ID (EcID) + + + + + + + + + + beta12orEarlier + A unique identifier of a cDNA molecule catalogued in the RefSeq database. + + + + Clone ID (RefSeq) + + + + + + + + + + beta12orEarlier + Unique identifier for a cone snail toxin protein from the ConoServer database. + + + + Protein ID (ConoServer) + + + + + + + + + + beta12orEarlier + Identifier of a GeneSNP database entry. + + + + GeneSNP ID + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a lipid. + + + + Lipid identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + A flat-file (textual) data archive. + + + Databank + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A web site providing data (web pages) on a common theme to a HTTP client. + + + Web portal + true + + + + + + + + + + beta12orEarlier + Identifier for a gene from the VBASE2 database. + VBASE2 ID + + + + Gene ID (VBASE2) + + + + + + + + + + beta12orEarlier + A unique identifier for a virus from the DPVweb database. + DPVweb virus ID + + + + DPVweb ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a pathway from the BioSystems pathway database. + + + + Pathway ID (BioSystems) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data concerning a proteomics experiment. + + Experimental data (proteomics) + true + + + + + + + + + beta12orEarlier + An abstract of a scientific article. + + + Abstract + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a lipid structure. + + + Lipid structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the (3D) structure of a drug. + + + Drug structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the (3D) structure of a toxin. + + + Toxin structure + + + + + + + + + + beta12orEarlier + A simple matrix of numbers, where each value (or column of values) is derived derived from analysis of the corresponding position in a sequence alignment. + PSSM + + + Position-specific scoring matrix + + + + + + + + + beta12orEarlier + A matrix of distances between molecular entities, where a value (distance) is (typically) derived from comparison of two entities and reflects their similarity. + + + Distance matrix + + + + + + + + + beta12orEarlier + Distances (values representing similarity) between a group of molecular structures. + + + Structural distance matrix + + + + + + + + + beta12orEarlier + 1.5 + + + Bibliographic data concerning scientific article(s). + + Article metadata + true + + + + + + + + + beta12orEarlier + A concept from a biological ontology. + + + This includes any fields from the concept definition such as concept name, definition, comments and so on. + Ontology concept + + + + + + + + + beta12orEarlier + A numerical measure of differences in the frequency of occurrence of synonymous codons in DNA sequences. + + + Codon usage bias + + + + + + + + + beta12orEarlier + 1.8 + + Northern Blot experiments. + + + Northern blot report + true + + + + + + + + + beta12orEarlier + A map showing distance between genetic markers estimated by radiation-induced breaks in a chromosome. + RH map + + + The radiation method can break very closely linked markers providing a more detailed map. Most genetic markers and subsequences may be located to a defined map position and with a more precise estimates of distance than a linkage map. + Radiation hybrid map + + + + + + + + + beta12orEarlier + A simple list of data identifiers (such as database accessions), possibly with additional basic information on the addressed data. + + + ID list + + + + + + + + + beta12orEarlier + Gene frequencies data that may be read during phylogenetic tree calculation. + + + Phylogenetic gene frequencies data + + + + + + + + + beta12orEarlier + beta13 + + + A set of sub-sequences displaying some type of polymorphism, typically indicating the sequence in which they occur, their position and other metadata. + + Sequence set (polymorphic) + true + + + + + + + + + beta12orEarlier + 1.5 + + + An entry (resource) from the DRCAT bioinformatics resource catalogue. + + DRCAT resource + true + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a multi-protein complex; two or more polypeptides chains in a stable, functional association with one another. + + + Protein complex + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a protein (3D) structural motif; any group of contiguous or non-contiguous amino acid residues but typically those forming a feature with a structural or functional role. + + + Protein structural motif + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific lipid 3D structure(s). + + + Lipid report + + + + + + + + + beta12orEarlier + 1.4 + + + Image of one or more molecular secondary structures. + + Secondary structure image + true + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on general information, properties or features of one or more molecular secondary structures. + + Secondary structure report + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + DNA sequence-specific feature annotation (not in a feature table). + + DNA features + true + + + + + + + + + beta12orEarlier + 1.5 + + + Features concerning RNA or regions of DNA that encode an RNA molecule. + + RNA features report + true + + + + + + + + + beta12orEarlier + Biological data that has been plotted as a graph of some type, or plotting instructions for rendering such a graph. + Graph data + + + Plot + + + + + + + + + + beta12orEarlier + A protein sequence and associated metadata. + Sequence record (protein) + + + Protein sequence record + + + + + + + + + + beta12orEarlier + A nucleic acid sequence and associated metadata. + Nucleotide sequence record + Sequence record (nucleic acid) + DNA sequence record + RNA sequence record + + + Nucleic acid sequence record + + + + + + + + + beta12orEarlier + 1.8 + + A protein sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database. + + + Protein sequence record (full) + true + + + + + + + + + beta12orEarlier + 1.8 + + A nucleic acid sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database. + + + Nucleic acid sequence record (full) + true + + + + + + + + + beta12orEarlier + true + Accession of a mathematical model, typically an entry from a database. + + + + Biological model accession + + + + + + + + + + beta12orEarlier + The name of a type or group of cells. + + + + Cell type name + + + + + + + + + beta12orEarlier + true + Accession of a type or group of cells (catalogued in a database). + Cell type ID + + + + Cell type accession + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of chemicals. + Chemical compound accession + Small molecule accession + + + + Compound accession + + + + + + + + + beta12orEarlier + true + Accession of a drug. + + + + Drug accession + + + + + + + + + + beta12orEarlier + Name of a toxin. + + + + Toxin name + + + + + + + + + beta12orEarlier + true + Accession of a toxin (catalogued in a database). + + + + Toxin accession + + + + + + + + + beta12orEarlier + true + Accession of a monosaccharide (catalogued in a database). + + + + Monosaccharide accession + + + + + + + + + + beta12orEarlier + Common name of a drug. + + + + Drug name + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of carbohydrates. + + + + Carbohydrate accession + + + + + + + + + beta12orEarlier + true + Accession of a specific molecule (catalogued in a database). + + + + Molecule accession + + + + + + + + + beta12orEarlier + true + Accession of a data definition (catalogued in a database). + + + + Data resource definition accession + + + + + + + + + beta12orEarlier + true + An accession of a particular genome (in a database). + + + + Genome accession + + + + + + + + + beta12orEarlier + true + An accession of a map of a molecular sequence (deposited in a database). + + + + Map accession + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of lipids. + + + + Lipid accession + + + + + + + + + + beta12orEarlier + true + Accession of a peptide deposited in a database. + + + + Peptide ID + + + + + + + + + + beta12orEarlier + true + Accession of a protein deposited in a database. + Protein accessions + + + + Protein accession + + + + + + + + + beta12orEarlier + true + An accession of annotation on a (group of) organisms (catalogued in a database). + + + + Organism accession + + + + + + + + + + beta12orEarlier + Moby:BriefOccurrenceRecord + Moby:FirstEpithet + Moby:InfraspecificEpithet + Moby:OccurrenceRecord + Moby:Organism_Name + Moby:OrganismsLongName + Moby:OrganismsShortName + The name of an organism (or group of organisms). + + + + Organism name + + + + + + + + + beta12orEarlier + true + Accession of a protein family (that is deposited in a database). + + + + Protein family accession + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of transcription factors or binding sites. + + + + Transcription factor accession + + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a strain of an organism variant, typically a plant, virus or bacterium. + + + + Strain accession + + + + + + + + + beta12orEarlier + true + 1.26 + + An accession of annotation on a (group of) viruses (catalogued in a database). + + + Virus identifier + true + + + + + + + + + beta12orEarlier + Metadata on sequence features. + + + Sequence features metadata + + + + + + + + + + beta12orEarlier + Identifier of a Gramene database entry. + + + + Gramene identifier + + + + + + + + + beta12orEarlier + An identifier of an entry from the DDBJ sequence database. + DDBJ ID + DDBJ accession number + DDBJ identifier + + + + DDBJ accession + + + + + + + + + beta12orEarlier + An identifier of an entity from the ConsensusPathDB database. + + + + ConsensusPathDB identifier + + + + + + + + + beta12orEarlier + 1.8 + + + Data concerning, extracted from, or derived from the analysis of molecular sequence(s). + + This is a broad data type and is used a placeholder for other, more specific types. + Sequence data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning codon usage. + + This is a broad data type and is used a placeholder for other, more specific types. + Codon usage + true + + + + + + + + + beta12orEarlier + 1.5 + + + + Data derived from the analysis of a scientific text such as a full text article from a scientific journal. + + Article report + true + + + + + + + + + beta12orEarlier + An informative report of information about molecular sequence(s), including basic information (metadata), and reports generated from molecular sequence analysis, including positional features and non-positional properties. + Sequence-derived report + + + Sequence report + + + + + + + + + beta12orEarlier + Data concerning the properties or features of one or more protein secondary structures. + + + Protein secondary structure + + + + + + + + + + beta12orEarlier + A Hopp and Woods plot of predicted antigenicity of a peptide or protein. + + + Hopp and Woods plot + + + + + + + + + beta12orEarlier + 1.21 + + + A melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA). + + + Nucleic acid melting curve + true + + + + + + + + + beta12orEarlier + 1.21 + + A probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). + + + Nucleic acid probability profile + true + + + + + + + + + beta12orEarlier + 1.21 + + A temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). + + + Nucleic acid temperature profile + true + + + + + + + + + beta12orEarlier + 1.8 + + A report typically including a map (diagram) of a gene regulatory network. + + + Gene regulatory network report + true + + + + + + + + + beta12orEarlier + 1.8 + + An informative report on a two-dimensional (2D PAGE) gel. + + + 2D PAGE gel report + true + + + + + + + + + beta12orEarlier + 1.14 + + General annotation on a set of oligonucleotide probes, such as the gene name with which the probe set is associated and which probes belong to the set. + + + Oligonucleotide probe sets annotation + true + + + + + + + + + beta12orEarlier + 1.5 + + + An image from a microarray experiment which (typically) allows a visualisation of probe hybridisation and gene-expression data. + + Microarray image + true + + + + + + + + + beta12orEarlier + Data (typically biological or biomedical) that has been rendered into an image, typically for display on screen. + Image data + + + Image + http://semanticscience.org/resource/SIO_000079 + http://semanticscience.org/resource/SIO_000081 + + + + + + + + + + beta12orEarlier + Image of a molecular sequence, possibly with sequence features or properties shown. + + + Sequence image + + + + + + + + + beta12orEarlier + A report on protein properties concerning hydropathy. + Protein hydropathy report + + + Protein hydropathy data + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning a computational workflow. + + Workflow data + true + + + + + + + + + beta12orEarlier + 1.5 + + + A computational workflow. + + Workflow + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning molecular secondary structure data. + + Secondary structure data + true + + + + + + + + + beta12orEarlier + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw protein sequence (string of characters). + + + Protein sequence (raw) + true + + + + + + + + + beta12orEarlier + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw nucleic acid sequence. + + + Nucleic acid sequence (raw) + true + + + + + + + + + beta12orEarlier + + One or more protein sequences, possibly with associated annotation. + Amino acid sequence + Amino acid sequences + Protein sequences + + + Protein sequence + http://purl.org/biotop/biotop.owl#AminoAcidSequenceInformation + + + + + + + + + beta12orEarlier + One or more nucleic acid sequences, possibly with associated annotation. + Nucleic acid sequences + Nucleotide sequence + Nucleotide sequences + DNA sequence + + + Nucleic acid sequence + http://purl.org/biotop/biotop.owl#NucleotideSequenceInformation + + + + + + + + + beta12orEarlier + Data concerning a biochemical reaction, typically data and more general annotation on the kinetics of enzyme-catalysed reaction. + Enzyme kinetics annotation + Reaction annotation + + + This is a broad data type and is used a placeholder for other, more specific types. + Reaction data + + + + + + + + + beta12orEarlier + Data concerning small peptides. + Peptide data + + + Peptide property + + + + + + + + + beta12orEarlier + Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19. + 1.5 + + + An informative report concerning the classification of protein sequences or structures. + + This is a broad data type and is used a placeholder for other, more specific types. + Protein classification + true + + + + + + + + + beta12orEarlier + 1.8 + + Data concerning specific or conserved pattern in molecular sequences. + + + This is a broad data type and is used a placeholder for other, more specific types. + Sequence motif data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning models representing a (typically multiple) sequence alignment. + + This is a broad data type and is used a placeholder for other, more specific types. + Sequence profile data + true + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning a specific biological pathway or network. + + Pathway or network data + true + + + + + + + + + + + + + + + beta12orEarlier + An informative report concerning or derived from the analysis of a biological pathway or network, such as a map (diagram) or annotation. + + + Pathway or network report + + + + + + + + + beta12orEarlier + A thermodynamic or kinetic property of a nucleic acid molecule. + Nucleic acid property (thermodynamic or kinetic) + Nucleic acid thermodynamic property + + + Nucleic acid thermodynamic data + + + + + + + + + beta12orEarlier + Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19. + 1.5 + + + Data concerning the classification of nucleic acid sequences or structures. + + This is a broad data type and is used a placeholder for other, more specific types. + Nucleic acid classification + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on a classification of molecular sequences, structures or other entities. + + This can include an entire classification, components such as classifiers, assignments of entities to a classification and so on. + Classification report + true + + + + + + + + + beta12orEarlier + 1.8 + + key residues involved in protein folding. + + + Protein features report (key folding sites) + true + + + + + + + + + beta12orEarlier + Geometry data for a protein structure, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc. + Torsion angle data + + + Protein geometry data + + + + + + + + + + beta12orEarlier + An image of protein structure. + Structure image (protein) + + + Protein structure image + + + + + + + + + beta12orEarlier + Weights for sequence positions or characters in phylogenetic analysis where zero is defined as unweighted. + + + Phylogenetic character weights + + + + + + + + + beta12orEarlier + Annotation of one particular positional feature on a biomolecular (typically genome) sequence, suitable for import and display in a genome browser. + Genome annotation track + Genome track + Genome-browser track + Genomic track + Sequence annotation track + + + Annotation track + + + + + + + + + + beta12orEarlier + + P43353|Q7M1G0|Q9C199|A5A6J6 + [OPQ][0-9][A-Z0-9]{3}[0-9]|[A-NR-Z][0-9]([A-Z][A-Z0-9]{2}[0-9]){1,2} + Accession number of a UniProt (protein sequence) database entry. + UniProt accession number + UniProt entry accession + UniProtKB accession + UniProtKB accession number + Swiss-Prot entry accession + TrEMBL entry accession + + + + UniProt accession + + + + + + + + + + beta12orEarlier + 16 + [1-9][0-9]? + Identifier of a genetic code in the NCBI list of genetic codes. + + + + NCBI genetic code ID + + + + + + + + + + + + + + + beta12orEarlier + Identifier of a concept in an ontology of biological or bioinformatics concepts and relations. + + + + Ontology concept identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept for a biological process from the GO ontology. + + GO concept name (biological process) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept for a molecular function from the GO ontology. + + GO concept name (molecular function) + true + + + + + + + + + + + + + + + beta12orEarlier + Data concerning the classification, identification and naming of organisms. + Taxonomic data + + + This is a broad data type and is used a placeholder for other, more specific types. + Taxonomy + + + + + + + + + + beta13 + EMBL/GENBANK/DDBJ coding feature protein identifier, issued by International collaborators. + + + + This qualifier consists of a stable ID portion (3+5 format with 3 position letters and 5 numbers) plus a version number after the decimal point. When the protein sequence encoded by the CDS changes, only the version number of the /protein_id value is incremented; the stable part of the /protein_id remains unchanged and as a result will permanently be associated with a given protein; this qualifier is valid only on CDS features which translate into a valid protein. + Protein ID (EMBL/GenBank/DDBJ) + + + + + + + + + beta13 + 1.5 + + A type of data that (typically) corresponds to entries from the primary biological databases and which is (typically) the primary input or output of a tool, i.e. the data the tool processes or generates, as distinct from metadata and identifiers which describe and identify such core data, parameters that control the behaviour of tools, reports of derivative data generated by tools and annotation. + + + Core data entities typically have a format and may be identified by an accession number. + Core data + true + + + + + + + + + + + + + + + beta13 + true + Name or other identifier of molecular sequence feature(s). + + + + Sequence feature identifier + + + + + + + + + + + + + + + beta13 + true + An identifier of a molecular tertiary structure, typically an entry from a structure database. + + + + Structure identifier + + + + + + + + + + + + + + + beta13 + true + An identifier of an array of numerical values, such as a comparison matrix. + + + + Matrix identifier + + + + + + + + + beta13 + 1.8 + + A report (typically a table) on character or word composition / frequency of protein sequence(s). + + + Protein sequence composition + true + + + + + + + + + beta13 + 1.8 + + A report (typically a table) on character or word composition / frequency of nucleic acid sequence(s). + + + Nucleic acid sequence composition (report) + true + + + + + + + + + beta13 + 1.5 + + + A node from a classification of protein structural domain(s). + + Protein domain classification node + true + + + + + + + + + beta13 + Duplicates http://edamontology.org/data_1002, hence deprecated. + 1.23 + + Unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service. + + + CAS number + true + + + + + + + + + + beta13 + Unique identifier of a drug conforming to the Anatomical Therapeutic Chemical (ATC) Classification System, a drug classification system controlled by the WHO Collaborating Centre for Drug Statistics Methodology (WHOCC). + + + + ATC code + + + + + + + + + beta13 + A unique, unambiguous, alphanumeric identifier of a chemical substance as catalogued by the Substance Registration System of the Food and Drug Administration (FDA). + Unique Ingredient Identifier + + + + UNII + + + + + + + + + beta13 + 1.5 + + + Basic information concerning geographical location or time. + + Geotemporal metadata + true + + + + + + + + + beta13 + Metadata concerning the software, hardware or other aspects of a computer system. + + + System metadata + + + + + + + + + beta13 + 1.15 + + A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user. + + + Sequence feature name + true + + + + + + + + + beta13 + Raw data such as measurements or other results from laboratory experiments, as generated from laboratory hardware. + Experimental measurement data + Experimentally measured data + Measured data + Measurement + Measurement data + Measurement metadata + Raw experimental data + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Experimental measurement + + + + + + + + + + beta13 + Raw data (typically MIAME-compliant) for hybridisations from a microarray experiment. + + + Such data as found in Affymetrix CEL or GPR files. + Raw microarray data + + + + + + + + + + + + + + + beta13 + Data generated from processing and analysis of probe set data from a microarray experiment. + Gene annotation (expression) + Gene expression report + Microarray probe set data + + + Such data as found in Affymetrix .CHP files or data from other software such as RMA or dChip. + Processed microarray data + + + + + + + + + + beta13 + The final processed (normalised) data for a set of hybridisations in a microarray experiment. + Gene expression data matrix + Normalised microarray data + + + This combines data from all hybridisations. + Gene expression matrix + + + + + + + + + beta13 + Annotation on a biological sample, for example experimental factors and their values. + + + This might include compound and dose in a dose response experiment. + Sample annotation + + + + + + + + + beta13 + Annotation on the array itself used in a microarray experiment. + + + This might include gene identifiers, genomic coordinates, probe oligonucleotide sequences etc. + Microarray metadata + + + + + + + + + beta13 + 1.8 + + Annotation on laboratory and/or data processing protocols used in an microarray experiment. + + + This might describe e.g. the normalisation methods used to process the raw data. + Microarray protocol annotation + true + + + + + + + + + beta13 + Data concerning the hybridisations measured during a microarray experiment. + + + Microarray hybridisation data + + + + + + + + + beta13 + 1.5 + + + A report of regions in a molecular sequence that are biased to certain characters. + + Sequence features (compositionally-biased regions) + true + + + + + + + + + beta13 + 1.5 + + A report on features in a nucleic acid sequence that indicate changes to or differences between sequences. + + + Nucleic acid features (difference and change) + true + + + + + + + + + + beta13 + A human-readable collection of information about regions within a nucleic acid sequence which form secondary or tertiary (3D) structures. + Nucleic acid features (structure) + Quadruplexes (report) + Stem loop (report) + d-loop (report) + + + The report may be based on analysis of nucleic acid sequence or structural data, or any annotation or information about specific nucleic acid 3D structure(s) or such structures in general. + Nucleic acid structure report + + + + + + + + + beta13 + 1.8 + + short repetitive subsequences (repeat sequences) in a protein sequence. + + + Protein features report (repeats) + true + + + + + + + + + beta13 + 1.8 + + Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more protein sequences. + + + Sequence motif matches (protein) + true + + + + + + + + + beta13 + 1.8 + + Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more nucleic acid sequences. + + + Sequence motif matches (nucleic acid) + true + + + + + + + + + beta13 + 1.5 + + + A report on displacement loops in a mitochondrial DNA sequence. + + A displacement loop is a region of mitochondrial DNA in which one of the strands is displaced by an RNA molecule. + Nucleic acid features (d-loop) + true + + + + + + + + + beta13 + 1.5 + + + A report on stem loops in a DNA sequence. + + A stem loop is a hairpin structure; a double-helical structure formed when two complementary regions of a single strand of RNA or DNA molecule form base-pairs. + Nucleic acid features (stem loop) + true + + + + + + + + + beta13 + An informative report on features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules. This includes reports on a specific gene transcript, clone or EST. + Clone or EST (report) + Gene transcript annotation + Nucleic acid features (mRNA features) + Transcript (report) + mRNA (report) + mRNA features + + + This includes 5'untranslated region (5'UTR), coding sequences (CDS), exons, intervening sequences (intron) and 3'untranslated regions (3'UTR). + Gene transcript report + + + + + + + + + beta13 + 1.8 + + features of non-coding or functional RNA molecules, including tRNA and rRNA. + + + Non-coding RNA + true + + + + + + + + + beta13 + 1.5 + + + Features concerning transcription of DNA into RNA including the regulation of transcription. + + This includes promoters, CAAT signals, TATA signals, -35 signals, -10 signals, GC signals, primer binding sites for initiation of transcription or reverse transcription, enhancer, attenuator, terminators and ribosome binding sites. + Transcriptional features (report) + true + + + + + + + + + beta13 + 1.5 + + + A report on predicted or actual immunoglobulin gene structure including constant, switch and variable regions and diversity, joining and variable segments. + + Nucleic acid features (immunoglobulin gene structure) + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'class' node from the SCOP database. + + SCOP class + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'fold' node from the SCOP database. + + SCOP fold + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'superfamily' node from the SCOP database. + + SCOP superfamily + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'family' node from the SCOP database. + + SCOP family + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'protein' node from the SCOP database. + + SCOP protein + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'species' node from the SCOP database. + + SCOP species + true + + + + + + + + + beta13 + 1.8 + + mass spectrometry experiments. + + + Mass spectrometry experiment + true + + + + + + + + + beta13 + Nucleic acid classification + A human-readable collection of information about a particular family of genes, typically a set of genes with similar sequence that originate from duplication of a common ancestor gene, or any other classification of nucleic acid sequences or structures that reflects gene structure. + Gene annotation (homology information) + Gene annotation (homology) + Gene family annotation + Gene homology (report) + Homology information + + + This includes reports on on gene homologues between species. + Gene family report + + + + + + + + + beta13 + An image of a protein. + + + Protein image + + + + + + + + + beta13 + 1.24 + + + + + An alignment of protein sequences and/or structures. + + Protein alignment + true + + + + + + + + + 1.0 + 1.8 + + sequencing experiment, including samples, sampling, preparation, sequencing, and analysis. + + + NGS experiment + true + + + + + + + + + 1.1 + An informative report about a DNA sequence assembly. + Assembly report + + + This might include an overall quality assessment of the assembly and summary statistics including counts, average length and number of bases for reads, matches and non-matches, contigs, reads in pairs etc. + Sequence assembly report + + + + + + + + + 1.1 + An index of a genome sequence. + + + Many sequence alignment tasks involving many or very large sequences rely on a precomputed index of the sequence to accelerate the alignment. + Genome index + + + + + + + + + 1.1 + 1.8 + + Report concerning genome-wide association study experiments. + + + GWAS report + true + + + + + + + + + 1.2 + The position of a cytogenetic band in a genome. + + + Information might include start and end position in a chromosome sequence, chromosome identifier, name of band and so on. + Cytoband position + + + + + + + + + + + 1.2 + CL_[0-9]{7} + Cell type ontology concept ID. + CL ID + + + + Cell type ontology ID + + + + + + + + + 1.2 + Mathematical model of a network, that contains biochemical kinetics. + + + Kinetic model + + + + + + + + + + 1.3 + Identifier of a COSMIC database entry. + COSMIC identifier + + + + COSMIC ID + + + + + + + + + + 1.3 + Identifier of a HGMD database entry. + HGMD identifier + + + + HGMD ID + + + + + + + + + 1.3 + true + Unique identifier of sequence assembly. + Sequence assembly version + + + + Sequence assembly ID + + + + + + + + + 1.3 + 1.5 + + + A label (text token) describing a type of sequence feature such as gene, transcript, cds, exon, repeat, simple, misc, variation, somatic variation, structural variation, somatic structural variation, constrained or regulatory. + + Sequence feature type + true + + + + + + + + + 1.3 + 1.5 + + + An informative report on gene homologues between species. + + Gene homology (report) + true + + + + + + + + + + + 1.3 + ENSGT00390000003602 + Unique identifier for a gene tree from the Ensembl database. + Ensembl ID (gene tree) + + + + Ensembl gene tree ID + + + + + + + + + 1.3 + A phylogenetic tree that is an estimate of the character's phylogeny. + + + Gene tree + + + + + + + + + 1.3 + A phylogenetic tree that reflects phylogeny of the taxa from which the characters (used in calculating the tree) were sampled. + + + Species tree + + + + + + + + + + + + + + + 1.3 + true + Name or other identifier of an entry from a biosample database. + Sample accession + + + + Sample ID + + + + + + + + + + 1.3 + Identifier of an object from the MGI database. + + + + MGI accession + + + + + + + + + 1.3 + Name of a phenotype. + Phenotype + Phenotypes + + + + Phenotype name + + + + + + + + + 1.4 + A HMM transition matrix contains the probabilities of switching from one HMM state to another. + HMM transition matrix + + + Consider for example an HMM with two states (AT-rich and GC-rich). The transition matrix will hold the probabilities of switching from the AT-rich to the GC-rich state, and vica versa. + Transition matrix + + + + + + + + + 1.4 + A HMM emission matrix holds the probabilities of choosing the four nucleotides (A, C, G and T) in each of the states of a HMM. + HMM emission matrix + + + Consider for example an HMM with two states (AT-rich and GC-rich). The emission matrix holds the probabilities of choosing each of the four nucleotides (A, C, G and T) in the AT-rich state and in the GC-rich state. + Emission matrix + + + + + + + + + 1.4 + 1.15 + + A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states. + + + Hidden Markov model + true + + + + + + + + + 1.4 + true + An identifier of a data format. + + + Format identifier + + + + + + + + + 1.5 + Raw biological or biomedical image generated by some experimental technique. + + + Raw image + http://semanticscience.org/resource/SIO_000081 + + + + + + + + + 1.5 + Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all carbohydrates. + Carbohydrate data + + + Carbohydrate property + + + + + + + + + 1.5 + 1.8 + + Report concerning proteomics experiments. + + + Proteomics experiment report + true + + + + + + + + + 1.5 + 1.8 + + RNAi experiments. + + + RNAi report + true + + + + + + + + + 1.5 + 1.8 + + biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction. + + + Simulation experiment report + true + + + + + + + + + + + + + + + 1.7 + An imaging technique that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body. + MRT image + Magnetic resonance imaging image + Magnetic resonance tomography image + NMRI image + Nuclear magnetic resonance imaging image + + + MRI image + + + + + + + + + + + + + + + 1.7 + An image from a cell migration track assay. + + + Cell migration track image + + + + + + + + + 1.7 + Rate of association of a protein with another protein or some other molecule. + kon + + + Rate of association + + + + + + + + + 1.7 + Multiple gene identifiers in a specific order. + + + Such data are often used for genome rearrangement tools and phylogenetic tree labeling. + Gene order + + + + + + + + + 1.7 + The spectrum of frequencies of electromagnetic radiation emitted from a molecule as a result of some spectroscopy experiment. + Spectra + + + Spectrum + + + + + + + + + + + + + + + 1.7 + Spectral information for a molecule from a nuclear magnetic resonance experiment. + NMR spectra + + + NMR spectrum + + + + + + + + + 1.8 + 1.21 + + A sketch of a small molecule made with some specialised drawing package. + + + Chemical structure sketches are used for presentational purposes but also as inputs to various analysis software. + Chemical structure sketch + true + + + + + + + + + 1.8 + An informative report about a specific or conserved nucleic acid sequence pattern. + + + Nucleic acid signature + + + + + + + + + 1.8 + A DNA sequence. + DNA sequences + + + DNA sequence + + + + + + + + + 1.8 + An RNA sequence. + RNA sequences + + + RNA sequence + + + + + + + + + 1.8 + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw RNA sequence. + + + RNA sequence (raw) + true + + + + + + + + + 1.8 + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw DNA sequence. + + + DNA sequence (raw) + true + + + + + + + + + + + + + + + 1.8 + Data on gene sequence variations resulting large-scale genotyping and DNA sequencing projects. + Gene sequence variations + + + Variations are stored along with a reference genome. + Sequence variations + + + + + + + + + 1.8 + A list of publications such as scientic papers or books. + + + Bibliography + + + + + + + + + 1.8 + A mapping of supplied textual terms or phrases to ontology concepts (URIs). + + + Ontology mapping + + + + + + + + + 1.9 + Any data concerning a specific biological or biomedical image. + Image-associated data + Image-related data + + + This can include basic provenance and technical information about the image, scientific annotation and so on. + Image metadata + + + + + + + + + 1.9 + A human-readable collection of information concerning a clinical trial. + Clinical trial information + + + Clinical trial report + + + + + + + + + 1.10 + A report about a biosample. + Biosample report + + + Reference sample report + + + + + + + + + 1.10 + Accession number of an entry from the Gene Expression Atlas. + + + + Gene Expression Atlas Experiment ID + + + + + + + + + + + + + + + 1.12 + true + Identifier of an entry from a database of disease. + + + + Disease identifier + + + + + + + + + + 1.12 + The name of some disease. + + + + Disease name + + + + + + + + + 1.12 + Some material that is used for educational (training) purposes. + OER + Open educational resource + + + Training material + + + + + + + + + 1.12 + A training course available for use on the Web. + On-line course + MOOC + Massive open online course + + + Online course + + + + + + + + + 1.12 + Any free or plain text, typically for human consumption and in English. Can instantiate also as a textual search query. + Free text + Plain text + Textual search query + + + Text + + + + + + + + + + 1.14 + Machine-readable biodiversity data. + Biodiversity information + OTU table + + + Biodiversity data + + + + + + + + + 1.14 + A human-readable collection of information concerning biosafety data. + Biosafety information + + + Biosafety report + + + + + + + + + 1.14 + A report about any kind of isolation of biological material. + Geographic location + Isolation source + + + Isolation report + + + + + + + + + 1.14 + Information about the ability of an organism to cause disease in a corresponding host. + Pathogenicity + + + Pathogenicity report + + + + + + + + + 1.14 + Information about the biosafety classification of an organism according to corresponding law. + Biosafety level + + + Biosafety classification + + + + + + + + + 1.14 + A report about localisation of the isolaton of biological material e.g. country or coordinates. + + + Geographic location + + + + + + + + + 1.14 + A report about any kind of isolation source of biological material e.g. blood, water, soil. + + + Isolation source + + + + + + + + + 1.14 + Experimentally determined parameter of the physiology of an organism, e.g. substrate spectrum. + + + Physiology parameter + + + + + + + + + 1.14 + Experimentally determined parameter of the morphology of an organism, e.g. size & shape. + + + Morphology parameter + + + + + + + + + 1.14 + Experimental determined parameter for the cultivation of an organism. + Cultivation conditions + Carbon source + Culture media composition + Nitrogen source + Salinity + Temperature + pH value + + + Cultivation parameter + + + + + + + + + 1.15 + Data concerning a sequencing experiment, that may be specified as an input to some tool. + + + Sequencing metadata name + + + + + + + + + 1.15 + An identifier of a flow cell of a sequencing machine. + + + A flow cell is used to immobilise, amplify and sequence millions of molecules at once. In Illumina machines, a flowcell is composed of 8 "lanes" which allows 8 experiments in a single analysis. + Flow cell identifier + + + + + + + + + 1.15 + An identifier of a lane within a flow cell of a sequencing machine, within which millions of sequences are immobilised, amplified and sequenced. + + + Lane identifier + + + + + + + + + 1.15 + A number corresponding to the number of an analysis performed by a sequencing machine. For example, if it's the 13th analysis, the run is 13. + + + Run number + + + + + + + + + 1.15 + Data concerning ecology; for example measurements and reports from the study of interactions among organisms and their environment. + + + This is a broad data type and is used a placeholder for other, more specific types. + Ecological data + + + + + + + + + 1.15 + The mean species diversity in sites or habitats at a local scale. + α-diversity + + + Alpha diversity data + + + + + + + + + 1.15 + The ratio between regional and local species diversity. + True beta diversity + β-diversity + + + Beta diversity data + + + + + + + + + 1.15 + The total species diversity in a landscape. + ɣ-diversity + + + Gamma diversity data + + + + + + + + + + 1.15 + A plot in which community data (e.g. species abundance data) is summarised. Similar species and samples are plotted close together, and dissimilar species and samples are plotted placed far apart. + + + Ordination plot + + + + + + + + + 1.16 + A ranked list of categories (usually ontology concepts), each associated with a statistical metric of over-/under-representation within the studied data. + Enrichment report + Over-representation report + Functional enrichment report + + + Over-representation data + + + + + + + + + + + + + + + 1.16 + GO-term report + A ranked list of Gene Ontology concepts, each associated with a p-value, concerning or derived from the analysis of e.g. a set of genes or proteins. + GO-term enrichment report + Gene ontology concept over-representation report + Gene ontology enrichment report + Gene ontology term enrichment report + + + GO-term enrichment data + + + + + + + + + 1.16 + Score for localization of one or more post-translational modifications in peptide sequence measured by mass spectrometry. + False localisation rate + PTM localisation + PTM score + + + Localisation score + + + + + + + + + + 1.16 + Identifier of a protein modification catalogued in the Unimod database. + + + + Unimod ID + + + + + + + + + 1.16 + Identifier for mass spectrometry proteomics data in the proteomexchange.org repository. + + + + ProteomeXchange ID + + + + + + + + + 1.16 + Groupings of expression profiles according to a clustering algorithm. + Clustered gene expression profiles + + + Clustered expression profiles + + + + + + + + + + 1.16 + An identifier of a concept from the BRENDA ontology. + + + + BRENDA ontology concept ID + + + + + + + + + + 1.16 + A text (such as a scientific article), annotated with notes, data and metadata, such as recognised entities, concepts, and their relations. + + + Annotated text + + + + + + + + + 1.16 + A structured query, in form of a script, that defines a database search task. + + + Query script + + + + + + + + + + + + + + + 1.19 + Structural 3D model (volume map) from electron microscopy. + + + 3D EM Map + + + + + + + + + + + + + + + 1.19 + Annotation on a structural 3D EM Map from electron microscopy. This might include one or several locations in the map of the known features of a particular macromolecule. + + + 3D EM Mask + + + + + + + + + + + + + + + 1.19 + Raw DDD movie acquisition from electron microscopy. + + + EM Movie + + + + + + + + + + + + + + + 1.19 + Raw acquisition from electron microscopy or average of an aligned DDD movie. + + + EM Micrograph + + + + + + + + + + + + + + + 1.21 + Data coming from molecular simulations, computer "experiments" on model molecules. + + + Typically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic). + Molecular simulation data + + + + + + + + + + 1.21 + Identifier of an entry from the RNA central database of annotated human miRNAs. + + + + There are canonical and taxon-specific forms of RNAcentral ID. Canonical form e.g. urs_9or10digits identifies an RNA sequence (within the RNA central database) which may appear in multiple sequences. Taxon-specific form identifies a sequence in the specific taxon (e.g. urs_9or10digits_taxonID). + RNA central ID + + + + + + + + + 1.21 + A human-readable systematic collection of patient (or population) health information in a digital format. + EHR + EMR + Electronic medical record + + + Electronic health record + + + + + + + + + 1.22 + Data coming from molecular simulations, computer "experiments" on model molecules. Typically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic). + + + Simulation + + + + + + + + + 1.22 + Dynamic information of a structure molecular system coming from a molecular simulation: XYZ 3D coordinates (sometimes with their associated velocities) for every atom along time. + + + Trajectory data + + + + + + + + + 1.22 + Force field parameters: charges, masses, radii, bond lengths, bond dihedrals, etc. define the structural molecular system, and are essential for the proper description and simulation of a molecular system. + + + Forcefield parameters + + + + + + + + + 1.22 + Static information of a structure molecular system that is needed for a molecular simulation: the list of atoms, their non-bonded parameters for Van der Waals and electrostatic interactions, and the complete connectivity in terms of bonds, angles and dihedrals. + + + Topology data + + + + + + + + + 1.22 + Visualization of distribution of quantitative data, e.g. expression data, by histograms, violin plots and density plots. + Density plot + + + Histogram + + + + + + + + + 1.23 + Report of the quality control review that was made of factors involved in a procedure. + QC metrics + QC report + Quality control metrics + Quality control report + + + + + + + + + 1.23 + A table of unnormalized values representing summarised read counts per genomic region (e.g. gene, transcript, peak). + Read count matrix + + + Count matrix + + + + + + + + + 1.24 + Alignment (superimposition) of DNA tertiary (3D) structures. + Structure alignment (DNA) + + + DNA structure alignment + + + + + + + + + 1.24 + A score derived from the P-value to ensure correction for multiple tests. The Q-value provides an estimate of the positive False Discovery Rate (pFDR), i.e. the rate of false positives among all the cases reported positive: pFDR = FP / (FP + TP). + Adjusted P-value + FDR + Padj + pFDR + + + Q-values are widely used in high-throughput data analysis (e.g. detection of differentially expressed genes from transcriptome data). + Q-value + + + + + + + + + + + 1.24 + A profile HMM is a variant of a Hidden Markov model that is derived specifically from a set of (aligned) biological sequences. Profile HMMs provide the basis for a position-specific scoring system, which can be used to align sequences and search databases for related sequences. + + + Profile HMM + + + + + + + + + + + + 1.24 + + WP[0-9]+ + Identifier of a pathway from the WikiPathways pathway database. + WikiPathways ID + WikiPathways pathway ID + + + + Pathway ID (WikiPathways) + + + + + + + + + + + + + + + 1.24 + A ranked list of pathways, each associated with z-score, p-value or similar, concerning or derived from the analysis of e.g. a set of genes or proteins. + Pathway analysis results + Pathway enrichment report + Pathway over-representation report + Pathway report + Pathway term enrichment report + + + Pathway overrepresentation data + + + + + + + + + 1.26 + + + \d{4}-\d{4}-\d{4}-\d{3}(\d|X) + Identifier of a researcher registered with the ORCID database. Used to identify author IDs. + + + + ORCID Identifier + + + + + + + + + + + beta12orEarlier + + + + Chemical structure specified in Simplified Molecular Input Line Entry System (SMILES) line notation. + + + SMILES + + + + + + + + + + + beta12orEarlier + Chemical structure specified in IUPAC International Chemical Identifier (InChI) line notation. + + + InChI + + + + + + + + + + beta12orEarlier + Chemical structure specified by Molecular Formula (MF), including a count of each element in a compound. + + + The general MF query format consists of a series of valid atomic symbols, with an optional number or range. + mf + + + + + + + + + + beta12orEarlier + The InChIKey (hashed InChI) is a fixed length (25 character) condensed digital representation of an InChI chemical structure specification. It uniquely identifies a chemical compound. + + + An InChIKey identifier is not human- nor machine-readable but is more suitable for web searches than an InChI chemical structure specification. + InChIKey + + + + + + + + + beta12orEarlier + SMILES ARbitrary Target Specification (SMARTS) format for chemical structure specification, which is a subset of the SMILES line notation. + + + smarts + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence with possible ambiguity, unknown positions and non-sequence characters. + + + Non-sequence characters may be used for example for gaps. + nucleotide + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Nucleotide_sequence + + + + + + + + + + beta12orEarlier + Alphabet for a protein sequence with possible ambiguity, unknown positions and non-sequence characters. + + + Non-sequence characters may be used for gaps and translation stop. + protein + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Amino_acid_sequence + + + + + + + + + + beta12orEarlier + Alphabet for the consensus of two or more molecular sequences. + + + consensus + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure nucleotide + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence (characters ACGTU only) with possible unknown positions but without ambiguity or non-sequence characters . + + + unambiguous pure nucleotide + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence with possible ambiguity, unknown positions and non-sequence characters. + + + dna + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#DNA_sequence + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence with possible ambiguity, unknown positions and non-sequence characters. + + + rna + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#RNA_sequence + + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence (characters ACGT only) with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure dna + + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure dna + + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence (characters ACGU only) with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure rna sequence + + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure rna + + + + + + + + + + beta12orEarlier + Alphabet for any protein sequence with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure protein + + + + + + + + + + beta12orEarlier + Alphabet for any protein sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure protein + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from UniGene. + + A UniGene entry includes a set of transcript sequences assigned to the same transcription locus (gene or expressed pseudogene), with information on protein similarities, gene expression, cDNA clone reagents, and genomic location. + UniGene entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the COG database of clusters of (related) protein sequences. + + COG sequence cluster format + true + + + + + + + + + + beta12orEarlier + Format for sequence positions (feature location) as used in DDBJ/EMBL/GenBank database. + Feature location + + + EMBL feature location + + + + + + + + + + beta12orEarlier + Report format for tandem repeats in a nucleotide sequence (format generated by the Sanger Centre quicktandem program). + + + quicktandem + + + + + + + + + + beta12orEarlier + Report format for inverted repeats in a nucleotide sequence (format generated by the Sanger Centre inverted program). + + + Sanger inverted repeats + + + + + + + + + + beta12orEarlier + Report format for tandem repeats in a sequence (an EMBOSS report format). + + + EMBOSS repeat + + + + + + + + + + beta12orEarlier + Format of a report on exon-intron structure generated by EMBOSS est2genome. + + + est2genome format + + + + + + + + + + beta12orEarlier + Report format for restriction enzyme recognition sites used by EMBOSS restrict program. + + + restrict format + + + + + + + + + + beta12orEarlier + Report format for restriction enzyme recognition sites used by EMBOSS restover program. + + + restover format + + + + + + + + + + beta12orEarlier + Report format for restriction enzyme recognition sites used by REBASE database. + + + REBASE restriction sites + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using FASTA. + + + This includes (typically) score data, alignment data and a histogram (of observed and expected distribution of E values.) + FASTA search results format + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using some variant of BLAST. + + + This includes score data, alignment data and summary table. + BLAST results + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using some variant of MSPCrunch. + + + mspcrunch + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using some variant of Smith Waterman. + + + Smith-Waterman format + + + + + + + + + + beta12orEarlier + Format of EMBASSY domain hits file (DHF) of hits (sequences) with domain classification information. + + + The hits are relatives to a SCOP or CATH family and are found from a search of a sequence database. + dhf + + + + + + + + + + beta12orEarlier + Format of EMBASSY ligand hits file (LHF) of database hits (sequences) with ligand classification information. + + + The hits are putative ligand-binding sequences and are found from a search of a sequence database. + lhf + + + + + + + + + + beta12orEarlier + Results format for searches of the InterPro database. + + + InterPro hits format + + + + + + + + + beta12orEarlier + Format of results of a search of the InterPro database showing matches of query protein sequence(s) to InterPro entries. + + + The report includes a classification of regions in a query protein sequence which are assigned to a known InterPro protein family or group. + InterPro protein view report format + + + + + + + + + beta12orEarlier + Format of results of a search of the InterPro database showing matches between protein sequence(s) and signatures for an InterPro entry. + + + The table presents matches between query proteins (rows) and signature methods (columns) for this entry. Alternatively the sequence(s) might be from from the InterPro entry itself. The match position in the protein sequence and match status (true positive, false positive etc) are indicated. + InterPro match table format + + + + + + + + + + beta12orEarlier + Dirichlet distribution HMMER format. + + + HMMER Dirichlet prior + + + + + + + + + + beta12orEarlier + Dirichlet distribution MEME format. + + + MEME Dirichlet prior + + + + + + + + + + beta12orEarlier + Format of a report from the HMMER package on the emission and transition counts of a hidden Markov model. + + + HMMER emission and transition + + + + + + + + + + beta12orEarlier + Format of a regular expression pattern from the Prosite database. + + + prosite-pattern + + + + + + + + + + beta12orEarlier + Format of an EMBOSS sequence pattern. + + + EMBOSS sequence pattern + + + + + + + + + + beta12orEarlier + A motif in the format generated by the MEME program. + + + meme-motif + + + + + + + + + + beta12orEarlier + Sequence profile (sequence classifier) format used in the PROSITE database. + + + prosite-profile + + + + + + + + + + beta12orEarlier + A profile (sequence classifier) in the format used in the JASPAR database. + + + JASPAR format + + + + + + + + + + beta12orEarlier + Format of the model of random sequences used by MEME. + + + MEME background Markov model + + + + + + + + + + beta12orEarlier + Format of a hidden Markov model representation used by the HMMER package. + + + HMMER format + + + + + + + + + + + beta12orEarlier + FASTA-style format for multiple sequences aligned by HMMER package to an HMM. + + + HMMER-aln + + + + + + + + + + beta12orEarlier + Format of multiple sequences aligned by DIALIGN package. + + + DIALIGN format + + + + + + + + + + beta12orEarlier + EMBASSY 'domain alignment file' (DAF) format, containing a sequence alignment of protein domains belonging to the same SCOP or CATH family. + + + The format is clustal-like and includes annotation of domain family classification information. + daf + + + + + + + + + + beta12orEarlier + Format for alignment of molecular sequences to MEME profiles (position-dependent scoring matrices) as generated by the MAST tool from the MEME package. + + + Sequence-MEME profile alignment + + + + + + + + + + beta12orEarlier + Format used by the HMMER package for an alignment of a sequence against a hidden Markov model database. + + + HMMER profile alignment (sequences versus HMMs) + + + + + + + + + + beta12orEarlier + Format used by the HMMER package for of an alignment of a hidden Markov model against a sequence database. + + + HMMER profile alignment (HMM versus sequences) + + + + + + + + + + beta12orEarlier + Format of PHYLIP phylogenetic distance matrix data. + + + Data Type must include the distance matrix, probably as pairs of sequence identifiers with a distance (integer or float). + Phylip distance matrix + + + + + + + + + + beta12orEarlier + Dendrogram (tree file) format generated by ClustalW. + + + ClustalW dendrogram + + + + + + + + + + beta12orEarlier + Raw data file format used by Phylip from which a phylogenetic tree is directly generated or plotted. + + + Phylip tree raw + + + + + + + + + + beta12orEarlier + PHYLIP file format for continuous quantitative character data. + + + Phylip continuous quantitative characters + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of phylogenetic property data. + + Phylogenetic property values format + true + + + + + + + + + + beta12orEarlier + PHYLIP file format for phylogenetics character frequency data. + + + Phylip character frequencies format + + + + + + + + + + beta12orEarlier + Format of PHYLIP discrete states data. + + + Phylip discrete states format + + + + + + + + + + beta12orEarlier + Format of PHYLIP cliques data. + + + Phylip cliques format + + + + + + + + + + beta12orEarlier + Phylogenetic tree data format used by the PHYLIP program. + + + Phylip tree format + + + + + + + + + + beta12orEarlier + The format of an entry from the TreeBASE database of phylogenetic data. + + + TreeBASE format + + + + + + + + + + beta12orEarlier + The format of an entry from the TreeFam database of phylogenetic data. + + + TreeFam format + + + + + + + + + + beta12orEarlier + Format for distances, such as Branch Score distance, between two or more phylogenetic trees as used by the Phylip package. + + + Phylip tree distance format + + + + + + + + + + beta12orEarlier + Format of an entry from the DSSP database (Dictionary of Secondary Structure in Proteins). + + + The DSSP database is built using the DSSP application which defines secondary structure, geometrical features and solvent exposure of proteins, given atomic coordinates in PDB format. + dssp + + + + + + + + + + beta12orEarlier + Entry format of the HSSP database (Homology-derived Secondary Structure in Proteins). + + + hssp + + + + + + + + + + beta12orEarlier + Format of RNA secondary structure in dot-bracket notation, originally generated by the Vienna RNA package/server. + Vienna RNA format + Vienna RNA secondary structure format + + + Dot-bracket format + + + + + + + + + + beta12orEarlier + Format of local RNA secondary structure components with free energy values, generated by the Vienna RNA package/server. + + + Vienna local RNA secondary structure format + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Format of an entry (or part of an entry) from the PDB database. + PDB entry format + + + PDB database entry format + + + + + + + + + + beta12orEarlier + Entry format of PDB database in PDB format. + PDB format + + + PDB + + + + + + + + + + beta12orEarlier + Entry format of PDB database in mmCIF format. + + + mmCIF + + + + + + + + + + beta12orEarlier + Entry format of PDB database in PDBML (XML) format. + + + PDBML + + + + + + + + + beta12orEarlier + beta12orEarlier + + Format of a matrix of 3D-1D scores used by the EMBOSS Domainatrix applications. + + + Domainatrix 3D-1D scoring matrix format + true + + + + + + + + + + beta12orEarlier + Amino acid index format used by the AAindex database. + + + aaindex + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from IntEnz (The Integrated Relational Enzyme Database). + + IntEnz is the master copy of the Enzyme Nomenclature, the recommendations of the NC-IUBMB on the Nomenclature and Classification of Enzyme-Catalysed Reactions. + IntEnz enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the BRENDA enzyme database. + + BRENDA enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the KEGG REACTION database of biochemical reactions. + + KEGG REACTION enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the KEGG ENZYME database. + + KEGG ENZYME enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the proto section of the REBASE enzyme database. + + REBASE proto enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the withrefm section of the REBASE enzyme database. + + REBASE withrefm enzyme report format + true + + + + + + + + + + beta12orEarlier + Format of output of the Pcons Model Quality Assessment Program (MQAP). + + + Pcons ranks protein models by assessing their quality based on the occurrence of recurring common three-dimensional structural patterns. Pcons returns a score reflecting the overall global quality and a score for each individual residue in the protein reflecting the local residue quality. + Pcons report format + + + + + + + + + + beta12orEarlier + Format of output of the ProQ protein model quality predictor. + + + ProQ is a neural network-based predictor that predicts the quality of a protein model based on the number of structural features. + ProQ report format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of SMART domain assignment data. + + The SMART output file includes data on genetically mobile domains / analysis of domain architectures, including phyletic distributions, functional class, tertiary structures and functionally important residues. + SMART domain assignment report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the BIND database of protein interaction. + + BIND entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the IntAct database of protein interaction. + + IntAct entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the InterPro database of protein signatures (sequence classifiers) and classified sequences. + + This includes signature metadata, sequence references and a reference to the signature itself. There is normally a header (entry accession numbers and name), abstract, taxonomy information, example proteins etc. Each entry also includes a match list which give a number of different views of the signature matches for the sequences in each InterPro entry. + InterPro entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the textual abstract of signatures in an InterPro entry and its protein matches. + + References are included and a functional inference is made where possible. + InterPro entry abstract format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Gene3D protein secondary database. + + Gene3D entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the PIRSF protein secondary database. + + PIRSF entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the PRINTS protein secondary database. + + PRINTS entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Panther library of protein families and subfamilies. + + Panther Families and HMMs entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Pfam protein secondary database. + + Pfam entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the SMART protein secondary database. + + SMART entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Superfamily protein secondary database. + + Superfamily entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the TIGRFam protein secondary database. + + TIGRFam entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the ProDom protein domain classification database. + + ProDom entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the FSSP database. + + FSSP entry format + true + + + + + + + + + + beta12orEarlier + A report format for the kinetics of enzyme-catalysed reaction(s) in a format generated by EMBOSS findkm. This includes Michaelis Menten plot, Hanes Woolf plot, Michaelis Menten constant (Km) and maximum velocity (Vmax). + + + findkm + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of Ensembl genome database. + + Ensembl gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of DictyBase genome database. + + DictyBase gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of Candida Genome database. + + CGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of DragonDB genome database. + + DragonDB gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of EcoCyc genome database. + + EcoCyc gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of FlyBase genome database. + + FlyBase gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of Gramene genome database. + + Gramene gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of KEGG GENES genome database. + + KEGG GENES gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Maize genetics and genomics database (MaizeGDB). + + MaizeGDB gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Mouse Genome Database (MGD). + + MGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Rat Genome Database (RGD). + + RGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Saccharomyces Genome Database (SGD). + + SGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Sanger GeneDB genome database. + + GeneDB gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of The Arabidopsis Information Resource (TAIR) genome database. + + TAIR gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the WormBase genomes database. + + WormBase gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Zebrafish Information Network (ZFIN) genome database. + + ZFIN gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the TIGR genome database. + + TIGR gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the dbSNP database. + + dbSNP polymorphism report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the OMIM database of genotypes and phenotypes. + + OMIM entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a record from the HGVbase database of genotypes and phenotypes. + + HGVbase entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a record from the HIVDB database of genotypes and phenotypes. + + HIVDB entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the KEGG DISEASE database. + + KEGG DISEASE entry format + true + + + + + + + + + + beta12orEarlier + Report format on PCR primers and hybridisation oligos as generated by Whitehead primer3 program. + + + Primer3 primer + + + + + + + + + + beta12orEarlier + A format of raw sequence read data from an Applied Biosystems sequencing machine. + + + ABI + + + + + + + + + + beta12orEarlier + Format of MIRA sequence trace information file. + + + mira + + + + + + + + + + beta12orEarlier + + caf + + Common Assembly Format (CAF). A sequence assembly format including contigs, base-call qualities, and other metadata. + + + CAF + + + + + + + + + + beta12orEarlier + + Sequence assembly project file EXP format. + Affymetrix EXP format + + + EXP + + + + + + + + + + beta12orEarlier + + + Staden Chromatogram Files format (SCF) of base-called sequence reads, qualities, and other metadata. + + + SCF + + + + + + + + + + beta12orEarlier + + + PHD sequence trace format to store serialised chromatogram data (reads). + + + PHD + + + + + + + + + + + + + + + + beta12orEarlier + Format of Affymetrix data file of raw image data. + Affymetrix image data file format + + + dat + + + + + + + + + + + + + + + + beta12orEarlier + Format of Affymetrix data file of information about (raw) expression levels of the individual probes. + Affymetrix probe raw data format + + + cel + + + + + + + + + + beta12orEarlier + Format of affymetrix gene cluster files (hc-genes.txt, hc-chips.txt) from hierarchical clustering. + + + affymetrix + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the ArrayExpress microarrays database. + + ArrayExpress entry format + true + + + + + + + + + + beta12orEarlier + Affymetrix data file format for information about experimental conditions and protocols. + Affymetrix experimental conditions data file format + + + affymetrix-exp + + + + + + + + + + + + + + + + beta12orEarlier + + chp + Format of Affymetrix data file of information about (normalised) expression levels of the individual probes. + Affymetrix probe normalised data format + + + CHP + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the Electron Microscopy DataBase (EMDB). + + EMDB entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG PATHWAY database of pathway maps for molecular interactions and reaction networks. + + KEGG PATHWAY entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the MetaCyc metabolic pathways database. + + MetaCyc entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of a report from the HumanCyc metabolic pathways database. + + HumanCyc entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the INOH signal transduction pathways database. + + INOH entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the PATIKA biological pathways database. + + PATIKA entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the reactome biological pathways database. + + Reactome entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the aMAZE biological pathways and molecular interactions database. + + aMAZE entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the CPDB database. + + CPDB entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the Panther Pathways database. + + Panther Pathways entry format + true + + + + + + + + + + beta12orEarlier + Format of Taverna workflows. + + + Taverna workflow format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of mathematical models from the BioModel database. + + Models are annotated and linked to relevant data resources, such as publications, databases of compounds and pathways, controlled vocabularies, etc. + BioModel mathematical model format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG LIGAND chemical database. + + KEGG LIGAND entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG COMPOUND database. + + KEGG COMPOUND entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG PLANT database. + + KEGG PLANT entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG GLYCAN database. + + KEGG GLYCAN entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from PubChem. + + PubChem entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from a database of chemical structures and property predictions. + + ChemSpider entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from Chemical Entities of Biological Interest (ChEBI). + + ChEBI includes an ontological classification defining relations between entities or classes of entities. + ChEBI entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the MSDchem ligand dictionary. + + MSDchem ligand dictionary entry format + true + + + + + + + + + + beta12orEarlier + The format of an entry from the HET group dictionary (HET groups from PDB files). + + + HET group dictionary entry format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG DRUG database. + + KEGG DRUG entry format + true + + + + + + + + + + beta12orEarlier + Format of bibliographic reference as used by the PubMed database. + + + PubMed citation + + + + + + + + + + beta12orEarlier + Format for abstracts of scientific articles from the Medline database. + + + Bibliographic reference information including citation information is included + Medline Display Format + + + + + + + + + + beta12orEarlier + CiteXplore 'core' citation format including title, journal, authors and abstract. + + + CiteXplore-core + + + + + + + + + + beta12orEarlier + CiteXplore 'all' citation format includes all known details such as Mesh terms and cross-references. + + + CiteXplore-all + + + + + + + + + + beta12orEarlier + Article format of the PubMed Central database. + + + pmc + + + + + + + + + + + beta12orEarlier + The format of iHOP (Information Hyperlinked over Proteins) text-mining result. + + + iHOP format + + + + + + + + + + + + + beta12orEarlier + OSCAR format of annotated chemical text. + + + OSCAR (Open-Source Chemistry Analysis Routines) software performs chemistry-specific parsing of chemical documents. It attempts to identify chemical names, ontology concepts, and chemical data from a document. + OSCAR format + + + + + + + + + beta12orEarlier + beta13 + + + Format of an ATOM record (describing data for an individual atom) from a PDB file. + + PDB atom record format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of CATH domain classification information for a polypeptide chain. + + The report (for example http://www.cathdb.info/chain/1cukA) includes chain identifiers, domain identifiers and CATH codes for domains in a given protein chain. + CATH chain report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of CATH domain classification information for a protein PDB file. + + The report (for example http://www.cathdb.info/pdb/1cuk) includes chain identifiers, domain identifiers and CATH codes for domains in a given PDB file. + CATH PDB report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry (gene) format of the NCBI database. + + NCBI gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Moby:GI_Gene + Report format for biological functions associated with a gene name and its alternative names (synonyms, homonyms), as generated by the GeneIlluminator service. + + This includes a gene name and abbreviation of the name which may be in a name space indicating the gene status and relevant organisation. + GeneIlluminator gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Moby:BacMapGeneCard + Format of a report on the DNA and protein sequences for a given gene label from a bacterial chromosome maps from the BacMap database. + + BacMap gene card format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on Escherichia coli genes, proteins and molecules from the CyberCell Database (CCDB). + + ColiCard report format + true + + + + + + + + + + beta12orEarlier + Map of a plasmid (circular DNA) in PlasMapper TextMap format. + + + PlasMapper TextMap + + + + + + + + + + beta12orEarlier + Phylogenetic tree Newick (text) format. + nh + + + newick + + + + + + + + + + beta12orEarlier + Phylogenetic tree TreeCon (text) format. + + + TreeCon format + + + + + + + + + + beta12orEarlier + Phylogenetic tree Nexus (text) format. + + + Nexus format + + + + + + + + + + + beta12orEarlier + true + A defined way or layout of representing and structuring data in a computer file, blob, string, message, or elsewhere. + Data format + Data model + Exchange format + File format + + + The main focus in EDAM lies on formats as means of structuring data exchanged between different tools or resources. The serialisation, compression, or encoding of concrete data formats/models is not in scope of EDAM. Format 'is format of' Data. + Format + + + + + + + + + + + + + + + + + + + Data model + A defined data format has its implicit or explicit data model, and EDAM does not distinguish the two. Some data models, however, do not have any standard way of serialisation into an exchange format, and those are thus not considered formats in EDAM. (Remark: even broader - or closely related - term to 'Data model' would be an 'Information model'.) + + + + + File format + File format denotes only formats of a computer file, but the same formats apply also to data blobs or exchanged messages. + + + + + + + + + beta12orEarlier + beta13 + + + Data format for an individual atom. + + Atomic data format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a molecular sequence record. + + + Sequence record format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for molecular sequence feature information. + + + Sequence feature annotation format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for molecular sequence alignment information. + + + Alignment format + + + + + + + + + + beta12orEarlier + ACEDB sequence format. + + + acedb + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Clustalw output format. + + clustal sequence format + true + + + + + + + + + + beta12orEarlier + Codata entry format. + + + codata + + + + + + + + + beta12orEarlier + Fasta format variant with database name before ID. + + + dbid + + + + + + + + + + beta12orEarlier + EMBL entry format. + EMBL + EMBL sequence format + + + EMBL format + + + + + + + + + + beta12orEarlier + Staden experiment file format. + + + Staden experiment format + + + + + + + + + + beta12orEarlier + FASTA format including NCBI-style IDs. + FASTA format + FASTA sequence format + + + FASTA + + + + + + + + + beta12orEarlier + fastq + fq + FASTQ short read format ignoring quality scores. + FASTAQ + fq + + + FASTQ + + + + + + + + + beta12orEarlier + FASTQ Illumina 1.3 short read format. + + + FASTQ-illumina + + + + + + + + + beta12orEarlier + FASTQ short read format with phred quality. + + + FASTQ-sanger + + + + + + + + + beta12orEarlier + FASTQ Solexa/Illumina 1.0 short read format. + + + FASTQ-solexa + + + + + + + + + + beta12orEarlier + Fitch program format. + + + fitch program + + + + + + + + + + beta12orEarlier + GCG sequence file format. + GCG SSF + + + GCG SSF (single sequence file) file format. + GCG + + + + + + + + + + beta12orEarlier + Genbank entry format. + GenBank + + + GenBank format + + + + + + + + + beta12orEarlier + Genpept protein entry format. + + + Currently identical to refseqp format + genpept + + + + + + + + + + beta12orEarlier + GFF feature file format with sequence in the header. + + + GFF2-seq + + + + + + + + + + beta12orEarlier + GFF3 feature file format with sequence. + + + GFF3-seq + + + + + + + + + beta12orEarlier + FASTA sequence format including NCBI-style GIs. + + + giFASTA format + + + + + + + + + + beta12orEarlier + Hennig86 output sequence format. + + + hennig86 + + + + + + + + + + beta12orEarlier + Intelligenetics sequence format. + + + ig + + + + + + + + + + beta12orEarlier + Intelligenetics sequence format (strict version). + + + igstrict + + + + + + + + + + beta12orEarlier + Jackknifer interleaved and non-interleaved sequence format. + + + jackknifer + + + + + + + + + + beta12orEarlier + Mase program sequence format. + + + mase format + + + + + + + + + + beta12orEarlier + Mega interleaved and non-interleaved sequence format. + + + mega-seq + + + + + + + + + beta12orEarlier + GCG MSF (multiple sequence file) file format. + + + GCG MSF + + + + + + + + + beta12orEarlier + pir + NBRF/PIR entry sequence format. + nbrf + pir + + + nbrf/pir + + + + + + + + + + + beta12orEarlier + Nexus/paup interleaved sequence format. + + + nexus-seq + + + + + + + + + + + beta12orEarlier + PDB sequence format (ATOM lines). + + + pdb format in EMBOSS. + pdbatom + + + + + + + + + + + beta12orEarlier + PDB nucleotide sequence format (ATOM lines). + + + pdbnuc format in EMBOSS. + pdbatomnuc + + + + + + + + + + + beta12orEarlier + PDB nucleotide sequence format (SEQRES lines). + + + pdbnucseq format in EMBOSS. + pdbseqresnuc + + + + + + + + + + + beta12orEarlier + PDB sequence format (SEQRES lines). + + + pdbseq format in EMBOSS. + pdbseqres + + + + + + + + + beta12orEarlier + Plain old FASTA sequence format (unspecified format for IDs). + + + Pearson format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Phylip interleaved sequence format. + + phylip sequence format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + PHYLIP non-interleaved sequence format. + + phylipnon sequence format + true + + + + + + + + + + beta12orEarlier + Raw sequence format with no non-sequence characters. + + + raw + + + + + + + + + + beta12orEarlier + Refseq protein entry sequence format. + + + Currently identical to genpept format + refseqp + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Selex sequence format. + + selex sequence format + true + + + + + + + + + + beta12orEarlier + + + + + Staden suite sequence format. + + + Staden format + + + + + + + + + + beta12orEarlier + + Stockholm multiple sequence alignment format (used by Pfam and Rfam). + + + Stockholm format + + + + + + + + + + + beta12orEarlier + DNA strider output sequence format. + + + strider format + + + + + + + + + beta12orEarlier + UniProtKB entry sequence format. + SwissProt format + UniProt format + + + UniProtKB format + + + + + + + + + beta12orEarlier + txt + Plain text sequence format (essentially unformatted). + + + plain text format (unformatted) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Treecon output sequence format. + + treecon sequence format + true + + + + + + + + + + beta12orEarlier + NCBI ASN.1-based sequence format. + + + ASN.1 sequence format + + + + + + + + + + beta12orEarlier + DAS sequence (XML) format (any type). + das sequence format + + + DAS format + + + + + + + + + + beta12orEarlier + DAS sequence (XML) format (nucleotide-only). + + + The use of this format is deprecated. + dasdna + + + + + + + + + + beta12orEarlier + EMBOSS debugging trace sequence format of full internal data content. + + + debug-seq + + + + + + + + + + beta12orEarlier + Jackknifer output sequence non-interleaved format. + + + jackknifernon + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Mega non-interleaved output sequence format. + + meganon sequence format + true + + + + + + + + + beta12orEarlier + NCBI FASTA sequence format with NCBI-style IDs. + + + There are several variants of this. + NCBI format + + + + + + + + + + + beta12orEarlier + Nexus/paup non-interleaved sequence format. + + + nexusnon + + + + + + + + + beta12orEarlier + + + General Feature Format (GFF) of sequence features. + + + GFF2 + + + + + + + + + beta12orEarlier + + + + Generic Feature Format version 3 (GFF3) of sequence features. + + + GFF3 + + + + + + + + + beta12orEarlier + 1.7 + + PIR feature format. + + + pir + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Swiss-Prot feature format. + + swiss feature + true + + + + + + + + + + beta12orEarlier + DAS GFF (XML) feature format. + DASGFF feature + das feature + + + DASGFF + + + + + + + + + + beta12orEarlier + EMBOSS debugging trace feature format of full internal data content. + + + debug-feat + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBL feature format. + + EMBL feature + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Genbank feature format. + + GenBank feature + true + + + + + + + + + + beta12orEarlier + ClustalW format for (aligned) sequences. + clustal + + + ClustalW format + + + + + + + + + + beta12orEarlier + EMBOSS alignment format for debugging trace of full internal data content. + + + debug + + + + + + + + + + beta12orEarlier + Fasta format for (aligned) sequences. + + + FASTA-aln + + + + + + + + + beta12orEarlier + Pearson MARKX0 alignment format. + + + markx0 + + + + + + + + + beta12orEarlier + Pearson MARKX1 alignment format. + + + markx1 + + + + + + + + + beta12orEarlier + Pearson MARKX10 alignment format. + + + markx10 + + + + + + + + + beta12orEarlier + Pearson MARKX2 alignment format. + + + markx2 + + + + + + + + + beta12orEarlier + Pearson MARKX3 alignment format. + + + markx3 + + + + + + + + + + beta12orEarlier + Alignment format for start and end of matches between sequence pairs. + + + match + + + + + + + + + beta12orEarlier + Mega format for (typically aligned) sequences. + + + mega + + + + + + + + + beta12orEarlier + Mega non-interleaved format for (typically aligned) sequences. + + + meganon + + + + + + + + + beta12orEarlier + beta12orEarlier + + + MSF format for (aligned) sequences. + + msf alignment format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Nexus/paup format for (aligned) sequences. + + nexus alignment format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Nexus/paup non-interleaved format for (aligned) sequences. + + nexusnon alignment format + true + + + + + + + + + beta12orEarlier + EMBOSS simple sequence pairwise alignment format. + + + pair + + + + + + + + + beta12orEarlier + http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format + Phylip format for (aligned) sequences. + PHYLIP + PHYLIP interleaved format + ph + phy + + + PHYLIP format + + + + + + + + + beta12orEarlier + http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format + Phylip non-interleaved format for (aligned) sequences. + PHYLIP sequential format + phylipnon + + + PHYLIP sequential + + + + + + + + + + beta12orEarlier + Alignment format for score values for pairs of sequences. + + + scores format + + + + + + + + + + + beta12orEarlier + SELEX format for (aligned) sequences. + + + selex + + + + + + + + + + beta12orEarlier + EMBOSS simple multiple alignment format. + + + EMBOSS simple format + + + + + + + + + + beta12orEarlier + Simple multiple sequence (alignment) format for SRS. + + + srs format + + + + + + + + + + beta12orEarlier + Simple sequence pair (alignment) format for SRS. + + + srspair + + + + + + + + + + beta12orEarlier + T-Coffee program alignment format. + + + T-Coffee format + + + + + + + + + + + beta12orEarlier + Treecon format for (aligned) sequences. + + + TreeCon-seq + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a phylogenetic tree. + + + Phylogenetic tree format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a biological pathway or network. + + + Biological pathway or network format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a sequence-profile alignment. + + + Sequence-profile alignment format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data format for a sequence-HMM profile alignment. + + Sequence-profile alignment (HMM) format + true + + + + + + + + + + + + + + + beta12orEarlier + Data format for an amino acid index. + + + Amino acid index format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a full-text scientific article. + Literature format + + + Article format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format of a report from text mining. + + + Text mining report format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for reports on enzyme kinetics. + + + Enzyme kinetics report format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on a chemical compound. + Chemical compound annotation format + Chemical structure format + Small molecule report format + Small molecule structure format + + + Chemical data format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on a particular locus, gene, gene system or groups of genes. + Gene features format + + + Gene annotation format + + + + + + + + + beta12orEarlier + true + Format of a workflow. + Programming language + Script format + + + Workflow format + + + + + + + + + beta12orEarlier + true + Data format for a molecular tertiary structure. + + + Tertiary structure format + + + + + + + + + beta12orEarlier + 1.2 + + + Data format for a biological model. + + Biological model format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Text format of a chemical formula. + + + Chemical formula format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of raw (unplotted) phylogenetic data. + + + Phylogenetic character data format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic continuous quantitative character data. + + + Phylogenetic continuous quantitative character format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic discrete states data. + + + Phylogenetic discrete states format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic cliques data. + + + Phylogenetic tree report (cliques) format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic invariants data. + + + Phylogenetic tree report (invariants) format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation format for electron microscopy models. + + Electron microscopy model format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format for phylogenetic tree distance data. + + + Phylogenetic tree report (tree distances) format + + + + + + + + + beta12orEarlier + 1.0 + + + Format for sequence polymorphism data. + + Polymorphism report format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format for reports on a protein family. + + + Protein family report format + + + + + + + + + + + + + + + beta12orEarlier + true + Format for molecular interaction data. + Molecular interaction format + + + Protein interaction format + + + + + + + + + + + + + + + beta12orEarlier + true + Format for sequence assembly data. + + + Sequence assembly format + + + + + + + + + beta12orEarlier + Format for information about a microarray experimental per se (not the data generated from that experiment). + + + Microarray experiment data format + + + + + + + + + + + + + + + beta12orEarlier + Format for sequence trace data (i.e. including base call information). + + + Sequence trace format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a file of gene expression data, e.g. a gene expression matrix or profile. + Gene expression data format + + + Gene expression report format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on genotype / phenotype information. + + Genotype and phenotype annotation format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a map of (typically one) molecular sequence annotated with features. + + + Map format + + + + + + + + + beta12orEarlier + true + Format of a report on PCR primers or hybridisation oligos in a nucleic acid sequence. + + + Nucleic acid features (primers) format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report of general information about a specific protein. + + + Protein report format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report of general information about a specific enzyme. + + Protein report (enzyme) format + true + + + + + + + + + + + + + + + beta12orEarlier + Format of a matrix of 3D-1D scores (amino acid environment probabilities). + + + 3D-1D scoring matrix format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on the quality of a protein three-dimensional model. + + + Protein structure report (quality evaluation) format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on sequence hits and associated data from searching a sequence database. + + + Database hits (sequence) format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a matrix of genetic distances between molecular sequences. + + + Sequence distance matrix format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a sequence motif. + + + Sequence motif format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a sequence profile. + + + Sequence profile format + + + + + + + + + + + + + + + beta12orEarlier + Format of a hidden Markov model. + + + Hidden Markov model format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format of a dirichlet distribution. + + + Dirichlet distribution format + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for the emission and transition counts of a hidden Markov model. + + + HMM emission and transition counts format + + + + + + + + + + + + + + + beta12orEarlier + true + Format for secondary structure (predicted or real) of an RNA molecule. + + + RNA secondary structure format + + + + + + + + + beta12orEarlier + true + Format for secondary structure (predicted or real) of a protein molecule. + + + Protein secondary structure format + + + + + + + + + + + + + + + beta12orEarlier + true + Format used to specify range(s) of sequence positions. + + + Sequence range format + + + + + + + + + + beta12orEarlier + Alphabet for molecular sequence with possible unknown positions but without non-sequence characters. + + + pure + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions but possibly with non-sequence characters. + + + unpure + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions but without ambiguity characters. + + + unambiguous sequence + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions and possible ambiguity characters. + + + ambiguous + + + + + + + + + beta12orEarlier + true + Format used for map of repeats in molecular (typically nucleotide) sequences. + + + Sequence features (repeats) format + + + + + + + + + beta12orEarlier + true + Format used for report on restriction enzyme recognition sites in nucleotide sequences. + + + Nucleic acid features (restriction sites) format + + + + + + + + + beta12orEarlier + 1.10 + + Format used for report on coding regions in nucleotide sequences. + + + Gene features (coding region) format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format used for clusters of molecular sequences. + + + Sequence cluster format + + + + + + + + + beta12orEarlier + Format used for clusters of protein sequences. + + + Sequence cluster format (protein) + + + + + + + + + beta12orEarlier + Format used for clusters of nucleotide sequences. + + + Sequence cluster format (nucleic acid) + + + + + + + + + beta12orEarlier + beta13 + + + Format used for clusters of genes. + + Gene cluster format + true + + + + + + + + + + beta12orEarlier + A text format resembling EMBL entry format. + + + This concept may be used for the many non-standard EMBL-like text formats. + EMBL-like (text) + + + + + + + + + + beta12orEarlier + A text format resembling FASTQ short read format. + + + This concept may be used for non-standard FASTQ short read-like formats. + FASTQ-like format (text) + + + + + + + + + beta12orEarlier + + true + XML format for EMBL entries. + + + EMBLXML + https://fairsharing.org/bsg-s001452/ + + + + + + + + + beta12orEarlier + + true + Specific XML format for EMBL entries (only uses certain sections). + + + cdsxml + https://fairsharing.org/bsg-s001452/ + + + + + + + + + beta12orEarlier + + INSDSeq provides the elements of a sequence as presented in the GenBank/EMBL/DDBJ-style flatfile formats, with a small amount of additional structure. + INSD XML + INSDC XML + + + INSDSeq + + + + + + + + + beta12orEarlier + Geneseq sequence format. + + + geneseq + + + + + + + + + + beta12orEarlier + A text sequence format resembling uniprotkb entry format. + + + UniProt-like (text) + + + + + + + + + beta12orEarlier + 1.8 + + UniProt entry sequence format. + + + UniProt format + true + + + + + + + + + beta12orEarlier + 1.8 + + + ipi sequence format. + + ipi + true + + + + + + + + + + beta12orEarlier + Abstract format used by MedLine database. + + + medline + + + + + + + + + + + + + + + beta12orEarlier + true + Format used for ontologies. + + + Ontology format + + + + + + + + + beta12orEarlier + A serialisation format conforming to the Open Biomedical Ontologies (OBO) model. + + + OBO format + + + + + + + + + + + + + + + + + + + beta12orEarlier + A text format resembling FASTA format. + + + This concept may also be used for the many non-standard FASTA-like formats. + FASTA-like (text) + http://filext.com/file-extension/FASTA + + + + + + + + + beta12orEarlier + 1.8 + + Data format for a molecular sequence record, typically corresponding to a full entry from a molecular sequence database. + + + Sequence record full format + true + + + + + + + + + beta12orEarlier + 1.8 + + Data format for a molecular sequence record 'lite', typically molecular sequence and minimal metadata, such as an identifier of the sequence and/or a comment. + + + Sequence record lite format + true + + + + + + + + + beta12orEarlier + An XML format for EMBL entries. + + + This is a placeholder for other more specific concepts. It should not normally be used for annotation. + EMBL format (XML) + + + + + + + + + + beta12orEarlier + A text format resembling GenBank entry (plain text) format. + + + This concept may be used for the non-standard GenBank-like text formats. + GenBank-like format (text) + + + + + + + + + beta12orEarlier + Text format for a sequence feature table. + + + Sequence feature table format (text) + + + + + + + + + beta12orEarlier + 1.0 + + + Format of a report on organism strain data / cell line. + + Strain data format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format for a report of strain data as used for CIP database entries. + + CIP strain data format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + PHYLIP file format for phylogenetic property data. + + phylip property values + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format (HTML) for the STRING database of protein interaction. + + STRING entry format (HTML) + true + + + + + + + + + + beta12orEarlier + Entry format (XML) for the STRING database of protein interaction. + + + STRING entry format (XML) + + + + + + + + + + beta12orEarlier + GFF feature format (of indeterminate version). + + + GFF + + + + + + + + + beta12orEarlier + + + + Gene Transfer Format (GTF), a restricted version of GFF. + + + GTF + + + + + + + + + + beta12orEarlier + FASTA format wrapped in HTML elements. + + + FASTA-HTML + + + + + + + + + + beta12orEarlier + EMBL entry format wrapped in HTML elements. + + + EMBL-HTML + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the BioCyc enzyme database. + + BioCyc enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the Enzyme nomenclature database (ENZYME). + + ENZYME enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on a gene from the PseudoCAP database. + + PseudoCAP gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on a gene from the GeneCards database. + + GeneCards gene report format + true + + + + + + + + + + beta12orEarlier + Textual format. + Plain text format + txt + + + Data in text format can be compressed into binary format, or can be a value of an XML element or attribute. Markup formats are not considered textual (or more precisely, not plain-textual). + Textual format + http://filext.com/file-extension/TXT + http://www.iana.org/assignments/media-types/media-types.xhtml#text + http://www.iana.org/assignments/media-types/text/plain + + + + + + + + + + + + + + + + beta12orEarlier + HTML format. + Hypertext Markup Language + + + HTML + http://filext.com/file-extension/HTML + + + + + + + + + + beta12orEarlier + xml + + + + eXtensible Markup Language (XML) format. + eXtensible Markup Language + + + Data in XML format can be serialised into text, or binary format. + XML + + + + + + + + + beta12orEarlier + true + Binary format. + + + Only specific native binary formats are listed under 'Binary format' in EDAM. Generic binary formats - such as any data being zipped, or any XML data being serialised into the Efficient XML Interchange (EXI) format - are not modelled in EDAM. Refer to http://wsio.org/compression_004. + Binary format + + + + + + + + + beta12orEarlier + beta13 + + + Typical textual representation of a URI. + + URI format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the NCI-Nature pathways database. + + NCI-Nature pathway entry format + true + + + + + + + + + beta12orEarlier + true + A placeholder concept for visual navigation by dividing data formats by the content of the data that is represented. + Format (typed) + + + This concept exists only to assist EDAM maintenance and navigation in graphical browsers. It does not add semantic information. The concept branch under 'Format (typed)' provides an alternative organisation of the concepts nested under the other top-level branches ('Binary', 'HTML', 'RDF', 'Text' and 'XML'. All concepts under here are already included under those branches. + Format (by type of data) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + + + + + + + Any ontology allowed, none mandatory. Preferably with URIs but URIs are not mandatory. Non-ontology terms are also allowed as the last resort in case of a lack of suitable ontology. + + + + BioXSD-schema-based XML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, Web services, and object-oriented programming. + BioJSON + BioXSD + BioXSD XML + BioXSD XML format + BioXSD data model + BioXSD format + BioXSD in XML + BioXSD in XML format + BioXSD+XML + BioXSD/GTrack + BioXSD|GTrack + BioYAML + + + 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioXSD in XML' is the XML format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'. + BioXSD (XML) + + + + + + + + + + + beta12orEarlier + A serialisation format conforming to the Resource Description Framework (RDF) model. + Resource Description Framework format + RDF + Resource Description Framework + + + RDF format + + + + + + + + + + + beta12orEarlier + Genbank entry format wrapped in HTML elements. + + + GenBank-HTML + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on protein features (domain composition). + + Protein features (domains) format + true + + + + + + + + + beta12orEarlier + A format resembling EMBL entry (plain text) format. + + + This concept may be used for the many non-standard EMBL-like formats. + EMBL-like format + + + + + + + + + beta12orEarlier + A format resembling FASTQ short read format. + + + This concept may be used for non-standard FASTQ short read-like formats. + FASTQ-like format + + + + + + + + + beta12orEarlier + A format resembling FASTA format. + + + This concept may be used for the many non-standard FASTA-like formats. + FASTA-like + + + + + + + + + + beta12orEarlier + A sequence format resembling uniprotkb entry format. + + + uniprotkb-like format + + + + + + + + + + + + + + + beta12orEarlier + Format for a sequence feature table. + + + Sequence feature table format + + + + + + + + + + beta12orEarlier + OBO ontology text format. + + + OBO + + + + + + + + + + beta12orEarlier + OBO ontology XML format. + + + OBO-XML + + + + + + + + + beta12orEarlier + Data format for a molecular sequence record (text). + + + Sequence record format (text) + + + + + + + + + beta12orEarlier + Data format for a molecular sequence record (XML). + + + Sequence record format (XML) + + + + + + + + + beta12orEarlier + XML format for a sequence feature table. + + + Sequence feature table format (XML) + + + + + + + + + beta12orEarlier + Text format for molecular sequence alignment information. + + + Alignment format (text) + + + + + + + + + beta12orEarlier + XML format for molecular sequence alignment information. + + + Alignment format (XML) + + + + + + + + + beta12orEarlier + Text format for a phylogenetic tree. + + + Phylogenetic tree format (text) + + + + + + + + + beta12orEarlier + XML format for a phylogenetic tree. + + + Phylogenetic tree format (XML) + + + + + + + + + + beta12orEarlier + An XML format resembling EMBL entry format. + + + This concept may be used for the any non-standard EMBL-like XML formats. + EMBL-like (XML) + + + + + + + + + beta12orEarlier + A format resembling GenBank entry (plain text) format. + + + This concept may be used for the non-standard GenBank-like formats. + GenBank-like format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the STRING database of protein interaction. + + STRING entry format + true + + + + + + + + + beta12orEarlier + Text format for sequence assembly data. + + + Sequence assembly format (text) + + + + + + + + + beta12orEarlier + beta13 + + + Text format (representation) of amino acid residues. + + Amino acid identifier format + true + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence without any unknown positions or ambiguity characters. + + + completely unambiguous + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence (characters ACGTU only) without unknown positions, ambiguity or non-sequence characters . + + + completely unambiguous pure nucleotide + + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence (characters ACGT only) without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure dna + + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence (characters ACGU only) without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure rna sequence + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a raw molecular sequence (i.e. the alphabet used). + + + Raw sequence format + http://www.onto-med.de/ontologies/gfo.owl#Symbol_sequence + + + + + + + + + + + beta12orEarlier + + + BAM format, the binary, BGZF-formatted compressed version of SAM format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data. + + + BAM + + + + + + + + + + + beta12orEarlier + + + Sequence Alignment/Map (SAM) format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data. + + + The format supports short and long reads (up to 128Mbp) produced by different sequencing platforms and is used to hold mapped data within the GATK and across the Broad Institute, the Sanger Centre, and throughout the 1000 Genomes project. + SAM + + + + + + + + + + beta12orEarlier + + + Systems Biology Markup Language (SBML), the standard XML format for models of biological processes such as for example metabolism, cell signaling, and gene regulation. + + + SBML + + + + + + + + + + beta12orEarlier + Alphabet for any protein sequence without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure protein + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a bibliographic reference. + + + Bibliographic reference format + + + + + + + + + + + + + + + beta12orEarlier + Format of a sequence annotation track. + + + Sequence annotation track format + + + + + + + + + + + + + + + beta12orEarlier + Data format for molecular sequence alignment information that can hold sequence alignment(s) of only 2 sequences. + + + Alignment format (pair only) + + + + + + + + + + + + + + + beta12orEarlier + true + Format of sequence variation annotation. + + + Sequence variation annotation format + + + + + + + + + + beta12orEarlier + Some variant of Pearson MARKX alignment format. + + + markx0 variant + + + + + + + + + + + beta12orEarlier + Some variant of Mega format for (typically aligned) sequences. + + + mega variant + + + + + + + + + + + beta12orEarlier + Some variant of Phylip format for (aligned) sequences. + + + Phylip format variant + + + + + + + + + + beta12orEarlier + AB1 binary format of raw DNA sequence reads (output of Applied Biosystems' sequencing analysis software). Contains an electropherogram and the DNA base sequence. + + + AB1 uses the generic binary Applied Biosystems, Inc. Format (ABIF). + AB1 + + + + + + + + + + beta12orEarlier + + + ACE sequence assembly format including contigs, base-call qualities, and other metadata (version Aug 1998 and onwards). + + + ACE + + + + + + + + + + beta12orEarlier + + + Browser Extensible Data (BED) format of sequence annotation track, typically to be displayed in a genome browser. + + + BED detail format includes 2 additional columns (http://genome.ucsc.edu/FAQ/FAQformat#format1.7) and BED 15 includes 3 additional columns for experiment scores (http://genomewiki.ucsc.edu/index.php/Microarray_track). + BED + + + + + + + + + + beta12orEarlier + + + bigBed format for large sequence annotation tracks, similar to textual BED format. + + + bigBed + + + + + + + + + + beta12orEarlier + + wig + + Wiggle format (WIG) of a sequence annotation track that consists of a value for each sequence position. Typically to be displayed in a genome browser. + + + WIG + + + + + + + + + + beta12orEarlier + + + bigWig format for large sequence annotation tracks that consist of a value for each sequence position. Similar to textual WIG format. + + + bigWig + + + + + + + + + + + beta12orEarlier + + + PSL format of alignments, typically generated by BLAT or psLayout. Can be displayed in a genome browser like a sequence annotation track. + + + PSL + + + + + + + + + + + beta12orEarlier + + + Multiple Alignment Format (MAF) supporting alignments of whole genomes with rearrangements, directions, multiple pieces to the alignment, and so forth. + + + Typically generated by Multiz and TBA aligners; can be displayed in a genome browser like a sequence annotation track. This should not be confused with MIRA Assembly Format or Mutation Annotation Format. + MAF + + + + + + + + + + beta12orEarlier + + + + 2bit binary format of nucleotide sequences using 2 bits per nucleotide. In addition encodes unknown nucleotides and lower-case 'masking'. + + + 2bit + + + + + + + + + + beta12orEarlier + + + .nib (nibble) binary format of a nucleotide sequence using 4 bits per nucleotide (including unknown) and its lower-case 'masking'. + + + .nib + + + + + + + + + + beta12orEarlier + + gp + + genePred table format for gene prediction tracks. + + + genePred format has 3 main variations (http://genome.ucsc.edu/FAQ/FAQformat#format9 http://www.broadinstitute.org/software/igv/genePred). They reflect UCSC Browser DB tables. + genePred + + + + + + + + + + beta12orEarlier + + + Personal Genome SNP (pgSnp) format for sequence variation tracks (indels and polymorphisms), supported by the UCSC Genome Browser. + + + pgSnp + + + + + + + + + + beta12orEarlier + + + axt format of alignments, typically produced from BLASTZ. + + + axt + + + + + + + + + + beta12orEarlier + + lav + + LAV format of alignments generated by BLASTZ and LASTZ. + + + LAV + + + + + + + + + + beta12orEarlier + + + Pileup format of alignment of sequences (e.g. sequencing reads) to (a) reference sequence(s). Contains aligned bases per base of the reference sequence(s). + + + Pileup + + + + + + + + + + beta12orEarlier + + vcf + vcf.gz + Variant Call Format (VCF) is tabular format for storing genomic sequence variations. + + + 1000 Genomes Project has its own specification for encoding structural variations in VCF (https://www.internationalgenome.org/wiki/Analysis/Variant%20Call%20Format/VCF%20(Variant%20Call%20Format)%20version%204.0/encoding-structural-variants). This is based on VCF version 4.0 and not directly compatible with VCF version 4.3. + VCF + + + + + + + + + + + beta12orEarlier + + + Sequence Read Format (SRF) of sequence trace data. Supports submission to the NCBI Short Read Archive. + + + SRF + + + + + + + + + + beta12orEarlier + + + ZTR format for storing chromatogram data from DNA sequencing instruments. + + + ZTR + + + + + + + + + + beta12orEarlier + + + Genome Variation Format (GVF). A GFF3-compatible format with defined header and attribute tags for sequence variation. + + + GVF + + + + + + + + + + beta12orEarlier + + bcf + bcf.gz + + BCF is the binary version of Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation). + + + BCF + + + + + + + + + + + + + + + beta13 + true + Format of a matrix (array) of numerical values. + + + Matrix format + + + + + + + + + + + + + + + beta13 + true + Format of data concerning the classification of the sequences and/or structures of protein structural domain(s). + + + Protein domain classification format + + + + + + + + + beta13 + Format of raw SCOP domain classification data files. + + + These are the parsable data files provided by SCOP. + Raw SCOP domain classification format + + + + + + + + + beta13 + Format of raw CATH domain classification data files. + + + These are the parsable data files provided by CATH. + Raw CATH domain classification format + + + + + + + + + beta13 + Format of summary of domain classification information for a CATH domain. + + + The report (for example http://www.cathdb.info/domain/1cukA01) includes CATH codes for levels in the hierarchy for the domain, level descriptions and relevant data and links. + CATH domain report format + + + + + + + + + + 1.0 + + + Systems Biology Result Markup Language (SBRML), the standard XML format for simulated or calculated results (e.g. trajectories) of systems biology models. + + + SBRML + + + + + + + + + 1.0 + + + BioPAX is an exchange format for pathway data, with its data model defined in OWL. + + + BioPAX + + + + + + + + + + + 1.0 + + + EBI Application Result XML is a format returned by sequence similarity search Web services at EBI. + + + EBI Application Result XML + + + + + + + + + + 1.0 + + + XML Molecular Interaction Format (MIF), standardised by HUPO PSI MI. + MIF + + + PSI MI XML (MIF) + + + + + + + + + + 1.0 + + + phyloXML is a standardised XML format for phylogenetic trees, networks, and associated data. + + + phyloXML + + + + + + + + + + 1.0 + + + NeXML is a standardised XML format for rich phyloinformatic data. + + + NeXML + + + + + + + + + + + + + + + + 1.0 + + + MAGE-ML XML format for microarray expression data, standardised by MGED (now FGED). + + + MAGE-ML + + + + + + + + + + + + + + + + 1.0 + + + MAGE-TAB textual format for microarray expression data, standardised by MGED (now FGED). + + + MAGE-TAB + + + + + + + + + + 1.0 + + + GCDML XML format for genome and metagenome metadata according to MIGS/MIMS/MIMARKS information standards, standardised by the Genomic Standards Consortium (GSC). + + + GCDML + + + + + + + + + + + + 1.0 + + + + + + + + + + GTrack is a generic and optimised tabular format for genome or sequence feature tracks. GTrack unifies the power of other track formats (e.g. GFF3, BED, WIG), and while optimised in size, adds more flexibility, customisation, and automation ("machine understandability"). + BioXSD/GTrack GTrack + BioXSD|GTrack GTrack + GTrack ecosystem of formats + GTrack format + GTrack|BTrack|GSuite GTrack + GTrack|GSuite|BTrack GTrack + + + 'GTrack' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'GTrack' is the tabular format for representing features of sequences and genomes. + GTrack + + + + + + + + + + + + + + + 1.0 + true + Data format for a report of information derived from a biological pathway or network. + + + Biological pathway or network report format + + + + + + + + + + + + + + + 1.0 + true + Data format for annotation on a laboratory experiment. + + + Experiment annotation format + + + + + + + + + + + + + + + + 1.2 + + + Cytoband format for chromosome cytobands. + + + Reflects a UCSC Browser DB table. + Cytoband format + + + + + + + + + + + 1.2 + + + CopasiML, the native format of COPASI. + + + CopasiML + + + + + + + + + + 1.2 + + + + + CellML, the format for mathematical models of biological and other networks. + + + CellML + + + + + + + + + + 1.2 + + + + + + Tabular Molecular Interaction format (MITAB), standardised by HUPO PSI MI. + + + PSI MI TAB (MITAB) + + + + + + + + + 1.2 + + + Protein affinity format (PSI-PAR), standardised by HUPO PSI MI. It is compatible with PSI MI XML (MIF) and uses the same XML Schema. + + + PSI-PAR + + + + + + + + + + 1.2 + + + mzML format for raw spectrometer output data, standardised by HUPO PSI MSS. + + + mzML is the successor and unifier of the mzData format developed by PSI and mzXML developed at the Seattle Proteome Center. + mzML + + + + + + + + + + + + + + + 1.2 + true + Format for mass pectra and derived data, include peptide sequences etc. + + + Mass spectrometry data format + + + + + + + + + + 1.2 + + + TraML (Transition Markup Language) is the format for mass spectrometry transitions, standardised by HUPO PSI MSS. + + + TraML + + + + + + + + + + 1.2 + + + mzIdentML is the exchange format for peptides and proteins identified from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of proteomics search engines. + + + mzIdentML + + + + + + + + + + 1.2 + + + mzQuantML is the format for quantitation values associated with peptides, proteins and small molecules from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of quantitation software for proteomics. + + + mzQuantML + + + + + + + + + + 1.2 + + + GelML is the format for describing the process of gel electrophoresis, standardised by HUPO PSI PS. + + + GelML + + + + + + + + + + 1.2 + + + spML is the format for describing proteomics sample processing, other than using gels, prior to mass spectrometric protein identification, standardised by HUPO PSI PS. It may also be applicable for metabolomics. + + + spML + + + + + + + + + + 1.2 + A human-readable encoding for the Web Ontology Language (OWL). + + + OWL Functional Syntax + + + + + + + + + + 1.2 + A syntax for writing OWL class expressions. + + + This format was influenced by the OWL Abstract Syntax and the DL style syntax. + Manchester OWL Syntax + + + + + + + + + + 1.2 + A superset of the "Description-Logic Knowledge Representation System Specification from the KRSS Group of the ARPA Knowledge Sharing Effort". + + + This format is used in Protege 4. + KRSS2 Syntax + + + + + + + + + + 1.2 + The Terse RDF Triple Language (Turtle) is a human-friendly serialisation format for RDF (Resource Description Framework) graphs. + + + The SPARQL Query Language incorporates a very similar syntax. + Turtle + + + + + + + + + + 1.2 + nt + A plain text serialisation format for RDF (Resource Description Framework) graphs, and a subset of the Turtle (Terse RDF Triple Language) format. + + + N-Triples should not be confused with Notation 3 which is a superset of Turtle. + N-Triples + + + + + + + + + + 1.2 + n3 + A shorthand non-XML serialisation of Resource Description Framework model, designed with human-readability in mind. + N3 + + + Notation3 + + + + + + + + + + + + + + + + + + + 1.2 + OWL ontology XML serialisation format. + OWL + + + OWL/XML + + + + + + + + + + 1.3 + + + The A2M format is used as the primary format for multiple alignments of protein or nucleic-acid sequences in the SAM suite of tools. It is a small modification of FASTA format for sequences and is compatible with most tools that read FASTA. + + + A2M + + + + + + + + + + 1.3 + + + Standard flowgram format (SFF) is a binary file format used to encode results of pyrosequencing from the 454 Life Sciences platform for high-throughput sequencing. + Standard flowgram format + + + SFF + + + + + + + + + 1.3 + + The MAP file describes SNPs and is used by the Plink package. + Plink MAP + + + MAP + + + + + + + + + 1.3 + + The PED file describes individuals and genetic data and is used by the Plink package. + Plink PED + + + PED + + + + + + + + + 1.3 + true + Data format for a metadata on an individual and their genetic data. + + + Individual genetic data format + + + + + + + + + + 1.3 + + The PED/MAP file describes data used by the Plink package. + Plink PED/MAP + + + PED/MAP + + + + + + + + + + 1.3 + + + File format of a CT (Connectivity Table) file from the RNAstructure package. + Connect format + Connectivity Table file format + + + CT + + + + + + + + + + 1.3 + + XRNA old input style format. + + + SS + + + + + + + + + + + 1.3 + + RNA Markup Language. + + + RNAML + + + + + + + + + + 1.3 + + Format for the Genetic Data Environment (GDE). + + + GDE + + + + + + + + + 1.3 + + A multiple alignment in vertical format, as used in the AMPS (Alignment of Multiple Protein Sequences) package. + Block file format + + + BLC + + + + + + + + + + + + + + + 1.3 + true + Format of a data index of some type. + + + Data index format + + + + + + + + + + + + + + + + 1.3 + + BAM indexing format. + + + BAI + + + + + + + + + 1.3 + + HMMER profile HMM file for HMMER versions 2.x. + + + HMMER2 + + + + + + + + + 1.3 + + HMMER profile HMM file for HMMER versions 3.x. + + + HMMER3 + + + + + + + + + 1.3 + + PO is the output format of Partial Order Alignment program (POA) performing Multiple Sequence Alignment (MSA). + + + PO + + + + + + + + + + 1.3 + XML format as produced by the NCBI Blast package. + + + BLAST XML results format + + + + + + + + + + 1.7 + http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf + http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf + Reference-based compression of alignment format. + + + CRAM + + + + + + + + + + 1.7 + json + + + + JavaScript Object Notation format; a lightweight, text-based format to represent tree-structured data using key-value pairs. + JavaScript Object Notation + + + JSON + + + + + + + + + + 1.7 + Encapsulated PostScript format. + + + EPS + + + + + + + + + 1.7 + Graphics Interchange Format. + + + GIF + + + + + + + + + + 1.7 + Microsoft Excel spreadsheet format. + Microsoft Excel format + + + xls + + + + + + + + + 1.7 + tab + tsv + + + + Tabular data represented as tab-separated values in a text file. + Tab-delimited + Tab-separated values + tab + + + TSV + + + + + + + + + 1.7 + 1.10 + + Format of a file of gene expression data, e.g. a gene expression matrix or profile. + + + Gene expression data format + true + + + + + + + + + + 1.7 + Format of the cytoscape input file of gene expression ratios or values are specified over one or more experiments. + + + Cytoscape input file format + + + + + + + + + + + + + + + + 1.7 + https://github.com/BenLangmead/bowtie/blob/master/MANUAL + Bowtie format for indexed reference genome for "small" genomes. + Bowtie index format + + + ebwt + + + + + + + + + 1.7 + http://www.molbiol.ox.ac.uk/tutorials/Seqlab_GCG.pdf + Rich sequence format. + GCG RSF + + + RSF-format files contain one or more sequences that may or may not be related. In addition to the sequence data, each sequence can be annotated with descriptive sequence information (from the GCG manual). + RSF + + + + + + + + + + + 1.7 + Some format based on the GCG format. + + + GCG format variant + + + + + + + + + + 1.7 + http://rothlab.ucdavis.edu/genhelp/chapter_2_using_sequences.html#_Creating_and_Editing_Single_Sequenc + Bioinformatics Sequence Markup Language format. + + + BSML + + + + + + + + + + + + + + + + 1.7 + https://github.com/BenLangmead/bowtie/blob/master/MANUAL + Bowtie format for indexed reference genome for "large" genomes. + Bowtie long index format + + + ebwtl + + + + + + + + + + 1.8 + + Ensembl standard format for variation data. + + + Ensembl variation file format + + + + + + + + + + 1.8 + Microsoft Word format. + Microsoft Word format + doc + + + docx + + + + + + + + + 1.8 + true + Format of documents including word processor, spreadsheet and presentation. + + + Document format + + + + + + + + + + 1.8 + Portable Document Format. + + + PDF + + + + + + + + + + + + + + + 1.9 + true + Format used for images and image metadata. + + + Image format + + + + + + + + + + 1.9 + + Medical image format corresponding to the Digital Imaging and Communications in Medicine (DICOM) standard. + + + DICOM format + + + + + + + + + + 1.9 + + nii + An open file format from the Neuroimaging Informatics Technology Initiative (NIfTI) commonly used to store brain imaging data obtained using Magnetic Resonance Imaging (MRI) methods. + NIFTI format + NIfTI-1 format + + + nii + + + + + + + + + + 1.9 + + Text-based tagged file format for medical images generated using the MetaImage software package. + Metalmage format + + + mhd + + + + + + + + + + 1.9 + + Nearly Raw Rasta Data format designed to support scientific visualisation and image processing involving N-dimensional raster data. + + + nrrd + + + + + + + + + 1.9 + File format used for scripts written in the R programming language for execution within the R software environment, typically for statistical computation and graphics. + + + R file format + + + + + + + + + 1.9 + File format used for scripts for the Statistical Package for the Social Sciences. + + + SPSS + + + + + + + + + 1.9 + + eml + mht + mhtml + + + + MIME HTML format for Web pages, which can include external resources, including images, Flash animations and so on. + HTML email format + HTML email message format + MHT + MHT format + MHTML format + MIME HTML + MIME HTML format + eml + MIME multipart + MIME multipart format + MIME multipart message + MIME multipart message format + + + MHTML is not strictly an HTML format, it is encoded as an HTML email message (although with multipart/related instead of multipart/alternative). It, however, contains the main HTML block as its core, and thus it is for practical reasons included in EDAM as a specialisation of 'HTML'. + MHTML + + + + + + + + + + + + + + + + + 1.10 + Proprietary file format for (raw) BeadArray data used by genomewide profiling platforms from Illumina Inc. This format is output directly from the scanner and stores summary intensities for each probe-type on an array. + + + IDAT + + + + + + + + + + 1.10 + + Joint Picture Group file format for lossy graphics file. + JPEG + jpeg + + + Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type. + JPG + + + + + + + + + + 1.10 + Reporter Code Count-A data file (.csv) output by the Nanostring nCounter Digital Analyzer, which contains gene sample information, probe information and probe counts. + + + rcc + + + + + + + + + 1.11 + + + ARFF (Attribute-Relation File Format) is an ASCII text file format that describes a list of instances sharing a set of attributes. + + + This file format is for machine learning. + arff + + + + + + + + + + 1.11 + + + AFG is a single text-based file assembly format that holds read and consensus information together. + + + afg + + + + + + + + + + 1.11 + + + The bedGraph format allows display of continuous-valued data in track format. This display type is useful for probability scores and transcriptome data. + + + Holds a tab-delimited chromosome /start /end / datavalue dataset. + bedgraph + + + + + + + + + 1.11 + + + Browser Extensible Data (BED) format of sequence annotation track that strictly does not contain non-standard fields beyond the first 3 columns. + + + Galaxy allows BED files to contain non-standard fields beyond the first 3 columns, some other implementations do not. + bedstrict + + + + + + + + + 1.11 + + + BED file format where each feature is described by chromosome, start, end, name, score, and strand. + + + Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 6 + bed6 + + + + + + + + + 1.11 + + + A BED file where each feature is described by all twelve columns. + + + Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 12 + bed12 + + + + + + + + + + 1.11 + + + Tabular format of chromosome names and sizes used by Galaxy. + + + Galaxy allows BED files to contain non-standard fields beyond the first 3 columns, some other implementations do not. + chrominfo + + + + + + + + + + 1.11 + + + Custom Sequence annotation track format used by Galaxy. + + + Used for tracks/track views within galaxy. + customtrack + + + + + + + + + + 1.11 + + + Color space FASTA format sequence variant. + + + FASTA format extended for color space information. + csfasta + + + + + + + + + + 1.11 + + + HDF5 is a data model, library, and file format for storing and managing data, based on Hierarchical Data Format (HDF). + h5 + + + An HDF5 file appears to the user as a directed graph. The nodes of this graph are the higher-level HDF5 objects that are exposed by the HDF5 APIs: Groups, Datasets, Named datatypes. Currently supported by the Python MDTraj package. + HDF5 is the new version, according to the HDF group, a completely different technology (https://support.hdfgroup.org/products/hdf4/ compared to HDF. + HDF5 + + + + + + + + + + 1.11 + + A versatile bitmap format. + + + The TIFF format is perhaps the most versatile and diverse bitmap format in existence. Its extensible nature and support for numerous data compression schemes allow developers to customize the TIFF format to fit any peculiar data storage needs. + TIFF + + + + + + + + + + 1.11 + + Standard bitmap storage format in the Microsoft Windows environment. + + + Although it is based on Windows internal bitmap data structures, it is supported by many non-Windows and non-PC applications. + BMP + + + + + + + + + + 1.11 + + IM is a format used by LabEye and other applications based on the IFUNC image processing library. + + + IFUNC library reads and writes most uncompressed interchange versions of this format. + im + + + + + + + + + + 1.11 + + pcd + Photo CD format, which is the highest resolution format for images on a CD. + + + PCD was developed by Kodak. A PCD file contains five different resolution (ranging from low to high) of a slide or film negative. Due to it PCD is often used by many photographers and graphics professionals for high-end printed applications. + pcd + + + + + + + + + + 1.11 + + PCX is an image file format that uses a simple form of run-length encoding. It is lossless. + + + pcx + + + + + + + + + + 1.11 + + The PPM format is a lowest common denominator color image file format. + + + ppm + + + + + + + + + + 1.11 + + PSD (Photoshop Document) is a proprietary file that allows the user to work with the images' individual layers even after the file has been saved. + + + psd + + + + + + + + + + 1.11 + + X BitMap is a plain text binary image format used by the X Window System used for storing cursor and icon bitmaps used in the X GUI. + + + The XBM format was replaced by XPM for X11 in 1989. + xbm + + + + + + + + + + 1.11 + + X PixMap (XPM) is an image file format used by the X Window System, it is intended primarily for creating icon pixmaps, and supports transparent pixels. + + + Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type. + xpm + + + + + + + + + + 1.11 + + RGB file format is the native raster graphics file format for Silicon Graphics workstations. + + + rgb + + + + + + + + + + 1.11 + + The PBM format is a lowest common denominator monochrome file format. It serves as the common language of a large family of bitmap image conversion filters. + + + pbm + + + + + + + + + + 1.11 + + The PGM format is a lowest common denominator grayscale file format. + + + It is designed to be extremely easy to learn and write programs for. + pgm + + + + + + + + + + 1.11 + + png + PNG is a file format for image compression. + + + It iis expected to replace the Graphics Interchange Format (GIF). + PNG + + + + + + + + + + 1.11 + + Scalable Vector Graphics (SVG) is an XML-based vector image format for two-dimensional graphics with support for interactivity and animation. + Scalable Vector Graphics + + + The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999. + SVG + + + + + + + + + + 1.11 + + Sun Raster is a raster graphics file format used on SunOS by Sun Microsystems. + + + The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999. + rast + + + + + + + + + + + + + + + 1.11 + true + Textual report format for sequence quality for reports from sequencing machines. + + + Sequence quality report format (text) + + + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences). + + + Phred quality scores are defined as a property which is logarithmically related to the base-calling error probabilities. + qual + + + + + + + + + + 1.11 + FASTQ format subset for Phred sequencing quality score data only (no sequences) for Solexa/Illumina 1.0 format. + + + Solexa/Illumina 1.0 format can encode a Solexa/Illumina quality score from -5 to 62 using ASCII 59 to 126 (although in raw read data Solexa scores from -5 to 40 only are expected) + qualsolexa + + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences) from Illumina 1.5 and before Illumina 1.8. + + + Starting in Illumina 1.5 and before Illumina 1.8, the Phred scores 0 to 2 have a slightly different meaning. The values 0 and 1 are no longer used and the value 2, encoded by ASCII 66 "B", is used also at the end of reads as a Read Segment Quality Control Indicator. + qualillumina + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences) for SOLiD data. + + + For SOLiD data, the sequence is in color space, except the first position. The quality values are those of the Sanger format. + qualsolid + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences) from 454 sequencers. + + + qual454 + + + + + + + + + 1.11 + + + Human ENCODE peak format. + + + Format that covers both the broad peak format and narrow peak format from ENCODE. + ENCODE peak format + + + + + + + + + 1.11 + + + Human ENCODE narrow peak format. + + + Format that covers both the broad peak format and narrow peak format from ENCODE. + ENCODE narrow peak format + + + + + + + + + 1.11 + + + Human ENCODE broad peak format. + + + ENCODE broad peak format + + + + + + + + + + 1.11 + + bgz + Blocked GNU Zip format. + + + BAM files are compressed using a variant of GZIP (GNU ZIP), into a format called BGZF (Blocked GNU Zip Format). + bgzip + + + + + + + + + + 1.11 + + + TAB-delimited genome position file index format. + + + tabix + + + + + + + + + 1.11 + true + Data format for graph data. + + + Graph format + + + + + + + + + 1.11 + + XML-based format used to store graph descriptions within Galaxy. + + + xgmml + + + + + + + + + 1.11 + + SIF (simple interaction file) Format - a network/pathway format used for instance in cytoscape. + + + sif + + + + + + + + + + 1.11 + MS Excel spreadsheet format consisting of a set of XML documents stored in a ZIP-compressed file. + + + xlsx + + + + + + + + + 1.11 + + Data format used by the SQLite database. + + + SQLite format + + + + + + + + + + 1.11 + + Data format used by the SQLite database conformant to the Gemini schema. + + + Gemini SQLite format + + + + + + + + + 1.11 + Duplicate of http://edamontology.org/format_3326 + 1.20 + + + Format of a data index of some type. + + + Index format + true + + + + + + + + + + 1.11 + An index of a genome database, indexed for use by the snpeff tool. + + + snpeffdb + + + + + + + + + + + + + + + 1.12 + + Binary format used by MATLAB files to store workspace variables. + .mat file format + MAT file format + MATLAB file format + + + MAT + + + + + + + + + + + 1.12 + + Format used by netCDF software library for writing and reading chromatography-MS data files. Also used to store trajectory atom coordinates information, such as the ones obtained by Molecular Dynamics simulations. + ANDI-MS + + + Network Common Data Form (NetCDF) library is supported by AMBER MD package from version 9. + netCDF + + + + + + + + + 1.12 + mgf + Mascot Generic Format. Encodes multiple MS/MS spectra in a single file. + + + Files includes *m*/*z*, intensity pairs separated by headers; headers can contain a bit more information, including search engine instructions. + MGF + + + + + + + + + 1.12 + Spectral data format file where each spectrum is written to a separate file. + + + Each file contains one header line for the known or assumed charge and the mass of the precursor peptide ion, calculated from the measured *m*/*z* and the charge. This one line was then followed by all the *m*/*z*, intensity pairs that represent the spectrum. + dta + + + + + + + + + 1.12 + Spectral data file similar to dta. + + + Differ from .dta only in subtleties of the header line format and content and support the added feature of being able to. + pkl + + + + + + + + + 1.12 + https://dx.doi.org/10.1038%2Fnbt1031 + Common file format for proteomics mass spectrometric data developed at the Seattle Proteome Center/Institute for Systems Biology. + + + mzXML + + + + + + + + + + 1.12 + http://sashimi.sourceforge.net/schema_revision/pepXML/pepXML_v118.xsd + Open data format for the storage, exchange, and processing of peptide sequence assignments of MS/MS scans, intended to provide a common data output format for many different MS/MS search engines and subsequent peptide-level analyses. + + + pepXML + + + + + + + + + + 1.12 + + Graphical Pathway Markup Language (GPML) is an XML format used for exchanging biological pathways. + + + GPML + + + + + + + + + + 1.12 + + oxlicg + + + + A list of k-mers and their occurrences in a dataset. Can also be used as an implicit De Bruijn graph. + K-mer countgraph + + + + + + + + + + + 1.13 + + + mzTab is a tab-delimited format for mass spectrometry-based proteomics and metabolomics results. + + + mzTab + + + + + + + + + + + 1.13 + + imzml + + imzML metadata is a data format for mass spectrometry imaging metadata. + + + imzML data are recorded in 2 files: '.imzXML' is a metadata XML file based on mzML by HUPO-PSI, and '.ibd' is a binary file containing the mass spectra. This entry is for the metadata XML file + imzML metadata file + + + + + + + + + + + 1.13 + + + qcML is an XML format for quality-related data of mass spectrometry and other high-throughput measurements. + + + The focus of qcML is towards mass spectrometry based proteomics, but the format is suitable for metabolomics and sequencing as well. + qcML + + + + + + + + + + + 1.13 + + + PRIDE XML is an XML format for mass spectra, peptide and protein identifications, and metadata about a corresponding measurement, sample, experiment. + + + PRIDE XML + + + + + + + + + + + + 1.13 + + + Simulation Experiment Description Markup Language (SED-ML) is an XML format for encoding simulation setups, according to the MIASE (Minimum Information About a Simulation Experiment) requirements. + + + SED-ML + + + + + + + + + + + + 1.13 + + + Open Modeling EXchange format (OMEX) is a ZIPped format for encapsulating all information necessary for a modeling and simulation project in systems biology. + + + An OMEX file is a ZIP container that includes a manifest file, listing the content of the archive, an optional metadata file adding information about the archive and its content, and the files describing the model. OMEX is one of the standardised formats within COMBINE (Computational Modeling in Biology Network). + COMBINE OMEX + + + + + + + + + + + 1.13 + + + The Investigation / Study / Assay (ISA) tab-delimited (TAB) format incorporates metadata from experiments employing a combination of technologies. + + + ISA-TAB is based on MAGE-TAB. Other than tabular, the ISA model can also be represented in RDF, and in JSON (compliable with a set of defined JSON Schemata). + ISA-TAB + + + + + + + + + + + 1.13 + + + SBtab is a tabular format for biochemical network models. + + + SBtab + + + + + + + + + + 1.13 + + + Biological Connection Markup Language (BCML) is an XML format for biological pathways. + + + BCML + + + + + + + + + + 1.13 + + + Biological Dynamics Markup Language (BDML) is an XML format for quantitative data describing biological dynamics. + + + BDML + + + + + + + + + 1.13 + + + Biological Expression Language (BEL) is a textual format for representing scientific findings in life sciences in a computable form. + + + BEL + + + + + + + + + + 1.13 + + + SBGN-ML is an XML format for Systems Biology Graphical Notation (SBGN) diagrams of biological pathways or networks. + + + SBGN-ML + + + + + + + + + + 1.13 + + agp + + AGP is a tabular format for a sequence assembly (a contig, a scaffold/supercontig, or a chromosome). + + + AGP + + + + + + + + + 1.13 + PostScript format. + PostScript + + + PS + + + + + + + + + 1.13 + + sra + SRA archive format (SRA) is the archive format used for input to the NCBI Sequence Read Archive. + SRA + SRA archive format + + + SRA format + + + + + + + + + 1.13 + + VDB ('vertical database') is the native format used for export from the NCBI Sequence Read Archive. + SRA native format + + + VDB + + + + + + + + + + + + + + + + 1.13 + + Index file format used by the samtools package to index TAB-delimited genome position files. + + + Tabix index file format + + + + + + + + + 1.13 + A five-column, tab-delimited table of feature locations and qualifiers for importing annotation into an existing Sequin submission (an NCBI tool for submitting and updating GenBank entries). + + + Sequin format + + + + + + + + + 1.14 + Proprietary mass-spectrometry format of Thermo Scientific's ProteomeDiscoverer software. + Magellan storage file format + + + This format corresponds to an SQLite database, and you can look into the files with e.g. SQLiteStudio3. There are also some readers (http://doi.org/10.1021/pr2005154) and converters (http://doi.org/10.1016/j.jprot.2015.06.015) for this format available, which re-engineered the database schema, but there is no official DB schema specification of Thermo Scientific for the format. + MSF + + + + + + + + + + + + + + + 1.14 + true + Data format for biodiversity data. + + + Biodiversity data format + + + + + + + + + + + + + + + 1.14 + + Exchange format of the Access to Biological Collections Data (ABCD) Schema; a standard for the access to and exchange of data about specimens and observations (primary biodiversity data). + ABCD + + + ABCD format + + + + + + + + + + 1.14 + Tab-delimited text files of GenePattern that contain a column for each sample, a row for each gene, and an expression value for each gene in each sample. + GCT format + Res format + + + GCT/Res format + + + + + + + + + + 1.14 + wiff + Mass spectrum file format from QSTAR and QTRAP instruments (ABI/Sciex). + wiff + + + WIFF format + + + + + + + + + + 1.14 + + Output format used by X! series search engines that is based on the XML language BIOML. + + + X!Tandem XML + + + + + + + + + + 1.14 + Proprietary file format for mass spectrometry data from Thermo Scientific. + + + Proprietary format for which documentation is not available. + Thermo RAW + + + + + + + + + + 1.14 + + "Raw" result file from Mascot database search. + + + Mascot .dat file + + + + + + + + + + 1.14 + + Format of peak list files from Andromeda search engine (MaxQuant) that consist of arbitrarily many spectra. + MaxQuant APL + + + MaxQuant APL peaklist format + + + + + + + + + 1.14 + + Synthetic Biology Open Language (SBOL) is an XML format for the specification and exchange of biological design information in synthetic biology. + + + SBOL introduces a standardised format for the electronic exchange of information on the structural and functional aspects of biological designs. + SBOL + + + + + + + + + 1.14 + + PMML uses XML to represent mining models. The structure of the models is described by an XML Schema. + + + One or more mining models can be contained in a PMML document. + PMML + + + + + + + + + + 1.14 + + Image file format used by the Open Microscopy Environment (OME). + + + An OME-TIFF dataset consists of one or more files in standard TIFF or BigTIFF format, with the file extension .ome.tif or .ome.tiff, and an identical (or in the case of multiple files, nearly identical) string of OME-XML metadata embedded in the ImageDescription tag of each file's first IFD (Image File Directory). BigTIFF file extensions are also permitted, with the file extension .ome.tf2, .ome.tf8 or .ome.btf, but note these file extensions are an addition to the original specification, and software using an older version of the specification may not be able to handle these file extensions. + OME develops open-source software and data format standards for the storage and manipulation of biological microscopy data. It is a joint project between universities, research establishments, industry and the software development community. + OME-TIFF + + + + + + + + + 1.14 + + The LocARNA PP format combines sequence or alignment information and (respectively, single or consensus) ensemble probabilities into an PP 2.0 record. + + + Format for multiple aligned or single sequences together with the probabilistic description of the (consensus) RNA secondary structure ensemble by probabilities of base pairs, base pair stackings, and base pairs and unpaired bases in the loop of base pairs. + LocARNA PP + + + + + + + + + 1.14 + + Input format used by the Database of Genotypes and Phenotypes (dbGaP). + + + The Database of Genotypes and Phenotypes (dbGaP) is a National Institutes of Health (NIH) sponsored repository charged to archive, curate and distribute information produced by studies investigating the interaction of genotype and phenotype. + dbGaP format + + + + + + + + + + + 1.15 + + biom + The BIological Observation Matrix (BIOM) is a format for representing biological sample by observation contingency tables in broad areas of comparative omics. The primary use of this format is to represent OTU tables and metagenome tables. + BIological Observation Matrix format + biom + + + BIOM is a recognised standard for the Earth Microbiome Project, and is a project supported by Genomics Standards Consortium. Supported in QIIME, Mothur, MEGAN, etc. + BIOM format + + + + + + + + + + 1.15 + + + A format for storage, exchange, and processing of protein identifications created from ms/ms-derived peptide sequence data. + + + No human-consumable information about this format is available (see http://tools.proteomecenter.org/wiki/index.php?title=Formats:protXML). + protXML + http://doi.org/10.1038/msb4100024 + http://sashimi.sourceforge.net/schema_revision/protXML/protXML_v3.xsd + + + + + + + + + + + 1.15 + true + A linked data format enables publishing structured data as linked data (Linked Data), so that the data can be interlinked and become more useful through semantic queries. + Semantic Web format + + + Linked data format + + + + + + + + + + + + 1.15 + + jsonld + + + JSON-LD, or JavaScript Object Notation for Linked Data, is a method of encoding Linked Data using JSON. + JavaScript Object Notation for Linked Data + jsonld + + + JSON-LD + + + + + + + + + + 1.15 + + yaml + yml + + YAML (YAML Ain't Markup Language) is a human-readable tree-structured data serialisation language. + YAML Ain't Markup Language + yml + + + Data in YAML format can be serialised into text, or binary format. + YAML version 1.2 is a superset of JSON; prior versions were "not strictly compatible". + YAML + + + + + + + + + + 1.16 + Tabular data represented as values in a text file delimited by some character. + Delimiter-separated values + Tabular format + + + DSV + + + + + + + + + + 1.16 + csv + + + + Tabular data represented as comma-separated values in a text file. + Comma-separated values + + + CSV + + + + + + + + + + 1.16 + out + "Raw" result file from SEQUEST database search. + + + SEQUEST .out file + + + + + + + + + + 1.16 + http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1IdXMLFile.html + http://open-ms.sourceforge.net/schemas/ + XML file format for files containing information about peptide identifications from mass spectrometry data analysis carried out with OpenMS. + + + idXML + + + + + + + + + 1.16 + Data table formatted such that it can be passed/streamed within the KNIME platform. + + + KNIME datatable format + + + + + + + + + + + 1.16 + + UniProtKB XML sequence features format is an XML format available for downloading UniProt entries. + UniProt XML + UniProt XML format + UniProtKB XML format + + + UniProtKB XML + + + + + + + + + + 1.16 + + UniProtKB RDF sequence features format is an RDF format available for downloading UniProt entries (in RDF/XML). + UniProt RDF + UniProt RDF format + UniProt RDF/XML + UniProt RDF/XML format + UniProtKB RDF format + UniProtKB RDF/XML + UniProtKB RDF/XML format + + + UniProtKB RDF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + + + + BioJSON is a BioXSD-schema-based JSON format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web applications and APIs, and object-oriented programming. + BioJSON (BioXSD data model) + BioJSON format (BioXSD) + BioXSD BioJSON + BioXSD BioJSON format + BioXSD JSON + BioXSD JSON format + BioXSD in JSON + BioXSD in JSON format + BioXSD+JSON + BioXSD/GTrack BioJSON + BioXSD|BioJSON|BioYAML BioJSON + BioXSD|GTrack BioJSON + + + Work in progress. 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioJSON' is the JSON format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'. + BioJSON (BioXSD) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + + + + BioYAML is a BioXSD-schema-based YAML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web APIs, human readability and editing, and object-oriented programming. + BioXSD BioYAML + BioXSD BioYAML format + BioXSD YAML + BioXSD YAML format + BioXSD in YAML + BioXSD in YAML format + BioXSD+YAML + BioXSD/GTrack BioYAML + BioXSD|BioJSON|BioYAML BioYAML + BioXSD|GTrack BioYAML + BioYAML (BioXSD data model) + BioYAML (BioXSD) + BioYAML format + BioYAML format (BioXSD) + + + Work in progress. 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioYAML' is the YAML format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'. + BioYAML + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + BioJSON is a JSON format of single multiple sequence alignments, with their annotations, features, and custom visualisation and application settings for the Jalview workbench. + BioJSON format (Jalview) + JSON (Jalview) + JSON format (Jalview) + Jalview BioJSON + Jalview BioJSON format + Jalview JSON + Jalview JSON format + + + BioJSON (Jalview) + + + + + + + + + + + + 1.16 + + + + + + + GSuite is a tabular format for collections of genome or sequence feature tracks, suitable for integrative multi-track analysis. GSuite contains links to genome/sequence tracks, with additional metadata. + BioXSD/GTrack GSuite + BioXSD|GTrack GSuite + GSuite (GTrack ecosystem of formats) + GSuite format + GTrack|BTrack|GSuite GSuite + GTrack|GSuite|BTrack GSuite + + + 'GSuite' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'GSuite' is the tabular format for an annotated collection of individual GTrack files. + GSuite + + + + + + + + + + + + + 1.16 + + BTrack is an HDF5-based binary format for genome or sequence feature tracks and their collections, suitable for integrative multi-track analysis. BTrack is a binary, compressed alternative to the GTrack and GSuite formats. + BTrack (GTrack ecosystem of formats) + BTrack format + BioXSD/GTrack BTrack + BioXSD|GTrack BTrack + GTrack|BTrack|GSuite BTrack + GTrack|GSuite|BTrack BTrack + + + 'BTrack' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'BTrack' is the binary, optionally compressed HDF5-based version of the GTrack and GSuite formats. + BTrack + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + + + + + + + + + The FAO/Bioversity/IPGRI Multi-Crop Passport Descriptors (MCPD) is an international standard format for exchange of germplasm information. + Bioversity MCPD + FAO MCPD + IPGRI MCPD + MCPD V.1 + MCPD V.2 + MCPD format + Multi-Crop Passport Descriptors + Multi-Crop Passport Descriptors format + + + Multi-Crop Passport Descriptors is a format available in 2 successive versions, V.1 (FAO/IPGRI 2001) and V.2 (FAO/Bioversity 2012). + MCPD + + + + + + + + + + + + + + + + 1.16 + true + Data format of an annotated text, e.g. with recognised entities, concepts, and relations. + + + Annotated text format + + + + + + + + + + + 1.16 + + + JSON format of annotated scientific text used by PubAnnotations and other tools. + + + PubAnnotation format + + + + + + + + + + + 1.16 + + + BioC is a standardised XML format for sharing and integrating text data and annotations. + + + BioC + + + + + + + + + + + + 1.16 + + + Native textual export format of annotated scientific text from PubTator. + + + PubTator format + + + + + + + + + + + 1.16 + + + A format of text annotation using the linked-data Open Annotation Data Model, serialised typically in RDF or JSON-LD. + + + Open Annotation format + + + + + + + + + + + 1.16 + + + + + + + + + + + + + A family of similar formats of text annotation, used by BRAT and other tools, known as BioNLP Shared Task format (BioNLP 2009 Shared Task on Event Extraction, BioNLP Shared Task 2011, BioNLP Shared Task 2013), BRAT format, BRAT standoff format, and similar. + BRAT format + BRAT standoff format + + + BioNLP Shared Task format + + + + + + + + + + + + + + + 1.16 + true + A query language (format) for structured database queries. + Query format + + + Query language + + + + + + + + + 1.16 + sql + + + + SQL (Structured Query Language) is the de-facto standard query language (format of queries) for querying and manipulating data in relational databases. + Structured Query Language + + + SQL + + + + + + + + + + 1.16 + + xq + xquery + xqy + + XQuery (XML Query) is a query language (format of queries) for querying and manipulating structured and unstructured data, usually in the form of XML, text, and with vendor-specific extensions for other data formats (JSON, binary, etc.). + XML Query + xq + xqy + + + XQuery + + + + + + + + + + 1.16 + + + SPARQL (SPARQL Protocol and RDF Query Language) is a semantic query language for querying and manipulating data stored in Resource Description Framework (RDF) format. + SPARQL Protocol and RDF Query Language + + + SPARQL + + + + + + + + + + 1.17 + XML format for XML Schema. + + + xsd + + + + + + + + + + 1.20 + + XMFA format stands for eXtended Multi-FastA format and is used to store collinear sub-alignments that constitute a single genome alignment. + eXtended Multi-FastA format + + + XMFA + + + + + + + + + + + 1.20 + + The GEN file format contains genetic data and describes SNPs. + Genotype file format + + + GEN + + + + + + + + + 1.20 + + The SAMPLE file format contains information about each individual i.e. individual IDs, covariates, phenotypes and missing data proportions, from a GWAS study. + + + SAMPLE file format + + + + + + + + + + 1.20 + + SDF is one of a family of chemical-data file formats developed by MDL Information Systems; it is intended especially for structural information. + + + SDF + + + + + + + + + + 1.20 + + An MDL Molfile is a file format for holding information about the atoms, bonds, connectivity and coordinates of a molecule. + + + Molfile + + + + + + + + + + 1.20 + + Complete, portable representation of a SYBYL molecule. ASCII file which contains all the information needed to reconstruct a SYBYL molecule. + + + Mol2 + + + + + + + + + + 1.20 + + format for the LaTeX document preparation system. + LaTeX format + + + uses the TeX typesetting program format + latex + + + + + + + + + + 1.20 + + Tab-delimited text file format used by Eland - the read-mapping program distributed by Illumina with its sequencing analysis pipeline - which maps short Solexa sequence reads to the human reference genome. + ELAND + eland + + + ELAND format + + + + + + + + + 1.20 + + + Phylip multiple alignment sequence format, less stringent than PHYLIP format. + PHYLIP Interleaved format + + + It differs from Phylip Format (format_1997) on length of the ID sequence. There no length restrictions on the ID, but whitespaces aren't allowed in the sequence ID/Name because one space separates the longest ID and the beginning of the sequence. Sequences IDs must be padded to the longest ID length. + Relaxed PHYLIP Interleaved + + + + + + + + + 1.20 + + + Phylip multiple alignment sequence format, less stringent than PHYLIP sequential format (format_1998). + Relaxed PHYLIP non-interleaved + Relaxed PHYLIP non-interleaved format + Relaxed PHYLIP sequential format + + + It differs from Phylip sequential format (format_1997) on length of the ID sequence. There no length restrictions on the ID, but whitespaces aren't allowed in the sequence ID/Name because one space separates the longest ID and the beginning of the sequence. Sequences IDs must be padded to the longest ID length. + Relaxed PHYLIP Sequential + + + + + + + + + + 1.20 + + Default XML format of VisANT, containing all the network information. + VisANT xml + VisANT xml format + + + VisML + + + + + + + + + + 1.20 + + GML (Graph Modeling Language) is a text file format supporting network data with a very easy syntax. It is used by Graphlet, Pajek, yEd, LEDA and NetworkX. + GML format + + + GML + + + + + + + + + + 1.20 + + + FASTG is a format for faithfully representing genome assemblies in the face of allelic polymorphism and assembly uncertainty. + FASTG assembly graph format + + + It is called FASTG, like FASTA, but the G stands for "graph". + FASTG + + + + + + + + + + + + + + + 1.20 + true + Data format for raw data from a nuclear magnetic resonance (NMR) spectroscopy experiment. + NMR peak assignment data format + NMR processed data format + NMR raw data format + Nuclear magnetic resonance spectroscopy data format + Processed NMR data format + Raw NMR data format + + + NMR data format + + + + + + + + + + 1.20 + + + nmrML is an MSI supported XML-based open access format for metabolomics NMR raw and processed spectral data. It is accompanies by an nmrCV (controlled vocabulary) to allow ontology-based annotations. + + + nmrML + + + + + + + + + + + 1.20 + + . proBAM is an adaptation of BAM (format_2572), which was extended to meet specific requirements entailed by proteomics data. + + + proBAM + + + + + + + + + + 1.20 + + . proBED is an adaptation of BED (format_3003), which was extended to meet specific requirements entailed by proteomics data. + + + proBED + + + + + + + + + + + + + + + 1.20 + true + Data format for raw microarray data. + Microarray data format + + + Raw microarray data format + + + + + + + + + + 1.20 + + GenePix Results (GPR) text file format developed by Axon Instruments that is used to save GenePix Results data. + + + GPR + + + + + + + + + + 1.20 + Binary format used by the ARB software suite. + ARB binary format + + + ARB + + + + + + + + + + 1.20 + http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1ConsensusXMLFile.html + OpenMS format for grouping features in one map or across several maps. + + + consensusXML + + + + + + + + + + 1.20 + http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1FeatureXMLFile.html + OpenMS format for quantitation results (LC/MS features). + + + featureXML + + + + + + + + + + 1.20 + http://www.psidev.info/mzdata-1_0_5-docs + Now deprecated data format of the HUPO Proteomics Standards Initiative. Replaced by mzML (format_3244). + + + mzData + + + + + + + + + + 1.20 + http://cruxtoolkit.sourceforge.net/tide-search.html + Format supported by the Tide tool for identifying peptides from tandem mass spectra. + + + TIDE TXT + + + + + + + + + + 1.20 + ftp://ftp.ncbi.nlm.nih.gov/blast/documents/NEWXML/ProposedBLASTXMLChanges.pdf + ftp://ftp.ncbi.nlm.nih.gov/blast/documents/NEWXML/xml2.pdf + http://www.ncbi.nlm.nih.gov/data_specs/schema/NCBI_BlastOutput2.mod.xsd + XML format as produced by the NCBI Blast package v2. + + + BLAST XML v2 results format + + + + + + + + + + 1.20 + + + Microsoft Powerpoint format. + + + pptx + + + + + + + + + + + 1.20 + + ibd + + ibd is a data format for mass spectrometry imaging data. + + + imzML data is recorded in 2 files: '.imzXML' is a metadata XML file based on mzML by HUPO-PSI, and '.ibd' is a binary file containing the mass spectra. + ibd + + + + + + + + + 1.21 + Data format used in Natural Language Processing. + Natural Language Processing format + + + NLP format + + + + + + + + + + 1.21 + + XML input file format for BEAST Software (Bayesian Evolutionary Analysis Sampling Trees). + + + BEAST + + + + + + + + + + 1.21 + + Chado-XML format is a direct mapping of the Chado relational schema into XML. + + + Chado-XML + + + + + + + + + + 1.21 + + An alignment format generated by PRANK/PRANKSTER consisting of four elements: newick, nodes, selection and model. + + + HSAML + + + + + + + + + + 1.21 + + Output xml file from the InterProScan sequence analysis application. + + + InterProScan XML + + + + + + + + + + 1.21 + + The KEGG Markup Language (KGML) is an exchange format of the KEGG pathway maps, which is converted from internally used KGML+ (KGML+SVG) format. + KEGG Markup Language + + + KGML + + + + + + + + + + 1.21 + XML format for collected entries from bibliographic databases MEDLINE and PubMed. + MEDLINE XML + + + PubMed XML + + + + + + + + + + 1.21 + + A set of XML compliant markup components for describing multiple sequence alignments. + + + MSAML + + + + + + + + + + + 1.21 + + OrthoXML is designed broadly to allow the storage and comparison of orthology data from any ortholog database. It establishes a structure for describing orthology relationships while still allowing flexibility for database-specific information to be encapsulated in the same format. + + + OrthoXML + + + + + + + + + + 1.21 + + Tree structure of Protein Sequence Database Markup Language generated using Matra software. + + + PSDML + + + + + + + + + + 1.21 + + SeqXML is an XML Schema to describe biological sequences, developed by the Stockholm Bioinformatics Centre. + + + SeqXML + + + + + + + + + + 1.21 + + XML format for the UniParc database. + + + UniParc XML + + + + + + + + + + 1.21 + + XML format for the UniRef reference clusters. + + + UniRef XML + + + + + + + + + + + 1.21 + + + + + cwl + + + + Common Workflow Language (CWL) format for description of command-line tools and workflows. + Common Workflow Language + CommonWL + + + CWL + + + + + + + + + + 1.21 + Proprietary file format for mass spectrometry data from Waters. + + + Proprietary format for which documentation is not available, but used by multiple tools. + Waters RAW + + + + + + + + + + 1.21 + + A standardized file format for data exchange in mass spectrometry, initially developed for infrared spectrometry. + + + JCAMP-DX is an ASCII based format and therefore not very compact even though it includes standards for file compression. + JCAMP-DX + + + + + + + + + + 1.21 + An NLP format used for annotated textual documents. + + + NLP annotation format + + + + + + + + + 1.21 + NLP format used by a specific type of corpus (collection of texts). + + + NLP corpus format + + + + + + + + + + + 1.21 + + + + mirGFF3 is a common format for microRNA data resulting from small-RNA RNA-Seq workflows. + miRTop format + + + mirGFF3 is a specialisation of GFF3; produced by small-RNA-Seq analysis workflows, usable and convertible with the miRTop API (https://mirtop.readthedocs.io/en/latest/), and consumable by tools for downstream analysis. + mirGFF3 + + + + + + + + + 1.21 + A "placeholder" concept for formats of annotated RNA data, including e.g. microRNA and RNA-Seq data. + RNA data format + miRNA data format + microRNA data format + + + RNA annotation format + + + + + + + + + + + + + + + 1.22 + true + File format to store trajectory information for a 3D structure . + CG trajectory formats + MD trajectory formats + NA trajectory formats + Protein trajectory formats + + + Formats differ on what they are able to store (coordinates, velocities, topologies) and how they are storing it (raw, compressed, textual, binary). + Trajectory format + + + + + + + + + 1.22 + true + Binary file format to store trajectory information for a 3D structure . + + + Trajectory format (binary) + + + + + + + + + 1.22 + true + Textual file format to store trajectory information for a 3D structure . + + + Trajectory format (text) + + + + + + + + + + 1.22 + HDF is the name of a set of file formats and libraries designed to store and organize large amounts of numerical data, originally developed at the National Center for Supercomputing Applications at the University of Illinois. + + + HDF is currently supported by many commercial and non-commercial software platforms such as Java, MATLAB/Scilab, Octave, Python and R. + HDF + + + + + + + + + + 1.22 + PCAZip format is a binary compressed file to store atom coordinates based on Essential Dynamics (ED) and Principal Component Analysis (PCA). + + + The compression is made projecting the Cartesian snapshots collected along the trajectory into an orthogonal space defined by the most relevant eigenvectors obtained by diagonalization of the covariance matrix (PCA). In the compression/decompression process, part of the original information is lost, depending on the final number of eigenvectors chosen. However, with a reasonable choice of the set of eigenvectors the compression typically reduces the trajectory file to less than one tenth of their original size with very acceptable loss of information. Compression with PCAZip can only be applied to unsolvated structures. + PCAzip + + + + + + + + + + 1.22 + Portable binary format for trajectories produced by GROMACS package. + + + XTC uses the External Data Representation (xdr) routines for writing and reading data which were created for the Unix Network File System (NFS). XTC files use a reduced precision (lossy) algorithm which works multiplying the coordinates by a scaling factor (typically 1000), so converting them to pm (GROMACS standard distance unit is nm). This allows an integer rounding of the values. Several other tricks are performed, such as making use of atom proximity information: atoms close in sequence are usually close in space (e.g. water molecules). That makes XTC format the most efficient in terms of disk usage, in most cases reducing by a factor of 2 the size of any other binary trajectory format. + XTC + + + + + + + + + + 1.22 + Trajectory Next Generation (TNG) is a format for storage of molecular simulation data. It is designed and implemented by the GROMACS development group, and it is called to be the substitute of the XTC format. + Trajectory Next Generation format + + + Fully architecture-independent format, regarding both endianness and the ability to mix single/double precision trajectories and I/O libraries. Self-sufficient, it should not require any other files for reading, and all the data should be contained in a single file for easy transport. Temporal compression of data, improving the compression rate of the previous XTC format. Possibility to store meta-data with information about the simulation. Direct access to a particular frame. Efficient parallel I/O. + TNG + + + + + + + + + + + 1.22 + The XYZ chemical file format is widely supported by many programs, although many slightly different XYZ file formats coexist (Tinker XYZ, UniChem XYZ, etc.). Basic information stored for each atom in the system are x, y and z coordinates and atom element/atomic number. + + + XYZ files are structured in this way: First line contains the number of atoms in the file. Second line contains a title, comment, or filename. Remaining lines contain atom information. Each line starts with the element symbol, followed by x, y and z coordinates in angstroms separated by whitespace. Multiple molecules or frames can be contained within one file, so it supports trajectory storage. XYZ files can be directly represented by a molecular viewer, as they contain all the basic information needed to build the 3D model. + XYZ + + + + + + + + + + + 1.22 + + AMBER trajectory (also called mdcrd), with 10 coordinates per line and format F8.3 (fixed point notation with field width 8 and 3 decimal places). + AMBER trajectory format + inpcrd + + + mdcrd + + + + + + + + + + + + + + + 1.22 + true + Format of topology files; containing the static information of a structure molecular system that is needed for a molecular simulation. + CG topology format + MD topology format + NA topology format + Protein topology format + + + Many different file formats exist describing structural molecular topology. Typically, each MD package or simulation software works with their own implementation (e.g. GROMACS top, CHARMM psf, AMBER prmtop). + Topology format + + + + + + + + + + + 1.22 + + GROMACS MD package top textual files define an entire structure system topology, either directly, or by including itp files. + + + There is currently no tool available for conversion between GROMACS topology format and other formats, due to the internal differences in both approaches. There is, however, a method to convert small molecules parameterized with AMBER force-field into GROMACS format, allowing simulations of these systems with GROMACS MD package. + GROMACS top + + + + + + + + + + + 1.22 + + AMBER Prmtop file (version 7) is a structure topology text file divided in several sections designed to be parsed easily using simple Fortran code. Each section contains particular topology information, such as atom name, charge, mass, angles, dihedrals, etc. + AMBER Parm + AMBER Parm7 + Parm7 + Prmtop + Prmtop7 + + + It can be modified manually, but as the size of the system increases, the hand-editing becomes increasingly complex. AMBER Parameter-Topology file format is used extensively by the AMBER software suite and is referred to as the Prmtop file for short. + version 7 is written to distinguish it from old versions of AMBER Prmtop. Similarly to HDF5, it is a completely different format, according to AMBER group: a drastic change to the file format occurred with the 2004 release of Amber 7 (http://ambermd.org/prmtop.pdf) + AMBER top + + + + + + + + + + + 1.22 + + X-Plor Protein Structure Files (PSF) are structure topology files used by NAMD and CHARMM molecular simulations programs. PSF files contain six main sections of interest: atoms, bonds, angles, dihedrals, improper dihedrals (force terms used to maintain planarity) and cross-terms. + + + The high similarity in the functional form of the two potential energy functions used by AMBER and CHARMM force-fields gives rise to the possible use of one force-field within the other MD engine. Therefore, the conversion of PSF files to AMBER Prmtop format is possible with the use of AMBER chamber (CHARMM - AMBER) program. + PSF + + + + + + + + + + + + 1.22 + + GROMACS itp files (include topology) contain structure topology information, and are typically included in GROMACS topology files (GROMACS top). Itp files are used to define individual (or multiple) components of a topology as a separate file. This is particularly useful if there is a molecule that is used frequently, and also reduces the size of the system topology file, splitting it in different parts. + + + GROMACS itp files are used also to define position restrictions on the molecule, or to define the force field parameters for a particular ligand. + GROMACS itp + + + + + + + + + + + + + + + 1.22 + Format of force field parameter files, which store the set of parameters (charges, masses, radii, bond lengths, bond dihedrals, etc.) that are essential for the proper description and simulation of a molecular system. + Many different file formats exist describing force field parameters. Typically, each MD package or simulation software works with their own implementation (e.g. GROMACS itp, CHARMM rtf, AMBER off / frcmod). + FF parameter format + + + + + + + + + + 1.22 + Scripps Research Institute BinPos format is a binary formatted file to store atom coordinates. + Scripps Research Institute BinPos + + + It is basically a translation of the ASCII atom coordinate format to binary code. The only additional information stored is a magic number that identifies the BinPos format and the number of atoms per snapshot. The remainder is the chain of coordinates binary encoded. A drawback of this format is its architecture dependency. Integers and floats codification depends on the architecture, thus it needs to be converted if working in different platforms (little endian, big endian). + BinPos + + + + + + + + + + + 1.22 + + AMBER coordinate/restart file with 6 coordinates per line and decimal format F12.7 (fixed point notation with field width 12 and 7 decimal places). + restrt + rst7 + + + RST + + + + + + + + + + + 1.22 + Format of CHARMM Residue Topology Files (RTF), which define groups by including the atoms, the properties of the group, and bond and charge information. + + + There is currently no tool available for conversion between GROMACS topology format and other formats, due to the internal differences in both approaches. There is, however, a method to convert small molecules parameterized with AMBER force-field into GROMACS format, allowing simulations of these systems with GROMACS MD package. + CHARMM rtf + + + + + + + + + + 1.22 + + AMBER frcmod (Force field Modification) is a file format to store any modification to the standard force field needed for a particular molecule to be properly represented in the simulation. + + + AMBER frcmod + + + + + + + + + + 1.22 + + AMBER Object File Format library files (OFF library files) store residue libraries (forcefield residue parameters). + AMBER Object File Format + AMBER lib + AMBER off + + + + + + + + + + 1.22 + MReData is a text based data standard for processed NMR data. It is relying on SDF molecule data and allows to store assignments of NMR peaks to molecule features. The NMR-extracted data (or "NMReDATA") includes: Chemical shift,scalar coupling, 2D correlation, assignment, etc. + + + NMReData is a text based data standard for processed NMR data. It is relying on SDF molecule data and allows to store assignments of NMR peaks to molecule features. The NMR-extracted data (or "NMReDATA") includes: Chemical shift,scalar coupling, 2D correlation, assignment, etc. Find more in the paper at https://doi.org/10.1002/mrc.4527. + NMReDATA + + + + + + + + + + + + + + + + + + 1.22 + + + + + BpForms is a string format for concretely representing the primary structures of biopolymers, including DNA, RNA, and proteins that include non-canonical nucleic and amino acids. See https://www.bpforms.org for more information. + + + BpForms + + + + + + + + + + + 1.22 + + Format of trr files that contain the trajectory of a simulation experiment used by GROMACS. + The first 4 bytes of any trr file containing 1993. See https://github.com/galaxyproject/galaxy/pull/6597/files#diff-409951594551183dbf886e24de6cb129R760 + trr + + + + + + + + + + + + + + + + 1.22 + + + + + + msh + + + + Mash sketch is a format for sequence / sequence checksum information. To make a sketch, each k-mer in a sequence is hashed, which creates a pseudo-random identifier. By sorting these hashes, a small subset from the top of the sorted list can represent the entire sequence. + Mash sketch + min-hash sketch + + + msh + + + + + + + + + + + + + + + + + + + + + + 1.23 + + + + loom + The Loom file format is based on HDF5, a standard for storing large numerical datasets. The Loom format is designed to efficiently hold large omics datasets. Typically, such data takes the form of a large matrix of numbers, along with metadata for the rows and columns. + Loom + + + + + + + + + + + + + + + + + + + + + + + 1.23 + + + + zarray + zgroup + The Zarr format is an implementation of chunked, compressed, N-dimensional arrays for storing data. + Zarr + + + + + + + + + + + + + + + + + + + + + + + 1.23 + + + mtx + + The Matrix Market matrix (MTX) format stores numerical or pattern matrices in a dense (array format) or sparse (coordinate format) representation. + MTX + + + + + + + + + + + 1.24 + + + + + + text/plain + + + BcForms is a format for abstractly describing the molecular structure (atoms and bonds) of macromolecular complexes as a collection of subunits and crosslinks. Each subunit can be described with BpForms (http://edamontology.org/format_3909) or SMILES (http://edamontology.org/data_2301). BcForms uses an ontology of crosslinks to abstract the chemical details of crosslinks from the descriptions of complexes (see https://bpforms.org/crosslink.html). + BcForms is related to http://edamontology.org/format_3909. (BcForms uses BpForms to describe subunits which are DNA, RNA, or protein polymers.) However, that format isn't the parent of BcForms. BcForms is similarly related to SMILES (http://edamontology.org/data_2301). + BcForms + + + + + + + + + + 1.24 + + nq + N-Quads is a line-based, plain text format for encoding an RDF dataset. It includes information about the graph each triple belongs to. + + + N-Quads should not be confused with N-Triples which does not contain graph information. + N-Quads + + + + + + + + + + 1.25 + + + + + json + application/json + + Vega is a visualization grammar, a declarative language for creating, saving, and sharing interactive visualization designs. With Vega, you can describe the visual appearance and interactive behavior of a visualization in a JSON format, and generate web-based views using Canvas or SVG. + + + Vega + + + + + + + + + + 1.25 + + + + + json + application/json + + Vega-Lite is a high-level grammar of interactive graphics. It provides a concise JSON syntax for rapidly generating visualizations to support analysis. Vega-Lite specifications can be compiled to Vega specifications. + + + Vega-lite + + + + + + + + + + + + + + + + 1.25 + + + + + application/xml + + A model description language for computational neuroscience. + + + NeuroML + + + + + + + + + + + + + + + + 1.25 + + + + + bngl + application/xml + plain/text + + BioNetGen is a format for the specification and simulation of rule-based models of biochemical systems, including signal transduction, metabolic, and genetic regulatory networks. + BioNetGen Language + + + BNGL + + + + + + + + + 1.25 + + + + A Docker image is a file, comprised of multiple layers, that is used to execute code in a Docker container. An image is essentially built from the instructions for a complete and executable version of an application, which relies on the host OS kernel. + + + Docker image + + + + + + + + + + + 1.25 + + + gfa + + Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology. + Graphical Fragment Assembly (GFA) 1.0 + + + GFA 1 + + + + + + + + + + + 1.25 + + + gfa + + Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology. GFA2 is an update of GFA1 which is not compatible with GFA1. + Graphical Fragment Assembly (GFA) 2.0 + + + GFA 2 + + + + + + + + + + 1.25 + + + xlsx + application/vnd.openxmlformats-officedocument.spreadsheetml.sheet + + ObjTables is a toolkit for creating re-usable datasets that are both human and machine-readable, combining the ease of spreadsheets (e.g., Excel workbooks) with the rigor of schemas (classes, their attributes, the type of each attribute, and the possible relationships between instances of classes). ObjTables consists of a format for describing schemas for spreadsheets, numerous data types for science, a syntax for indicating the class and attribute represented by each table and column in a workbook, and software for using schemas to rigorously validate, merge, split, compare, and revision datasets. + + + ObjTables + + + + + + + + + + 1.25 + contig + The CONTIG format used for output of the SOAPdenovo alignment program. It contains contig sequences generated without using mate pair information. + + + CONTIG + + + + + + + + + + 1.25 + wego + WEGO native format used by the Web Gene Ontology Annotation Plot application. Tab-delimited format with gene names and others GO IDs (columns) with one annotation record per line. + + + WEGO + + + + + + + + + + 1.25 + rpkm + Tab-delimited format for gene expression levels table, calculated as Reads Per Kilobase per Million (RPKM) mapped reads. + Gene expression levels table format + + + For example a 1kb transcript with 1000 alignments in a sample of 10 million reads (out of which 8 million reads can be mapped) will have RPKM = 1000/(1 * 8) = 125 + RPKM + + + + + + + + + 1.25 + tar + TAR archive file format generated by the Unix-based utility tar. + TAR + Tarball + tar + + + For example a 1kb transcript with 1000 alignments in a sample of 10 million reads (out of which 8 million reads can be mapped) will have RPKM = 1000/(1 * 8) = 125 + TAR format + + + + + + + + + + + 1.25 + chain + The CHAIN format describes a pairwise alignment that allow gaps in both sequences simultaneously and is used by the UCSC Genome Browser. + + + CHAIN + https://genome.ucsc.edu/goldenPath/help/chain.html + + + + + + + + + + 1.25 + net + The NET file format is used to describe the data that underlie the net alignment annotations in the UCSC Genome Browser. + + + NET + https://genome.ucsc.edu/goldenPath/help/net.html + + + + + + + + + + 1.25 + qmap + Format of QMAP files generated for methylation data from an internal BGI pipeline. + + + QMAP + + + + + + + + + + 1.25 + ga + An emerging format for high-level Galaxy workflow description. + Galaxy workflow format + GalaxyWF + ga + + + gxformat2 + https://github.com/galaxyproject/gxformat2 + + + + + + + + + + 1.25 + wmv + The proprietary native video format of various Microsoft programs such as Windows Media Player. + Windows Media Video format + Windows movie file format + + + WMV + + + + + + + + + + 1.25 + zip + ZIP is an archive file format that supports lossless data compression. + ZIP + + + A ZIP file may contain one or more files or directories that may have been compressed. + ZIP format + + + + + + + + + + + 1.25 + lsm + Zeiss' proprietary image format based on TIFF. + + + LSM files are the default data export for the Zeiss LSM series confocal microscopes (e.g. LSM 510, LSM 710). In addition to the image data, LSM files contain most imaging settings. + LSM + + + + + + + + + 1.25 + gz + gzip + GNU zip compressed file format common to Unix-based operating systems. + GNU Zip + gz + gzip + + + GZIP format + + + + + + + + + + + 1.25 + avi + Audio Video Interleaved (AVI) format is a multimedia container format for AVI files, that allows synchronous audio-with-video playback. + Audio Video Interleaved + + + AVI + + + + + + + + + + + 1.25 + trackdb + A declaration file format for UCSC browsers track dataset display charateristics. + + + TrackDB + + + + + + + + + + 1.25 + cigar + Compact Idiosyncratic Gapped Alignment Report format is a compressed (run-length encoded) pairwise alignment format. It is useful for representing long (e.g. genomic) pairwise alignments. + CIGAR + + + CIGAR format + http://wiki.bits.vib.be/index.php/CIGAR/ + + + + + + + + + + 1.25 + stl + STL is a file format native to the stereolithography CAD software created by 3D Systems. The format is used to save and share surface-rendered 3D images and also for 3D printing. + stl + + + Stereolithography format + + + + + + + + + + 1.25 + u3d + U3D (Universal 3D) is a compressed file format and data structure for 3D computer graphics. It contains 3D model information such as triangle meshes, lighting, shading, motion data, lines and points with color and structure. + Universal 3D + Universal 3D format + + + U3D + + + + + + + + + + 1.25 + tex + Bitmap image format used for storing textures. + + + Texture files can create the appearance of different surfaces and can be applied to both 2D and 3D objects. Note the file extension .tex is also used for LaTex documents which are a completely different format and they are NOT interchangeable. + Texture file format + + + + + + + + + + 1.25 + py + Format for scripts writtenin Python - a widely used high-level programming language for general-purpose programming. + Python + Python program + py + + + Python script + + + + + + + + + + 1.25 + mp4 + A digital multimedia container format most commonly used to store video and audio. + MP4 + + + MPEG-4 + + + + + + + + + + + 1.25 + pl + Format for scripts written in Perl - a family of high-level, general-purpose, interpreted, dynamic programming languages. + Perl + Perl program + pl + + + Perl script + + + + + + + + + + 1.25 + r + Format for scripts written in the R language - an open source programming language and software environment for statistical computing and graphics that is supported by the R Foundation for Statistical Computing. + R + R program + + + R script + + + + + + + + + + 1.25 + rmd + A file format for making dynamic documents (R Markdown scripts) with the R language. + + + R markdown + https://rmarkdown.rstudio.com/articles_intro.html + + + + + + + + + 1.25 + This duplicates an existing concept (http://edamontology.org/format_3549). + 1.26 + + An open file format from the Neuroimaging Informatics Technology Initiative (NIfTI) commonly used to store brain imaging data obtained using Magnetic Resonance Imaging (MRI) methods. + + + NIFTI format + true + + + + + + + + + 1.25 + pickle + Format used by Python pickle module for serializing and de-serializing a Python object structure. + + + pickle + https://docs.python.org/2/library/pickle.html + + + + + + + + + 1.25 + npy + The standard binary file format used by NumPy - a fundamental package for scientific computing with Python - for persisting a single arbitrary NumPy array on disk. The format stores all of the shape and dtype information necessary to reconstruct the array correctly. + NumPy + npy + + + NumPy format + + + + + + + + + 1.25 + repz + Format of repertoire (archive) files that can be read by SimToolbox (a MATLAB toolbox for structured illumination fluorescence microscopy) or alternatively extracted with zip file archiver software. + + + SimTools repertoire file format + https://pdfs.semanticscholar.org/5f25/f1cc6cdf2225fe22dc6fd4fc0296d486a85c.pdf + + + + + + + + + 1.25 + cfg + A configuration file used by various programs to store settings that are specific to their respective software. + + + Configuration file format + + + + + + + + + 1.25 + zst + Format used by the Zstandard real-time compression algorithm. + Zstandard compression format + Zstandard-compressed file format + zst + + + Zstandard format + https://github.com/facebook/zstd/blob/master/doc/zstd_compression_format.md + + + + + + + + + + 1.25 + m + The file format for MATLAB scripts or functions. + MATLAB + m + + + MATLAB script + + + + + + + + + + + + + + + + 1.26 + + + + A data format for specifying parameter estimation problems in systems biology. + + + PEtab + + + + + + + + + + 1.26 + + + g.vcf + g.vcf.gz + Genomic Variant Call Format (gVCF) is a version of VCF that includes not only the positions that are variant when compared to a reference genome, but also the non-variant positions as ranges, including metrics of confidence that the positions in the range are actually non-variant e.g. minimum read-depth and genotype quality. + g.vcf + g.vcf.gz + + + gVCF + + + + + + + + + + + + + + 1.26 + + + cml + + Chemical Markup Language (CML) is an XML-based format for encoding detailed information about a wide range of chemical concepts. + ChemML + + + cml + + + + + + + + + + + + + + + + + + + 1.26 + + + cif + + Crystallographic Information File (CIF) is a data exchange standard file format for Crystallographic Information and related Structural Science data. + + + cif + + + + + + + + + + + + + 1.26 + + + json + + + + + + + + + + Format for describing the capabilities of a biosimulation tool including the modeling frameworks, simulation algorithms, and modeling formats that it supports, as well as metadata such as a list of the interfaces, programming languages, and operating systems supported by the tool; a link to download the tool; a list of the authors of the tool; and the license to the tool. + + + BioSimulators format for the specifications of biosimulation tools + + + + + + + + + + 1.26 + + + + Outlines the syntax and semantics of the input and output arguments for command-line interfaces for biosimulation tools. + + + BioSimulators standard for command-line interfaces for biosimulation tools + + + + + + + + + + 1.26 + Data format derived from the standard PDB format, which enables user to incorporate parameters for charge and radius to the existing PDB data file. + + + PQR + + + + + + + + + + + 1.26 + Data format used in AutoDock 4 for storing atomic coordinates, partial atomic charges and AutoDock atom types for both receptors and ligands. + + + PDBQT + + + + + + + + + + + + 1.26 + + + msp + MSP is a data format for mass spectrometry data. + + + NIST Text file format for storing MS∕MS spectra (m∕z and intensity of mass peaks) along with additional annotations for each spectrum. A single MSP file can thus contain single or multiple spectra. This format is frequently used to share spectra libraries. + MSP + + + + + + + + + + beta12orEarlier + true + Function + A function that processes a set of inputs and results in a set of outputs, or associates arguments (inputs) with values (outputs). + Computational method + Computational operation + Computational procedure + Computational subroutine + Function (programming) + Lambda abstraction + Mathematical function + Mathematical operation + Computational tool + Process + sumo:Function + + + Special cases are: a) An operation that consumes no input (has no input arguments). Such operation is either a constant function, or an operation depending only on the underlying state. b) An operation that may modify the underlying state but has no output. c) The singular-case operation with no input or output, that still may modify the underlying state. + Operation + + + + + + + + + + + + + + + + + + + + + + + Function + Operation is a function that is computational. It typically has input(s) and output(s), which are always data. + + + + + Computational tool + Computational tool provides one or more operations. + + + + + Process + Process can have a function (as its quality/attribute), and can also perform an operation with inputs and outputs. + + + + + + + + + beta12orEarlier + Search or query a data resource and retrieve entries and / or annotation. + Database retrieval + Query + + + Query and retrieval + + + + + + + + + beta12orEarlier + beta13 + + + Search database to retrieve all relevant references to a particular entity or entry. + + Data retrieval (database cross-reference) + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Annotate an entity (typically a biological or biomedical database entity) with terms from a controlled vocabulary. + + + This is a broad concept and is used a placeholder for other, more specific concepts. + Annotation + + + + + + + + + + + + + + + beta12orEarlier + true + Generate an index of (typically a file of) biological data. + Data indexing + Database indexing + + + Indexing + + + + + + + + + beta12orEarlier + 1.6 + + + Analyse an index of biological data. + + Data index analysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Retrieve basic information about a molecular sequence. + + Annotation retrieval (sequence) + true + + + + + + + + + + beta12orEarlier + Generate a molecular sequence by some means. + Sequence generation (nucleic acid) + Sequence generation (protein) + + + Sequence generation + + + + + + + + + + beta12orEarlier + Edit or change a molecular sequence, either randomly or specifically. + + + Sequence editing + + + + + + + + + beta12orEarlier + Merge two or more (typically overlapping) molecular sequences. + Sequence splicing + Paired-end merging + Paired-end stitching + Read merging + Read stitching + + + Sequence merging + + + + + + + + + + beta12orEarlier + Convert a molecular sequence from one type to another. + + + Sequence conversion + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate sequence complexity, for example to find low-complexity regions in sequences. + + + Sequence complexity calculation + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate sequence ambiguity, for example identity regions in protein or nucleotide sequences with many ambiguity codes. + + + Sequence ambiguity calculation + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate character or word composition or frequency of a molecular sequence. + + + Sequence composition calculation + + + + + + + + + + + + + + + beta12orEarlier + Find and/or analyse repeat sequences in (typically nucleotide) sequences. + + + Repeat sequences include tandem repeats, inverted or palindromic repeats, DNA microsatellites (Simple Sequence Repeats or SSRs), interspersed repeats, maximal duplications and reverse, complemented and reverse complemented repeats etc. Repeat units can be exact or imperfect, in tandem or dispersed, of specified or unspecified length. + Repeat sequence analysis + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Discover new motifs or conserved patterns in sequences or sequence alignments (de-novo discovery). + Motif discovery + + + Motifs and patterns might be conserved or over-represented (occur with improbable frequency). + Sequence motif discovery + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Find (scan for) known motifs, patterns and regular expressions in molecular sequence(s). + Motif scanning + Sequence signature detection + Sequence signature recognition + Motif detection + Motif recognition + Motif search + Sequence motif detection + Sequence motif search + Sequence profile search + + + Sequence motif recognition + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Find motifs shared by molecular sequences. + + + Sequence motif comparison + + + + + + + + + beta12orEarlier + beta13 + + + Analyse the sequence, conformational or physicochemical properties of transcription regulatory elements in DNA sequences. + + For example transcription factor binding sites (TFBS) analysis to predict accessibility of DNA to binding factors. + Transcription regulatory sequence analysis + true + + + + + + + + + beta12orEarlier + 1.19 + + Identify common, conserved (homologous) or synonymous transcriptional regulatory motifs (transcription factor binding sites). + + + Conserved transcription regulatory sequence identification + true + + + + + + + + + beta12orEarlier + 1.18 + + + Extract, calculate or predict non-positional (physical or chemical) properties of a protein from processing a protein (3D) structure. + + + Protein property calculation (from structure) + true + + + + + + + + + beta12orEarlier + Analyse flexibility and motion in protein structure. + CG analysis + MD analysis + Protein Dynamics Analysis + Trajectory analysis + Nucleic Acid Dynamics Analysis + Protein flexibility and motion analysis + Protein flexibility prediction + Protein motion prediction + + + Use this concept for analysis of flexible and rigid residues, local chain deformability, regions undergoing conformational change, molecular vibrations or fluctuational dynamics, domain motions or other large-scale structural transitions in a protein structure. + Simulation analysis + + + + + + + + + + + + + + + + beta12orEarlier + Identify or screen for 3D structural motifs in protein structure(s). + Protein structural feature identification + Protein structural motif recognition + + + This includes conserved substructures and conserved geometry, such as spatial arrangement of secondary structure or protein backbone. Methods might use structure alignment, structural templates, searches for similar electrostatic potential and molecular surface shape, surface-mapping of phylogenetic information etc. + Structural motif discovery + + + + + + + + + + + + + + + + beta12orEarlier + Identify structural domains in a protein structure from first principles (for example calculations on structural compactness). + + + Protein domain recognition + + + + + + + + + beta12orEarlier + Analyse the architecture (spatial arrangement of secondary structure) of protein structure(s). + + + Protein architecture analysis + + + + + + + + + + + + + + + beta12orEarlier + WHATIF: SymShellFiveXML + WHATIF: SymShellOneXML + WHATIF: SymShellTenXML + WHATIF: SymShellTwoXML + WHATIF:ListContactsNormal + WHATIF:ListContactsRelaxed + WHATIF:ListSideChainContactsNormal + WHATIF:ListSideChainContactsRelaxed + Calculate or extract inter-atomic, inter-residue or residue-atom contacts, distances and interactions in protein structure(s). + + + Residue interaction calculation + + + + + + + + + + + + + + + beta12orEarlier + WHATIF:CysteineTorsions + WHATIF:ResidueTorsions + WHATIF:ResidueTorsionsBB + WHATIF:ShowTauAngle + Calculate, visualise or analyse phi/psi angles of a protein structure. + Backbone torsion angle calculation + Cysteine torsion angle calculation + Tau angle calculation + Torsion angle calculation + + + Protein geometry calculation + + + + + + + + + + beta12orEarlier + Extract, calculate or predict non-positional (physical or chemical) properties of a protein, including any non-positional properties of the molecular sequence, from processing a protein sequence or 3D structure. + Protein property rendering + Protein property calculation (from sequence) + Protein property calculation (from structure) + Protein structural property calculation + Structural property calculation + + + This includes methods to render and visualise the properties of a protein sequence, and a residue-level search for properties such as solvent accessibility, hydropathy, secondary structure, ligand-binding etc. + Protein property calculation + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Immunogen design + Predict antigenicity, allergenicity / immunogenicity, allergic cross-reactivity etc of peptides and proteins. + Antigenicity prediction + Immunogenicity prediction + B cell peptide immunogenicity prediction + Hopp and Woods plotting + MHC peptide immunogenicity prediction + + + Immunological system are cellular or humoral. In vaccine design to induces a cellular immune response, methods must search for antigens that can be recognized by the major histocompatibility complex (MHC) molecules present in T lymphocytes. If a humoral response is required, antigens for B cells must be identified. + This includes methods that generate a graphical rendering of antigenicity of a protein, such as a Hopp and Woods plot. + This is usually done in the development of peptide-specific antibodies or multi-epitope vaccines. Methods might use sequence data (for example motifs) and / or structural data. + Peptide immunogenicity prediction + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict, recognise and identify positional features in molecular sequences such as key functional sites or regions. + Sequence feature prediction + Sequence feature recognition + Motif database search + SO:0000110 + + + Look at "Protein feature detection" (http://edamontology.org/operation_3092) and "Nucleic acid feature detection" (http://edamontology.org/operation_0415) in case more specific terms are needed. + Sequence feature detection + + + + + + + + + beta12orEarlier + beta13 + + + Extract a sequence feature table from a sequence database entry. + + Data retrieval (feature table) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query the features (in a feature table) of molecular sequence(s). + + Feature table query + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Compare the feature tables of two or more molecular sequences. + Feature comparison + Feature table comparison + + + Sequence feature comparison + + + + + + + + + beta12orEarlier + beta13 + + + Display basic information about a sequence alignment. + + Data retrieval (sequence alignment) + true + + + + + + + + + + + + + + + beta12orEarlier + Analyse a molecular sequence alignment. + + + Sequence alignment analysis + + + + + + + + + + beta12orEarlier + Compare (typically by aligning) two molecular sequence alignments. + + + See also 'Sequence profile alignment'. + Sequence alignment comparison + + + + + + + + + + beta12orEarlier + Convert a molecular sequence alignment from one type to another (for example amino acid to coding nucleotide sequence). + + + Sequence alignment conversion + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) physicochemical property data of nucleic acids. + + Nucleic acid property processing + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate or predict physical or chemical properties of nucleic acid molecules, including any non-positional properties of the molecular sequence. + + + Nucleic acid property calculation + + + + + + + + + + + + + + + beta12orEarlier + Predict splicing alternatives or transcript isoforms from analysis of sequence data. + Alternative splicing analysis + Alternative splicing detection + Differential splicing analysis + Splice transcript prediction + + + Alternative splicing prediction + + + + + + + + + + + + + + + + beta12orEarlier + Detect frameshifts in DNA sequences, including frameshift sites and signals, and frameshift errors from sequencing projects. + Frameshift error detection + + + Methods include sequence alignment (if related sequences are available) and word-based sequence comparison. + Frameshift detection + + + + + + + + + beta12orEarlier + Detect vector sequences in nucleotide sequence, typically by comparison to a set of known vector sequences. + + + Vector sequence detection + + + + + + + + + + + + beta12orEarlier + Predict secondary structure of protein sequences. + Secondary structure prediction (protein) + + + Methods might use amino acid composition, local sequence information, multiple sequence alignments, physicochemical features, estimated energy content, statistical algorithms, hidden Markov models, support vector machines, kernel machines, neural networks etc. + Protein secondary structure prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict super-secondary structure of protein sequence(s). + + + Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc. + Protein super-secondary structure prediction + + + + + + + + + + beta12orEarlier + Predict and/or classify transmembrane proteins or transmembrane (helical) domains or regions in protein sequences. + + + Transmembrane protein prediction + + + + + + + + + + + + + + + beta12orEarlier + Analyse transmembrane protein(s), typically by processing sequence and / or structural data, and write an informative report for example about the protein and its transmembrane domains / regions. + + + Use this (or child) concept for analysis of transmembrane domains (buried and exposed faces), transmembrane helices, helix topology, orientation, inter-helical contacts, membrane dipping (re-entrant) loops and other secondary structure etc. Methods might use pattern discovery, hidden Markov models, sequence alignment, structural profiles, amino acid property analysis, comparison to known domains or some combination (hybrid methods). + Transmembrane protein analysis + + + + + + + + + beta12orEarlier + This is a "organisational class" not very useful for annotation per se. + 1.19 + + + + + Predict tertiary structure of a molecular (biopolymer) sequence. + + Structure prediction + true + + + + + + + + + + + + + + + + beta12orEarlier + Predict contacts, non-covalent interactions and distance (constraints) between amino acids in protein sequences. + Residue interaction prediction + Contact map prediction + Protein contact map prediction + + + Methods usually involve multiple sequence alignment analysis. + Residue contact prediction + + + + + + + + + beta12orEarlier + 1.19 + + Analyse experimental protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc. + + + Protein interaction raw data analysis + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify or predict protein-protein interactions, interfaces, binding sites etc in protein sequences. + + + Protein-protein interaction prediction (from protein sequence) + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify or predict protein-protein interactions, interfaces, binding sites etc in protein structures. + + + Protein-protein interaction prediction (from protein structure) + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a network of protein interactions. + Protein interaction network comparison + + + Protein interaction network analysis + + + + + + + + + beta12orEarlier + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + Compare two or more biological pathways or networks. + + Pathway or network comparison + true + + + + + + + + + + + + + + + + + beta12orEarlier + Predict RNA secondary structure (for example knots, pseudoknots, alternative structures etc). + RNA shape prediction + + + Methods might use RNA motifs, predicted intermolecular contacts, or RNA sequence-structure compatibility (inverse RNA folding). + RNA secondary structure prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse some aspect of RNA/DNA folding, typically by processing sequence and/or structural data. For example, compute folding energies such as minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants. + Nucleic acid folding + Nucleic acid folding modelling + Nucleic acid folding prediction + Nucleic acid folding energy calculation + + + Nucleic acid folding analysis + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on restriction enzymes or restriction enzyme sites. + + Data retrieval (restriction enzyme annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Identify genetic markers in DNA sequences. + + A genetic marker is any DNA sequence of known chromosomal location that is associated with and specific to a particular gene or trait. This includes short sequences surrounding a SNP, Sequence-Tagged Sites (STS) which are well suited for PCR amplification, a longer minisatellites sequence etc. + Genetic marker identification + true + + + + + + + + + + + + + + + + beta12orEarlier + Generate a genetic (linkage) map of a DNA sequence (typically a chromosome) showing the relative positions of genetic markers based on estimation of non-physical distances. + Functional mapping + Genetic cartography + Genetic map construction + Genetic map generation + Linkage mapping + QTL mapping + + + Mapping involves ordering genetic loci along a chromosome and estimating the physical distance between loci. A genetic map shows the relative (not physical) position of known genes and genetic markers. + This includes mapping of the genetic architecture of dynamic complex traits (functional mapping), e.g. by characterisation of the underlying quantitative trait loci (QTLs) or nucleotides (QTNs). + Genetic mapping + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse genetic linkage. + + + For example, estimate how close two genes are on a chromosome by calculating how often they are transmitted together to an offspring, ascertain whether two genes are linked and parental linkage, calculate linkage map distance etc. + Linkage analysis + + + + + + + + + + + + + + + + beta12orEarlier + Calculate codon usage statistics and create a codon usage table. + Codon usage table construction + + + Codon usage table generation + + + + + + + + + + beta12orEarlier + Compare two or more codon usage tables. + + + Codon usage table comparison + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse codon usage in molecular sequences or process codon usage data (e.g. a codon usage table). + Codon usage data analysis + Codon usage table analysis + + + Codon usage analysis + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Identify and plot third base position variability in a nucleotide sequence. + + + Base position variability plotting + + + + + + + + + beta12orEarlier + Find exact character or word matches between molecular sequences without full sequence alignment. + + + Sequence word comparison + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate a sequence distance matrix or otherwise estimate genetic distances between molecular sequences. + Phylogenetic distance matrix generation + Sequence distance calculation + Sequence distance matrix construction + + + Sequence distance matrix generation + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more molecular sequences, identify and remove redundant sequences based on some criteria. + + + Sequence redundancy removal + + + + + + + + + + + + + + + + + beta12orEarlier + Build clusters of similar sequences, typically using scores from pair-wise alignment or other comparison of the sequences. + Sequence cluster construction + Sequence cluster generation + + + The clusters may be output or used internally for some other purpose. + Sequence clustering + + + + + + + + + + + + + + + + + + beta12orEarlier + Align (identify equivalent sites within) molecular sequences. + Sequence alignment construction + Sequence alignment generation + Consensus-based sequence alignment + Constrained sequence alignment + Multiple sequence alignment (constrained) + Sequence alignment (constrained) + + + Includes methods that align sequence profiles (representing sequence alignments): ethods might perform one-to-one, one-to-many or many-to-many comparisons. See also 'Sequence alignment comparison'. + See also "Read mapping" + Sequence alignment + + + + + + + + + + beta12orEarlier + beta13 + + + Align two or more molecular sequences of different types (for example genomic DNA to EST, cDNA or mRNA). + + Hybrid sequence alignment construction + true + + + + + + + + + beta12orEarlier + Align molecular sequences using sequence and structural information. + Sequence alignment (structure-based) + + + Structure-based sequence alignment + + + + + + + + + + + + + + + + + beta12orEarlier + Align (superimpose) molecular tertiary structures. + Structural alignment + 3D profile alignment + 3D profile-to-3D profile alignment + Structural profile alignment + + + Includes methods that align structural (3D) profiles or templates (representing structures or structure alignments) - including methods that perform one-to-one, one-to-many or many-to-many comparisons. + Structure alignment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate some type of sequence profile (for example a hidden Markov model) from a sequence alignment. + Sequence profile construction + + + Sequence profile generation + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate some type of structural (3D) profile or template from a structure or structure alignment. + Structural profile construction + Structural profile generation + + + 3D profile generation + + + + + + + + + beta12orEarlier + 1.19 + + Align sequence profiles (representing sequence alignments). + + + Profile-profile alignment + true + + + + + + + + + beta12orEarlier + 1.19 + + Align structural (3D) profiles or templates (representing structures or structure alignments). + + + 3D profile-to-3D profile alignment + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Align molecular sequence(s) to sequence profile(s), or profiles to other profiles. A profile typically represents a sequence alignment. + Profile-profile alignment + Profile-to-profile alignment + Sequence-profile alignment + Sequence-to-profile alignment + + + A sequence profile typically represents a sequence alignment. Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Sequence profile alignment + + + + + + + + + beta12orEarlier + 1.19 + + Align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment). + + + Sequence-to-3D-profile alignment + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Align molecular sequence to structure in 3D space (threading). + Sequence-structure alignment + Sequence-3D profile alignment + Sequence-to-3D-profile alignment + + + This includes sequence-to-3D-profile alignment methods, which align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment) - methods might perform one-to-one, one-to-many or many-to-many comparisons. + Use this concept for methods that evaluate sequence-structure compatibility by assessing residue interactions in 3D. Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Protein threading + + + + + + + + + + + + + + beta12orEarlier + Recognize (predict and identify) known protein structural domains or folds in protein sequence(s) which (typically) are not accompanied by any significant sequence similarity to know structures. + Domain prediction + Fold prediction + Protein domain prediction + Protein fold prediction + Protein fold recognition + + + Methods use some type of mapping between sequence and fold, for example secondary structure prediction and alignment, profile comparison, sequence properties, homologous sequence search, kernel machines etc. Domains and folds might be taken from SCOP or CATH. + Fold recognition + + + + + + + + + beta12orEarlier + (jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved. + 1.17 + + Search for and retrieve data concerning or describing some core data, as distinct from the primary data that is being described. + + + This includes documentation, general information and other metadata on entities such as databases, database entries and tools. + Metadata retrieval + true + + + + + + + + + + + + + + + beta12orEarlier + Query scientific literature, in search for articles, article data, concepts, named entities, or for statistics. + + + Literature search + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Text analysis + Process and analyse text (typically scientific literature) to extract information from it. + Literature mining + Text analytics + Text data mining + Article analysis + Literature analysis + + + Text mining + + + + + + + + + + beta12orEarlier + Perform in-silico (virtual) PCR. + + + Virtual PCR + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Design or predict oligonucleotide primers for PCR and DNA amplification etc. + PCR primer prediction + Primer design + PCR primer design (based on gene structure) + PCR primer design (for conserved primers) + PCR primer design (for gene transcription profiling) + PCR primer design (for genotyping polymorphisms) + PCR primer design (for large scale sequencing) + PCR primer design (for methylation PCRs) + Primer quality estimation + + + Primer design involves predicting or selecting primers that are specific to a provided PCR template. Primers can be designed with certain properties such as size of product desired, primer size etc. The output might be a minimal or overlapping primer set. + This includes predicting primers based on gene structure, promoters, exon-exon junctions, predicting primers that are conserved across multiple genomes or species, primers for for gene transcription profiling, for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs), for large scale sequencing, or for methylation PCRs. + PCR primer design + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict and/or optimize oligonucleotide probes for DNA microarrays, for example for transcription profiling of genes, or for genomes and gene families. + Microarray probe prediction + + + Microarray probe design + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Combine (align and merge) overlapping fragments of a DNA sequence to reconstruct the original sequence. + Metagenomic assembly + Sequence assembly editing + + + For example, assemble overlapping reads from paired-end sequencers into contigs (a contiguous sequence corresponding to read overlaps). Or assemble contigs, for example ESTs and genomic DNA fragments, depending on the detected fragment overlaps. + Sequence assembly + + + + + + + + + + beta12orEarlier + 1.16 + + Standardize or normalize microarray data. + + + Microarray data standardisation and normalisation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) SAGE, MPSS or SBS experimental data. + + Sequencing-based expression profile data processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Perform cluster analysis of expression data to identify groups with similar expression profiles, for example by clustering. + Gene expression clustering + Gene expression profile clustering + + + Expression profile clustering + + + + + + + + + beta12orEarlier + The measurement of the activity (expression) of multiple genes in a cell, tissue, sample etc., in order to get an impression of biological function. + Feature expression analysis + Functional profiling + Gene expression profile construction + Gene expression profile generation + Gene expression quantification + Gene transcription profiling + Non-coding RNA profiling + Protein profiling + RNA profiling + mRNA profiling + + + Gene expression profiling generates some sort of gene expression profile, for example from microarray data. + Gene expression profiling + + + + + + + + + + beta12orEarlier + Comparison of expression profiles. + Gene expression comparison + Gene expression profile comparison + + + Expression profile comparison + + + + + + + + + beta12orEarlier + beta12orEarlier + + Interpret (in functional terms) and annotate gene expression data. + + + Functional profiling + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse EST or cDNA sequences. + + For example, identify full-length cDNAs from EST sequences or detect potential EST antisense transcripts. + EST and cDNA sequence analysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identify and select targets for protein structural determination. + + Methods will typically navigate a graph of protein families of known structure. + Structural genomics target selection + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Assign secondary structure from protein coordinate or experimental data. + + + Includes secondary structure assignment from circular dichroism (CD) spectroscopic data, and from protein coordinate data. + Protein secondary structure assignment + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Assign a protein tertiary structure (3D coordinates), or other aspects of protein structure, from raw experimental data. + NOE assignment + Structure calculation + + + Protein structure assignment + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + WHATIF: CorrectedPDBasXML + WHATIF: UseFileDB + WHATIF: UseResidueDB + Evaluate the quality or correctness a protein three-dimensional model. + Protein model validation + Residue validation + + + Model validation might involve checks for atomic packing, steric clashes (bumps), volume irregularities, agreement with electron density maps, number of amino acid residues, percentage of residues with missing or bad atoms, irregular Ramachandran Z-scores, irregular Chi-1 / Chi-2 normality scores, RMS-Z score on bonds and angles etc. + The PDB file format has had difficulties, inconsistencies and errors. Corrections can include identifying a meaningful sequence, removal of alternate atoms, correction of nomenclature problems, removal of incomplete residues and spurious waters, addition or removal of water, modelling of missing side chains, optimisation of cysteine bonds, regularisation of bond lengths, bond angles and planarities etc. + This includes methods that calculate poor quality residues. The scoring function to identify poor quality residues may consider residues with bad atoms or atoms with high B-factor, residues in the N- or C-terminal position, adjacent to an unstructured residue, non-canonical residues, glycine and proline (or adjacent to these such residues). + Protein structure validation + + + + + + + + + + + beta12orEarlier + WHATIF: CorrectedPDBasXML + Refine (after evaluation) a model of a molecular structure (typically a protein structure) to reduce steric clashes, volume irregularities etc. + Protein model refinement + + + Molecular model refinement + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree. + Phlyogenetic tree construction + Phylogenetic reconstruction + Phylogenetic tree generation + + + Phylogenetic trees are usually constructed from a set of sequences from which an alignment (or data matrix) is calculated. + Phylogenetic inference + + + + + + + + + + + + + + + + beta12orEarlier + Analyse an existing phylogenetic tree or trees, typically to detect features or make predictions. + Phylogenetic tree analysis + Phylogenetic modelling + + + Phylgenetic modelling is the modelling of trait evolution and prediction of trait values using phylogeny as a basis. + Phylogenetic analysis + + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees. + + + For example, to produce a consensus tree, subtrees, supertrees, calculate distances between trees or test topological similarity between trees (e.g. a congruence index) etc. + Phylogenetic tree comparison + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Edit a phylogenetic tree. + + + Phylogenetic tree editing + + + + + + + + + + + + + + + beta12orEarlier + Comparison of a DNA sequence to orthologous sequences in different species and inference of a phylogenetic tree, in order to identify regulatory elements such as transcription factor binding sites (TFBS). + Phylogenetic shadowing + + + Phylogenetic shadowing is a type of footprinting where many closely related species are used. A phylogenetic 'shadow' represents the additive differences between individual sequences. By masking or 'shadowing' variable positions a conserved sequence is produced with few or none of the variations, which is then compared to the sequences of interest to identify significant regions of conservation. + Phylogenetic footprinting + + + + + + + + + + beta12orEarlier + 1.20 + + Simulate the folding of a protein. + + + Protein folding simulation + true + + + + + + + + + beta12orEarlier + 1.19 + + Predict the folding pathway(s) or non-native structural intermediates of a protein. + + + Protein folding pathway prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + Map and model the effects of single nucleotide polymorphisms (SNPs) on protein structure(s). + + + Protein SNP mapping + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict the effect of point mutation on a protein structure, in terms of strucural effects and protein folding, stability and function. + Variant functional prediction + Protein SNP mapping + Protein mutation modelling + Protein stability change prediction + + + Protein SNP mapping maps and modesl the effects of single nucleotide polymorphisms (SNPs) on protein structure(s). Methods might predict silent or pathological mutations. + Variant effect prediction + + + + + + + + + beta12orEarlier + beta12orEarlier + + Design molecules that elicit an immune response (immunogens). + + + Immunogen design + true + + + + + + + + + beta12orEarlier + 1.18 + + Predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases). + + + Zinc finger prediction + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate Km, Vmax and derived data for an enzyme reaction. + + + Enzyme kinetics calculation + + + + + + + + + beta12orEarlier + Reformat a file of data (or equivalent entity in memory). + File format conversion + File formatting + File reformatting + Format conversion + Reformatting + + + Formatting + + + + + + + + + beta12orEarlier + Test and validate the format and content of a data file. + File format validation + + + Format validation + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Visualise, plot or render (graphically) biomolecular data such as molecular sequences or structures. + Data visualisation + Rendering + Molecular visualisation + Plotting + + + This includes methods to render and visualise molecules. + Visualisation + + + + + + + + + + + + + + + + + beta12orEarlier + Search a sequence database by sequence comparison and retrieve similar sequences. Sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression. + + + This excludes direct retrieval methods (e.g. the dbfetch program). + Sequence database search + + + + + + + + + + + + + + + beta12orEarlier + Search a tertiary structure database, typically by sequence and/or structure comparison, or some other means, and retrieve structures and associated data. + + + Structure database search + + + + + + + + + beta12orEarlier + 1.8 + + Search a secondary protein database (of classification information) to assign a protein sequence(s) to a known protein family or group. + + + Protein secondary database search + true + + + + + + + + + beta12orEarlier + 1.8 + + + Screen a sequence against a motif or pattern database. + + Motif database search + true + + + + + + + + + beta12orEarlier + 1.4 + + + Search a database of sequence profiles with a query sequence. + + Sequence profile database search + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Search a database of transmembrane proteins, for example for sequence or structural similarities. + + Transmembrane protein database search + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a database and retrieve sequences with a given entry code or accession number. + + Sequence retrieval (by code) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a database and retrieve sequences containing a given keyword. + + Sequence retrieval (by keyword) + true + + + + + + + + + + + beta12orEarlier + Search a sequence database and retrieve sequences that are similar to a query sequence. + Sequence database search (by sequence) + Structure database search (by sequence) + + + Sequence similarity search + + + + + + + + + beta12orEarlier + 1.8 + + Search a sequence database and retrieve sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression. + + + Sequence database search (by motif or pattern) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database and retrieve sequences of a given amino acid composition. + + Sequence database search (by amino acid composition) + true + + + + + + + + + beta12orEarlier + Search a sequence database and retrieve sequences with a specified property, typically a physicochemical or compositional property. + + + Sequence database search (by property) + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database and retrieve sequences that are similar to a query sequence using a word-based method. + + Word-based methods (for example BLAST, gapped BLAST, MEGABLAST, WU-BLAST etc.) are usually quicker than alignment-based methods. They may or may not handle gaps. + Sequence database search (by sequence using word-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database and retrieve sequences that are similar to a query sequence using a sequence profile-based method, or with a supplied profile as query. + + This includes tools based on PSI-BLAST. + Sequence database search (by sequence using profile-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database for sequences that are similar to a query sequence using a local alignment-based method. + + This includes tools based on the Smith-Waterman algorithm or FASTA. + Sequence database search (by sequence using local alignment-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search sequence(s) or a sequence database for sequences that are similar to a query sequence using a global alignment-based method. + + This includes tools based on the Needleman and Wunsch algorithm. + Sequence database search (by sequence using global alignment-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a DNA database (for example a database of conserved sequence tags) for matches to Sequence-Tagged Site (STS) primer sequences. + + STSs are genetic markers that are easily detected by the polymerase chain reaction (PCR) using specific primers. + Sequence database search (by sequence for primer sequences) + true + + + + + + + + + beta12orEarlier + 1.6 + + Search sequence(s) or a sequence database for sequences which match a set of peptide masses, for example a peptide mass fingerprint from mass spectrometry. + + + Sequence database search (by molecular weight) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search sequence(s) or a sequence database for sequences of a given isoelectric point. + + Sequence database search (by isoelectric point) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a tertiary structure database and retrieve entries with a given entry code or accession number. + + Structure retrieval (by code) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a tertiary structure database and retrieve entries containing a given keyword. + + Structure retrieval (by keyword) + true + + + + + + + + + beta12orEarlier + 1.8 + + Search a tertiary structure database and retrieve structures with a sequence similar to a query sequence. + + + Structure database search (by sequence) + true + + + + + + + + + + beta12orEarlier + Search a database of molecular structure and retrieve structures that are similar to a query structure. + Structure database search (by structure) + Structure retrieval by structure + + + Structural similarity search + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Annotate a molecular sequence record with terms from a controlled vocabulary. + + + Sequence annotation + + + + + + + + + + beta12orEarlier + Annotate a genome sequence with terms from a controlled vocabulary. + Functional genome annotation + Metagenome annotation + Structural genome annotation + + + Genome annotation + + + + + + + + + beta12orEarlier + Generate the reverse and / or complement of a nucleotide sequence. + Nucleic acid sequence reverse and complement + Reverse / complement + Reverse and complement + + + Reverse complement + + + + + + + + + + beta12orEarlier + Generate a random sequence, for example, with a specific character composition. + + + Random sequence generation + + + + + + + + + + + + + + + + beta12orEarlier + Generate digest fragments for a nucleotide sequence containing restriction sites. + Nucleic acid restriction digest + + + Restriction digest + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Cleave a protein sequence into peptide fragments (corresponding to enzymatic or chemical cleavage). + + + This is often followed by calculation of protein fragment masses (http://edamontology.org/operation_0398). + Protein sequence cleavage + + + + + + + + + beta12orEarlier + Mutate a molecular sequence a specified amount or shuffle it to produce a randomised sequence with the same overall composition. + + + Sequence mutation and randomisation + + + + + + + + + beta12orEarlier + Mask characters in a molecular sequence (replacing those characters with a mask character). + + + For example, SNPs or repeats in a DNA sequence might be masked. + Sequence masking + + + + + + + + + beta12orEarlier + Cut (remove) characters or a region from a molecular sequence. + + + Sequence cutting + + + + + + + + + beta12orEarlier + Create (or remove) restriction sites in sequences, for example using silent mutations. + + + Restriction site creation + + + + + + + + + + + + + + + beta12orEarlier + Translate a DNA sequence into protein. + + + DNA translation + + + + + + + + + + + + + + + beta12orEarlier + Transcribe a nucleotide sequence into mRNA sequence(s). + + + DNA transcription + + + + + + + + + beta12orEarlier + 1.8 + + Calculate base frequency or word composition of a nucleotide sequence. + + + Sequence composition calculation (nucleic acid) + true + + + + + + + + + beta12orEarlier + 1.8 + + Calculate amino acid frequency or word composition of a protein sequence. + + + Sequence composition calculation (protein) + true + + + + + + + + + + beta12orEarlier + Find (and possibly render) short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences. + + + Repeat sequence detection + + + + + + + + + + beta12orEarlier + Analyse repeat sequence organisation such as periodicity. + + + Repeat sequence organisation analysis + + + + + + + + + beta12orEarlier + 1.12 + + Analyse the hydrophobic, hydrophilic or charge properties of a protein structure. + + + Protein hydropathy calculation (from structure) + true + + + + + + + + + + + + + + + beta12orEarlier + WHATIF:AtomAccessibilitySolvent + WHATIF:AtomAccessibilitySolventPlus + Calculate solvent accessible or buried surface areas in protein or other molecular structures. + Protein solvent accessibility calculation + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Accessible surface calculation + + + + + + + + + beta12orEarlier + 1.12 + + Identify clusters of hydrophobic or charged residues in a protein structure. + + + Protein hydropathy cluster calculation + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate whether a protein structure has an unusually large net charge (dipole moment). + + + Protein dipole moment calculation + + + + + + + + + beta12orEarlier + WHATIF:AtomAccessibilityMolecular + WHATIF:AtomAccessibilityMolecularPlus + WHATIF:ResidueAccessibilityMolecular + WHATIF:ResidueAccessibilitySolvent + WHATIF:ResidueAccessibilityVacuum + WHATIF:ResidueAccessibilityVacuumMolecular + WHATIF:TotAccessibilityMolecular + WHATIF:TotAccessibilitySolvent + Calculate the molecular surface area in proteins and other macromolecules. + Protein atom surface calculation + Protein residue surface calculation + Protein surface and interior calculation + Protein surface calculation + + + Molecular surface calculation + + + + + + + + + beta12orEarlier + 1.12 + + Identify or predict catalytic residues, active sites or other ligand-binding sites in protein structures. + + + Protein binding site prediction (from structure) + true + + + + + + + + + + + + + + + beta12orEarlier + Analyse the interaction of protein with nucleic acids, e.g. RNA or DNA-binding sites, interfaces etc. + Protein-nucleic acid binding site analysis + Protein-DNA interaction analysis + Protein-RNA interaction analysis + + + Protein-nucleic acid interaction analysis + + + + + + + + + beta12orEarlier + Decompose a structure into compact or globular fragments (protein peeling). + + + Protein peeling + + + + + + + + + + + + + + + beta12orEarlier + Calculate a matrix of distance between residues (for example the C-alpha atoms) in a protein structure. + + + Protein distance matrix calculation + + + + + + + + + + + + + + + beta12orEarlier + Calculate a residue contact map (typically all-versus-all inter-residue contacts) for a protein structure. + Protein contact map calculation + + + Contact map calculation + + + + + + + + + + + + + + + beta12orEarlier + Calculate clusters of contacting residues in protein structures. + + + This includes for example clusters of hydrophobic or charged residues, or clusters of contacting residues which have a key structural or functional role. + Residue cluster calculation + + + + + + + + + + + + + + + beta12orEarlier + WHATIF:HasHydrogenBonds + WHATIF:ShowHydrogenBonds + WHATIF:ShowHydrogenBondsM + Identify potential hydrogen bonds between amino acids and other groups. + + + The output might include the atoms involved in the bond, bond geometric parameters and bond enthalpy. + Hydrogen bond calculation + + + + + + + + + beta12orEarlier + 1.12 + + + Calculate non-canonical atomic interactions in protein structures. + + Residue non-canonical interaction detection + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate a Ramachandran plot of a protein structure. + + + Ramachandran plot calculation + + + + + + + + + + beta12orEarlier + 1.22 + + Validate a Ramachandran plot of a protein structure. + + + Ramachandran plot validation + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate the molecular weight of a protein sequence or fragments. + Peptide mass calculation + + + Protein molecular weight calculation + + + + + + + + + + + + + + + beta12orEarlier + Predict extinction coefficients or optical density of a protein sequence. + + + Protein extinction coefficient calculation + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate pH-dependent properties from pKa calculations of a protein sequence. + Protein pH-dependent property calculation + + + Protein pKa calculation + + + + + + + + + + beta12orEarlier + 1.12 + + Hydropathy calculation on a protein sequence. + + + Protein hydropathy calculation (from sequence) + true + + + + + + + + + + + + + + + + beta12orEarlier + Plot a protein titration curve. + + + Protein titration curve plotting + + + + + + + + + + + + + + + + beta12orEarlier + Calculate isoelectric point of a protein sequence. + + + Protein isoelectric point calculation + + + + + + + + + + + + + + + beta12orEarlier + Estimate hydrogen exchange rate of a protein sequence. + + + Protein hydrogen exchange rate calculation + + + + + + + + + beta12orEarlier + Calculate hydrophobic or hydrophilic / charged regions of a protein sequence. + + + Protein hydrophobic region calculation + + + + + + + + + + + + + + + beta12orEarlier + Calculate aliphatic index (relative volume occupied by aliphatic side chains) of a protein. + + + Protein aliphatic index calculation + + + + + + + + + + + + + + + + beta12orEarlier + Calculate the hydrophobic moment of a peptide sequence and recognize amphiphilicity. + + + Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation. + Protein hydrophobic moment plotting + + + + + + + + + + + + + + + beta12orEarlier + Predict the stability or globularity of a protein sequence, whether it is intrinsically unfolded etc. + + + Protein globularity prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict the solubility or atomic solvation energy of a protein sequence. + + + Protein solubility prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict crystallizability of a protein sequence. + + + Protein crystallizability prediction + + + + + + + + + beta12orEarlier + (jison)Too fine-grained. + 1.17 + + Detect or predict signal peptides (and typically predict subcellular localisation) of eukaryotic proteins. + + + Protein signal peptide detection (eukaryotes) + true + + + + + + + + + beta12orEarlier + (jison)Too fine-grained. + 1.17 + + Detect or predict signal peptides (and typically predict subcellular localisation) of bacterial proteins. + + + Protein signal peptide detection (bacteria) + true + + + + + + + + + beta12orEarlier + 1.12 + + Predict MHC class I or class II binding peptides, promiscuous binding peptides, immunogenicity etc. + + + MHC peptide immunogenicity prediction + true + + + + + + + + + beta12orEarlier + 1.6 + + + Predict, recognise and identify positional features in protein sequences such as functional sites or regions and secondary structure. + + Methods typically involve scanning for known motifs, patterns and regular expressions. + Protein feature prediction (from sequence) + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict, recognise and identify features in nucleotide sequences such as functional sites or regions, typically by scanning for known motifs, patterns and regular expressions. + Sequence feature detection (nucleic acid) + Nucleic acid feature prediction + Nucleic acid feature recognition + Nucleic acid site detection + Nucleic acid site prediction + Nucleic acid site recognition + + + Methods typically involve scanning for known motifs, patterns and regular expressions. + This is placeholder but does not comprehensively include all child concepts - please inspect other concepts under "Nucleic acid sequence analysis" for example "Gene prediction", for other feature detection operations. + Nucleic acid feature detection + + + + + + + + + + + + + + + + beta12orEarlier + Predict antigenic determinant sites (epitopes) in protein sequences. + Antibody epitope prediction + Epitope prediction + B cell epitope mapping + B cell epitope prediction + Epitope mapping (MHC Class I) + Epitope mapping (MHC Class II) + T cell epitope mapping + T cell epitope prediction + + + Epitope mapping is commonly done during vaccine design. + Epitope mapping + + + + + + + + + + + + + + + beta12orEarlier + Predict post-translation modification sites in protein sequences. + PTM analysis + PTM prediction + PTM site analysis + PTM site prediction + Post-translation modification site prediction + Post-translational modification analysis + Protein post-translation modification site prediction + Acetylation prediction + Acetylation site prediction + Dephosphorylation prediction + Dephosphorylation site prediction + GPI anchor prediction + GPI anchor site prediction + GPI modification prediction + GPI modification site prediction + Glycosylation prediction + Glycosylation site prediction + Hydroxylation prediction + Hydroxylation site prediction + Methylation prediction + Methylation site prediction + N-myristoylation prediction + N-myristoylation site prediction + N-terminal acetylation prediction + N-terminal acetylation site prediction + N-terminal myristoylation prediction + N-terminal myristoylation site prediction + Palmitoylation prediction + Palmitoylation site prediction + Phosphoglycerylation prediction + Phosphoglycerylation site prediction + Phosphorylation prediction + Phosphorylation site prediction + Phosphosite localization + Prenylation prediction + Prenylation site prediction + Pupylation prediction + Pupylation site prediction + S-nitrosylation prediction + S-nitrosylation site prediction + S-sulfenylation prediction + S-sulfenylation site prediction + Succinylation prediction + Succinylation site prediction + Sulfation prediction + Sulfation site prediction + Sumoylation prediction + Sumoylation site prediction + Tyrosine nitration prediction + Tyrosine nitration site prediction + Ubiquitination prediction + Ubiquitination site prediction + + + Methods might predict sites of methylation, N-terminal myristoylation, N-terminal acetylation, sumoylation, palmitoylation, phosphorylation, sulfation, glycosylation, glycosylphosphatidylinositol (GPI) modification sites (GPI lipid anchor signals) etc. + Post-translational modification site prediction + + + + + + + + + + + + + + + + beta12orEarlier + Detect or predict signal peptides and signal peptide cleavage sites in protein sequences. + + + Methods might use sequence motifs and features, amino acid composition, profiles, machine-learned classifiers, etc. + Protein signal peptide detection + + + + + + + + + beta12orEarlier + 1.12 + + Predict catalytic residues, active sites or other ligand-binding sites in protein sequences. + + + Protein binding site prediction (from sequence) + true + + + + + + + + + beta12orEarlier + Predict or detect RNA and DNA-binding binding sites in protein sequences. + Protein-nucleic acid binding detection + Protein-nucleic acid binding prediction + Protein-nucleic acid binding site detection + Protein-nucleic acid binding site prediction + Zinc finger prediction + + + This includes methods that predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases). + Nucleic acids-binding site prediction + + + + + + + + + beta12orEarlier + 1.20 + + Predict protein sites that are key to protein folding, such as possible sites of nucleation or stabilisation. + + + Protein folding site prediction + true + + + + + + + + + + + + + + + beta12orEarlier + Detect or predict cleavage sites (enzymatic or chemical) in protein sequences. + + + Protein cleavage site prediction + + + + + + + + + beta12orEarlier + 1.8 + + Predict epitopes that bind to MHC class I molecules. + + + Epitope mapping (MHC Class I) + true + + + + + + + + + beta12orEarlier + 1.8 + + Predict epitopes that bind to MHC class II molecules. + + + Epitope mapping (MHC Class II) + true + + + + + + + + + beta12orEarlier + 1.12 + + Detect, predict and identify whole gene structure in DNA sequences. This includes protein coding regions, exon-intron structure, regulatory regions etc. + + + Whole gene prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + Detect, predict and identify genetic elements such as promoters, coding regions, splice sites, etc in DNA sequences. + + + Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc. + Gene component prediction + true + + + + + + + + + beta12orEarlier + Detect or predict transposons, retrotransposons / retrotransposition signatures etc. + + + Transposon prediction + + + + + + + + + beta12orEarlier + Detect polyA signals in nucleotide sequences. + PolyA detection + PolyA prediction + PolyA signal prediction + Polyadenylation signal detection + Polyadenylation signal prediction + + + PolyA signal detection + + + + + + + + + + + + + + + beta12orEarlier + Detect quadruplex-forming motifs in nucleotide sequences. + Quadruplex structure prediction + + + Quadruplex (4-stranded) structures are formed by guanine-rich regions and are implicated in various important biological processes and as therapeutic targets. + Quadruplex formation site detection + + + + + + + + + + + + + + + beta12orEarlier + Find CpG rich regions in a nucleotide sequence or isochores in genome sequences. + CpG island and isochores detection + CpG island and isochores rendering + + + An isochore is long region (> 3 KB) of DNA with very uniform GC content, in contrast to the rest of the genome. Isochores tend tends to have more genes, higher local melting or denaturation temperatures, and different flexibility. Methods might calculate fractional GC content or variation of GC content, predict methylation status of CpG islands etc. This includes methods that visualise CpG rich regions in a nucleotide sequence, for example plot isochores in a genome sequence. + CpG island and isochore detection + + + + + + + + + + + + + + + beta12orEarlier + Find and identify restriction enzyme cleavage sites (restriction sites) in (typically) DNA sequences, for example to generate a restriction map. + + + Restriction site recognition + + + + + + + + + + beta12orEarlier + Identify or predict nucleosome exclusion sequences (nucleosome free regions) in DNA. + Nucleosome exclusion sequence prediction + Nucleosome formation sequence prediction + + + Nucleosome position prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify, predict or analyse splice sites in nucleotide sequences. + Splice prediction + + + Methods might require a pre-mRNA or genomic DNA sequence. + Splice site prediction + + + + + + + + + beta12orEarlier + 1.19 + + Predict whole gene structure using a combination of multiple methods to achieve better predictions. + + + Integrated gene prediction + true + + + + + + + + + beta12orEarlier + Find operons (operators, promoters and genes) in bacteria genes. + + + Operon prediction + + + + + + + + + beta12orEarlier + Predict protein-coding regions (CDS or exon) or open reading frames in nucleotide sequences. + ORF finding + ORF prediction + + + Coding region prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict selenocysteine insertion sequence (SECIS) in a DNA sequence. + Selenocysteine insertion sequence (SECIS) prediction + + + SECIS elements are around 60 nucleotides in length with a stem-loop structure directs the cell to translate UGA codons as selenocysteines. + SECIS element prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict transcriptional regulatory motifs, patterns, elements or regions in DNA sequences. + Regulatory element prediction + Transcription regulatory element prediction + Conserved transcription regulatory sequence identification + Translational regulatory element prediction + + + This includes comparative genomics approaches that identify common, conserved (homologous) or synonymous transcriptional regulatory elements. For example cross-species comparison of transcription factor binding sites (TFBS). Methods might analyse co-regulated or co-expressed genes, or sets of oppositely expressed genes. + This includes promoters, enhancers, silencers and boundary elements / insulators, regulatory protein or transcription factor binding sites etc. Methods might be specific to a particular genome and use motifs, word-based / grammatical methods, position-specific frequency matrices, discriminative pattern analysis etc. + Transcriptional regulatory element prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict translation initiation sites, possibly by searching a database of sites. + + + Translation initiation site prediction + + + + + + + + + beta12orEarlier + Identify or predict whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in DNA sequences. + + + Methods might recognize CG content, CpG islands, splice sites, polyA signals etc. + Promoter prediction + + + + + + + + + beta12orEarlier + Identify, predict or analyse cis-regulatory elements in DNA sequences (TATA box, Pribnow box, SOS box, CAAT box, CCAAT box, operator etc.) or in RNA sequences (e.g. riboswitches). + Transcriptional regulatory element prediction (DNA-cis) + Transcriptional regulatory element prediction (RNA-cis) + + + Cis-regulatory elements (cis-elements) regulate the expression of genes located on the same strand from which the element was transcribed. Cis-elements are found in the 5' promoter region of the gene, in an intron, or in the 3' untranslated region. Cis-elements are often binding sites of one or more trans-acting factors. They also occur in RNA sequences, e.g. a riboswitch is a region of an mRNA molecule that bind a small target molecule that regulates the gene's activity. + cis-regulatory element prediction + + + + + + + + + beta12orEarlier + 1.19 + + Identify, predict or analyse cis-regulatory elements (for example riboswitches) in RNA sequences. + + + Transcriptional regulatory element prediction (RNA-cis) + true + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict functional RNA sequences with a gene regulatory role (trans-regulatory elements) or targets. + Functional RNA identification + Transcriptional regulatory element prediction (trans) + + + Trans-regulatory elements regulate genes distant from the gene from which they were transcribed. + trans-regulatory element prediction + + + + + + + + + beta12orEarlier + Identify matrix/scaffold attachment regions (MARs/SARs) in DNA sequences. + MAR/SAR prediction + Matrix/scaffold attachment site prediction + + + MAR/SAR sites often flank a gene or gene cluster and are found nearby cis-regulatory sequences. They might contribute to transcription regulation. + S/MAR prediction + + + + + + + + + beta12orEarlier + Identify or predict transcription factor binding sites in DNA sequences. + + + Transcription factor binding site prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict exonic splicing enhancers (ESE) in exons. + + + An exonic splicing enhancer (ESE) is 6-base DNA sequence motif in an exon that enhances or directs splicing of pre-mRNA or hetero-nuclear RNA (hnRNA) into mRNA. + Exonic splicing enhancer prediction + + + + + + + + + + beta12orEarlier + Evaluate molecular sequence alignment accuracy. + Sequence alignment quality evaluation + + + Evaluation might be purely sequence-based or use structural information. + Sequence alignment validation + + + + + + + + + beta12orEarlier + Analyse character conservation in a molecular sequence alignment, for example to derive a consensus sequence. + Residue conservation analysis + + + Use this concept for methods that calculate substitution rates, estimate relative site variability, identify sites with biased properties, derive a consensus sequence, or identify highly conserved or very poorly conserved sites, regions, blocks etc. + Sequence alignment analysis (conservation) + + + + + + + + + + beta12orEarlier + Analyse correlations between sites in a molecular sequence alignment. + + + This is typically done to identify possible covarying positions and predict contacts or structural constraints in protein structures. + Sequence alignment analysis (site correlation) + + + + + + + + + beta12orEarlier + Detects chimeric sequences (chimeras) from a sequence alignment. + Chimeric sequence detection + + + A chimera includes regions from two or more phylogenetically distinct sequences. They are usually artifacts of PCR and are thought to occur when a prematurely terminated amplicon reanneals to another DNA strand and is subsequently copied to completion in later PCR cycles. + Chimera detection + + + + + + + + + beta12orEarlier + Detect recombination (hotspots and coldspots) and identify recombination breakpoints in a sequence alignment. + Sequence alignment analysis (recombination detection) + + + Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on. + Recombination detection + + + + + + + + + beta12orEarlier + Identify insertion, deletion and duplication events from a sequence alignment. + Indel discovery + Sequence alignment analysis (indel detection) + + + Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on. + Indel detection + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Predict nucleosome formation potential of DNA sequences. + + Nucleosome formation potential prediction + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate a thermodynamic property of DNA or DNA/RNA, such as melting temperature, enthalpy and entropy. + + + Nucleic acid thermodynamic property calculation + + + + + + + + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA melting profile. + + + A melting profile is used to visualise and analyse partly melted DNA conformations. + Nucleic acid melting profile plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA stitch profile. + + + A stitch profile represents the alternative conformations that partly melted DNA can adopt in a temperature range. + Nucleic acid stitch profile plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA melting curve. + + + Nucleic acid melting curve plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA probability profile. + + + Nucleic acid probability profile plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA temperature profile. + + + Nucleic acid temperature profile plotting + + + + + + + + + + + + + + + beta12orEarlier + Calculate curvature and flexibility / stiffness of a nucleotide sequence. + + + This includes properties such as. + Nucleic acid curvature calculation + + + + + + + + + beta12orEarlier + Identify or predict microRNA sequences (miRNA) and precursors or microRNA targets / binding sites in a DNA sequence. + miRNA prediction + microRNA detection + microRNA target detection + + + miRNA target prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict tRNA genes in genomic sequences (tRNA). + + + tRNA gene prediction + + + + + + + + + + + + + + + beta12orEarlier + Assess binding specificity of putative siRNA sequence(s), for example for a functional assay, typically with respect to designing specific siRNA sequences. + + + siRNA binding specificity prediction + + + + + + + + + beta12orEarlier + 1.18 + + Predict secondary structure of protein sequence(s) using multiple methods to achieve better predictions. + + + Protein secondary structure prediction (integrated) + true + + + + + + + + + beta12orEarlier + Predict helical secondary structure of protein sequences. + + + Protein secondary structure prediction (helices) + + + + + + + + + beta12orEarlier + Predict turn structure (for example beta hairpin turns) of protein sequences. + + + Protein secondary structure prediction (turns) + + + + + + + + + beta12orEarlier + Predict open coils, non-regular secondary structure and intrinsically disordered / unstructured regions of protein sequences. + + + Protein secondary structure prediction (coils) + + + + + + + + + beta12orEarlier + Predict cysteine bonding state and disulfide bond partners in protein sequences. + + + Disulfide bond prediction + + + + + + + + + beta12orEarlier + Not sustainable to have protein type-specific concepts. + 1.19 + + Predict G protein-coupled receptors (GPCR). + + + GPCR prediction + true + + + + + + + + + beta12orEarlier + Not sustainable to have protein type-specific concepts. + 1.19 + + Analyse G-protein coupled receptor proteins (GPCRs). + + + GPCR analysis + true + + + + + + + + + + + + + + + + + beta12orEarlier + Predict tertiary structure (backbone and side-chain conformation) of protein sequences. + Protein folding pathway prediction + + + This includes methods that predict the folding pathway(s) or non-native structural intermediates of a protein. + Protein structure prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Predict structure of DNA or RNA. + + + Methods might identify thermodynamically stable or evolutionarily conserved structures. + Nucleic acid structure prediction + + + + + + + + + + beta12orEarlier + Predict tertiary structure of protein sequence(s) without homologs of known structure. + de novo structure prediction + + + Ab initio structure prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Build a three-dimensional protein model based on known (for example homologs) structures. + Comparative modelling + Homology modelling + Homology structure modelling + Protein structure comparative modelling + + + The model might be of a whole, part or aspect of protein structure. Molecular modelling methods might use sequence-structure alignment, structural templates, molecular dynamics, energy minimisation etc. + Protein modelling + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Model the structure of a protein in complex with a small molecule or another macromolecule. + Docking simulation + Macromolecular docking + + + This includes protein-protein interactions, protein-nucleic acid, protein-ligand binding etc. Methods might predict whether the molecules are likely to bind in vivo, their conformation when bound, the strength of the interaction, possible mutations to achieve bonding and so on. + Molecular docking + + + + + + + + + + + beta12orEarlier + Model protein backbone conformation. + Protein modelling (backbone) + Design optimization + Epitope grafting + Scaffold search + Scaffold selection + + + Methods might require a preliminary C(alpha) trace. + Scaffold selection, scaffold search, epitope grafting and design optimization are stages of backbone modelling done during rational vaccine design. + Backbone modelling + + + + + + + + + beta12orEarlier + Model, analyse or edit amino acid side chain conformation in protein structure, optimize side-chain packing, hydrogen bonding etc. + Protein modelling (side chains) + Antibody optimisation + Antigen optimisation + Antigen resurfacing + Rotamer likelihood prediction + + + Antibody optimisation is to optimize the antibody-interacting surface of the antigen (epitope). Antigen optimisation is to optimize the antigen-interacting surface of the antibody (paratope). Antigen resurfacing is to resurface the antigen by varying the sequence of non-epitope regions. + Methods might use a residue rotamer library. + This includes rotamer likelihood prediction: the prediction of rotamer likelihoods for all 20 amino acid types at each position in a protein structure, where output typically includes, for each residue position, the likelihoods for the 20 amino acid types with estimated reliability of the 20 likelihoods. + Side chain modelling + + + + + + + + + beta12orEarlier + Model loop conformation in protein structures. + Protein loop modelling + Protein modelling (loops) + + + Loop modelling + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Model protein-ligand (for example protein-peptide) binding using comparative modelling or other techniques. + Ligand-binding simulation + Protein-peptide docking + + + Methods aim to predict the position and orientation of a ligand bound to a protein receptor or enzyme. + Virtual screening is used in drug discovery to search libraries of small molecules in order to identify those molecules which are most likely to bind to a drug target (typically a protein receptor or enzyme). + Protein-ligand docking + + + + + + + + + + + + + + + + beta12orEarlier + Predict or optimise RNA sequences (sequence pools) with likely secondary and tertiary structure for in vitro selection. + Nucleic acid folding family identification + Structured RNA prediction and optimisation + + + RNA inverse folding + + + + + + + + + beta12orEarlier + Find single nucleotide polymorphisms (SNPs) - single nucleotide change in base positions - between sequences. Typically done for sequences from a high-throughput sequencing experiment that differ from a reference genome and which might, especially by reference to population frequency or functional data, indicate a polymorphism. + SNP calling + SNP discovery + Single nucleotide polymorphism detection + + + This includes functional SNPs for large-scale genotyping purposes, disease-associated non-synonymous SNPs etc. + SNP detection + + + + + + + + + + + + + + + beta12orEarlier + Generate a physical (radiation hybrid) map of genetic markers in a DNA sequence using provided radiation hybrid (RH) scores for one or more markers. + + + Radiation Hybrid Mapping + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Map the genetic architecture of dynamic complex traits. + + This can involve characterisation of the underlying quantitative trait loci (QTLs) or nucleotides (QTNs). + Functional mapping + true + + + + + + + + + + + + + + + beta12orEarlier + Infer haplotypes, either alleles at multiple loci that are transmitted together on the same chromosome, or a set of single nucleotide polymorphisms (SNPs) on a single chromatid that are statistically associated. + Haplotype inference + Haplotype map generation + Haplotype reconstruction + + + Haplotype inference can help in population genetic studies and the identification of complex disease genes, , and is typically based on aligned single nucleotide polymorphism (SNP) fragments. Haplotype comparison is a useful way to characterize the genetic variation between individuals. An individual's haplotype describes which nucleotide base occurs at each position for a set of common SNPs. Tools might use combinatorial functions (for example parsimony) or a likelihood function or model with optimisation such as minimum error correction (MEC) model, expectation-maximisation algorithm (EM), genetic algorithm or Markov chain Monte Carlo (MCMC). + Haplotype mapping + + + + + + + + + + + + + + + beta12orEarlier + Calculate linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome). + + + Linkage disequilibrium is identified where a combination of alleles (or genetic markers) occurs more or less frequently in a population than expected by chance formation of haplotypes. + Linkage disequilibrium calculation + + + + + + + + + + + + + + + + beta12orEarlier + Predict genetic code from analysis of codon usage data. + + + Genetic code prediction + + + + + + + + + + + + + + + + beta12orEarlier + Render a representation of a distribution that consists of group of data points plotted on a simple scale. + Categorical plot plotting + Dotplot plotting + + + Dot plots are useful when having not too many (e.g. 20) data points for each category. Example: draw a dotplot of sequence similarities identified from word-matching or character comparison. + Dot plot plotting + + + + + + + + + + + + + + + + beta12orEarlier + Align exactly two molecular sequences. + Pairwise alignment + + + Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Pairwise sequence alignment + + + + + + + + + + beta12orEarlier + Align more than two molecular sequences. + Multiple alignment + + + This includes methods that use an existing alignment, for example to incorporate sequences into an alignment, or combine several multiple alignments into a single, improved alignment. + Multiple sequence alignment + + + + + + + + + + beta12orEarlier + 1.6 + + + + Locally align exactly two molecular sequences. + + Local alignment methods identify regions of local similarity. + Pairwise sequence alignment generation (local) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Globally align exactly two molecular sequences. + + Global alignment methods identify similarity across the entire length of the sequences. + Pairwise sequence alignment generation (global) + true + + + + + + + + + beta12orEarlier + Locally align two or more molecular sequences. + Local sequence alignment + Sequence alignment (local) + Smith-Waterman + + + Local alignment methods identify regions of local similarity. + Local alignment + + + + + + + + + + beta12orEarlier + Globally align two or more molecular sequences. + Global sequence alignment + Sequence alignment (global) + + + Global alignment methods identify similarity across the entire length of the sequences. + Global alignment + + + + + + + + + + beta12orEarlier + 1.19 + + Align two or more molecular sequences with user-defined constraints. + + + Constrained sequence alignment + true + + + + + + + + + beta12orEarlier + 1.16 + + Align two or more molecular sequences using multiple methods to achieve higher quality. + + + Consensus-based sequence alignment + true + + + + + + + + + + + + + + + beta12orEarlier + Align multiple sequences using relative gap costs calculated from neighbors in a supplied phylogenetic tree. + Multiple sequence alignment (phylogenetic tree-based) + Multiple sequence alignment construction (phylogenetic tree-based) + Phylogenetic tree-based multiple sequence alignment construction + Sequence alignment (phylogenetic tree-based) + Sequence alignment generation (phylogenetic tree-based) + + + This is supposed to give a more biologically meaningful alignment than standard alignments. + Tree-based sequence alignment + + + + + + + + + beta12orEarlier + 1.6 + + + Align molecular secondary structure (represented as a 1D string). + + Secondary structure alignment generation + true + + + + + + + + + beta12orEarlier + 1.18 + + Align protein secondary structures. + + + Protein secondary structure alignment generation + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Align RNA secondary structures. + RNA secondary structure alignment construction + RNA secondary structure alignment generation + Secondary structure alignment construction (RNA) + + + RNA secondary structure alignment + + + + + + + + + beta12orEarlier + Align (superimpose) exactly two molecular tertiary structures. + Structure alignment (pairwise) + Pairwise protein structure alignment + + + Pairwise structure alignment + + + + + + + + + beta12orEarlier + Align (superimpose) more than two molecular tertiary structures. + Structure alignment (multiple) + Multiple protein structure alignment + + + This includes methods that use an existing alignment. + Multiple structure alignment + + + + + + + + + beta12orEarlier + beta13 + + + Align protein tertiary structures. + + Structure alignment (protein) + true + + + + + + + + + beta12orEarlier + beta13 + + + Align RNA tertiary structures. + + Structure alignment (RNA) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Locally align (superimpose) exactly two molecular tertiary structures. + + Local alignment methods identify regions of local similarity, common substructures etc. + Pairwise structure alignment generation (local) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Globally align (superimpose) exactly two molecular tertiary structures. + + Global alignment methods identify similarity across the entire structures. + Pairwise structure alignment generation (global) + true + + + + + + + + + beta12orEarlier + Locally align (superimpose) two or more molecular tertiary structures. + Structure alignment (local) + Local protein structure alignment + + + Local alignment methods identify regions of local similarity, common substructures etc. + Local structure alignment + + + + + + + + + beta12orEarlier + Globally align (superimpose) two or more molecular tertiary structures. + Structure alignment (global) + Global protein structure alignment + + + Global alignment methods identify similarity across the entire structures. + Global structure alignment + + + + + + + + + beta12orEarlier + 1.16 + + + + Align exactly two molecular profiles. + + Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Profile-profile alignment (pairwise) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Align two or more molecular profiles. + + Sequence alignment generation (multiple profile) + true + + + + + + + + + beta12orEarlier + 1.16 + + + + + Align exactly two molecular Structural (3D) profiles. + + 3D profile-to-3D profile alignment (pairwise) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + + Align two or more molecular 3D profiles. + + Structural profile alignment generation (multiple) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search and retrieve names of or documentation on bioinformatics tools, for example by keyword or which perform a particular function. + + Data retrieval (tool metadata) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search and retrieve names of or documentation on bioinformatics databases or query terms, for example by keyword. + + Data retrieval (database metadata) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for large scale sequencing. + + + PCR primer design (for large scale sequencing) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs). + + + PCR primer design (for genotyping polymorphisms) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for gene transcription profiling. + + + PCR primer design (for gene transcription profiling) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers that are conserved across multiple genomes or species. + + + PCR primer design (for conserved primers) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers based on gene structure. + + + PCR primer design (based on gene structure) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for methylation PCRs. + + + PCR primer design (for methylation PCRs) + true + + + + + + + + + beta12orEarlier + Sequence assembly by combining fragments using an existing backbone sequence, typically a reference genome. + Sequence assembly (mapping assembly) + + + The final sequence will resemble the backbone sequence. Mapping assemblers are usually much faster and less memory intensive than de-novo assemblers. + Mapping assembly + + + + + + + + + + beta12orEarlier + Sequence assembly by combining fragments without the aid of a reference sequence or genome. + De Bruijn graph + Sequence assembly (de-novo assembly) + + + De-novo assemblers are much slower and more memory intensive than mapping assemblers. + De-novo assembly + + + + + + + + + + + beta12orEarlier + The process of assembling many short DNA sequences together such that they represent the original chromosomes from which the DNA originated. + Genomic assembly + Sequence assembly (genome assembly) + Breakend assembly + + + Genome assembly + + + + + + + + + + beta12orEarlier + Sequence assembly for EST sequences (transcribed mRNA). + Sequence assembly (EST assembly) + + + Assemblers must handle (or be complicated by) alternative splicing, trans-splicing, single-nucleotide polymorphism (SNP), recoding, and post-transcriptional modification. + EST assembly + + + + + + + + + + + beta12orEarlier + Make sequence tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. + Tag to gene assignment + + + Sequence tag mapping assigns experimentally obtained sequence tags to known transcripts or annotate potential virtual sequence tags in a genome. + Sequence tag mapping + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) serial analysis of gene expression (SAGE) data. + + SAGE data processing + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) massively parallel signature sequencing (MPSS) data. + + MPSS data processing + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) sequencing by synthesis (SBS) data. + + SBS data processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Generate a heat map of expression data from e.g. microarray data. + Heat map construction + Heatmap generation + + + The heat map usually uses a coloring scheme to represent expression values. They can show how quantitative measurements were influenced by experimental conditions. + Heat map generation + + + + + + + + + + beta12orEarlier + 1.6 + + + Analyse one or more gene expression profiles, typically to interpret them in functional terms. + + Gene expression profile analysis + true + + + + + + + + + + + + + + + + + beta12orEarlier + Map an expression profile to known biological pathways, for example, to identify or reconstruct a pathway. + Pathway mapping + Gene expression profile pathway mapping + Gene to pathway mapping + Gene-to-pathway mapping + + + Expression profile pathway mapping + + + + + + + + + beta12orEarlier + 1.18 + + Assign secondary structure from protein coordinate data. + + + Protein secondary structure assignment (from coordinate data) + true + + + + + + + + + beta12orEarlier + 1.18 + + Assign secondary structure from circular dichroism (CD) spectroscopic data. + + + Protein secondary structure assignment (from CD data) + true + + + + + + + + + beta12orEarlier + 1.7 + + Assign a protein tertiary structure (3D coordinates) from raw X-ray crystallography data. + + + Protein structure assignment (from X-ray crystallographic data) + true + + + + + + + + + beta12orEarlier + 1.7 + + Assign a protein tertiary structure (3D coordinates) from raw NMR spectroscopy data. + + + Protein structure assignment (from NMR data) + true + + + + + + + + + beta12orEarlier + true + Construct a phylogenetic tree from a specific type of data. + Phylogenetic tree construction (data centric) + Phylogenetic tree generation (data centric) + + + Subconcepts of this concept reflect different types of data used to generate a tree, and provide an alternate axis for curation. + Phylogenetic inference (data centric) + + + + + + + + + beta12orEarlier + true + Construct a phylogenetic tree using a specific method. + Phylogenetic tree construction (method centric) + Phylogenetic tree generation (method centric) + + + Subconcepts of this concept reflect different computational methods used to generate a tree, and provide an alternate axis for curation. + Phylogenetic inference (method centric) + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from molecular sequences. + Phylogenetic tree construction (from molecular sequences) + Phylogenetic tree generation (from molecular sequences) + + + Methods typically compare multiple molecular sequence and estimate evolutionary distances and relationships to infer gene families or make functional predictions. + Phylogenetic inference (from molecular sequences) + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from continuous quantitative character data. + Phylogenetic tree construction (from continuous quantitative characters) + Phylogenetic tree generation (from continuous quantitative characters) + + + Phylogenetic inference (from continuous quantitative characters) + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from gene frequency data. + Phylogenetic tree construction (from gene frequencies) + Phylogenetic tree generation (from gene frequencies) + + + Phylogenetic inference (from gene frequencies) + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from polymorphism data including microsatellites, RFLP (restriction fragment length polymorphisms), RAPD (random-amplified polymorphic DNA) and AFLP (amplified fragment length polymorphisms) data. + Phylogenetic tree construction (from polymorphism data) + Phylogenetic tree generation (from polymorphism data) + + + Phylogenetic inference (from polymorphism data) + + + + + + + + + beta12orEarlier + Construct a phylogenetic species tree, for example, from a genome-wide sequence comparison. + Phylogenetic species tree construction + Phylogenetic species tree generation + + + Species tree construction + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by computing a sequence alignment and searching for the tree with the fewest number of character-state changes from the alignment. + Phylogenetic tree construction (parsimony methods) + Phylogenetic tree generation (parsimony methods) + + + This includes evolutionary parsimony (invariants) methods. + Phylogenetic inference (parsimony methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by computing (or using precomputed) distances between sequences and searching for the tree with minimal discrepancies between pairwise distances. + Phylogenetic tree construction (minimum distance methods) + Phylogenetic tree generation (minimum distance methods) + + + This includes neighbor joining (NJ) clustering method. + Phylogenetic inference (minimum distance methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by relating sequence data to a hypothetical tree topology using a model of sequence evolution. + Phylogenetic tree construction (maximum likelihood and Bayesian methods) + Phylogenetic tree generation (maximum likelihood and Bayesian methods) + + + Maximum likelihood methods search for a tree that maximizes a likelihood function, i.e. that is most likely given the data and model. Bayesian analysis estimate the probability of tree for branch lengths and topology, typically using a Monte Carlo algorithm. + Phylogenetic inference (maximum likelihood and Bayesian methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by computing four-taxon trees (4-trees) and searching for the phylogeny that matches most closely. + Phylogenetic tree construction (quartet methods) + Phylogenetic tree generation (quartet methods) + + + Phylogenetic inference (quartet methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by using artificial-intelligence methods, for example genetic algorithms. + Phylogenetic tree construction (AI methods) + Phylogenetic tree generation (AI methods) + + + Phylogenetic inference (AI methods) + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Identify a plausible model of DNA substitution that explains a molecular (DNA or protein) sequence alignment. + Nucleotide substitution modelling + + + DNA substitution modelling + + + + + + + + + beta12orEarlier + Analyse the shape (topology) of a phylogenetic tree. + Phylogenetic tree analysis (shape) + + + Phylogenetic tree topology analysis + + + + + + + + + + beta12orEarlier + Apply bootstrapping or other measures to estimate confidence of a phylogenetic tree. + + + Phylogenetic tree bootstrapping + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Construct a "gene tree" which represents the evolutionary history of the genes included in the study. This can be used to predict families of genes and gene function based on their position in a phylogenetic tree. + Phylogenetic tree analysis (gene family prediction) + + + Gene trees can provide evidence for gene duplication events, as well as speciation events. Where sequences from different homologs are included in a gene tree, subsequent clustering of the orthologs can demonstrate evolutionary history of the orthologs. + Gene tree construction + + + + + + + + + beta12orEarlier + Analyse a phylogenetic tree to identify allele frequency distribution and change that is subject to evolutionary pressures (natural selection, genetic drift, mutation and gene flow). Identify type of natural selection (such as stabilizing, balancing or disruptive). + Phylogenetic tree analysis (natural selection) + + + Stabilizing/purifying (directional) selection favors a single phenotype and tends to decrease genetic diversity as a population stabilizes on a particular trait, selecting out trait extremes or deleterious mutations. In contrast, balancing selection maintain genetic polymorphisms (or multiple alleles), whereas disruptive (or diversifying) selection favors individuals at both extremes of a trait. + Allele frequency distribution analysis + + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees to produce a consensus tree. + Phylogenetic tree construction (consensus) + Phylogenetic tree generation (consensus) + + + Methods typically test for topological similarity between trees using for example a congruence index. + Consensus tree construction + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees to detect subtrees or supertrees. + Phylogenetic sub/super tree detection + Subtree construction + Supertree construction + + + Phylogenetic sub/super tree construction + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees to calculate distances between trees. + + + Phylogenetic tree distances calculation + + + + + + + + + beta12orEarlier + Annotate a phylogenetic tree with terms from a controlled vocabulary. + + + Phylogenetic tree annotation + http://www.evolutionaryontology.org/cdao.owl#CDAOAnnotation + + + + + + + + + beta12orEarlier + 1.12 + + Predict and optimise peptide ligands that elicit an immunological response. + + + Immunogenicity prediction + true + + + + + + + + + + + + + + + beta12orEarlier + Predict or optimise DNA to elicit (via DNA vaccination) an immunological response. + + + DNA vaccine design + + + + + + + + + beta12orEarlier + 1.12 + + Reformat (a file or other report of) molecular sequence(s). + + + Sequence formatting + true + + + + + + + + + beta12orEarlier + 1.12 + + Reformat (a file or other report of) molecular sequence alignment(s). + + + Sequence alignment formatting + true + + + + + + + + + beta12orEarlier + 1.12 + + Reformat a codon usage table. + + + Codon usage table formatting + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Visualise, format or render a molecular sequence or sequences such as a sequence alignment, possibly with sequence features or properties shown. + Sequence rendering + Sequence alignment visualisation + + + Sequence visualisation + + + + + + + + + beta12orEarlier + 1.15 + + Visualise, format or print a molecular sequence alignment. + + + Sequence alignment visualisation + true + + + + + + + + + + + + + + + beta12orEarlier + Visualise, format or render sequence clusters. + Sequence cluster rendering + + + Sequence cluster visualisation + + + + + + + + + + + + + + + + beta12orEarlier + Render or visualise a phylogenetic tree. + Phylogenetic tree rendering + + + Phylogenetic tree visualisation + + + + + + + + + beta12orEarlier + 1.15 + + Visualise RNA secondary structure, knots, pseudoknots etc. + + + RNA secondary structure visualisation + true + + + + + + + + + beta12orEarlier + 1.15 + + Render and visualise protein secondary structure. + + + Protein secondary structure visualisation + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Visualise or render molecular 3D structure, for example a high-quality static picture or animation. + Structure rendering + Protein secondary structure visualisation + RNA secondary structure visualisation + + + This includes visualisation of protein secondary structure such as knots, pseudoknots etc. as well as tertiary and quaternary structure. + Structure visualisation + + + + + + + + + + + + + + + + beta12orEarlier + Visualise microarray or other expression data. + Expression data rendering + Gene expression data visualisation + Microarray data rendering + + + Expression data visualisation + + + + + + + + + beta12orEarlier + 1.19 + + Identify and analyse networks of protein interactions. + + + Protein interaction network visualisation + true + + + + + + + + + + + + + + + beta12orEarlier + Draw or visualise a DNA map. + DNA map drawing + Map rendering + + + Map drawing + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Render a sequence with motifs. + + Sequence motif rendering + true + + + + + + + + + + + + + + + beta12orEarlier + Draw or visualise restriction maps in DNA sequences. + + + Restriction map drawing + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Draw a linear maps of DNA. + + DNA linear map rendering + true + + + + + + + + + beta12orEarlier + DNA circular map rendering + Draw a circular maps of DNA, for example a plasmid map. + + + Plasmid map drawing + + + + + + + + + + + + + + + beta12orEarlier + Visualise operon structure etc. + Operon rendering + + + Operon drawing + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identify folding families of related RNAs. + + Nucleic acid folding family identification + true + + + + + + + + + beta12orEarlier + 1.20 + + Compute energies of nucleic acid folding, e.g. minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants. + + + Nucleic acid folding energy calculation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Retrieve existing annotation (or documentation), typically annotation on a database entity. + + Use this concepts for tools which retrieve pre-existing annotations, not for example prediction methods that might make annotations. + Annotation retrieval + true + + + + + + + + + + + + + + + + beta12orEarlier + Predict the biological or biochemical role of a protein, or other aspects of a protein function. + Protein function analysis + Protein functional analysis + + + For functional properties that can be mapped to a sequence, use 'Sequence feature detection (protein)' instead. + Protein function prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Compare the functional properties of two or more proteins. + + + Protein function comparison + + + + + + + + + beta12orEarlier + 1.6 + + + Submit a molecular sequence to a database. + + Sequence submission + true + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a known network of gene regulation. + Gene regulatory network comparison + Gene regulatory network modelling + Regulatory network comparison + Regulatory network modelling + + + Gene regulatory network analysis + + + + + + + + + beta12orEarlier + WHATIF:UploadPDB + Parse, prepare or load a user-specified data file so that it is available for use. + Data loading + Loading + + + Parsing + + + + + + + + + beta12orEarlier + 1.6 + + + Query a sequence data resource (typically a database) and retrieve sequences and / or annotation. + + This includes direct retrieval methods (e.g. the dbfetch program) but not those that perform calculations on the sequence. + Sequence retrieval + true + + + + + + + + + beta12orEarlier + 1.6 + + + WHATIF:DownloadPDB + WHATIF:EchoPDB + Query a tertiary structure data resource (typically a database) and retrieve structures, structure-related data and annotation. + + This includes direct retrieval methods but not those that perform calculations on the sequence or structure. + Structure retrieval + true + + + + + + + + + + beta12orEarlier + WHATIF:GetSurfaceDots + Calculate the positions of dots that are homogeneously distributed over the surface of a molecule. + + + A dot has three coordinates (x,y,z) and (typically) a color. + Surface rendering + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible surface') for each atom in a structure. + + + Waters are not considered. + Protein atom surface calculation (accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible molecular surface') for each atom in a structure. + + + Waters are not considered. + Protein atom surface calculation (accessible molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible surface') for each residue in a structure. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('vacuum accessible surface') for each residue in a structure. This is the accessibility of the residue when taken out of the protein together with the backbone atoms of any residue it is covalently bound to. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (vacuum accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible molecular surface') for each residue in a structure. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (accessible molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('vacuum molecular surface') for each residue in a structure. This is the accessibility of the residue when taken out of the protein together with the backbone atoms of any residue it is covalently bound to. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (vacuum molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible molecular surface') for a structure as a whole. + + + Protein surface calculation (accessible molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible surface') for a structure as a whole. + + + Protein surface calculation (accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate for each residue in a protein structure all its backbone torsion angles. + + + Backbone torsion angle calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate for each residue in a protein structure all its torsion angles. + + + Full torsion angle calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate for each cysteine (bridge) all its torsion angles. + + + Cysteine torsion angle calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + For each amino acid in a protein structure calculate the backbone angle tau. + + + Tau is the backbone angle N-Calpha-C (angle over the C-alpha). + Tau angle calculation + true + + + + + + + + + beta12orEarlier + WHATIF:ShowCysteineBridge + Detect cysteine bridges (from coordinate data) in a protein structure. + + + Cysteine bridge detection + + + + + + + + + beta12orEarlier + WHATIF:ShowCysteineFree + Detect free cysteines in a protein structure. + + + A free cysteine is neither involved in a cysteine bridge, nor functions as a ligand to a metal. + Free cysteine detection + + + + + + + + + + beta12orEarlier + WHATIF:ShowCysteineMetal + Detect cysteines that are bound to metal in a protein structure. + + + Metal-bound cysteine detection + + + + + + + + + beta12orEarlier + 1.12 + + Calculate protein residue contacts with nucleic acids in a structure. + + + Residue contact calculation (residue-nucleic acid) + true + + + + + + + + + beta12orEarlier + Calculate protein residue contacts with metal in a structure. + Residue-metal contact calculation + + + Protein-metal contact calculation + + + + + + + + + beta12orEarlier + 1.12 + + Calculate ion contacts in a structure (all ions for all side chain atoms). + + + Residue contact calculation (residue-negative ion) + true + + + + + + + + + beta12orEarlier + WHATIF:ShowBumps + Detect 'bumps' between residues in a structure, i.e. those with pairs of atoms whose Van der Waals' radii interpenetrate more than a defined distance. + + + Residue bump detection + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF:SymmetryContact + Calculate the number of symmetry contacts made by residues in a protein structure. + + + A symmetry contact is a contact between two atoms in different asymmetric unit. + Residue symmetry contact calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate contacts between residues and ligands in a protein structure. + + + Residue contact calculation (residue-ligand) + true + + + + + + + + + beta12orEarlier + WHATIF:HasSaltBridge + WHATIF:HasSaltBridgePlus + WHATIF:ShowSaltBridges + WHATIF:ShowSaltBridgesH + Calculate (and possibly score) salt bridges in a protein structure. + + + Salt bridges are interactions between oppositely charged atoms in different residues. The output might include the inter-atomic distance. + Salt bridge calculation + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF:ShowLikelyRotamers + WHATIF:ShowLikelyRotamers100 + WHATIF:ShowLikelyRotamers200 + WHATIF:ShowLikelyRotamers300 + WHATIF:ShowLikelyRotamers400 + WHATIF:ShowLikelyRotamers500 + WHATIF:ShowLikelyRotamers600 + WHATIF:ShowLikelyRotamers700 + WHATIF:ShowLikelyRotamers800 + WHATIF:ShowLikelyRotamers900 + Predict rotamer likelihoods for all 20 amino acid types at each position in a protein structure. + + + Output typically includes, for each residue position, the likelihoods for the 20 amino acid types with estimated reliability of the 20 likelihoods. + Rotamer likelihood prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF:ProlineMutationValue + Calculate for each position in a protein structure the chance that a proline, when introduced at this position, would increase the stability of the whole protein. + + + Proline mutation value calculation + true + + + + + + + + + beta12orEarlier + WHATIF: PackingQuality + Identify poorly packed residues in protein structures. + + + Residue packing validation + + + + + + + + + beta12orEarlier + WHATIF: ImproperQualityMax + WHATIF: ImproperQualitySum + Validate protein geometry, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc. An example is validation of a Ramachandran plot of a protein structure. + Ramachandran plot validation + + + Protein geometry validation + + + + + + + + + + beta12orEarlier + beta12orEarlier + + WHATIF: PDB_sequence + Extract a molecular sequence from a PDB file. + + + PDB file sequence retrieval + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify HET groups in PDB files. + + + A HET group usually corresponds to ligands, lipids, but might also (not consistently) include groups that are attached to amino acids. Each HET group is supposed to have a unique three letter code and a unique name which might be given in the output. + HET group detection + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Determine for residue the DSSP determined secondary structure in three-state (HSC). + + DSSP secondary structure assignment + true + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF: PDBasXML + Reformat (a file or other report of) tertiary structure data. + + + Structure formatting + true + + + + + + + + + + + + + + + beta12orEarlier + Assign cysteine bonding state and disulfide bond partners in protein structures. + + + Protein cysteine and disulfide bond assignment + + + + + + + + + beta12orEarlier + 1.12 + + Identify poor quality amino acid positions in protein structures. + + + Residue validation + true + + + + + + + + + beta12orEarlier + 1.6 + + + WHATIF:MovedWaterPDB + Query a tertiary structure database and retrieve water molecules. + + Structure retrieval (water) + true + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict siRNA duplexes in RNA. + + + siRNA duplex prediction + + + + + + + + + + beta12orEarlier + Refine an existing sequence alignment. + + + Sequence alignment refinement + + + + + + + + + beta12orEarlier + 1.6 + + + Process an EMBOSS listfile (list of EMBOSS Uniform Sequence Addresses). + + Listfile processing + true + + + + + + + + + + beta12orEarlier + Perform basic (non-analytical) operations on a report or file of sequences (which might include features), such as file concatenation, removal or ordering of sequences, creation of subset or a new file of sequences. + + + Sequence file editing + + + + + + + + + beta12orEarlier + 1.6 + + + Perform basic (non-analytical) operations on a sequence alignment file, such as copying or removal and ordering of sequences. + + Sequence alignment file processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) physicochemical property data for small molecules. + + Small molecule data processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Search and retrieve documentation on a bioinformatics ontology. + + Data retrieval (ontology annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Query an ontology and retrieve concepts or relations. + + Data retrieval (ontology concept) + true + + + + + + + + + beta12orEarlier + Identify a representative sequence from a set of sequences, typically using scores from pair-wise alignment or other comparison of the sequences. + + + Representative sequence identification + + + + + + + + + beta12orEarlier + 1.6 + + + Perform basic (non-analytical) operations on a file of molecular tertiary structural data. + + Structure file processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Query a profile data resource and retrieve one or more profile(s) and / or associated annotation. + + This includes direct retrieval methods that retrieve a profile by, e.g. the profile name. + Data retrieval (sequence profile) + true + + + + + + + + + beta12orEarlier + Perform a statistical data operation of some type, e.g. calibration or validation. + Significance testing + Statistical analysis + Statistical test + Statistical testing + Expectation maximisation + Gibbs sampling + Hypothesis testing + Omnibus test + + + Statistical calculation + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate a 3D-1D scoring matrix from analysis of protein sequence and structural data. + 3D-1D scoring matrix construction + + + A 3D-1D scoring matrix scores the probability of amino acids occurring in different structural environments. + 3D-1D scoring matrix generation + + + + + + + + + + + + + + + + beta12orEarlier + Visualise transmembrane proteins, typically the transmembrane regions within a sequence. + Transmembrane protein rendering + + + Transmembrane protein visualisation + + + + + + + + + beta12orEarlier + beta13 + + + An operation performing purely illustrative (pedagogical) purposes. + + Demonstration + true + + + + + + + + + beta12orEarlier + beta13 + + + Query a biological pathways database and retrieve annotation on one or more pathways. + + Data retrieval (pathway or network) + true + + + + + + + + + beta12orEarlier + beta13 + + + Query a database and retrieve one or more data identifiers. + + Data retrieval (identifier) + true + + + + + + + + + + beta12orEarlier + Calculate a density plot (of base composition) for a nucleotide sequence. + + + Nucleic acid density plotting + + + + + + + + + + + + + + + beta12orEarlier + Analyse one or more known molecular sequences. + Sequence analysis (general) + + + Sequence analysis + + + + + + + + + + beta12orEarlier + Analyse molecular sequence motifs. + Sequence motif processing + + + Sequence motif analysis + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) protein interaction data. + + Protein interaction data processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse protein structural data. + Structure analysis (protein) + + + Protein structure analysis + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) annotation of some type, typically annotation on an entry from a biological or biomedical database entity. + + Annotation processing + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse features in molecular sequences. + + Sequence feature analysis + true + + + + + + + + + + + + + + + beta12orEarlier + true + Basic (non-analytical) operations of some data, either a file or equivalent entity in memory, such that the same basic type of data is consumed as input and generated as output. + File handling + File processing + Report handling + Utility operation + Processing + + + Data handling + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse gene expression and regulation data. + + Gene expression analysis + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) one or more structural (3D) profile(s) or template(s) of some type. + + Structural profile processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) an index of (typically a file of) biological data. + + Data index processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) some type of sequence profile. + + Sequence profile processing + true + + + + + + + + + beta12orEarlier + 1.22 + + Analyse protein function, typically by processing protein sequence and/or structural data, and generate an informative report. + + + Protein function analysis + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse, simulate or predict protein folding, typically by processing sequence and / or structural data. For example, predict sites of nucleation or stabilisation key to protein folding. + Protein folding modelling + Protein folding simulation + Protein folding site prediction + + + Protein folding analysis + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse protein secondary structure data. + Secondary structure analysis (protein) + + + Protein secondary structure analysis + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) data on the physicochemical property of a molecule. + + Physicochemical property data processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Predict oligonucleotide primers or probes. + Primer and probe prediction + + + Primer and probe design + + + + + + + + + beta12orEarlier + 1.12 + + Process (read and / or write) data of a specific type, for example applying analytical methods. + + + Operation (typed) + true + + + + + + + + + + + + + + + beta12orEarlier + Search a database (or other data resource) with a supplied query and retrieve entries (or parts of entries) that are similar to the query. + Search + + + Typically the query is compared to each entry and high scoring matches (hits) are returned. For example, a BLAST search of a sequence database. + Database search + + + + + + + + + + + + + + + + beta12orEarlier + Retrieve an entry (or part of an entry) from a data resource that matches a supplied query. This might include some primary data and annotation. The query is a data identifier or other indexed term. For example, retrieve a sequence record with the specified accession number, or matching supplied keywords. + Data extraction + Retrieval + Data retrieval (metadata) + Metadata retrieval + + + Data retrieval + + + + + + + + + beta12orEarlier + true + Predict, recognise, detect or identify some properties of a biomolecule. + Detection + Prediction + Recognition + + + Prediction and recognition + + + + + + + + + beta12orEarlier + true + Compare two or more things to identify similarities. + + + Comparison + + + + + + + + + beta12orEarlier + true + Refine or optimise some data model. + + + Optimisation and refinement + + + + + + + + + + + + + + + beta12orEarlier + true + Model or simulate some biological entity or system, typically using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models. + Mathematical modelling + + + Modelling and simulation + + + + + + + + + beta12orEarlier + beta12orEarlier + + Perform basic operations on some data or a database. + + + Data handling + true + + + + + + + + + beta12orEarlier + true + Validate some data. + Quality control + + + Validation + + + + + + + + + beta12orEarlier + true + Map properties to positions on an biological entity (typically a molecular sequence or structure), or assemble such an entity from constituent parts. + Cartography + + + Mapping + + + + + + + + + beta12orEarlier + true + Design a biological entity (typically a molecular sequence or structure) with specific properties. + + + Design + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) microarray data. + + Microarray data processing + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Process (read and / or write) a codon usage table. + + Codon usage table processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve a codon usage table and / or associated annotation. + + Data retrieval (codon usage table) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a gene expression profile. + + Gene expression profile processing + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Gene set testing + Identify classes of genes or proteins that are over or under-represented in a large set of genes or proteins. For example analysis of a set of genes corresponding to a gene expression profile, annotated with Gene Ontology (GO) concepts, where eventual over-/under-representation of certain GO concept within the studied set of genes is revealed. + Functional enrichment analysis + GSEA + Gene-set over-represenation analysis + Gene set analysis + GO-term enrichment + Gene Ontology concept enrichment + Gene Ontology term enrichment + + + "Gene set analysis" (often used interchangeably or in an overlapping sense with "gene-set enrichment analysis") refers to the functional analysis (term enrichment) of a differentially expressed set of genes, rather than all genes analysed. + Analyse gene expression patterns to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc. + Gene sets can be defined beforehand by biological function, chromosome locations and so on. + The Gene Ontology (GO) is typically used, the input is a set of Gene IDs, and the output of the analysis is typically a ranked list of GO concepts, each associated with a p-value. + Gene-set enrichment analysis + + + + + + + + + + + + + beta12orEarlier + Predict a network of gene regulation. + + + Gene regulatory network prediction + + + + + + + + + beta12orEarlier + 1.12 + + + + Generate, analyse or handle a biological pathway or network. + + Pathway or network processing + true + + + + + + + + + + + + + + + beta12orEarlier + Process (read and / or write) RNA secondary structure data. + + + RNA secondary structure analysis + + + + + + + + + beta12orEarlier + beta13 + + Process (read and / or write) RNA tertiary structure data. + + + Structure processing (RNA) + true + + + + + + + + + + + + + + + beta12orEarlier + Predict RNA tertiary structure. + + + RNA structure prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict DNA tertiary structure. + + + DNA structure prediction + + + + + + + + + beta12orEarlier + 1.12 + + Generate, process or analyse phylogenetic tree or trees. + + + Phylogenetic tree processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) protein secondary structure data. + + Protein secondary structure processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a network of protein interactions. + + Protein interaction network processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) one or more molecular sequences and associated annotation. + + Sequence processing + true + + + + + + + + + beta12orEarlier + 1.6 + + Process (read and / or write) a protein sequence and associated annotation. + + + Sequence processing (protein) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a nucleotide sequence and associated annotation. + + Sequence processing (nucleic acid) + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more molecular sequences. + + + Sequence comparison + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a sequence cluster. + + Sequence cluster processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a sequence feature table. + + Feature table processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Detect, predict and identify genes or components of genes in DNA sequences, including promoters, coding regions, splice sites, etc. + Gene calling + Gene finding + Whole gene prediction + + + Includes methods that predict whole gene structure using a combination of multiple methods to achieve better predictions. + Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc. + Gene prediction + + + + + + + + + + beta12orEarlier + 1.16 + + Classify G-protein coupled receptors (GPCRs) into families and subfamilies. + + + GPCR classification + true + + + + + + + + + beta12orEarlier + Not sustainable to have protein type-specific concepts. + 1.19 + + + Predict G-protein coupled receptor (GPCR) coupling selectivity. + + GPCR coupling selectivity prediction + true + + + + + + + + + beta12orEarlier + 1.6 + + Process (read and / or write) a protein tertiary structure. + + + Structure processing (protein) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility for each atom in a structure. + + + Waters are not considered. + Protein atom surface calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility for each residue in a structure. + + + Protein residue surface calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility of a structure as a whole. + + + Protein surface calculation + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular sequence alignment. + + Sequence alignment processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict protein-protein binding sites. + Protein-protein binding site detection + + + Protein-protein binding site prediction + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular tertiary structure. + + Structure processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Annotate a DNA map of some type with terms from a controlled vocabulary. + + Map annotation + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a protein. + + Data retrieval (protein annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve a phylogenetic tree from a data resource. + + Data retrieval (phylogenetic tree) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a protein interaction. + + Data retrieval (protein interaction annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a protein family. + + Data retrieval (protein family annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on an RNA family. + + Data retrieval (RNA family annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a specific gene. + + Data retrieval (gene annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a specific genotype or phenotype. + + Data retrieval (genotype and phenotype annotation) + true + + + + + + + + + + beta12orEarlier + Compare the architecture of two or more protein structures. + + + Protein architecture comparison + + + + + + + + + + + beta12orEarlier + Identify the architecture of a protein structure. + + + Includes methods that try to suggest the most likely biological unit for a given protein X-ray crystal structure based on crystal symmetry and scoring of putative protein-protein interfaces. + Protein architecture recognition + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + The simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation. + Molecular dynamics simulation + Protein dynamics + + + Molecular dynamics + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a nucleic acid sequence (using methods that are only applicable to nucleic acid sequences). + Sequence analysis (nucleic acid) + Nucleic acid sequence alignment analysis + Sequence alignment analysis (nucleic acid) + + + Nucleic acid sequence analysis + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a protein sequence (using methods that are only applicable to protein sequences). + Sequence analysis (protein) + Protein sequence alignment analysis + Sequence alignment analysis (protein) + + + Protein sequence analysis + + + + + + + + + + + + + + + beta12orEarlier + Analyse known molecular tertiary structures. + + + Structure analysis + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse nucleic acid tertiary structural data. + + + Nucleic acid structure analysis + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular secondary structure. + + Secondary structure processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more molecular tertiary structures. + + + Structure comparison + + + + + + + + + + + + + + + beta12orEarlier + Render a helical wheel representation of protein secondary structure. + Helical wheel rendering + + + Helical wheel drawing + + + + + + + + + + + + + + + + beta12orEarlier + Render a topology diagram of protein secondary structure. + Topology diagram rendering + + + Topology diagram drawing + + + + + + + + + + + + + + + + + + beta12orEarlier + Compare protein tertiary structures. + Structure comparison (protein) + + + Methods might identify structural neighbors, find structural similarities or define a structural core. + Protein structure comparison + + + + + + + + + + + beta12orEarlier + Compare protein secondary structures. + Protein secondary structure + Secondary structure comparison (protein) + Protein secondary structure alignment + + + Protein secondary structure comparison + + + + + + + + + + + + + + + beta12orEarlier + Predict the subcellular localisation of a protein sequence. + Protein cellular localization prediction + Protein subcellular localisation prediction + Protein targeting prediction + + + The prediction might include subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or export (extracellular proteins) of a protein. + Subcellular localisation prediction + + + + + + + + + + beta12orEarlier + 1.12 + + Calculate contacts between residues in a protein structure. + + + Residue contact calculation (residue-residue) + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify potential hydrogen bonds between amino acid residues. + + + Hydrogen bond calculation (inter-residue) + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict the interactions of proteins with other proteins. + Protein-protein interaction detection + Protein-protein binding prediction + Protein-protein interaction prediction + + + Protein interaction prediction + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) codon usage data. + + Codon usage data processing + true + + + + + + + + + + + + + + + beta12orEarlier + Process (read and/or write) expression data from experiments measuring molecules (e.g. omics data), including analysis of one or more expression profiles, typically to interpret them in functional terms. + Expression data analysis + Gene expression analysis + Gene expression data analysis + Gene expression regulation analysis + Metagenomic inference + Microarray data analysis + Protein expression analysis + + + Metagenomic inference is the profiling of phylogenetic marker genes in order to predict metagenome function. + Expression analysis + + + + + + + + + + + beta12orEarlier + 1.6 + + Process (read and / or write) a network of gene regulation. + + + Gene regulatory network processing + true + + + + + + + + + beta12orEarlier + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + Generate, process or analyse a biological pathway or network. + + Pathway or network analysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse SAGE, MPSS or SBS experimental data, typically to identify or quantify mRNA transcripts. + + Sequencing-based expression profile data analysis + true + + + + + + + + + + + + + + + + + beta12orEarlier + Predict, analyse, characterize or model splice sites, splicing events and so on, typically by comparing multiple nucleic acid sequences. + Splicing model analysis + + + Splicing analysis + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse raw microarray data. + + Microarray raw data analysis + true + + + + + + + + + beta12orEarlier + 1.19 + + + + Process (read and / or write) nucleic acid sequence or structural data. + + Nucleic acid analysis + true + + + + + + + + + beta12orEarlier + 1.19 + + + + Process (read and / or write) protein sequence or structural data. + + Protein analysis + true + + + + + + + + + beta12orEarlier + beta13 + + Process (read and / or write) molecular sequence data. + + + Sequence data processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) molecular structural data. + + Structural data processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Process (read and / or write) text. + + Text processing + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Analyse a protein sequence alignment, typically to detect features or make predictions. + + + Protein sequence alignment analysis + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Analyse a protein sequence alignment, typically to detect features or make predictions. + + + Nucleic acid sequence alignment analysis + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Compare two or more nucleic acid sequences. + + + Nucleic acid sequence comparison + true + + + + + + + + + beta12orEarlier + 1.18 + + Compare two or more protein sequences. + + + Protein sequence comparison + true + + + + + + + + + + + + + + + beta12orEarlier + Back-translate a protein sequence into DNA. + + + DNA back-translation + + + + + + + + + beta12orEarlier + 1.8 + + Edit or change a nucleic acid sequence, either randomly or specifically. + + + Sequence editing (nucleic acid) + true + + + + + + + + + beta12orEarlier + 1.8 + + Edit or change a protein sequence, either randomly or specifically. + + + Sequence editing (protein) + true + + + + + + + + + beta12orEarlier + 1.22 + + Generate a nucleic acid sequence by some means. + + + Sequence generation (nucleic acid) + true + + + + + + + + + beta12orEarlier + 1.22 + + Generate a protein sequence by some means. + + + Sequence generation (protein) + true + + + + + + + + + beta12orEarlier + 1.8 + + Visualise, format or render a nucleic acid sequence. + + + Various nucleic acid sequence analysis methods might generate a sequence rendering but are not (for brevity) listed under here. + Nucleic acid sequence visualisation + true + + + + + + + + + beta12orEarlier + 1.8 + + Visualise, format or render a protein sequence. + + + Various protein sequence analysis methods might generate a sequence rendering but are not (for brevity) listed under here. + Protein sequence visualisation + true + + + + + + + + + + + beta12orEarlier + Compare nucleic acid tertiary structures. + Structure comparison (nucleic acid) + + + Nucleic acid structure comparison + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) nucleic acid tertiary structure data. + + Structure processing (nucleic acid) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate a map of a DNA sequence annotated with positional or non-positional features of some type. + + + DNA mapping + + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a DNA map of some type. + + Map data processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse the hydrophobic, hydrophilic or charge properties of a protein (from analysis of sequence or structural information). + + + Protein hydropathy calculation + + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict catalytic residues, active sites or other ligand-binding sites in protein sequences or structures. + Protein binding site detection + Protein binding site prediction + + + Binding site prediction + + + + + + + + + + beta12orEarlier + Build clusters of similar structures, typically using scores from structural alignment methods. + Structural clustering + + + Structure clustering + + + + + + + + + + + + + + + beta12orEarlier + Generate a physical DNA map (sequence map) from analysis of sequence tagged sites (STS). + Sequence mapping + + + An STS is a short subsequence of known sequence and location that occurs only once in the chromosome or genome that is being mapped. Sources of STSs include 1. expressed sequence tags (ESTs), simple sequence length polymorphisms (SSLPs), and random genomic sequences from cloned genomic DNA or database sequences. + Sequence tagged site (STS) mapping + + + + + + + + + + beta12orEarlier + true + Compare two or more entities, typically the sequence or structure (or derivatives) of macromolecules, to identify equivalent subunits. + Alignment construction + Alignment generation + + + Alignment + + + + + + + + + + + beta12orEarlier + Calculate the molecular weight of a protein (or fragments) and compare it to another protein or reference data. Generally used for protein identification. + PMF + Peptide mass fingerprinting + Protein fingerprinting + + + Protein fragment weight comparison + + + + + + + + + + + + + + + beta12orEarlier + Compare the physicochemical properties of two or more proteins (or reference data). + + + Protein property comparison + + + + + + + + + beta12orEarlier + 1.18 + + + + Compare two or more molecular secondary structures. + + Secondary structure comparison + true + + + + + + + + + beta12orEarlier + 1.12 + + Generate a Hopp and Woods plot of antigenicity of a protein. + + + Hopp and Woods plotting + true + + + + + + + + + beta12orEarlier + 1.19 + + Generate a view of clustered quantitative data, annotated with textual information. + + + Cluster textual view generation + true + + + + + + + + + beta12orEarlier + Visualise clustered quantitative data as set of different profiles, where each profile is plotted versus different entities or samples on the X-axis. + Clustered quantitative data plotting + Clustered quantitative data rendering + Wave graph plotting + Microarray cluster temporal graph rendering + Microarray wave graph plotting + Microarray wave graph rendering + + + In the case of microarray data, visualise clustered gene expression data as a set of profiles, where each profile shows the gene expression values of a cluster across samples on the X-axis. + Clustering profile plotting + + + + + + + + + beta12orEarlier + 1.19 + + Generate a dendrograph of raw, preprocessed or clustered expression (e.g. microarray) data. + + + Dendrograph plotting + true + + + + + + + + + beta12orEarlier + Generate a plot of distances (distance or correlation matrix) between expression values. + Distance map rendering + Distance matrix plotting + Distance matrix rendering + Proximity map rendering + Correlation matrix plotting + Correlation matrix rendering + Microarray distance map rendering + Microarray proximity map plotting + Microarray proximity map rendering + + + Proximity map plotting + + + + + + + + + beta12orEarlier + Visualise clustered expression data using a tree diagram. + Dendrogram plotting + Dendrograph plotting + Dendrograph visualisation + Expression data tree or dendrogram rendering + Expression data tree visualisation + Microarray 2-way dendrogram rendering + Microarray checks view rendering + Microarray matrix tree plot rendering + Microarray tree or dendrogram rendering + + + Dendrogram visualisation + + + + + + + + + + beta12orEarlier + Visualize the results of a principal component analysis (orthogonal data transformation). For example, visualization of the principal components (essential subspace) coming from a Principal Component Analysis (PCA) on the trajectory atomistic coordinates of a molecular structure. + PCA plotting + Principal component plotting + ED visualization + Essential Dynamics visualization + Microarray principal component plotting + Microarray principal component rendering + PCA visualization + Principal modes visualization + + + Examples for visualization are the distribution of variance over the components, loading and score plots. + The use of Principal Component Analysis (PCA), a multivariate statistical analysis to obtain collective variables on the atomic positional fluctuations, helps to separate the configurational space in two subspaces: an essential subspace containing relevant motions, and another one containing irrelevant local fluctuations. + Principal component visualisation + + + + + + + + + beta12orEarlier + Render a graph in which the values of two variables are plotted along two axes; the pattern of the points reveals any correlation. + Scatter chart plotting + Microarray scatter plot plotting + Microarray scatter plot rendering + + + Comparison of two sets of quantitative data such as two samples of gene expression values. + Scatter plot plotting + + + + + + + + + beta12orEarlier + 1.18 + + Visualise gene expression data where each band (or line graph) corresponds to a sample. + + + Whole microarray graph plotting + true + + + + + + + + + beta12orEarlier + Visualise gene expression data after hierarchical clustering for representing hierarchical relationships. + Expression data tree-map rendering + Treemapping + Microarray tree-map rendering + + + Treemap visualisation + + + + + + + + + + beta12orEarlier + Generate a box plot, i.e. a depiction of groups of numerical data through their quartiles. + Box plot plotting + Microarray Box-Whisker plot plotting + + + In the case of micorarray data, visualise raw and pre-processed gene expression data, via a plot showing over- and under-expression along with mean, upper and lower quartiles. + Box-Whisker plot plotting + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate a physical (sequence) map of a DNA sequence showing the physical distance (base pairs) between features or landmarks such as restriction sites, cloned DNA fragments, genes and other genetic markers. + Physical cartography + + + Physical mapping + + + + + + + + + + beta12orEarlier + true + Apply analytical methods to existing data of a specific type. + + + This excludes non-analytical methods that read and write the same basic type of data (for that, see 'Data handling'). + Analysis + + + + + + + + + beta12orEarlier + 1.8 + + + Process or analyse an alignment of molecular sequences or structures. + + Alignment analysis + true + + + + + + + + + beta12orEarlier + 1.16 + + + + Analyse a body of scientific text (typically a full text article from a scientific journal). + + Article analysis + true + + + + + + + + + beta12orEarlier + beta13 + + + Analyse the interactions of two or more molecules (or parts of molecules) that are known to interact. + + Molecular interaction analysis + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse the interactions of proteins with other proteins. + Protein interaction analysis + Protein interaction raw data analysis + Protein interaction simulation + + + Includes analysis of raw experimental protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc. + Protein-protein interaction analysis + + + + + + + + + beta12orEarlier + WHATIF: HETGroupNames + WHATIF:HasMetalContacts + WHATIF:HasMetalContactsPlus + WHATIF:HasNegativeIonContacts + WHATIF:HasNegativeIonContactsPlus + WHATIF:HasNucleicContacts + WHATIF:ShowDrugContacts + WHATIF:ShowDrugContactsShort + WHATIF:ShowLigandContacts + WHATIF:ShowProteiNucleicContacts + Calculate contacts between residues, or between residues and other groups, in a protein structure, on the basis of distance calculations. + HET group detection + Residue contact calculation (residue-ligand) + Residue contact calculation (residue-metal) + Residue contact calculation (residue-negative ion) + Residue contact calculation (residue-nucleic acid) + WHATIF:SymmetryContact + + + This includes identifying HET groups, which usually correspond to ligands, lipids, but might also (not consistently) include groups that are attached to amino acids. Each HET group is supposed to have a unique three letter code and a unique name which might be given in the output. It can also include calculation of symmetry contacts, i.e. a contact between two atoms in different asymmetric unit. + Residue distance calculation + + + + + + + + + beta12orEarlier + 1.6 + + + + Process (read and / or write) an alignment of two or more molecular sequences, structures or derived data. + + Alignment processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular tertiary (3D) structure alignment. + + Structure alignment processing + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate codon usage bias, e.g. generate a codon usage bias plot. + Codon usage bias plotting + + + Codon usage bias calculation + + + + + + + + + beta12orEarlier + 1.22 + + Generate a codon usage bias plot. + + + Codon usage bias plotting + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate the differences in codon usage fractions between two sequences, sets of sequences, codon usage tables etc. + + + Codon usage fraction calculation + + + + + + + + + beta12orEarlier + true + Assign molecular sequences, structures or other biological data to a specific group or category according to qualities it shares with that group or category. + + + Classification + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) molecular interaction data. + + Molecular interaction data processing + true + + + + + + + + + + beta12orEarlier + Assign molecular sequence(s) to a group or category. + + + Sequence classification + + + + + + + + + + beta12orEarlier + Assign molecular structure(s) to a group or category. + + + Structure classification + + + + + + + + + beta12orEarlier + Compare two or more proteins (or some aspect) to identify similarities. + + + Protein comparison + + + + + + + + + beta12orEarlier + Compare two or more nucleic acids to identify similarities. + + + Nucleic acid comparison + + + + + + + + + beta12orEarlier + 1.19 + + Predict, recognise, detect or identify some properties of proteins. + + + Prediction and recognition (protein) + true + + + + + + + + + beta12orEarlier + 1.19 + + Predict, recognise, detect or identify some properties of nucleic acids. + + + Prediction and recognition (nucleic acid) + true + + + + + + + + + + + + + + + beta13 + Edit, convert or otherwise change a molecular tertiary structure, either randomly or specifically. + + + Structure editing + + + + + + + + + beta13 + Edit, convert or otherwise change a molecular sequence alignment, either randomly or specifically. + + + Sequence alignment editing + + + + + + + + + beta13 + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + Render (visualise) a biological pathway or network. + + Pathway or network visualisation + true + + + + + + + + + beta13 + 1.6 + + + Predict general (non-positional) functional properties of a protein from analysing its sequence. + + For functional properties that are positional, use 'Protein site detection' instead. + Protein function prediction (from sequence) + true + + + + + + + + + beta13 + (jison)This is a distinction made on basis of input; all features exist can be mapped to a sequence so this isn't needed (consolidate with "Protein feature detection"). + 1.17 + + + + Predict, recognise and identify functional or other key sites within protein sequences, typically by scanning for known motifs, patterns and regular expressions. + + + Protein sequence feature detection + true + + + + + + + + + beta13 + 1.18 + + + Calculate (or predict) physical or chemical properties of a protein, including any non-positional properties of the molecular sequence, from processing a protein sequence. + + + Protein property calculation (from sequence) + true + + + + + + + + + beta13 + 1.6 + + + Predict, recognise and identify positional features in proteins from analysing protein structure. + + Protein feature prediction (from structure) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta13 + Predict, recognise and identify positional features in proteins from analysing protein sequences or structures. + Protein feature prediction + Protein feature recognition + Protein secondary database search + Protein site detection + Protein site prediction + Protein site recognition + Sequence feature detection (protein) + Sequence profile database search + + + Features includes functional sites or regions, secondary structure, structural domains and so on. Methods might use fingerprints, motifs, profiles, hidden Markov models, sequence alignment etc to provide a mapping of a query protein sequence to a discriminatory element. This includes methods that search a secondary protein database (Prosite, Blocks, ProDom, Prints, Pfam etc.) to assign a protein sequence(s) to a known protein family or group. + Protein feature detection + + + + + + + + + beta13 + 1.6 + + + Screen a molecular sequence(s) against a database (of some type) to identify similarities between the sequence and database entries. + + Database search (by sequence) + true + + + + + + + + + + beta13 + Predict a network of protein interactions. + + + Protein interaction network prediction + + + + + + + + + + beta13 + Design (or predict) nucleic acid sequences with specific chemical or physical properties. + Gene design + + + Nucleic acid design + + + + + + + + + + beta13 + Edit a data entity, either randomly or specifically. + + + Editing + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.1 + Evaluate a DNA sequence assembly, typically for purposes of quality control. + Assembly QC + Assembly quality evaluation + Sequence assembly QC + Sequence assembly quality evaluation + + + Sequence assembly validation + + + + + + + + + + 1.1 + Align two or more (tpyically huge) molecular sequences that represent genomes. + Genome alignment construction + Whole genome alignment + + + Genome alignment + + + + + + + + + 1.1 + Reconstruction of a sequence assembly in a localised area. + + + Localised reassembly + + + + + + + + + 1.1 + Render and visualise a DNA sequence assembly. + Assembly rendering + Assembly visualisation + Sequence assembly rendering + + + Sequence assembly visualisation + + + + + + + + + + + + + + + 1.1 + Identify base (nucleobase) sequence from a fluorescence 'trace' data generated by an automated DNA sequencer. + Base calling + Phred base calling + Phred base-calling + + + Base-calling + + + + + + + + + + 1.1 + The mapping of methylation sites in a DNA (genome) sequence. Typically, the mapping of high-throughput bisulfite reads to the reference genome. + Bisulfite read mapping + Bisulfite sequence alignment + Bisulfite sequence mapping + + + Bisulfite mapping follows high-throughput sequencing of DNA which has undergone bisulfite treatment followed by PCR amplification; unmethylated cytosines are specifically converted to thymine, allowing the methylation status of cytosine in the DNA to be detected. + Bisulfite mapping + + + + + + + + + 1.1 + Identify and filter a (typically large) sequence data set to remove sequences from contaminants in the sample that was sequenced. + + + Sequence contamination filtering + + + + + + + + + 1.1 + 1.12 + + Trim sequences (typically from an automated DNA sequencer) to remove misleading ends. + + + For example trim polyA tails, introns and primer sequence flanking the sequence of amplified exons, or other unwanted sequence. + Trim ends + true + + + + + + + + + 1.1 + 1.12 + + Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences. + + + Trim vector + true + + + + + + + + + 1.1 + 1.12 + + Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence. + + + Trim to reference + true + + + + + + + + + 1.1 + Cut (remove) the end from a molecular sequence. + Trimming + Barcode sequence removal + Trim ends + Trim to reference + Trim vector + + + This includes end trimming, -- Trim sequences (typically from an automated DNA sequencer) to remove misleading ends. For example trim polyA tails, introns and primer sequence flanking the sequence of amplified exons, or other unwanted sequence.-- trimming to a reference sequence, --Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence. -- vector trimming -- Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences. + Sequence trimming + + + + + + + + + + 1.1 + Compare the features of two genome sequences. + + + Genomic elements that might be compared include genes, indels, single nucleotide polymorphisms (SNPs), retrotransposons, tandem repeats and so on. + Genome feature comparison + + + + + + + + + + + + + + + 1.1 + Detect errors in DNA sequences generated from sequencing projects). + Short read error correction + Short-read error correction + + + Sequencing error detection + + + + + + + + + 1.1 + Analyse DNA sequence data to identify differences between the genetic composition (genotype) of an individual compared to other individual's or a reference sequence. + + + Methods might consider cytogenetic analyses, copy number polymorphism (and calculate copy number calls for copy-number variation(CNV) regions), single nucleotide polymorphism (SNP), , rare copy number variation (CNV) identification, loss of heterozygosity data and so on. + Genotyping + + + + + + + + + 1.1 + Analyse a genetic variation, for example to annotate its location, alleles, classification, and effects on individual transcripts predicted for a gene model. + Genetic variation annotation + Sequence variation analysis + Variant analysis + Transcript variant analysis + + + Genetic variation annotation provides contextual interpretation of coding SNP consequences in transcripts. It allows comparisons to be made between variation data in different populations or strains for the same transcript. + Genetic variation analysis + + + + + + + + + + 1.1 + Align short oligonucleotide sequences (reads) to a larger (genomic) sequence. + Oligonucleotide alignment + Oligonucleotide alignment construction + Oligonucleotide alignment generation + Oligonucleotide mapping + Read alignment + Short oligonucleotide alignment + Short read alignment + Short read mapping + Short sequence read mapping + + + The purpose of read mapping is to identify the location of sequenced fragments within a reference genome and assumes that there is, in fact, at least local similarity between the fragment and reference sequences. + Read mapping + + + + + + + + + 1.1 + A variant of oligonucleotide mapping where a read is mapped to two separate locations because of possible structural variation. + Split-read mapping + + + Split read mapping + + + + + + + + + 1.1 + Analyse DNA sequences in order to identify a DNA 'barcode'; marker genes or any short fragment(s) of DNA that are useful to diagnose the taxa of biological organisms. + Community profiling + Sample barcoding + + + DNA barcoding + + + + + + + + + + 1.1 + 1.19 + + Identify single nucleotide change in base positions in sequencing data that differ from a reference genome and which might, especially by reference to population frequency or functional data, indicate a polymorphism. + + + SNP calling + true + + + + + + + + + 1.1 + "Polymorphism detection" and "Variant calling" are essentially the same thing - keeping the later as a more prevalent term nowadays. + 1.24 + + + Detect mutations in multiple DNA sequences, for example, from the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware. + + + Polymorphism detection + true + + + + + + + + + 1.1 + Visualise, format or render an image of a Chromatogram. + Chromatogram viewing + + + Chromatogram visualisation + + + + + + + + + 1.1 + Analyse cytosine methylation states in nucleic acid sequences. + Methylation profile analysis + + + Methylation analysis + + + + + + + + + 1.1 + 1.19 + + Determine cytosine methylation status of specific positions in a nucleic acid sequences. + + + Methylation calling + true + + + + + + + + + + 1.1 + Measure the overall level of methyl cytosines in a genome from analysis of experimental data, typically from chromatographic methods and methyl accepting capacity assay. + Genome methylation analysis + Global methylation analysis + Methylation level analysis (global) + + + Whole genome methylation analysis + + + + + + + + + 1.1 + Analysing the DNA methylation of specific genes or regions of interest. + Gene-specific methylation analysis + Methylation level analysis (gene-specific) + + + Gene methylation analysis + + + + + + + + + + 1.1 + Visualise, format or render a nucleic acid sequence that is part of (and in context of) a complete genome sequence. + Genome browser + Genome browsing + Genome rendering + Genome viewing + + + Genome visualisation + + + + + + + + + + 1.1 + Compare the sequence or features of two or more genomes, for example, to find matching regions. + Genomic region matching + + + Genome comparison + + + + + + + + + + + + + + + + 1.1 + Generate an index of a genome sequence. + Burrows-Wheeler + Genome indexing (Burrows-Wheeler) + Genome indexing (suffix arrays) + Suffix arrays + + + Many sequence alignment tasks involving many or very large sequences rely on a precomputed index of the sequence to accelerate the alignment. The Burrows-Wheeler Transform (BWT) is a permutation of the genome based on a suffix array algorithm. A suffix array consists of the lexicographically sorted list of suffixes of a genome. + Genome indexing + + + + + + + + + 1.1 + 1.12 + + Generate an index of a genome sequence using the Burrows-Wheeler algorithm. + + + The Burrows-Wheeler Transform (BWT) is a permutation of the genome based on a suffix array algorithm. + Genome indexing (Burrows-Wheeler) + true + + + + + + + + + 1.1 + 1.12 + + Generate an index of a genome sequence using a suffix arrays algorithm. + + + A suffix array consists of the lexicographically sorted list of suffixes of a genome. + Genome indexing (suffix arrays) + true + + + + + + + + + + + + + + + 1.1 + Analyse one or more spectra from mass spectrometry (or other) experiments. + Mass spectrum analysis + Spectrum analysis + + + Spectral analysis + + + + + + + + + + + + + + + + 1.1 + Identify peaks in a spectrum from a mass spectrometry, NMR, or some other spectrum-generating experiment. + Peak assignment + Peak finding + + + Peak detection + + + + + + + + + + + + + + + + 1.1 + Link together a non-contiguous series of genomic sequences into a scaffold, consisting of sequences separated by gaps of known length. The sequences that are linked are typically typically contigs; contiguous sequences corresponding to read overlaps. + Scaffold construction + Scaffold generation + + + Scaffold may be positioned along a chromosome physical map to create a "golden path". + Scaffolding + + + + + + + + + 1.1 + Fill the gaps in a sequence assembly (scaffold) by merging in additional sequences. + + + Different techniques are used to generate gap sequences to connect contigs, depending on the size of the gap. For small (5-20kb) gaps, PCR amplification and sequencing is used. For large (>20kb) gaps, fragments are cloned (e.g. in BAC (Bacterial artificial chromosomes) vectors) and then sequenced. + Scaffold gap completion + + + + + + + + + + 1.1 + Raw sequence data quality control. + Sequencing QC + Sequencing quality assessment + + + Analyse raw sequence data from a sequencing pipeline and identify (and possiby fix) problems. + Sequencing quality control + + + + + + + + + + 1.1 + Pre-process sequence reads to ensure (or improve) quality and reliability. + Sequence read pre-processing + + + For example process paired end reads to trim low quality ends remove short sequences, identify sequence inserts, detect chimeric reads, or remove low quality sequences including vector, adaptor, low complexity and contaminant sequences. Sequences might come from genomic DNA library, EST libraries, SSH library and so on. + Read pre-processing + + + + + + + + + + + + + + + 1.1 + Estimate the frequencies of different species from analysis of the molecular sequences, typically of DNA recovered from environmental samples. + + + Species frequency estimation + + + + + + + + + 1.1 + Identify putative protein-binding regions in a genome sequence from analysis of Chip-sequencing data or ChIP-on-chip data. + Protein binding peak detection + Peak-pair calling + + + Chip-sequencing combines chromatin immunoprecipitation (ChIP) with massively parallel DNA sequencing to generate a set of reads, which are aligned to a genome sequence. The enriched areas contain the binding sites of DNA-associated proteins. For example, a transcription factor binding site. ChIP-on-chip in contrast combines chromatin immunoprecipitation ('ChIP') with microarray ('chip'). "Peak-pair calling" is similar to "Peak calling" in the context of ChIP-exo. + Peak calling + + + + + + + + + 1.1 + Identify from molecular sequence analysis (typically from analysis of microarray or RNA-seq data) genes whose expression levels are significantly different between two sample groups. + Differential expression analysis + Differential gene analysis + Differential gene expression analysis + Differentially expressed gene identification + + + Differential gene expression analysis is used, for example, to identify which genes are up-regulated (increased expression) or down-regulated (decreased expression) between a group treated with a drug and a control groups. + Differential gene expression profiling + + + + + + + + + 1.1 + 1.21 + + Analyse gene expression patterns (typically from DNA microarray datasets) to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc. + + + Gene set testing + true + + + + + + + + + + 1.1 + Classify variants based on their potential effect on genes, especially functional effects on the expressed proteins. + + + Variants are typically classified by their position (intronic, exonic, etc.) in a gene transcript and (for variants in coding exons) by their effect on the protein sequence (synonymous, non-synonymous, frameshifting, etc.) + Variant classification + + + + + + + + + 1.1 + Identify biologically interesting variants by prioritizing individual variants, for example, homozygous variants absent in control genomes. + + + Variant prioritisation can be used for example to produce a list of variants responsible for 'knocking out' genes in specific genomes. Methods amino acid substitution, aggregative approaches, probabilistic approach, inheritance and unified likelihood-frameworks. + Variant prioritisation + + + + + + + + + + 1.1 + Detect, identify and map mutations, such as single nucleotide polymorphisms, short indels and structural variants, in multiple DNA sequences. Typically the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware, to study genomic alterations. + Variant mapping + Allele calling + Exome variant detection + Genome variant detection + Germ line variant calling + Mutation detection + Somatic variant calling + de novo mutation detection + + + Methods often utilise a database of aligned reads. + Somatic variant calling is the detection of variations established in somatic cells and hence not inherited as a germ line variant. + Variant detection + Variant calling + + + + + + + + + 1.1 + Detect large regions in a genome subject to copy-number variation, or other structural variations in genome(s). + Structural variation discovery + + + Methods might involve analysis of whole-genome array comparative genome hybridisation or single-nucleotide polymorphism arrays, paired-end mapping of sequencing data, or from analysis of short reads from new sequencing technologies. + Structural variation detection + + + + + + + + + 1.1 + Analyse sequencing data from experiments aiming to selectively sequence the coding regions of the genome. + Exome sequence analysis + + + Exome assembly + + + + + + + + + 1.1 + Analyse mapping density (read depth) of (typically) short reads from sequencing platforms, for example, to detect deletions and duplications. + + + Read depth analysis + + + + + + + + + 1.1 + Combine classical quantitative trait loci (QTL) analysis with gene expression profiling, for example, to describe describe cis- and trans-controlling elements for the expression of phenotype associated genes. + Gene expression QTL profiling + Gene expression quantitative trait loci profiling + eQTL profiling + + + Gene expression QTL analysis + + + + + + + + + 1.1 + Estimate the number of copies of loci of particular gene(s) in DNA sequences typically from gene-expression profiling technology based on microarray hybridisation-based experiments. For example, estimate copy number (or marker dosage) of a dominant marker in samples from polyploid plant cells or tissues, or chromosomal gains and losses in tumors. + Transcript copy number estimation + + + Methods typically implement some statistical model for hypothesis testing, and methods estimate total copy number, i.e. do not distinguish the two inherited chromosomes quantities (specific copy number). + Copy number estimation + + + + + + + + + 1.2 + Adapter removal + Remove forward and/or reverse primers from nucleic acid sequences (typically PCR products). + + + Primer removal + + + + + + + + + + + + + + + + + + + + + 1.2 + Infer a transcriptome sequence by analysis of short sequence reads. + + + Transcriptome assembly + + + + + + + + + 1.2 + 1.6 + + + Infer a transcriptome sequence without the aid of a reference genome, i.e. by comparing short sequences (reads) to each other. + + Transcriptome assembly (de novo) + true + + + + + + + + + 1.2 + 1.6 + + + Infer a transcriptome sequence by mapping short reads to a reference genome. + + Transcriptome assembly (mapping) + true + + + + + + + + + + + + + + + + + + + + + 1.3 + Convert one set of sequence coordinates to another, e.g. convert coordinates of one assembly to another, cDNA to genomic, CDS to genomic, protein translation to genomic etc. + + + Sequence coordinate conversion + + + + + + + + + 1.3 + Calculate similarity between 2 or more documents. + + + Document similarity calculation + + + + + + + + + + 1.3 + Cluster (group) documents on the basis of their calculated similarity. + + + Document clustering + + + + + + + + + + 1.3 + Recognise named entities, ontology concepts, tags, events, and dictionary terms within documents. + Concept mining + Entity chunking + Entity extraction + Entity identification + Event extraction + NER + Named-entity recognition + + + Named-entity and concept recognition + + + + + + + + + + + + 1.3 + Map data identifiers to one another for example to establish a link between two biological databases for the purposes of data integration. + Accession mapping + Identifier mapping + + + The mapping can be achieved by comparing identifier values or some other means, e.g. exact matches to a provided sequence. + ID mapping + + + + + + + + + 1.3 + Process data in such a way that makes it hard to trace to the person which the data concerns. + Data anonymisation + + + Anonymisation + + + + + + + + + 1.3 + (jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved. + 1.17 + + Search for and retrieve a data identifier of some kind, e.g. a database entry accession. + + + ID retrieval + true + + + + + + + + + + + + + + + + + + + + + 1.4 + Generate a checksum of a molecular sequence. + + + Sequence checksum generation + + + + + + + + + + + + + + + 1.4 + Construct a bibliography from the scientific literature. + Bibliography construction + + + Bibliography generation + + + + + + + + + 1.4 + Predict the structure of a multi-subunit protein and particularly how the subunits fit together. + + + Protein quaternary structure prediction + + + + + + + + + + + + + + + + + + + + + 1.4 + Analyse the surface properties of proteins or other macromolecules, including surface accessible pockets, interior inaccessible cavities etc. + + + Molecular surface analysis + + + + + + + + + 1.4 + Compare two or more ontologies, e.g. identify differences. + + + Ontology comparison + + + + + + + + + 1.4 + 1.9 + + Compare two or more ontologies, e.g. identify differences. + + + Ontology comparison + true + + + + + + + + + + + + + + + + 1.4 + Recognition of which format the given data is in. + Format identification + Format inference + Format recognition + + + 'Format recognition' is not a bioinformatics-specific operation, but of great relevance in bioinformatics. Should be removed from EDAM if/when captured satisfactorily in a suitable domain-generic ontology. + Format detection + + + + + + The has_input "Data" (data_0006) may cause visualisation or other problems although ontologically correct. But on the other hand it may be useful to distinguish from nullary operations without inputs. + + + + + + + + + 1.4 + Split a file containing multiple data items into many files, each containing one item. + File splitting + + + Splitting + + + + + + + + + 1.6 + true + Construct some data entity. + Construction + + + For non-analytical operations, see the 'Processing' branch. + Generation + + + + + + + + + 1.6 + (jison)This is a distinction made on basis of input; all features exist can be mapped to a sequence so this isn't needed. + 1.17 + + + Predict, recognise and identify functional or other key sites within nucleic acid sequences, typically by scanning for known motifs, patterns and regular expressions. + + + Nucleic acid sequence feature detection + true + + + + + + + + + 1.6 + Deposit some data in a database or some other type of repository or software system. + Data deposition + Data submission + Database deposition + Database submission + Submission + + + For non-analytical operations, see the 'Processing' branch. + Deposition + + + + + + + + + 1.6 + true + Group together some data entities on the basis of similarities such that entities in the same group (cluster) are more similar to each other than to those in other groups (clusters). + + + Clustering + + + + + + + + + 1.6 + 1.19 + + Construct some entity (typically a molecule sequence) from component pieces. + + + Assembly + true + + + + + + + + + 1.6 + true + Convert a data set from one form to another. + + + Conversion + + + + + + + + + 1.6 + Standardize or normalize data by some statistical method. + Normalisation + Standardisation + + + In the simplest normalisation means adjusting values measured on different scales to a common scale (often between 0.0 and 1.0), but can refer to more sophisticated adjustment whereby entire probability distributions of adjusted values are brought into alignment. Standardisation typically refers to an operation whereby a range of values are standardised to measure how many standard deviations a value is from its mean. + Standardisation and normalisation + + + + + + + + + 1.6 + Combine multiple files or data items into a single file or object. + + + Aggregation + + + + + + + + + + + + + + + 1.6 + Compare two or more scientific articles. + + + Article comparison + + + + + + + + + 1.6 + true + Mathematical determination of the value of something, typically a properly of a molecule. + + + Calculation + + + + + + + + + 1.6 + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + + Predict a molecular pathway or network. + + Pathway or network prediction + true + + + + + + + + + 1.6 + 1.12 + + The process of assembling many short DNA sequences together such that they represent the original chromosomes from which the DNA originated. + + + Genome assembly + true + + + + + + + + + 1.6 + 1.19 + + Generate a graph, or other visual representation, of data, showing the relationship between two or more variables. + + + Plotting + true + + + + + + + + + + + + + + + 1.7 + Image processing + The analysis of a image (typically a digital image) of some type in order to extract information from it. + + + Image analysis + + + + + + + + + + 1.7 + Analysis of data from a diffraction experiment. + + + Diffraction data analysis + + + + + + + + + + + + + + + 1.7 + Analysis of cell migration images in order to study cell migration, typically in order to study the processes that play a role in the disease progression. + + + Cell migration analysis + + + + + + + + + + 1.7 + Processing of diffraction data into a corrected, ordered, and simplified form. + + + Diffraction data reduction + + + + + + + + + + + + + + + 1.7 + Measurement of neurites; projections (axons or dendrites) from the cell body of a neuron, from analysis of neuron images. + + + Neurite measurement + + + + + + + + + 1.7 + The evaluation of diffraction intensities and integration of diffraction maxima from a diffraction experiment. + Diffraction profile fitting + Diffraction summation integration + + + Diffraction data integration + + + + + + + + + 1.7 + Phase a macromolecular crystal structure, for example by using molecular replacement or experimental phasing methods. + + + Phasing + + + + + + + + + 1.7 + A technique used to construct an atomic model of an unknown structure from diffraction data, based upon an atomic model of a known structure, either a related protein or the same protein from a different crystal form. + + + The technique solves the phase problem, i.e. retrieve information concern phases of the structure. + Molecular replacement + + + + + + + + + 1.7 + A method used to refine a structure by moving the whole molecule or parts of it as a rigid unit, rather than moving individual atoms. + + + Rigid body refinement usually follows molecular replacement in the assignment of a structure from diffraction data. + Rigid body refinement + + + + + + + + + + + + + + + + 1.7 + An image processing technique that combines and analyze multiple images of a particulate sample, in order to produce an image with clearer features that are more easily interpreted. + + + Single particle analysis is used to improve the information that can be obtained by relatively low resolution techniques, , e.g. an image of a protein or virus from transmission electron microscopy (TEM). + Single particle analysis + + + + + + + + + + + 1.7 + true + This is two related concepts. + Compare (align and classify) multiple particle images from a micrograph in order to produce a representative image of the particle. + + + A micrograph can include particles in multiple different orientations and/or conformations. Particles are compared and organised into sets based on their similarity. Typically iterations of classification and alignment and are performed to optimise the final 3D EM map. + Single particle alignment and classification + + + + + + + + + + + + + + + 1.7 + Clustering of molecular sequences on the basis of their function, typically using information from an ontology of gene function, or some other measure of functional phenotype. + Functional sequence clustering + + + Functional clustering + + + + + + + + + 1.7 + Classifiication (typically of molecular sequences) by assignment to some taxonomic hierarchy. + Taxonomy assignment + Taxonomic profiling + + + Taxonomic classification + + + + + + + + + + + + + + + + 1.7 + The prediction of the degree of pathogenicity of a microorganism from analysis of molecular sequences. + Pathogenicity prediction + + + Virulence prediction + + + + + + + + + + 1.7 + Analyse the correlation patterns among features/molecules across across a variety of experiments, samples etc. + Co-expression analysis + Gene co-expression network analysis + Gene expression correlation + Gene expression correlation analysis + + + Expression correlation analysis + + + + + + + + + + + + + + + 1.7 + true + Identify a correlation, i.e. a statistical relationship between two random variables or two sets of data. + + + Correlation + + + + + + + + + + + + + + + + 1.7 + Compute the covariance model for (a family of) RNA secondary structures. + + + RNA structure covariance model generation + + + + + + + + + 1.7 + 1.18 + + Predict RNA secondary structure by analysis, e.g. probabilistic analysis, of the shape of RNA folds. + + + RNA secondary structure prediction (shape-based) + true + + + + + + + + + 1.7 + 1.18 + + Prediction of nucleic-acid folding using sequence alignments as a source of data. + + + Nucleic acid folding prediction (alignment-based) + true + + + + + + + + + 1.7 + Count k-mers (substrings of length k) in DNA sequence data. + + + k-mer counting is used in genome and transcriptome assembly, metagenomic sequencing, and for error correction of sequence reads. + k-mer counting + + + + + + + + + + + + + + + 1.7 + Reconstructing the inner node labels of a phylogenetic tree from its leafes. + Phylogenetic tree reconstruction + Gene tree reconstruction + Species tree reconstruction + + + Note that this is somewhat different from simply analysing an existing tree or constructing a completely new one. + Phylogenetic reconstruction + + + + + + + + + 1.7 + Generate some data from a chosen probibalistic model, possibly to evaluate algorithms. + + + Probabilistic data generation + + + + + + + + + + 1.7 + Generate sequences from some probabilistic model, e.g. a model that simulates evolution. + + + Probabilistic sequence generation + + + + + + + + + + + + + + + + 1.7 + Identify or predict causes for antibiotic resistance from molecular sequence analysis. + + + Antimicrobial resistance prediction + + + + + + + + + + + + + + + 1.8 + Analysis of a set of objects, such as genes, annotated with given categories, where eventual over-/under-representation of certain categories within the studied set of objects is revealed. + Enrichment + Over-representation analysis + Functional enrichment + + + Categories from a relevant ontology can be used. The input is typically a set of genes or other biological objects, possibly represented by their identifiers, and the output of the analysis is typically a ranked list of categories, each associated with a statistical metric of over-/under-representation within the studied data. + Enrichment analysis + + + + + + + + + + + + + + + 1.8 + Analyse a dataset with respect to concepts from an ontology of chemical structure, leveraging chemical similarity information. + Chemical class enrichment + + + Chemical similarity enrichment + + + + + + + + + 1.8 + Plot an incident curve such as a survival curve, death curve, mortality curve. + + + Incident curve plotting + + + + + + + + + 1.8 + Identify and map patterns of genomic variations. + + + Methods often utilise a database of aligned reads. + Variant pattern analysis + + + + + + + + + 1.8 + 1.12 + + Model some biological system using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models. + + + Mathematical modelling + true + + + + + + + + + + + + + + + 1.9 + Visualise images resulting from various types of microscopy. + + + Microscope image visualisation + + + + + + + + + 1.9 + Annotate an image of some sort, typically with terms from a controlled vocabulary. + + + Image annotation + + + + + + + + + 1.9 + Replace missing data with substituted values, usually by using some statistical or other mathematical approach. + Data imputation + + + Imputation + + + + + + + + + + 1.9 + Visualise, format or render data from an ontology, typically a tree of terms. + Ontology browsing + + + Ontology visualisation + + + + + + + + + 1.9 + A method for making numerical assessments about the maximum percent of time that a conformer of a flexible macromolecule can exist and still be compatible with the experimental data. + + + Maximum occurrence analysis + + + + + + + + + + 1.9 + Compare the models or schemas used by two or more databases, or any other general comparison of databases rather than a detailed comparison of the entries themselves. + Data model comparison + Schema comparison + + + Database comparison + + + + + + + + + 1.9 + 1.24 + + + + Simulate the bevaviour of a biological pathway or network. + + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + Network simulation + true + + + + + + + + + 1.9 + Analyze read counts from RNA-seq experiments. + + + RNA-seq read count analysis + + + + + + + + + 1.9 + Identify and remove redundancy from a set of small molecule structures. + + + Chemical redundancy removal + + + + + + + + + 1.9 + Analyze time series data from an RNA-seq experiment. + + + RNA-seq time series data analysis + + + + + + + + + 1.9 + Simulate gene expression data, e.g. for purposes of benchmarking. + + + Simulated gene expression data generation + + + + + + + + + 1.12 + Identify semantic relations among entities and concepts within a text, using text mining techniques. + Relation discovery + Relation inference + Relationship discovery + Relationship extraction + Relationship inference + + + Relation extraction + + + + + + + + + + + + + + + 1.12 + Re-adjust the output of mass spectrometry experiments with shifted ppm values. + + + Mass spectra calibration + + + + + + + + + + + + + + + 1.12 + Align multiple data sets using information from chromatography and/or peptide identification, from mass spectrometry experiments. + + + Chromatographic alignment + + + + + + + + + + + + + + + 1.12 + The removal of isotope peaks in a spectrum, to represent the fragment ion as one data point. + Deconvolution + + + Deisotoping is commonly done to reduce complexity, and done in conjunction with the charge state deconvolution. + Deisotoping + + + + + + + + + + + + + + + + 1.12 + Technique for determining the amount of proteins in a sample. + Protein quantitation + + + Protein quantification + + + + + + + + + + + + + + + 1.12 + Determination of peptide sequence from mass spectrum. + Peptide-spectrum-matching + + + Peptide identification + + + + + + + + + + + + + + + + + + + + + 1.12 + Calculate the isotope distribution of a given chemical species. + + + Isotopic distributions calculation + + + + + + + + + 1.12 + Prediction of retention time in a mass spectrometry experiment based on compositional and structural properties of the separated species. + Retention time calculation + + + Retention time prediction + + + + + + + + + 1.12 + Quantification without the use of chemical tags. + + + Label-free quantification + + + + + + + + + 1.12 + Quantification based on the use of chemical tags. + + + Labeled quantification + + + + + + + + + 1.12 + Quantification by Selected/multiple Reaction Monitoring workflow (XIC quantitation of precursor / fragment mass pair). + + + MRM/SRM + + + + + + + + + 1.12 + Calculate number of identified MS2 spectra as approximation of peptide / protein quantity. + + + Spectral counting + + + + + + + + + 1.12 + Quantification analysis using stable isotope labeling by amino acids in cell culture. + + + SILAC + + + + + + + + + 1.12 + Quantification analysis using the AB SCIEX iTRAQ isobaric labelling workflow, wherein 2-8 reporter ions are measured in MS2 spectra near 114 m/z. + + + iTRAQ + + + + + + + + + 1.12 + Quantification analysis using labeling based on 18O-enriched H2O. + + + 18O labeling + + + + + + + + + 1.12 + Quantification analysis using the Thermo Fisher tandem mass tag labelling workflow. + + + TMT-tag + + + + + + + + + 1.12 + Quantification analysis using chemical labeling by stable isotope dimethylation. + + + Stable isotope dimethyl labelling + + + + + + + + + 1.12 + Peptide sequence tags are used as piece of information about a peptide obtained by tandem mass spectrometry. + + + Tag-based peptide identification + + + + + + + + + + 1.12 + Analytical process that derives a peptide's amino acid sequence from its tandem mass spectrum (MS/MS) without the assistance of a sequence database. + + + de Novo sequencing + + + + + + + + + 1.12 + Identification of post-translational modifications (PTMs) of peptides/proteins in mass spectrum. + + + PTM identification + + + + + + + + + + 1.12 + Determination of best matches between MS/MS spectrum and a database of protein or nucleic acid sequences. + + + Peptide database search + + + + + + + + + 1.12 + Peptide database search for identification of known and unknown PTMs looking for mass difference mismatches. + Modification-tolerant peptide database search + Unrestricted peptide database search + + + Blind peptide database search + + + + + + + + + 1.12 + 1.19 + + + Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search. + + + Validation of peptide-spectrum matches + true + + + + + + + + + + 1.12 + Validation of peptide-spectrum matches + Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search, and by comparison to search results with a database containing incorrect information. + + + Target-Decoy + + + + + + + + + 1.12 + Analyse data in order to deduce properties of an underlying distribution or population. + Empirical Bayes + + + Statistical inference + + + + + + + + + + 1.12 + A statistical calculation to estimate the relationships among variables. + Regression + + + Regression analysis + + + + + + + + + + + + + + + + + 1.12 + Model a metabolic network. This can include 1) reconstruction to break down a metabolic pathways into reactions, enzymes, and other relevant information, and compilation of this into a mathematical model and 2) simulations of metabolism based on the model. + + + Metabolic network reconstruction + Metabolic network simulation + Metabolic pathway simulation + Metabolic reconstruction + + + The terms and synyonyms here reflect that for practical intents and purposes, "pathway" and "network" can be treated the same. + Metabolic network modelling + + + + + + + + + + 1.12 + Predict the effect or function of an individual single nucleotide polymorphism (SNP). + + + SNP annotation + + + + + + + + + 1.12 + Prediction of genes or gene components from first principles, i.e. without reference to existing genes. + Gene prediction (ab-initio) + + + Ab-initio gene prediction + + + + + + + + + + 1.12 + Prediction of genes or gene components by reference to homologous genes. + Empirical gene finding + Empirical gene prediction + Evidence-based gene prediction + Gene prediction (homology-based) + Similarity-based gene prediction + Homology prediction + Orthology prediction + + + Homology-based gene prediction + + + + + + + + + + 1.12 + Construction of a statistical model, or a set of assumptions around some observed data, usually by describing a set of probability distributions which approximate the distribution of data. + + + Statistical modelling + + + + + + + + + + + 1.12 + Compare two or more molecular surfaces. + + + Molecular surface comparison + + + + + + + + + 1.12 + Annotate one or more sequences with functional information, such as cellular processes or metaobolic pathways, by reference to a controlled vocabulary - invariably the Gene Ontology (GO). + Sequence functional annotation + + + Gene functional annotation + + + + + + + + + 1.12 + Variant filtering is used to eliminate false positive variants based for example on base calling quality, strand and position information, and mapping info. + + + Variant filtering + + + + + + + + + 1.12 + Identify binding sites in nucleic acid sequences that are statistically significantly differentially bound between sample groups. + + + Differential binding analysis + + + + + + + + + + 1.13 + Analyze data from RNA-seq experiments. + + + RNA-Seq analysis + + + + + + + + + 1.13 + Visualise, format or render a mass spectrum. + + + Mass spectrum visualisation + + + + + + + + + 1.13 + Filter a set of files or data items according to some property. + Sequence filtering + rRNA filtering + + + Filtering + + + + + + + + + 1.14 + Identification of the best reference for mapping for a specific dataset from a list of potential references, when performing genetic variation analysis. + + + Reference identification + + + + + + + + + 1.14 + Label-free quantification by integration of ion current (ion counting). + Ion current integration + + + Ion counting + + + + + + + + + 1.14 + Chemical tagging free amino groups of intact proteins with stable isotopes. + ICPL + + + Isotope-coded protein label + + + + + + + + + 1.14 + Labeling all proteins and (possibly) all amino acids using C-13 or N-15 enriched grown medium or feed. + C-13 metabolic labeling + N-15 metabolic labeling + + + This includes N-15 metabolic labeling (labeling all proteins and (possibly) all amino acids using N-15 enriched grown medium or feed) and C-13 metabolic labeling (labeling all proteins and (possibly) all amino acids using C-13 enriched grown medium or feed). + Metabolic labeling + + + + + + + + + 1.15 + Construction of a single sequence assembly of all reads from different samples, typically as part of a comparative metagenomic analysis. + Sequence assembly (cross-assembly) + + + Cross-assembly + + + + + + + + + 1.15 + The comparison of samples from a metagenomics study, for example, by comparison of metagenome shotgun reads or assembled contig sequences, by comparison of functional profiles, or some other method. + + + Sample comparison + + + + + + + + + + 1.15 + Differential protein analysis + The analysis, using proteomics techniques, to identify proteins whose encoding genes are differentially expressed under a given experimental setup. + Differential protein expression analysis + + + Differential protein expression profiling + + + + + + + + + 1.15 + 1.17 + + The analysis, using any of diverse techniques, to identify genes that are differentially expressed under a given experimental setup. + + + Differential gene expression analysis + true + + + + + + + + + 1.15 + Visualise, format or render data arising from an analysis of multiple samples from a metagenomics/community experiment. + + + Multiple sample visualisation + + + + + + + + + 1.15 + The extrapolation of empirical characteristics of individuals or populations, backwards in time, to their common ancestors. + Ancestral sequence reconstruction + Character mapping + Character optimisation + + + Ancestral reconstruction is often used to recover possible ancestral character states of ancient, extinct organisms. + Ancestral reconstruction + + + + + + + + + 1.16 + Site localisation of post-translational modifications in peptide or protein mass spectra. + PTM scoring + Site localisation + + + PTM localisation + + + + + + + + + 1.16 + Operations concerning the handling and use of other tools. + Endpoint management + + + Service management + + + + + + + + + 1.16 + An operation supporting the browsing or discovery of other tools and services. + + + Service discovery + + + + + + + + + 1.16 + An operation supporting the aggregation of other services (at least two) into a functional unit, for the automation of some task. + + + Service composition + + + + + + + + + 1.16 + An operation supporting the calling (invocation) of other tools and services. + + + Service invocation + + + + + + + + + + + + + + + 1.16 + A data mining method typically used for studying biological networks based on pairwise correlations between variables. + WGCNA + Weighted gene co-expression network analysis + + + Weighted correlation network analysis + + + + + + + + + + + + + + + + 1.16 + Identification of protein, for example from one or more peptide identifications by tandem mass spectrometry. + Protein inference + + + Protein identification + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + Text annotation is the operation of adding notes, data and metadata, recognised entities and concepts, and their relations to a text (such as a scientific article). + Article annotation + Literature annotation + + + Text annotation + + + + + + + + + + 1.17 + A method whereby data on several variants are "collapsed" into a single covariate based on regions such as genes. + + + Genome-wide association studies (GWAS) analyse a genome-wide set of genetic variants in different individuals to see if any variant is associated with a trait. Traditional association techniques can lack the power to detect the significance of rare variants individually, or measure their compound effect (rare variant burden). "Collapsing methods" were developed to overcome these problems. + Collapsing methods + + + + + + + + + 1.17 + miRNA analysis + The analysis of microRNAs (miRNAs) : short, highly conserved small noncoding RNA molecules that are naturally occurring plant and animal genomes. + miRNA expression profiling + + + miRNA expression analysis + + + + + + + + + 1.17 + Counting and summarising the number of short sequence reads that map to genomic features. + + + Read summarisation + + + + + + + + + 1.17 + A technique whereby molecules with desired properties and function are isolated from libraries of random molecules, through iterative cycles of selection, amplification, and mutagenesis. + + + In vitro selection + + + + + + + + + 1.17 + The calculation of species richness for a number of individual samples, based on plots of the number of species as a function of the number of samples (rarefaction curves). + Species richness assessment + + + Rarefaction + + + + + + + + + + 1.17 + An operation which groups reads or contigs and assigns them to operational taxonomic units. + Binning + Binning shotgun reads + + + Binning methods use one or a combination of compositional features or sequence similarity. + Read binning + + + + + + + + + + 1.17 + true + Counting and measuring experimentally determined observations into quantities. + Quantitation + + + Quantification + + + + + + + + + 1.17 + Quantification of data arising from RNA-Seq high-throughput sequencing, typically the quantification of transcript abundances durnig transcriptome analysis in a gene expression study. + RNA-Seq quantitation + + + RNA-Seq quantification + + + + + + + + + + + + + + + 1.17 + Match experimentally measured mass spectrum to a spectrum in a spectral library or database. + + + Spectral library search + + + + + + + + + 1.17 + Sort a set of files or data items according to some property. + + + Sorting + + + + + + + + + 1.17 + Mass spectra identification of compounds that are produced by living systems. Including polyketides, terpenoids, phenylpropanoids, alkaloids and antibiotics. + De novo metabolite identification + Fragmenation tree generation + Metabolite identification + + + Natural product identification + + + + + + + + + 1.19 + Identify and assess specific genes or regulatory regions of interest that are differentially methylated. + Differentially-methylated region identification + + + DMR identification + + + + + + + + + 1.21 + + + Genotyping of multiple loci, typically characterizing microbial species isolates using internal fragments of multiple housekeeping genes. + MLST + + + Multilocus sequence typing + + + + + + + + + + + + + + + + + 1.21 + Calculate a theoretical mass spectrometry spectra for given sequences. + Spectrum prediction + + + Spectrum calculation + + + + + + + + + + + + + + + 1.22 + 3D visualization of a molecular trajectory. + + + Trajectory visualization + + + + + + + + + + 1.22 + Compute Essential Dynamics (ED) on a simulation trajectory: an analysis of molecule dynamics using PCA (Principal Component Analysis) applied to the atomic positional fluctuations. + ED + PCA + Principal modes + + + Principal Component Analysis (PCA) is a multivariate statistical analysis to obtain collective variables and reduce the dimensionality of the system. + Essential dynamics + + + + + + + + + + + + + + + + + + + + + 1.22 + Obtain force field parameters (charge, bonds, dihedrals, etc.) from a molecule, to be used in molecular simulations. + Ligand parameterization + Molecule parameterization + + + Forcefield parameterisation + + + + + + + + + 1.22 + Analyse DNA sequences in order to determine an individual's DNA characteristics, for example in criminal forensics, parentage testing and so on. + DNA fingerprinting + DNA profiling + + + + + + + + + + 1.22 + Predict or detect active sites in proteins; the region of an enzyme which binds a substrate bind and catalyses a reaction. + Active site detection + + + Active site prediction + + + + + + + + + + 1.22 + Predict or detect ligand-binding sites in proteins; a region of a protein which reversibly binds a ligand for some biochemical purpose, such as transport or regulation of protein function. + Ligand-binding site detection + Peptide-protein binding prediction + + + Ligand-binding site prediction + + + + + + + + + + 1.22 + Predict or detect metal ion-binding sites in proteins. + Metal-binding site detection + Protein metal-binding site prediction + + + Metal-binding site prediction + + + + + + + + + + + + + + + + + + + + + + 1.22 + Model or simulate protein-protein binding using comparative modelling or other techniques. + Protein docking + + + Protein-protein docking + + + + + + + + + + + + + + + + + + + + + 1.22 + Predict DNA-binding proteins. + DNA-binding protein detection + DNA-protein interaction prediction + Protein-DNA interaction prediction + + + DNA-binding protein prediction + + + + + + + + + + + + + + + + + + + + + 1.22 + Predict RNA-binding proteins. + Protein-RNA interaction prediction + RNA-binding protein detection + RNA-protein interaction prediction + + + RNA-binding protein prediction + + + + + + + + + 1.22 + Predict or detect RNA-binding sites in protein sequences. + Protein-RNA binding site detection + Protein-RNA binding site prediction + RNA binding site detection + + + RNA binding site prediction + + + + + + + + + 1.22 + Predict or detect DNA-binding sites in protein sequences. + Protein-DNA binding site detection + Protein-DNA binding site prediction + DNA binding site detection + + + DNA binding site prediction + + + + + + + + + + + + + + + + 1.22 + Identify or predict intrinsically disordered regions in proteins. + + + Protein disorder prediction + + + + + + + + + + 1.22 + Extract structured information from unstructured ("free") or semi-structured textual documents. + IE + + + Information extraction + + + + + + + + + + 1.22 + Retrieve resources from information systems matching a specific information need. + + + Information retrieval + + + + + + + + + + + + + + + 1.24 + Study of genomic feature structure, variation, function and evolution at a genomic scale. + Genomic analysis + Genome analysis + + + + + + + + + 1.24 + The determination of cytosine methylation status of specific positions in a nucleic acid sequences (usually reads from a bisulfite sequencing experiment). + + + Methylation calling + + + + + + + + + + + + + + + 1.24 + The identification of changes in DNA sequence or chromosome structure, usually in the context of diagnostic tests for disease, or to study ancestry or phylogeny. + Genetic testing + + + This can include indirect methods which reveal the results of genetic changes, such as RNA analysis to indicate gene expression, or biochemical analysis to identify expressed proteins. + DNA testing + + + + + + + + + + 1.24 + The processing of reads from high-throughput sequencing machines. + + + Sequence read processing + + + + + + + + + + + + + + + + 1.24 + Render (visualise) a network - typically a biological network of some sort. + Network rendering + Protein interaction network rendering + Protein interaction network visualisation + Network visualisation + + + + + + + + + + + + + + + + 1.24 + Render (visualise) a biological pathway. + Pathway rendering + + + Pathway visualisation + + + + + + + + + + + + + + + + + + + + + 1.24 + Generate, process or analyse a biological network. + Biological network analysis + Biological network modelling + Biological network prediction + Network comparison + Network modelling + Network prediction + Network simulation + Network topology simulation + + + Network analysis + + + + + + + + + + + + + + + + + + + + + + 1.24 + Generate, process or analyse a biological pathway. + Biological pathway analysis + Biological pathway modelling + Biological pathway prediction + Functional pathway analysis + Pathway comparison + Pathway modelling + Pathway prediction + Pathway simulation + + + Pathway analysis + + + + + + + + + + + 1.24 + Predict a metabolic pathway. + + + Metabolic pathway prediction + + + + + + + + + 1.24 + Assigning sequence reads to separate groups / files based on their index tag (sample origin). + Sequence demultiplexing + + + NGS sequence runs are often performed with multiple samples pooled together. In such cases, an index tag (or "barcode") - a unique sequence of between 6 and 12bp - is ligated to each sample's genetic material so that the sequence reads from different samples can be identified. The process of demultiplexing (dividing sequence reads into separate files for each index tag/sample) may be performed automatically by the sequencing hardware. Alternatively the reads may be lumped together in one file with barcodes still attached, requiring you to do the splitting using software. In such cases, a "mapping" file is used which indicates which barcodes correspond to which samples. + Demultiplexing + + + + + + + + + + + + + + + + + + + + + 1.24 + A process used in statistics, machine learning, and information theory that reduces the number of random variables by obtaining a set of principal variables. + Dimension reduction + + + Dimensionality reduction + + + + + + + + + + + + + + + + + + + + + + 1.24 + A dimensionality reduction process that selects a subset of relevant features (variables, predictors) for use in model construction. + Attribute selection + Variable selection + Variable subset selection + + + Feature selection + + + + + + + + + + + + + + + + + + + + + + 1.24 + A dimensionality reduction process which builds (ideally) informative and non-redundant values (features) from an initial set of measured data, to aid subsequent generalization, learning or interpretation. + Feature projection + + + Feature extraction + + + + + + + + + + + + + + + + + + + + + + 1.24 + Virtual screening is used in drug discovery to identify potential drug compounds. It involves searching libraries of small molecules in order to identify those molecules which are most likely to bind to a drug target (typically a protein receptor or enzyme). + Ligand-based screening + Ligand-based virtual screening + Structure-based screening + Structured-based virtual screening + Virtual ligand screening + + + Virtual screening is widely used for lead identification, lead optimization, and scaffold hopping during drug design and discovery. + Virtual screening + + + + + + + + + 1.24 + The application of phylogenetic and other methods to estimate paleogeographical events such as speciation. + Biogeographic dating + Speciation dating + Species tree dating + Tree-dating + + + Tree dating + + + + + + + + + + + + + + + + + + + + + + 1.24 + The development and use of mathematical models and systems analysis for the description of ecological processes, and applications such as the sustainable management of resources. + + + Ecological modelling + + + + + + + + + 1.24 + Mapping between gene tree nodes and species tree nodes or branches, to analyse and account for possible differences between gene histories and species histories, explaining this in terms of gene-scale events such as duplication, loss, transfer etc. + Gene tree / species tree reconciliation + + + Methods typically test for topological similarity between trees using for example a congruence index. + Phylogenetic tree reconciliation + + + + + + + + + 1.24 + The detection of genetic selection, or (the end result of) the process by which certain traits become more prevalent in a species than other traits. + + + Selection detection + + + + + + + + + 1.25 + A statistical procedure that uses an orthogonal transformation to convert a set of observations of possibly correlated variables into a set of values of linearly uncorrelated variables called principal components. + + + Principal component analysis + + + + + + + + + + 1.25 + Identify where sections of the genome are repeated and the number of repeats in the genome varies between individuals. + CNV detection + + + Copy number variation detection + + + + + + + + + 1.25 + Identify deletion events causing the number of repeats in the genome to vary between individuals. + + + Deletion detection + + + + + + + + + 1.25 + Identify duplication events causing the number of repeats in the genome to vary between individuals. + + + Duplication detection + + + + + + + + + 1.25 + Identify copy number variations which are complex, e.g. multi-allelic variations that have many structural alleles and have rearranged multiple times in the ancestral genomes. + + + Complex CNV detection + + + + + + + + + 1.25 + Identify amplification events causing the number of repeats in the genome to vary between individuals. + + + Amplification detection + + + + + + + + + + + + + + + + 1.25 + Predict adhesins in protein sequences. + + + An adhesin is a cell-surface component that facilitate the adherence of a microorganism to a cell or surface. They are important virulence factors during establishment of infection and thus are targeted during vaccine development approaches that seek to block adhesin function and prevent adherence to host cell. + Adhesin prediction + + + + + + + + + 1.25 + Design new protein molecules with specific structural or functional properties. + Protein redesign + Rational protein design + de novo protein design + + + Protein design + + + + + + + + + + 1.25 + The design of small molecules with specific biological activity, such as inhibitors or modulators for proteins that are of therapeutic interest. This can involve the modification of individual atoms, the addition or removal of molecular fragments, and the use reaction-based design to explore tractable synthesis options for the small molecule. + Drug design + Ligand-based drug design + Structure-based drug design + Structure-based small molecule design + Small molecule design can involve assessment of target druggability and flexibility, molecular docking, in silico fragment screening, molecular dynamics, and homology modeling. + There are two broad categories of small molecule design techniques when applied to the design of drugs: ligand-based drug design (e.g. ligand similarity) and structure-based drug design (ligand docking) methods. Ligand similarity methods exploit structural similarities to known active ligands, whereas ligand docking methods use the 3D structure of a target protein to predict the binding modes and affinities of ligands to it. + Small molecule design + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The estimation of the power of a test; that is the probability of correctly rejecting the null hypothesis when it is false. + Estimation of statistical power + Power analysis + + + Power test + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The prediction of DNA modifications (e.g. N4-methylcytosine and N6-Methyladenine) using, for example, statistical models. + + + DNA modification prediction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The analysis and simulation of disease transmission using, for example, statistical methods such as the SIR-model. + + + Disease transmission analysis + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The correction of p-values from multiple statistical tests to correct for false positives. + FDR estimation + False discovery rate estimation + + + Multiple testing correction + + + + + + + + + + beta12orEarlier + true + A category denoting a rather broad domain or field of interest, of study, application, work, data, or technology. Topics have no clearly defined borders between each other. + sumo:FieldOfStudy + + + Topic + + + + + + + + + + + + + + + + + beta12orEarlier + true + The processing and analysis of nucleic acid sequence, structural and other data. + Nucleic acid bioinformatics + Nucleic acid informatics + Nucleic_acids + Nucleic acid physicochemistry + Nucleic acid properties + + + Nucleic acids + + http://purl.bioontology.org/ontology/MSH/D017422 + http://purl.bioontology.org/ontology/MSH/D017423 + + + + + + + + + beta12orEarlier + true + Archival, processing and analysis of protein data, typically molecular sequence and structural data. + Protein bioinformatics + Protein informatics + Proteins + Protein databases + + + Proteins + + http://purl.bioontology.org/ontology/MSH/D020539 + + + + + + + + + beta12orEarlier + 1.13 + + The structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids. + + + Metabolites + true + + + + + + + + + beta12orEarlier + true + The archival, processing and analysis of molecular sequences (monomer composition of polymers) including molecular sequence data resources, sequence sites, alignments, motifs and profiles. + Sequence_analysis + Biological sequences + Sequence databases + + + + Sequence analysis + + http://purl.bioontology.org/ontology/MSH/D017421 + + + + + + + + + beta12orEarlier + true + The curation, processing, analysis and prediction of data about the structure of biological molecules, typically proteins and nucleic acids and other macromolecules. + Biomolecular structure + Structural bioinformatics + Structure_analysis + Computational structural biology + Molecular structure + Structure data resources + Structure databases + Structures + + + + This includes related concepts such as structural properties, alignments and structural motifs. + Structure analysis + + http://purl.bioontology.org/ontology/MSH/D015394 + + + + + + + + + beta12orEarlier + true + The prediction of molecular structure, including the prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features, and the folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations. + Structure_prediction + DNA structure prediction + Nucleic acid design + Nucleic acid folding + Nucleic acid structure prediction + Protein fold recognition + Protein structure prediction + RNA structure prediction + + + This includes the recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s), for example by threading, or the alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment). + Structure prediction + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + The alignment (equivalence between sites) of molecular sequences, structures or profiles (representing a sequence or structure alignment). + + Alignment + true + + + + + + + + + + beta12orEarlier + true + The study of evolutionary relationships amongst organisms. + Phylogeny + Phylogenetic clocks + Phylogenetic dating + Phylogenetic simulation + Phylogenetic stratigraphy + Phylogeny reconstruction + + + + This includes diverse phylogenetic methods, including phylogenetic tree construction, typically from molecular sequence or morphological data, methods that simulate DNA sequence evolution, a phylogenetic tree or the underlying data, or which estimate or use molecular clock and stratigraphic (age) data, methods for studying gene evolution etc. + Phylogeny + + http://purl.bioontology.org/ontology/MSH/D010802 + + + + + + + + + + beta12orEarlier + true + The study of gene or protein functions and their interactions in totality in a given organism, tissue, cell etc. + Functional_genomics + + + + Functional genomics + + + + + + + + + + beta12orEarlier + true + The conceptualisation, categorisation and nomenclature (naming) of entities or phenomena within biology or bioinformatics. This includes formal ontologies, controlled vocabularies, structured glossary, symbols and terminology or other related resource. + Ontology_and_terminology + Applied ontology + Ontologies + Ontology + Ontology relations + Terminology + Upper ontology + + + + Ontology and terminology + + http://purl.bioontology.org/ontology/MSH/D002965 + + + + + + + + + beta12orEarlier + 1.13 + + + + The search and query of data sources (typically databases or ontologies) in order to retrieve entries or other information. + + Information retrieval + true + + + + + + + + + beta12orEarlier + true + VT 1.5.6 Bioinformatics + The archival, curation, processing and analysis of complex biological data. + Bioinformatics + + + + This includes data processing in general, including basic handling of files and databases, datatypes, workflows and annotation. + Bioinformatics + + http://purl.bioontology.org/ontology/MSH/D016247 + + + + + + + + + beta12orEarlier + true + Computer graphics + VT 1.2.5 Computer graphics + Rendering (drawing on a computer screen) or visualisation of molecular sequences, structures or other biomolecular data. + Data rendering + Data_visualisation + + + Data visualisation + + + + + + + + + + beta12orEarlier + 1.3 + + + The study of the thermodynamic properties of a nucleic acid. + + Nucleic acid thermodynamics + true + + + + + + + + + + beta12orEarlier + The archival, curation, processing and analysis of nucleic acid structural information, such as whole structures, structural features and alignments, and associated annotation. + Nucleic acid structure + Nucleic_acid_structure_analysis + DNA melting + DNA structure + Nucleic acid denaturation + Nucleic acid thermodynamics + RNA alignment + RNA structure + RNA structure alignment + + + Includes secondary and tertiary nucleic acid structural data, nucleic acid thermodynamic, thermal and conformational properties including DNA or DNA/RNA denaturation (melting) etc. + Nucleic acid structure analysis + + + + + + + + + + beta12orEarlier + RNA sequences and structures. + RNA + Small RNA + + + RNA + + + + + + + + + + beta12orEarlier + 1.3 + + + Topic for the study of restriction enzymes, their cleavage sites and the restriction of nucleic acids. + + Nucleic acid restriction + true + + + + + + + + + beta12orEarlier + true + The mapping of complete (typically nucleotide) sequences. Mapping (in the sense of short read alignment, or more generally, just alignment) has application in RNA-Seq analysis (mapping of transcriptomics reads), variant discovery (e.g. mapping of exome capture), and re-sequencing (mapping of WGS reads). + Mapping + Genetic linkage + Linkage + Linkage mapping + Synteny + + + This includes resources that aim to identify, map or analyse genetic markers in DNA sequences, for example to produce a genetic (linkage) map of a chromosome or genome or to analyse genetic linkage and synteny. It also includes resources for physical (sequence) maps of a DNA sequence showing the physical distance (base pairs) between features or landmarks such as restriction sites, cloned DNA fragments, genes and other genetic markers. It also covers for example the alignment of sequences of (typically millions) of short reads to a reference genome. + Mapping + + + + + + + + + + beta12orEarlier + 1.3 + + + The study of codon usage in nucleotide sequence(s), genetic codes and so on. + + Genetic codes and codon usage + true + + + + + + + + + beta12orEarlier + The translation of mRNA into protein and subsequent protein processing in the cell. + Protein_expression + Translation + + + + Protein expression + + + + + + + + + + beta12orEarlier + 1.3 + + + Methods that aims to identify, predict, model or analyse genes or gene structure in DNA sequences. + + This includes the study of promoters, coding regions, splice sites, etc. Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc. + Gene finding + true + + + + + + + + + beta12orEarlier + 1.3 + + + The transcription of DNA into mRNA. + + Transcription + true + + + + + + + + + beta12orEarlier + beta13 + + + Promoters in DNA sequences (region of DNA that facilitates the transcription of a particular gene by binding RNA polymerase and transcription factor proteins). + + Promoters + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + The folding (in 3D space) of nucleic acid molecules. + + + Nucleic acid folding + true + + + + + + + + + beta12orEarlier + true + Gene structure, regions which make an RNA product and features such as promoters, coding regions, gene fusion, splice sites etc. + Gene features + Gene_structure + Fusion genes + + + This includes operons (operators, promoters and genes) from a bacterial genome. For example the operon leader and trailer gene, gene composition of the operon and associated information. + This includes the study of promoters, coding regions etc. + Gene structure + + + + + + + + + + beta12orEarlier + true + Protein and peptide identification, especially in the study of whole proteomes of organisms. + Proteomics + Bottom-up proteomics + Discovery proteomics + MS-based targeted proteomics + MS-based untargeted proteomics + Metaproteomics + Peptide identification + Protein and peptide identification + Quantitative proteomics + Targeted proteomics + Top-down proteomics + + + + Includes metaproteomics: proteomics analysis of an environmental sample. + Proteomics includes any methods (especially high-throughput) that separate, characterize and identify expressed proteins such as mass spectrometry, two-dimensional gel electrophoresis and protein microarrays, as well as in-silico methods that perform proteolytic or mass calculations on a protein sequence and other analyses of protein production data, for example in different cells or tissues. + Proteomics + + http://purl.bioontology.org/ontology/MSH/D040901 + + + + + + + + + + beta12orEarlier + true + The elucidation of the three dimensional structure for all (available) proteins in a given organism. + Structural_genomics + + + + Structural genomics + + + + + + + + + + beta12orEarlier + true + The study of the physical and biochemical properties of peptides and proteins, for example the hydrophobic, hydrophilic and charge properties of a protein. + Protein physicochemistry + Protein_properties + Protein hydropathy + + + Protein properties + + + + + + + + + + beta12orEarlier + true + Protein-protein, protein-DNA/RNA and protein-ligand interactions, including analysis of known interactions and prediction of putative interactions. + Protein_interactions + Protein interaction map + Protein interaction networks + Protein interactome + Protein-DNA interaction + Protein-DNA interactions + Protein-RNA interaction + Protein-RNA interactions + Protein-ligand interactions + Protein-nucleic acid interactions + Protein-protein interactions + + + This includes experimental (e.g. yeast two-hybrid) and computational analysis techniques. + Protein interactions + + + + + + + + + + beta12orEarlier + true + Protein stability, folding (in 3D space) and protein sequence-structure-function relationships. This includes for example study of inter-atomic or inter-residue interactions in protein (3D) structures, the effect of mutation, and the design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein. + Protein_folding_stability_and_design + Protein design + Protein folding + Protein residue interactions + Protein stability + Rational protein design + + + Protein folding, stability and design + + + + + + + + + + + beta12orEarlier + beta13 + + + Two-dimensional gel electrophoresis image and related data. + + Two-dimensional gel electrophoresis + true + + + + + + + + + beta12orEarlier + 1.13 + + An analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase. + + + Mass spectrometry + true + + + + + + + + + beta12orEarlier + beta13 + + + Protein microarray data. + + Protein microarrays + true + + + + + + + + + beta12orEarlier + 1.3 + + + The study of the hydrophobic, hydrophilic and charge properties of a protein. + + Protein hydropathy + true + + + + + + + + + beta12orEarlier + The study of how proteins are transported within and without the cell, including signal peptides, protein subcellular localisation and export. + Protein_targeting_and_localisation + Protein localisation + Protein sorting + Protein targeting + + + Protein targeting and localisation + + + + + + + + + + beta12orEarlier + 1.3 + + + Enzyme or chemical cleavage sites and proteolytic or mass calculations on a protein sequence. + + Protein cleavage sites and proteolysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + The comparison of two or more protein structures. + + + Use this concept for methods that are exclusively for protein structure. + Protein structure comparison + true + + + + + + + + + beta12orEarlier + 1.3 + + + The processing and analysis of inter-atomic or inter-residue interactions in protein (3D) structures. + + Protein residue interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein-protein interactions, individual interactions and networks, protein complexes, protein functional coupling etc. + + Protein-protein interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein-ligand (small molecule) interactions. + + Protein-ligand interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein-DNA/RNA interactions. + + Protein-nucleic acid interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + The design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein. + + Protein design + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + G-protein coupled receptors (GPCRs). + + G protein-coupled receptors (GPCR) + true + + + + + + + + + beta12orEarlier + true + Carbohydrates, typically including structural information. + Carbohydrates + + + Carbohydrates + + + + + + + + + + beta12orEarlier + true + Lipids and their structures. + Lipidomics + Lipids + + + Lipids + + + + + + + + + + beta12orEarlier + true + Small molecules of biological significance, typically archival, curation, processing and analysis of structural information. + Small_molecules + Amino acids + Chemical structures + Drug structures + Drug targets + Drugs and target structures + Metabolite structures + Peptides + Peptides and amino acids + Target structures + Targets + Toxins + Toxins and targets + CHEBI:23367 + + + Small molecules include organic molecules, metal-organic compounds, small polypeptides, small polysaccharides and oligonucleotides. Structural data is usually included. + This concept excludes macromolecules such as proteins and nucleic acids. + This includes the structures of drugs, drug target, their interactions and binding affinities. Also the structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids. Also the physicochemical, biochemical or structural properties of amino acids or peptides. Also structural and associated data for toxic chemical substances. + Small molecules + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Edit, convert or otherwise change a molecular sequence, either randomly or specifically. + + Sequence editing + true + + + + + + + + + beta12orEarlier + true + The archival, processing and analysis of the basic character composition of molecular sequences, for example character or word frequency, ambiguity, complexity, particularly regions of low complexity, and repeats or the repetitive nature of molecular sequences. + Sequence_composition_complexity_and_repeats + Low complexity sequences + Nucleic acid repeats + Protein repeats + Protein sequence repeats + Repeat sequences + Sequence complexity + Sequence composition + Sequence repeats + + + This includes repetitive elements within a nucleic acid sequence, e.g. long terminal repeats (LTRs); sequences (typically retroviral) directly repeated at both ends of a sequence and other types of repeating unit. + This includes short repetitive subsequences (repeat sequences) in a protein sequence. + Sequence composition, complexity and repeats + + + + + + + + + beta12orEarlier + 1.3 + + + Conserved patterns (motifs) in molecular sequences, that (typically) describe functional or other key sites. + + Sequence motifs + true + + + + + + + + + beta12orEarlier + 1.12 + + The comparison of two or more molecular sequences, for example sequence alignment and clustering. + + + The comparison might be on the basis of sequence, physico-chemical or some other properties of the sequences. + Sequence comparison + true + + + + + + + + + beta12orEarlier + true + The archival, detection, prediction and analysis of positional features such as functional and other key sites, in molecular sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them. + Sequence_sites_features_and_motifs + Functional sites + HMMs + Sequence features + Sequence motifs + Sequence profiles + Sequence sites + + + Sequence sites, features and motifs + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Search and retrieve molecular sequences that are similar to a sequence-based query (typically a simple sequence). + + The query is a sequence-based entity such as another sequence, a motif or profile. + Sequence database search + true + + + + + + + + + beta12orEarlier + 1.7 + + The comparison and grouping together of molecular sequences on the basis of their similarities. + + + This includes systems that generate, process and analyse sequence clusters. + Sequence clustering + true + + + + + + + + + beta12orEarlier + true + Structural features or common 3D motifs within protein structures, including the surface of a protein structure, such as biological interfaces with other molecules. + Protein 3D motifs + Protein_structural_motifs_and_surfaces + Protein structural features + Protein structural motifs + Protein surfaces + Structural motifs + + + This includes conformation of conserved substructures, conserved geometry (spatial arrangement) of secondary structure or protein backbone, solvent-exposed surfaces, internal cavities, the analysis of shape, hydropathy, electrostatic patches, role and functions etc. + Protein structural motifs and surfaces + + + + + + + + + + beta12orEarlier + 1.3 + + + The processing, analysis or use of some type of structural (3D) profile or template; a computational entity (typically a numerical matrix) that is derived from and represents a structure or structure alignment. + + Structural (3D) profiles + true + + + + + + + + + beta12orEarlier + 1.12 + + The prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features. + + + Protein structure prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + The folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations. + + + Nucleic acid structure prediction + true + + + + + + + + + beta12orEarlier + 1.7 + + The prediction of three-dimensional structure of a (typically protein) sequence from first principles, using a physics-based or empirical scoring function and without using explicit structural templates. + + + Ab initio structure prediction + true + + + + + + + + + beta12orEarlier + 1.4 + + + The modelling of the three-dimensional structure of a protein using known sequence and structural data. + + Homology modelling + true + + + + + + + + + + beta12orEarlier + true + Molecular flexibility + Molecular motions + The study and simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation. + Molecular_dynamics + Protein dynamics + + + This includes methods such as Molecular Dynamics, Coarse-grained dynamics, metadynamics, Quantum Mechanics, QM/MM, Markov State Models, etc. This includes resources concerning flexibility and motion in protein and other molecular structures. + Molecular dynamics + + + + + + + + + + beta12orEarlier + true + 1.12 + + The modelling the structure of proteins in complex with small molecules or other macromolecules. + + + Molecular docking + true + + + + + + + + + beta12orEarlier + 1.3 + + The prediction of secondary or supersecondary structure of protein sequences. + + + Protein secondary structure prediction + true + + + + + + + + + beta12orEarlier + 1.3 + + The prediction of tertiary structure of protein sequences. + + + Protein tertiary structure prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + The recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s). + + + Protein fold recognition + true + + + + + + + + + beta12orEarlier + 1.7 + + The alignment of molecular sequences or sequence profiles (representing sequence alignments). + + + This includes the generation of alignments (the identification of equivalent sites), the analysis of alignments, editing, visualisation, alignment databases, the alignment (equivalence between sites) of sequence profiles (representing sequence alignments) and so on. + Sequence alignment + true + + + + + + + + + beta12orEarlier + 1.7 + + The superimposition of molecular tertiary structures or structural (3D) profiles (representing a structure or structure alignment). + + + This includes the generation, storage, analysis, rendering etc. of structure alignments. + Structure alignment + true + + + + + + + + + beta12orEarlier + 1.3 + + The alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment). + + + Threading + true + + + + + + + + + beta12orEarlier + 1.3 + + + Sequence profiles; typically a positional, numerical matrix representing a sequence alignment. + + Sequence profiles include position-specific scoring matrix (position weight matrix), hidden Markov models etc. + Sequence profiles and HMMs + true + + + + + + + + + beta12orEarlier + 1.3 + + + The reconstruction of a phylogeny (evolutionary relatedness amongst organisms), for example, by building a phylogenetic tree. + + Currently too specific for the topic sub-ontology (but might be unobsoleted). + Phylogeny reconstruction + true + + + + + + + + + + beta12orEarlier + true + The integrated study of evolutionary relationships and whole genome data, for example, in the analysis of species trees, horizontal gene transfer and evolutionary reconstruction. + Phylogenomics + + + + Phylogenomics + + + + + + + + + + beta12orEarlier + beta13 + + + Simulated polymerase chain reaction (PCR). + + Virtual PCR + true + + + + + + + + + beta12orEarlier + true + The assembly of fragments of a DNA sequence to reconstruct the original sequence. + Sequence_assembly + Assembly + + + Assembly has two broad types, de-novo and re-sequencing. Re-sequencing is a specialised case of assembly, where an assembled (typically de-novo assembled) reference genome is available and is about 95% identical to the re-sequenced genome. All other cases of assembly are 'de-novo'. + Sequence assembly + + + + + + + + + + + beta12orEarlier + true + Stable, naturally occurring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms. + DNA variation + Genetic_variation + Genomic variation + Mutation + Polymorphism + Somatic mutations + + + Genetic variation + + http://purl.bioontology.org/ontology/MSH/D014644 + + + + + + + + + beta12orEarlier + 1.3 + + + Microarrays, for example, to process microarray data or design probes and experiments. + + Microarrays + http://purl.bioontology.org/ontology/MSH/D046228 + true + + + + + + + + + beta12orEarlier + true + VT 3.1.7 Pharmacology and pharmacy + The study of drugs and their effects or responses in living systems. + Pharmacology + Computational pharmacology + Pharmacoinformatics + + + + Pharmacology + + + + + + + + + + beta12orEarlier + true + http://edamontology.org/topic_0197 + The analysis of levels and patterns of synthesis of gene products (proteins and functional RNA) including interpretation in functional terms of gene expression data. + Expression + Gene_expression + Codon usage + DNA chips + DNA microarrays + Gene expression profiling + Gene transcription + Gene translation + Transcription + + + + Gene expression levels are analysed by identifying, quantifying or comparing mRNA transcripts, for example using microarrays, RNA-seq, northern blots, gene-indexed expression profiles etc. + This includes the study of codon usage in nucleotide sequence(s), genetic codes and so on. + Gene expression + + http://purl.bioontology.org/ontology/MSH/D015870 + + + + + + + + + beta12orEarlier + true + The regulation of gene expression. + Regulatory genomics + + + Gene regulation + + + + + + + + + + + beta12orEarlier + true + The influence of genotype on drug response, for example by correlating gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity. + Pharmacogenomics + Pharmacogenetics + + + + Pharmacogenomics + + + + + + + + + + + beta12orEarlier + true + VT 3.1.4 Medicinal chemistry + The design and chemical synthesis of bioactive molecules, for example drugs or potential drug compounds, for medicinal purposes. + Drug design + Medicinal_chemistry + + + + This includes methods that search compound collections, generate or analyse drug 3D conformations, identify drug targets with structural docking etc. + Medicinal chemistry + + + + + + + + + + beta12orEarlier + 1.3 + + + Information on a specific fish genome including molecular sequences, genes and annotation. + + Fish + true + + + + + + + + + beta12orEarlier + 1.3 + + + Information on a specific fly genome including molecular sequences, genes and annotation. + + Flies + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Information on a specific mouse or rat genome including molecular sequences, genes and annotation. + + The resource may be specific to a group of mice / rats or all mice / rats. + Mice or rats + true + + + + + + + + + beta12orEarlier + 1.3 + + + Information on a specific worm genome including molecular sequences, genes and annotation. + + Worms + true + + + + + + + + + beta12orEarlier + 1.3 + + The processing and analysis of the bioinformatics literature and bibliographic data, such as literature search and query. + + + Literature analysis + true + + + + + + + + + + beta12orEarlier + The processing and analysis of natural language, such as scientific literature in English, in order to extract data and information, or to enable human-computer interaction. + NLP + Natural_language_processing + BioNLP + Literature mining + Text analytics + Text data mining + Text mining + + + + Natural language processing + + + + + + + + + + + + beta12orEarlier + Deposition and curation of database accessions, including annotation, typically with terms from a controlled vocabulary. + Data_submission_annotation_and_curation + Data curation + Data provenance + Database curation + + + + Data submission, annotation, and curation + + + + + + + + + beta12orEarlier + 1.13 + + The management and manipulation of digital documents, including database records, files and reports. + + + Document, record and content management + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation of a molecular sequence. + + Sequence annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + + Annotation of a genome. + + Genome annotation + true + + + + + + + + + + beta12orEarlier + Spectroscopy + An analytical technique that exploits the magenetic properties of certain atomic nuclei to provide information on the structure, dynamics, reaction state and chemical environment of molecules. + NMR spectroscopy + Nuclear magnetic resonance spectroscopy + NMR + HOESY + Heteronuclear Overhauser Effect Spectroscopy + NOESY + Nuclear Overhauser Effect Spectroscopy + ROESY + Rotational Frame Nuclear Overhauser Effect Spectroscopy + + + + NMR + + + + + + + + + + beta12orEarlier + 1.12 + + The classification of molecular sequences based on some measure of their similarity. + + + Methods including sequence motifs, profile and other diagnostic elements which (typically) represent conserved patterns (of residues or properties) in molecular sequences. + Sequence classification + true + + + + + + + + + beta12orEarlier + 1.3 + + + primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc. + + Protein classification + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Sequence motifs, or sequence profiles derived from an alignment of molecular sequences of a particular type. + + This includes comparison, discovery, recognition etc. of sequence motifs. + Sequence motif or profile + true + + + + + + + + + beta12orEarlier + true + Protein chemical modifications, e.g. post-translational modifications. + PTMs + Post-translational modifications + Protein post-translational modification + Protein_modifications + Post-translation modifications + Protein chemical modifications + Protein post-translational modifications + GO:0006464 + MOD:00000 + + + EDAM does not describe all possible protein modifications. For fine-grained annotation of protein modification use the Gene Ontology (children of concept GO:0006464) and/or the Protein Modifications ontology (children of concept MOD:00000) + Protein modifications + + + + + + + + + + beta12orEarlier + true + http://edamontology.org/topic_3076 + Molecular interactions, biological pathways, networks and other models. + Molecular_interactions_pathways_and_networks + Biological models + Biological networks + Biological pathways + Cellular process pathways + Disease pathways + Environmental information processing pathways + Gene regulatory networks + Genetic information processing pathways + Interactions + Interactome + Metabolic pathways + Molecular interactions + Networks + Pathways + Signal transduction pathways + Signaling pathways + + + + Molecular interactions, pathways and networks + + + + + + + + + + + beta12orEarlier + true + VT 1.3 Information sciences + VT 1.3.3 Information retrieval + VT 1.3.4 Information management + VT 1.3.5 Knowledge management + VT 1.3.99 Other + The study and practice of information processing and use of computer information systems. + Information management + Information science + Knowledge management + Informatics + + + Informatics + + + + + + + + + + beta12orEarlier + 1.3 + + Data resources for the biological or biomedical literature, either a primary source of literature or some derivative. + + + Literature data resources + true + + + + + + + + + beta12orEarlier + true + Laboratory management and resources, for example, catalogues of biological resources for use in the lab including cell lines, viruses, plasmids, phages, DNA probes and primers and so on. + Laboratory_Information_management + Laboratory resources + + + + Laboratory information management + + + + + + + + + + beta12orEarlier + 1.3 + + + General cell culture or data on a specific cell lines. + + Cell and tissue culture + true + + + + + + + + + + beta12orEarlier + true + VT 1.5.15 Ecology + The ecological and environmental sciences and especially the application of information technology (ecoinformatics). + Ecology + Computational ecology + Ecoinformatics + Ecological informatics + Ecosystem science + + + + Ecology + + http://purl.bioontology.org/ontology/MSH/D004777 + + + + + + + + + + beta12orEarlier + Electron diffraction experiment + The study of matter by studying the interference pattern from firing electrons at a sample, to analyse structures at resolutions higher than can be achieved using light. + Electron_microscopy + Electron crystallography + SEM + Scanning electron microscopy + Single particle electron microscopy + TEM + Transmission electron microscopy + + + + Electron microscopy + + + + + + + + + + beta12orEarlier + beta13 + + + The cell cycle including key genes and proteins. + + Cell cycle + true + + + + + + + + + beta12orEarlier + 1.13 + + The physicochemical, biochemical or structural properties of amino acids or peptides. + + + Peptides and amino acids + true + + + + + + + + + beta12orEarlier + 1.3 + + + A specific organelle, or organelles in general, typically the genes and proteins (or genome and proteome). + + Organelles + true + + + + + + + + + beta12orEarlier + 1.3 + + + Ribosomes, typically of ribosome-related genes and proteins. + + Ribosomes + true + + + + + + + + + beta12orEarlier + beta13 + + + A database about scents. + + Scents + true + + + + + + + + + beta12orEarlier + 1.13 + + The structures of drugs, drug target, their interactions and binding affinities. + + + Drugs and target structures + true + + + + + + + + + beta12orEarlier + true + A specific organism, or group of organisms, used to study a particular aspect of biology. + Organisms + Model_organisms + + + + This may include information on the genome (including molecular sequences and map, genes and annotation), proteome, as well as more general information about an organism. + Model organisms + + + + + + + + + + beta12orEarlier + true + Whole genomes of one or more organisms, or genomes in general, such as meta-information on genomes, genome projects, gene names etc. + Genomics + Exomes + Genome annotation + Genomes + Personal genomics + Synthetic genomics + Viral genomics + Whole genomes + + + + Genomics + + http://purl.bioontology.org/ontology/MSH/D023281 + + + + + + + + + + beta12orEarlier + true + Particular gene(s), gene family or other gene group or system and their encoded proteins.Primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc., curation of a particular protein or protein family, or any other proteins that have been classified as members of a common group. + Genes, gene family or system + Gene_and protein_families + Gene families + Gene family + Gene system + Protein families + Protein sequence classification + + + + A protein families database might include the classifier (e.g. a sequence profile) used to build the classification. + Gene and protein families + + + + + + + + + + + beta12orEarlier + 1.13 + + Study of chromosomes. + + + Chromosomes + true + + + + + + + + + beta12orEarlier + true + The study of genetic constitution of a living entity, such as an individual, and organism, a cell and so on, typically with respect to a particular observable phenotypic traits, or resources concerning such traits, which might be an aspect of biochemistry, physiology, morphology, anatomy, development and so on. + Genotype and phenotype resources + Genotype-phenotype + Genotype-phenotype analysis + Genotype_and_phenotype + Genotype + Genotyping + Phenotype + Phenotyping + + + + Genotype and phenotype + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Gene expression e.g. microarray data, northern blots, gene-indexed expression profiles etc. + + Gene expression and microarray + true + + + + + + + + + beta12orEarlier + true + Molecular probes (e.g. a peptide probe or DNA microarray probe) or PCR primers and hybridisation oligos in a nucleic acid sequence. + Probes_and_primers + Primer quality + Primers + Probes + + + This includes the design of primers for PCR and DNA amplification or the design of molecular probes. + Probes and primers + http://purl.bioontology.org/ontology/MSH/D015335 + + + + + + + + + beta12orEarlier + true + VT 3.1.6 Pathology + Diseases, including diseases in general and the genes, gene variations and proteins involved in one or more specific diseases. + Disease + Pathology + + + + Pathology + + + + + + + + + + beta12orEarlier + 1.3 + + + A particular protein, protein family or other group of proteins. + + Specific protein resources + true + + + + + + + + + beta12orEarlier + true + VT 1.5.25 Taxonomy + Organism classification, identification and naming. + Taxonomy + + + Taxonomy + + + + + + + + + + beta12orEarlier + 1.8 + + Archival, processing and analysis of protein sequences and sequence-based entities such as alignments, motifs and profiles. + + + Protein sequence analysis + true + + + + + + + + + beta12orEarlier + 1.8 + + The archival, processing and analysis of nucleotide sequences and and sequence-based entities such as alignments, motifs and profiles. + + + Nucleic acid sequence analysis + true + + + + + + + + + beta12orEarlier + 1.3 + + + The repetitive nature of molecular sequences. + + Repeat sequences + true + + + + + + + + + beta12orEarlier + 1.3 + + + The (character) complexity of molecular sequences, particularly regions of low complexity. + + Low complexity sequences + true + + + + + + + + + beta12orEarlier + beta13 + + + A specific proteome including protein sequences and annotation. + + Proteome + true + + + + + + + + + beta12orEarlier + DNA sequences and structure, including processes such as methylation and replication. + DNA analysis + DNA + Ancient DNA + Chromosomes + + + The DNA sequences might be coding or non-coding sequences. + DNA + + + + + + + + + + beta12orEarlier + 1.13 + + Protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. + + + Coding RNA + true + + + + + + + + + + beta12orEarlier + true + Non-coding or functional RNA sequences, including regulatory RNA sequences, ribosomal RNA (rRNA) and transfer RNA (tRNA). + Functional_regulatory_and_non-coding_RNA + Functional RNA + Long ncRNA + Long non-coding RNA + Non-coding RNA + Regulatory RNA + Small and long non-coding RNAs + Small interfering RNA + Small ncRNA + Small non-coding RNA + Small nuclear RNA + Small nucleolar RNA + lncRNA + miRNA + microRNA + ncRNA + piRNA + piwi-interacting RNA + siRNA + snRNA + snoRNA + + + Non-coding RNA includes piwi-interacting RNA (piRNA), small nuclear RNA (snRNA) and small nucleolar RNA (snoRNA). Regulatory RNA includes microRNA (miRNA) - short single stranded RNA molecules that regulate gene expression, and small interfering RNA (siRNA). + Functional, regulatory and non-coding RNA + + + + + + + + + + beta12orEarlier + 1.3 + + + One or more ribosomal RNA (rRNA) sequences. + + rRNA + true + + + + + + + + + beta12orEarlier + 1.3 + + + One or more transfer RNA (tRNA) sequences. + + tRNA + true + + + + + + + + + beta12orEarlier + 1.8 + + Protein secondary structure or secondary structure alignments. + + + This includes assignment, analysis, comparison, prediction, rendering etc. of secondary structure data. + Protein secondary structure + true + + + + + + + + + beta12orEarlier + 1.3 + + + RNA secondary or tertiary structure and alignments. + + RNA structure + true + + + + + + + + + beta12orEarlier + 1.8 + + Protein tertiary structures. + + + Protein tertiary structure + true + + + + + + + + + beta12orEarlier + 1.3 + + + Classification of nucleic acid sequences and structures. + + Nucleic acid classification + true + + + + + + + + + beta12orEarlier + 1.14 + + Primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc., curation of a particular protein or protein family, or any other proteins that have been classified as members of a common group. + + + Protein families + true + + + + + + + + + beta12orEarlier + true + Protein tertiary structural domains and folds in a protein or polypeptide chain. + Protein_folds_and_structural_domains + Intramembrane regions + Protein domains + Protein folds + Protein membrane regions + Protein structural domains + Protein topological domains + Protein transmembrane regions + Transmembrane regions + + + This includes topological domains such as cytoplasmic regions in a protein. + This includes trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements. For example, the location and size of the membrane spanning segments and intervening loop regions, transmembrane region IN/OUT orientation relative to the membrane, plus the following data for each amino acid: A Z-coordinate (the distance to the membrane center), the free energy of membrane insertion (calculated in a sliding window over the sequence) and a reliability score. The z-coordinate implies information about re-entrant helices, interfacial helices, the tilt of a transmembrane helix and loop lengths. + Protein folds and structural domains + + + + + + + + + + beta12orEarlier + 1.3 + + Nucleotide sequence alignments. + + + Nucleic acid sequence alignment + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein sequence alignments. + + A sequence profile typically represents a sequence alignment. + Protein sequence alignment + true + + + + + + + + + beta12orEarlier + 1.3 + + + + The archival, detection, prediction and analysis ofpositional features such as functional sites in nucleotide sequences. + + Nucleic acid sites and features + true + + + + + + + + + beta12orEarlier + 1.3 + + + + The detection, identification and analysis of positional features in proteins, such as functional sites. + + Protein sites and features + true + + + + + + + + + + + beta12orEarlier + Proteins that bind to DNA and control transcription of DNA to mRNA (transcription factors) and also transcriptional regulatory sites, elements and regions (such as promoters, enhancers, silencers and boundary elements / insulators) in nucleotide sequences. + Transcription_factors_and_regulatory_sites + -10 signals + -35 signals + Attenuators + CAAT signals + CAT box + CCAAT box + CpG islands + Enhancers + GC signals + Isochores + Promoters + TATA signals + TFBS + Terminators + Transcription factor binding sites + Transcription factors + Transcriptional regulatory sites + + + This includes CpG rich regions (isochores) in a nucleotide sequence. + This includes promoters, CAAT signals, TATA signals, -35 signals, -10 signals, GC signals, primer binding sites for initiation of transcription or reverse transcription, enhancer, attenuator, terminators and ribosome binding sites. + Transcription factor proteins either promote (as an activator) or block (as a repressor) the binding to DNA of RNA polymerase. Regulatory sites including transcription factor binding site as well as promoters, enhancers, silencers and boundary elements / insulators. + Transcription factors and regulatory sites + + + + + + + + + + + beta12orEarlier + 1.0 + + + + Protein phosphorylation and phosphorylation sites in protein sequences. + + Phosphorylation sites + true + + + + + + + + + beta12orEarlier + 1.13 + + Metabolic pathways. + + + Metabolic pathways + true + + + + + + + + + beta12orEarlier + 1.13 + + Signaling pathways. + + + Signaling pathways + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein and peptide identification. + + Protein and peptide identification + true + + + + + + + + + beta12orEarlier + Biological or biomedical analytical workflows or pipelines. + Pipelines + Workflows + Software integration + Tool integration + Tool interoperability + + + Workflows + + + + + + + + + + beta12orEarlier + 1.0 + + + Structuring data into basic types and (computational) objects. + + Data types and objects + true + + + + + + + + + beta12orEarlier + 1.3 + + + Theoretical biology. + + Theoretical biology + true + + + + + + + + + beta12orEarlier + 1.3 + + + Mitochondria, typically of mitochondrial genes and proteins. + + Mitochondria + true + + + + + + + + + beta12orEarlier + VT 1.5.10 Botany + VT 1.5.22 Plant science + Plants, e.g. information on a specific plant genome including molecular sequences, genes and annotation. + Botany + Plant + Plant science + Plants + Plant_biology + Plant anatomy + Plant cell biology + Plant ecology + Plant genetics + Plant physiology + + + The resource may be specific to a plant, a group of plants or all plants. + Plant biology + + + + + + + + + + beta12orEarlier + VT 1.5.28 + Study of viruses, e.g. sequence and structural data, interactions of viral proteins, or a viral genome including molecular sequences, genes and annotation. + Virology + + + Virology + + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Fungi and molds, e.g. information on a specific fungal genome including molecular sequences, genes and annotation. + + The resource may be specific to a fungus, a group of fungi or all fungi. + Fungi + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). Definition is wrong anyway. + 1.17 + + + Pathogens, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation. + + The resource may be specific to a pathogen, a group of pathogens or all pathogens. + Pathogens + true + + + + + + + + + beta12orEarlier + 1.3 + + + Arabidopsis-specific data. + + Arabidopsis + true + + + + + + + + + beta12orEarlier + 1.3 + + + Rice-specific data. + + Rice + true + + + + + + + + + beta12orEarlier + 1.3 + + + Informatics resources that aim to identify, map or analyse genetic markers in DNA sequences, for example to produce a genetic (linkage) map of a chromosome or genome or to analyse genetic linkage and synteny. + + Genetic mapping and linkage + true + + + + + + + + + beta12orEarlier + true + The study (typically comparison) of the sequence, structure or function of multiple genomes. + Comparative_genomics + + + + Comparative genomics + + + + + + + + + + beta12orEarlier + Mobile genetic elements, such as transposons, Plasmids, Bacteriophage elements and Group II introns. + Mobile_genetic_elements + Transposons + + + Mobile genetic elements + + + + + + + + + + beta12orEarlier + beta13 + + + Human diseases, typically describing the genes, mutations and proteins implicated in disease. + + Human disease + true + + + + + + + + + beta12orEarlier + true + VT 3.1.3 Immunology + The application of information technology to immunology such as immunological processes, immunological genes, proteins and peptide ligands, antigens and so on. + Immunology + + + + Immunology + + http://purl.bioontology.org/ontology/MSH/D007120 + http://purl.bioontology.org/ontology/MSH/D007125 + + + + + + + + + beta12orEarlier + true + Lipoproteins (protein-lipid assemblies), and proteins or region of a protein that spans or are associated with a membrane. + Membrane_and_lipoproteins + Lipoproteins + Membrane proteins + Transmembrane proteins + + + Membrane and lipoproteins + + + + + + + + + + + beta12orEarlier + true + Proteins that catalyze chemical reaction, the kinetics of enzyme-catalysed reactions, enzyme nomenclature etc. + Enzymology + Enzymes + + + Enzymes + + + + + + + + + + beta12orEarlier + 1.13 + + PCR primers and hybridisation oligos in a nucleic acid sequence. + + + Primers + true + + + + + + + + + beta12orEarlier + 1.13 + + Regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript. + + + PolyA signal or sites + true + + + + + + + + + beta12orEarlier + 1.13 + + CpG rich regions (isochores) in a nucleotide sequence. + + + CpG island and isochores + true + + + + + + + + + beta12orEarlier + 1.13 + + Restriction enzyme recognition sites (restriction sites) in a nucleic acid sequence. + + + Restriction sites + true + + + + + + + + + beta12orEarlier + 1.13 + + + + Splice sites in a nucleotide sequence or alternative RNA splicing events. + + Splice sites + true + + + + + + + + + beta12orEarlier + 1.13 + + Matrix/scaffold attachment regions (MARs/SARs) in a DNA sequence. + + + Matrix/scaffold attachment sites + true + + + + + + + + + beta12orEarlier + 1.13 + + Operons (operators, promoters and genes) from a bacterial genome. + + + Operon + true + + + + + + + + + beta12orEarlier + 1.13 + + Whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in a DNA sequence. + + + Promoters + true + + + + + + + + + beta12orEarlier + true + VT 1.5.24 Structural biology + The molecular structure of biological molecules, particularly macromolecules such as proteins and nucleic acids. + Structural_biology + Structural assignment + Structural determination + Structure determination + + + + This includes experimental methods for biomolecular structure determination, such as X-ray crystallography, nuclear magnetic resonance (NMR), circular dichroism (CD) spectroscopy, microscopy etc., including the assignment or modelling of molecular structure from such data. + Structural biology + + + + + + + + + + beta12orEarlier + 1.13 + + Trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements. + + + Protein membrane regions + true + + + + + + + + + beta12orEarlier + 1.13 + + The comparison of two or more molecular structures, for example structure alignment and clustering. + + + This might involve comparison of secondary or tertiary (3D) structural information. + Structure comparison + true + + + + + + + + + beta12orEarlier + true + The study of gene and protein function including the prediction of functional properties of a protein. + Functional analysis + Function_analysis + Protein function analysis + Protein function prediction + + + + Function analysis + + + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Specific bacteria or archaea, e.g. information on a specific prokaryote genome including molecular sequences, genes and annotation. + + The resource may be specific to a prokaryote, a group of prokaryotes or all prokaryotes. + Prokaryotes and Archaea + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein data resources. + + Protein databases + true + + + + + + + + + beta12orEarlier + 1.3 + + + Experimental methods for biomolecular structure determination, such as X-ray crystallography, nuclear magnetic resonance (NMR), circular dichroism (CD) spectroscopy, microscopy etc., including the assignment or modelling of molecular structure from such data. + + Structure determination + true + + + + + + + + + beta12orEarlier + true + VT 1.5.11 Cell biology + Cells, such as key genes and proteins involved in the cell cycle. + Cell_biology + Cells + Cellular processes + Protein subcellular localization + + + Cell biology + + + + + + + + + + beta12orEarlier + beta13 + + + Topic focused on identifying, grouping, or naming things in a structured way according to some schema based on observable relationships. + + Classification + true + + + + + + + + + beta12orEarlier + 1.3 + + + Lipoproteins (protein-lipid assemblies). + + Lipoproteins + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Visualise a phylogeny, for example, render a phylogenetic tree. + + Phylogeny visualisation + true + + + + + + + + + beta12orEarlier + true + The application of information technology to chemistry in biological research environment. + Chemical informatics + Chemoinformatics + Cheminformatics + + + + Cheminformatics + + + + + + + + + + beta12orEarlier + true + The holistic modelling and analysis of complex biological systems and the interactions therein. + Systems_biology + Biological modelling + Biological system modelling + Systems modelling + + + + This includes databases of models and methods to construct or analyse a model. + Systems biology + + http://purl.bioontology.org/ontology/MSH/D049490 + + + + + + + + + beta12orEarlier + The application of statistical methods to biological problems. + Statistics_and_probability + Bayesian methods + Biostatistics + Descriptive statistics + Gaussian processes + Inferential statistics + Markov processes + Multivariate statistics + Probabilistic graphical model + Probability + Statistics + + + + Statistics and probability + + + + http://purl.bioontology.org/ontology/MSH/D056808 + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Search for and retrieve molecular structures that are similar to a structure-based query (typically another structure or part of a structure). + + The query is a structure-based entity such as another structure, a 3D (structural) motif, 3D profile or template. + Structure database search + true + + + + + + + + + beta12orEarlier + true + The construction, analysis, evaluation, refinement etc. of models of a molecules properties or behaviour, including the modelling the structure of proteins in complex with small molecules or other macromolecules (docking). + Molecular_modelling + Comparative modelling + Docking + Homology modeling + Homology modelling + Molecular docking + + + Molecular modelling + + + + + + + + + + beta12orEarlier + 1.2 + + + The prediction of functional properties of a protein. + + Protein function prediction + true + + + + + + + + + beta12orEarlier + 1.13 + + Single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs. + + + SNP + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Predict transmembrane domains and topology in protein sequences. + + Transmembrane protein prediction + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + The comparison two or more nucleic acid (typically RNA) secondary or tertiary structures. + + Use this concept for methods that are exclusively for nucleic acid structures. + Nucleic acid structure comparison + true + + + + + + + + + beta12orEarlier + 1.13 + + Exons in a nucleotide sequences. + + + Exons + true + + + + + + + + + beta12orEarlier + 1.13 + + Transcription of DNA into RNA including the regulation of transcription. + + + Gene transcription + true + + + + + + + + + + beta12orEarlier + DNA mutation. + DNA_mutation + + + DNA mutation + + + + + + + + + + beta12orEarlier + true + VT 3.2.16 Oncology + The study of cancer, for example, genes and proteins implicated in cancer. + Cancer biology + Oncology + Cancer + Neoplasm + Neoplasms + + + + Oncology + + + + + + + + + + beta12orEarlier + 1.13 + + Structural and associated data for toxic chemical substances. + + + Toxins and targets + true + + + + + + + + + beta12orEarlier + 1.13 + + Introns in a nucleotide sequences. + + + Introns + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A topic concerning primarily bioinformatics software tools, typically the broad function or purpose of a tool. + + + Tool topic + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A general area of bioinformatics study, typically the broad scope or category of content of a bioinformatics journal or conference proceeding. + + + Study topic + true + + + + + + + + + beta12orEarlier + 1.3 + + + Biological nomenclature (naming), symbols and terminology. + + Nomenclature + true + + + + + + + + + beta12orEarlier + 1.3 + + + The genes, gene variations and proteins involved in one or more specific diseases. + + Disease genes and proteins + true + + + + + + + + + + beta12orEarlier + true + http://edamontology.org/topic_3040 + Protein secondary or tertiary structural data and/or associated annotation. + Protein structure + Protein_structure_analysis + Protein tertiary structure + + + + Protein structure analysis + + + + + + + + + + beta12orEarlier + The study of human beings in general, including the human genome and proteome. + Humans + Human_biology + + + Human biology + + + + + + + + + + beta12orEarlier + 1.3 + + + Informatics resource (typically a database) primarily focused on genes. + + Gene resources + true + + + + + + + + + beta12orEarlier + 1.3 + + + Yeast, e.g. information on a specific yeast genome including molecular sequences, genes and annotation. + + Yeast + true + + + + + + + + + beta12orEarlier + (jison) Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Eukaryotes or data concerning eukaryotes, e.g. information on a specific eukaryote genome including molecular sequences, genes and annotation. + + The resource may be specific to a eukaryote, a group of eukaryotes or all eukaryotes. + Eukaryotes + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Invertebrates, e.g. information on a specific invertebrate genome including molecular sequences, genes and annotation. + + The resource may be specific to an invertebrate, a group of invertebrates or all invertebrates. + Invertebrates + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Vertebrates, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation. + + The resource may be specific to a vertebrate, a group of vertebrates or all vertebrates. + Vertebrates + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Unicellular eukaryotes, e.g. information on a unicellular eukaryote genome including molecular sequences, genes and annotation. + + The resource may be specific to a unicellular eukaryote, a group of unicellular eukaryotes or all unicellular eukaryotes. + Unicellular eukaryotes + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein secondary or tertiary structure alignments. + + Protein structure alignment + true + + + + + + + + + + beta12orEarlier + The study of matter and their structure by means of the diffraction of X-rays, typically the diffraction pattern caused by the regularly spaced atoms of a crystalline sample. + Crystallography + X-ray_diffraction + X-ray crystallography + X-ray microscopy + + + + X-ray diffraction + + + + + + + + + + beta12orEarlier + 1.3 + + + Conceptualisation, categorisation and naming of entities or phenomena within biology or bioinformatics. + + Ontologies, nomenclature and classification + http://purl.bioontology.org/ontology/MSH/D002965 + true + + + + + + + + + + beta12orEarlier + Immunity-related proteins and their ligands. + Immunoproteins_and_antigens + Antigens + Immunopeptides + Immunoproteins + Therapeutic antibodies + + + + This includes T cell receptors (TR), major histocompatibility complex (MHC), immunoglobulin superfamily (IgSF) / antibodies, major histocompatibility complex superfamily (MhcSF), etc." + Immunoproteins and antigens + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Specific molecules, including large molecules built from repeating subunits (macromolecules) and small molecules of biological significance. + CHEBI:23367 + + Molecules + true + + + + + + + + + + beta12orEarlier + true + VT 3.1.9 Toxicology + Toxins and the adverse effects of these chemical substances on living organisms. + Toxicology + Computational toxicology + Toxicoinformatics + + + + Toxicology + + + + + + + + + + beta12orEarlier + beta13 + + + Parallelised sequencing processes that are capable of sequencing many thousands of sequences simultaneously. + + High-throughput sequencing + true + + + + + + + + + beta12orEarlier + 1.13 + + Gene regulatory networks. + + + Gene regulatory networks + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Informatics resources dedicated to one or more specific diseases (not diseases in general). + + Disease (specific) + true + + + + + + + + + beta12orEarlier + 1.13 + + Variable number of tandem repeat (VNTR) polymorphism in a DNA sequence. + + + VNTR + true + + + + + + + + + beta12orEarlier + 1.13 + + + Microsatellite polymorphism in a DNA sequence. + + + Microsatellites + true + + + + + + + + + beta12orEarlier + 1.13 + + + Restriction fragment length polymorphisms (RFLP) in a DNA sequence. + + + RFLP + true + + + + + + + + + + beta12orEarlier + true + DNA polymorphism. + DNA_polymorphism + Microsatellites + RFLP + SNP + Single nucleotide polymorphism + VNTR + Variable number of tandem repeat polymorphism + snps + + + Includes microsatellite polymorphism in a DNA sequence. A microsatellite polymorphism is a very short subsequence that is repeated a variable number of times between individuals. These repeats consist of the nucleotides cytosine and adenosine. + Includes restriction fragment length polymorphisms (RFLP) in a DNA sequence. An RFLP is defined by the presence or absence of a specific restriction site of a bacterial restriction enzyme. + Includes single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs. A SNP is a DNA sequence variation where a single nucleotide differs between members of a species or paired chromosomes in an individual. + Includes variable number of tandem repeat (VNTR) polymorphism in a DNA sequence. VNTRs occur in non-coding regions of DNA and consists sub-sequence that is repeated a multiple (and varied) number of times. + DNA polymorphism + + + + + + + + + + beta12orEarlier + 1.3 + + + Topic for the design of nucleic acid sequences with specific conformations. + + Nucleic acid design + true + + + + + + + + + beta13 + 1.3 + + + The design of primers for PCR and DNA amplification or the design of molecular probes. + + Primer or probe design + true + + + + + + + + + beta13 + 1.2 + + + Molecular secondary or tertiary (3D) structural data resources, typically of proteins and nucleic acids. + + Structure databases + true + + + + + + + + + beta13 + 1.2 + + + Nucleic acid (secondary or tertiary) structure, such as whole structures, structural features and associated annotation. + + Nucleic acid structure + true + + + + + + + + + beta13 + 1.3 + + + Molecular sequence data resources, including sequence sites, alignments, motifs and profiles. + + Sequence databases + true + + + + + + + + + beta13 + 1.3 + + + Nucleotide sequences and associated concepts such as sequence sites, alignments, motifs and profiles. + + Nucleic acid sequences + true + + + + + + + + + beta13 + 1.3 + + Protein sequences and associated concepts such as sequence sites, alignments, motifs and profiles. + + + Protein sequences + true + + + + + + + + + beta13 + 1.3 + + + Protein interaction networks. + + Protein interaction networks + true + + + + + + + + + beta13 + true + VT 1.5.4 Biochemistry and molecular biology + The molecular basis of biological activity, particularly the macromolecules (e.g. proteins and nucleic acids) that are essential to life. + Molecular_biology + Biological processes + + + + Molecular biology + + + + + + + + + + beta13 + 1.3 + + + Mammals, e.g. information on a specific mammal genome including molecular sequences, genes and annotation. + + Mammals + true + + + + + + + + + beta13 + true + VT 1.5.5 Biodiversity conservation + The degree of variation of life forms within a given ecosystem, biome or an entire planet. + Biodiversity + + + + Biodiversity + + http://purl.bioontology.org/ontology/MSH/D044822 + + + + + + + + + beta13 + 1.3 + + + The comparison, grouping together and classification of macromolecules on the basis of sequence similarity. + + This includes the results of sequence clustering, ortholog identification, assignment to families, annotation etc. + Sequence clusters and classification + true + + + + + + + + + beta13 + true + The study of genes, genetic variation and heredity in living organisms. + Genetics + Genes + Heredity + + + + Genetics + + http://purl.bioontology.org/ontology/MSH/D005823 + + + + + + + + + beta13 + true + The genes and genetic mechanisms such as Mendelian inheritance that underly continuous phenotypic traits (such as height or weight). + Quantitative_genetics + + + Quantitative genetics + + + + + + + + + + beta13 + true + The distribution of allele frequencies in a population of organisms and its change subject to evolutionary processes including natural selection, genetic drift, mutation and gene flow. + Population_genetics + + + + Population genetics + + + + + + + + + + beta13 + 1.3 + + Regulatory RNA sequences including microRNA (miRNA) and small interfering RNA (siRNA). + + + Regulatory RNA + true + + + + + + + + + beta13 + 1.13 + + The documentation of resources such as tools, services and databases and how to get help. + + + Documentation and help + true + + + + + + + + + beta13 + 1.3 + + + The structural and functional organisation of genes and other genetic elements. + + Genetic organisation + true + + + + + + + + + beta13 + true + The application of information technology to health, disease and biomedicine. + Biomedical informatics + Clinical informatics + Health and disease + Health informatics + Healthcare informatics + Medical_informatics + + + + Medical informatics + + + + + + + + + + beta13 + true + VT 1.5.14 Developmental biology + How organisms grow and develop. + Developmental_biology + Development + + + + Developmental biology + + + + + + + + + + beta13 + true + The development of organisms between the one-cell stage (typically the zygote) and the end of the embryonic stage. + Embryology + + + + Embryology + + + + + + + + + + beta13 + true + VT 3.1.1 Anatomy and morphology + The form and function of the structures of living organisms. + Anatomy + + + + Anatomy + + + + + + + + + + beta13 + true + The scientific literature, language processing, reference information, and documentation. + Language + Literature + Literature_and_language + Bibliography + Citations + Documentation + References + Scientific literature + + + + This includes the documentation of resources such as tools, services and databases, user support, how to get help etc. + Literature and language + http://purl.bioontology.org/ontology/MSH/D011642 + + + + + + + + + beta13 + true + VT 1.5 Biological sciences + VT 1.5.1 Aerobiology + VT 1.5.13 Cryobiology + VT 1.5.23 Reproductive biology + VT 1.5.3 Behavioural biology + VT 1.5.7 Biological rhythm + VT 1.5.8 Biology + VT 1.5.99 Other + The study of life and living organisms, including their morphology, biochemistry, physiology, development, evolution, and so on. + Biological science + Biology + Aerobiology + Behavioural biology + Biological rhythms + Chronobiology + Cryobiology + Reproductive biology + + + + Biology + + + + + + + + + + beta13 + true + Data stewardship + VT 1.3.1 Data management + Data management comprises the practices and principles of taking care of data, other than analysing them. This includes for example taking care of the associated metadata, formatting, storage, archiving, or access. + Metadata management + + + + Data management + + + http://purl.bioontology.org/ontology/MSH/D000079803 + + + + + + + + + beta13 + 1.3 + + + The detection of the positional features, such as functional and other key sites, in molecular sequences. + + Sequence feature detection + http://purl.bioontology.org/ontology/MSH/D058977 + true + + + + + + + + + beta13 + 1.3 + + + The detection of positional features such as functional sites in nucleotide sequences. + + Nucleic acid feature detection + true + + + + + + + + + beta13 + 1.3 + + + The detection, identification and analysis of positional protein sequence features, such as functional sites. + + Protein feature detection + true + + + + + + + + + beta13 + 1.2 + + + Topic for modelling biological systems in mathematical terms. + + Biological system modelling + true + + + + + + + + + beta13 + The acquisition of data, typically measurements of physical systems using any type of sampling system, or by another other means. + Data collection + + + Data acquisition + + + + + + + + + + beta13 + 1.3 + + + Specific genes and/or their encoded proteins or a family or other grouping of related genes and proteins. + + Genes and proteins resources + true + + + + + + + + + beta13 + 1.13 + + Topological domains such as cytoplasmic regions in a protein. + + + Protein topological domains + true + + + + + + + + + beta13 + true + + Protein sequence variants produced e.g. from alternative splicing, alternative promoter usage, alternative initiation and ribosomal frameshifting. + Protein_variants + + + Protein variants + + + + + + + + + + beta13 + 1.12 + + + Regions within a nucleic acid sequence containing a signal that alters a biological function. + + Expression signals + true + + + + + + + + + + beta13 + + Nucleic acids binding to some other molecule. + DNA_binding_sites + Matrix-attachment region + Matrix/scaffold attachment region + Nucleosome exclusion sequences + Restriction sites + Ribosome binding sites + Scaffold-attachment region + + + This includes ribosome binding sites (Shine-Dalgarno sequence in prokaryotes), restriction enzyme recognition sites (restriction sites) etc. + This includes sites involved with DNA replication and recombination. This includes binding sites for initiation of replication (origin of replication), regions where transfer is initiated during the conjugation or mobilisation (origin of transfer), starting sites for DNA duplication (origin of replication) and regions which are eliminated through any of kind of recombination. Also nucleosome exclusion regions, i.e. specific patterns or regions which exclude nucleosomes (the basic structural units of eukaryotic chromatin which play a significant role in regulating gene expression). + DNA binding sites + + + + + + + + + + beta13 + 1.13 + + Repetitive elements within a nucleic acid sequence. + + + This includes long terminal repeats (LTRs); sequences (typically retroviral) directly repeated at both ends of a defined sequence and other types of repeating unit. + Nucleic acid repeats + true + + + + + + + + + beta13 + true + DNA replication or recombination. + DNA_replication_and_recombination + + + DNA replication and recombination + + + + + + + + + + + beta13 + 1.13 + + Coding sequences for a signal or transit peptide. + + + Signal or transit peptide + true + + + + + + + + + beta13 + 1.13 + + Sequence tagged sites (STS) in nucleic acid sequences. + + + Sequence tagged sites + true + + + + + + + + + 1.1 + true + The determination of complete (typically nucleotide) sequences, including those of genomes (full genome sequencing, de novo sequencing and resequencing), amplicons and transcriptomes. + DNA-Seq + Sequencing + Chromosome walking + Clone verification + DNase-Seq + High throughput sequencing + High-throughput sequencing + NGS + NGS data analysis + Next gen sequencing + Next generation sequencing + Panels + Primer walking + Sanger sequencing + Targeted next-generation sequencing panels + + + + Sequencing + + http://purl.bioontology.org/ontology/MSH/D059014 + + + + + + + + + + 1.1 + The analysis of protein-DNA interactions where chromatin immunoprecipitation (ChIP) is used in combination with massively parallel DNA sequencing to identify the binding sites of DNA-associated proteins. + ChIP-sequencing + Chip Seq + Chip sequencing + Chip-sequencing + ChIP-seq + ChIP-exo + + + ChIP-seq + + + + + + + + + + 1.1 + A topic concerning high-throughput sequencing of cDNA to measure the RNA content (transcriptome) of a sample, for example, to investigate how different alleles of a gene are expressed, detect post-transcriptional mutations or identify gene fusions. + RNA sequencing + RNA-Seq analysis + Small RNA sequencing + Small RNA-Seq + Small-Seq + Transcriptome profiling + WTSS + Whole transcriptome shotgun sequencing + RNA-Seq + MicroRNA sequencing + miRNA-seq + + + This includes small RNA profiling (small RNA-Seq), for example to find novel small RNAs, characterize mutations and analyze expression of small RNAs. + RNA-Seq + + + + + + + + + + + 1.1 + 1.3 + + DNA methylation including bisulfite sequencing, methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc. + + + DNA methylation + true + + + + + + + + + 1.1 + true + The systematic study of metabolites, the chemical processes they are involved, and the chemical fingerprints of specific cellular processes in a whole cell, tissue, organ or organism. + Metabolomics + Exometabolomics + LC-MS-based metabolomics + MS-based metabolomics + MS-based targeted metabolomics + MS-based untargeted metabolomics + Mass spectrometry-based metabolomics + Metabolites + Metabolome + Metabonomics + NMR-based metabolomics + + + + Metabolomics + + http://purl.bioontology.org/ontology/MSH/D055432 + + + + + + + + + + 1.1 + true + The study of the epigenetic modifications of a whole cell, tissue, organism etc. + Epigenomics + + + + Epigenetics concerns the heritable changes in gene expression owing to mechanisms other than DNA sequence variation. + Epigenomics + + http://purl.bioontology.org/ontology/MSH/D057890 + + + + + + + + + + 1.1 + true + Environmental DNA (eDNA) + Environmental sequencing + Biome sequencing + Community genomics + Ecogenomics + Environmental genomics + Environmental omics + The study of genetic material recovered from environmental samples, and associated environmental data. + Metagenomics + Shotgun metagenomics + + + + Metagenomics + + + + + + + + + + + + 1.1 + Variation in chromosome structure including microscopic and submicroscopic types of variation such as deletions, duplications, copy-number variants, insertions, inversions and translocations. + DNA structural variation + Genomic structural variation + DNA_structural_variation + Deletion + Duplication + Insertion + Inversion + Translocation + + + Structural variation + + + + + + + + + + 1.1 + DNA-histone complexes (chromatin), organisation of chromatin into nucleosomes and packaging into higher-order structures. + DNA_packaging + Nucleosome positioning + + + DNA packaging + + http://purl.bioontology.org/ontology/MSH/D042003 + + + + + + + + + 1.1 + 1.3 + + + A topic concerning high-throughput sequencing of randomly fragmented genomic DNA, for example, to investigate whole-genome sequencing and resequencing, SNP discovery, identification of copy number variations and chromosomal rearrangements. + + DNA-Seq + true + + + + + + + + + 1.1 + 1.3 + + + The alignment of sequences of (typically millions) of short reads to a reference genome. This is a specialised topic within sequence alignment, especially because of complications arising from RNA splicing. + + RNA-Seq alignment + true + + + + + + + + + 1.1 + Experimental techniques that combine chromatin immunoprecipitation ('ChIP') with microarray ('chip'). ChIP-on-chip is used for high-throughput study protein-DNA interactions. + ChIP-chip + ChIP-on-chip + ChiP + + + ChIP-on-chip + + + + + + + + + + 1.3 + The protection of data, such as patient health data, from damage or unwanted access from unauthorised users. + Data privacy + Data_security + + + Data security + + + + + + + + + + 1.3 + Biological samples and specimens. + Specimen collections + Sample_collections + biosamples + samples + + + + Sample collections + + + + + + + + + + + 1.3 + true + VT 1.5.4 Biochemistry and molecular biology + Chemical substances and physico-chemical processes and that occur within living organisms. + Biological chemistry + Biochemistry + Glycomics + Pathobiochemistry + Phytochemistry + + + + Biochemistry + + + + + + + + + + + 1.3 + true + The study of evolutionary relationships amongst organisms from analysis of genetic information (typically gene or protein sequences). + Phylogenetics + + + Phylogenetics + + http://purl.bioontology.org/ontology/MSH/D010802 + + + + + + + + + 1.3 + true + Topic concerning the study of heritable changes, for example in gene expression or phenotype, caused by mechanisms other than changes in the DNA sequence. + Epigenetics + DNA methylation + Histone modification + Methylation profiles + + + + This includes sub-topics such as histone modification and DNA methylation (methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc.) + Epigenetics + + http://purl.bioontology.org/ontology/MSH/D019175 + + + + + + + + + 1.3 + true + The exploitation of biological process, structure and function for industrial purposes, for example the genetic manipulation of microorganisms for the antibody production. + Biotechnology + Applied microbiology + + + + Biotechnology + + + + + + + + + + + + 1.3 + true + Phenomes, or the study of the change in phenotype (the physical and biochemical traits of organisms) in response to genetic and environmental factors. + Phenomics + + + + Phenomics + + + + + + + + + + 1.3 + true + VT 1.5.16 Evolutionary biology + The evolutionary processes, from the genetic to environmental scale, that produced life in all its diversity. + Evolution + Evolutionary_biology + + + + Evolutionary biology + + + + + + + + + + 1.3 + true + VT 3.1.8 Physiology + The functions of living organisms and their constituent parts. + Physiology + Electrophysiology + + + + Physiology + + + + + + + + + + 1.3 + true + VT 1.5.20 Microbiology + The biology of microorganisms. + Microbiology + Antimicrobial stewardship + Medical microbiology + Microbial genetics + Microbial physiology + Microbial surveillance + Microbiological surveillance + Molecular infection biology + Molecular microbiology + + + + Microbiology + + + + + + + + + + 1.3 + true + The biology of parasites. + Parasitology + + + + Parasitology + + + + + + + + + + 1.3 + true + VT 3.1 Basic medicine + VT 3.2 Clinical medicine + VT 3.2.9 General and internal medicine + Research in support of healing by diagnosis, treatment, and prevention of disease. + Biomedical research + Clinical medicine + Experimental medicine + Medicine + General medicine + Internal medicine + + + + Medicine + + + + + + + + + + 1.3 + true + Neuroscience + VT 3.1.5 Neuroscience + The study of the nervous system and brain; its anatomy, physiology and function. + Neurobiology + Molecular neuroscience + Neurophysiology + Systemetic neuroscience + + + + Neurobiology + + + + + + + + + + 1.3 + true + VT 3.3.1 Epidemiology + Topic concerning the the patterns, cause, and effect of disease within populations. + Public_health_and_epidemiology + Epidemiology + Public health + + + + Public health and epidemiology + + + + + + + + + + + + 1.3 + true + VT 1.5.9 Biophysics + The use of physics to study biological system. + Biophysics + Medical physics + + + + Biophysics + + + + + + + + + + 1.3 + true + VT 1.5.12 Computational biology + VT 1.5.19 Mathematical biology + VT 1.5.26 Theoretical biology + The development and application of theory, analytical methods, mathematical models and computational simulation of biological systems. + Computational_biology + Biomathematics + Mathematical biology + Theoretical biology + + + + This includes the modeling and treatment of biological processes and systems in mathematical terms (theoretical biology). + Computational biology + + + + + + + + + + + 1.3 + true + The analysis of transcriptomes, or a set of all the RNA molecules in a specific cell, tissue etc. + Transcriptomics + Comparative transcriptomics + Transcriptome + + + + Transcriptomics + + + + + + + + + + 1.3 + Chemical science + Polymer science + VT 1.7.10 Polymer science + VT 1.7 Chemical sciences + VT 1.7.2 Chemistry + VT 1.7.3 Colloid chemistry + VT 1.7.5 Electrochemistry + VT 1.7.6 Inorganic and nuclear chemistry + VT 1.7.7 Mathematical chemistry + VT 1.7.8 Organic chemistry + VT 1.7.9 Physical chemistry + The composition and properties of matter, reactions, and the use of reactions to create new substances. + Chemistry + Inorganic chemistry + Mathematical chemistry + Nuclear chemistry + Organic chemistry + Physical chemistry + + + + Chemistry + + + + + + + + + + 1.3 + VT 1.1.99 Other + VT:1.1 Mathematics + The study of numbers (quantity) and other topics including structure, space, and change. + Maths + Mathematics + Dynamic systems + Dynamical systems + Dynymical systems theory + Graph analytics + Monte Carlo methods + Multivariate analysis + + + + Mathematics + + + + + + + + + + 1.3 + VT 1.2 Computer sciences + VT 1.2.99 Other + The theory and practical use of computer systems. + Computer_science + Cloud computing + HPC + High performance computing + High-performance computing + + + + Computer science + + + + + + + + + + 1.3 + The study of matter, space and time, and related concepts such as energy and force. + Physics + + + + Physics + + + + + + + + + + + 1.3 + true + RNA splicing; post-transcription RNA modification involving the removal of introns and joining of exons. + Alternative splicing + RNA_splicing + Splice sites + + + This includes the study of splice sites, splicing patterns, alternative splicing events and variants, isoforms, etc.. + RNA splicing + + + + + + + + + + + 1.3 + true + The structure and function of genes at a molecular level. + Molecular_genetics + + + + Molecular genetics + + + + + + + + + + 1.3 + true + VT 3.2.25 Respiratory systems + The study of respiratory system. + Pulmonary medicine + Pulmonology + Respiratory_medicine + Pulmonary disorders + Respiratory disease + + + + Respiratory medicine + + + + + + + + + + 1.3 + 1.4 + + + The study of metabolic diseases. + + Metabolic disease + true + + + + + + + + + 1.3 + VT 3.3.4 Infectious diseases + The branch of medicine that deals with the prevention, diagnosis and management of transmissible disease with clinically evident illness resulting from infection with pathogenic biological agents (viruses, bacteria, fungi, protozoa, parasites and prions). + Communicable disease + Transmissible disease + Infectious_disease + + + + Infectious disease + + + + + + + + + + 1.3 + The study of rare diseases. + Rare_diseases + + + + Rare diseases + + + + + + + + + + + 1.3 + true + VT 1.7.4 Computational chemistry + Topic concerning the development and application of theory, analytical methods, mathematical models and computational simulation of chemical systems. + Computational_chemistry + + + + Computational chemistry + + + + + + + + + + 1.3 + true + The branch of medicine that deals with the anatomy, functions and disorders of the nervous system. + Neurology + Neurological disorders + + + + Neurology + + + + + + + + + + 1.3 + true + VT 3.2.22 Peripheral vascular disease + VT 3.2.4 Cardiac and Cardiovascular systems + The diseases and abnormalities of the heart and circulatory system. + Cardiovascular medicine + Cardiology + Cardiovascular disease + Heart disease + + + + Cardiology + + + + + + + + + + + 1.3 + true + The discovery and design of drugs or potential drug compounds. + Drug_discovery + + + + This includes methods that search compound collections, generate or analyse drug 3D conformations, identify drug targets with structural docking etc. + Drug discovery + + + + + + + + + + 1.3 + true + Repositories of biological samples, typically human, for basic biological and clinical research. + Tissue collection + biobanking + Biobank + + + + Biobank + + + + + + + + + + 1.3 + Laboratory study of mice, for example, phenotyping, and mutagenesis of mouse cell lines. + Laboratory mouse + Mouse_clinic + + + + Mouse clinic + + + + + + + + + + 1.3 + Collections of microbial cells including bacteria, yeasts and moulds. + Microbial_collection + + + + Microbial collection + + + + + + + + + + 1.3 + Collections of cells grown under laboratory conditions, specifically, cells from multi-cellular eukaryotes and especially animal cells. + Cell_culture_collection + + + + Cell culture collection + + + + + + + + + + 1.3 + Collections of DNA, including both collections of cloned molecules, and populations of micro-organisms that store and propagate cloned DNA. + Clone_library + + + + Clone library + + + + + + + + + + 1.3 + true + 'translating' the output of basic and biomedical research into better diagnostic tools, medicines, medical procedures, policies and advice. + Translational_medicine + + + + Translational medicine + + + + + + + + + + 1.3 + Collections of chemicals, typically for use in high-throughput screening experiments. + Compound_libraries_and_screening + Chemical library + Chemical screening + Compound library + Small chemical compounds libraries + Small compounds libraries + Target identification and validation + + + + Compound libraries and screening + + + + + + + + + + 1.3 + true + VT 3.3 Health sciences + Topic concerning biological science that is (typically) performed in the context of medicine. + Biomedical sciences + Health science + Biomedical_science + + + + Biomedical science + + + + + + + + + + 1.3 + Topic concerning the identity of biological entities, or reports on such entities, and the mapping of entities and records in different databases. + Data_identity_and_mapping + + + + Data identity and mapping + + + + + + + + + 1.3 + 1.12 + + The search and retrieval from a database on the basis of molecular sequence similarity. + + + Sequence search + true + + + + + + + + + 1.4 + true + Objective indicators of biological state often used to assess health, and determinate treatment. + Diagnostic markers + Biomarkers + + + Biomarkers + + + + + + + + + + 1.4 + The procedures used to conduct an experiment. + Experimental techniques + Lab method + Lab techniques + Laboratory method + Laboratory_techniques + Experiments + Laboratory experiments + + + + Laboratory techniques + + + + + + + + + + 1.4 + The development of policies, models and standards that cover data acquisition, storage and integration, such that it can be put to use, typically through a process of systematically applying statistical and / or logical techniques to describe, illustrate, summarise or evaluate data. + Data_architecture_analysis_and_design + Data analysis + Data architecture + Data design + + + + Data architecture, analysis and design + + + + + + + + + + 1.4 + The combination and integration of data from different sources, for example into a central repository or warehouse, to provide users with a unified view of these data. + Data_integration_and_warehousing + Data integration + Data warehousing + + + + Data integration and warehousing + + + + + + + + + + + 1.4 + Any matter, surface or construct that interacts with a biological system. + Biomaterials + + + + Biomaterials + + + + + + + + + + + 1.4 + true + The use of synthetic chemistry to study and manipulate biological systems. + Chemical_biology + + + + Chemical biology + + + + + + + + + + 1.4 + VT 1.7.1 Analytical chemistry + The study of the separation, identification, and quantification of the chemical components of natural and artificial materials. + Analytical_chemistry + + + + Analytical chemistry + + + + + + + + + + 1.4 + The use of chemistry to create new compounds. + Synthetic_chemistry + Synthetic organic chemistry + + + + Synthetic chemistry + + + + + + + + + + 1.4 + 1.2.12 Programming languages + Software engineering + VT 1.2.1 Algorithms + VT 1.2.14 Software engineering + VT 1.2.7 Data structures + The process that leads from an original formulation of a computing problem to executable programs. + Computer programming + Software development + Software_engineering + Algorithms + Data structures + Programming languages + + + + Software engineering + + + + + + + + + + 1.4 + true + The process of bringing a new drug to market once a lead compounds has been identified through drug discovery. + Drug development science + Medicine development + Medicines development + Drug_development + + + + Drug development + + + + + + + + + + 1.4 + Drug delivery + Drug formulation + Drug formulation and delivery + The process of formulating and administering a pharmaceutical compound to achieve a therapeutic effect. + Biotherapeutics + + + + Biotherapeutics + + + + + + + + + 1.4 + true + The study of how a drug interacts with the body. + Drug_metabolism + ADME + Drug absorption + Drug distribution + Drug excretion + Pharmacodynamics + Pharmacokinetics + Pharmacokinetics and pharmacodynamics + + + + Drug metabolism + + + + + + + + + + 1.4 + Health care research + Health care science + The discovery, development and approval of medicines. + Drug discovery and development + Medicines_research_and_development + + + + Medicines research and development + + + + + + + + + + + 1.4 + The safety (or lack) of drugs and other medical interventions. + Patient safety + Safety_sciences + Drug safety + + + + Safety sciences + + + + + + + + + + 1.4 + The detection, assessment, understanding and prevention of adverse effects of medicines. + Pharmacovigilence + + + + Pharmacovigilence concerns safety once a drug has gone to market. + Pharmacovigilance + + + + + + + + + + + 1.4 + The testing of new medicines, vaccines or procedures on animals (preclinical) and humans (clinical) prior to their approval by regulatory authorities. + Preclinical_and_clinical_studies + Clinical studies + Clinical study + Clinical trial + Drug trials + Preclinical studies + Preclinical study + + + + Preclinical and clinical studies + + + + + + + + + + 1.4 + true + The visual representation of an object. + Imaging + Diffraction experiment + Microscopy + Microscopy imaging + Optical super resolution microscopy + Photonic force microscopy + Photonic microscopy + + + + This includes diffraction experiments that are based upon the interference of waves, typically electromagnetic waves such as X-rays or visible light, by some object being studied, typical in order to produce an image of the object or determine its structure. + Imaging + + + + + + + + + + 1.4 + The use of imaging techniques to understand biology. + Biological imaging + Biological_imaging + + + + Bioimaging + + + + + + + + + + 1.4 + VT 3.2.13 Medical imaging + VT 3.2.14 Nuclear medicine + VT 3.2.24 Radiology + The use of imaging techniques for clinical purposes for medical research. + Medical_imaging + Neuroimaging + Nuclear medicine + Radiology + + + + Medical imaging + + + + + + + + + + 1.4 + The use of optical instruments to magnify the image of an object. + Light_microscopy + + + + Light microscopy + + + + + + + + + + 1.4 + The use of animals and alternatives in experimental research. + Animal experimentation + Animal research + Animal testing + In vivo testing + Laboratory_animal_science + + + + Laboratory animal science + + + + + + + + + + 1.4 + true + VT 1.5.18 Marine and Freshwater biology + The study of organisms in the ocean or brackish waters. + Marine_biology + + + + Marine biology + + + + + + + + + + 1.4 + true + The identification of molecular and genetic causes of disease and the development of interventions to correct them. + Molecular_medicine + + + + Molecular medicine + + + + + + + + + + 1.4 + VT 3.3.7 Nutrition and Dietetics + The study of the effects of food components on the metabolism, health, performance and disease resistance of humans and animals. It also includes the study of human behaviours related to food choices. + Nutrition + Nutrition science + Nutritional_science + Dietetics + + + + Nutritional science + + + + + + + + + + 1.4 + true + The collective characterisation and quantification of pools of biological molecules that translate into the structure, function, and dynamics of an organism or organisms. + Omics + + + + Omics + + + + + + + + + + 1.4 + The processes that need to be in place to ensure the quality of products for human or animal use. + Quality assurance + Quality_affairs + Good clinical practice + Good laboratory practice + Good manufacturing practice + + + + Quality affairs + + + + + + + + + 1.4 + The protection of public health by controlling the safety and efficacy of products in areas including pharmaceuticals, veterinary medicine, medical devices, pesticides, agrochemicals, cosmetics, and complementary medicines. + Healthcare RA + Regulatory_affairs + + + + Regulatory affairs + + + + + + + + + + 1.4 + true + Biomedical approaches to clinical interventions that involve the use of stem cells. + Stem cell research + Regenerative_medicine + + + + Regenerative medicine + + + + + + + + + + 1.4 + true + An interdisciplinary field of study that looks at the dynamic systems of the human body as part of an integrted whole, incorporating biochemical, physiological, and environmental interactions that sustain life. + Systems_medicine + + + + Systems medicine + + + + + + + + + + 1.4 + Topic concerning the branch of medicine that deals with the prevention, diagnosis, and treatment of disease, disorder and injury in animals. + Veterinary_medicine + Clinical veterinary medicine + + + + Veterinary medicine + + + + + + + + + + 1.4 + The application of biological concepts and methods to the analytical and synthetic methodologies of engineering. + Biological engineering + Bioengineering + + + + Bioengineering + + + + + + + + + + 1.4 + true + Ageing + Aging + Gerontology + VT 3.2.10 Geriatrics and gerontology + The branch of medicine dealing with the diagnosis, treatment and prevention of disease in older people, and the problems specific to aging. + Geriatrics + Geriatric_medicine + + + + Geriatric medicine + + + + + + + + + + 1.4 + true + VT 3.2.1 Allergy + Health issues related to the immune system and their prevention, diagnosis and management. + Allergy_clinical_immunology_and_immunotherapeutics + Allergy + Clinical immunology + Immune disorders + Immunomodulators + Immunotherapeutics + + + + Allergy, clinical immunology and immunotherapeutics + + + + + + + + + + + + 1.4 + true + The prevention of pain and the evaluation, treatment and rehabilitation of persons in pain. + Algiatry + Pain management + Pain_medicine + + + + Pain medicine + + + + + + + + + + 1.4 + VT 3.2.2 Anaesthesiology + Anaesthesia and anaesthetics. + Anaesthetics + Anaesthesiology + + + + Anaesthesiology + + + + + + + + + + 1.4 + VT 3.2.5 Critical care/Emergency medicine + The multidisciplinary that cares for patients with acute, life-threatening illness or injury. + Acute medicine + Emergency medicine + Intensive care medicine + Critical_care_medicine + + + + Critical care medicine + + + + + + + + + + 1.4 + VT 3.2.7 Dermatology and venereal diseases + The branch of medicine that deals with prevention, diagnosis and treatment of disorders of the skin, scalp, hair and nails. + Dermatology + Dermatological disorders + + + + Dermatology + + + + + + + + + + 1.4 + The study, diagnosis, prevention and treatments of disorders of the oral cavity, maxillofacial area and adjacent structures. + Dentistry + + + + Dentistry + + + + + + + + + + 1.4 + VT 3.2.20 Otorhinolaryngology + The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the ear, nose and throat. + Audiovestibular medicine + Otolaryngology + Otorhinolaryngology + Ear_nose_and_throat_medicine + Head and neck disorders + + + + Ear, nose and throat medicine + + + + + + + + + + 1.4 + true + The branch of medicine dealing with diseases of endocrine organs, hormone systems, their target organs, and disorders of the pathways of glucose and lipid metabolism. + Endocrinology_and_metabolism + Endocrine disorders + Endocrinology + Metabolic disorders + Metabolism + + + + Endocrinology and metabolism + + + + + + + + + + 1.4 + true + VT 3.2.11 Hematology + The branch of medicine that deals with the blood, blood-forming organs and blood diseases. + Haematology + Blood disorders + Haematological disorders + + + + Haematology + + + + + + + + + + 1.4 + true + VT 3.2.8 Gastroenterology and hepatology + The branch of medicine that deals with disorders of the oesophagus, stomach, duodenum, jejenum, ileum, large intestine, sigmoid colon and rectum. + Gastroenterology + Gastrointestinal disorders + + + + Gastroenterology + + + + + + + + + + 1.4 + The study of the biological and physiological differences between males and females and how they effect differences in disease presentation and management. + Gender_medicine + + + + Gender medicine + + + + + + + + + + 1.4 + true + VT 3.2.15 Obstetrics and gynaecology + The branch of medicine that deals with the health of the female reproductive system, pregnancy and birth. + Gynaecology_and_obstetrics + Gynaecological disorders + Gynaecology + Obstetrics + + + + Gynaecology and obstetrics + + + + + + + + + + + 1.4 + true + The branch of medicine that deals with the liver, gallbladder, bile ducts and bile. + Hepatology + Hepatic_and_biliary_medicine + Liver disorders + + + + Hepatic and biliary medicine + + Hepatobiliary medicine + + + + + + + + + 1.4 + 1.13 + + The branch of medicine that deals with the infectious diseases of the tropics. + + + Infectious tropical disease + true + + + + + + + + + 1.4 + The branch of medicine that treats body wounds or shock produced by sudden physical injury, as from violence or accident. + Traumatology + Trauma_medicine + + + + Trauma medicine + + + + + + + + + + 1.4 + true + The branch of medicine that deals with the diagnosis, management and prevention of poisoning and other adverse health effects caused by medications, occupational and environmental toxins, and biological agents. + Medical_toxicology + + + + Medical toxicology + + + + + + + + + + 1.4 + VT 3.2.19 Orthopaedics + VT 3.2.26 Rheumatology + The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the muscle, bone and connective tissue. It incorporates aspects of orthopaedics, rheumatology, rehabilitation medicine and pain medicine. + Musculoskeletal_medicine + Musculoskeletal disorders + Orthopaedics + Rheumatology + + + + Musculoskeletal medicine + + + + + + + + + + + + 1.4 + Optometry + VT 3.2.17 Ophthalmology + VT 3.2.18 Optometry + The branch of medicine that deals with disorders of the eye, including eyelid, optic nerve/visual pathways and occular muscles. + Ophthalmology + Eye disoders + + + + Ophthalmology + + + + + + + + + + 1.4 + VT 3.2.21 Paediatrics + The branch of medicine that deals with the medical care of infants, children and adolescents. + Child health + Paediatrics + + + + Paediatrics + + + + + + + + + + 1.4 + Mental health + VT 3.2.23 Psychiatry + The branch of medicine that deals with the management of mental illness, emotional disturbance and abnormal behaviour. + Psychiatry + Psychiatric disorders + + + + Psychiatry + + + + + + + + + + 1.4 + VT 3.2.3 Andrology + The health of the reproductive processes, functions and systems at all stages of life. + Reproductive_health + Andrology + Family planning + Fertility medicine + Reproductive disorders + + + + Reproductive health + + + + + + + + + + 1.4 + VT 3.2.28 Transplantation + The use of operative, manual and instrumental techniques on a patient to investigate and/or treat a pathological condition or help improve bodily function or appearance. + Surgery + Transplantation + + + + Surgery + + + + + + + + + + 1.4 + VT 3.2.29 Urology and nephrology + The branches of medicine and physiology focussing on the function and disorders of the urinary system in males and females, the reproductive system in males, and the kidney. + Urology_and_nephrology + Kidney disease + Nephrology + Urological disorders + Urology + + + + Urology and nephrology + + + + + + + + + + + 1.4 + Alternative medicine + Holistic medicine + Integrative medicine + VT 3.2.12 Integrative and Complementary medicine + Medical therapies that fall beyond the scope of conventional medicine but may be used alongside it in the treatment of disease and ill health. + Complementary_medicine + + + + Complementary medicine + + + + + + + + + + 1.7 + Techniques that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body. + MRT + Magnetic resonance imaging + Magnetic resonance tomography + NMRI + Nuclear magnetic resonance imaging + MRI + + + MRI + + + + + + + + + + + 1.7 + The study of matter by studying the diffraction pattern from firing neutrons at a sample, typically to determine atomic and/or magnetic structure. + Neutron diffraction experiment + Neutron_diffraction + Elastic neutron scattering + Neutron microscopy + + + Neutron diffraction + + + + + + + + + + 1.7 + Imaging in sections (sectioning), through the use of a wave-generating device (tomograph) that generates an image (a tomogram). + CT + Computed tomography + TDM + Tomography + Electron tomography + PET + Positron emission tomography + X-ray tomography + + + Tomography + + + + + + + + + + 1.7 + true + KDD + Knowledge discovery in databases + VT 1.3.2 Data mining + The discovery of patterns in large data sets and the extraction and trasnsformation of those patterns into a useful format. + Data_mining + Pattern recognition + + + Data mining + + + + + + + + + + 1.7 + Artificial Intelligence + VT 1.2.2 Artificial Intelligence (expert systems, machine learning, robotics) + A topic concerning the application of artificial intelligence methods to algorithms, in order to create methods that can learn from data in order to generate an output, rather than relying on explicitly encoded information only. + Machine_learning + Active learning + Ensembl learning + Kernel methods + Knowledge representation + Neural networks + Recommender system + Reinforcement learning + Supervised learning + Unsupervised learning + + + Machine learning + + + + + + + + + + 1.8 + Database administration + Information systems + Databases + The general handling of data stored in digital archives such as databases, databanks, web portals, and other data resources. + Database_management + Content management + Document management + File management + Record management + + + This includes databases for the results of scientific experiments, the application of high-throughput technology, computational analysis and the scientific literature. It covers the management and manipulation of digital documents, including database records, files, and reports. + Database management + + + + + + + + + + 1.8 + VT 1.5.29 Zoology + Animals, e.g. information on a specific animal genome including molecular sequences, genes and annotation. + Animal + Animal biology + Animals + Metazoa + Zoology + Animal genetics + Animal physiology + Entomology + + + The study of the animal kingdom. + Zoology + + + + + + + + + + + 1.8 + The biology, archival, detection, prediction and analysis of positional features such as functional and other key sites, in protein sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them. + Protein_sites_features_and_motifs + Protein sequence features + Signal peptide cleavage sites + + + A signal peptide coding sequence encodes an N-terminal domain of a secreted protein, which is involved in attaching the polypeptide to a membrane leader sequence. A transit peptide coding sequence encodes an N-terminal domain of a nuclear-encoded organellar protein; which is involved in import of the protein into the organelle. + Protein sites, features and motifs + + + + + + + + + + 1.8 + The biology, archival, detection, prediction and analysis of positional features such as functional and other key sites, in nucleic acid sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them. + Nucleic_acid_sites_features_and_motifs + Nucleic acid functional sites + Nucleic acid sequence features + Primer binding sites + Sequence tagged sites + + + Sequence tagged sites are short DNA sequences that are unique within a genome and serve as a mapping landmark, detectable by PCR they allow a genome to be mapped via an ordering of STSs. + Nucleic acid sites, features and motifs + + + + + + + + + + 1.8 + Transcription of DNA into RNA and features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules. + Gene_transcripts + Coding RNA + EST + Exons + Fusion transcripts + Gene transcript features + Introns + PolyA signal + PolyA site + Signal peptide coding sequence + Transit peptide coding sequence + cDNA + mRNA + mRNA features + + + This includes 5'untranslated region (5'UTR), coding sequences (CDS), exons, intervening sequences (intron) and 3'untranslated regions (3'UTR). + This includes Introns, and protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. Also expressed sequence tag (EST) or complementary DNA (cDNA) sequences. + This includes coding sequences for a signal or transit peptide. A signal peptide coding sequence encodes an N-terminal domain of a secreted protein, which is involved in attaching the polypeptide to a membrane leader sequence. A transit peptide coding sequence encodes an N-terminal domain of a nuclear-encoded organellar protein; which is involved in import of the protein into the organelle. + This includes regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript. A polyA signal is required for endonuclease cleavage of an RNA transcript that is followed by polyadenylation. A polyA site is a site on an RNA transcript to which adenine residues will be added during post-transcriptional polyadenylation. + Gene transcripts + + + + + + + + + + 1.8 + 1.13 + + Protein-ligand (small molecule) interaction(s). + + + Protein-ligand interactions + true + + + + + + + + + 1.8 + 1.13 + + Protein-drug interaction(s). + + + Protein-drug interactions + true + + + + + + + + + 1.8 + Genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods. + Genotyping_experiment + + + Genotyping experiment + + + + + + + + + + 1.8 + Genome-wide association study experiments. + GWAS + GWAS analysis + Genome-wide association study + GWAS_study + + + GWAS study + + + + + + + + + + 1.8 + Microarray experiments including conditions, protocol, sample:data relationships etc. + Microarrays + Microarray_experiment + Gene expression microarray + Genotyping array + Methylation array + MicroRNA array + Multichannel microarray + One channel microarray + Proprietary platform micoarray + RNA chips + RNA microarrays + Reverse phase protein array + SNP array + Tiling arrays + Tissue microarray + Two channel microarray + aCGH microarray + mRNA microarray + miRNA array + + + This might specify which raw data file relates to which sample and information on hybridisations, e.g. which are technical and which are biological replicates. + Microarray experiment + + + + + + + + + + 1.8 + PCR experiments, e.g. quantitative real-time PCR. + Polymerase chain reaction + PCR_experiment + Quantitative PCR + RT-qPCR + Real Time Quantitative PCR + + + PCR experiment + + + + + + + + + + 1.8 + Proteomics experiments. + Proteomics_experiment + 2D PAGE experiment + DIA + Data-independent acquisition + MS + MS experiments + Mass spectrometry + Mass spectrometry experiments + Northern blot experiment + Spectrum demultiplexing + + + This includes two-dimensional gel electrophoresis (2D PAGE) experiments, gels or spots in a gel. Also mass spectrometry - an analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase. Also Northern blot experiments. + Proteomics experiment + + + + + + + + + + + 1.8 + 1.13 + + Two-dimensional gel electrophoresis experiments, gels or spots in a gel. + + + 2D PAGE experiment + true + + + + + + + + + 1.8 + 1.13 + + Northern Blot experiments. + + + Northern blot experiment + true + + + + + + + + + 1.8 + RNAi experiments. + RNAi_experiment + + + RNAi experiment + + + + + + + + + + 1.8 + Biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction. + Simulation_experiment + + + Simulation experiment + + + + + + + + + 1.8 + 1.13 + + Protein-DNA/RNA interaction(s). + + + Protein-nucleic acid interactions + true + + + + + + + + + 1.8 + 1.13 + + Protein-protein interaction(s), including interactions between protein domains. + + + Protein-protein interactions + true + + + + + + + + + 1.8 + 1.13 + + Cellular process pathways. + + + Cellular process pathways + true + + + + + + + + + 1.8 + 1.13 + + Disease pathways, typically of human disease. + + + Disease pathways + true + + + + + + + + + 1.8 + 1.13 + + Environmental information processing pathways. + + + Environmental information processing pathways + true + + + + + + + + + 1.8 + 1.13 + + Genetic information processing pathways. + + + Genetic information processing pathways + true + + + + + + + + + 1.8 + 1.13 + + Super-secondary structure of protein sequence(s). + + + Protein super-secondary structure + true + + + + + + + + + 1.8 + 1.13 + + Catalytic residues (active site) of an enzyme. + + + Protein active sites + true + + + + + + + + + 1.8 + Binding sites in proteins, including cleavage sites (for a proteolytic enzyme or agent), key residues involved in protein folding, catalytic residues (active site) of an enzyme, ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids, RNA and DNA-binding proteins and binding sites etc. + Protein_binding_sites + Enzyme active site + Protein cleavage sites + Protein functional sites + Protein key folding sites + Protein-nucleic acid binding sites + + + Protein binding sites + + + + + + + + + + 1.8 + 1.13 + + RNA and DNA-binding proteins and binding sites in protein sequences. + + + Protein-nucleic acid binding sites + true + + + + + + + + + 1.8 + 1.13 + + Cleavage sites (for a proteolytic enzyme or agent) in a protein sequence. + + + Protein cleavage sites + true + + + + + + + + + 1.8 + 1.13 + + Chemical modification of a protein. + + + Protein chemical modifications + true + + + + + + + + + 1.8 + Disordered structure in a protein. + Protein features (disordered structure) + Protein_disordered_structure + + + Protein disordered structure + + + + + + + + + + 1.8 + 1.13 + + Structural domains or 3D folds in a protein or polypeptide chain. + + + Protein domains + true + + + + + + + + + 1.8 + 1.13 + + Key residues involved in protein folding. + + + Protein key folding sites + true + + + + + + + + + 1.8 + 1.13 + + Post-translation modifications in a protein sequence, typically describing the specific sites involved. + + + Protein post-translational modifications + true + + + + + + + + + 1.8 + Secondary structure (predicted or real) of a protein, including super-secondary structure. + Protein features (secondary structure) + Protein_secondary_structure + Protein super-secondary structure + + + Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc. + The location and size of the secondary structure elements and intervening loop regions is typically given. The report can include disulphide bonds and post-translationally formed peptide bonds (crosslinks). + Protein secondary structure + + + + + + + + + + 1.8 + 1.13 + + Short repetitive subsequences (repeat sequences) in a protein sequence. + + + Protein sequence repeats + true + + + + + + + + + 1.8 + 1.13 + + Signal peptides or signal peptide cleavage sites in protein sequences. + + + Protein signal peptides + true + + + + + + + + + 1.10 + VT 1.1.1 Applied mathematics + The application of mathematics to specific problems in science, typically by the formulation and analysis of mathematical models. + Applied_mathematics + + + Applied mathematics + + + + + + + + + + 1.10 + VT 1.1.1 Pure mathematics + The study of abstract mathematical concepts. + Pure_mathematics + Linear algebra + + + Pure mathematics + + + + + + + + + + 1.10 + The control of data entry and maintenance to ensure the data meets defined standards, qualities or constraints. + Data_governance + Data stewardship + + + Data governance + + http://purl.bioontology.org/ontology/MSH/D030541 + + + + + + + + + 1.10 + The quality, integrity, and cleaning up of data. + Data_quality_management + Data clean-up + Data cleaning + Data integrity + Data quality + + + Data quality management + + + + + + + + + + 1.10 + Freshwater science + VT 1.5.18 Marine and Freshwater biology + The study of organisms in freshwater ecosystems. + Freshwater_biology + + + + Freshwater biology + + + + + + + + + + 1.10 + true + VT 3.1.2 Human genetics + The study of inheritance in human beings. + Human_genetics + + + + Human genetics + + + + + + + + + + 1.10 + VT 3.3.14 Tropical medicine + Health problems that are prevalent in tropical and subtropical regions. + Tropical_medicine + + + + Tropical medicine + + + + + + + + + + 1.10 + true + VT 3.3.14 Tropical medicine + VT 3.4 Medical biotechnology + VT 3.4.1 Biomedical devices + VT 3.4.2 Health-related biotechnology + Biotechnology applied to the medical sciences and the development of medicines. + Medical_biotechnology + Pharmaceutical biotechnology + + + + Medical biotechnology + + + + + + + + + + 1.10 + true + VT 3.4.5 Molecular diagnostics + An approach to medicine whereby decisions, practices and are tailored to the individual patient based on their predicted response or risk of disease. + Precision medicine + Personalised_medicine + Molecular diagnostics + + + + Personalised medicine + + + + + + + + + + 1.12 + Experimental techniques to purify a protein-DNA crosslinked complex. Usually sequencing follows e.g. in the techniques ChIP-chip, ChIP-seq and MeDIP-seq. + Chromatin immunoprecipitation + Immunoprecipitation_experiment + + + Immunoprecipitation experiment + + + + + + + + + + 1.12 + Laboratory technique to sequence the complete DNA sequence of an organism's genome at a single time. + Genome sequencing + WGS + Whole_genome_sequencing + De novo genome sequencing + Whole genome resequencing + + + Whole genome sequencing + + + + + + + + + + 1.12 + + Laboratory technique to sequence the methylated regions in DNA. + MeDIP-chip + MeDIP-seq + mDIP + Methylated_DNA_immunoprecipitation + BS-Seq + Bisulfite sequencing + MeDIP + Methylated DNA immunoprecipitation (MeDIP) + Methylation sequencing + WGBS + Whole-genome bisulfite sequencing + methy-seq + methyl-seq + + + Methylated DNA immunoprecipitation + + + + + + + + + + 1.12 + Laboratory technique to sequence all the protein-coding regions in a genome, i.e., the exome. + Exome + Exome analysis + Exome capture + Targeted exome capture + WES + Whole exome sequencing + Exome_sequencing + + + Exome sequencing is considered a cheap alternative to whole genome sequencing. + Exome sequencing + + + + + + + + + + 1.12 + + true + The design of an experiment intended to test a hypothesis, and describe or explain empirical data obtained under various experimental conditions. + Design of experiments + Experimental design + Studies + Experimental_design_and_studies + + + Experimental design and studies + + + + + + + + + + + 1.12 + The design of an experiment involving non-human animals. + Animal_study + Challenge study + + + Animal study + + + + + + + + + + + 1.13 + true + The ecology of microorganisms including their relationship with one another and their environment. + Environmental microbiology + Microbial_ecology + Community analysis + Microbiome + Molecular community analysis + + + Microbial ecology + + + + + + + + + + 1.17 + An antibody-based technique used to map in vivo RNA-protein interactions. + RIP + RNA_immunoprecipitation + CLIP + CLIP-seq + HITS-CLIP + PAR-CLIP + iCLIP + + + RNA immunoprecipitation + + + + + + + + + + 1.17 + Large-scale study (typically comparison) of DNA sequences of populations. + Population_genomics + + + + Population genomics + + + + + + + + + + 1.20 + Agriculture + Agroecology + Agronomy + Multidisciplinary study, research and development within the field of agriculture. + Agricultural_science + Agricultural biotechnology + Agricultural economics + Animal breeding + Animal husbandry + Animal nutrition + Farming systems research + Food process engineering + Food security + Horticulture + Phytomedicine + Plant breeding + Plant cultivation + Plant nutrition + Plant pathology + Soil science + + + Agricultural science + + + + + + + + + + 1.20 + Approach which samples, in parallel, all genes in all organisms present in a given sample, e.g. to provide insight into biodiversity and function. + Shotgun metagenomic sequencing + Metagenomic_sequencing + + + Metagenomic sequencing + + + + + + + + + + 1.21 + Environment + Study of the environment, the interactions between its physical, chemical, and biological components and it's effect on life. Also how humans impact upon the environment, and how we can manage and utilise natural resources. + Environmental_science + + + Environmental sciences + + + + + + + + + + 1.22 + The study and simulation of molecular conformations using a computational model and computer simulations. + + + This includes methods such as Molecular Dynamics, Coarse-grained dynamics, metadynamics, Quantum Mechanics, QM/MM, Markov State Models, etc. + Biomolecular simulation + + + + + + + + + + 1.22 + The application of multi-disciplinary science and technology for the construction of artificial biological systems for diverse applications. + Biomimeic chemistry + + + Synthetic biology + + + + + + + + + + + 1.22 + The application of biotechnology to directly manipulate an organism's genes. + Genetic manipulation + Genetic modification + Genetic_engineering + Genome editing + Genome engineering + + + Genetic engineering + + + + + + + + + + 1.24 + A field of biological research focused on the discovery and identification of peptides, typically by comparing mass spectra against a protein database. + Proteogenomics + + + Proteogenomics + + + + + + + + + + 1.24 + Amplicon panels + Resequencing + Laboratory experiment to identify the differences between a specific genome (of an individual) and a reference genome (developed typically from many thousands of individuals). WGS re-sequencing is used as golden standard to detect variations compared to a given reference genome, including small variants (SNP and InDels) as well as larger genome re-organisations (CNVs, translocations, etc.). + Highly targeted resequencing + Whole genome resequencing (WGR) + Whole-genome re-sequencing (WGSR) + Amplicon sequencing + Amplicon-based sequencing + Ultra-deep sequencing + Amplicon sequencing is the ultra-deep sequencing of PCR products (amplicons), usually for the purpose of efficient genetic variant identification and characterisation in specific genomic regions. + Genome resequencing + + + + + + + + + + 1.24 + A biomedical field that bridges immunology and genetics, to study the genetic basis of the immune system. + Immune system genetics + Immungenetics + Immunology and genetics + Immunogenetics + Immunogenes + + + This involves the study of often complex genetic traits underlying diseases involving defects in the immune system. For example, identifying target genes for therapeutic approaches, or genetic variations involved in immunological pathology. + Immunogenetics + + + + + + + + + + 1.24 + Interdisciplinary science focused on extracting information from chemical systems by data analytical approaches, for example multivariate statistics, applied mathematics, and computer science. + Chemometrics + + + Chemometrics + + + + + + + + + + 1.24 + Cytometry is the measurement of the characteristics of cells. + Cytometry + Flow cytometry + Image cytometry + Mass cytometry + + + Cytometry + + + + + + + + + + 1.24 + Biotechnology approach that seeks to optimize cellular genetic and regulatory processes in order to increase the cells' production of a certain substance. + + + Metabolic engineering + + + + + + + + + + 1.24 + Molecular biology methods used to analyze the spatial organization of chromatin in a cell. + 3C technologies + 3C-based methods + Chromosome conformation analysis + Chromosome_conformation_capture + Chromatin accessibility + Chromatin accessibility assay + Chromosome conformation capture + + + + + + + + + + + 1.24 + The study of microbe gene expression within natural environments (i.e. the metatranscriptome). + Metatranscriptomics + + + Metatranscriptomics methods can be used for whole gene expression profiling of complex microbial communities. + Metatranscriptomics + + + + + + + + + + 1.24 + The reconstruction and analysis of genomic information in extinct species. + Paleogenomics + Ancestral genomes + Paleogenetics + Paleogenomics + + + + + + + + + + + 1.24 + The biological classification of organisms by categorizing them in groups ("clades") based on their most recent common ancestor. + Cladistics + Tree of life + + + Cladistics + + + + + + + + + + + + 1.24 + The study of the process and mechanism of change of biomolecules such as DNA, RNA, and proteins across generations. + Molecular_evolution + + + Molecular evolution + + + + + + + + + + + 1.24 + Immunoinformatics is the field of computational biology that deals with the study of immunoloogical questions. Immunoinformatics is at the interface between immunology and computer science. It takes advantage of computational, statistical, mathematical approaches and enhances the understanding of immunological knowledge. + Computational immunology + Immunoinformatics + This involves the study of often complex genetic traits underlying diseases involving defects in the immune system. For example, identifying target genes for therapeutic approaches, or genetic variations involved in immunological pathology. + Immunoinformatics + + + + + + + + + + 1.24 + A diagnostic imaging technique based on the application of ultrasound. + Standardized echography + Ultrasound imaging + Echography + Diagnostic sonography + Medical ultrasound + Standard echography + Ultrasonography + + + Echography + + + + + + + + + + 1.24 + Experimental approaches to determine the rates of metabolic reactions - the metabolic fluxes - within a biological entity. + Fluxomics + The "fluxome" is the complete set of metabolic fluxes in a cell, and is a dynamic aspect of phenotype. + Fluxomics + + + + + + + + + + 1.12 + An experiment for studying protein-protein interactions. + Protein_interaction_experiment + Co-immunoprecipitation + Phage display + Yeast one-hybrid + Yeast two-hybrid + + + This used to have the ID http://edamontology.org/topic_3557 but the numerical part (owing to an error) duplicated http://edamontology.org/operation_3557 ('Imputation'). ID of this concept set to http://edamontology.org/topic_3957 in EDAM 1.24. + Protein interaction experiment + + + + + + + + + + 1.25 + A DNA structural variation, specifically a duplication or deletion event, resulting in sections of the genome to be repeated, or the number of repeats in the genome to vary between individuals. + Copy_number_variation + CNV deletion + CNV duplication + CNV insertion / amplification + Complex CNV + Copy number variant + Copy number variation + + + + + + + + + + 1.25 + The branch of genetics concerned with the relationships between chromosomes and cellular behaviour, especially during mitosis and meiosis. + + + Cytogenetics + + + + + + + + + + 1.25 + The design of vaccines to protect against a particular pathogen, including antigens, delivery systems, and adjuvants to elicit a predictable immune response against specific epitopes. + Vaccinology + Rational vaccine design + Reverse vaccinology + Structural vaccinology + Structure-based immunogen design + Vaccine design + + + Vaccinology + + + + + + + + + + 1.25 + The study of immune system as a whole, its regulation and response to pathogens using genome-wide approaches. + + + Immunomics + + + + + + + + + + 1.25 + Epistasis can be defined as the ability of the genotype at one locus to supersede the phenotypic effect of a mutation at another locus. This interaction between genes can occur at different level: gene expression, protein levels, etc... + Epistatic genetic interaction + Epistatic interactions + + + Epistasis + + http://purl.bioontology.org/ontology/MSH/D004843 + + + + + + + + + 1.26 + Open science encompasses the practices of making scientific research transparent and participatory, and its outputs publicly accessible. + + + Open science + + + + + + + + + + 1.26 + Data rescue denotes digitalisation, formatting, archival, and publication of data that were not available in accessible or usable form. Examples are data from private archives, data inside publications, or in paper records stored privately or publicly. + + + Data rescue + + + + + + + + + + + 1.26 + FAIR data principles + FAIRification + FAIR data is data that meets the principles of being findable, accessible, interoperable, and reusable. + Findable, accessible, interoperable, reusable data + Open data + + + A substantially overlapping term is 'open data', i.e. publicly available data that is free to use, distribute, and create derivative work from, without restrictions. Open data does not automatically have to be FAIR (e.g. findable or interoperable), while FAIR data does in some cases not have to be publicly available without restrictions (especially sensitive personal data). + FAIR data + + + + + + + + + + + + 1.26 + Microbial mechanisms for protecting microorganisms against antimicrobial agents. + AMR + Antifungal resistance + Antiprotozoal resistance + Antiviral resistance + Extensive drug resistance (XDR) + Multidrug resistance + Multiple drug resistance (MDR) + Multiresistance + Pandrug resistance (PDR) + Total drug resistance (TDR) + + + Antimicrobial Resistance + + + + + + + + + + + 1.26 + The monitoring method for measuring electrical activity in the brain. + EEG + + + Electroencephalography + + + + + + + + + + + 1.26 + The monitoring method for measuring electrical activity in the heart. + ECG + EKG + + + Electrocardiography + + + + + + + + + + 1.26 + A method for studying biomolecules and other structures at very low (cryogenic) temperature using electron microscopy. + cryo-EM + + + Cryogenic electron microscopy + + + + + + + + + + 1.26 + Biosciences, or life sciences, include fields of study related to life, living beings, and biomolecules. + Life sciences + + + Biosciences + + + + + + + + + + + + + 1.26 + Biogeochemical cycle + The carbon cycle is the biogeochemical pathway of carbon moving through the different parts of the Earth (such as ocean, atmosphere, soil), or eventually another planet. + + + Note that the carbon-nitrogen-oxygen (CNO) cycle (https://en.wikipedia.org/wiki/CNO_cycle) is a completely different, thermonuclear reaction in stars. + Carbon cycle + + + + + + + + + + + 1.26 + Multiomics concerns integration of data from multiple omics (e.g. transcriptomics, proteomics, epigenomics). + Integrative omics + Multi-omics + Pan-omics + Panomics + + + Multiomics + + + + + + + + + + + 1.26 + With ribosome profiling, ribosome-protected mRNA fragments are analyzed with RNA-seq techniques leading to a genome-wide measurement of the translation landscape. + RIBO-seq + Ribo-Seq + RiboSeq + ribo-seq + ribosomal footprinting + translation footprinting + + + Ribosome Profiling + + + + + + + + + + 1.26 + Combined with NGS (Next Generation Sequencing) technologies, single-cell sequencing allows the study of genetic information (DNA, RNA, epigenome...) at a single cell level. It is often used for differential analysis and gene expression profiling. + Single Cell Genomics + + + Single-Cell Sequencing + + + + + + + + + + + 1.26 + The study of mechanical waves in liquids, solids, and gases. + + + Acoustics + + + + + + + + + + + + 1.26 + Interdisplinary study of behavior, precise control, and manipulation of low (microlitre) volume fluids in constrained space. + Fluidics + + + Microfluidics + + + + + + + + + + 1.26 + Genomic imprinting is a gene regulation mechanism by which a subset of genes are expressed from one of the two parental chromosomes only. Imprinted genes are organized in clusters, their silencing/activation of the imprinted loci involves epigenetic marks (DNA methylation, etc) and so-called imprinting control regions (ICR). It has been described in mammals, but also plants and insects. + Gene imprinting + + + Genomic imprinting + + + + + + + + + + + + + + + + + 1.26 + Environmental DNA (eDNA) + Environmental RNA (eRNA) + Environmental sequencing + Taxonomic profiling + Metabarcoding is the barcoding of (environmental) DNA or RNA to identify multiple taxa from the same sample. + DNA metabarcoding + Environmental metabarcoding + RNA metabarcoding + eDNA metabarcoding + eRNA metabarcoding + + + Typically, high-throughput sequencing is performed and the resulting sequence reads are matched to DNA barcodes in a reference database. + Metabarcoding + + + + + + + + + + + + + 1.2 + + An obsolete concept (redefined in EDAM). + + Needed for conversion to the OBO format. + Obsolete concept (EDAM) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + OWL format + + A serialisation format conforming to the Web Ontology Language (OWL) model. + + + RDF/XML + + + RDF/XML can be used as a standard serialisation syntax for OWL DL, but not for OWL Full. + rdf + + Resource Description Framework (RDF) XML format. + http://www.ebi.ac.uk/SWO/data/SWO_3000006 + 1.2 + + + + + + + diff --git a/edamfu/tests/edamontology.org.robot.owl b/edamfu/tests/edamontology.org.robot.owl new file mode 100644 index 0000000..397094e --- /dev/null +++ b/edamfu/tests/edamontology.org.robot.owl @@ -0,0 +1,61094 @@ + + + + + 4040 + + 03.10.2023 11:14 UTC + EDAM http://edamontology.org/ "EDAM relations, concept properties, and subsets" + EDAM_data http://edamontology.org/data_ "EDAM types of data" + EDAM_format http://edamontology.org/format_ "EDAM data formats" + EDAM_operation http://edamontology.org/operation_ "EDAM operations" + EDAM_topic http://edamontology.org/topic_ "EDAM topics" + EDAM is a community project and its development can be followed and contributed to at https://github.com/edamontology/edamontology. + EDAM is particularly suitable for semantic annotations and categorisation of diverse resources related to data analysis and management: e.g. tools, workflows, learning materials, or standards. EDAM is also useful in data management itself, for recording provenance metadata of processed data. + https://github.com/edamontology/edamontology/graphs/contributors and many more! + Hervé Ménager + Jon Ison + Matúš Kalaš + EDAM is a domain ontology of data analysis and data management in bio- and other sciences, and science-based applications. It comprises concepts related to analysis, modelling, optimisation, and data life-cycle. Targetting usability by diverse users, the structure of EDAM is relatively simple, divided into 4 main sections: Topic, Operation, Data (incl. Identifier), and Format. + application/rdf+xml + EDAM - The ontology of data analysis and management + + + 1.26_dev + + + + + + + + + + Matúš Kalaš + + + + + + + + + + + + + + + + + + + + + + + + 1.13 + true + Publication reference + 'Citation' concept property ('citation' metadata tag) contains a dereferenceable URI, preferably including a DOI, pointing to a citeable publication of the given data format. + Publication + + Citation + + + + + + + + + + + + + + true + Version in which a concept was created. + + Created in + + + + + + + + + + + + + + + + true + A comment explaining why the comment should be or was deprecated, including name of person commenting (jison, mkalas etc.). + + deprecation_comment + + + + + + + + true + 'Documentation' trailing modifier (qualifier, 'documentation') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to a page with explanation, description, documentation, or specification of the given data format. + Specification + + Documentation + + + + + + + + + + + + + + + + true + 'Example' concept property ('example' metadata tag) lists examples of valid values of types of identifiers (accessions). Applicable to some other types of data, too. + + Separated by bar ('|'). For more complex data and data formats, it can be a link to a website with examples, instead. + Example + + + + + + + + true + 'File extension' concept property ('file_extension' metadata tag) lists examples of usual file extensions of formats. + + N.B.: File extensions that are not correspondigly defined at http://filext.com are recorded in EDAM only if not in conflict with http://filext.com, and/or unique and usual within life-science computing. + Separated by bar ('|'), without a dot ('.') prefix, preferably not all capital characters. + File extension + + + + + + + + + + + + + + + + + + + + + + + + true + 'Information standard' trailing modifier (qualifier, 'information_standard') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to an information standard supported by the given data format. + Minimum information checklist + Minimum information standard + + "Supported by the given data format" here means, that the given format enables representation of data that satisfies the information standard. + Information standard + + + + + + + + true + When 'true', the concept has been proposed to be deprecated. + + deprecation_candidate + + + + + + + + true + When 'true', the concept has been proposed to be refactored. + + refactor_candidate + + + + + + + + true + When 'true', the concept has been proposed or is supported within Debian as a tag. + + isdebtag + + + + + + + + true + 'Media type' trailing modifier (qualifier, 'media_type') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to a page specifying a media type of the given data format. + MIME type + + Media type + + + + + + + + + + + + + + true + Whether terms associated with this concept are recommended for use in annotation. + + notRecommendedForAnnotation + + + + + + + + + + + + + + + + true + Version in which a concept was made obsolete. + + Obsolete since + + + + + + + + true + EDAM concept URI of the erstwhile "parent" of a now deprecated concept. + + Old parent + + + + + + + + true + EDAM concept URI of an erstwhile related concept (by has_input, has_output, has_topic, is_format_of, etc.) of a now deprecated concept. + + Old related + + + + + + + + true + 'Ontology used' concept property ('ontology_used' metadata tag) of format concepts links to a domain ontology that is used inside the given data format, or contains a note about ontology use within the format. + + Ontology used + + + + + + + + + + + + + + + + true + 'Organisation' trailing modifier (qualifier, 'organisation') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to an organisation that developed, standardised, and maintains the given data format. + Organization + + Organisation + + + + + + + + true + A comment explaining the proposed refactoring, including name of person commenting (jison, mkalas etc.). + + refactor_comment + + + + + + + + true + 'Regular expression' concept property ('regex' metadata tag) specifies the allowed values of types of identifiers (accessions). Applicable to some other types of data, too. + + Regular expression + + + + + + + + 'Related term' concept property ('related_term'; supposedly a synonym modifier in OBO format) states a related term - not necessarily closely semantically related - that users (also non-specialists) may use when searching. + + Related term + + + + + + + + + true + 'Repository' trailing modifier (qualifier, 'repository') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to the public source-code repository where the given data format is developed or maintained. + Public repository + Source-code repository + + Repository + + + + + + + + true + Name of thematic editor (http://biotools.readthedocs.io/en/latest/governance.html#registry-editors) responsible for this concept and its children. + + thematic_editor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_format B' defines for the subject A, that it has the object B as its data format. + + false + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is (or is in a role of) 'Data', or an input, output, input or output argument of an 'Operation'. Object B can either be a concept that is a 'Format', or in unexpected cases an entity outside of an ontology that is a 'Format' or is in the role of a 'Format'. In EDAM, 'has_format' is not explicitly defined between EDAM concepts, only the inverse 'is_format_of'. + has format + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_function B' defines for the subject A, that it has the object B as its function. + OBO_REL:bearer_of + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is (or is in a role of) a function, or an entity outside of an ontology that is (or is in a role of) a function specification. In the scope of EDAM, 'has_function' serves only for relating annotated entities outside of EDAM with 'Operation' concepts. + has function + + + + + + + + OBO_REL:bearer_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:bearer_of' is narrower in the sense that it only relates ontological categories (concepts) that are an 'independent_continuant' (snap:IndependentContinuant) with ontological categories that are a 'specifically_dependent_continuant' (snap:SpecificallyDependentContinuant), and broader in the sense that it relates with any borne objects not just functions of the subject. + + + + + true + In very unusual cases. + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_identifier B' defines for the subject A, that it has the object B as its identifier. + + false + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is an 'Identifier', or an entity outside of an ontology that is an 'Identifier' or is in the role of an 'Identifier'. In EDAM, 'has_identifier' is not explicitly defined between EDAM concepts, only the inverse 'is_identifier_of'. + has identifier + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_input B' defines for the subject A, that it has the object B as a necessary or actual input or input argument. + OBO_REL:has_participant + + true + Subject A can either be concept that is or has an 'Operation' function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that has an 'Operation' function or is an 'Operation'. Object B can be any concept or entity. In EDAM, only 'has_input' is explicitly defined between EDAM concepts ('Operation' 'has_input' 'Data'). The inverse, 'is_input_of', is not explicitly defined. + has input + + + + + + + OBO_REL:has_participant + 'OBO_REL:has_participant' is narrower in the sense that it only relates ontological categories (concepts) that are a 'process' (span:Process) with ontological categories that are a 'continuant' (snap:Continuant), and broader in the sense that it relates with any participating objects not just inputs or input arguments of the subject. + + + + + true + In very unusual cases. + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_output B' defines for the subject A, that it has the object B as a necessary or actual output or output argument. + OBO_REL:has_participant + + true + Subject A can either be concept that is or has an 'Operation' function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that has an 'Operation' function or is an 'Operation'. Object B can be any concept or entity. In EDAM, only 'has_output' is explicitly defined between EDAM concepts ('Operation' 'has_output' 'Data'). The inverse, 'is_output_of', is not explicitly defined. + has output + + + + + + + OBO_REL:has_participant + 'OBO_REL:has_participant' is narrower in the sense that it only relates ontological categories (concepts) that are a 'process' (span:Process) with ontological categories that are a 'continuant' (snap:Continuant), and broader in the sense that it relates with any participating objects not just outputs or output arguments of the subject. It is also not clear whether an output (result) actually participates in the process that generates it. + + + + + true + In very unusual cases. + + + + + + + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A has_topic B' defines for the subject A, that it has the object B as its topic (A is in the scope of a topic B). + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is a 'Topic', or in unexpected cases an entity outside of an ontology that is a 'Topic' or is in the role of a 'Topic'. In EDAM, only 'has_topic' is explicitly defined between EDAM concepts ('Operation' or 'Data' 'has_topic' 'Topic'). The inverse, 'is_topic_of', is not explicitly defined. + has topic + + + + + + + + + true + In very unusual cases. + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_format_of B' defines for the subject A, that it is a data format of the object B. + OBO_REL:quality_of + + false + Subject A can either be a concept that is a 'Format', or in unexpected cases an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is a 'Format' or is in the role of a 'Format'. Object B can be any concept or entity outside of an ontology that is (or is in a role of) 'Data', or an input, output, input or output argument of an 'Operation'. In EDAM, only 'is_format_of' is explicitly defined between EDAM concepts ('Format' 'is_format_of' 'Data'). The inverse, 'has_format', is not explicitly defined. + is format of + + + + + + OBO_REL:quality_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:quality_of' might be seen narrower in the sense that it only relates subjects that are a 'quality' (snap:Quality) with objects that are an 'independent_continuant' (snap:IndependentContinuant), and is broader in the sense that it relates any qualities of the object. + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_function_of B' defines for the subject A, that it is a function of the object B. + OBO_REL:function_of + OBO_REL:inheres_in + + true + Subject A can either be concept that is (or is in a role of) a function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is (or is in a role of) a function specification. Object B can be any concept or entity. Within EDAM itself, 'is_function_of' is not used. + is function of + + + + + + + OBO_REL:function_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:function_of' only relates subjects that are a 'function' (snap:Function) with objects that are an 'independent_continuant' (snap:IndependentContinuant), so for example no processes. It does not define explicitly that the subject is a function of the object. + + + + + OBO_REL:inheres_in + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:inheres_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'specifically_dependent_continuant' (snap:SpecificallyDependentContinuant) with ontological categories that are an 'independent_continuant' (snap:IndependentContinuant), and broader in the sense that it relates any borne subjects not just functions. + + + + + true + In very unusual cases. + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_identifier_of B' defines for the subject A, that it is an identifier of the object B. + + false + Subject A can either be a concept that is an 'Identifier', or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is an 'Identifier' or is in the role of an 'Identifier'. Object B can be any concept or entity outside of an ontology. In EDAM, only 'is_identifier_of' is explicitly defined between EDAM concepts (only 'Identifier' 'is_identifier_of' 'Data'). The inverse, 'has_identifier', is not explicitly defined. + is identifier of + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_input_of B' defines for the subject A, that it as a necessary or actual input or input argument of the object B. + OBO_REL:participates_in + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is or has an 'Operation' function, or an entity outside of an ontology that has an 'Operation' function or is an 'Operation'. In EDAM, 'is_input_of' is not explicitly defined between EDAM concepts, only the inverse 'has_input'. + is input of + + + + + + + OBO_REL:participates_in + 'OBO_REL:participates_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'continuant' (snap:Continuant) with ontological categories that are a 'process' (span:Process), and broader in the sense that it relates any participating subjects not just inputs or input arguments. + + + + + true + In very unusual cases. + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_output_of B' defines for the subject A, that it as a necessary or actual output or output argument of the object B. + OBO_REL:participates_in + + true + Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is or has an 'Operation' function, or an entity outside of an ontology that has an 'Operation' function or is an 'Operation'. In EDAM, 'is_output_of' is not explicitly defined between EDAM concepts, only the inverse 'has_output'. + is output of + + + + + + + OBO_REL:participates_in + 'OBO_REL:participates_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'continuant' (snap:Continuant) with ontological categories that are a 'process' (span:Process), and broader in the sense that it relates any participating subjects not just outputs or output arguments. It is also not clear whether an output (result) actually participates in the process that generates it. + + + + + true + In very unusual cases. + + + + + + + + + + + + + + + + + false + false + false + OBO_REL:is_a + 'A is_topic_of B' defines for the subject A, that it is a topic of the object B (a topic A is the scope of B). + OBO_REL:quality_of + + true + Subject A can either be a concept that is a 'Topic', or in unexpected cases an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is a 'Topic' or is in the role of a 'Topic'. Object B can be any concept or entity outside of an ontology. In EDAM, 'is_topic_of' is not explicitly defined between EDAM concepts, only the inverse 'has_topic'. + is topic of + + + + + + OBO_REL:quality_of + Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:quality_of' might be seen narrower in the sense that it only relates subjects that are a 'quality' (snap:Quality) with objects that are an 'independent_continuant' (snap:IndependentContinuant), and is broader in the sense that it relates any qualities of the object. + + + + + true + In very unusual cases. + + + + + + + + + + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A type of computational resource used in bioinformatics. + + Resource type + true + + + + + + + + + + + + beta12orEarlier + true + Information, represented in an information artefact (data record) that is 'understandable' by dedicated computational tools that can use the data as input or produce it as output. + Data record + Data set + Datum + + + Data + + + + + + + + + + + + + Data record + EDAM does not distinguish a data record (a tool-understandable information artefact) from data or datum (its content, the tool-understandable encoding of an information). + + + + + Data set + EDAM does not distinguish the multiplicity of data, such as one data item (datum) versus a collection of data (data set). + + + + + Datum + EDAM does not distinguish the multiplicity of data, such as one data item (datum) versus a collection of data (data set). + + + + + + + + + beta12orEarlier + beta12orEarlier + + A bioinformatics package or tool, e.g. a standalone application or web service. + + + Tool + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A digital data archive typically based around a relational model but sometimes using an object-oriented, tree or graph-based model. + + + Database + true + + + + + + + + + + + + + + + beta12orEarlier + An ontology of biological or bioinformatics concepts and relations, a controlled vocabulary, structured glossary etc. + + + Ontology + + + + + + + + + beta12orEarlier + 1.5 + + + A directory on disk from which files are read. + + Directory metadata + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controlled vocabulary from National Library of Medicine. The MeSH thesaurus is used to index articles in biomedical journals for the Medline/PubMED databases. + + MeSH vocabulary + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controlled vocabulary for gene names (symbols) from HUGO Gene Nomenclature Committee. + + HGNC vocabulary + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Compendium of controlled vocabularies for the biomedical domain (Unified Medical Language System). + + UMLS vocabulary + true + + + + + + + + + + + + + + + + beta12orEarlier + true + A text token, number or something else which identifies an entity, but which may not be persistent (stable) or unique (the same identifier may identify multiple things). + ID + + + + Identifier + + + + + + + + + Almost exact but limited to identifying resources, and being unambiguous. + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An entry (retrievable via URL) from a biological database. + + Database entry + true + + + + + + + + + beta12orEarlier + Mass of a molecule. + + + Molecular mass + + + + + + + + + beta12orEarlier + PDBML:pdbx_formal_charge + Net charge of a molecule. + + + Molecular charge + + + + + + + + + beta12orEarlier + A specification of a chemical structure. + Chemical structure specification + + + Chemical formula + + + + + + + + + beta12orEarlier + A QSAR quantitative descriptor (name-value pair) of chemical structure. + + + QSAR descriptors have numeric values that quantify chemical information encoded in a symbolic representation of a molecule. They are used in quantitative structure activity relationship (QSAR) applications. Many subtypes of individual descriptors (not included in EDAM) cover various types of protein properties. + QSAR descriptor + + + + + + + + + beta12orEarlier + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw molecular sequence (string of characters) which might include ambiguity, unknown positions and non-sequence characters. + + + Non-sequence characters may be used for example for gaps and translation stop. + Raw sequence + true + + + + + + + + + beta12orEarlier + SO:2000061 + A molecular sequence and associated metadata. + + + Sequence record + http://purl.bioontology.org/ontology/MSH/D058977 + + + + + + + + + beta12orEarlier + A collection of one or typically multiple molecular sequences (which can include derived data or metadata) that do not (typically) correspond to molecular sequence database records or entries and which (typically) are derived from some analytical method. + Alignment reference + SO:0001260 + + + An example is an alignment reference; one or a set of reference molecular sequences, structures, or profiles used for alignment of genomic, transcriptomic, or proteomic experimental data. + This concept may be used for arbitrary sequence sets and associated data arising from processing. + Sequence set + + + + + + + + + beta12orEarlier + 1.5 + + + A character used to replace (mask) other characters in a molecular sequence. + + Sequence mask character + true + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of sequence masking to perform. + + Sequence masking is where specific characters or positions in a molecular sequence are masked (replaced) with an another (mask character). The mask type indicates what is masked, for example regions that are not of interest or which are information-poor including acidic protein regions, basic protein regions, proline-rich regions, low compositional complexity regions, short-periodicity internal repeats, simple repeats and low complexity regions. Masked sequences are used in database search to eliminate statistically significant but biologically uninteresting hits. + Sequence mask type + true + + + + + + + + + beta12orEarlier + 1.20 + + + The strand of a DNA sequence (forward or reverse). + + The forward or 'top' strand might specify a sequence is to be used as given, the reverse or 'bottom' strand specifying the reverse complement of the sequence is to be used. + DNA sense specification + true + + + + + + + + + beta12orEarlier + 1.5 + + + A specification of sequence length(s). + + Sequence length specification + true + + + + + + + + + beta12orEarlier + 1.5 + + + Basic or general information concerning molecular sequences. + + This is used for such things as a report including the sequence identifier, type and length. + Sequence metadata + true + + + + + + + + + beta12orEarlier + How the annotation of a sequence feature (for example in EMBL or Swiss-Prot) was derived. + + + This might be the name and version of a software tool, the name of a database, or 'curated' to indicate a manual annotation (made by a human). + Sequence feature source + + + + + + + + + beta12orEarlier + A report of sequence hits and associated data from searching a database of sequences (for example a BLAST search). This will typically include a list of scores (often with statistical evaluation) and a set of alignments for the hits. + Database hits (sequence) + Sequence database hits + Sequence database search results + Sequence search hits + + + The score list includes the alignment score, percentage of the query sequence matched, length of the database sequence entry in this alignment, identifier of the database sequence entry, excerpt of the database sequence entry description etc. + Sequence search results + + + + + + + + + + beta12orEarlier + Report on the location of matches ("hits") between sequences, sequence profiles, motifs (conserved or functional patterns) and other types of sequence signatures. + Profile-profile alignment + Protein secondary database search results + Search results (protein secondary database) + Sequence motif hits + Sequence motif matches + Sequence profile alignment + Sequence profile hits + Sequence profile matches + Sequence-profile alignment + + + A "profile-profile alignment" is an alignment of two sequence profiles, each profile typically representing a sequence alignment. + A "sequence-profile alignment" is an alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment). + This includes reports of hits from a search of a protein secondary or domain database. Data associated with the search or alignment might also be included, e.g. ranked list of best-scoring sequences, a graphical representation of scores etc. + Sequence signature matches + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data files used by motif or profile methods. + + Sequence signature model + true + + + + + + + + + + + + + + + beta12orEarlier + Data concerning concerning specific or conserved pattern in molecular sequences and the classifiers used for their identification, including sequence motifs, profiles or other diagnostic element. + + + This can include metadata about a motif or sequence profile such as its name, length, technical details about the profile construction, and so on. + Sequence signature data + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment of exact matches between subsequences (words) within two or more molecular sequences. + + Sequence alignment (words) + true + + + + + + + + + beta12orEarlier + A dotplot of sequence similarities identified from word-matching or character comparison. + + + Dotplot + + + + + + + + + + + + + + + beta12orEarlier + Alignment of multiple molecular sequences. + Multiple sequence alignment + msa + + + Sequence alignment + + http://purl.bioontology.org/ontology/MSH/D016415 + http://semanticscience.org/resource/SIO_010066 + + + + + + + + + beta12orEarlier + 1.5 + + + Some simple value controlling a sequence alignment (or similar 'match') operation. + + Sequence alignment parameter + true + + + + + + + + + beta12orEarlier + A value representing molecular sequence similarity. + + + Sequence similarity score + + + + + + + + + beta12orEarlier + 1.5 + + + Report of general information on a sequence alignment, typically include a description, sequence identifiers and alignment score. + + Sequence alignment metadata + true + + + + + + + + + beta12orEarlier + An informative report of molecular sequence alignment-derived data or metadata. + Sequence alignment metadata + + + Use this for any computer-generated reports on sequence alignments, and for general information (metadata) on a sequence alignment, such as a description, sequence identifiers and alignment score. + Sequence alignment report + + + + + + + + + beta12orEarlier + "Sequence-profile alignment" and "Profile-profile alignment" are synonymous with "Sequence signature matches" which was already stated as including matches (alignment) and other data. + 1.25 or earlier + + A profile-profile alignment (each profile typically representing a sequence alignment). + + + Profile-profile alignment + true + + + + + + + + + beta12orEarlier + "Sequence-profile alignment" and "Profile-profile alignment" are synonymous with "Sequence signature matches" which was already stated as including matches (alignment) and other data. + 1.24 + + Alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment). + + + Sequence-profile alignment + true + + + + + + + + + beta12orEarlier + Moby:phylogenetic_distance_matrix + A matrix of estimated evolutionary distance between molecular sequences, such as is suitable for phylogenetic tree calculation. + Phylogenetic distance matrix + + + Methods might perform character compatibility analysis or identify patterns of similarity in an alignment or data matrix. + Sequence distance matrix + + + + + + + + + beta12orEarlier + Basic character data from which a phylogenetic tree may be generated. + + + As defined, this concept would also include molecular sequences, microsatellites, polymorphisms (RAPDs, RFLPs, or AFLPs), restriction sites and fragments + Phylogenetic character data + http://www.evolutionaryontology.org/cdao.owl#Character + + + + + + + + + + + + + + + beta12orEarlier + Moby:Tree + Moby:myTree + Moby:phylogenetic_tree + The raw data (not just an image) from which a phylogenetic tree is directly generated or plotted, such as topology, lengths (in time or in expected amounts of variance) and a confidence interval for each length. + Phylogeny + + + A phylogenetic tree is usually constructed from a set of sequences from which an alignment (or data matrix) is calculated. See also 'Phylogenetic tree image'. + Phylogenetic tree + http://purl.bioontology.org/ontology/MSH/D010802 + http://www.evolutionaryontology.org/cdao.owl#Tree + + + + + + + + + beta12orEarlier + Matrix of integer or floating point numbers for amino acid or nucleotide sequence comparison. + Substitution matrix + + + The comparison matrix might include matrix name, optional comment, height and width (or size) of matrix, an index row/column (of characters) and data rows/columns (of integers or floats). + Comparison matrix + + + + + + + + + beta12orEarlier + beta12orEarlier + + Predicted or actual protein topology represented as a string of protein secondary structure elements. + + + The location and size of the secondary structure elements and intervening loop regions is usually indicated. + Protein topology + true + + + + + + + + + beta12orEarlier + 1.8 + + Secondary structure (predicted or real) of a protein. + + + Protein features report (secondary structure) + true + + + + + + + + + beta12orEarlier + 1.8 + + Super-secondary structure of protein sequence(s). + + + Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc. + Protein features report (super-secondary) + true + + + + + + + + + beta12orEarlier + true + Alignment of the (1D representations of) secondary structure of two or more proteins. + Secondary structure alignment (protein) + + + Protein secondary structure alignment + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on protein secondary structure alignment-derived data or metadata. + + Secondary structure alignment metadata (protein) + true + + + + + + + + + + + + + + + beta12orEarlier + Moby:RNAStructML + An informative report of secondary structure (predicted or real) of an RNA molecule. + Secondary structure (RNA) + + + This includes thermodynamically stable or evolutionarily conserved structures such as knots, pseudoknots etc. + RNA secondary structure + + + + + + + + + beta12orEarlier + true + Moby:RNAStructAlignmentML + Alignment of the (1D representations of) secondary structure of two or more RNA molecules. + Secondary structure alignment (RNA) + + + RNA secondary structure alignment + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report of RNA secondary structure alignment-derived data or metadata. + + Secondary structure alignment metadata (RNA) + true + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a macromolecular tertiary (3D) structure or part of a structure. + Coordinate model + Structure data + + + The coordinate data may be predicted or real. + Structure + http://purl.bioontology.org/ontology/MSH/D015394 + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An entry from a molecular tertiary (3D) structure database. + + Tertiary structure record + true + + + + + + + + + beta12orEarlier + 1.8 + + + Results (hits) from searching a database of tertiary structure. + + Structure database search results + true + + + + + + + + + + + + + + + beta12orEarlier + Alignment (superimposition) of molecular tertiary (3D) structures. + + + A tertiary structure alignment will include the untransformed coordinates of one macromolecule, followed by the second (or subsequent) structure(s) with all the coordinates transformed (by rotation / translation) to give a superposition. + Structure alignment + + + + + + + + + beta12orEarlier + An informative report of molecular tertiary structure alignment-derived data. + + + This is a broad data type and is used a placeholder for other, more specific types. + Structure alignment report + + + + + + + + + beta12orEarlier + A value representing molecular structure similarity, measured from structure alignment or some other type of structure comparison. + + + Structure similarity score + + + + + + + + + + + + + + + beta12orEarlier + Some type of structural (3D) profile or template (representing a structure or structure alignment). + 3D profile + Structural (3D) profile + + + Structural profile + + + + + + + + + beta12orEarlier + A 3D profile-3D profile alignment (each profile representing structures or a structure alignment). + Structural profile alignment + + + Structural (3D) profile alignment + + + + + + + + + beta12orEarlier + 1.5 + + + An alignment of a sequence to a 3D profile (representing structures or a structure alignment). + + Sequence-3D profile alignment + true + + + + + + + + + beta12orEarlier + Matrix of values used for scoring sequence-structure compatibility. + + + Protein sequence-structure scoring matrix + + + + + + + + + beta12orEarlier + An alignment of molecular sequence to structure (from threading sequence(s) through 3D structure or representation of structure(s)). + + + Sequence-structure alignment + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific amino acid. + + Amino acid annotation + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific peptide. + + Peptide annotation + true + + + + + + + + + beta12orEarlier + An informative human-readable report about one or more specific protein molecules or protein structural domains, derived from analysis of primary (sequence or structural) data. + Gene product annotation + + + Protein report + + + + + + + + + beta12orEarlier + A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a protein molecule or model. + Protein physicochemical property + Protein properties + Protein sequence statistics + + + This is a broad data type and is used a placeholder for other, more specific types. Data may be based on analysis of nucleic acid sequence or structural data, for example reports on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure, protein flexibility or motion, and protein architecture (spatial arrangement of secondary structure). + Protein property + + + + + + + + + beta12orEarlier + 1.8 + + 3D structural motifs in a protein. + + Protein structural motifs and surfaces + true + + + + + + + + + beta12orEarlier + 1.5 + + + Data concerning the classification of the sequences and/or structures of protein structural domain(s). + + Protein domain classification + true + + + + + + + + + beta12orEarlier + 1.8 + + structural domains or 3D folds in a protein or polypeptide chain. + + + Protein features report (domains) + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on architecture (spatial arrangement of secondary structure) of a protein structure. + + Protein architecture report + true + + + + + + + + + beta12orEarlier + 1.8 + + A report on an analysis or model of protein folding properties, folding pathways, residues or sites that are key to protein folding, nucleation or stabilisation centers etc. + + + Protein folding report + true + + + + + + + + + beta12orEarlier + beta13 + + + Data on the effect of (typically point) mutation on protein folding, stability, structure and function. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein features (mutation) + true + + + + + + + + + beta12orEarlier + Protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc. + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein interaction raw data + + + + + + + + + + + + + + + beta12orEarlier + Data concerning the interactions (predicted or known) within or between a protein, structural domain or part of a protein. This includes intra- and inter-residue contacts and distances, as well as interactions with other proteins and non-protein entities such as nucleic acid, metal atoms, water, ions etc. + Protein interaction record + Protein interaction report + Protein report (interaction) + Protein-protein interaction data + Atom interaction data + Protein non-covalent interactions report + Residue interaction data + + + Protein interaction data + + + + + + + + + + + + + + + beta12orEarlier + Protein classification data + An informative report on a specific protein family or other classification or group of protein sequences or structures. + Protein family annotation + + + Protein family report + + + + + + + + + beta12orEarlier + The maximum initial velocity or rate of a reaction. It is the limiting velocity as substrate concentrations get very large. + + + Vmax + + + + + + + + + beta12orEarlier + Km is the concentration (usually in Molar units) of substrate that leads to half-maximal velocity of an enzyme-catalysed reaction. + + + Km + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific nucleotide base. + + Nucleotide base annotation + true + + + + + + + + + beta12orEarlier + A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a nucleic acid molecule. + Nucleic acid physicochemical property + GC-content + Nucleic acid property (structural) + Nucleic acid structural property + + + Nucleic acid structural properties stiffness, curvature, twist/roll data or other conformational parameters or properties. + This is a broad data type and is used a placeholder for other, more specific types. + Nucleic acid property + + + + + + + + + + + + + + + beta12orEarlier + Data derived from analysis of codon usage (typically a codon usage table) of DNA sequences. + Codon usage report + + + This is a broad data type and is used a placeholder for other, more specific types. + Codon usage data + + + + + + + + + beta12orEarlier + Moby:GeneInfo + Moby:gene + Moby_namespace:Human_Readable_Description + A report on predicted or actual gene structure, regions which make an RNA product and features such as promoters, coding regions, splice sites etc. + Gene and transcript structure (report) + Gene annotation + Gene features report + Gene function (report) + Gene structure (repot) + Nucleic acid features (gene and transcript structure) + + + This includes any report on a particular locus or gene. This might include the gene name, description, summary and so on. It can include details about the function of a gene, such as its encoded protein or a functional classification of the gene sequence along according to the encoded protein(s). + Gene report + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on the classification of nucleic acid / gene sequences according to the functional classification of their gene products. + + Gene classification + true + + + + + + + + + beta12orEarlier + 1.8 + + stable, naturally occurring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms. + + + DNA variation + true + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific chromosome. + + + This includes basic information. e.g. chromosome number, length, karyotype features, chromosome sequence etc. + Chromosome report + + + + + + + + + beta12orEarlier + A human-readable collection of information about the set of genes (or allelic forms) present in an individual, organism or cell and associated with a specific physical characteristic, or a report concerning an organisms traits and phenotypes. + Genotype/phenotype annotation + + + Genotype/phenotype report + + + + + + + + + beta12orEarlier + 1.8 + + PCR experiments, e.g. quantitative real-time PCR. + + + PCR experiment report + true + + + + + + + + + + beta12orEarlier + Fluorescence trace data generated by an automated DNA sequencer, which can be interpreted as a molecular sequence (reads), given associated sequencing metadata such as base-call quality scores. + + + This is the raw data produced by a DNA sequencing machine. + Sequence trace + + + + + + + + + beta12orEarlier + An assembly of fragments of a (typically genomic) DNA sequence. + Contigs + SO:0000353 + SO:0001248 + + + Typically, an assembly is a collection of contigs (for example ESTs and genomic DNA fragments) that are ordered, aligned and merged. Annotation of the assembled sequence might be included. + Sequence assembly + + + + + + SO:0001248 + Perhaps surprisingly, the definition of 'SO:assembly' is narrower than the 'SO:sequence_assembly'. + + + + + + + + + beta12orEarlier + Radiation hybrid scores (RH) scores for one or more markers. + Radiation Hybrid (RH) scores + + + Radiation Hybrid (RH) scores are used in Radiation Hybrid mapping. + RH scores + + + + + + + + + beta12orEarlier + A human-readable collection of information about the linkage of alleles. + Gene annotation (linkage) + Linkage disequilibrium (report) + + + This includes linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome). + Genetic linkage report + + + + + + + + + beta12orEarlier + Data quantifying the level of expression of (typically) multiple genes, derived for example from microarray experiments. + Gene expression pattern + + + Gene expression profile + + + + + + + + + beta12orEarlier + 1.8 + + microarray experiments including conditions, protocol, sample:data relationships etc. + + + Microarray experiment report + true + + + + + + + + + beta12orEarlier + beta13 + + + Data on oligonucleotide probes (typically for use with DNA microarrays). + + Oligonucleotide probe data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Output from a serial analysis of gene expression (SAGE) experiment. + + SAGE experimental data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Massively parallel signature sequencing (MPSS) data. + + MPSS experimental data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Sequencing by synthesis (SBS) data. + + SBS experimental data + true + + + + + + + + + beta12orEarlier + 1.14 + + Tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. Typically this is the sequencing-based expression profile annotated with gene identifiers. + + + Sequence tag profile (with gene assignment) + true + + + + + + + + + beta12orEarlier + Protein X-ray crystallographic data + X-ray crystallography data. + + + Electron density map + + + + + + + + + beta12orEarlier + Nuclear magnetic resonance (NMR) raw data, typically for a protein. + Protein NMR data + + + Raw NMR data + + + + + + + + + beta12orEarlier + Protein secondary structure from protein coordinate or circular dichroism (CD) spectroscopic data. + CD spectrum + Protein circular dichroism (CD) spectroscopic data + + + CD spectra + + + + + + + + + + + + + + + beta12orEarlier + Volume map data from electron microscopy. + 3D volume map + EM volume map + Electron microscopy volume map + + + Volume map + + + + + + + + + beta12orEarlier + 1.19 + + Annotation on a structural 3D model (volume map) from electron microscopy. + + + Electron microscopy model + true + + + + + + + + + + + + + + + beta12orEarlier + Two-dimensional gel electrophoresis image. + + + 2D PAGE image + + + + + + + + + + + + + + + beta12orEarlier + Spectra from mass spectrometry. + Mass spectrometry spectra + + + Mass spectrum + + + + + + + + + + + + + + + + beta12orEarlier + A set of peptide masses (peptide mass fingerprint) from mass spectrometry. + Peak list + Protein fingerprint + Molecular weights standard fingerprint + + + A molecular weight standard fingerprint is standard protonated molecular masses e.g. from trypsin (modified porcine trypsin, Promega) and keratin peptides. + Peptide mass fingerprint + + + + + + + + + + + + + + + + beta12orEarlier + Protein or peptide identifications with evidence supporting the identifications, for example from comparing a peptide mass fingerprint (from mass spectrometry) to a sequence database, or the set of typical spectra one obtains when running a protein through a mass spectrometer. + 'Protein identification' + Peptide spectrum match + + + Peptide identification + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report about a specific biological pathway or network, typically including a map (diagram) of the pathway. + + Pathway or network annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A map (typically a diagram) of a biological pathway. + + Biological pathway map + true + + + + + + + + + beta12orEarlier + 1.5 + + + A definition of a data resource serving one or more types of data, including metadata and links to the resource or data proper. + + Data resource definition + true + + + + + + + + + beta12orEarlier + Basic information, annotation or documentation concerning a workflow (but not the workflow itself). + + + Workflow metadata + + + + + + + + + + + + + + + beta12orEarlier + A biological model represented in mathematical terms. + Biological model + + + Mathematical model + + + + + + + + + beta12orEarlier + A value representing estimated statistical significance of some observed data; typically sequence database hits. + + + Statistical estimate score + + + + + + + + + beta12orEarlier + 1.5 + + + Resource definition for an EMBOSS database. + + EMBOSS database resource definition + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a version of software or data, for example name, version number and release date. + + Development status / maturity may be part of the version information, for example in case of tools, standards, or some data records. + Version information + true + + + + + + + + + beta12orEarlier + A mapping of the accession numbers (or other database identifier) of entries between (typically) two biological or biomedical databases. + + + The cross-mapping is typically a table where each row is an accession number and each column is a database being cross-referenced. The cells give the accession number or identifier of the corresponding entry in a database. If a cell in the table is not filled then no mapping could be found for the database. Additional information might be given on version, date etc. + Database cross-mapping + + + + + + + + + + + + + + + beta12orEarlier + An index of data of biological relevance. + + + Data index + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information concerning an analysis of an index of biological data. + Database index annotation + + + Data index report + + + + + + + + + beta12orEarlier + Basic information on bioinformatics database(s) or other data sources such as name, type, description, URL etc. + + + Database metadata + + + + + + + + + beta12orEarlier + Basic information about one or more bioinformatics applications or packages, such as name, type, description, or other documentation. + + + Tool metadata + + + + + + + + + beta12orEarlier + 1.5 + + + Textual metadata on a submitted or completed job. + + Job metadata + true + + + + + + + + + beta12orEarlier + Textual metadata on a software author or end-user, for example a person or other software. + + + User metadata + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific chemical compound. + Chemical compound annotation + Chemical structure report + Small molecule annotation + + + Small molecule report + + + + + + + + + beta12orEarlier + A human-readable collection of information about a particular strain of organism cell line including plants, virus, fungi and bacteria. The data typically includes strain number, organism type, growth conditions, source and so on. + Cell line annotation + Organism strain data + + + Cell line report + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report about a specific scent. + + Scent annotation + true + + + + + + + + + beta12orEarlier + A term (name) from an ontology. + Ontology class name + Ontology terms + + + Ontology term + + + + + + + + + beta12orEarlier + Data concerning or derived from a concept from a biological ontology. + Ontology class metadata + Ontology term metadata + + + Ontology concept data + + + + + + + + + beta12orEarlier + Moby:BooleanQueryString + Moby:Global_Keyword + Moby:QueryString + Moby:Wildcard_Query + Keyword(s) or phrase(s) used (typically) for text-searching purposes. + Phrases + Term + + + Boolean operators (AND, OR and NOT) and wildcard characters may be allowed. + Keyword + + + + + + + + + beta12orEarlier + Moby:GCP_SimpleCitation + Moby:Publication + Bibliographic data that uniquely identifies a scientific article, book or other published material. + Bibliographic reference + Reference + + + A bibliographic reference might include information such as authors, title, journal name, date and (possibly) a link to the abstract or full-text of the article if available. + Citation + + + + + + + + + + beta12orEarlier + A scientific text, typically a full text article from a scientific journal. + Article text + Scientific article + + + Article + + + + + + + + + + beta12orEarlier + A human-readable collection of information resulting from text mining. + Text mining output + + + A text mining abstract will typically include an annotated a list of words or sentences extracted from one or more scientific articles. + Text mining report + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of a biological entity or phenomenon. + + Entity identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of a data resource. + + Data resource identifier + true + + + + + + + + + beta12orEarlier + true + An identifier that identifies a particular type of data. + Identifier (typed) + + + + This concept exists only to assist EDAM maintenance and navigation in graphical browsers. It does not add semantic information. This branch provides an alternative organisation of the concepts nested under 'Accession' and 'Name'. All concepts under here are already included under 'Accession' or 'Name'. + Identifier (by type of entity) + + + + + + + + + beta12orEarlier + true + An identifier of a bioinformatics tool, e.g. an application or web service. + + + + Tool identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a discrete entity (any biological thing with a distinct, discrete physical existence). + + Discrete entity identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of an entity feature (a physical part or region of a discrete biological entity, or a feature that can be mapped to such a thing). + + Entity feature identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a collection of discrete biological entities. + + Entity collection identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a physical, observable biological occurrence or event. + + Phenomenon identifier + true + + + + + + + + + beta12orEarlier + true + Name or other identifier of a molecule. + + + + Molecule identifier + + + + + + + + + beta12orEarlier + true + Identifier (e.g. character symbol) of a specific atom. + Atom identifier + + + + Atom ID + + + + + + + + + + beta12orEarlier + true + Name of a specific molecule. + + + + Molecule name + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type a molecule. + + For example, 'Protein', 'DNA', 'RNA' etc. + Molecule type + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Unique identifier of a chemical compound. + + Chemical identifier + true + + + + + + + + + + + + + + + + beta12orEarlier + Name of a chromosome. + + + + Chromosome name + + + + + + + + + beta12orEarlier + true + Identifier of a peptide chain. + + + + Peptide identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a protein. + + + + Protein identifier + + + + + + + + + + beta12orEarlier + Unique name of a chemical compound. + Chemical name + + + + Compound name + + + + + + + + + beta12orEarlier + Unique registry number of a chemical compound. + + + + Chemical registry number + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Code word for a ligand, for example from a PDB file. + + Ligand identifier + true + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a drug. + + + + Drug identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an amino acid. + Residue identifier + + + + Amino acid identifier + + + + + + + + + beta12orEarlier + true + Name or other identifier of a nucleotide. + + + + Nucleotide identifier + + + + + + + + + beta12orEarlier + true + Identifier of a monosaccharide. + + + + Monosaccharide identifier + + + + + + + + + beta12orEarlier + Unique name from Chemical Entities of Biological Interest (ChEBI) of a chemical compound. + ChEBI chemical name + + + + This is the recommended chemical name for use for example in database annotation. + Chemical name (ChEBI) + + + + + + + + + beta12orEarlier + IUPAC recommended name of a chemical compound. + IUPAC chemical name + + + + Chemical name (IUPAC) + + + + + + + + + beta12orEarlier + International Non-proprietary Name (INN or 'generic name') of a chemical compound, assigned by the World Health Organisation (WHO). + INN chemical name + + + + Chemical name (INN) + + + + + + + + + beta12orEarlier + Brand name of a chemical compound. + Brand chemical name + + + + Chemical name (brand) + + + + + + + + + beta12orEarlier + Synonymous name of a chemical compound. + Synonymous chemical name + + + + Chemical name (synonymous) + + + + + + + + + + + beta12orEarlier + CAS registry number of a chemical compound; a unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service. + CAS chemical registry number + Chemical registry number (CAS) + + + + CAS number + + + + + + + + + + beta12orEarlier + Beilstein registry number of a chemical compound. + Beilstein chemical registry number + + + + Chemical registry number (Beilstein) + + + + + + + + + + beta12orEarlier + Gmelin registry number of a chemical compound. + Gmelin chemical registry number + + + + Chemical registry number (Gmelin) + + + + + + + + + beta12orEarlier + 3-letter code word for a ligand (HET group) from a PDB file, for example ATP. + Component identifier code + Short ligand name + + + + HET group name + + + + + + + + + beta12orEarlier + String of one or more ASCII characters representing an amino acid. + + + + Amino acid name + + + + + + + + + + beta12orEarlier + String of one or more ASCII characters representing a nucleotide. + + + + Nucleotide code + + + + + + + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_strand_id + WHATIF: chain + Identifier of a polypeptide chain from a protein. + Chain identifier + PDB chain identifier + PDB strand id + Polypeptide chain identifier + Protein chain identifier + + + + This is typically a character (for the chain) appended to a PDB identifier, e.g. 1cukA + Polypeptide chain ID + + + + + + + + + + beta12orEarlier + Name of a protein. + + + + Protein name + + + + + + + + + beta12orEarlier + Name or other identifier of an enzyme or record from a database of enzymes. + + + + Enzyme identifier + + + + + + + + + + beta12orEarlier + [0-9]+\.-\.-\.-|[0-9]+\.[0-9]+\.-\.-|[0-9]+\.[0-9]+\.[0-9]+\.-|[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+ + Moby:Annotated_EC_Number + Moby:EC_Number + An Enzyme Commission (EC) number of an enzyme. + EC + EC code + Enzyme Commission number + + + + EC number + + + + + + + + + + beta12orEarlier + Name of an enzyme. + + + + Enzyme name + + + + + + + + + beta12orEarlier + Name of a restriction enzyme. + + + + Restriction enzyme name + + + + + + + + + beta12orEarlier + 1.5 + + + A specification (partial or complete) of one or more positions or regions of a molecular sequence or map. + + Sequence position specification + true + + + + + + + + + beta12orEarlier + A unique identifier of molecular sequence feature, for example an ID of a feature that is unique within the scope of the GFF file. + + + + Sequence feature ID + + + + + + + + + beta12orEarlier + PDBML:_atom_site.id + WHATIF: PDBx_atom_site + WHATIF: number + A position of one or more points (base or residue) in a sequence, or part of such a specification. + SO:0000735 + + + Sequence position + + + + + + + + + beta12orEarlier + Specification of range(s) of sequence positions. + + + Sequence range + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of an nucleic acid feature. + + Nucleic acid feature identifier + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name or other identifier of a protein feature. + + Protein feature identifier + true + + + + + + + + + beta12orEarlier + The type of a sequence feature, typically a term or accession from the Sequence Ontology, for example an EMBL or Swiss-Prot sequence feature key. + Sequence feature method + Sequence feature type + + + A feature key indicates the biological nature of the feature or information about changes to or versions of the sequence. + Sequence feature key + + + + + + + + + beta12orEarlier + Typically one of the EMBL or Swiss-Prot feature qualifiers. + + + Feature qualifiers hold information about a feature beyond that provided by the feature key and location. + Sequence feature qualifier + + + + + + + + + + + beta12orEarlier + A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user. Typically an EMBL or Swiss-Prot feature label. + Sequence feature name + + + A feature label identifies a feature of a sequence database entry. When used with the database name and the entry's primary accession number, it is a unique identifier of that feature. + Sequence feature label + + + + + + + + + + beta12orEarlier + The name of a sequence feature-containing entity adhering to the standard feature naming scheme used by all EMBOSS applications. + UFO + + + EMBOSS Uniform Feature Object + + + + + + + + + beta12orEarlier + beta12orEarlier + + + String of one or more ASCII characters representing a codon. + + Codon name + true + + + + + + + + + + + + + + + beta12orEarlier + true + Moby:GeneAccessionList + An identifier of a gene, such as a name/symbol or a unique identifier of a gene in a database. + + + + Gene identifier + + + + + + + + + beta12orEarlier + Moby_namespace:Global_GeneCommonName + Moby_namespace:Global_GeneSymbol + The short name of a gene; a single word that does not contain white space characters. It is typically derived from the gene name. + + + + Gene symbol + + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs:LocusID + http://www.geneontology.org/doc/GO.xrf_abbs:NCBI_Gene + An NCBI unique identifier of a gene. + Entrez gene ID + Gene identifier (Entrez) + Gene identifier (NCBI) + NCBI gene ID + NCBI geneid + + + + Gene ID (NCBI) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An NCBI RefSeq unique identifier of a gene. + + Gene identifier (NCBI RefSeq) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An NCBI UniGene unique identifier of a gene. + + Gene identifier (NCBI UniGene) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An Entrez unique identifier of a gene. + + Gene identifier (Entrez) + true + + + + + + + + + + beta12orEarlier + Identifier of a gene or feature from the CGD database. + CGD ID + + + + Gene ID (CGD) + + + + + + + + + + beta12orEarlier + Identifier of a gene from DictyBase. + + + + Gene ID (DictyBase) + + + + + + + + + + + beta12orEarlier + Unique identifier for a gene (or other feature) from the Ensembl database. + Gene ID (Ensembl) + + + + Ensembl gene ID + + + + + + + + + + + beta12orEarlier + S[0-9]+ + Identifier of an entry from the SGD database. + SGD identifier + + + + Gene ID (SGD) + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9\.-]* + Moby_namespace:GeneDB + Identifier of a gene from the GeneDB database. + GeneDB identifier + + + + Gene ID (GeneDB) + + + + + + + + + + + beta12orEarlier + Identifier of an entry from the TIGR database. + + + + TIGR identifier + + + + + + + + + + beta12orEarlier + Gene:[0-9]{7} + Identifier of an gene from the TAIR database. + + + + TAIR accession (gene) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a protein structural domain. + + + + This is typically a character or string concatenated with a PDB identifier and a chain identifier. + Protein domain ID + + + + + + + + + + beta12orEarlier + Identifier of a protein domain (or other node) from the SCOP database. + + + + SCOP domain identifier + + + + + + + + + beta12orEarlier + 1nr3A00 + Identifier of a protein domain from CATH. + CATH domain identifier + + + + CATH domain ID + + + + + + + + + beta12orEarlier + A SCOP concise classification string (sccs) is a compact representation of a SCOP domain classification. + + + + An scss includes the class (alphabetical), fold, superfamily and family (all numerical) to which a given domain belongs. + SCOP concise classification string (sccs) + + + + + + + + + beta12orEarlier + 33229 + Unique identifier (number) of an entry in the SCOP hierarchy, for example 33229. + SCOP unique identifier + sunid + + + + A sunid uniquely identifies an entry in the SCOP hierarchy, including leaves (the SCOP domains) and higher level nodes including entries corresponding to the protein level. + SCOP sunid + + + + + + + + + beta12orEarlier + 3.30.1190.10.1.1.1.1.1 + A code number identifying a node from the CATH database. + CATH code + CATH node identifier + + + + CATH node ID + + + + + + + + + beta12orEarlier + The name of a biological kingdom (Bacteria, Archaea, or Eukaryotes). + + + + Kingdom name + + + + + + + + + beta12orEarlier + The name of a species (typically a taxonomic group) of organism. + Organism species + + + + Species name + + + + + + + + + + beta12orEarlier + The name of a strain of an organism variant, typically a plant, virus or bacterium. + + + + Strain name + + + + + + + + + beta12orEarlier + true + A string of characters that name or otherwise identify a resource on the Internet. + URIs + + + URI + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a biological or bioinformatics database. + Database identifier + + + + Database ID + + + + + + + + + beta12orEarlier + The name of a directory. + + + + Directory name + + + + + + + + + beta12orEarlier + The name (or part of a name) of a file (of any type). + + + + File name + + + + + + + + + + + + + + + + beta12orEarlier + Name of an ontology of biological or bioinformatics concepts and relations. + + + + Ontology name + + + + + + + + + beta12orEarlier + Moby:Link + Moby:URL + A Uniform Resource Locator (URL). + + + URL + + + + + + + + + beta12orEarlier + A Uniform Resource Name (URN). + + + URN + + + + + + + + + beta12orEarlier + A Life Science Identifier (LSID) - a unique identifier of some data. + Life Science Identifier + + + LSIDs provide a standard way to locate and describe data. An LSID is represented as a Uniform Resource Name (URN) with the following format: URN:LSID:<Authority>:<Namespace>:<ObjectID>[:<Version>] + LSID + + + + + + + + + + beta12orEarlier + The name of a biological or bioinformatics database. + + + + Database name + + + + + + + + + beta12orEarlier + beta13 + + + The name of a molecular sequence database. + + Sequence database name + true + + + + + + + + + beta12orEarlier + The name of a file (of any type) with restricted possible values. + + + + Enumerated file name + + + + + + + + + beta12orEarlier + The extension of a file name. + + + + A file extension is the characters appearing after the final '.' in the file name. + File name extension + + + + + + + + + beta12orEarlier + The base name of a file. + + + + A file base name is the file name stripped of its directory specification and extension. + File base name + + + + + + + + + + + + + + + + beta12orEarlier + Name of a QSAR descriptor. + + + + QSAR descriptor name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of an entry from a database where the same type of identifier is used for objects (data) of different semantic type. + + This concept is required for completeness. It should never have child concepts. + Database entry identifier + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of molecular sequence(s) or entries from a molecular sequence database. + + + + Sequence identifier + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a set of molecular sequence(s). + + + + Sequence set ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Identifier of a sequence signature (motif or profile) for example from a database of sequence patterns. + + Sequence signature identifier + true + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a molecular sequence alignment, for example a record from an alignment database. + + + + Sequence alignment ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of a phylogenetic distance matrix. + + Phylogenetic distance matrix identifier + true + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a phylogenetic tree for example from a phylogenetic tree database. + + + + Phylogenetic tree ID + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a comparison matrix. + Substitution matrix identifier + + + + Comparison matrix identifier + + + + + + + + + beta12orEarlier + true + A unique and persistent identifier of a molecular tertiary structure, typically an entry from a structure database. + + + + Structure ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier or name of a structural (3D) profile or template (representing a structure or structure alignment). + Structural profile identifier + + + + Structural (3D) profile ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of tertiary structure alignments. + + + + Structure alignment ID + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an index of amino acid physicochemical and biochemical property data. + + + + Amino acid index ID + + + + + + + + + + + + + + + beta12orEarlier + true + Molecular interaction ID + Identifier of a report of protein interactions from a protein interaction database (typically). + + + + Protein interaction ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a protein family. + Protein secondary database record identifier + + + + Protein family identifier + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Unique name of a codon usage table. + + + + Codon usage table name + + + + + + + + + + beta12orEarlier + true + Identifier of a transcription factor (or a TF binding site). + + + + Transcription factor identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of microarray data. + + + + Experiment annotation ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of electron microscopy data. + + + + Electron microscopy model ID + + + + + + + + + + + + + + + beta12orEarlier + true + Accession of a report of gene expression (e.g. a gene expression profile) from a database. + Gene expression profile identifier + + + + Gene expression report ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of genotypes and phenotypes. + + + + Genotype and phenotype annotation ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of biological pathways or networks. + + + + Pathway or network identifier + + + + + + + + + beta12orEarlier + true + Identifier of a biological or biomedical workflow, typically from a database of workflows. + + + + Workflow ID + + + + + + + + + beta12orEarlier + true + Identifier of a data type definition from some provider. + Data resource definition identifier + + + + Data resource definition ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a mathematical model, typically an entry from a database. + Biological model identifier + + + + Biological model ID + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of chemicals. + Chemical compound identifier + Compound ID + Small molecule identifier + + + + Compound identifier + + + + + + + + + beta12orEarlier + A unique (typically numerical) identifier of a concept in an ontology of biological or bioinformatics concepts and relations. + + + + Ontology concept ID + + + + + + + + + + + + + + + beta12orEarlier + true + Unique identifier of a scientific article. + Article identifier + + + + Article ID + + + + + + + + + + beta12orEarlier + FB[a-zA-Z_0-9]{2}[0-9]{7} + Identifier of an object from the FlyBase database. + + + + FlyBase ID + + + + + + + + + + beta12orEarlier + Name of an object from the WormBase database, usually a human-readable name. + + + + WormBase name + + + + + + + + + beta12orEarlier + Class of an object from the WormBase database. + + + + A WormBase class describes the type of object such as 'sequence' or 'protein'. + WormBase class + + + + + + + + + beta12orEarlier + true + A persistent, unique identifier of a molecular sequence database entry. + Sequence accession number + + + + Sequence accession + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing a type of molecular sequence. + + Sequence type might reflect the molecule (protein, nucleic acid etc) or the sequence itself (gapped, ambiguous etc). + Sequence type + true + + + + + + + + + + beta12orEarlier + The name of a sequence-based entity adhering to the standard sequence naming scheme used by all EMBOSS applications. + EMBOSS USA + + + + EMBOSS Uniform Sequence Address + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a protein sequence database entry. + Protein sequence accession number + + + + Sequence accession (protein) + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a nucleotide sequence database entry. + Nucleotide sequence accession number + + + + Sequence accession (nucleic acid) + + + + + + + + + + beta12orEarlier + (NC|AC|NG|NT|NW|NZ|NM|NR|XM|XR|NP|AP|XP|YP|ZP)_[0-9]+ + Accession number of a RefSeq database entry. + RefSeq ID + + + + RefSeq accession + + + + + + + + + beta12orEarlier + 1.0 + + + Accession number of a UniProt (protein sequence) database entry. May contain version or isoform number. + + UniProt accession (extended) + true + + + + + + + + + + beta12orEarlier + An identifier of PIR sequence database entry. + PIR ID + PIR accession number + + + + PIR identifier + + + + + + + + + beta12orEarlier + 1.2 + + Identifier of a TREMBL sequence database entry. + + + TREMBL accession + true + + + + + + + + + beta12orEarlier + Primary identifier of a Gramene database entry. + Gramene primary ID + + + + Gramene primary identifier + + + + + + + + + + beta12orEarlier + Identifier of a (nucleic acid) entry from the EMBL/GenBank/DDBJ databases. + + + + EMBL/GenBank/DDBJ ID + + + + + + + + + + beta12orEarlier + A unique identifier of an entry (gene cluster) from the NCBI UniGene database. + UniGene ID + UniGene cluster ID + UniGene identifier + + + + Sequence cluster ID (UniGene) + + + + + + + + + + + beta12orEarlier + Identifier of a dbEST database entry. + dbEST ID + + + + dbEST accession + + + + + + + + + + beta12orEarlier + Identifier of a dbSNP database entry. + dbSNP identifier + + + + dbSNP ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The EMBOSS type of a molecular sequence. + + See the EMBOSS documentation (http://emboss.sourceforge.net/) for a definition of what this includes. + EMBOSS sequence type + true + + + + + + + + + beta12orEarlier + 1.5 + + + List of EMBOSS Uniform Sequence Addresses (EMBOSS listfile). + + EMBOSS listfile + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a cluster of molecular sequence(s). + + + + Sequence cluster ID + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the COG database. + COG ID + + + + Sequence cluster ID (COG) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a sequence motif, for example an entry from a motif database. + + + + Sequence motif identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a sequence profile. + + + + A sequence profile typically represents a sequence alignment. + Sequence profile ID + + + + + + + + + beta12orEarlier + Identifier of an entry from the ELMdb database of protein functional sites. + + + + ELM ID + + + + + + + + + beta12orEarlier + PS[0-9]{5} + Accession number of an entry from the Prosite database. + Prosite ID + + + + Prosite accession number + + + + + + + + + + + + + + + + beta12orEarlier + Unique identifier or name of a HMMER hidden Markov model. + + + + HMMER hidden Markov model ID + + + + + + + + + + beta12orEarlier + Unique identifier or name of a profile from the JASPAR database. + + + + JASPAR profile ID + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a sequence alignment. + + Possible values include for example the EMBOSS alignment types, BLAST alignment types and so on. + Sequence alignment type + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The type of a BLAST sequence alignment. + + BLAST sequence alignment type + true + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a phylogenetic tree. + + For example 'nj', 'upgmp' etc. + Phylogenetic tree type + true + + + + + + + + + + beta12orEarlier + Accession number of an entry from the TreeBASE database. + + + + TreeBASE study accession number + + + + + + + + + + beta12orEarlier + Accession number of an entry from the TreeFam database. + + + + TreeFam accession number + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a comparison matrix. + + For example 'blosum', 'pam', 'gonnet', 'id' etc. Comparison matrix type may be required where a series of matrices of a certain type are used. + Comparison matrix type + true + + + + + + + + + + + + + + + + beta12orEarlier + Unique name or identifier of a comparison matrix. + Substitution matrix name + + + + See for example http://www.ebi.ac.uk/Tools/webservices/help/matrix. + Comparison matrix name + + + + + + + + + + beta12orEarlier + [0-9][a-zA-Z_0-9]{3} + An identifier of an entry from the PDB database. + PDB identifier + PDBID + + + + A PDB identification code which consists of 4 characters, the first of which is a digit in the range 0 - 9; the remaining 3 are alphanumeric, and letters are upper case only. (source: https://cdn.rcsb.org/wwpdb/docs/documentation/file-format/PDB_format_1996.pdf) + PDB ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the AAindex database. + + + + AAindex ID + + + + + + + + + + beta12orEarlier + Accession number of an entry from the BIND database. + + + + BIND accession number + + + + + + + + + + beta12orEarlier + EBI\-[0-9]+ + Accession number of an entry from the IntAct database. + + + + IntAct accession number + + + + + + + + + + beta12orEarlier + Name of a protein family. + + + + Protein family name + + + + + + + + + + + + + + + beta12orEarlier + Name of an InterPro entry, usually indicating the type of protein matches for that entry. + + + + InterPro entry name + + + + + + + + + + + + + + + + beta12orEarlier + IPR015590 + IPR[0-9]{6} + Primary accession number of an InterPro entry. + InterPro primary accession + InterPro primary accession number + + + + Every InterPro entry has a unique accession number to provide a persistent citation of database records. + InterPro accession + + + + + + + + + + + + + + + beta12orEarlier + Secondary accession number of an InterPro entry. + InterPro secondary accession number + + + + InterPro secondary accession + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the Gene3D database. + + + + Gene3D ID + + + + + + + + + + beta12orEarlier + PIRSF[0-9]{6} + Unique identifier of an entry from the PIRSF database. + + + + PIRSF ID + + + + + + + + + + beta12orEarlier + PR[0-9]{5} + The unique identifier of an entry in the PRINTS database. + + + + PRINTS code + + + + + + + + + + beta12orEarlier + PF[0-9]{5} + Accession number of a Pfam entry. + + + + Pfam accession number + + + + + + + + + + beta12orEarlier + SM[0-9]{5} + Accession number of an entry from the SMART database. + + + + SMART accession number + + + + + + + + + + beta12orEarlier + Unique identifier (number) of a hidden Markov model from the Superfamily database. + + + + Superfamily hidden Markov model number + + + + + + + + + + beta12orEarlier + Accession number of an entry (family) from the TIGRFam database. + TIGRFam accession number + + + + TIGRFam ID + + + + + + + + + + beta12orEarlier + PD[0-9]+ + A ProDom domain family accession number. + + + + ProDom is a protein domain family database. + ProDom accession number + + + + + + + + + + beta12orEarlier + Identifier of an entry from the TRANSFAC database. + + + + TRANSFAC accession number + + + + + + + + + beta12orEarlier + [AEP]-[a-zA-Z_0-9]{4}-[0-9]+ + Accession number of an entry from the ArrayExpress database. + ArrayExpress experiment ID + + + + ArrayExpress accession number + + + + + + + + + beta12orEarlier + [0-9]+ + PRIDE experiment accession number. + + + + PRIDE experiment accession number + + + + + + + + + + beta12orEarlier + Identifier of an entry from the EMDB electron microscopy database. + + + + EMDB ID + + + + + + + + + + beta12orEarlier + [GDS|GPL|GSE|GSM][0-9]+ + Accession number of an entry from the GEO database. + + + + GEO accession number + + + + + + + + + + beta12orEarlier + Identifier of an entry from the GermOnline database. + + + + GermOnline ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the EMAGE database. + + + + EMAGE ID + + + + + + + + + beta12orEarlier + true + Accession number of an entry from a database of disease. + + + + Disease ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the HGVbase database. + + + + HGVbase ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry from the HIVDB database. + + HIVDB identifier + true + + + + + + + + + + beta12orEarlier + [*#+%^]?[0-9]{6} + Identifier of an entry from the OMIM database. + + + + OMIM ID + + + + + + + + + + + beta12orEarlier + Unique identifier of an object from one of the KEGG databases (excluding the GENES division). + + + + KEGG object identifier + + + + + + + + + + beta12orEarlier + REACT_[0-9]+(\.[0-9]+)? + Identifier of an entry from the Reactome database. + Reactome ID + + + + Pathway ID (reactome) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry from the aMAZE database. + + Pathway ID (aMAZE) + true + + + + + + + + + + + beta12orEarlier + Identifier of an pathway from the BioCyc biological pathways database. + BioCyc pathway ID + + + + Pathway ID (BioCyc) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the INOH database. + INOH identifier + + + + Pathway ID (INOH) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the PATIKA database. + PATIKA ID + + + + Pathway ID (PATIKA) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the CPDB (ConsensusPathDB) biological pathways database, which is an identifier from an external database integrated into CPDB. + CPDB ID + + + + This concept refers to identifiers used by the databases collated in CPDB; CPDB identifiers are not independently defined. + Pathway ID (CPDB) + + + + + + + + + + beta12orEarlier + PTHR[0-9]{5} + Identifier of a biological pathway from the Panther Pathways database. + Panther Pathways ID + + + + Pathway ID (Panther) + + + + + + + + + + + + + + + + beta12orEarlier + MIR:00100005 + MIR:[0-9]{8} + Unique identifier of a MIRIAM data resource. + + + + This is the identifier used internally by MIRIAM for a data type. + MIRIAM identifier + + + + + + + + + + + + + + + beta12orEarlier + The name of a data type from the MIRIAM database. + + + + MIRIAM data type name + + + + + + + + + + + + + + + + + beta12orEarlier + urn:miriam:pubmed:16333295|urn:miriam:obo.go:GO%3A0045202 + The URI (URL or URN) of a data entity from the MIRIAM database. + identifiers.org synonym + + + + A MIRIAM URI consists of the URI of the MIRIAM data type (PubMed, UniProt etc) followed by the identifier of an element of that data type, for example PMID for a publication or an accession number for a GO term. + MIRIAM URI + + + + + + + + + beta12orEarlier + UniProt|Enzyme Nomenclature + The primary name of a data type from the MIRIAM database. + + + + The primary name of a MIRIAM data type is taken from a controlled vocabulary. + MIRIAM data type primary name + + + + + UniProt|Enzyme Nomenclature + A protein entity has the MIRIAM data type 'UniProt', and an enzyme has the MIRIAM data type 'Enzyme Nomenclature'. + + + + + + + + + beta12orEarlier + A synonymous name of a data type from the MIRIAM database. + + + + A synonymous name for a MIRIAM data type taken from a controlled vocabulary. + MIRIAM data type synonymous name + + + + + + + + + + beta12orEarlier + Unique identifier of a Taverna workflow. + + + + Taverna workflow ID + + + + + + + + + + beta12orEarlier + Name of a biological (mathematical) model. + + + + Biological model name + + + + + + + + + + beta12orEarlier + (BIOMD|MODEL)[0-9]{10} + Unique identifier of an entry from the BioModel database. + + + + BioModel ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Chemical structure specified in PubChem Compound Identification (CID), a non-zero integer identifier for a unique chemical structure. + PubChem compound accession identifier + + + + PubChem CID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the ChemSpider database. + + + + ChemSpider ID + + + + + + + + + + beta12orEarlier + CHEBI:[0-9]+ + Identifier of an entry from the ChEBI database. + ChEBI IDs + ChEBI identifier + + + + ChEBI ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the BioPax ontology. + + + + BioPax concept ID + + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a concept from The Gene Ontology. + GO concept identifier + + + + GO concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the MeSH vocabulary. + + + + MeSH concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the HGNC controlled vocabulary. + + + + HGNC concept ID + + + + + + + + + + + beta12orEarlier + 9662|3483|182682 + [1-9][0-9]{0,8} + A stable unique identifier for each taxon (for a species, a family, an order, or any other group in the NCBI taxonomy database. + NCBI tax ID + NCBI taxonomy identifier + + + + NCBI taxonomy ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the Plant Ontology (PO). + + + + Plant Ontology concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the UMLS vocabulary. + + + + UMLS concept ID + + + + + + + + + + beta12orEarlier + FMA:[0-9]+ + An identifier of a concept from Foundational Model of Anatomy. + + + + Classifies anatomical entities according to their shared characteristics (genus) and distinguishing characteristics (differentia). Specifies the part-whole and spatial relationships of the entities, morphological transformation of the entities during prenatal development and the postnatal life cycle and principles, rules and definitions according to which classes and relationships in the other three components of FMA are represented. + FMA concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the EMAP mouse ontology. + + + + EMAP concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the ChEBI ontology. + + + + ChEBI concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the MGED ontology. + + + + MGED concept ID + + + + + + + + + + beta12orEarlier + An identifier of a concept from the myGrid ontology. + + + + The ontology is provided as two components, the service ontology and the domain ontology. The domain ontology acts provides concepts for core bioinformatics data types and their relations. The service ontology describes the physical and operational features of web services. + myGrid concept ID + + + + + + + + + + beta12orEarlier + 4963447 + [1-9][0-9]{0,8} + PubMed unique identifier of an article. + PMID + + + + PubMed ID + + + + + + + + + + beta12orEarlier + (doi\:)?[0-9]{2}\.[0-9]{4}/.* + Digital Object Identifier (DOI) of a published article. + Digital Object Identifier + + + + DOI + + + + + + + + + + beta12orEarlier + Medline UI (unique identifier) of an article. + Medline unique identifier + + + + The use of Medline UI has been replaced by the PubMed unique identifier. + Medline UI + + + + + + + + + beta12orEarlier + The name of a computer package, application, method or function. + + + + Tool name + + + + + + + + + beta12orEarlier + The unique name of a signature (sequence classifier) method. + + + + Signature methods from http://www.ebi.ac.uk/Tools/InterProScan/help.html#results include BlastProDom, FPrintScan, HMMPIR, HMMPfam, HMMSmart, HMMTigr, ProfileScan, ScanRegExp, SuperFamily and HAMAP. + Tool name (signature) + + + + + + + + + beta12orEarlier + The name of a BLAST tool. + BLAST name + + + + This include 'blastn', 'blastp', 'blastx', 'tblastn' and 'tblastx'. + Tool name (BLAST) + + + + + + + + + beta12orEarlier + The name of a FASTA tool. + + + + This includes 'fasta3', 'fastx3', 'fasty3', 'fastf3', 'fasts3' and 'ssearch'. + Tool name (FASTA) + + + + + + + + + beta12orEarlier + The name of an EMBOSS application. + + + + Tool name (EMBOSS) + + + + + + + + + beta12orEarlier + The name of an EMBASSY package. + + + + Tool name (EMBASSY package) + + + + + + + + + beta12orEarlier + A QSAR constitutional descriptor. + QSAR constitutional descriptor + + + QSAR descriptor (constitutional) + + + + + + + + + beta12orEarlier + A QSAR electronic descriptor. + QSAR electronic descriptor + + + QSAR descriptor (electronic) + + + + + + + + + beta12orEarlier + A QSAR geometrical descriptor. + QSAR geometrical descriptor + + + QSAR descriptor (geometrical) + + + + + + + + + beta12orEarlier + A QSAR topological descriptor. + QSAR topological descriptor + + + QSAR descriptor (topological) + + + + + + + + + beta12orEarlier + A QSAR molecular descriptor. + QSAR molecular descriptor + + + QSAR descriptor (molecular) + + + + + + + + + beta12orEarlier + Any collection of multiple protein sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries. + + + Sequence set (protein) + + + + + + + + + beta12orEarlier + Any collection of multiple nucleotide sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries. + + + Sequence set (nucleic acid) + + + + + + + + + + + + + + + beta12orEarlier + A set of sequences that have been clustered or otherwise classified as belonging to a group including (typically) sequence cluster information. + + + The cluster might include sequences identifiers, short descriptions, alignment and summary information. + Sequence cluster + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A file of intermediate results from a PSIBLAST search that is used for priming the search in the next PSIBLAST iteration. + + A Psiblast checkpoint file uses ASN.1 Binary Format and usually has the extension '.asn'. + Psiblast checkpoint file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Sequences generated by HMMER package in FASTA-style format. + + HMMER synthetic sequences set + true + + + + + + + + + + + + + + + beta12orEarlier + A protein sequence cleaved into peptide fragments (by enzymatic or chemical cleavage) with fragment masses. + + + Proteolytic digest + + + + + + + + + beta12orEarlier + SO:0000412 + Restriction digest fragments from digesting a nucleotide sequence with restriction sites using a restriction endonuclease. + + + Restriction digest + + + + + + + + + beta12orEarlier + Oligonucleotide primer(s) for PCR and DNA amplification, for example a minimal primer set. + + + PCR primers + + + + + + + + + beta12orEarlier + beta12orEarlier + + + File of sequence vectors used by EMBOSS vectorstrip application, or any file in same format. + + vectorstrip cloning vector definition file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A library of nucleotide sequences to avoid during hybridisation events. Hybridisation of the internal oligo to sequences in this library is avoided, rather than priming from them. The file is in a restricted FASTA format. + + Primer3 internal oligo mishybridizing library + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A nucleotide sequence library of sequences to avoid during amplification (for example repetitive sequences, or possibly the sequences of genes in a gene family that should not be amplified. The file must is in a restricted FASTA format. + + Primer3 mispriming library file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + File of one or more pairs of primer sequences, as used by EMBOSS primersearch application. + + primersearch primer pairs sequence record + true + + + + + + + + + + beta12orEarlier + A cluster of protein sequences. + Protein sequence cluster + + + The sequences are typically related, for example a family of sequences. + Sequence cluster (protein) + + + + + + + + + + beta12orEarlier + A cluster of nucleotide sequences. + Nucleotide sequence cluster + + + The sequences are typically related, for example a family of sequences. + Sequence cluster (nucleic acid) + + + + + + + + + beta12orEarlier + The size (length) of a sequence, subsequence or region in a sequence, or range(s) of lengths. + + + Sequence length + + + + + + + + + beta12orEarlier + 1.5 + + + Size of a sequence word. + + Word size is used for example in word-based sequence database search methods. + Word size + true + + + + + + + + + beta12orEarlier + 1.5 + + + Size of a sequence window. + + A window is a region of fixed size but not fixed position over a molecular sequence. It is typically moved (computationally) over a sequence during scoring. + Window size + true + + + + + + + + + beta12orEarlier + 1.5 + + + Specification of range(s) of length of sequences. + + Sequence length range + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Report on basic information about a molecular sequence such as name, accession number, type (nucleic or protein), length, description etc. + + + Sequence information report + true + + + + + + + + + beta12orEarlier + An informative report about non-positional sequence features, typically a report on general molecular sequence properties derived from sequence analysis. + Sequence properties report + + + Sequence property + + + + + + + + + beta12orEarlier + Annotation of positional features of molecular sequence(s), i.e. that can be mapped to position(s) in the sequence. + Feature record + Features + General sequence features + Sequence features report + SO:0000110 + + + This includes annotation of positional sequence features, organised into a standard feature table, or any other report of sequence features. General feature reports are a source of sequence feature table information although internal conversion would be required. + Sequence features + http://purl.bioontology.org/ontology/MSH/D058977 + + + + + + + + + beta12orEarlier + beta13 + + + Comparative data on sequence features such as statistics, intersections (and data on intersections), differences etc. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Sequence features (comparative) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report of general sequence properties derived from protein sequence data. + + Sequence property (protein) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report of general sequence properties derived from nucleotide sequence data. + + Sequence property (nucleic acid) + true + + + + + + + + + beta12orEarlier + A report on sequence complexity, for example low-complexity or repeat regions in sequences. + Sequence property (complexity) + + + Sequence complexity report + + + + + + + + + beta12orEarlier + A report on ambiguity in molecular sequence(s). + Sequence property (ambiguity) + + + Sequence ambiguity report + + + + + + + + + beta12orEarlier + A report (typically a table) on character or word composition / frequency of a molecular sequence(s). + Sequence composition + Sequence property (composition) + + + Sequence composition report + + + + + + + + + beta12orEarlier + A report on peptide fragments of certain molecular weight(s) in one or more protein sequences. + + + Peptide molecular weight hits + + + + + + + + + beta12orEarlier + A plot of third base position variability in a nucleotide sequence. + + + Base position variability plot + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A table of character or word composition / frequency of a molecular sequence. + + Sequence composition table + true + + + + + + + + + + beta12orEarlier + A table of base frequencies of a nucleotide sequence. + + + Base frequencies table + + + + + + + + + + beta12orEarlier + A table of word composition of a nucleotide sequence. + + + Base word frequencies table + + + + + + + + + + beta12orEarlier + A table of amino acid frequencies of a protein sequence. + Sequence composition (amino acid frequencies) + + + Amino acid frequencies table + + + + + + + + + + beta12orEarlier + A table of amino acid word composition of a protein sequence. + Sequence composition (amino acid words) + + + Amino acid word frequencies table + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation of a molecular sequence in DAS format. + + DAS sequence feature annotation + true + + + + + + + + + beta12orEarlier + Annotation of positional sequence features, organised into a standard feature table. + Sequence feature table + + + Feature table + + + + + + + + + + + + + + + beta12orEarlier + A map of (typically one) DNA sequence annotated with positional or non-positional features. + DNA map + + + Map + + + + + + + + + beta12orEarlier + An informative report on intrinsic positional features of a nucleotide sequence, formatted to be machine-readable. + Feature table (nucleic acid) + Nucleic acid feature table + Genome features + Genomic features + + + This includes nucleotide sequence feature annotation in any known sequence feature table format and any other report of nucleic acid features. + Nucleic acid features + + + + + + + + + + beta12orEarlier + An informative report on intrinsic positional features of a protein sequence. + Feature table (protein) + Protein feature table + + + This includes protein sequence feature annotation in any known sequence feature table format and any other report of protein features. + Protein features + + + + + + + + + beta12orEarlier + Moby:GeneticMap + A map showing the relative positions of genetic markers in a nucleic acid sequence, based on estimation of non-physical distance such as recombination frequencies. + Linkage map + + + A genetic (linkage) map indicates the proximity of two genes on a chromosome, whether two genes are linked and the frequency they are transmitted together to an offspring. They are limited to genetic markers of traits observable only in whole organisms. + Genetic map + + + + + + + + + beta12orEarlier + A map of genetic markers in a contiguous, assembled genomic sequence, with the sizes and separation of markers measured in base pairs. + + + A sequence map typically includes annotation on significant subsequences such as contigs, haplotypes and genes. The contigs shown will (typically) be a set of small overlapping clones representing a complete chromosomal segment. + Sequence map + + + + + + + + + beta12orEarlier + A map of DNA (linear or circular) annotated with physical features or landmarks such as restriction sites, cloned DNA fragments, genes or genetic markers, along with the physical distances between them. + + + Distance in a physical map is measured in base pairs. A physical map might be ordered relative to a reference map (typically a genetic map) in the process of genome sequencing. + Physical map + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image of a sequence with matches to signatures, motifs or profiles. + + + Sequence signature map + true + + + + + + + + + beta12orEarlier + A map showing banding patterns derived from direct observation of a stained chromosome. + Chromosome map + Cytogenic map + Cytologic map + + + This is the lowest-resolution physical map and can provide only rough estimates of physical (base pair) distances. Like a genetic map, they are limited to genetic markers of traits observable only in whole organisms. + Cytogenetic map + + + + + + + + + beta12orEarlier + A gene map showing distances between loci based on relative cotransduction frequencies. + + + DNA transduction map + + + + + + + + + beta12orEarlier + Sequence map of a single gene annotated with genetic features such as introns, exons, untranslated regions, polyA signals, promoters, enhancers and (possibly) mutations defining alleles of a gene. + + + Gene map + + + + + + + + + beta12orEarlier + Sequence map of a plasmid (circular DNA). + + + Plasmid map + + + + + + + + + beta12orEarlier + Sequence map of a whole genome. + + + Genome map + + + + + + + + + + beta12orEarlier + Image of the restriction enzyme cleavage sites (restriction sites) in a nucleic acid sequence. + + + Restriction map + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image showing matches between protein sequence(s) and InterPro Entries. + + + The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. Each protein is represented as a scaled horizontal line with colored bars indicating the position of the matches. + InterPro compact match image + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image showing detailed information on matches between protein sequence(s) and InterPro Entries. + + + The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. + InterPro detailed match image + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Image showing the architecture of InterPro domains in a protein sequence. + + + The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. Domain architecture is shown as a series of non-overlapping domains in the protein. + InterPro architecture image + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + SMART protein schematic in PNG format. + + SMART protein schematic + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + Images based on GlobPlot prediction of intrinsic disordered regions and globular domains in protein sequences. + + + GlobPlot domain image + true + + + + + + + + + beta12orEarlier + 1.8 + + Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more sequences. + + + Sequence motif matches + true + + + + + + + + + beta12orEarlier + 1.5 + + + Location of short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences. + + The report might include derived data map such as classification, annotation, organisation, periodicity etc. + Sequence features (repeats) + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on predicted or actual gene structure, regions which make an RNA product and features such as promoters, coding regions, splice sites etc. + + Gene and transcript structure (report) + true + + + + + + + + + beta12orEarlier + 1.8 + + regions of a nucleic acid sequence containing mobile genetic elements. + + + Mobile genetic elements + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on quadruplex-forming motifs in a nucleotide sequence. + + Nucleic acid features (quadruplexes) + true + + + + + + + + + beta12orEarlier + 1.8 + + Report on nucleosome formation potential or exclusion sequence(s). + + + Nucleosome exclusion sequences + true + + + + + + + + + beta12orEarlier + beta13 + + A report on exonic splicing enhancers (ESE) in an exon. + + + Gene features (exonic splicing enhancer) + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on microRNA sequence (miRNA) or precursor, microRNA targets, miRNA binding sites in an RNA sequence etc. + + Nucleic acid features (microRNA) + true + + + + + + + + + beta12orEarlier + 1.8 + + protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. + + + Coding region + true + + + + + + + + + beta12orEarlier + beta13 + + + A report on selenocysteine insertion sequence (SECIS) element in a DNA sequence. + + Gene features (SECIS element) + true + + + + + + + + + beta12orEarlier + 1.8 + + transcription factor binding sites (TFBS) in a DNA sequence. + + + Transcription factor binding sites + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on predicted or known key residue positions (sites) in a protein sequence, such as binding or functional sites. + + Use this concept for collections of specific sites which are not necessarily contiguous, rather than contiguous stretches of amino acids. + Protein features (sites) + true + + + + + + + + + beta12orEarlier + 1.8 + + signal peptides or signal peptide cleavage sites in protein sequences. + + + Protein features report (signal peptides) + true + + + + + + + + + beta12orEarlier + 1.8 + + cleavage sites (for a proteolytic enzyme or agent) in a protein sequence. + + + Protein features report (cleavage sites) + true + + + + + + + + + beta12orEarlier + 1.8 + + post-translation modifications in a protein sequence, typically describing the specific sites involved. + + + Protein features (post-translation modifications) + true + + + + + + + + + beta12orEarlier + 1.8 + + catalytic residues (active site) of an enzyme. + + + Protein features report (active sites) + true + + + + + + + + + beta12orEarlier + 1.8 + + ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids. + + + Protein features report (binding sites) + true + + + + + + + + + beta12orEarlier + beta13 + + A report on antigenic determinant sites (epitopes) in proteins, from sequence and / or structural data. + + + Epitope mapping is commonly done during vaccine design. + Protein features (epitopes) + true + + + + + + + + + beta12orEarlier + 1.8 + + RNA and DNA-binding proteins and binding sites in protein sequences. + + + Protein features report (nucleic acid binding sites) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on epitopes that bind to MHC class I molecules. + + MHC Class I epitopes report + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on predicted epitopes that bind to MHC class II molecules. + + MHC Class II epitopes report + true + + + + + + + + + beta12orEarlier + beta13 + + A report or plot of PEST sites in a protein sequence. + + + 'PEST' motifs target proteins for proteolytic degradation and reduce the half-lives of proteins dramatically. + Protein features (PEST sites) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Scores from a sequence database search (for example a BLAST search). + + Sequence database hits scores list + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignments from a sequence database search (for example a BLAST search). + + Sequence database hits alignments list + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on the evaluation of the significance of sequence similarity scores from a sequence database search (for example a BLAST search). + + Sequence database hits evaluation data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alphabet for the motifs (patterns) that MEME will search for. + + MEME motif alphabet + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + MEME background frequencies file. + + MEME background frequencies file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + File of directives for ordering and spacing of MEME motifs. + + MEME motifs directive file + true + + + + + + + + + beta12orEarlier + Dirichlet distribution used by hidden Markov model analysis programs. + + + Dirichlet distribution + + + + + + + + + beta12orEarlier + 1.4 + + + + Emission and transition counts of a hidden Markov model, generated once HMM has been determined, for example after residues/gaps have been assigned to match, delete and insert states. + + HMM emission and transition counts + true + + + + + + + + + beta12orEarlier + Regular expression pattern. + + + Regular expression + + + + + + + + + + + + + + + beta12orEarlier + Any specific or conserved pattern (typically expressed as a regular expression) in a molecular sequence. + + + Sequence motif + + + + + + + + + + + + + + + beta12orEarlier + Some type of statistical model representing a (typically multiple) sequence alignment. + + + Sequence profile + http://semanticscience.org/resource/SIO_010531 + + + + + + + + + beta12orEarlier + An informative report about a specific or conserved protein sequence pattern. + InterPro entry + Protein domain signature + Protein family signature + Protein region signature + Protein repeat signature + Protein site signature + + + Protein signature + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A nucleotide regular expression pattern from the Prosite database. + + Prosite nucleotide pattern + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A protein regular expression pattern from the Prosite database. + + Prosite protein pattern + true + + + + + + + + + beta12orEarlier + A profile (typically representing a sequence alignment) that is a simple matrix of nucleotide (or amino acid) counts per position. + PFM + + + Position frequency matrix + + + + + + + + + beta12orEarlier + A profile (typically representing a sequence alignment) that is weighted matrix of nucleotide (or amino acid) counts per position. + PWM + + + Contributions of individual sequences to the matrix might be uneven (weighted). + Position weight matrix + + + + + + + + + beta12orEarlier + A profile (typically representing a sequence alignment) derived from a matrix of nucleotide (or amino acid) counts per position that reflects information content at each position. + ICM + + + Information content matrix + + + + + + + + + beta12orEarlier + A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states. For example, a hidden Markov model representation of a set or alignment of sequences. + HMM + + + Hidden Markov model + + + + + + + + + beta12orEarlier + One or more fingerprints (sequence classifiers) as used in the PRINTS database. + + + Fingerprint + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A protein signature of the type used in the EMBASSY Signature package. + + Domainatrix signature + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + NULL hidden Markov model representation used by the HMMER package. + + HMMER NULL hidden Markov model + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein family signature (sequence classifier) from the InterPro database. + + Protein family signatures cover all domains in the matching proteins and span >80% of the protein length and with no adjacent protein domain signatures or protein region signatures. + Protein family signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein domain signature (sequence classifier) from the InterPro database. + + Protein domain signatures identify structural or functional domains or other units with defined boundaries. + Protein domain signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein region signature (sequence classifier) from the InterPro database. + + A protein region signature defines a region which cannot be described as a protein family or domain signature. + Protein region signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein repeat signature (sequence classifier) from the InterPro database. + + A protein repeat signature is a repeated protein motif, that is not in single copy expected to independently fold into a globular domain. + Protein repeat signature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A protein site signature (sequence classifier) from the InterPro database. + + A protein site signature is a classifier for a specific site in a protein. + Protein site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein conserved site signature (sequence classifier) from the InterPro database. + + A protein conserved site signature is any short sequence pattern that may contain one or more unique residues and is cannot be described as a active site, binding site or post-translational modification. + Protein conserved site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein active site signature (sequence classifier) from the InterPro database. + + A protein active site signature corresponds to an enzyme catalytic pocket. An active site typically includes non-contiguous residues, therefore multiple signatures may be required to describe an active site. ; residues involved in enzymatic reactions for which mutational data is typically available. + Protein active site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein binding site signature (sequence classifier) from the InterPro database. + + A protein binding site signature corresponds to a site that reversibly binds chemical compounds, which are not themselves substrates of the enzymatic reaction. This includes enzyme cofactors and residues involved in electron transport or protein structure modification. + Protein binding site signature + true + + + + + + + + + beta12orEarlier + 1.4 + + + A protein post-translational modification signature (sequence classifier) from the InterPro database. + + A protein post-translational modification signature corresponds to sites that undergo modification of the primary structure, typically to activate or de-activate a function. For example, methylation, sumoylation, glycosylation etc. The modification might be permanent or reversible. + Protein post-translational modification signature + true + + + + + + + + + beta12orEarlier + true + Alignment of exactly two molecular sequences. + Sequence alignment (pair) + + + Pair sequence alignment + http://semanticscience.org/resource/SIO_010068 + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of more than two molecular sequences. + + Sequence alignment (multiple) + true + + + + + + + + + beta12orEarlier + Alignment of multiple nucleotide sequences. + Sequence alignment (nucleic acid) + DNA sequence alignment + RNA sequence alignment + + + Nucleic acid sequence alignment + + + + + + + + + beta12orEarlier + Alignment of multiple protein sequences. + Sequence alignment (protein) + + + Protein sequence alignment + + + + + + + + + beta12orEarlier + Alignment of multiple molecular sequences of different types. + Sequence alignment (hybrid) + + + Hybrid sequence alignments include for example genomic DNA to EST, cDNA or mRNA. + Hybrid sequence alignment + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment of exactly two nucleotide sequences. + + Sequence alignment (nucleic acid pair) + true + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment of exactly two protein sequences. + + Sequence alignment (protein pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of exactly two molecular sequences of different types. + + Hybrid sequence alignment (pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of more than two nucleotide sequences. + + Multiple nucleotide sequence alignment + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of more than two protein sequences. + + Multiple protein sequence alignment + true + + + + + + + + + beta12orEarlier + A simple floating point number defining the penalty for opening or extending a gap in an alignment. + + + Alignment score or penalty + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Whether end gaps are scored or not. + + Score end gaps control + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controls the order of sequences in an output sequence alignment. + + Aligned sequence order + true + + + + + + + + + beta12orEarlier + A penalty for opening a gap in an alignment. + + + Gap opening penalty + + + + + + + + + beta12orEarlier + A penalty for extending a gap in an alignment. + + + Gap extension penalty + + + + + + + + + beta12orEarlier + A penalty for gaps that are close together in an alignment. + + + Gap separation penalty + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + A penalty for gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences. + + Terminal gap penalty + true + + + + + + + + + beta12orEarlier + The score for a 'match' used in various sequence database search applications with simple scoring schemes. + + + Match reward score + + + + + + + + + beta12orEarlier + The score (penalty) for a 'mismatch' used in various alignment and sequence database search applications with simple scoring schemes. + + + Mismatch penalty score + + + + + + + + + beta12orEarlier + This is the threshold drop in score at which extension of word alignment is halted. + + + Drop off score + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for opening a gap in an alignment. + + Gap opening penalty (integer) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for opening a gap in an alignment. + + Gap opening penalty (float) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for extending a gap in an alignment. + + Gap extension penalty (integer) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for extending a gap in an alignment. + + Gap extension penalty (float) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for gaps that are close together in an alignment. + + Gap separation penalty (integer) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple floating point number defining the penalty for gaps that are close together in an alignment. + + Gap separation penalty (float) + true + + + + + + + + + beta12orEarlier + A number defining the penalty for opening gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences. + + + Terminal gap opening penalty + + + + + + + + + beta12orEarlier + A number defining the penalty for extending gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences. + + + Terminal gap extension penalty + + + + + + + + + beta12orEarlier + Sequence identity is the number (%) of matches (identical characters) in positions from an alignment of two molecular sequences. + + + Sequence identity + + + + + + + + + beta12orEarlier + Sequence similarity is the similarity (expressed as a percentage) of two molecular sequences calculated from their alignment, a scoring matrix for scoring characters substitutions and penalties for gap insertion and extension. + + + Data Type is float probably. + Sequence similarity + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data on molecular sequence alignment quality (estimated accuracy). + + Sequence alignment metadata (quality report) + true + + + + + + + + + beta12orEarlier + 1.4 + + + Data on character conservation in a molecular sequence alignment. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. Use this concept for calculated substitution rates, relative site variability, data on sites with biased properties, highly conserved or very poorly conserved sites, regions, blocks etc. + Sequence alignment report (site conservation) + true + + + + + + + + + beta12orEarlier + 1.4 + + + Data on correlations between sites in a molecular sequence alignment, typically to identify possible covarying positions and predict contacts or structural constraints in protein structures. + + Sequence alignment report (site correlation) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment of molecular sequences to a Domainatrix signature (representing a sequence alignment). + + Sequence-profile alignment (Domainatrix signature) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment of molecular sequence(s) to a hidden Markov model(s). + + Sequence-profile alignment (HMM) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment of molecular sequences to a protein fingerprint from the PRINTS database. + + Sequence-profile alignment (fingerprint) + true + + + + + + + + + beta12orEarlier + Continuous quantitative data that may be read during phylogenetic tree calculation. + Phylogenetic continuous quantitative characters + Quantitative traits + + + Phylogenetic continuous quantitative data + + + + + + + + + beta12orEarlier + Character data with discrete states that may be read during phylogenetic tree calculation. + Discrete characters + Discretely coded characters + Phylogenetic discrete states + + + Phylogenetic discrete data + + + + + + + + + beta12orEarlier + One or more cliques of mutually compatible characters that are generated, for example from analysis of discrete character data, and are used to generate a phylogeny. + Phylogenetic report (cliques) + + + Phylogenetic character cliques + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic invariants data for testing alternative tree topologies. + Phylogenetic report (invariants) + + + Phylogenetic invariants + + + + + + + + + beta12orEarlier + 1.5 + + + A report of data concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees. + + This is a broad data type and is used for example for reports on confidence, shape or stratigraphic (age) data derived from phylogenetic tree analysis. + Phylogenetic report + true + + + + + + + + + beta12orEarlier + A model of DNA substitution that explains a DNA sequence alignment, derived from phylogenetic tree analysis. + Phylogenetic tree report (DNA substitution model) + Sequence alignment report (DNA substitution model) + Substitution model + + + DNA substitution model + + + + + + + + + beta12orEarlier + 1.4 + + + Data about the shape of a phylogenetic tree. + + Phylogenetic tree report (tree shape) + true + + + + + + + + + beta12orEarlier + 1.4 + + + Data on the confidence of a phylogenetic tree. + + Phylogenetic tree report (tree evaluation) + true + + + + + + + + + beta12orEarlier + Distances, such as Branch Score distance, between two or more phylogenetic trees. + Phylogenetic tree report (tree distances) + + + Phylogenetic tree distances + + + + + + + + + beta12orEarlier + 1.4 + + + Molecular clock and stratigraphic (age) data derived from phylogenetic tree analysis. + + Phylogenetic tree report (tree stratigraphic) + true + + + + + + + + + beta12orEarlier + Independent contrasts for characters used in a phylogenetic tree, or covariances, regressions and correlations between characters for those contrasts. + Phylogenetic report (character contrasts) + + + Phylogenetic character contrasts + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of integer numbers for sequence comparison. + + Comparison matrix (integers) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of floating point numbers for sequence comparison. + + Comparison matrix (floats) + true + + + + + + + + + beta12orEarlier + Matrix of integer or floating point numbers for nucleotide comparison. + Nucleotide comparison matrix + Nucleotide substitution matrix + + + Comparison matrix (nucleotide) + + + + + + + + + + beta12orEarlier + Matrix of integer or floating point numbers for amino acid comparison. + Amino acid comparison matrix + Amino acid substitution matrix + + + Comparison matrix (amino acid) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of integer numbers for nucleotide comparison. + + Nucleotide comparison matrix (integers) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of floating point numbers for nucleotide comparison. + + Nucleotide comparison matrix (floats) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of integer numbers for amino acid comparison. + + Amino acid comparison matrix (integers) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Matrix of floating point numbers for amino acid comparison. + + Amino acid comparison matrix (floats) + true + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a nucleic acid tertiary (3D) structure. + + + Nucleic acid structure + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a protein tertiary (3D) structure, or part of a structure, possibly in complex with other molecules. + Protein structures + + + Protein structure + + + + + + + + + beta12orEarlier + The structure of a protein in complex with a ligand, typically a small molecule such as an enzyme substrate or cofactor, but possibly another macromolecule. + + + This includes interactions of proteins with atoms, ions and small molecules or macromolecules such as nucleic acids or other polypeptides. For stable inter-polypeptide interactions use 'Protein complex' instead. + Protein-ligand complex + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a carbohydrate (3D) structure. + + + Carbohydrate structure + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the (3D) structure of a small molecule, such as any common chemical compound. + CHEBI:23367 + + + Small molecule structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a DNA tertiary (3D) structure. + + + DNA structure + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for an RNA tertiary (3D) structure. + + + RNA structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a tRNA tertiary (3D) structure, including tmRNA, snoRNAs etc. + + + tRNA structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the tertiary (3D) structure of a polypeptide chain. + + + Protein chain + + + + + + + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the tertiary (3D) structure of a protein domain. + + + Protein domain + + + + + + + + + beta12orEarlier + 1.5 + + + 3D coordinate and associated data for a protein tertiary (3D) structure (all atoms). + + Protein structure (all atoms) + true + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a protein tertiary (3D) structure (typically C-alpha atoms only). + Protein structure (C-alpha atoms) + + + C-beta atoms from amino acid side-chains may be included. + C-alpha trace + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (all atoms). + + Protein chain (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (typically C-alpha atoms only). + + C-beta atoms from amino acid side-chains may be included. + Protein chain (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a protein domain tertiary (3D) structure (all atoms). + + Protein domain (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + 3D coordinate and associated data for a protein domain tertiary (3D) structure (typically C-alpha atoms only). + + C-beta atoms from amino acid side-chains may be included. + Protein domain (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + Alignment (superimposition) of exactly two molecular tertiary (3D) structures. + Pair structure alignment + + + Structure alignment (pair) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of more than two molecular tertiary (3D) structures. + + Structure alignment (multiple) + true + + + + + + + + + beta12orEarlier + Alignment (superimposition) of protein tertiary (3D) structures. + Structure alignment (protein) + + + Protein structure alignment + + + + + + + + + beta12orEarlier + Alignment (superimposition) of nucleic acid tertiary (3D) structures. + Structure alignment (nucleic acid) + + + Nucleic acid structure alignment + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures. + + Structure alignment (protein pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of more than two protein tertiary (3D) structures. + + Multiple protein tertiary structure alignment + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment (superimposition) of protein tertiary (3D) structures (all atoms considered). + + Structure alignment (protein all atoms) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Alignment (superimposition) of protein tertiary (3D) structures (typically C-alpha atoms only considered). + + C-beta atoms from amino acid side-chains may be considered. + Structure alignment (protein C-alpha atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered). + + Pairwise protein tertiary structure alignment (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered). + + C-beta atoms from amino acid side-chains may be included. + Pairwise protein tertiary structure alignment (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered). + + Multiple protein tertiary structure alignment (all atoms) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered). + + C-beta atoms from amino acid side-chains may be included. + Multiple protein tertiary structure alignment (C-alpha atoms) + true + + + + + + + + + beta12orEarlier + 1.12 + + + + Alignment (superimposition) of exactly two nucleic acid tertiary (3D) structures. + + Structure alignment (nucleic acid pair) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Alignment (superimposition) of more than two nucleic acid tertiary (3D) structures. + + Multiple nucleic acid tertiary structure alignment + true + + + + + + + + + beta12orEarlier + Alignment (superimposition) of RNA tertiary (3D) structures. + Structure alignment (RNA) + + + RNA structure alignment + + + + + + + + + beta12orEarlier + Matrix to transform (rotate/translate) 3D coordinates, typically the transformation necessary to superimpose two molecular structures. + + + Structural transformation matrix + + + + + + + + + beta12orEarlier + beta12orEarlier + + + DaliLite hit table of protein chain tertiary structure alignment data. + + The significant and top-scoring hits for regions of the compared structures is shown. Data such as Z-Scores, number of aligned residues, root-mean-square deviation (RMSD) of atoms and sequence identity are given. + DaliLite hit table + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A score reflecting structural similarities of two molecules. + + Molecular similarity score + true + + + + + + + + + beta12orEarlier + Root-mean-square deviation (RMSD) is calculated to measure the average distance between superimposed macromolecular coordinates. + RMSD + + + Root-mean-square deviation + + + + + + + + + beta12orEarlier + A measure of the similarity between two ligand fingerprints. + + + A ligand fingerprint is derived from ligand structural data from a Protein DataBank file. It reflects the elements or groups present or absent, covalent bonds and bond orders and the bonded environment in terms of SATIS codes and BLEEP atom types. + Tanimoto similarity score + + + + + + + + + beta12orEarlier + A matrix of 3D-1D scores reflecting the probability of amino acids to occur in different tertiary structural environments. + + + 3D-1D scoring matrix + + + + + + + + + + beta12orEarlier + A table of 20 numerical values which quantify a property (e.g. physicochemical or biochemical) of the common amino acids. + + + Amino acid index + + + + + + + + + beta12orEarlier + Chemical classification (small, aliphatic, aromatic, polar, charged etc) of amino acids. + Chemical classes (amino acids) + + + Amino acid index (chemical classes) + + + + + + + + + beta12orEarlier + Statistical protein contact potentials. + Contact potentials (amino acid pair-wise) + + + Amino acid pair-wise contact potentials + + + + + + + + + beta12orEarlier + Molecular weights of amino acids. + Molecular weight (amino acids) + + + Amino acid index (molecular weight) + + + + + + + + + beta12orEarlier + Hydrophobic, hydrophilic or charge properties of amino acids. + Hydropathy (amino acids) + + + Amino acid index (hydropathy) + + + + + + + + + beta12orEarlier + Experimental free energy values for the water-interface and water-octanol transitions for the amino acids. + White-Wimley data (amino acids) + + + Amino acid index (White-Wimley data) + + + + + + + + + beta12orEarlier + Van der Waals radii of atoms for different amino acid residues. + van der Waals radii (amino acids) + + + Amino acid index (van der Waals radii) + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on a specific enzyme. + + Enzyme report + true + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on a specific restriction enzyme such as enzyme reference data. + + This might include name of enzyme, organism, isoschizomers, methylation, source, suppliers, literature references, or data on restriction enzyme patterns such as name of enzyme, recognition site, length of pattern, number of cuts made by enzyme, details of blunt or sticky end cut etc. + Restriction enzyme report + true + + + + + + + + + beta12orEarlier + List of molecular weight(s) of one or more proteins or peptides, for example cut by proteolytic enzymes or reagents. + + + The report might include associated data such as frequency of peptide fragment molecular weights. + Peptide molecular weights + + + + + + + + + beta12orEarlier + Report on the hydrophobic moment of a polypeptide sequence. + + + Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation. + Peptide hydrophobic moment + + + + + + + + + beta12orEarlier + The aliphatic index of a protein. + + + The aliphatic index is the relative protein volume occupied by aliphatic side chains. + Protein aliphatic index + + + + + + + + + beta12orEarlier + A protein sequence with annotation on hydrophobic or hydrophilic / charged regions, hydrophobicity plot etc. + + + Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation. + Protein sequence hydropathy plot + + + + + + + + + beta12orEarlier + A plot of the mean charge of the amino acids within a window of specified length as the window is moved along a protein sequence. + + + Protein charge plot + + + + + + + + + beta12orEarlier + The solubility or atomic solvation energy of a protein sequence or structure. + Protein solubility data + + + Protein solubility + + + + + + + + + beta12orEarlier + Data on the crystallizability of a protein sequence. + Protein crystallizability data + + + Protein crystallizability + + + + + + + + + beta12orEarlier + Data on the stability, intrinsic disorder or globularity of a protein sequence. + Protein globularity data + + + Protein globularity + + + + + + + + + + beta12orEarlier + The titration curve of a protein. + + + Protein titration curve + + + + + + + + + beta12orEarlier + The isoelectric point of one proteins. + + + Protein isoelectric point + + + + + + + + + beta12orEarlier + The pKa value of a protein. + + + Protein pKa value + + + + + + + + + beta12orEarlier + The hydrogen exchange rate of a protein. + + + Protein hydrogen exchange rate + + + + + + + + + beta12orEarlier + The extinction coefficient of a protein. + + + Protein extinction coefficient + + + + + + + + + beta12orEarlier + The optical density of a protein. + + + Protein optical density + + + + + + + + + beta12orEarlier + beta13 + + + An informative report on protein subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or destination (exported / extracellular proteins). + + Protein subcellular localisation + true + + + + + + + + + beta12orEarlier + An report on allergenicity / immunogenicity of peptides and proteins. + Peptide immunogenicity + Peptide immunogenicity report + + + This includes data on peptide ligands that elicit an immune response (immunogens), allergic cross-reactivity, predicted antigenicity (Hopp and Woods plot) etc. These data are useful in the development of peptide-specific antibodies or multi-epitope vaccines. Methods might use sequence data (for example motifs) and / or structural data. + Peptide immunogenicity data + + + + + + + + + beta12orEarlier + beta13 + + + A report on the immunogenicity of MHC class I or class II binding peptides. + + MHC peptide immunogenicity report + true + + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific protein 3D structure(s) or structural domains. + Protein property (structural) + Protein report (structure) + Protein structural property + Protein structure report (domain) + Protein structure-derived report + + + Protein structure report + + + + + + + + + beta12orEarlier + Report on the quality of a protein three-dimensional model. + Protein property (structural quality) + Protein report (structural quality) + Protein structure report (quality evaluation) + Protein structure validation report + + + Model validation might involve checks for atomic packing, steric clashes, agreement with electron density maps etc. + Protein structural quality report + + + + + + + + + beta12orEarlier + 1.12 + + Data on inter-atomic or inter-residue contacts, distances and interactions in protein structure(s) or on the interactions of protein atoms or residues with non-protein groups. + + + Protein non-covalent interactions report + true + + + + + + + + + beta12orEarlier + 1.4 + + + Informative report on flexibility or motion of a protein structure. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein flexibility or motion report + true + + + + + + + + + beta12orEarlier + Data on the solvent accessible or buried surface area of a protein structure. + + + This concept covers definitions of the protein surface, interior and interfaces, accessible and buried residues, surface accessible pockets, interior inaccessible cavities etc. + Protein solvent accessibility + + + + + + + + + beta12orEarlier + 1.4 + + + Data on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein surface report + true + + + + + + + + + beta12orEarlier + Phi/psi angle data or a Ramachandran plot of a protein structure. + + + Ramachandran plot + + + + + + + + + beta12orEarlier + Data on the net charge distribution (dipole moment) of a protein structure. + + + Protein dipole moment + + + + + + + + + + beta12orEarlier + A matrix of distances between amino acid residues (for example the C-alpha atoms) in a protein structure. + + + Protein distance matrix + + + + + + + + + beta12orEarlier + An amino acid residue contact map for a protein structure. + + + Protein contact map + + + + + + + + + beta12orEarlier + Report on clusters of contacting residues in protein structures such as a key structural residue network. + + + Protein residue 3D cluster + + + + + + + + + beta12orEarlier + Patterns of hydrogen bonding in protein structures. + + + Protein hydrogen bonds + + + + + + + + + beta12orEarlier + 1.4 + + + Non-canonical atomic interactions in protein structures. + + Protein non-canonical interactions + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a node from the CATH database. + + The report (for example http://www.cathdb.info/cathnode/1.10.10.10) includes CATH code (of the node and upper levels in the hierarchy), classification text (of appropriate levels in hierarchy), list of child nodes, representative domain and other relevant data and links. + CATH node + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a node from the SCOP database. + + SCOP node + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + An EMBASSY domain classification file (DCF) of classification and other data for domains from SCOP or CATH, in EMBL-like format. + + + EMBASSY domain classification + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'class' node from the CATH database. + + CATH class + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'architecture' node from the CATH database. + + CATH architecture + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'topology' node from the CATH database. + + CATH topology + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'homologous superfamily' node from the CATH database. + + CATH homologous superfamily + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'structurally similar group' node from the CATH database. + + CATH structurally similar group + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a protein 'functional category' node from the CATH database. + + CATH functional category + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on known protein structural domains or folds that are recognised (identified) in protein sequence(s). + + Methods use some type of mapping between sequence and fold, for example secondary structure prediction and alignment, profile comparison, sequence properties, homologous sequence search, kernel machines etc. Domains and folds might be taken from SCOP or CATH. + Protein fold recognition report + true + + + + + + + + + beta12orEarlier + 1.8 + + protein-protein interaction(s), including interactions between protein domains. + + + Protein-protein interaction report + true + + + + + + + + + beta12orEarlier + An informative report on protein-ligand (small molecule) interaction(s). + Protein-drug interaction report + + + Protein-ligand interaction report + + + + + + + + + beta12orEarlier + 1.8 + + protein-DNA/RNA interaction(s). + + + Protein-nucleic acid interactions report + true + + + + + + + + + beta12orEarlier + Data on the dissociation characteristics of a double-stranded nucleic acid molecule (DNA or a DNA/RNA hybrid) during heating. + Nucleic acid stability profile + Melting map + Nucleic acid melting curve + + + A melting (stability) profile calculated the free energy required to unwind and separate the nucleic acid strands, plotted for sliding windows over a sequence. + Nucleic acid melting curve: a melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Shows the proportion of nucleic acid which are double-stranded versus temperature. + Nucleic acid probability profile: a probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Shows the probability of a base pair not being melted (i.e. remaining as double-stranded DNA) at a specified temperature + Nucleic acid stitch profile: stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA). A stitch profile diagram shows partly melted DNA conformations (with probabilities) at a range of temperatures. For example, a stitch profile might show possible loop openings with their location, size, probability and fluctuations at a given temperature. + Nucleic acid temperature profile: a temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Plots melting temperature versus base position. + Nucleic acid melting profile + + + + + + + + + beta12orEarlier + Enthalpy of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + + Nucleic acid enthalpy + + + + + + + + + beta12orEarlier + Entropy of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + + Nucleic acid entropy + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Melting temperature of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + Nucleic acid melting temperature + true + + + + + + + + + beta12orEarlier + 1.21 + + Stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA). + + + Nucleic acid stitch profile + true + + + + + + + + + beta12orEarlier + DNA base pair stacking energies data. + + + DNA base pair stacking energies data + + + + + + + + + beta12orEarlier + DNA base pair twist angle data. + + + DNA base pair twist angle data + + + + + + + + + beta12orEarlier + DNA base trimer roll angles data. + + + DNA base trimer roll angles data + + + + + + + + + beta12orEarlier + beta12orEarlier + + + RNA parameters used by the Vienna package. + + Vienna RNA parameters + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Structure constraints used by the Vienna package. + + Vienna RNA structure constraints + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + RNA concentration data used by the Vienna package. + + Vienna RNA concentration data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + RNA calculated energy data generated by the Vienna package. + + Vienna RNA calculated energy + true + + + + + + + + + + beta12orEarlier + Dotplot of RNA base pairing probability matrix. + + + Such as generated by the Vienna package. + Base pairing probability matrix dotplot + + + + + + + + + beta12orEarlier + A human-readable collection of information about RNA/DNA folding, minimum folding energies for DNA or RNA sequences, energy landscape of RNA mutants etc. + Nucleic acid report (folding model) + Nucleic acid report (folding) + RNA secondary structure folding classification + RNA secondary structure folding probabilities + + + Nucleic acid folding report + + + + + + + + + + + + + + + beta12orEarlier + Table of codon usage data calculated from one or more nucleic acid sequences. + + + A codon usage table might include the codon usage table name, optional comments and a table with columns for codons and corresponding codon usage data. A genetic code can be extracted from or represented by a codon usage table. + Codon usage table + + + + + + + + + beta12orEarlier + A genetic code for an organism. + + + A genetic code need not include detailed codon usage information. + Genetic code + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple measure of synonymous codon usage bias often used to predict gene expression levels. + + Codon adaptation index + true + + + + + + + + + beta12orEarlier + A plot of the synonymous codon usage calculated for windows over a nucleotide sequence. + Synonymous codon usage statistic plot + + + Codon usage bias plot + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The effective number of codons used in a gene sequence. This reflects how far codon usage of a gene departs from equal usage of synonymous codons. + + Nc statistic + true + + + + + + + + + beta12orEarlier + The differences in codon usage fractions between two codon usage tables. + + + Codon usage fraction difference + + + + + + + + + beta12orEarlier + A human-readable collection of information about the influence of genotype on drug response. + + + The report might correlate gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity. + Pharmacogenomic test report + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific disease. + + + For example, an informative report on a specific tumor including nature and origin of the sample, anatomic site, organ or tissue, tumor type, including morphology and/or histologic type, and so on. + Disease report + + + + + + + + + beta12orEarlier + 1.8 + + A report on linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome). + + + Linkage disequilibrium (report) + true + + + + + + + + + + beta12orEarlier + A graphical 2D tabular representation of expression data, typically derived from an omics experiment. A heat map is a table where rows and columns correspond to different features and contexts (for example, cells or samples) and the cell colour represents the level of expression of a gene that context. + + + Heat map + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Affymetrix library file of information about which probes belong to which probe set. + + Affymetrix probe sets library file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Affymetrix library file of information about the probe sets such as the gene name with which the probe set is associated. + GIN file + + Affymetrix probe sets information library file + true + + + + + + + + + beta12orEarlier + 1.12 + + Standard protonated molecular masses from trypsin (modified porcine trypsin, Promega) and keratin peptides, used in EMBOSS. + + + Molecular weights standard fingerprint + true + + + + + + + + + beta12orEarlier + 1.8 + + A report typically including a map (diagram) of a metabolic pathway. + + + This includes carbohydrate, energy, lipid, nucleotide, amino acid, glycan, PK/NRP, cofactor/vitamin, secondary metabolite, xenobiotics etc. + Metabolic pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + genetic information processing pathways. + + + Genetic information processing pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + environmental information processing pathways. + + + Environmental information processing pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + A report typically including a map (diagram) of a signal transduction pathway. + + + Signal transduction pathway report + true + + + + + + + + + beta12orEarlier + 1.8 + + Topic concernning cellular process pathways. + + + Cellular process pathways report + true + + + + + + + + + beta12orEarlier + 1.8 + + disease pathways, typically of human disease. + + + Disease pathway or network report + true + + + + + + + + + beta12orEarlier + 1.21 + + A report typically including a map (diagram) of drug structure relationships. + + + Drug structure relationship map + true + + + + + + + + + beta12orEarlier + 1.8 + + + networks of protein interactions. + + Protein interaction networks + true + + + + + + + + + beta12orEarlier + 1.5 + + + An entry (data type) from the Minimal Information Requested in the Annotation of Biochemical Models (MIRIAM) database of data resources. + + A MIRIAM entry describes a MIRIAM data type including the official name, synonyms, root URI, identifier pattern (regular expression applied to a unique identifier of the data type) and documentation. Each data type can be associated with several resources. Each resource is a physical location of a service (typically a database) providing information on the elements of a data type. Several resources may exist for each data type, provided the same (mirrors) or different information. MIRIAM provides a stable and persistent reference to its data types. + MIRIAM datatype + true + + + + + + + + + beta12orEarlier + A simple floating point number defining the lower or upper limit of an expectation value (E-value). + Expectation value + + + An expectation value (E-Value) is the expected number of observations which are at least as extreme as observations expected to occur by random chance. The E-value describes the number of hits with a given score or better that are expected to occur at random when searching a database of a particular size. It decreases exponentially with the score (S) of a hit. A low E value indicates a more significant score. + E-value + + + + + + + + + beta12orEarlier + The z-value is the number of standard deviations a data value is above or below a mean value. + + + A z-value might be specified as a threshold for reporting hits from database searches. + Z-value + + + + + + + + + beta12orEarlier + The P-value is the probability of obtaining by random chance a result that is at least as extreme as an observed result, assuming a NULL hypothesis is true. + + + A z-value might be specified as a threshold for reporting hits from database searches. + P-value + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a database (or ontology) version, for example name, version number and release date. + + Database version information + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on an application version, for example name, version number and release date. + + Tool version information + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Information on a version of the CATH database. + + CATH version information + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Cross-mapping of Swiss-Prot codes to PDB identifiers. + + Swiss-Prot to PDB mapping + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Cross-references from a sequence record to other databases. + + Sequence database cross-references + true + + + + + + + + + beta12orEarlier + 1.5 + + + Metadata on the status of a submitted job. + + Values for EBI services are 'DONE' (job has finished and the results can then be retrieved), 'ERROR' (the job failed or no results where found), 'NOT_FOUND' (the job id is no longer available; job results might be deleted, 'PENDING' (the job is in a queue waiting processing), 'RUNNING' (the job is currently being processed). + Job status + true + + + + + + + + + beta12orEarlier + 1.0 + + + The (typically numeric) unique identifier of a submitted job. + + Job ID + true + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of job, for example interactive or non-interactive. + + Job type + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report of tool-specific metadata on some analysis or process performed, for example a log of diagnostic or error messages. + + Tool log + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + DaliLite log file describing all the steps taken by a DaliLite alignment of two protein structures. + + DaliLite log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + STRIDE log file. + + STRIDE log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + NACCESS log file. + + NACCESS log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS wordfinder log file. + + EMBOSS wordfinder log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS (EMBASSY) domainatrix application log file. + + EMBOSS domainatrix log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS (EMBASSY) sites application log file. + + EMBOSS sites log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS (EMBASSY) supermatcher error file. + + EMBOSS supermatcher error file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS megamerger log file. + + EMBOSS megamerger log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS megamerger log file. + + EMBOSS whichdb log file + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBOSS vectorstrip log file. + + EMBOSS vectorstrip log file + true + + + + + + + + + beta12orEarlier + A username on a computer system or a website. + + + + Username + + + + + + + + + beta12orEarlier + A password on a computer system, or a website. + + + + Password + + + + + + + + + beta12orEarlier + Moby:Email + Moby:EmailAddress + A valid email address of an end-user. + + + + Email address + + + + + + + + + beta12orEarlier + The name of a person. + + + + Person name + + + + + + + + + beta12orEarlier + 1.5 + + + Number of iterations of an algorithm. + + Number of iterations + true + + + + + + + + + beta12orEarlier + 1.5 + + + Number of entities (for example database hits, sequences, alignments etc) to write to an output file. + + Number of output entities + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Controls the order of hits (reported matches) in an output file from a database search. + + Hit sort order + true + + + + + + + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific drug. + Drug annotation + Drug structure relationship map + + + A drug structure relationship map is report (typically a map diagram) of drug structure relationships. + Drug report + + + + + + + + + beta12orEarlier + An image (for viewing or printing) of a phylogenetic tree including (typically) a plot of rooted or unrooted phylogenies, cladograms, circular trees or phenograms and associated information. + + + See also 'Phylogenetic tree' + Phylogenetic tree image + + + + + + + + + beta12orEarlier + Image of RNA secondary structure, knots, pseudoknots etc. + + + RNA secondary structure image + + + + + + + + + beta12orEarlier + Image of protein secondary structure. + + + Protein secondary structure image + + + + + + + + + beta12orEarlier + Image of one or more molecular tertiary (3D) structures. + + + Structure image + + + + + + + + + beta12orEarlier + Image of two or more aligned molecular sequences possibly annotated with alignment features. + + + Sequence alignment image + + + + + + + + + beta12orEarlier + An image of the structure of a small chemical compound. + Small molecule structure image + Chemical structure sketch + Small molecule sketch + + + The molecular identifier and formula are typically included. + Chemical structure image + + + + + + + + + + + + + + + beta12orEarlier + A fate map is a plan of early stage of an embryo such as a blastula, showing areas that are significance to development. + + + Fate map + + + + + + + + + + beta12orEarlier + An image of spots from a microarray experiment. + + + Microarray spots image + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the BioPax ontology. + + BioPax term + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition from The Gene Ontology (GO). + + GO + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the MeSH vocabulary. + + MeSH + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the HGNC controlled vocabulary. + + HGNC + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the NCBI taxonomy vocabulary. + + NCBI taxonomy vocabulary + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the Plant Ontology (PO). + + Plant ontology term + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the UMLS vocabulary. + + UMLS + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from Foundational Model of Anatomy. + + Classifies anatomical entities according to their shared characteristics (genus) and distinguishing characteristics (differentia). Specifies the part-whole and spatial relationships of the entities, morphological transformation of the entities during prenatal development and the postnatal life cycle and principles, rules and definitions according to which classes and relationships in the other three components of FMA are represented. + FMA + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the EMAP mouse ontology. + + EMAP + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the ChEBI ontology. + + ChEBI + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the MGED ontology. + + MGED + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term from the myGrid ontology. + + The ontology is provided as two components, the service ontology and the domain ontology. The domain ontology acts provides concepts for core bioinformatics data types and their relations. The service ontology describes the physical and operational features of web services. + myGrid + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition for a biological process from the Gene Ontology (GO). + + Data Type is an enumerated string. + GO (biological process) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition for a molecular function from the Gene Ontology (GO). + + Data Type is an enumerated string. + GO (molecular function) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term definition for a cellular component from the Gene Ontology (GO). + + Data Type is an enumerated string. + GO (cellular component) + true + + + + + + + + + beta12orEarlier + 1.5 + + + A relation type defined in an ontology. + + Ontology relation type + true + + + + + + + + + beta12orEarlier + The definition of a concept from an ontology. + Ontology class definition + + + Ontology concept definition + + + + + + + + + beta12orEarlier + 1.4 + + + A comment on a concept from an ontology. + + Ontology concept comment + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Reference for a concept from an ontology. + + Ontology concept reference + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Information on a published article provided by the doc2loc program. + + The doc2loc output includes the url, format, type and availability code of a document for every service provider. + doc2loc document information + true + + + + + + + + + beta12orEarlier + PDBML:PDB_residue_no + WHATIF: pdb_number + A residue identifier (a string) from a PDB file. + + + PDB residue number + + + + + + + + + beta12orEarlier + Cartesian coordinate of an atom (in a molecular structure). + Cartesian coordinate + + + Atomic coordinate + + + + + + + + + beta12orEarlier + 1.21 + + Cartesian x coordinate of an atom (in a molecular structure). + + + Atomic x coordinate + true + + + + + + + + + beta12orEarlier + 1.21 + + Cartesian y coordinate of an atom (in a molecular structure). + + + Atomic y coordinate + true + + + + + + + + + beta12orEarlier + 1.21 + + Cartesian z coordinate of an atom (in a molecular structure). + + + Atomic z coordinate + true + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_atom_name + WHATIF: PDBx_auth_atom_id + WHATIF: PDBx_type_symbol + WHATIF: alternate_atom + WHATIF: atom_type + Identifier (a string) of a specific atom from a PDB file for a molecular structure. + + + + PDB atom name + + + + + + + + + beta12orEarlier + Data on a single atom from a protein structure. + Atom data + CHEBI:33250 + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein atom + + + + + + + + + beta12orEarlier + Data on a single amino acid residue position in a protein structure. + Residue + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein residue + + + + + + + + + + beta12orEarlier + Name of an atom. + + + + Atom name + + + + + + + + + beta12orEarlier + WHATIF: type + Three-letter amino acid residue names as used in PDB files. + + + + PDB residue name + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_model_num + WHATIF: model_number + Identifier of a model structure from a PDB file. + Model number + + + + PDB model number + + + + + + + + + beta12orEarlier + beta13 + + + Summary of domain classification information for a CATH domain. + + The report (for example http://www.cathdb.info/domain/1cukA01) includes CATH codes for levels in the hierarchy for the domain, level descriptions and relevant data and links. + CATH domain report + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database (based on ATOM records in PDB) for CATH domains (clustered at different levels of sequence identity). + + CATH representative domain sequences (ATOM) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database (based on COMBS sequence data) for CATH domains (clustered at different levels of sequence identity). + + CATH representative domain sequences (COMBS) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database for all CATH domains (based on PDB ATOM records). + + CATH domain sequences (ATOM) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + FASTA sequence database for all CATH domains (based on COMBS sequence data). + + CATH domain sequences (COMBS) + true + + + + + + + + + beta12orEarlier + Information on an molecular sequence version. + Sequence version information + + + Sequence version + + + + + + + + + beta12orEarlier + A numerical value, that is some type of scored value arising for example from a prediction method. + + + Score + + + + + + + + + beta12orEarlier + beta13 + + + Report on general functional properties of specific protein(s). + + For properties that can be mapped to a sequence, use 'Sequence report' instead. + Protein report (function) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Aspergillus Genome Database. + + Gene name (ASPGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Candida Genome Database. + + Gene name (CGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from dictyBase database. + + Gene name (dictyBase) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Primary name of a gene from EcoGene Database. + + Gene name (EcoGene primary) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from MaizeGDB (maize genes) database. + + Gene name (MaizeGDB) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Saccharomyces Genome Database. + + Gene name (SGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from Tetrahymena Genome Database. + + Gene name (TGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene from E.coli Genetic Stock Center. + + Gene name (CGSC) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene approved by the HUGO Gene Nomenclature Committee. + + Gene name (HGNC) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene from the Mouse Genome Database. + + Gene name (MGD) + true + + + + + + + + + beta12orEarlier + 1.3 + + + Symbol of a gene from Bacillus subtilis Genome Sequence Project. + + Gene name (Bacillus subtilis) + true + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: ApiDB_PlasmoDB + Identifier of a gene from PlasmoDB Plasmodium Genome Resource. + + + + Gene ID (PlasmoDB) + + + + + + + + + + beta12orEarlier + Identifier of a gene from EcoGene Database. + EcoGene Accession + EcoGene ID + + + + Gene ID (EcoGene) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: FB + http://www.geneontology.org/doc/GO.xrf_abbs: FlyBase + Gene identifier from FlyBase database. + + + + Gene ID (FlyBase) + + + + + + + + + beta12orEarlier + beta13 + + + Gene identifier from Glossina morsitans GeneDB database. + + Gene ID (GeneDB Glossina morsitans) + true + + + + + + + + + beta12orEarlier + beta13 + + + Gene identifier from Leishmania major GeneDB database. + + Gene ID (GeneDB Leishmania major) + true + + + + + + + + + beta12orEarlier + beta13 + + + http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Pfalciparum + Gene identifier from Plasmodium falciparum GeneDB database. + + Gene ID (GeneDB Plasmodium falciparum) + true + + + + + + + + + beta12orEarlier + beta13 + + + http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Spombe + Gene identifier from Schizosaccharomyces pombe GeneDB database. + + Gene ID (GeneDB Schizosaccharomyces pombe) + true + + + + + + + + + beta12orEarlier + beta13 + + + http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Tbrucei + Gene identifier from Trypanosoma brucei GeneDB database. + + Gene ID (GeneDB Trypanosoma brucei) + true + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: GR_GENE + http://www.geneontology.org/doc/GO.xrf_abbs: GR_gene + Gene identifier from Gramene database. + + + + Gene ID (Gramene) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: PAMGO_VMD + http://www.geneontology.org/doc/GO.xrf_abbs: VMD + Gene identifier from Virginia Bioinformatics Institute microbial database. + + + + Gene ID (Virginia microbial) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: SGN + Gene identifier from Sol Genomics Network. + + + + Gene ID (SGN) + + + + + + + + + + + beta12orEarlier + WBGene[0-9]{8} + http://www.geneontology.org/doc/GO.xrf_abbs: WB + http://www.geneontology.org/doc/GO.xrf_abbs: WormBase + Gene identifier used by WormBase database. + + + + Gene ID (WormBase) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Any name (other than the recommended one) for a gene. + + Gene synonym + true + + + + + + + + + + beta12orEarlier + The name of an open reading frame attributed by a sequencing project. + + + + ORF name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A component of a larger sequence assembly. + + Sequence assembly component + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A report on a chromosome aberration such as abnormalities in chromosome structure. + + Chromosome annotation (aberration) + true + + + + + + + + + beta12orEarlier + true + An identifier of a clone (cloned molecular sequence) from a database. + + + + Clone ID + + + + + + + + + beta12orEarlier + PDBML:pdbx_PDB_ins_code + WHATIF: insertion_code + An insertion code (part of the residue number) for an amino acid residue from a PDB file. + + + PDB insertion code + + + + + + + + + beta12orEarlier + WHATIF: PDBx_occupancy + The fraction of an atom type present at a site in a molecular structure. + + + The sum of the occupancies of all the atom types at a site should not normally significantly exceed 1.0. + Atomic occupancy + + + + + + + + + beta12orEarlier + WHATIF: PDBx_B_iso_or_equiv + Isotropic B factor (atomic displacement parameter) for an atom from a PDB file. + + + Isotropic B factor + + + + + + + + + beta12orEarlier + A cytogenetic map showing chromosome banding patterns in mutant cell lines relative to the wild type. + Deletion-based cytogenetic map + + + A cytogenetic map is built from a set of mutant cell lines with sub-chromosomal deletions and a reference wild-type line ('genome deletion panel'). The panel is used to map markers onto the genome by comparing mutant to wild-type banding patterns. Markers are linked (occur in the same deleted region) if they share the same banding pattern (presence or absence) as the deletion panel. + Deletion map + + + + + + + + + beta12orEarlier + A genetic map which shows the approximate location of quantitative trait loci (QTL) between two or more markers. + Quantitative trait locus map + + + QTL map + + + + + + + + + beta12orEarlier + Moby:Haplotyping_Study_obj + A map of haplotypes in a genome or other sequence, describing common patterns of genetic variation. + + + Haplotype map + + + + + + + + + beta12orEarlier + 1.21 + + Data describing a set of multiple genetic or physical maps, typically sharing a common set of features which are mapped. + + + Map set data + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + + A feature which may mapped (positioned) on a genetic or other type of map. + + Mappable features may be based on Gramene's notion of map features; see http://www.gramene.org/db/cmap/feature_type_info. + Map feature + true + + + + + + + + + beta12orEarlier + 1.5 + + + A designation of the type of map (genetic map, physical map, sequence map etc) or map set. + + Map types may be based on Gramene's notion of a map type; see http://www.gramene.org/db/cmap/map_type_info. + Map type + true + + + + + + + + + beta12orEarlier + The name of a protein fold. + + + + Protein fold name + + + + + + + + + beta12orEarlier + Moby:BriefTaxonConcept + Moby:PotentialTaxon + The name of a group of organisms belonging to the same taxonomic rank. + Taxonomic rank + Taxonomy rank + + + + For a complete list of taxonomic ranks see https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary. + Taxon + + + + + + + + + + + + + + + beta12orEarlier + true + A unique identifier of a (group of) organisms. + + + + Organism identifier + + + + + + + + + beta12orEarlier + The name of a genus of organism. + + + + Genus name + + + + + + + + + beta12orEarlier + Moby:GCP_Taxon + Moby:TaxonName + Moby:TaxonScientificName + Moby:TaxonTCS + Moby:iANT_organism-xml + The full name for a group of organisms, reflecting their biological classification and (usually) conforming to a standard nomenclature. + Taxonomic information + Taxonomic name + + + + Name components correspond to levels in a taxonomic hierarchy (e.g. 'Genus', 'Species', etc.) Meta information such as a reference where the name was defined and a date might be included. + Taxonomic classification + + + + + + + + + + beta12orEarlier + Moby_namespace:iHOPorganism + A unique identifier for an organism used in the iHOP database. + + + + iHOP organism ID + + + + + + + + + beta12orEarlier + Common name for an organism as used in the GenBank database. + + + + Genbank common name + + + + + + + + + beta12orEarlier + The name of a taxon from the NCBI taxonomy database. + + + + NCBI taxon + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An alternative for a word. + + Synonym + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A common misspelling of a word. + + Misspelling + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An abbreviation of a phrase or word. + + Acronym + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A term which is likely to be misleading of its meaning. + + Misnomer + true + + + + + + + + + beta12orEarlier + Moby:Author + Information on the authors of a published work. + + + + Author ID + + + + + + + + + beta12orEarlier + An identifier representing an author in the DragonDB database. + + + + DragonDB author identifier + + + + + + + + + beta12orEarlier + Moby:DescribedLink + A URI along with annotation describing the data found at the address. + + + Annotated URI + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A controlled vocabulary for words and phrases that can appear in the keywords field (KW line) of entries from the UniProt database. + + UniProt keywords + true + + + + + + + + + + beta12orEarlier + Moby_namespace:GENEFARM_GeneID + Identifier of a gene from the GeneFarm database. + + + + Gene ID (GeneFarm) + + + + + + + + + + beta12orEarlier + Moby_namespace:Blattner_number + The blattner identifier for a gene. + + + + Blattner number + + + + + + + + + beta12orEarlier + beta13 + + + Moby_namespace:MIPS_GE_Maize + Identifier for genetic elements in MIPS Maize database. + + Gene ID (MIPS Maize) + true + + + + + + + + + beta12orEarlier + beta13 + + + Moby_namespace:MIPS_GE_Medicago + Identifier for genetic elements in MIPS Medicago database. + + Gene ID (MIPS Medicago) + true + + + + + + + + + beta12orEarlier + 1.3 + + + The name of an Antirrhinum Gene from the DragonDB database. + + Gene name (DragonDB) + true + + + + + + + + + beta12orEarlier + 1.3 + + + A unique identifier for an Arabidopsis gene, which is an acronym or abbreviation of the gene name. + + Gene name (Arabidopsis) + true + + + + + + + + + + + + beta12orEarlier + Moby_namespace:iHOPsymbol + A unique identifier of a protein or gene used in the iHOP database. + + + + iHOP symbol + + + + + + + + + beta12orEarlier + 1.3 + + + Name of a gene from the GeneFarm database. + + Gene name (GeneFarm) + true + + + + + + + + + + + + + + + beta12orEarlier + true + A unique name or other identifier of a genetic locus, typically conforming to a scheme that names loci (such as predicted genes) depending on their position in a molecular sequence, for example a completely sequenced genome or chromosome. + Locus identifier + Locus name + + + + Locus ID + + + + + + + + + + beta12orEarlier + AT[1-5]G[0-9]{5} + http://www.geneontology.org/doc/GO.xrf_abbs:AGI_LocusCode + Locus identifier for Arabidopsis Genome Initiative (TAIR, TIGR and MIPS databases). + AGI ID + AGI identifier + AGI locus code + Arabidopsis gene loci number + + + + Locus ID (AGI) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: ASPGD + http://www.geneontology.org/doc/GO.xrf_abbs: ASPGDID + Identifier for loci from ASPGD (Aspergillus Genome Database). + + + + Locus ID (ASPGD) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: Broad_MGG + Identifier for loci from Magnaporthe grisea Database at the Broad Institute. + + + + Locus ID (MGG) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: CGD + http://www.geneontology.org/doc/GO.xrf_abbs: CGDID + Identifier for loci from CGD (Candida Genome Database). + CGD locus identifier + CGDID + + + + Locus ID (CGD) + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: JCVI_CMR + http://www.geneontology.org/doc/GO.xrf_abbs: TIGR_CMR + Locus identifier for Comprehensive Microbial Resource at the J. Craig Venter Institute. + + + + Locus ID (CMR) + + + + + + + + + + beta12orEarlier + Moby_namespace:LocusID + http://www.geneontology.org/doc/GO.xrf_abbs: NCBI_locus_tag + Identifier for loci from NCBI database. + Locus ID (NCBI) + + + + NCBI locus tag + + + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: SGD + http://www.geneontology.org/doc/GO.xrf_abbs: SGDID + Identifier for loci from SGD (Saccharomyces Genome Database). + SGDID + + + + Locus ID (SGD) + + + + + + + + + + beta12orEarlier + Moby_namespace:MMP_Locus + Identifier of loci from Maize Mapping Project. + + + + Locus ID (MMP) + + + + + + + + + + beta12orEarlier + Moby_namespace:DDB_gene + Identifier of locus from DictyBase (Dictyostelium discoideum). + + + + Locus ID (DictyBase) + + + + + + + + + + beta12orEarlier + Moby_namespace:EntrezGene_EntrezGeneID + Moby_namespace:EntrezGene_ID + Identifier of a locus from EntrezGene database. + + + + Locus ID (EntrezGene) + + + + + + + + + + beta12orEarlier + Moby_namespace:MaizeGDB_Locus + Identifier of locus from MaizeGDB (Maize genome database). + + + + Locus ID (MaizeGDB) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Moby:SO_QTL + A stretch of DNA that is closely linked to the genes underlying a quantitative trait (a phenotype that varies in degree and depends upon the interactions between multiple genes and their environment). + + A QTL sometimes but does not necessarily correspond to a gene. + Quantitative trait locus + true + + + + + + + + + + beta12orEarlier + Moby_namespace:GeneId + Identifier of a gene from the KOME database. + + + + Gene ID (KOME) + + + + + + + + + + beta12orEarlier + Moby:Tropgene_locus + Identifier of a locus from the Tropgene database. + + + + Locus ID (Tropgene) + + + + + + + + + beta12orEarlier + true + An alignment of molecular sequences, structures or profiles derived from them. + + + Alignment + + + + + + + + + beta12orEarlier + Data for an atom (in a molecular structure). + General atomic property + + + Atomic property + + + + + + + + + beta12orEarlier + Moby_namespace:SP_KW + http://www.geneontology.org/doc/GO.xrf_abbs: SP_KW + A word or phrase that can appear in the keywords field (KW line) of entries from the UniProt database. + + + UniProt keyword + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A name for a genetic locus conforming to a scheme that names loci (such as predicted genes) depending on their position in a molecular sequence, for example a completely sequenced genome or chromosome. + + Ordered locus name + true + + + + + + + + + + + beta12orEarlier + Moby:GCP_MapInterval + Moby:GCP_MapPoint + Moby:GCP_MapPosition + Moby:GenePosition + Moby:HitPosition + Moby:Locus + Moby:MapPosition + Moby:Position + PDBML:_atom_site.id + A position in a map (for example a genetic map), either a single position (point) or a region / interval. + Locus + Map position + + + This includes positions in genomes based on a reference sequence. A position may be specified for any mappable object, i.e. anything that may have positional information such as a physical position in a chromosome. Data might include sequence region name, strand, coordinate system name, assembly name, start position and end position. + Sequence coordinates + + + + + + + + + beta12orEarlier + Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all amino acids. + Amino acid data + + + Amino acid property + + + + + + + + + beta12orEarlier + beta13 + + + A human-readable collection of information which (typically) is generated or collated by hand and which describes a biological entity, phenomena or associated primary (e.g. sequence or structural) data, as distinct from the primary data itself and computer-generated reports derived from it. + + This is a broad data type and is used a placeholder for other, more specific types. + Annotation + true + + + + + + + + + + + + + + + beta12orEarlier + Data describing a molecular map (genetic or physical) or a set of such maps, including various attributes of, data extracted from or derived from the analysis of them, but excluding the map(s) themselves. This includes metadata for map sets that share a common set of features which are mapped. + Map attribute + Map set data + + + Map data + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data used by the Vienna RNA analysis package. + + Vienna RNA structural data + true + + + + + + + + + beta12orEarlier + 1.5 + + + Data used to replace (mask) characters in a molecular sequence. + + Sequence mask parameter + true + + + + + + + + + + beta12orEarlier + Data concerning chemical reaction(s) catalysed by enzyme(s). + + + This is a broad data type and is used a placeholder for other, more specific types. + Enzyme kinetics data + + + + + + + + + beta12orEarlier + A plot giving an approximation of the kinetics of an enzyme-catalysed reaction, assuming simple kinetics (i.e. no intermediate or product inhibition, allostericity or cooperativity). It plots initial reaction rate to the substrate concentration (S) from which the maximum rate (vmax) is apparent. + + + Michaelis Menten plot + + + + + + + + + beta12orEarlier + A plot based on the Michaelis Menten equation of enzyme kinetics plotting the ratio of the initial substrate concentration (S) against the reaction velocity (v). + + + Hanes Woolf plot + + + + + + + + + beta12orEarlier + beta13 + + + + Raw data from or annotation on laboratory experiments. + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Experimental data + true + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a genome version. + + Genome version information + true + + + + + + + + + beta12orEarlier + Typically a human-readable summary of body of facts or information indicating why a statement is true or valid. This may include a computational prediction, laboratory experiment, literature reference etc. + + + Evidence + + + + + + + + + beta12orEarlier + 1.8 + + A molecular sequence and minimal metadata, typically an identifier of the sequence and/or a comment. + + + Sequence record lite + true + + + + + + + + + + + + + + + beta12orEarlier + One or more molecular sequences, possibly with associated annotation. + Sequences + + + This concept is a placeholder of concepts for primary sequence data including raw sequences and sequence records. It should not normally be used for derivatives such as sequence alignments, motifs or profiles. + Sequence + http://purl.bioontology.org/ontology/MSH/D008969 + http://purl.org/biotop/biotop.owl#BioMolecularSequenceInformation + + + + + + + + + beta12orEarlier + 1.8 + + A nucleic acid sequence and minimal metadata, typically an identifier of the sequence and/or a comment. + + + Nucleic acid sequence record (lite) + true + + + + + + + + + beta12orEarlier + 1.8 + + A protein sequence and minimal metadata, typically an identifier of the sequence and/or a comment. + + + Protein sequence record (lite) + true + + + + + + + + + beta12orEarlier + A human-readable collection of information including annotation on a biological entity or phenomena, computer-generated reports of analysis of primary data (e.g. sequence or structural), and metadata (data about primary data) or any other free (essentially unformatted) text, as distinct from the primary data itself. + Document + Record + + + You can use this term by default for any textual report, in case you can't find another, more specific term. Reports may be generated automatically or collated by hand and can include metadata on the origin, source, history, ownership or location of some thing. + Report + http://semanticscience.org/resource/SIO_000148 + + + + + + + + + beta12orEarlier + General data for a molecule. + General molecular property + + + Molecular property (general) + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning molecular structural data. + + This is a broad data type and is used a placeholder for other, more specific types. + Structural data + true + + + + + + + + + beta12orEarlier + A nucleotide sequence motif. + Nucleic acid sequence motif + DNA sequence motif + RNA sequence motif + + + Sequence motif (nucleic acid) + + + + + + + + + beta12orEarlier + An amino acid sequence motif. + Protein sequence motif + + + Sequence motif (protein) + + + + + + + + + beta12orEarlier + 1.5 + + + Some simple value controlling a search operation, typically a search of a database. + + Search parameter + true + + + + + + + + + beta12orEarlier + A report of hits from searching a database of some type. + Database hits + Search results + + + Database search results + + + + + + + + + beta12orEarlier + 1.5 + + + The secondary structure assignment (predicted or real) of a nucleic acid or protein. + + Secondary structure + true + + + + + + + + + beta12orEarlier + An array of numerical values. + Array + + + This is a broad data type and is used a placeholder for other, more specific types. + Matrix + + + + + + + + + beta12orEarlier + 1.8 + + + Data concerning, extracted from, or derived from the analysis of molecular alignment of some type. + + This is a broad data type and is used a placeholder for other, more specific types. + Alignment data + true + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific nucleic acid molecules. + + + Nucleic acid report + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more molecular tertiary (3D) structures. It might include annotation on the structure, a computer-generated report of analysis of structural data, and metadata (data about primary data) or any other free (essentially unformatted) text, as distinct from the primary data itself. + Structure-derived report + + + Structure report + + + + + + + + + beta12orEarlier + 1.21 + + + + A report on nucleic acid structure-derived data, describing structural properties of a DNA molecule, or any other annotation or information about specific nucleic acid 3D structure(s). + + Nucleic acid structure data + true + + + + + + + + + beta12orEarlier + A report on the physical (e.g. structural) or chemical properties of molecules, or parts of a molecule. + Physicochemical property + SO:0000400 + + + Molecular property + + + + + + + + + beta12orEarlier + Structural data for DNA base pairs or runs of bases, such as energy or angle data. + + + DNA base structural data + + + + + + + + + beta12orEarlier + 1.5 + + + Information on a database (or ontology) entry version, such as name (or other identifier) or parent database, unique identifier of entry, data, author and so on. + + Database entry version information + true + + + + + + + + + beta12orEarlier + true + A persistent (stable) and unique identifier, typically identifying an object (entry) from a database. + + + + Accession + http://semanticscience.org/resource/SIO_000675 + http://semanticscience.org/resource/SIO_000731 + + + + + + + + + beta12orEarlier + 1.8 + + single nucleotide polymorphism (SNP) in a DNA sequence. + + + SNP + true + + + + + + + + + beta12orEarlier + Reference to a dataset (or a cross-reference between two datasets), typically one or more entries in a biological database or ontology. + + + A list of database accessions or identifiers are usually included. + Data reference + + + + + + + + + beta12orEarlier + true + An identifier of a submitted job. + + + + Job identifier + http://wsio.org/data_009 + + + + + + + + + beta12orEarlier + true + + A name of a thing, which need not necessarily uniquely identify it. + Symbolic name + + + + Name + "http://www.w3.org/2000/01/rdf-schema#label + http://semanticscience.org/resource/SIO_000116 + http://usefulinc.com/ns/doap#name + + + + + + Closely related, but focusing on labeling and human readability but not on identification. + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing the type of a thing, typically an enumerated string (a string with one of a limited set of values). + + Type + http://purl.org/dc/elements/1.1/type + true + + + + + + + + + beta12orEarlier + Authentication data usually used to log in into an account on an information system such as a web application or a database. + + + + Account authentication + + + + + + + + + + beta12orEarlier + A three-letter code used in the KEGG databases to uniquely identify organisms. + + + + KEGG organism code + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the KEGG GENES database. + + Gene name (KEGG GENES) + true + + + + + + + + + + beta12orEarlier + Identifier of an object from one of the BioCyc databases. + + + + BioCyc ID + + + + + + + + + + + beta12orEarlier + Identifier of a compound from the BioCyc chemical compounds database. + BioCyc compound ID + BioCyc compound identifier + + + + Compound ID (BioCyc) + + + + + + + + + + + beta12orEarlier + Identifier of a biological reaction from the BioCyc reactions database. + + + + Reaction ID (BioCyc) + + + + + + + + + + + beta12orEarlier + Identifier of an enzyme from the BioCyc enzymes database. + BioCyc enzyme ID + + + + Enzyme ID (BioCyc) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a biological reaction from a database. + + + + Reaction ID + + + + + + + + + beta12orEarlier + true + An identifier that is re-used for data objects of fundamentally different types (typically served from a single database). + + + + This branch provides an alternative organisation of the concepts nested under 'Accession' and 'Name'. All concepts under here are already included under 'Accession' or 'Name'. + Identifier (hybrid) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a molecular property. + + + + Molecular property identifier + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a codon usage table, for example a genetic code. + Codon usage table identifier + + + + Codon usage table ID + + + + + + + + + beta12orEarlier + Primary identifier of an object from the FlyBase database. + + + + FlyBase primary identifier + + + + + + + + + beta12orEarlier + Identifier of an object from the WormBase database. + + + + WormBase identifier + + + + + + + + + + + beta12orEarlier + CE[0-9]{5} + Protein identifier used by WormBase database. + + + + WormBase wormpep ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on a trinucleotide sequence that encodes an amino acid including the triplet sequence, the encoded amino acid or whether it is a start or stop codon. + + Nucleic acid features (codon) + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a map of a molecular sequence. + + + + Map identifier + + + + + + + + + beta12orEarlier + true + An identifier of a software end-user on a website or a database (typically a person or an entity). + + + + Person identifier + + + + + + + + + + + + + + + beta12orEarlier + true + Name or other identifier of a nucleic acid molecule. + + + + Nucleic acid identifier + + + + + + + + + beta12orEarlier + 1.20 + + + Frame for translation of DNA (3 forward and 3 reverse frames relative to a chromosome). + + Translation frame specification + true + + + + + + + + + + + + + + + beta12orEarlier + true + An identifier of a genetic code. + + + + Genetic code identifier + + + + + + + + + + beta12orEarlier + Informal name for a genetic code, typically an organism name. + + + + Genetic code name + + + + + + + + + + beta12orEarlier + Name of a file format such as HTML, PNG, PDF, EMBL, GenBank and so on. + + + + File format name + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing a type of sequence profile such as frequency matrix, Gribskov profile, hidden Markov model etc. + + Sequence profile type + true + + + + + + + + + beta12orEarlier + Name of a computer operating system such as Linux, PC or Mac. + + + + Operating system name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A type of point or block mutation, including insertion, deletion, change, duplication and moves. + + Mutation type + true + + + + + + + + + beta12orEarlier + A logical operator such as OR, AND, XOR, and NOT. + + + + Logical operator + + + + + + + + + beta12orEarlier + 1.5 + + + A control of the order of data that is output, for example the order of sequences in an alignment. + + Possible options including sorting by score, rank, by increasing P-value (probability, i.e. most statistically significant hits given first) and so on. + Results sort order + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A simple parameter that is a toggle (boolean value), typically a control for a modal tool. + + Toggle + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The width of an output sequence or alignment. + + Sequence width + true + + + + + + + + + beta12orEarlier + A penalty for introducing or extending a gap in an alignment. + + + Gap penalty + + + + + + + + + beta12orEarlier + A temperature concerning nucleic acid denaturation, typically the temperature at which the two strands of a hybridised or double stranded nucleic acid (DNA or RNA/DNA) molecule separate. + Melting temperature + + + Nucleic acid melting temperature + + + + + + + + + beta12orEarlier + The concentration of a chemical compound. + + + Concentration + + + + + + + + + beta12orEarlier + 1.5 + + + Size of the incremental 'step' a sequence window is moved over a sequence. + + Window step size + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An image of a graph generated by the EMBOSS suite. + + EMBOSS graph + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An application report generated by the EMBOSS suite. + + EMBOSS report + true + + + + + + + + + beta12orEarlier + 1.5 + + + An offset for a single-point sequence position. + + Sequence offset + true + + + + + + + + + beta12orEarlier + 1.5 + + + A value that serves as a threshold for a tool (usually to control scoring or output). + + Threshold + true + + + + + + + + + beta12orEarlier + beta13 + + + An informative report on a transcription factor protein. + + This might include conformational or physicochemical properties, as well as sequence information for transcription factor(s) binding sites. + Protein report (transcription factor) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a category of biological or bioinformatics database. + + Database category name + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name of a sequence profile. + + Sequence profile name + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Specification of one or more colors. + + Color + true + + + + + + + + + beta12orEarlier + 1.5 + + + A parameter that is used to control rendering (drawing) to a device or image. + + Rendering parameter + true + + + + + + + + + + beta12orEarlier + Any arbitrary name of a molecular sequence. + + + + Sequence name + + + + + + + + + beta12orEarlier + 1.5 + + + A temporal date. + + Date + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Word composition data for a molecular sequence. + + Word composition + true + + + + + + + + + beta12orEarlier + A plot of Fickett testcode statistic (identifying protein coding regions) in a nucleotide sequences. + + + Fickett testcode plot + + + + + + + + + + beta12orEarlier + A plot of sequence similarities identified from word-matching or character comparison. + Sequence conservation report + + + Use this concept for calculated substitution rates, relative site variability, data on sites with biased properties, highly conserved or very poorly conserved sites, regions, blocks etc. + Sequence similarity plot + + + + + + + + + beta12orEarlier + An image of peptide sequence sequence looking down the axis of the helix for highlighting amphipathicity and other properties. + + + Helical wheel + + + + + + + + + beta12orEarlier + An image of peptide sequence sequence in a simple 3,4,3,4 repeating pattern that emulates at a simple level the arrangement of residues around an alpha helix. + + + Useful for highlighting amphipathicity and other properties. + Helical net + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A plot of general physicochemical properties of a protein sequence. + + Protein sequence properties plot + true + + + + + + + + + + beta12orEarlier + A plot of pK versus pH for a protein. + + + Protein ionisation curve + + + + + + + + + + beta12orEarlier + A plot of character or word composition / frequency of a molecular sequence. + + + Sequence composition plot + + + + + + + + + + beta12orEarlier + Density plot (of base composition) for a nucleotide sequence. + + + Nucleic acid density plot + + + + + + + + + beta12orEarlier + Image of a sequence trace (nucleotide sequence versus probabilities of each of the 4 bases). + + + Sequence trace image + + + + + + + + + beta12orEarlier + 1.5 + + + A report on siRNA duplexes in mRNA. + + Nucleic acid features (siRNA) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A collection of multiple molecular sequences and (typically) associated metadata that is intended for sequential processing. + + This concept may be used for sequence sets that are expected to be read and processed a single sequence at a time. + Sequence set (stream) + true + + + + + + + + + beta12orEarlier + Secondary identifier of an object from the FlyBase database. + + + + Secondary identifier are used to handle entries that were merged with or split from other entries in the database. + FlyBase secondary identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The number of a certain thing. + + Cardinality + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A single thing. + + Exactly 1 + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + One or more things. + + 1 or more + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Exactly two things. + + Exactly 2 + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Two or more things. + + 2 or more + true + + + + + + + + + beta12orEarlier + A fixed-size datum calculated (by using a hash function) for a molecular sequence, typically for purposes of error detection or indexing. + Hash + Hash code + Hash sum + Hash value + + + Sequence checksum + + + + + + + + + beta12orEarlier + 1.8 + + chemical modification of a protein. + + + Protein features report (chemical modifications) + true + + + + + + + + + beta12orEarlier + 1.5 + + + Data on an error generated by computer system or tool. + + Error + true + + + + + + + + + beta12orEarlier + Basic information on any arbitrary database entry. + + + Database entry metadata + + + + + + + + + beta12orEarlier + beta13 + + + A cluster of similar genes. + + Gene cluster + true + + + + + + + + + beta12orEarlier + 1.8 + + A molecular sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database. + + + Sequence record full + true + + + + + + + + + beta12orEarlier + true + An identifier of a plasmid in a database. + + + + Plasmid identifier + + + + + + + + + + beta12orEarlier + true + A unique identifier of a specific mutation catalogued in a database. + + + + Mutation ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Information describing the mutation itself, the organ site, tissue and type of lesion where the mutation has been identified, description of the patient origin and life-style. + + Mutation annotation (basic) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on the prevalence of mutation(s), including data on samples and mutation prevalence (e.g. by tumour type).. + + Mutation annotation (prevalence) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on mutation prognostic data, such as information on patient cohort, the study settings and the results of the study. + + Mutation annotation (prognostic) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on the functional properties of mutant proteins including transcriptional activities, promotion of cell growth and tumorigenicity, dominant negative effects, capacity to induce apoptosis, cell-cycle arrest or checkpoints in human cells and so on. + + Mutation annotation (functional) + true + + + + + + + + + beta12orEarlier + The number of a codon, for instance, at which a mutation is located. + + + Codon number + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific tumor including nature and origin of the sample, anatomic site, organ or tissue, tumor type, including morphology and/or histologic type, and so on. + + Tumor annotation + true + + + + + + + + + beta12orEarlier + 1.5 + + + Basic information about a server on the web, such as an SRS server. + + Server metadata + true + + + + + + + + + beta12orEarlier + The name of a field in a database. + + + + Database field name + + + + + + + + + + beta12orEarlier + Unique identifier of a sequence cluster from the SYSTERS database. + SYSTERS cluster ID + + + + Sequence cluster ID (SYSTERS) + + + + + + + + + + + + + + + beta12orEarlier + Data concerning a biological ontology. + + + Ontology metadata + + + + + + + + + beta12orEarlier + beta13 + + + Raw SCOP domain classification data files. + + These are the parsable data files provided by SCOP. + Raw SCOP domain classification + true + + + + + + + + + beta12orEarlier + beta13 + + + Raw CATH domain classification data files. + + These are the parsable data files provided by CATH. + Raw CATH domain classification + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on the types of small molecules or 'heterogens' (non-protein groups) that are represented in PDB files. + + Heterogen annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Phylogenetic property values data. + + Phylogenetic property values + true + + + + + + + + + beta12orEarlier + 1.5 + + + A collection of sequences output from a bootstrapping (resampling) procedure. + + Bootstrapping is often performed in phylogenetic analysis. + Sequence set (bootstrapped) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A consensus phylogenetic tree derived from comparison of multiple trees. + + Phylogenetic consensus tree + true + + + + + + + + + beta12orEarlier + 1.5 + + + A data schema for organising or transforming data of some type. + + Schema + true + + + + + + + + + beta12orEarlier + 1.5 + + + A DTD (document type definition). + + DTD + true + + + + + + + + + beta12orEarlier + 1.5 + + + An XML Schema. + + XML Schema + true + + + + + + + + + beta12orEarlier + 1.5 + + + A relax-NG schema. + + Relax-NG schema + true + + + + + + + + + beta12orEarlier + 1.5 + + + An XSLT stylesheet. + + XSLT stylesheet + true + + + + + + + + + + beta12orEarlier + The name of a data type. + + + + Data resource definition name + + + + + + + + + beta12orEarlier + Name of an OBO file format such as OBO-XML, plain and so on. + + + + OBO file format name + + + + + + + + + + beta12orEarlier + Identifier for genetic elements in MIPS database. + MIPS genetic element identifier + + + + Gene ID (MIPS) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of protein sequence(s) or protein sequence database entries. + + Sequence identifier (protein) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An identifier of nucleotide sequence(s) or nucleotide sequence database entries. + + Sequence identifier (nucleic acid) + true + + + + + + + + + beta12orEarlier + An accession number of an entry from the EMBL sequence database. + EMBL ID + EMBL accession number + EMBL identifier + + + + EMBL accession + + + + + + + + + + + + + + + beta12orEarlier + An identifier of a polypeptide in the UniProt database. + UniProt entry name + UniProt identifier + UniProtKB entry name + UniProtKB identifier + + + + UniProt ID + + + + + + + + + beta12orEarlier + Accession number of an entry from the GenBank sequence database. + GenBank ID + GenBank accession number + GenBank identifier + + + + GenBank accession + + + + + + + + + beta12orEarlier + Secondary (internal) identifier of a Gramene database entry. + Gramene internal ID + Gramene internal identifier + Gramene secondary ID + + + + Gramene secondary identifier + + + + + + + + + beta12orEarlier + true + An identifier of an entry from a database of molecular sequence variation. + + + + Sequence variation ID + + + + + + + + + + beta12orEarlier + true + A unique (and typically persistent) identifier of a gene in a database, that is (typically) different to the gene name/symbol. + Gene accession + Gene code + + + + Gene ID + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the AceView genes database. + + Gene name (AceView) + true + + + + + + + + + beta12orEarlier + http://www.geneontology.org/doc/GO.xrf_abbs: ECK + Identifier of an E. coli K-12 gene from EcoGene Database. + E. coli K-12 gene identifier + ECK accession + + + + Gene ID (ECK) + + + + + + + + + + beta12orEarlier + Identifier for a gene approved by the HUGO Gene Nomenclature Committee. + HGNC ID + + + + Gene ID (HGNC) + + + + + + + + + + beta12orEarlier + The name of a gene, (typically) assigned by a person and/or according to a naming scheme. It may contain white space characters and is typically more intuitive and readable than a gene symbol. It (typically) may be used to identify similar genes in different species and to derive a gene symbol. + Allele name + + + + Gene name + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the NCBI genes database. + + Gene name (NCBI) + true + + + + + + + + + beta12orEarlier + A specification of a chemical structure in SMILES format. + + + SMILES string + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the STRING database of protein-protein interactions. + + + + STRING ID + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific virus. + + Virus annotation + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on the taxonomy of a specific virus. + + Virus annotation (taxonomy) + true + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a biological reaction from the SABIO-RK reactions database. + + + + Reaction ID (SABIO-RK) + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific carbohydrate 3D structure(s). + + + Carbohydrate report + + + + + + + + + + beta12orEarlier + A series of digits that are assigned consecutively to each sequence record processed by NCBI. The GI number bears no resemblance to the Accession number of the sequence record. + NCBI GI number + + + + Nucleotide sequence GI number is shown in the VERSION field of the database record. Protein sequence GI number is shown in the CDS/db_xref field of a nucleotide database record, and the VERSION field of a protein database record. + GI number + + + + + + + + + + beta12orEarlier + An identifier assigned to sequence records processed by NCBI, made of the accession number of the database record followed by a dot and a version number. + NCBI accession.version + accession.version + + + + Nucleotide sequence version contains two letters followed by six digits, a dot, and a version number (or for older nucleotide sequence records, the format is one letter followed by five digits, a dot, and a version number). Protein sequence version contains three letters followed by five digits, a dot, and a version number. + NCBI version + + + + + + + + + beta12orEarlier + The name of a cell line. + + + + Cell line name + + + + + + + + + beta12orEarlier + The exact name of a cell line. + + + + Cell line name (exact) + + + + + + + + + beta12orEarlier + The truncated name of a cell line. + + + + Cell line name (truncated) + + + + + + + + + beta12orEarlier + The name of a cell line without any punctuation. + + + + Cell line name (no punctuation) + + + + + + + + + beta12orEarlier + The assonant name of a cell line. + + + + Cell line name (assonant) + + + + + + + + + + beta12orEarlier + true + A unique, persistent identifier of an enzyme. + Enzyme accession + + + + Enzyme ID + + + + + + + + + + beta12orEarlier + Identifier of an enzyme from the REBASE enzymes database. + + + + REBASE enzyme number + + + + + + + + + + beta12orEarlier + DB[0-9]{5} + Unique identifier of a drug from the DrugBank database. + + + + DrugBank ID + + + + + + + + + beta12orEarlier + A unique identifier assigned to NCBI protein sequence records. + protein gi + protein gi number + + + + Nucleotide sequence GI number is shown in the VERSION field of the database record. Protein sequence GI number is shown in the CDS/db_xref field of a nucleotide database record, and the VERSION field of a protein database record. + GI number (protein) + + + + + + + + + beta12orEarlier + A score derived from the alignment of two sequences, which is then normalised with respect to the scoring system. + + + Bit scores are normalised with respect to the scoring system and therefore can be used to compare alignment scores from different searches. + Bit score + + + + + + + + + beta12orEarlier + 1.20 + + + Phase for translation of DNA (0, 1 or 2) relative to a fragment of the coding sequence. + + Translation phase specification + true + + + + + + + + + beta12orEarlier + Data concerning or describing some core computational resource, as distinct from primary data. This includes metadata on the origin, source, history, ownership or location of some thing. + Provenance metadata + + + This is a broad data type and is used a placeholder for other, more specific types. + Resource metadata + + + + + + + + + + + + + + + beta12orEarlier + Any arbitrary identifier of an ontology. + + + + Ontology identifier + + + + + + + + + + beta12orEarlier + The name of a concept in an ontology. + + + + Ontology concept name + + + + + + + + + beta12orEarlier + An identifier of a build of a particular genome. + + + + Genome build identifier + + + + + + + + + beta12orEarlier + The name of a biological pathway or network. + + + + Pathway or network name + + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]{2,3}[0-9]{5} + Identifier of a pathway from the KEGG pathway database. + KEGG pathway ID + + + + Pathway ID (KEGG) + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+ + Identifier of a pathway from the NCI-Nature pathway database. + + + + Pathway ID (NCI-Nature) + + + + + + + + + + + beta12orEarlier + Identifier of a pathway from the ConsensusPathDB pathway database. + + + + Pathway ID (ConsensusPathDB) + + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef database. + UniRef cluster id + UniRef entry accession + + + + Sequence cluster ID (UniRef) + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef100 database. + UniRef100 cluster id + UniRef100 entry accession + + + + Sequence cluster ID (UniRef100) + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef90 database. + UniRef90 cluster id + UniRef90 entry accession + + + + Sequence cluster ID (UniRef90) + + + + + + + + + beta12orEarlier + Unique identifier of an entry from the UniRef50 database. + UniRef50 cluster id + UniRef50 entry accession + + + + Sequence cluster ID (UniRef50) + + + + + + + + + + + + + + + beta12orEarlier + Data concerning or derived from an ontology. + Ontological data + + + This is a broad data type and is used a placeholder for other, more specific types. + Ontology data + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific RNA family or other group of classified RNA sequences. + RNA family annotation + + + RNA family report + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an RNA family, typically an entry from a RNA sequence classification database. + + + + RNA family identifier + + + + + + + + + + beta12orEarlier + Stable accession number of an entry (RNA family) from the RFAM database. + + + + RFAM accession + + + + + + + + + beta12orEarlier + 1.5 + + + A label (text token) describing a type of protein family signature (sequence classifier) from the InterPro database. + + Protein signature type + true + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on protein domain-DNA/RNA interaction(s). + + Domain-nucleic acid interaction report + true + + + + + + + + + beta12orEarlier + 1.8 + + + An informative report on protein domain-protein domain interaction(s). + + Domain-domain interactions + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data on indirect protein domain-protein domain interaction(s). + + Domain-domain interaction (indirect) + true + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a nucleotide or protein sequence database entry. + + + + Sequence accession (hybrid) + + + + + + + + + beta12orEarlier + beta13 + + Data concerning two-dimensional polygel electrophoresis. + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + 2D PAGE data + true + + + + + + + + + beta12orEarlier + 1.8 + + two-dimensional gel electrophoresis experiments, gels or spots in a gel. + + + 2D PAGE report + true + + + + + + + + + beta12orEarlier + true + A persistent, unique identifier of a biological pathway or network (typically a database entry). + + + + Pathway or network accession + + + + + + + + + beta12orEarlier + Alignment of the (1D representations of) secondary structure of two or more molecules. + + + Secondary structure alignment + + + + + + + + + + + beta12orEarlier + Identifier of an object from the ASTD database. + + + + ASTD ID + + + + + + + + + beta12orEarlier + Identifier of an exon from the ASTD database. + + + + ASTD ID (exon) + + + + + + + + + beta12orEarlier + Identifier of an intron from the ASTD database. + + + + ASTD ID (intron) + + + + + + + + + beta12orEarlier + Identifier of a polyA signal from the ASTD database. + + + + ASTD ID (polya) + + + + + + + + + beta12orEarlier + Identifier of a transcription start site from the ASTD database. + + + + ASTD ID (tss) + + + + + + + + + beta12orEarlier + 1.8 + + An informative report on individual spot(s) from a two-dimensional (2D PAGE) gel. + + + 2D PAGE spot report + true + + + + + + + + + beta12orEarlier + true + Unique identifier of a spot from a two-dimensional (protein) gel. + + + + Spot ID + + + + + + + + + + beta12orEarlier + Unique identifier of a spot from a two-dimensional (protein) gel in the SWISS-2DPAGE database. + + + + Spot serial number + + + + + + + + + + beta12orEarlier + Unique identifier of a spot from a two-dimensional (protein) gel from a HSC-2DPAGE database. + + + + Spot ID (HSC-2DPAGE) + + + + + + + + + beta12orEarlier + beta13 + + + Data on the interaction of a protein (or protein domain) with specific structural (3D) and/or sequence motifs. + + Protein-motif interaction + true + + + + + + + + + beta12orEarlier + true + Identifier of a strain of an organism variant, typically a plant, virus or bacterium. + + + + Strain identifier + + + + + + + + + + beta12orEarlier + A unique identifier of an item from the CABRI database. + + + + CABRI accession + + + + + + + + + beta12orEarlier + 1.8 + + Report of genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods. + + + Experiment report (genotyping) + true + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of an entry from a database of genotype experiment metadata. + + + + Genotype experiment ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the EGA database. + + + + EGA accession + + + + + + + + + + beta12orEarlier + IPI[0-9]{8} + Identifier of a protein entry catalogued in the International Protein Index (IPI) database. + + + + IPI protein ID + + + + + + + + + beta12orEarlier + Accession number of a protein from the RefSeq database. + RefSeq protein ID + + + + RefSeq accession (protein) + + + + + + + + + + beta12orEarlier + Identifier of an entry (promoter) from the EPD database. + EPD identifier + + + + EPD ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the TAIR database. + + + + TAIR accession + + + + + + + + + beta12orEarlier + Identifier of an Arabidopsis thaliana gene from the TAIR database. + + + + TAIR accession (At gene) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the UniSTS database. + + + + UniSTS accession + + + + + + + + + + beta12orEarlier + Identifier of an entry from the UNITE database. + + + + UNITE accession + + + + + + + + + + beta12orEarlier + Identifier of an entry from the UTR database. + + + + UTR accession + + + + + + + + + + beta12orEarlier + UPI[A-F0-9]{10} + Accession number of a UniParc (protein sequence) database entry. + UPI + UniParc ID + + + + UniParc accession + + + + + + + + + + beta12orEarlier + Identifier of an entry from the Rouge or HUGE databases. + + + + mFLJ/mKIAA number + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific fungus. + + Fungi annotation + true + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific fungus anamorph. + + Fungi annotation (anamorph) + true + + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the Ensembl database. + Ensembl ID (protein) + Protein ID (Ensembl) + + + + Ensembl protein ID + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on a specific toxin. + + Toxin annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on a membrane protein. + + Protein report (membrane protein) + true + + + + + + + + + beta12orEarlier + 1.12 + + An informative report on tentative or known protein-drug interaction(s). + + + Protein-drug interaction report + true + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning a map of molecular sequence(s). + + This is a broad data type and is used a placeholder for other, more specific types. + Map data + true + + + + + + + + + beta12orEarlier + Data concerning phylogeny, typically of molecular sequences, including reports of information concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees. + + + This is a broad data type and is used a placeholder for other, more specific types. + Phylogenetic data + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning one or more protein molecules. + + This is a broad data type and is used a placeholder for other, more specific types. + Protein data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning one or more nucleic acid molecules. + + This is a broad data type and is used a placeholder for other, more specific types. + Nucleic acid data + true + + + + + + + + + + + + + + + beta12orEarlier + Data concerning, extracted from, or derived from the analysis of a scientific text (or texts) such as a full text article from a scientific journal. + Article data + Scientific text data + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. It includes concepts that are best described as scientific text or closely concerned with or derived from text. + Text data + + + + + + + + + beta12orEarlier + 1.16 + + + Typically a simple numerical or string value that controls the operation of a tool. + + Parameter + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning a specific type of molecule. + + This is a broad data type and is used a placeholder for other, more specific types. + Molecular data + true + + + + + + + + + beta12orEarlier + 1.5 + + + + An informative report on a specific molecule. + + Molecule report + true + + + + + + + + + beta12orEarlier + A human-readable collection of information about a specific organism. + Organism annotation + + + Organism report + + + + + + + + + beta12orEarlier + A human-readable collection of information about about how a scientific experiment or analysis was carried out that results in a specific set of data or results used for further analysis or to test a specific hypothesis. + Experiment annotation + Experiment metadata + Experiment report + + + Protocol + + + + + + + + + beta12orEarlier + An attribute of a molecular sequence, possibly in reference to some other sequence. + Sequence parameter + + + Sequence attribute + + + + + + + + + beta12orEarlier + Output from a serial analysis of gene expression (SAGE), massively parallel signature sequencing (MPSS) or sequencing by synthesis (SBS) experiment. In all cases this is a list of short sequence tags and the number of times it is observed. + Sequencing-based expression profile + Sequence tag profile (with gene assignment) + + + SAGE, MPSS and SBS experiments are usually performed to study gene expression. The sequence tags are typically subsequently annotated (after a database search) with the mRNA (and therefore gene) the tag was extracted from. + This includes tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. Typically this is the sequencing-based expression profile annotated with gene identifiers. + Sequence tag profile + + + + + + + + + beta12orEarlier + Data concerning a mass spectrometry measurement. + + + Mass spectrometry data + + + + + + + + + beta12orEarlier + Raw data from experimental methods for determining protein structure. + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Protein structure raw data + + + + + + + + + beta12orEarlier + true + An identifier of a mutation. + + + + Mutation identifier + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning an alignment of two or more molecular sequences, structures or derived data. + + This is a broad data type and is used a placeholder for other, more specific types. This includes entities derived from sequences and structures such as motifs and profiles. + Alignment data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning an index of data. + + This is a broad data type and is used a placeholder for other, more specific types. + Data index data + true + + + + + + + + + beta12orEarlier + Single letter amino acid identifier, e.g. G. + + + + Amino acid name (single letter) + + + + + + + + + beta12orEarlier + Three letter amino acid identifier, e.g. GLY. + + + + Amino acid name (three letter) + + + + + + + + + beta12orEarlier + Full name of an amino acid, e.g. Glycine. + + + + Amino acid name (full name) + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a toxin. + + + + Toxin identifier + + + + + + + + + + beta12orEarlier + Unique identifier of a toxin from the ArachnoServer database. + + + + ArachnoServer ID + + + + + + + + + beta12orEarlier + 1.5 + + + A simple summary of expressed genes. + + Expressed gene list + true + + + + + + + + + + beta12orEarlier + Unique identifier of a monomer from the BindingDB database. + + + + BindingDB Monomer ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept from the GO ontology. + + GO concept name + true + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a 'biological process' concept from the the Gene Ontology. + + + + GO concept ID (biological process) + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a 'molecular function' concept from the the Gene Ontology. + + + + GO concept ID (molecular function) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept for a cellular component from the GO ontology. + + GO concept name (cellular component) + true + + + + + + + + + beta12orEarlier + An image arising from a Northern Blot experiment. + + + Northern blot image + + + + + + + + + beta12orEarlier + true + Unique identifier of a blot from a Northern Blot. + + + + Blot ID + + + + + + + + + + beta12orEarlier + Unique identifier of a blot from a Northern Blot from the BlotBase database. + + + + BlotBase blot ID + + + + + + + + + beta12orEarlier + Raw data on a biological hierarchy, describing the hierarchy proper, hierarchy components and possibly associated annotation. + Hierarchy annotation + + + Hierarchy + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry from a database of biological hierarchies. + + Hierarchy identifier + true + + + + + + + + + + beta12orEarlier + Identifier of an entry from the Brite database of biological hierarchies. + + + + Brite hierarchy ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + A type (represented as a string) of cancer. + + Cancer type + true + + + + + + + + + + beta12orEarlier + A unique identifier for an organism used in the BRENDA database. + + + + BRENDA organism ID + + + + + + + + + beta12orEarlier + The name of a taxon using the controlled vocabulary of the UniGene database. + UniGene organism abbreviation + + + + UniGene taxon + + + + + + + + + beta12orEarlier + The name of a taxon using the controlled vocabulary of the UTRdb database. + + + + UTRdb taxon + + + + + + + + + beta12orEarlier + true + An identifier of a catalogue of biological resources. + Catalogue identifier + + + + Catalogue ID + + + + + + + + + + beta12orEarlier + The name of a catalogue of biological resources from the CABRI database. + + + + CABRI catalogue name + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on protein secondary structure alignment-derived data or metadata. + + Secondary structure alignment metadata + true + + + + + + + + + beta12orEarlier + Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19. + 1.5 + + + An informative report on the physical, chemical or other information concerning the interaction of two or more molecules (or parts of molecules). + + Molecule interaction report + true + + + + + + + + + + + + + + + beta12orEarlier + Primary data about a specific biological pathway or network (the nodes and connections within the pathway or network). + Network + Pathway + + + Pathway or network + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning one or more small molecules. + + This is a broad data type and is used a placeholder for other, more specific types. + Small molecule data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning a particular genotype, phenotype or a genotype / phenotype relation. + + Genotype and phenotype data + true + + + + + + + + + + + + + + + beta12orEarlier + Image, hybridisation or some other data arising from a study of feature/molecule expression, typically profiling or quantification. + Gene expression data + Gene product profile + Gene product quantification data + Gene transcription profile + Gene transcription quantification data + Metabolite expression data + Microarray data + Non-coding RNA profile + Non-coding RNA quantification data + Protein expression data + RNA profile + RNA quantification data + RNA-seq data + Transcriptome profile + Transcriptome quantification data + mRNA profile + mRNA quantification data + Protein profile + Protein quantification data + Proteome profile + Proteome quantification data + + + Expression data + + + + + + + + + + beta12orEarlier + C[0-9]+ + Unique identifier of a chemical compound from the KEGG database. + KEGG compound ID + KEGG compound identifier + + + + Compound ID (KEGG) + + + + + + + + + + beta12orEarlier + Name (not necessarily stable) an entry (RNA family) from the RFAM database. + + + + RFAM name + + + + + + + + + + beta12orEarlier + R[0-9]+ + Identifier of a biological reaction from the KEGG reactions database. + + + + Reaction ID (KEGG) + + + + + + + + + + + beta12orEarlier + D[0-9]+ + Unique identifier of a drug from the KEGG Drug database. + + + + Drug ID (KEGG) + + + + + + + + + + beta12orEarlier + ENS[A-Z]*[FPTG][0-9]{11} + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl database. + Ensembl IDs + + + + Ensembl ID + + + + + + + + + + + + + + + + beta12orEarlier + [A-Z][0-9]+(\.[-[0-9]+])? + An identifier of a disease from the International Classification of Diseases (ICD) database. + + + + ICD identifier + + + + + + + + + + beta12orEarlier + [0-9A-Za-z]+:[0-9]+:[0-9]{1,5}(\.[0-9])? + Unique identifier of a sequence cluster from the CluSTr database. + CluSTr ID + CluSTr cluster ID + + + + Sequence cluster ID (CluSTr) + + + + + + + + + + + beta12orEarlier + G[0-9]+ + Unique identifier of a glycan ligand from the KEGG GLYCAN database (a subset of KEGG LIGAND). + + + + KEGG Glycan ID + + + + + + + + + + beta12orEarlier + [0-9]+\.[A-Z]\.[0-9]+\.[0-9]+\.[0-9]+ + A unique identifier of a family from the transport classification database (TCDB) of membrane transport proteins. + TC number + + + + OBO file for regular expression. + TCDB ID + + + + + + + + + + beta12orEarlier + MINT\-[0-9]{1,5} + Unique identifier of an entry from the MINT database of protein-protein interactions. + + + + MINT ID + + + + + + + + + + beta12orEarlier + DIP[\:\-][0-9]{3}[EN] + Unique identifier of an entry from the DIP database of protein-protein interactions. + + + + DIP ID + + + + + + + + + + beta12orEarlier + A[0-9]{6} + Unique identifier of a protein listed in the UCSD-Nature Signaling Gateway Molecule Pages database. + + + + Signaling Gateway protein ID + + + + + + + + + beta12orEarlier + true + Identifier of a protein modification catalogued in a database. + + + + Protein modification ID + + + + + + + + + + beta12orEarlier + AA[0-9]{4} + Identifier of a protein modification catalogued in the RESID database. + + + + RESID ID + + + + + + + + + + beta12orEarlier + [0-9]{4,7} + Identifier of an entry from the RGD database. + + + + RGD ID + + + + + + + + + + beta12orEarlier + AASequence:[0-9]{10} + Identifier of a protein sequence from the TAIR database. + + + + TAIR accession (protein) + + + + + + + + + + beta12orEarlier + HMDB[0-9]{5} + Identifier of a small molecule metabolite from the Human Metabolome Database (HMDB). + HMDB ID + + + + Compound ID (HMDB) + + + + + + + + + + beta12orEarlier + LM(FA|GL|GP|SP|ST|PR|SL|PK)[0-9]{4}([0-9a-zA-Z]{4})? + Identifier of an entry from the LIPID MAPS database. + LM ID + + + + LIPID MAPS ID + + + + + + + + + + beta12orEarlier + PAp[0-9]{8} + PDBML:pdbx_PDB_strand_id + Identifier of a peptide from the PeptideAtlas peptide databases. + + + + PeptideAtlas ID + + + + + + + + + beta12orEarlier + 1.7 + + Identifier of a report of molecular interactions from a database (typically). + + + Molecular interaction ID + true + + + + + + + + + + beta12orEarlier + [0-9]+ + A unique identifier of an interaction from the BioGRID database. + + + + BioGRID interaction ID + + + + + + + + + + beta12orEarlier + S[0-9]{2}\.[0-9]{3} + Unique identifier of a peptidase enzyme from the MEROPS database. + MEROPS ID + + + + Enzyme ID (MEROPS) + + + + + + + + + beta12orEarlier + true + An identifier of a mobile genetic element. + + + + Mobile genetic element ID + + + + + + + + + + beta12orEarlier + mge:[0-9]+ + An identifier of a mobile genetic element from the Aclame database. + + + + ACLAME ID + + + + + + + + + + beta12orEarlier + PWY[a-zA-Z_0-9]{2}\-[0-9]{3} + Identifier of an entry from the Saccharomyces genome database (SGD). + + + + SGD ID + + + + + + + + + beta12orEarlier + true + Unique identifier of a book. + + + + Book ID + + + + + + + + + + beta12orEarlier + (ISBN)?(-13|-10)?[:]?[ ]?([0-9]{2,3}[ -]?)?[0-9]{1,5}[ -]?[0-9]{1,7}[ -]?[0-9]{1,6}[ -]?([0-9]|X) + The International Standard Book Number (ISBN) is for identifying printed books. + + + + ISBN + + + + + + + + + + beta12orEarlier + B[0-9]{5} + Identifier of a metabolite from the 3DMET database. + 3DMET ID + + + + Compound ID (3DMET) + + + + + + + + + + beta12orEarlier + ([A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9])_.*|([OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9]_.*)|(GAG_.*)|(MULT_.*)|(PFRAG_.*)|(LIP_.*)|(CAT_.*) + A unique identifier of an interaction from the MatrixDB database. + + + + MatrixDB interaction ID + + + + + + + + + + + beta12orEarlier + [0-9]+ + A unique identifier for pathways, reactions, complexes and small molecules from the cPath (Pathway Commons) database. + + + + These identifiers are unique within the cPath database, however, they are not stable between releases. + cPath ID + + + + + + + + + + beta12orEarlier + true + [0-9]+ + Identifier of an assay from the PubChem database. + + + + PubChem bioassay ID + + + + + + + + + + beta12orEarlier + Identifier of an entry from the PubChem database. + PubChem identifier + + + + PubChem ID + + + + + + + + + + beta12orEarlier + M[0-9]{4} + Identifier of an enzyme reaction mechanism from the MACie database. + MACie entry number + + + + Reaction ID (MACie) + + + + + + + + + + beta12orEarlier + MI[0-9]{7} + Identifier for a gene from the miRBase database. + miRNA ID + miRNA identifier + miRNA name + + + + Gene ID (miRBase) + + + + + + + + + + beta12orEarlier + ZDB\-GENE\-[0-9]+\-[0-9]+ + Identifier for a gene from the Zebrafish information network genome (ZFIN) database. + + + + Gene ID (ZFIN) + + + + + + + + + + beta12orEarlier + [0-9]{5} + Identifier of an enzyme-catalysed reaction from the Rhea database. + + + + Reaction ID (Rhea) + + + + + + + + + + beta12orEarlier + UPA[0-9]{5} + Identifier of a biological pathway from the Unipathway database. + upaid + + + + Pathway ID (Unipathway) + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a small molecular from the ChEMBL database. + ChEMBL ID + + + + Compound ID (ChEMBL) + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+ + Unique identifier of an entry from the Ligand-gated ion channel (LGICdb) database. + + + + LGICdb identifier + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a biological reaction (kinetics entry) from the SABIO-RK reactions database. + + + + Reaction kinetics ID (SABIO-RK) + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of an entry from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + PharmGKB ID + + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of a pathway from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + Pathway ID (PharmGKB) + + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of a disease from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + Disease ID (PharmGKB) + + + + + + + + + + + beta12orEarlier + PA[0-9]+ + Identifier of a drug from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB). + + + + Drug ID (PharmGKB) + + + + + + + + + + beta12orEarlier + DAP[0-9]+ + Identifier of a drug from the Therapeutic Target Database (TTD). + + + + Drug ID (TTD) + + + + + + + + + + beta12orEarlier + TTDS[0-9]+ + Identifier of a target protein from the Therapeutic Target Database (TTD). + + + + Target ID (TTD) + + + + + + + + + beta12orEarlier + true + A unique identifier of a type or group of cells. + + + + Cell type identifier + + + + + + + + + + beta12orEarlier + [0-9]+ + A unique identifier of a neuron from the NeuronDB database. + + + + NeuronDB ID + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+ + A unique identifier of a neuron from the NeuroMorpho database. + + + + NeuroMorpho ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a chemical from the ChemIDplus database. + ChemIDplus ID + + + + Compound ID (ChemIDplus) + + + + + + + + + + beta12orEarlier + SMP[0-9]{5} + Identifier of a pathway from the Small Molecule Pathway Database (SMPDB). + + + + Pathway ID (SMPDB) + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the BioNumbers database of key numbers and associated data in molecular biology. + + + + BioNumbers ID + + + + + + + + + + beta12orEarlier + T3D[0-9]+ + Unique identifier of a toxin from the Toxin and Toxin Target Database (T3DB) database. + + + + T3DB ID + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a carbohydrate. + + + + Carbohydrate identifier + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the GlycomeDB database. + + + + GlycomeDB ID + + + + + + + + + + beta12orEarlier + [a-zA-Z_0-9]+[0-9]+ + Identifier of an entry from the LipidBank database. + + + + LipidBank ID + + + + + + + + + + beta12orEarlier + cd[0-9]{5} + Identifier of a conserved domain from the Conserved Domain Database. + + + + CDD ID + + + + + + + + + + beta12orEarlier + [0-9]{1,5} + An identifier of an entry from the MMDB database. + MMDB accession + + + + MMDB ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Unique identifier of an entry from the iRefIndex database of protein-protein interactions. + + + + iRefIndex ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Unique identifier of an entry from the ModelDB database. + + + + ModelDB ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a signaling pathway from the Database of Quantitative Cellular Signaling (DQCS). + + + + Pathway ID (DQCS) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database (Homo sapiens division). + + Ensembl ID (Homo sapiens) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Bos taurus' division). + + Ensembl ID ('Bos taurus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Canis familiaris' division). + + Ensembl ID ('Canis familiaris') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Cavia porcellus' division). + + Ensembl ID ('Cavia porcellus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona intestinalis' division). + + Ensembl ID ('Ciona intestinalis') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona savignyi' division). + + Ensembl ID ('Ciona savignyi') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Danio rerio' division). + + Ensembl ID ('Danio rerio') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Dasypus novemcinctus' division). + + Ensembl ID ('Dasypus novemcinctus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Echinops telfairi' division). + + Ensembl ID ('Echinops telfairi') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Erinaceus europaeus' division). + + Ensembl ID ('Erinaceus europaeus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Felis catus' division). + + Ensembl ID ('Felis catus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gallus gallus' division). + + Ensembl ID ('Gallus gallus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gasterosteus aculeatus' division). + + Ensembl ID ('Gasterosteus aculeatus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Homo sapiens' division). + + Ensembl ID ('Homo sapiens') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Loxodonta africana' division). + + Ensembl ID ('Loxodonta africana') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Macaca mulatta' division). + + Ensembl ID ('Macaca mulatta') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Monodelphis domestica' division). + + Ensembl ID ('Monodelphis domestica') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Mus musculus' division). + + Ensembl ID ('Mus musculus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Myotis lucifugus' division). + + Ensembl ID ('Myotis lucifugus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ornithorhynchus anatinus' division). + + Ensembl ID ("Ornithorhynchus anatinus") + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryctolagus cuniculus' division). + + Ensembl ID ('Oryctolagus cuniculus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryzias latipes' division). + + Ensembl ID ('Oryzias latipes') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Otolemur garnettii' division). + + Ensembl ID ('Otolemur garnettii') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Pan troglodytes' division). + + Ensembl ID ('Pan troglodytes') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Rattus norvegicus' division). + + Ensembl ID ('Rattus norvegicus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Spermophilus tridecemlineatus' division). + + Ensembl ID ('Spermophilus tridecemlineatus') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Takifugu rubripes' division). + + Ensembl ID ('Takifugu rubripes') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Tupaia belangeri' division). + + Ensembl ID ('Tupaia belangeri') + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Xenopus tropicalis' division). + + Ensembl ID ('Xenopus tropicalis') + true + + + + + + + + + + beta12orEarlier + Identifier of a protein domain (or other node) from the CATH database. + + + + CATH identifier + + + + + + + + + beta12orEarlier + 2.10.10.10 + A code number identifying a family from the CATH database. + + + + CATH node ID (family) + + + + + + + + + + beta12orEarlier + Identifier of an enzyme from the CAZy enzymes database. + CAZy ID + + + + Enzyme ID (CAZy) + + + + + + + + + + beta12orEarlier + A unique identifier assigned by the I.M.A.G.E. consortium to a clone (cloned molecular sequence). + I.M.A.G.E. cloneID + IMAGE cloneID + + + + Clone ID (IMAGE) + + + + + + + + + beta12orEarlier + [0-9]{7}|GO:[0-9]{7} + An identifier of a 'cellular component' concept from the Gene Ontology. + GO concept identifier (cellular compartment) + + + + GO concept ID (cellular component) + + + + + + + + + beta12orEarlier + Name of a chromosome as used in the BioCyc database. + + + + Chromosome name (BioCyc) + + + + + + + + + + beta12orEarlier + An identifier of a gene expression profile from the CleanEx database. + + + + CleanEx entry name + + + + + + + + + beta12orEarlier + An identifier of (typically a list of) gene expression experiments catalogued in the CleanEx database. + + + + CleanEx dataset code + + + + + + + + + beta12orEarlier + A human-readable collection of information concerning a genome as a whole. + + + Genome report + + + + + + + + + + beta12orEarlier + Unique identifier for a protein complex from the CORUM database. + CORUM complex ID + + + + Protein ID (CORUM) + + + + + + + + + + beta12orEarlier + Unique identifier of a position-specific scoring matrix from the CDD database. + + + + CDD PSSM-ID + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the CuticleDB database. + CuticleDB ID + + + + Protein ID (CuticleDB) + + + + + + + + + + beta12orEarlier + Identifier of a predicted transcription factor from the DBD database. + + + + DBD ID + + + + + + + + + + + + + + + beta12orEarlier + General annotation on an oligonucleotide probe, or a set of probes. + Oligonucleotide probe sets annotation + + + Oligonucleotide probe annotation + + + + + + + + + + beta12orEarlier + true + Identifier of an oligonucleotide from a database. + + + + Oligonucleotide ID + + + + + + + + + + beta12orEarlier + Identifier of an oligonucleotide probe from the dbProbe database. + + + + dbProbe ID + + + + + + + + + beta12orEarlier + Physicochemical property data for one or more dinucleotides. + + + Dinucleotide property + + + + + + + + + + beta12orEarlier + Identifier of an dinucleotide property from the DiProDB database. + + + + DiProDB ID + + + + + + + + + beta12orEarlier + 1.8 + + disordered structure in a protein. + + + Protein features report (disordered structure) + true + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the DisProt database. + DisProt ID + + + + Protein ID (DisProt) + + + + + + + + + beta12orEarlier + 1.5 + + + Annotation on an embryo or concerning embryological development. + + Embryo report + true + + + + + + + + + + + beta12orEarlier + Unique identifier for a gene transcript from the Ensembl database. + Transcript ID (Ensembl) + + + + Ensembl transcript ID + + + + + + + + + beta12orEarlier + 1.4 + + + An informative report on one or more small molecules that are enzyme inhibitors. + + Inhibitor annotation + true + + + + + + + + + beta12orEarlier + true + Moby:GeneAccessionList + An identifier of a promoter of a gene that is catalogued in a database. + + + + Promoter ID + + + + + + + + + beta12orEarlier + Identifier of an EST sequence. + + + + EST accession + + + + + + + + + + beta12orEarlier + Identifier of an EST sequence from the COGEME database. + + + + COGEME EST ID + + + + + + + + + + beta12orEarlier + Identifier of a unisequence from the COGEME database. + + + + A unisequence is a single sequence assembled from ESTs. + COGEME unisequence ID + + + + + + + + + + beta12orEarlier + Accession number of an entry (protein family) from the GeneFarm database. + GeneFarm family ID + + + + Protein family ID (GeneFarm) + + + + + + + + + beta12orEarlier + The name of a family of organism. + + + + Family name + + + + + + + + + beta12orEarlier + beta13 + + + The name of a genus of viruses. + + Genus name (virus) + true + + + + + + + + + beta12orEarlier + beta13 + + + The name of a family of viruses. + + Family name (virus) + true + + + + + + + + + beta12orEarlier + beta13 + + + The name of a SwissRegulon database. + + Database name (SwissRegulon) + true + + + + + + + + + + beta12orEarlier + A feature identifier as used in the SwissRegulon database. + + + + This can be name of a gene, the ID of a TFBS, or genomic coordinates in form "chr:start..end". + Sequence feature ID (SwissRegulon) + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the NMPDR database. + + + + A FIG ID consists of four parts: a prefix, genome id, locus type and id number. + FIG ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the Xenbase database. + + + + Gene ID (Xenbase) + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the Genolist database. + + + + Gene ID (Genolist) + + + + + + + + + beta12orEarlier + 1.3 + + + Name of an entry (gene) from the Genolist genes database. + + Gene name (Genolist) + true + + + + + + + + + + beta12orEarlier + Identifier of an entry (promoter) from the ABS database. + ABS identifier + + + + ABS ID + + + + + + + + + + beta12orEarlier + Identifier of a transcription factor from the AraC-XylS database. + + + + AraC-XylS ID + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Name of an entry (gene) from the HUGO database. + + Gene name (HUGO) + true + + + + + + + + + + beta12orEarlier + Identifier of a locus from the PseudoCAP database. + + + + Locus ID (PseudoCAP) + + + + + + + + + + beta12orEarlier + Identifier of a locus from the UTR database. + + + + Locus ID (UTR) + + + + + + + + + + beta12orEarlier + Unique identifier of a monosaccharide from the MonosaccharideDB database. + + + + MonosaccharideDB ID + + + + + + + + + beta12orEarlier + beta13 + + + The name of a subdivision of the Collagen Mutation Database (CMD) database. + + Database name (CMD) + true + + + + + + + + + beta12orEarlier + beta13 + + + The name of a subdivision of the Osteogenesis database. + + Database name (Osteogenesis) + true + + + + + + + + + beta12orEarlier + true + An identifier of a particular genome. + + + + Genome identifier + + + + + + + + + beta12orEarlier + 1.26 + + + An identifier of a particular genome. + + + GenomeReviews ID + true + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of an entry from the GlycoMapsDB (Glycosciences.de) database. + + + + GlycoMap ID + + + + + + + + + beta12orEarlier + A conformational energy map of the glycosidic linkages in a carbohydrate molecule. + + + Carbohydrate conformational map + + + + + + + + + + beta12orEarlier + The name of a transcription factor. + + + + Transcription factor name + + + + + + + + + + beta12orEarlier + Identifier of a membrane transport proteins from the transport classification database (TCDB). + + + + TCID + + + + + + + + + beta12orEarlier + PF[0-9]{5} + Name of a domain from the Pfam database. + + + + Pfam domain name + + + + + + + + + + beta12orEarlier + CL[0-9]{4} + Accession number of a Pfam clan. + + + + Pfam clan ID + + + + + + + + + + beta12orEarlier + Identifier for a gene from the VectorBase database. + VectorBase ID + + + + Gene ID (VectorBase) + + + + + + + + + beta12orEarlier + Identifier of an entry from the UTRSite database of regulatory motifs in eukaryotic UTRs. + + + + UTRSite ID + + + + + + + + + + + + + + + beta12orEarlier + An informative report about a specific or conserved pattern in a molecular sequence, such as its context in genes or proteins, its role, origin or method of construction, etc. + Sequence motif report + Sequence profile report + + + Sequence signature report + + + + + + + + + beta12orEarlier + beta12orEarlier + + + An informative report on a particular locus. + + Locus annotation + true + + + + + + + + + beta12orEarlier + Official name of a protein as used in the UniProt database. + + + + Protein name (UniProt) + + + + + + + + + beta12orEarlier + 1.5 + + + One or more terms from one or more controlled vocabularies which are annotations on an entity. + + The concepts are typically provided as a persistent identifier or some other link the source ontologies. Evidence of the validity of the annotation might be included. + Term ID list + true + + + + + + + + + + beta12orEarlier + Name of a protein family from the HAMAP database. + + + + HAMAP ID + + + + + + + + + beta12orEarlier + 1.12 + + + Basic information concerning an identifier of data (typically including the identifier itself). For example, a gene symbol with information concerning its provenance. + + Identifier with metadata + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation about a gene symbol. + + Gene symbol annotation + true + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a RNA transcript. + + + + Transcript ID + + + + + + + + + + beta12orEarlier + Identifier of an RNA transcript from the H-InvDB database. + + + + HIT ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene cluster in the H-InvDB database. + + + + HIX ID + + + + + + + + + + beta12orEarlier + Identifier of a antibody from the HPA database. + + + + HPA antibody id + + + + + + + + + + beta12orEarlier + Identifier of a human major histocompatibility complex (HLA) or other protein from the IMGT/HLA database. + + + + IMGT/HLA ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene assigned by the J. Craig Venter Institute (JCVI). + + + + Gene ID (JCVI) + + + + + + + + + beta12orEarlier + The name of a kinase protein. + + + + Kinase name + + + + + + + + + + beta12orEarlier + Identifier of a physical entity from the ConsensusPathDB database. + + + + ConsensusPathDB entity ID + + + + + + + + + + beta12orEarlier + Name of a physical entity from the ConsensusPathDB database. + + + + ConsensusPathDB entity name + + + + + + + + + + beta12orEarlier + The number of a strain of algae and protozoa from the CCAP database. + + + + CCAP strain number + + + + + + + + + beta12orEarlier + true + An identifier of stock from a catalogue of biological resources. + + + + Stock number + + + + + + + + + + beta12orEarlier + A stock number from The Arabidopsis information resource (TAIR). + + + + Stock number (TAIR) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the RNA editing database (REDIdb). + + + + REDIdb ID + + + + + + + + + beta12orEarlier + Name of a domain from the SMART database. + + + + SMART domain name + + + + + + + + + + beta12orEarlier + Accession number of an entry (family) from the PANTHER database. + Panther family ID + + + + Protein family ID (PANTHER) + + + + + + + + + + beta12orEarlier + A unique identifier for a virus from the RNAVirusDB database. + + + + Could list (or reference) other taxa here from https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary. + RNAVirusDB ID + + + + + + + + + beta12orEarlier + true + An accession of annotation on a (group of) viruses (catalogued in a database). + Virus ID + + + + Virus identifier + + + + + + + + + + beta12orEarlier + An identifier of a genome project assigned by NCBI. + + + + NCBI Genome Project ID + + + + + + + + + + beta12orEarlier + A unique identifier of a whole genome assigned by the NCBI. + + + + NCBI genome accession + + + + + + + + + beta12orEarlier + 1.8 + + Data concerning, extracted from, or derived from the analysis of a sequence profile, such as its name, length, technical details about the profile or it's construction, the biological role or annotation, and so on. + + + Sequence profile data + true + + + + + + + + + + beta12orEarlier + Unique identifier for a membrane protein from the TopDB database. + TopDB ID + + + + Protein ID (TopDB) + + + + + + + + + beta12orEarlier + true + Identifier of a two-dimensional (protein) gel. + Gel identifier + + + + Gel ID + + + + + + + + + + beta12orEarlier + Name of a reference map gel from the SWISS-2DPAGE database. + + + + Reference map name (SWISS-2DPAGE) + + + + + + + + + + beta12orEarlier + Unique identifier for a peroxidase protein from the PeroxiBase database. + PeroxiBase ID + + + + Protein ID (PeroxiBase) + + + + + + + + + + beta12orEarlier + Identifier of an entry from the SISYPHUS database of tertiary structure alignments. + + + + SISYPHUS ID + + + + + + + + + + + beta12orEarlier + true + Accession of an open reading frame (catalogued in a database). + + + + ORF ID + + + + + + + + + beta12orEarlier + true + An identifier of an open reading frame. + + + + ORF identifier + + + + + + + + + + beta12orEarlier + [1-9][0-9]* + Identifier of an entry from the GlycosciencesDB database. + LInear Notation for Unique description of Carbohydrate Sequences ID + + + + LINUCS ID + + + + + + + + + + + beta12orEarlier + Unique identifier for a ligand-gated ion channel protein from the LGICdb database. + LGICdb ID + + + + Protein ID (LGICdb) + + + + + + + + + + beta12orEarlier + Identifier of an EST sequence from the MaizeDB database. + + + + MaizeDB ID + + + + + + + + + + beta12orEarlier + A unique identifier of gene in the MfunGD database. + + + + Gene ID (MfunGD) + + + + + + + + + + + + + + + + beta12orEarlier + An identifier of a disease from the Orpha database. + + + + Orpha number + + + + + + + + + + beta12orEarlier + Unique identifier for a protein from the EcID database. + + + + Protein ID (EcID) + + + + + + + + + + beta12orEarlier + A unique identifier of a cDNA molecule catalogued in the RefSeq database. + + + + Clone ID (RefSeq) + + + + + + + + + + beta12orEarlier + Unique identifier for a cone snail toxin protein from the ConoServer database. + + + + Protein ID (ConoServer) + + + + + + + + + + beta12orEarlier + Identifier of a GeneSNP database entry. + + + + GeneSNP ID + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Identifier of a lipid. + + + + Lipid identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + A flat-file (textual) data archive. + + + Databank + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A web site providing data (web pages) on a common theme to a HTTP client. + + + Web portal + true + + + + + + + + + + beta12orEarlier + Identifier for a gene from the VBASE2 database. + VBASE2 ID + + + + Gene ID (VBASE2) + + + + + + + + + + beta12orEarlier + A unique identifier for a virus from the DPVweb database. + DPVweb virus ID + + + + DPVweb ID + + + + + + + + + + beta12orEarlier + [0-9]+ + Identifier of a pathway from the BioSystems pathway database. + + + + Pathway ID (BioSystems) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data concerning a proteomics experiment. + + Experimental data (proteomics) + true + + + + + + + + + beta12orEarlier + An abstract of a scientific article. + + + Abstract + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a lipid structure. + + + Lipid structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the (3D) structure of a drug. + + + Drug structure + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for the (3D) structure of a toxin. + + + Toxin structure + + + + + + + + + + beta12orEarlier + A simple matrix of numbers, where each value (or column of values) is derived derived from analysis of the corresponding position in a sequence alignment. + PSSM + + + Position-specific scoring matrix + + + + + + + + + beta12orEarlier + A matrix of distances between molecular entities, where a value (distance) is (typically) derived from comparison of two entities and reflects their similarity. + + + Distance matrix + + + + + + + + + beta12orEarlier + Distances (values representing similarity) between a group of molecular structures. + + + Structural distance matrix + + + + + + + + + beta12orEarlier + 1.5 + + + Bibliographic data concerning scientific article(s). + + Article metadata + true + + + + + + + + + beta12orEarlier + A concept from a biological ontology. + + + This includes any fields from the concept definition such as concept name, definition, comments and so on. + Ontology concept + + + + + + + + + beta12orEarlier + A numerical measure of differences in the frequency of occurrence of synonymous codons in DNA sequences. + + + Codon usage bias + + + + + + + + + beta12orEarlier + 1.8 + + Northern Blot experiments. + + + Northern blot report + true + + + + + + + + + beta12orEarlier + A map showing distance between genetic markers estimated by radiation-induced breaks in a chromosome. + RH map + + + The radiation method can break very closely linked markers providing a more detailed map. Most genetic markers and subsequences may be located to a defined map position and with a more precise estimates of distance than a linkage map. + Radiation hybrid map + + + + + + + + + beta12orEarlier + A simple list of data identifiers (such as database accessions), possibly with additional basic information on the addressed data. + + + ID list + + + + + + + + + beta12orEarlier + Gene frequencies data that may be read during phylogenetic tree calculation. + + + Phylogenetic gene frequencies data + + + + + + + + + beta12orEarlier + beta13 + + + A set of sub-sequences displaying some type of polymorphism, typically indicating the sequence in which they occur, their position and other metadata. + + Sequence set (polymorphic) + true + + + + + + + + + beta12orEarlier + 1.5 + + + An entry (resource) from the DRCAT bioinformatics resource catalogue. + + DRCAT resource + true + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a multi-protein complex; two or more polypeptides chains in a stable, functional association with one another. + + + Protein complex + + + + + + + + + beta12orEarlier + 3D coordinate and associated data for a protein (3D) structural motif; any group of contiguous or non-contiguous amino acid residues but typically those forming a feature with a structural or functional role. + + + Protein structural motif + + + + + + + + + beta12orEarlier + A human-readable collection of information about one or more specific lipid 3D structure(s). + + + Lipid report + + + + + + + + + beta12orEarlier + 1.4 + + + Image of one or more molecular secondary structures. + + Secondary structure image + true + + + + + + + + + beta12orEarlier + 1.5 + + + An informative report on general information, properties or features of one or more molecular secondary structures. + + Secondary structure report + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + DNA sequence-specific feature annotation (not in a feature table). + + DNA features + true + + + + + + + + + beta12orEarlier + 1.5 + + + Features concerning RNA or regions of DNA that encode an RNA molecule. + + RNA features report + true + + + + + + + + + beta12orEarlier + Biological data that has been plotted as a graph of some type, or plotting instructions for rendering such a graph. + Graph data + + + Plot + + + + + + + + + + beta12orEarlier + A protein sequence and associated metadata. + Sequence record (protein) + + + Protein sequence record + + + + + + + + + + beta12orEarlier + A nucleic acid sequence and associated metadata. + Nucleotide sequence record + Sequence record (nucleic acid) + DNA sequence record + RNA sequence record + + + Nucleic acid sequence record + + + + + + + + + beta12orEarlier + 1.8 + + A protein sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database. + + + Protein sequence record (full) + true + + + + + + + + + beta12orEarlier + 1.8 + + A nucleic acid sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database. + + + Nucleic acid sequence record (full) + true + + + + + + + + + beta12orEarlier + true + Accession of a mathematical model, typically an entry from a database. + + + + Biological model accession + + + + + + + + + + beta12orEarlier + The name of a type or group of cells. + + + + Cell type name + + + + + + + + + beta12orEarlier + true + Accession of a type or group of cells (catalogued in a database). + Cell type ID + + + + Cell type accession + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of chemicals. + Chemical compound accession + Small molecule accession + + + + Compound accession + + + + + + + + + beta12orEarlier + true + Accession of a drug. + + + + Drug accession + + + + + + + + + + beta12orEarlier + Name of a toxin. + + + + Toxin name + + + + + + + + + beta12orEarlier + true + Accession of a toxin (catalogued in a database). + + + + Toxin accession + + + + + + + + + beta12orEarlier + true + Accession of a monosaccharide (catalogued in a database). + + + + Monosaccharide accession + + + + + + + + + + beta12orEarlier + Common name of a drug. + + + + Drug name + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of carbohydrates. + + + + Carbohydrate accession + + + + + + + + + beta12orEarlier + true + Accession of a specific molecule (catalogued in a database). + + + + Molecule accession + + + + + + + + + beta12orEarlier + true + Accession of a data definition (catalogued in a database). + + + + Data resource definition accession + + + + + + + + + beta12orEarlier + true + An accession of a particular genome (in a database). + + + + Genome accession + + + + + + + + + beta12orEarlier + true + An accession of a map of a molecular sequence (deposited in a database). + + + + Map accession + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of lipids. + + + + Lipid accession + + + + + + + + + + beta12orEarlier + true + Accession of a peptide deposited in a database. + + + + Peptide ID + + + + + + + + + + beta12orEarlier + true + Accession of a protein deposited in a database. + Protein accessions + + + + Protein accession + + + + + + + + + beta12orEarlier + true + An accession of annotation on a (group of) organisms (catalogued in a database). + + + + Organism accession + + + + + + + + + + beta12orEarlier + Moby:BriefOccurrenceRecord + Moby:FirstEpithet + Moby:InfraspecificEpithet + Moby:OccurrenceRecord + Moby:Organism_Name + Moby:OrganismsLongName + Moby:OrganismsShortName + The name of an organism (or group of organisms). + + + + Organism name + + + + + + + + + beta12orEarlier + true + Accession of a protein family (that is deposited in a database). + + + + Protein family accession + + + + + + + + + + beta12orEarlier + true + Accession of an entry from a database of transcription factors or binding sites. + + + + Transcription factor accession + + + + + + + + + + + + + + + + beta12orEarlier + true + Accession number of a strain of an organism variant, typically a plant, virus or bacterium. + + + + Strain accession + + + + + + + + + beta12orEarlier + true + 1.26 + + An accession of annotation on a (group of) viruses (catalogued in a database). + + + Virus identifier + true + + + + + + + + + beta12orEarlier + Metadata on sequence features. + + + Sequence features metadata + + + + + + + + + + beta12orEarlier + Identifier of a Gramene database entry. + + + + Gramene identifier + + + + + + + + + beta12orEarlier + An identifier of an entry from the DDBJ sequence database. + DDBJ ID + DDBJ accession number + DDBJ identifier + + + + DDBJ accession + + + + + + + + + beta12orEarlier + An identifier of an entity from the ConsensusPathDB database. + + + + ConsensusPathDB identifier + + + + + + + + + beta12orEarlier + 1.8 + + + Data concerning, extracted from, or derived from the analysis of molecular sequence(s). + + This is a broad data type and is used a placeholder for other, more specific types. + Sequence data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning codon usage. + + This is a broad data type and is used a placeholder for other, more specific types. + Codon usage + true + + + + + + + + + beta12orEarlier + 1.5 + + + + Data derived from the analysis of a scientific text such as a full text article from a scientific journal. + + Article report + true + + + + + + + + + beta12orEarlier + An informative report of information about molecular sequence(s), including basic information (metadata), and reports generated from molecular sequence analysis, including positional features and non-positional properties. + Sequence-derived report + + + Sequence report + + + + + + + + + beta12orEarlier + Data concerning the properties or features of one or more protein secondary structures. + + + Protein secondary structure + + + + + + + + + + beta12orEarlier + A Hopp and Woods plot of predicted antigenicity of a peptide or protein. + + + Hopp and Woods plot + + + + + + + + + beta12orEarlier + 1.21 + + + A melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA). + + + Nucleic acid melting curve + true + + + + + + + + + beta12orEarlier + 1.21 + + A probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). + + + Nucleic acid probability profile + true + + + + + + + + + beta12orEarlier + 1.21 + + A temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). + + + Nucleic acid temperature profile + true + + + + + + + + + beta12orEarlier + 1.8 + + A report typically including a map (diagram) of a gene regulatory network. + + + Gene regulatory network report + true + + + + + + + + + beta12orEarlier + 1.8 + + An informative report on a two-dimensional (2D PAGE) gel. + + + 2D PAGE gel report + true + + + + + + + + + beta12orEarlier + 1.14 + + General annotation on a set of oligonucleotide probes, such as the gene name with which the probe set is associated and which probes belong to the set. + + + Oligonucleotide probe sets annotation + true + + + + + + + + + beta12orEarlier + 1.5 + + + An image from a microarray experiment which (typically) allows a visualisation of probe hybridisation and gene-expression data. + + Microarray image + true + + + + + + + + + beta12orEarlier + Data (typically biological or biomedical) that has been rendered into an image, typically for display on screen. + Image data + + + Image + http://semanticscience.org/resource/SIO_000079 + http://semanticscience.org/resource/SIO_000081 + + + + + + + + + + beta12orEarlier + Image of a molecular sequence, possibly with sequence features or properties shown. + + + Sequence image + + + + + + + + + beta12orEarlier + A report on protein properties concerning hydropathy. + Protein hydropathy report + + + Protein hydropathy data + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning a computational workflow. + + Workflow data + true + + + + + + + + + beta12orEarlier + 1.5 + + + A computational workflow. + + Workflow + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning molecular secondary structure data. + + Secondary structure data + true + + + + + + + + + beta12orEarlier + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw protein sequence (string of characters). + + + Protein sequence (raw) + true + + + + + + + + + beta12orEarlier + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw nucleic acid sequence. + + + Nucleic acid sequence (raw) + true + + + + + + + + + beta12orEarlier + + One or more protein sequences, possibly with associated annotation. + Amino acid sequence + Amino acid sequences + Protein sequences + + + Protein sequence + http://purl.org/biotop/biotop.owl#AminoAcidSequenceInformation + + + + + + + + + beta12orEarlier + One or more nucleic acid sequences, possibly with associated annotation. + Nucleic acid sequences + Nucleotide sequence + Nucleotide sequences + DNA sequence + + + Nucleic acid sequence + http://purl.org/biotop/biotop.owl#NucleotideSequenceInformation + + + + + + + + + beta12orEarlier + Data concerning a biochemical reaction, typically data and more general annotation on the kinetics of enzyme-catalysed reaction. + Enzyme kinetics annotation + Reaction annotation + + + This is a broad data type and is used a placeholder for other, more specific types. + Reaction data + + + + + + + + + beta12orEarlier + Data concerning small peptides. + Peptide data + + + Peptide property + + + + + + + + + beta12orEarlier + Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19. + 1.5 + + + An informative report concerning the classification of protein sequences or structures. + + This is a broad data type and is used a placeholder for other, more specific types. + Protein classification + true + + + + + + + + + beta12orEarlier + 1.8 + + Data concerning specific or conserved pattern in molecular sequences. + + + This is a broad data type and is used a placeholder for other, more specific types. + Sequence motif data + true + + + + + + + + + beta12orEarlier + beta13 + + + Data concerning models representing a (typically multiple) sequence alignment. + + This is a broad data type and is used a placeholder for other, more specific types. + Sequence profile data + true + + + + + + + + + beta12orEarlier + beta13 + + + + Data concerning a specific biological pathway or network. + + Pathway or network data + true + + + + + + + + + + + + + + + beta12orEarlier + An informative report concerning or derived from the analysis of a biological pathway or network, such as a map (diagram) or annotation. + + + Pathway or network report + + + + + + + + + beta12orEarlier + A thermodynamic or kinetic property of a nucleic acid molecule. + Nucleic acid property (thermodynamic or kinetic) + Nucleic acid thermodynamic property + + + Nucleic acid thermodynamic data + + + + + + + + + beta12orEarlier + Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19. + 1.5 + + + Data concerning the classification of nucleic acid sequences or structures. + + This is a broad data type and is used a placeholder for other, more specific types. + Nucleic acid classification + true + + + + + + + + + beta12orEarlier + 1.5 + + + A report on a classification of molecular sequences, structures or other entities. + + This can include an entire classification, components such as classifiers, assignments of entities to a classification and so on. + Classification report + true + + + + + + + + + beta12orEarlier + 1.8 + + key residues involved in protein folding. + + + Protein features report (key folding sites) + true + + + + + + + + + beta12orEarlier + Geometry data for a protein structure, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc. + Torsion angle data + + + Protein geometry data + + + + + + + + + + beta12orEarlier + An image of protein structure. + Structure image (protein) + + + Protein structure image + + + + + + + + + beta12orEarlier + Weights for sequence positions or characters in phylogenetic analysis where zero is defined as unweighted. + + + Phylogenetic character weights + + + + + + + + + beta12orEarlier + Annotation of one particular positional feature on a biomolecular (typically genome) sequence, suitable for import and display in a genome browser. + Genome annotation track + Genome track + Genome-browser track + Genomic track + Sequence annotation track + + + Annotation track + + + + + + + + + + beta12orEarlier + + P43353|Q7M1G0|Q9C199|A5A6J6 + [OPQ][0-9][A-Z0-9]{3}[0-9]|[A-NR-Z][0-9]([A-Z][A-Z0-9]{2}[0-9]){1,2} + Accession number of a UniProt (protein sequence) database entry. + UniProt accession number + UniProt entry accession + UniProtKB accession + UniProtKB accession number + Swiss-Prot entry accession + TrEMBL entry accession + + + + UniProt accession + + + + + + + + + + beta12orEarlier + 16 + [1-9][0-9]? + Identifier of a genetic code in the NCBI list of genetic codes. + + + + NCBI genetic code ID + + + + + + + + + + + + + + + beta12orEarlier + Identifier of a concept in an ontology of biological or bioinformatics concepts and relations. + + + + Ontology concept identifier + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept for a biological process from the GO ontology. + + GO concept name (biological process) + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The name of a concept for a molecular function from the GO ontology. + + GO concept name (molecular function) + true + + + + + + + + + + + + + + + beta12orEarlier + Data concerning the classification, identification and naming of organisms. + Taxonomic data + + + This is a broad data type and is used a placeholder for other, more specific types. + Taxonomy + + + + + + + + + + beta13 + EMBL/GENBANK/DDBJ coding feature protein identifier, issued by International collaborators. + + + + This qualifier consists of a stable ID portion (3+5 format with 3 position letters and 5 numbers) plus a version number after the decimal point. When the protein sequence encoded by the CDS changes, only the version number of the /protein_id value is incremented; the stable part of the /protein_id remains unchanged and as a result will permanently be associated with a given protein; this qualifier is valid only on CDS features which translate into a valid protein. + Protein ID (EMBL/GenBank/DDBJ) + + + + + + + + + beta13 + 1.5 + + A type of data that (typically) corresponds to entries from the primary biological databases and which is (typically) the primary input or output of a tool, i.e. the data the tool processes or generates, as distinct from metadata and identifiers which describe and identify such core data, parameters that control the behaviour of tools, reports of derivative data generated by tools and annotation. + + + Core data entities typically have a format and may be identified by an accession number. + Core data + true + + + + + + + + + + + + + + + beta13 + true + Name or other identifier of molecular sequence feature(s). + + + + Sequence feature identifier + + + + + + + + + + + + + + + beta13 + true + An identifier of a molecular tertiary structure, typically an entry from a structure database. + + + + Structure identifier + + + + + + + + + + + + + + + beta13 + true + An identifier of an array of numerical values, such as a comparison matrix. + + + + Matrix identifier + + + + + + + + + beta13 + 1.8 + + A report (typically a table) on character or word composition / frequency of protein sequence(s). + + + Protein sequence composition + true + + + + + + + + + beta13 + 1.8 + + A report (typically a table) on character or word composition / frequency of nucleic acid sequence(s). + + + Nucleic acid sequence composition (report) + true + + + + + + + + + beta13 + 1.5 + + + A node from a classification of protein structural domain(s). + + Protein domain classification node + true + + + + + + + + + beta13 + Duplicates http://edamontology.org/data_1002, hence deprecated. + 1.23 + + Unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service. + + + CAS number + true + + + + + + + + + + beta13 + Unique identifier of a drug conforming to the Anatomical Therapeutic Chemical (ATC) Classification System, a drug classification system controlled by the WHO Collaborating Centre for Drug Statistics Methodology (WHOCC). + + + + ATC code + + + + + + + + + beta13 + A unique, unambiguous, alphanumeric identifier of a chemical substance as catalogued by the Substance Registration System of the Food and Drug Administration (FDA). + Unique Ingredient Identifier + + + + UNII + + + + + + + + + beta13 + 1.5 + + + Basic information concerning geographical location or time. + + Geotemporal metadata + true + + + + + + + + + beta13 + Metadata concerning the software, hardware or other aspects of a computer system. + + + System metadata + + + + + + + + + beta13 + 1.15 + + A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user. + + + Sequence feature name + true + + + + + + + + + beta13 + Raw data such as measurements or other results from laboratory experiments, as generated from laboratory hardware. + Experimental measurement data + Experimentally measured data + Measured data + Measurement + Measurement data + Measurement metadata + Raw experimental data + + + This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. + Experimental measurement + + + + + + + + + + beta13 + Raw data (typically MIAME-compliant) for hybridisations from a microarray experiment. + + + Such data as found in Affymetrix CEL or GPR files. + Raw microarray data + + + + + + + + + + + + + + + beta13 + Data generated from processing and analysis of probe set data from a microarray experiment. + Gene annotation (expression) + Gene expression report + Microarray probe set data + + + Such data as found in Affymetrix .CHP files or data from other software such as RMA or dChip. + Processed microarray data + + + + + + + + + + beta13 + The final processed (normalised) data for a set of hybridisations in a microarray experiment. + Gene expression data matrix + Normalised microarray data + + + This combines data from all hybridisations. + Gene expression matrix + + + + + + + + + beta13 + Annotation on a biological sample, for example experimental factors and their values. + + + This might include compound and dose in a dose response experiment. + Sample annotation + + + + + + + + + beta13 + Annotation on the array itself used in a microarray experiment. + + + This might include gene identifiers, genomic coordinates, probe oligonucleotide sequences etc. + Microarray metadata + + + + + + + + + beta13 + 1.8 + + Annotation on laboratory and/or data processing protocols used in an microarray experiment. + + + This might describe e.g. the normalisation methods used to process the raw data. + Microarray protocol annotation + true + + + + + + + + + beta13 + Data concerning the hybridisations measured during a microarray experiment. + + + Microarray hybridisation data + + + + + + + + + beta13 + 1.5 + + + A report of regions in a molecular sequence that are biased to certain characters. + + Sequence features (compositionally-biased regions) + true + + + + + + + + + beta13 + 1.5 + + A report on features in a nucleic acid sequence that indicate changes to or differences between sequences. + + + Nucleic acid features (difference and change) + true + + + + + + + + + + beta13 + A human-readable collection of information about regions within a nucleic acid sequence which form secondary or tertiary (3D) structures. + Nucleic acid features (structure) + Quadruplexes (report) + Stem loop (report) + d-loop (report) + + + The report may be based on analysis of nucleic acid sequence or structural data, or any annotation or information about specific nucleic acid 3D structure(s) or such structures in general. + Nucleic acid structure report + + + + + + + + + beta13 + 1.8 + + short repetitive subsequences (repeat sequences) in a protein sequence. + + + Protein features report (repeats) + true + + + + + + + + + beta13 + 1.8 + + Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more protein sequences. + + + Sequence motif matches (protein) + true + + + + + + + + + beta13 + 1.8 + + Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more nucleic acid sequences. + + + Sequence motif matches (nucleic acid) + true + + + + + + + + + beta13 + 1.5 + + + A report on displacement loops in a mitochondrial DNA sequence. + + A displacement loop is a region of mitochondrial DNA in which one of the strands is displaced by an RNA molecule. + Nucleic acid features (d-loop) + true + + + + + + + + + beta13 + 1.5 + + + A report on stem loops in a DNA sequence. + + A stem loop is a hairpin structure; a double-helical structure formed when two complementary regions of a single strand of RNA or DNA molecule form base-pairs. + Nucleic acid features (stem loop) + true + + + + + + + + + beta13 + An informative report on features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules. This includes reports on a specific gene transcript, clone or EST. + Clone or EST (report) + Gene transcript annotation + Nucleic acid features (mRNA features) + Transcript (report) + mRNA (report) + mRNA features + + + This includes 5'untranslated region (5'UTR), coding sequences (CDS), exons, intervening sequences (intron) and 3'untranslated regions (3'UTR). + Gene transcript report + + + + + + + + + beta13 + 1.8 + + features of non-coding or functional RNA molecules, including tRNA and rRNA. + + + Non-coding RNA + true + + + + + + + + + beta13 + 1.5 + + + Features concerning transcription of DNA into RNA including the regulation of transcription. + + This includes promoters, CAAT signals, TATA signals, -35 signals, -10 signals, GC signals, primer binding sites for initiation of transcription or reverse transcription, enhancer, attenuator, terminators and ribosome binding sites. + Transcriptional features (report) + true + + + + + + + + + beta13 + 1.5 + + + A report on predicted or actual immunoglobulin gene structure including constant, switch and variable regions and diversity, joining and variable segments. + + Nucleic acid features (immunoglobulin gene structure) + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'class' node from the SCOP database. + + SCOP class + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'fold' node from the SCOP database. + + SCOP fold + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'superfamily' node from the SCOP database. + + SCOP superfamily + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'family' node from the SCOP database. + + SCOP family + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'protein' node from the SCOP database. + + SCOP protein + true + + + + + + + + + beta13 + 1.5 + + + Information on a 'species' node from the SCOP database. + + SCOP species + true + + + + + + + + + beta13 + 1.8 + + mass spectrometry experiments. + + + Mass spectrometry experiment + true + + + + + + + + + beta13 + Nucleic acid classification + A human-readable collection of information about a particular family of genes, typically a set of genes with similar sequence that originate from duplication of a common ancestor gene, or any other classification of nucleic acid sequences or structures that reflects gene structure. + Gene annotation (homology information) + Gene annotation (homology) + Gene family annotation + Gene homology (report) + Homology information + + + This includes reports on on gene homologues between species. + Gene family report + + + + + + + + + beta13 + An image of a protein. + + + Protein image + + + + + + + + + beta13 + 1.24 + + + + + An alignment of protein sequences and/or structures. + + Protein alignment + true + + + + + + + + + 1.0 + 1.8 + + sequencing experiment, including samples, sampling, preparation, sequencing, and analysis. + + + NGS experiment + true + + + + + + + + + 1.1 + An informative report about a DNA sequence assembly. + Assembly report + + + This might include an overall quality assessment of the assembly and summary statistics including counts, average length and number of bases for reads, matches and non-matches, contigs, reads in pairs etc. + Sequence assembly report + + + + + + + + + 1.1 + An index of a genome sequence. + + + Many sequence alignment tasks involving many or very large sequences rely on a precomputed index of the sequence to accelerate the alignment. + Genome index + + + + + + + + + 1.1 + 1.8 + + Report concerning genome-wide association study experiments. + + + GWAS report + true + + + + + + + + + 1.2 + The position of a cytogenetic band in a genome. + + + Information might include start and end position in a chromosome sequence, chromosome identifier, name of band and so on. + Cytoband position + + + + + + + + + + + 1.2 + CL_[0-9]{7} + Cell type ontology concept ID. + CL ID + + + + Cell type ontology ID + + + + + + + + + 1.2 + Mathematical model of a network, that contains biochemical kinetics. + + + Kinetic model + + + + + + + + + + 1.3 + Identifier of a COSMIC database entry. + COSMIC identifier + + + + COSMIC ID + + + + + + + + + + 1.3 + Identifier of a HGMD database entry. + HGMD identifier + + + + HGMD ID + + + + + + + + + 1.3 + true + Unique identifier of sequence assembly. + Sequence assembly version + + + + Sequence assembly ID + + + + + + + + + 1.3 + 1.5 + + + A label (text token) describing a type of sequence feature such as gene, transcript, cds, exon, repeat, simple, misc, variation, somatic variation, structural variation, somatic structural variation, constrained or regulatory. + + Sequence feature type + true + + + + + + + + + 1.3 + 1.5 + + + An informative report on gene homologues between species. + + Gene homology (report) + true + + + + + + + + + + + 1.3 + ENSGT00390000003602 + Unique identifier for a gene tree from the Ensembl database. + Ensembl ID (gene tree) + + + + Ensembl gene tree ID + + + + + + + + + 1.3 + A phylogenetic tree that is an estimate of the character's phylogeny. + + + Gene tree + + + + + + + + + 1.3 + A phylogenetic tree that reflects phylogeny of the taxa from which the characters (used in calculating the tree) were sampled. + + + Species tree + + + + + + + + + + + + + + + 1.3 + true + Name or other identifier of an entry from a biosample database. + Sample accession + + + + Sample ID + + + + + + + + + + 1.3 + Identifier of an object from the MGI database. + + + + MGI accession + + + + + + + + + 1.3 + Name of a phenotype. + Phenotype + Phenotypes + + + + Phenotype name + + + + + + + + + 1.4 + A HMM transition matrix contains the probabilities of switching from one HMM state to another. + HMM transition matrix + + + Consider for example an HMM with two states (AT-rich and GC-rich). The transition matrix will hold the probabilities of switching from the AT-rich to the GC-rich state, and vica versa. + Transition matrix + + + + + + + + + 1.4 + A HMM emission matrix holds the probabilities of choosing the four nucleotides (A, C, G and T) in each of the states of a HMM. + HMM emission matrix + + + Consider for example an HMM with two states (AT-rich and GC-rich). The emission matrix holds the probabilities of choosing each of the four nucleotides (A, C, G and T) in the AT-rich state and in the GC-rich state. + Emission matrix + + + + + + + + + 1.4 + 1.15 + + A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states. + + + Hidden Markov model + true + + + + + + + + + 1.4 + true + An identifier of a data format. + + + Format identifier + + + + + + + + + 1.5 + Raw biological or biomedical image generated by some experimental technique. + + + Raw image + http://semanticscience.org/resource/SIO_000081 + + + + + + + + + 1.5 + Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all carbohydrates. + Carbohydrate data + + + Carbohydrate property + + + + + + + + + 1.5 + 1.8 + + Report concerning proteomics experiments. + + + Proteomics experiment report + true + + + + + + + + + 1.5 + 1.8 + + RNAi experiments. + + + RNAi report + true + + + + + + + + + 1.5 + 1.8 + + biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction. + + + Simulation experiment report + true + + + + + + + + + + + + + + + 1.7 + An imaging technique that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body. + MRT image + Magnetic resonance imaging image + Magnetic resonance tomography image + NMRI image + Nuclear magnetic resonance imaging image + + + MRI image + + + + + + + + + + + + + + + 1.7 + An image from a cell migration track assay. + + + Cell migration track image + + + + + + + + + 1.7 + Rate of association of a protein with another protein or some other molecule. + kon + + + Rate of association + + + + + + + + + 1.7 + Multiple gene identifiers in a specific order. + + + Such data are often used for genome rearrangement tools and phylogenetic tree labeling. + Gene order + + + + + + + + + 1.7 + The spectrum of frequencies of electromagnetic radiation emitted from a molecule as a result of some spectroscopy experiment. + Spectra + + + Spectrum + + + + + + + + + + + + + + + 1.7 + Spectral information for a molecule from a nuclear magnetic resonance experiment. + NMR spectra + + + NMR spectrum + + + + + + + + + 1.8 + 1.21 + + A sketch of a small molecule made with some specialised drawing package. + + + Chemical structure sketches are used for presentational purposes but also as inputs to various analysis software. + Chemical structure sketch + true + + + + + + + + + 1.8 + An informative report about a specific or conserved nucleic acid sequence pattern. + + + Nucleic acid signature + + + + + + + + + 1.8 + A DNA sequence. + DNA sequences + + + DNA sequence + + + + + + + + + 1.8 + An RNA sequence. + RNA sequences + + + RNA sequence + + + + + + + + + 1.8 + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw RNA sequence. + + + RNA sequence (raw) + true + + + + + + + + + 1.8 + Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - "raw" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata). + 1.23 + + A raw DNA sequence. + + + DNA sequence (raw) + true + + + + + + + + + + + + + + + 1.8 + Data on gene sequence variations resulting large-scale genotyping and DNA sequencing projects. + Gene sequence variations + + + Variations are stored along with a reference genome. + Sequence variations + + + + + + + + + 1.8 + A list of publications such as scientic papers or books. + + + Bibliography + + + + + + + + + 1.8 + A mapping of supplied textual terms or phrases to ontology concepts (URIs). + + + Ontology mapping + + + + + + + + + 1.9 + Any data concerning a specific biological or biomedical image. + Image-associated data + Image-related data + + + This can include basic provenance and technical information about the image, scientific annotation and so on. + Image metadata + + + + + + + + + 1.9 + A human-readable collection of information concerning a clinical trial. + Clinical trial information + + + Clinical trial report + + + + + + + + + 1.10 + A report about a biosample. + Biosample report + + + Reference sample report + + + + + + + + + 1.10 + Accession number of an entry from the Gene Expression Atlas. + + + + Gene Expression Atlas Experiment ID + + + + + + + + + + + + + + + 1.12 + true + Identifier of an entry from a database of disease. + + + + Disease identifier + + + + + + + + + + 1.12 + The name of some disease. + + + + Disease name + + + + + + + + + 1.12 + Some material that is used for educational (training) purposes. + OER + Open educational resource + + + Training material + + + + + + + + + 1.12 + A training course available for use on the Web. + On-line course + MOOC + Massive open online course + + + Online course + + + + + + + + + 1.12 + Any free or plain text, typically for human consumption and in English. Can instantiate also as a textual search query. + Free text + Plain text + Textual search query + + + Text + + + + + + + + + + 1.14 + Machine-readable biodiversity data. + Biodiversity information + OTU table + + + Biodiversity data + + + + + + + + + 1.14 + A human-readable collection of information concerning biosafety data. + Biosafety information + + + Biosafety report + + + + + + + + + 1.14 + A report about any kind of isolation of biological material. + Geographic location + Isolation source + + + Isolation report + + + + + + + + + 1.14 + Information about the ability of an organism to cause disease in a corresponding host. + Pathogenicity + + + Pathogenicity report + + + + + + + + + 1.14 + Information about the biosafety classification of an organism according to corresponding law. + Biosafety level + + + Biosafety classification + + + + + + + + + 1.14 + A report about localisation of the isolaton of biological material e.g. country or coordinates. + + + Geographic location + + + + + + + + + 1.14 + A report about any kind of isolation source of biological material e.g. blood, water, soil. + + + Isolation source + + + + + + + + + 1.14 + Experimentally determined parameter of the physiology of an organism, e.g. substrate spectrum. + + + Physiology parameter + + + + + + + + + 1.14 + Experimentally determined parameter of the morphology of an organism, e.g. size & shape. + + + Morphology parameter + + + + + + + + + 1.14 + Experimental determined parameter for the cultivation of an organism. + Cultivation conditions + Carbon source + Culture media composition + Nitrogen source + Salinity + Temperature + pH value + + + Cultivation parameter + + + + + + + + + 1.15 + Data concerning a sequencing experiment, that may be specified as an input to some tool. + + + Sequencing metadata name + + + + + + + + + 1.15 + An identifier of a flow cell of a sequencing machine. + + + A flow cell is used to immobilise, amplify and sequence millions of molecules at once. In Illumina machines, a flowcell is composed of 8 "lanes" which allows 8 experiments in a single analysis. + Flow cell identifier + + + + + + + + + 1.15 + An identifier of a lane within a flow cell of a sequencing machine, within which millions of sequences are immobilised, amplified and sequenced. + + + Lane identifier + + + + + + + + + 1.15 + A number corresponding to the number of an analysis performed by a sequencing machine. For example, if it's the 13th analysis, the run is 13. + + + Run number + + + + + + + + + 1.15 + Data concerning ecology; for example measurements and reports from the study of interactions among organisms and their environment. + + + This is a broad data type and is used a placeholder for other, more specific types. + Ecological data + + + + + + + + + 1.15 + The mean species diversity in sites or habitats at a local scale. + α-diversity + + + Alpha diversity data + + + + + + + + + 1.15 + The ratio between regional and local species diversity. + True beta diversity + β-diversity + + + Beta diversity data + + + + + + + + + 1.15 + The total species diversity in a landscape. + ɣ-diversity + + + Gamma diversity data + + + + + + + + + + 1.15 + A plot in which community data (e.g. species abundance data) is summarised. Similar species and samples are plotted close together, and dissimilar species and samples are plotted placed far apart. + + + Ordination plot + + + + + + + + + 1.16 + A ranked list of categories (usually ontology concepts), each associated with a statistical metric of over-/under-representation within the studied data. + Enrichment report + Over-representation report + Functional enrichment report + + + Over-representation data + + + + + + + + + + + + + + + 1.16 + GO-term report + A ranked list of Gene Ontology concepts, each associated with a p-value, concerning or derived from the analysis of e.g. a set of genes or proteins. + GO-term enrichment report + Gene ontology concept over-representation report + Gene ontology enrichment report + Gene ontology term enrichment report + + + GO-term enrichment data + + + + + + + + + 1.16 + Score for localization of one or more post-translational modifications in peptide sequence measured by mass spectrometry. + False localisation rate + PTM localisation + PTM score + + + Localisation score + + + + + + + + + + 1.16 + Identifier of a protein modification catalogued in the Unimod database. + + + + Unimod ID + + + + + + + + + 1.16 + Identifier for mass spectrometry proteomics data in the proteomexchange.org repository. + + + + ProteomeXchange ID + + + + + + + + + 1.16 + Groupings of expression profiles according to a clustering algorithm. + Clustered gene expression profiles + + + Clustered expression profiles + + + + + + + + + + 1.16 + An identifier of a concept from the BRENDA ontology. + + + + BRENDA ontology concept ID + + + + + + + + + + 1.16 + A text (such as a scientific article), annotated with notes, data and metadata, such as recognised entities, concepts, and their relations. + + + Annotated text + + + + + + + + + 1.16 + A structured query, in form of a script, that defines a database search task. + + + Query script + + + + + + + + + + + + + + + 1.19 + Structural 3D model (volume map) from electron microscopy. + + + 3D EM Map + + + + + + + + + + + + + + + 1.19 + Annotation on a structural 3D EM Map from electron microscopy. This might include one or several locations in the map of the known features of a particular macromolecule. + + + 3D EM Mask + + + + + + + + + + + + + + + 1.19 + Raw DDD movie acquisition from electron microscopy. + + + EM Movie + + + + + + + + + + + + + + + 1.19 + Raw acquisition from electron microscopy or average of an aligned DDD movie. + + + EM Micrograph + + + + + + + + + + + + + + + 1.21 + Data coming from molecular simulations, computer "experiments" on model molecules. + + + Typically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic). + Molecular simulation data + + + + + + + + + + 1.21 + Identifier of an entry from the RNA central database of annotated human miRNAs. + + + + There are canonical and taxon-specific forms of RNAcentral ID. Canonical form e.g. urs_9or10digits identifies an RNA sequence (within the RNA central database) which may appear in multiple sequences. Taxon-specific form identifies a sequence in the specific taxon (e.g. urs_9or10digits_taxonID). + RNA central ID + + + + + + + + + 1.21 + A human-readable systematic collection of patient (or population) health information in a digital format. + EHR + EMR + Electronic medical record + + + Electronic health record + + + + + + + + + 1.22 + Data coming from molecular simulations, computer "experiments" on model molecules. Typically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic). + + + Simulation + + + + + + + + + 1.22 + Dynamic information of a structure molecular system coming from a molecular simulation: XYZ 3D coordinates (sometimes with their associated velocities) for every atom along time. + + + Trajectory data + + + + + + + + + 1.22 + Force field parameters: charges, masses, radii, bond lengths, bond dihedrals, etc. define the structural molecular system, and are essential for the proper description and simulation of a molecular system. + + + Forcefield parameters + + + + + + + + + 1.22 + Static information of a structure molecular system that is needed for a molecular simulation: the list of atoms, their non-bonded parameters for Van der Waals and electrostatic interactions, and the complete connectivity in terms of bonds, angles and dihedrals. + + + Topology data + + + + + + + + + 1.22 + Visualization of distribution of quantitative data, e.g. expression data, by histograms, violin plots and density plots. + Density plot + + + Histogram + + + + + + + + + 1.23 + Report of the quality control review that was made of factors involved in a procedure. + QC metrics + QC report + Quality control metrics + Quality control report + + + + + + + + + 1.23 + A table of unnormalized values representing summarised read counts per genomic region (e.g. gene, transcript, peak). + Read count matrix + + + Count matrix + + + + + + + + + 1.24 + Alignment (superimposition) of DNA tertiary (3D) structures. + Structure alignment (DNA) + + + DNA structure alignment + + + + + + + + + 1.24 + A score derived from the P-value to ensure correction for multiple tests. The Q-value provides an estimate of the positive False Discovery Rate (pFDR), i.e. the rate of false positives among all the cases reported positive: pFDR = FP / (FP + TP). + Adjusted P-value + FDR + Padj + pFDR + + + Q-values are widely used in high-throughput data analysis (e.g. detection of differentially expressed genes from transcriptome data). + Q-value + + + + + + + + + + + 1.24 + A profile HMM is a variant of a Hidden Markov model that is derived specifically from a set of (aligned) biological sequences. Profile HMMs provide the basis for a position-specific scoring system, which can be used to align sequences and search databases for related sequences. + + + Profile HMM + + + + + + + + + + + + 1.24 + + WP[0-9]+ + Identifier of a pathway from the WikiPathways pathway database. + WikiPathways ID + WikiPathways pathway ID + + + + Pathway ID (WikiPathways) + + + + + + + + + + + + + + + 1.24 + A ranked list of pathways, each associated with z-score, p-value or similar, concerning or derived from the analysis of e.g. a set of genes or proteins. + Pathway analysis results + Pathway enrichment report + Pathway over-representation report + Pathway report + Pathway term enrichment report + + + Pathway overrepresentation data + + + + + + + + + 1.26 + + + \d{4}-\d{4}-\d{4}-\d{3}(\d|X) + Identifier of a researcher registered with the ORCID database. Used to identify author IDs. + + + + ORCID Identifier + + + + + + + + + + + beta12orEarlier + + + + Chemical structure specified in Simplified Molecular Input Line Entry System (SMILES) line notation. + + + SMILES + + + + + + + + + + + beta12orEarlier + Chemical structure specified in IUPAC International Chemical Identifier (InChI) line notation. + + + InChI + + + + + + + + + + beta12orEarlier + Chemical structure specified by Molecular Formula (MF), including a count of each element in a compound. + + + The general MF query format consists of a series of valid atomic symbols, with an optional number or range. + mf + + + + + + + + + + beta12orEarlier + The InChIKey (hashed InChI) is a fixed length (25 character) condensed digital representation of an InChI chemical structure specification. It uniquely identifies a chemical compound. + + + An InChIKey identifier is not human- nor machine-readable but is more suitable for web searches than an InChI chemical structure specification. + InChIKey + + + + + + + + + beta12orEarlier + SMILES ARbitrary Target Specification (SMARTS) format for chemical structure specification, which is a subset of the SMILES line notation. + + + smarts + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence with possible ambiguity, unknown positions and non-sequence characters. + + + Non-sequence characters may be used for example for gaps. + nucleotide + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Nucleotide_sequence + + + + + + + + + + beta12orEarlier + Alphabet for a protein sequence with possible ambiguity, unknown positions and non-sequence characters. + + + Non-sequence characters may be used for gaps and translation stop. + protein + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Amino_acid_sequence + + + + + + + + + + beta12orEarlier + Alphabet for the consensus of two or more molecular sequences. + + + consensus + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure nucleotide + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence (characters ACGTU only) with possible unknown positions but without ambiguity or non-sequence characters . + + + unambiguous pure nucleotide + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence with possible ambiguity, unknown positions and non-sequence characters. + + + dna + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#DNA_sequence + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence with possible ambiguity, unknown positions and non-sequence characters. + + + rna + http://onto.eva.mpg.de/ontologies/gfo-bio.owl#RNA_sequence + + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence (characters ACGT only) with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure dna + + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure dna + + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence (characters ACGU only) with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure rna sequence + + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure rna + + + + + + + + + + beta12orEarlier + Alphabet for any protein sequence with possible unknown positions but without ambiguity or non-sequence characters. + + + unambiguous pure protein + + + + + + + + + + beta12orEarlier + Alphabet for any protein sequence with possible ambiguity and unknown positions but without non-sequence characters. + + + pure protein + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from UniGene. + + A UniGene entry includes a set of transcript sequences assigned to the same transcription locus (gene or expressed pseudogene), with information on protein similarities, gene expression, cDNA clone reagents, and genomic location. + UniGene entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the COG database of clusters of (related) protein sequences. + + COG sequence cluster format + true + + + + + + + + + + beta12orEarlier + Format for sequence positions (feature location) as used in DDBJ/EMBL/GenBank database. + Feature location + + + EMBL feature location + + + + + + + + + + beta12orEarlier + Report format for tandem repeats in a nucleotide sequence (format generated by the Sanger Centre quicktandem program). + + + quicktandem + + + + + + + + + + beta12orEarlier + Report format for inverted repeats in a nucleotide sequence (format generated by the Sanger Centre inverted program). + + + Sanger inverted repeats + + + + + + + + + + beta12orEarlier + Report format for tandem repeats in a sequence (an EMBOSS report format). + + + EMBOSS repeat + + + + + + + + + + beta12orEarlier + Format of a report on exon-intron structure generated by EMBOSS est2genome. + + + est2genome format + + + + + + + + + + beta12orEarlier + Report format for restriction enzyme recognition sites used by EMBOSS restrict program. + + + restrict format + + + + + + + + + + beta12orEarlier + Report format for restriction enzyme recognition sites used by EMBOSS restover program. + + + restover format + + + + + + + + + + beta12orEarlier + Report format for restriction enzyme recognition sites used by REBASE database. + + + REBASE restriction sites + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using FASTA. + + + This includes (typically) score data, alignment data and a histogram (of observed and expected distribution of E values.) + FASTA search results format + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using some variant of BLAST. + + + This includes score data, alignment data and summary table. + BLAST results + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using some variant of MSPCrunch. + + + mspcrunch + + + + + + + + + + beta12orEarlier + Format of results of a sequence database search using some variant of Smith Waterman. + + + Smith-Waterman format + + + + + + + + + + beta12orEarlier + Format of EMBASSY domain hits file (DHF) of hits (sequences) with domain classification information. + + + The hits are relatives to a SCOP or CATH family and are found from a search of a sequence database. + dhf + + + + + + + + + + beta12orEarlier + Format of EMBASSY ligand hits file (LHF) of database hits (sequences) with ligand classification information. + + + The hits are putative ligand-binding sequences and are found from a search of a sequence database. + lhf + + + + + + + + + + beta12orEarlier + Results format for searches of the InterPro database. + + + InterPro hits format + + + + + + + + + beta12orEarlier + Format of results of a search of the InterPro database showing matches of query protein sequence(s) to InterPro entries. + + + The report includes a classification of regions in a query protein sequence which are assigned to a known InterPro protein family or group. + InterPro protein view report format + + + + + + + + + beta12orEarlier + Format of results of a search of the InterPro database showing matches between protein sequence(s) and signatures for an InterPro entry. + + + The table presents matches between query proteins (rows) and signature methods (columns) for this entry. Alternatively the sequence(s) might be from from the InterPro entry itself. The match position in the protein sequence and match status (true positive, false positive etc) are indicated. + InterPro match table format + + + + + + + + + + beta12orEarlier + Dirichlet distribution HMMER format. + + + HMMER Dirichlet prior + + + + + + + + + + beta12orEarlier + Dirichlet distribution MEME format. + + + MEME Dirichlet prior + + + + + + + + + + beta12orEarlier + Format of a report from the HMMER package on the emission and transition counts of a hidden Markov model. + + + HMMER emission and transition + + + + + + + + + + beta12orEarlier + Format of a regular expression pattern from the Prosite database. + + + prosite-pattern + + + + + + + + + + beta12orEarlier + Format of an EMBOSS sequence pattern. + + + EMBOSS sequence pattern + + + + + + + + + + beta12orEarlier + A motif in the format generated by the MEME program. + + + meme-motif + + + + + + + + + + beta12orEarlier + Sequence profile (sequence classifier) format used in the PROSITE database. + + + prosite-profile + + + + + + + + + + beta12orEarlier + A profile (sequence classifier) in the format used in the JASPAR database. + + + JASPAR format + + + + + + + + + + beta12orEarlier + Format of the model of random sequences used by MEME. + + + MEME background Markov model + + + + + + + + + + beta12orEarlier + Format of a hidden Markov model representation used by the HMMER package. + + + HMMER format + + + + + + + + + + + beta12orEarlier + FASTA-style format for multiple sequences aligned by HMMER package to an HMM. + + + HMMER-aln + + + + + + + + + + beta12orEarlier + Format of multiple sequences aligned by DIALIGN package. + + + DIALIGN format + + + + + + + + + + beta12orEarlier + EMBASSY 'domain alignment file' (DAF) format, containing a sequence alignment of protein domains belonging to the same SCOP or CATH family. + + + The format is clustal-like and includes annotation of domain family classification information. + daf + + + + + + + + + + beta12orEarlier + Format for alignment of molecular sequences to MEME profiles (position-dependent scoring matrices) as generated by the MAST tool from the MEME package. + + + Sequence-MEME profile alignment + + + + + + + + + + beta12orEarlier + Format used by the HMMER package for an alignment of a sequence against a hidden Markov model database. + + + HMMER profile alignment (sequences versus HMMs) + + + + + + + + + + beta12orEarlier + Format used by the HMMER package for of an alignment of a hidden Markov model against a sequence database. + + + HMMER profile alignment (HMM versus sequences) + + + + + + + + + + beta12orEarlier + Format of PHYLIP phylogenetic distance matrix data. + + + Data Type must include the distance matrix, probably as pairs of sequence identifiers with a distance (integer or float). + Phylip distance matrix + + + + + + + + + + beta12orEarlier + Dendrogram (tree file) format generated by ClustalW. + + + ClustalW dendrogram + + + + + + + + + + beta12orEarlier + Raw data file format used by Phylip from which a phylogenetic tree is directly generated or plotted. + + + Phylip tree raw + + + + + + + + + + beta12orEarlier + PHYLIP file format for continuous quantitative character data. + + + Phylip continuous quantitative characters + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of phylogenetic property data. + + Phylogenetic property values format + true + + + + + + + + + + beta12orEarlier + PHYLIP file format for phylogenetics character frequency data. + + + Phylip character frequencies format + + + + + + + + + + beta12orEarlier + Format of PHYLIP discrete states data. + + + Phylip discrete states format + + + + + + + + + + beta12orEarlier + Format of PHYLIP cliques data. + + + Phylip cliques format + + + + + + + + + + beta12orEarlier + Phylogenetic tree data format used by the PHYLIP program. + + + Phylip tree format + + + + + + + + + + beta12orEarlier + The format of an entry from the TreeBASE database of phylogenetic data. + + + TreeBASE format + + + + + + + + + + beta12orEarlier + The format of an entry from the TreeFam database of phylogenetic data. + + + TreeFam format + + + + + + + + + + beta12orEarlier + Format for distances, such as Branch Score distance, between two or more phylogenetic trees as used by the Phylip package. + + + Phylip tree distance format + + + + + + + + + + beta12orEarlier + Format of an entry from the DSSP database (Dictionary of Secondary Structure in Proteins). + + + The DSSP database is built using the DSSP application which defines secondary structure, geometrical features and solvent exposure of proteins, given atomic coordinates in PDB format. + dssp + + + + + + + + + + beta12orEarlier + Entry format of the HSSP database (Homology-derived Secondary Structure in Proteins). + + + hssp + + + + + + + + + + beta12orEarlier + Format of RNA secondary structure in dot-bracket notation, originally generated by the Vienna RNA package/server. + Vienna RNA format + Vienna RNA secondary structure format + + + Dot-bracket format + + + + + + + + + + beta12orEarlier + Format of local RNA secondary structure components with free energy values, generated by the Vienna RNA package/server. + + + Vienna local RNA secondary structure format + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Format of an entry (or part of an entry) from the PDB database. + PDB entry format + + + PDB database entry format + + + + + + + + + + beta12orEarlier + Entry format of PDB database in PDB format. + PDB format + + + PDB + + + + + + + + + + beta12orEarlier + Entry format of PDB database in mmCIF format. + + + mmCIF + + + + + + + + + + beta12orEarlier + Entry format of PDB database in PDBML (XML) format. + + + PDBML + + + + + + + + + beta12orEarlier + beta12orEarlier + + Format of a matrix of 3D-1D scores used by the EMBOSS Domainatrix applications. + + + Domainatrix 3D-1D scoring matrix format + true + + + + + + + + + + beta12orEarlier + Amino acid index format used by the AAindex database. + + + aaindex + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from IntEnz (The Integrated Relational Enzyme Database). + + IntEnz is the master copy of the Enzyme Nomenclature, the recommendations of the NC-IUBMB on the Nomenclature and Classification of Enzyme-Catalysed Reactions. + IntEnz enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the BRENDA enzyme database. + + BRENDA enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the KEGG REACTION database of biochemical reactions. + + KEGG REACTION enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the KEGG ENZYME database. + + KEGG ENZYME enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the proto section of the REBASE enzyme database. + + REBASE proto enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the withrefm section of the REBASE enzyme database. + + REBASE withrefm enzyme report format + true + + + + + + + + + + beta12orEarlier + Format of output of the Pcons Model Quality Assessment Program (MQAP). + + + Pcons ranks protein models by assessing their quality based on the occurrence of recurring common three-dimensional structural patterns. Pcons returns a score reflecting the overall global quality and a score for each individual residue in the protein reflecting the local residue quality. + Pcons report format + + + + + + + + + + beta12orEarlier + Format of output of the ProQ protein model quality predictor. + + + ProQ is a neural network-based predictor that predicts the quality of a protein model based on the number of structural features. + ProQ report format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of SMART domain assignment data. + + The SMART output file includes data on genetically mobile domains / analysis of domain architectures, including phyletic distributions, functional class, tertiary structures and functionally important residues. + SMART domain assignment report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the BIND database of protein interaction. + + BIND entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the IntAct database of protein interaction. + + IntAct entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the InterPro database of protein signatures (sequence classifiers) and classified sequences. + + This includes signature metadata, sequence references and a reference to the signature itself. There is normally a header (entry accession numbers and name), abstract, taxonomy information, example proteins etc. Each entry also includes a match list which give a number of different views of the signature matches for the sequences in each InterPro entry. + InterPro entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the textual abstract of signatures in an InterPro entry and its protein matches. + + References are included and a functional inference is made where possible. + InterPro entry abstract format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Gene3D protein secondary database. + + Gene3D entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the PIRSF protein secondary database. + + PIRSF entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the PRINTS protein secondary database. + + PRINTS entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Panther library of protein families and subfamilies. + + Panther Families and HMMs entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Pfam protein secondary database. + + Pfam entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the SMART protein secondary database. + + SMART entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the Superfamily protein secondary database. + + Superfamily entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the TIGRFam protein secondary database. + + TIGRFam entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the ProDom protein domain classification database. + + ProDom entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the FSSP database. + + FSSP entry format + true + + + + + + + + + + beta12orEarlier + A report format for the kinetics of enzyme-catalysed reaction(s) in a format generated by EMBOSS findkm. This includes Michaelis Menten plot, Hanes Woolf plot, Michaelis Menten constant (Km) and maximum velocity (Vmax). + + + findkm + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of Ensembl genome database. + + Ensembl gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of DictyBase genome database. + + DictyBase gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of Candida Genome database. + + CGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of DragonDB genome database. + + DragonDB gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of EcoCyc genome database. + + EcoCyc gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of FlyBase genome database. + + FlyBase gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of Gramene genome database. + + Gramene gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of KEGG GENES genome database. + + KEGG GENES gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Maize genetics and genomics database (MaizeGDB). + + MaizeGDB gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Mouse Genome Database (MGD). + + MGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Rat Genome Database (RGD). + + RGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Saccharomyces Genome Database (SGD). + + SGD gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Sanger GeneDB genome database. + + GeneDB gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of The Arabidopsis Information Resource (TAIR) genome database. + + TAIR gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the WormBase genomes database. + + WormBase gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the Zebrafish Information Network (ZFIN) genome database. + + ZFIN gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format of the TIGR genome database. + + TIGR gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the dbSNP database. + + dbSNP polymorphism report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the OMIM database of genotypes and phenotypes. + + OMIM entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a record from the HGVbase database of genotypes and phenotypes. + + HGVbase entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a record from the HIVDB database of genotypes and phenotypes. + + HIVDB entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the KEGG DISEASE database. + + KEGG DISEASE entry format + true + + + + + + + + + + beta12orEarlier + Report format on PCR primers and hybridisation oligos as generated by Whitehead primer3 program. + + + Primer3 primer + + + + + + + + + + beta12orEarlier + A format of raw sequence read data from an Applied Biosystems sequencing machine. + + + ABI + + + + + + + + + + beta12orEarlier + Format of MIRA sequence trace information file. + + + mira + + + + + + + + + + beta12orEarlier + + caf + + Common Assembly Format (CAF). A sequence assembly format including contigs, base-call qualities, and other metadata. + + + CAF + + + + + + + + + + beta12orEarlier + + Sequence assembly project file EXP format. + Affymetrix EXP format + + + EXP + + + + + + + + + + beta12orEarlier + + + Staden Chromatogram Files format (SCF) of base-called sequence reads, qualities, and other metadata. + + + SCF + + + + + + + + + + beta12orEarlier + + + PHD sequence trace format to store serialised chromatogram data (reads). + + + PHD + + + + + + + + + + + + + + + + beta12orEarlier + Format of Affymetrix data file of raw image data. + Affymetrix image data file format + + + dat + + + + + + + + + + + + + + + + beta12orEarlier + Format of Affymetrix data file of information about (raw) expression levels of the individual probes. + Affymetrix probe raw data format + + + cel + + + + + + + + + + beta12orEarlier + Format of affymetrix gene cluster files (hc-genes.txt, hc-chips.txt) from hierarchical clustering. + + + affymetrix + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the ArrayExpress microarrays database. + + ArrayExpress entry format + true + + + + + + + + + + beta12orEarlier + Affymetrix data file format for information about experimental conditions and protocols. + Affymetrix experimental conditions data file format + + + affymetrix-exp + + + + + + + + + + + + + + + + beta12orEarlier + + chp + Format of Affymetrix data file of information about (normalised) expression levels of the individual probes. + Affymetrix probe normalised data format + + + CHP + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the Electron Microscopy DataBase (EMDB). + + EMDB entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG PATHWAY database of pathway maps for molecular interactions and reaction networks. + + KEGG PATHWAY entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the MetaCyc metabolic pathways database. + + MetaCyc entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of a report from the HumanCyc metabolic pathways database. + + HumanCyc entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the INOH signal transduction pathways database. + + INOH entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the PATIKA biological pathways database. + + PATIKA entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the reactome biological pathways database. + + Reactome entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the aMAZE biological pathways and molecular interactions database. + + aMAZE entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the CPDB database. + + CPDB entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the Panther Pathways database. + + Panther Pathways entry format + true + + + + + + + + + + beta12orEarlier + Format of Taverna workflows. + + + Taverna workflow format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of mathematical models from the BioModel database. + + Models are annotated and linked to relevant data resources, such as publications, databases of compounds and pathways, controlled vocabularies, etc. + BioModel mathematical model format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG LIGAND chemical database. + + KEGG LIGAND entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG COMPOUND database. + + KEGG COMPOUND entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG PLANT database. + + KEGG PLANT entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG GLYCAN database. + + KEGG GLYCAN entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from PubChem. + + PubChem entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from a database of chemical structures and property predictions. + + ChemSpider entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from Chemical Entities of Biological Interest (ChEBI). + + ChEBI includes an ontological classification defining relations between entities or classes of entities. + ChEBI entry format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the MSDchem ligand dictionary. + + MSDchem ligand dictionary entry format + true + + + + + + + + + + beta12orEarlier + The format of an entry from the HET group dictionary (HET groups from PDB files). + + + HET group dictionary entry format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the KEGG DRUG database. + + KEGG DRUG entry format + true + + + + + + + + + + beta12orEarlier + Format of bibliographic reference as used by the PubMed database. + + + PubMed citation + + + + + + + + + + beta12orEarlier + Format for abstracts of scientific articles from the Medline database. + + + Bibliographic reference information including citation information is included + Medline Display Format + + + + + + + + + + beta12orEarlier + CiteXplore 'core' citation format including title, journal, authors and abstract. + + + CiteXplore-core + + + + + + + + + + beta12orEarlier + CiteXplore 'all' citation format includes all known details such as Mesh terms and cross-references. + + + CiteXplore-all + + + + + + + + + + beta12orEarlier + Article format of the PubMed Central database. + + + pmc + + + + + + + + + + + beta12orEarlier + The format of iHOP (Information Hyperlinked over Proteins) text-mining result. + + + iHOP format + + + + + + + + + + + + + beta12orEarlier + OSCAR format of annotated chemical text. + + + OSCAR (Open-Source Chemistry Analysis Routines) software performs chemistry-specific parsing of chemical documents. It attempts to identify chemical names, ontology concepts, and chemical data from a document. + OSCAR format + + + + + + + + + beta12orEarlier + beta13 + + + Format of an ATOM record (describing data for an individual atom) from a PDB file. + + PDB atom record format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of CATH domain classification information for a polypeptide chain. + + The report (for example http://www.cathdb.info/chain/1cukA) includes chain identifiers, domain identifiers and CATH codes for domains in a given protein chain. + CATH chain report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of CATH domain classification information for a protein PDB file. + + The report (for example http://www.cathdb.info/pdb/1cuk) includes chain identifiers, domain identifiers and CATH codes for domains in a given PDB file. + CATH PDB report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry (gene) format of the NCBI database. + + NCBI gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Moby:GI_Gene + Report format for biological functions associated with a gene name and its alternative names (synonyms, homonyms), as generated by the GeneIlluminator service. + + This includes a gene name and abbreviation of the name which may be in a name space indicating the gene status and relevant organisation. + GeneIlluminator gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Moby:BacMapGeneCard + Format of a report on the DNA and protein sequences for a given gene label from a bacterial chromosome maps from the BacMap database. + + BacMap gene card format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on Escherichia coli genes, proteins and molecules from the CyberCell Database (CCDB). + + ColiCard report format + true + + + + + + + + + + beta12orEarlier + Map of a plasmid (circular DNA) in PlasMapper TextMap format. + + + PlasMapper TextMap + + + + + + + + + + beta12orEarlier + Phylogenetic tree Newick (text) format. + nh + + + newick + + + + + + + + + + beta12orEarlier + Phylogenetic tree TreeCon (text) format. + + + TreeCon format + + + + + + + + + + beta12orEarlier + Phylogenetic tree Nexus (text) format. + + + Nexus format + + + + + + + + + + + beta12orEarlier + true + A defined way or layout of representing and structuring data in a computer file, blob, string, message, or elsewhere. + Data format + Data model + Exchange format + File format + + + The main focus in EDAM lies on formats as means of structuring data exchanged between different tools or resources. The serialisation, compression, or encoding of concrete data formats/models is not in scope of EDAM. Format 'is format of' Data. + Format + + + + + + + + + + + + + + + + + + + Data model + A defined data format has its implicit or explicit data model, and EDAM does not distinguish the two. Some data models, however, do not have any standard way of serialisation into an exchange format, and those are thus not considered formats in EDAM. (Remark: even broader - or closely related - term to 'Data model' would be an 'Information model'.) + + + + + File format + File format denotes only formats of a computer file, but the same formats apply also to data blobs or exchanged messages. + + + + + + + + + beta12orEarlier + beta13 + + + Data format for an individual atom. + + Atomic data format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a molecular sequence record. + + + Sequence record format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for molecular sequence feature information. + + + Sequence feature annotation format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for molecular sequence alignment information. + + + Alignment format + + + + + + + + + + beta12orEarlier + ACEDB sequence format. + + + acedb + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Clustalw output format. + + clustal sequence format + true + + + + + + + + + + beta12orEarlier + Codata entry format. + + + codata + + + + + + + + + beta12orEarlier + Fasta format variant with database name before ID. + + + dbid + + + + + + + + + + beta12orEarlier + EMBL entry format. + EMBL + EMBL sequence format + + + EMBL format + + + + + + + + + + beta12orEarlier + Staden experiment file format. + + + Staden experiment format + + + + + + + + + + beta12orEarlier + FASTA format including NCBI-style IDs. + FASTA format + FASTA sequence format + + + FASTA + + + + + + + + + beta12orEarlier + fastq + fq + FASTQ short read format ignoring quality scores. + FASTAQ + fq + + + FASTQ + + + + + + + + + beta12orEarlier + FASTQ Illumina 1.3 short read format. + + + FASTQ-illumina + + + + + + + + + beta12orEarlier + FASTQ short read format with phred quality. + + + FASTQ-sanger + + + + + + + + + beta12orEarlier + FASTQ Solexa/Illumina 1.0 short read format. + + + FASTQ-solexa + + + + + + + + + + beta12orEarlier + Fitch program format. + + + fitch program + + + + + + + + + + beta12orEarlier + GCG sequence file format. + GCG SSF + + + GCG SSF (single sequence file) file format. + GCG + + + + + + + + + + beta12orEarlier + Genbank entry format. + GenBank + + + GenBank format + + + + + + + + + beta12orEarlier + Genpept protein entry format. + + + Currently identical to refseqp format + genpept + + + + + + + + + + beta12orEarlier + GFF feature file format with sequence in the header. + + + GFF2-seq + + + + + + + + + + beta12orEarlier + GFF3 feature file format with sequence. + + + GFF3-seq + + + + + + + + + beta12orEarlier + FASTA sequence format including NCBI-style GIs. + + + giFASTA format + + + + + + + + + + beta12orEarlier + Hennig86 output sequence format. + + + hennig86 + + + + + + + + + + beta12orEarlier + Intelligenetics sequence format. + + + ig + + + + + + + + + + beta12orEarlier + Intelligenetics sequence format (strict version). + + + igstrict + + + + + + + + + + beta12orEarlier + Jackknifer interleaved and non-interleaved sequence format. + + + jackknifer + + + + + + + + + + beta12orEarlier + Mase program sequence format. + + + mase format + + + + + + + + + + beta12orEarlier + Mega interleaved and non-interleaved sequence format. + + + mega-seq + + + + + + + + + beta12orEarlier + GCG MSF (multiple sequence file) file format. + + + GCG MSF + + + + + + + + + beta12orEarlier + pir + NBRF/PIR entry sequence format. + nbrf + pir + + + nbrf/pir + + + + + + + + + + + beta12orEarlier + Nexus/paup interleaved sequence format. + + + nexus-seq + + + + + + + + + + + beta12orEarlier + PDB sequence format (ATOM lines). + + + pdb format in EMBOSS. + pdbatom + + + + + + + + + + + beta12orEarlier + PDB nucleotide sequence format (ATOM lines). + + + pdbnuc format in EMBOSS. + pdbatomnuc + + + + + + + + + + + beta12orEarlier + PDB nucleotide sequence format (SEQRES lines). + + + pdbnucseq format in EMBOSS. + pdbseqresnuc + + + + + + + + + + + beta12orEarlier + PDB sequence format (SEQRES lines). + + + pdbseq format in EMBOSS. + pdbseqres + + + + + + + + + beta12orEarlier + Plain old FASTA sequence format (unspecified format for IDs). + + + Pearson format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Phylip interleaved sequence format. + + phylip sequence format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + PHYLIP non-interleaved sequence format. + + phylipnon sequence format + true + + + + + + + + + + beta12orEarlier + Raw sequence format with no non-sequence characters. + + + raw + + + + + + + + + + beta12orEarlier + Refseq protein entry sequence format. + + + Currently identical to genpept format + refseqp + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Selex sequence format. + + selex sequence format + true + + + + + + + + + + beta12orEarlier + + + + + Staden suite sequence format. + + + Staden format + + + + + + + + + + beta12orEarlier + + Stockholm multiple sequence alignment format (used by Pfam and Rfam). + + + Stockholm format + + + + + + + + + + + beta12orEarlier + DNA strider output sequence format. + + + strider format + + + + + + + + + beta12orEarlier + UniProtKB entry sequence format. + SwissProt format + UniProt format + + + UniProtKB format + + + + + + + + + beta12orEarlier + txt + Plain text sequence format (essentially unformatted). + + + plain text format (unformatted) + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Treecon output sequence format. + + treecon sequence format + true + + + + + + + + + + beta12orEarlier + NCBI ASN.1-based sequence format. + + + ASN.1 sequence format + + + + + + + + + + beta12orEarlier + DAS sequence (XML) format (any type). + das sequence format + + + DAS format + + + + + + + + + + beta12orEarlier + DAS sequence (XML) format (nucleotide-only). + + + The use of this format is deprecated. + dasdna + + + + + + + + + + beta12orEarlier + EMBOSS debugging trace sequence format of full internal data content. + + + debug-seq + + + + + + + + + + beta12orEarlier + Jackknifer output sequence non-interleaved format. + + + jackknifernon + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Mega non-interleaved output sequence format. + + meganon sequence format + true + + + + + + + + + beta12orEarlier + NCBI FASTA sequence format with NCBI-style IDs. + + + There are several variants of this. + NCBI format + + + + + + + + + + + beta12orEarlier + Nexus/paup non-interleaved sequence format. + + + nexusnon + + + + + + + + + beta12orEarlier + + + General Feature Format (GFF) of sequence features. + + + GFF2 + + + + + + + + + beta12orEarlier + + + + Generic Feature Format version 3 (GFF3) of sequence features. + + + GFF3 + + + + + + + + + beta12orEarlier + 1.7 + + PIR feature format. + + + pir + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Swiss-Prot feature format. + + swiss feature + true + + + + + + + + + + beta12orEarlier + DAS GFF (XML) feature format. + DASGFF feature + das feature + + + DASGFF + + + + + + + + + + beta12orEarlier + EMBOSS debugging trace feature format of full internal data content. + + + debug-feat + + + + + + + + + beta12orEarlier + beta12orEarlier + + + EMBL feature format. + + EMBL feature + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Genbank feature format. + + GenBank feature + true + + + + + + + + + + beta12orEarlier + ClustalW format for (aligned) sequences. + clustal + + + ClustalW format + + + + + + + + + + beta12orEarlier + EMBOSS alignment format for debugging trace of full internal data content. + + + debug + + + + + + + + + + beta12orEarlier + Fasta format for (aligned) sequences. + + + FASTA-aln + + + + + + + + + beta12orEarlier + Pearson MARKX0 alignment format. + + + markx0 + + + + + + + + + beta12orEarlier + Pearson MARKX1 alignment format. + + + markx1 + + + + + + + + + beta12orEarlier + Pearson MARKX10 alignment format. + + + markx10 + + + + + + + + + beta12orEarlier + Pearson MARKX2 alignment format. + + + markx2 + + + + + + + + + beta12orEarlier + Pearson MARKX3 alignment format. + + + markx3 + + + + + + + + + + beta12orEarlier + Alignment format for start and end of matches between sequence pairs. + + + match + + + + + + + + + beta12orEarlier + Mega format for (typically aligned) sequences. + + + mega + + + + + + + + + beta12orEarlier + Mega non-interleaved format for (typically aligned) sequences. + + + meganon + + + + + + + + + beta12orEarlier + beta12orEarlier + + + MSF format for (aligned) sequences. + + msf alignment format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Nexus/paup format for (aligned) sequences. + + nexus alignment format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Nexus/paup non-interleaved format for (aligned) sequences. + + nexusnon alignment format + true + + + + + + + + + beta12orEarlier + EMBOSS simple sequence pairwise alignment format. + + + pair + + + + + + + + + beta12orEarlier + http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format + Phylip format for (aligned) sequences. + PHYLIP + PHYLIP interleaved format + ph + phy + + + PHYLIP format + + + + + + + + + beta12orEarlier + http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format + Phylip non-interleaved format for (aligned) sequences. + PHYLIP sequential format + phylipnon + + + PHYLIP sequential + + + + + + + + + + beta12orEarlier + Alignment format for score values for pairs of sequences. + + + scores format + + + + + + + + + + + beta12orEarlier + SELEX format for (aligned) sequences. + + + selex + + + + + + + + + + beta12orEarlier + EMBOSS simple multiple alignment format. + + + EMBOSS simple format + + + + + + + + + + beta12orEarlier + Simple multiple sequence (alignment) format for SRS. + + + srs format + + + + + + + + + + beta12orEarlier + Simple sequence pair (alignment) format for SRS. + + + srspair + + + + + + + + + + beta12orEarlier + T-Coffee program alignment format. + + + T-Coffee format + + + + + + + + + + + beta12orEarlier + Treecon format for (aligned) sequences. + + + TreeCon-seq + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a phylogenetic tree. + + + Phylogenetic tree format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a biological pathway or network. + + + Biological pathway or network format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a sequence-profile alignment. + + + Sequence-profile alignment format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Data format for a sequence-HMM profile alignment. + + Sequence-profile alignment (HMM) format + true + + + + + + + + + + + + + + + beta12orEarlier + Data format for an amino acid index. + + + Amino acid index format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for a full-text scientific article. + Literature format + + + Article format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format of a report from text mining. + + + Text mining report format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for reports on enzyme kinetics. + + + Enzyme kinetics report format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on a chemical compound. + Chemical compound annotation format + Chemical structure format + Small molecule report format + Small molecule structure format + + + Chemical data format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on a particular locus, gene, gene system or groups of genes. + Gene features format + + + Gene annotation format + + + + + + + + + beta12orEarlier + true + Format of a workflow. + Programming language + Script format + + + Workflow format + + + + + + + + + beta12orEarlier + true + Data format for a molecular tertiary structure. + + + Tertiary structure format + + + + + + + + + beta12orEarlier + 1.2 + + + Data format for a biological model. + + Biological model format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Text format of a chemical formula. + + + Chemical formula format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of raw (unplotted) phylogenetic data. + + + Phylogenetic character data format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic continuous quantitative character data. + + + Phylogenetic continuous quantitative character format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic discrete states data. + + + Phylogenetic discrete states format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic cliques data. + + + Phylogenetic tree report (cliques) format + + + + + + + + + + + + + + + beta12orEarlier + Format of phylogenetic invariants data. + + + Phylogenetic tree report (invariants) format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation format for electron microscopy models. + + Electron microscopy model format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format for phylogenetic tree distance data. + + + Phylogenetic tree report (tree distances) format + + + + + + + + + beta12orEarlier + 1.0 + + + Format for sequence polymorphism data. + + Polymorphism report format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format for reports on a protein family. + + + Protein family report format + + + + + + + + + + + + + + + beta12orEarlier + true + Format for molecular interaction data. + Molecular interaction format + + + Protein interaction format + + + + + + + + + + + + + + + beta12orEarlier + true + Format for sequence assembly data. + + + Sequence assembly format + + + + + + + + + beta12orEarlier + Format for information about a microarray experimental per se (not the data generated from that experiment). + + + Microarray experiment data format + + + + + + + + + + + + + + + beta12orEarlier + Format for sequence trace data (i.e. including base call information). + + + Sequence trace format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a file of gene expression data, e.g. a gene expression matrix or profile. + Gene expression data format + + + Gene expression report format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on genotype / phenotype information. + + Genotype and phenotype annotation format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a map of (typically one) molecular sequence annotated with features. + + + Map format + + + + + + + + + beta12orEarlier + true + Format of a report on PCR primers or hybridisation oligos in a nucleic acid sequence. + + + Nucleic acid features (primers) format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report of general information about a specific protein. + + + Protein report format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report of general information about a specific enzyme. + + Protein report (enzyme) format + true + + + + + + + + + + + + + + + beta12orEarlier + Format of a matrix of 3D-1D scores (amino acid environment probabilities). + + + 3D-1D scoring matrix format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on the quality of a protein three-dimensional model. + + + Protein structure report (quality evaluation) format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a report on sequence hits and associated data from searching a sequence database. + + + Database hits (sequence) format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a matrix of genetic distances between molecular sequences. + + + Sequence distance matrix format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a sequence motif. + + + Sequence motif format + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a sequence profile. + + + Sequence profile format + + + + + + + + + + + + + + + beta12orEarlier + Format of a hidden Markov model. + + + Hidden Markov model format + + + + + + + + + + + + + + + beta12orEarlier + true + Data format of a dirichlet distribution. + + + Dirichlet distribution format + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Data format for the emission and transition counts of a hidden Markov model. + + + HMM emission and transition counts format + + + + + + + + + + + + + + + beta12orEarlier + true + Format for secondary structure (predicted or real) of an RNA molecule. + + + RNA secondary structure format + + + + + + + + + beta12orEarlier + true + Format for secondary structure (predicted or real) of a protein molecule. + + + Protein secondary structure format + + + + + + + + + + + + + + + beta12orEarlier + true + Format used to specify range(s) of sequence positions. + + + Sequence range format + + + + + + + + + + beta12orEarlier + Alphabet for molecular sequence with possible unknown positions but without non-sequence characters. + + + pure + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions but possibly with non-sequence characters. + + + unpure + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions but without ambiguity characters. + + + unambiguous sequence + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence with possible unknown positions and possible ambiguity characters. + + + ambiguous + + + + + + + + + beta12orEarlier + true + Format used for map of repeats in molecular (typically nucleotide) sequences. + + + Sequence features (repeats) format + + + + + + + + + beta12orEarlier + true + Format used for report on restriction enzyme recognition sites in nucleotide sequences. + + + Nucleic acid features (restriction sites) format + + + + + + + + + beta12orEarlier + 1.10 + + Format used for report on coding regions in nucleotide sequences. + + + Gene features (coding region) format + true + + + + + + + + + + + + + + + beta12orEarlier + true + Format used for clusters of molecular sequences. + + + Sequence cluster format + + + + + + + + + beta12orEarlier + Format used for clusters of protein sequences. + + + Sequence cluster format (protein) + + + + + + + + + beta12orEarlier + Format used for clusters of nucleotide sequences. + + + Sequence cluster format (nucleic acid) + + + + + + + + + beta12orEarlier + beta13 + + + Format used for clusters of genes. + + Gene cluster format + true + + + + + + + + + + beta12orEarlier + A text format resembling EMBL entry format. + + + This concept may be used for the many non-standard EMBL-like text formats. + EMBL-like (text) + + + + + + + + + + beta12orEarlier + A text format resembling FASTQ short read format. + + + This concept may be used for non-standard FASTQ short read-like formats. + FASTQ-like format (text) + + + + + + + + + beta12orEarlier + + true + XML format for EMBL entries. + + + EMBLXML + https://fairsharing.org/bsg-s001452/ + + + + + + + + + beta12orEarlier + + true + Specific XML format for EMBL entries (only uses certain sections). + + + cdsxml + https://fairsharing.org/bsg-s001452/ + + + + + + + + + beta12orEarlier + + INSDSeq provides the elements of a sequence as presented in the GenBank/EMBL/DDBJ-style flatfile formats, with a small amount of additional structure. + INSD XML + INSDC XML + + + INSDSeq + + + + + + + + + beta12orEarlier + Geneseq sequence format. + + + geneseq + + + + + + + + + + beta12orEarlier + A text sequence format resembling uniprotkb entry format. + + + UniProt-like (text) + + + + + + + + + beta12orEarlier + 1.8 + + UniProt entry sequence format. + + + UniProt format + true + + + + + + + + + beta12orEarlier + 1.8 + + + ipi sequence format. + + ipi + true + + + + + + + + + + beta12orEarlier + Abstract format used by MedLine database. + + + medline + + + + + + + + + + + + + + + beta12orEarlier + true + Format used for ontologies. + + + Ontology format + + + + + + + + + beta12orEarlier + A serialisation format conforming to the Open Biomedical Ontologies (OBO) model. + + + OBO format + + + + + + + + + + + + + + + + + + + beta12orEarlier + A text format resembling FASTA format. + + + This concept may also be used for the many non-standard FASTA-like formats. + FASTA-like (text) + http://filext.com/file-extension/FASTA + + + + + + + + + beta12orEarlier + 1.8 + + Data format for a molecular sequence record, typically corresponding to a full entry from a molecular sequence database. + + + Sequence record full format + true + + + + + + + + + beta12orEarlier + 1.8 + + Data format for a molecular sequence record 'lite', typically molecular sequence and minimal metadata, such as an identifier of the sequence and/or a comment. + + + Sequence record lite format + true + + + + + + + + + beta12orEarlier + An XML format for EMBL entries. + + + This is a placeholder for other more specific concepts. It should not normally be used for annotation. + EMBL format (XML) + + + + + + + + + + beta12orEarlier + A text format resembling GenBank entry (plain text) format. + + + This concept may be used for the non-standard GenBank-like text formats. + GenBank-like format (text) + + + + + + + + + beta12orEarlier + Text format for a sequence feature table. + + + Sequence feature table format (text) + + + + + + + + + beta12orEarlier + 1.0 + + + Format of a report on organism strain data / cell line. + + Strain data format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format for a report of strain data as used for CIP database entries. + + CIP strain data format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + PHYLIP file format for phylogenetic property data. + + phylip property values + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format (HTML) for the STRING database of protein interaction. + + STRING entry format (HTML) + true + + + + + + + + + + beta12orEarlier + Entry format (XML) for the STRING database of protein interaction. + + + STRING entry format (XML) + + + + + + + + + + beta12orEarlier + GFF feature format (of indeterminate version). + + + GFF + + + + + + + + + beta12orEarlier + + + + Gene Transfer Format (GTF), a restricted version of GFF. + + + GTF + + + + + + + + + + beta12orEarlier + FASTA format wrapped in HTML elements. + + + FASTA-HTML + + + + + + + + + + beta12orEarlier + EMBL entry format wrapped in HTML elements. + + + EMBL-HTML + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the BioCyc enzyme database. + + BioCyc enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of an entry from the Enzyme nomenclature database (ENZYME). + + ENZYME enzyme report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on a gene from the PseudoCAP database. + + PseudoCAP gene report format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on a gene from the GeneCards database. + + GeneCards gene report format + true + + + + + + + + + + beta12orEarlier + Textual format. + Plain text format + txt + + + Data in text format can be compressed into binary format, or can be a value of an XML element or attribute. Markup formats are not considered textual (or more precisely, not plain-textual). + Textual format + http://filext.com/file-extension/TXT + http://www.iana.org/assignments/media-types/media-types.xhtml#text + http://www.iana.org/assignments/media-types/text/plain + + + + + + + + + + + + + + + + beta12orEarlier + HTML format. + Hypertext Markup Language + + + HTML + http://filext.com/file-extension/HTML + + + + + + + + + + beta12orEarlier + xml + + + + eXtensible Markup Language (XML) format. + eXtensible Markup Language + + + Data in XML format can be serialised into text, or binary format. + XML + + + + + + + + + beta12orEarlier + true + Binary format. + + + Only specific native binary formats are listed under 'Binary format' in EDAM. Generic binary formats - such as any data being zipped, or any XML data being serialised into the Efficient XML Interchange (EXI) format - are not modelled in EDAM. Refer to http://wsio.org/compression_004. + Binary format + + + + + + + + + beta12orEarlier + beta13 + + + Typical textual representation of a URI. + + URI format + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + The format of an entry from the NCI-Nature pathways database. + + NCI-Nature pathway entry format + true + + + + + + + + + beta12orEarlier + true + A placeholder concept for visual navigation by dividing data formats by the content of the data that is represented. + Format (typed) + + + This concept exists only to assist EDAM maintenance and navigation in graphical browsers. It does not add semantic information. The concept branch under 'Format (typed)' provides an alternative organisation of the concepts nested under the other top-level branches ('Binary', 'HTML', 'RDF', 'Text' and 'XML'. All concepts under here are already included under those branches. + Format (by type of data) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + + + + + + + Any ontology allowed, none mandatory. Preferably with URIs but URIs are not mandatory. Non-ontology terms are also allowed as the last resort in case of a lack of suitable ontology. + + + + BioXSD-schema-based XML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, Web services, and object-oriented programming. + BioJSON + BioXSD + BioXSD XML + BioXSD XML format + BioXSD data model + BioXSD format + BioXSD in XML + BioXSD in XML format + BioXSD+XML + BioXSD/GTrack + BioXSD|GTrack + BioYAML + + + 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioXSD in XML' is the XML format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'. + BioXSD (XML) + + + + + + + + + + + beta12orEarlier + A serialisation format conforming to the Resource Description Framework (RDF) model. + Resource Description Framework format + RDF + Resource Description Framework + + + RDF format + + + + + + + + + + + beta12orEarlier + Genbank entry format wrapped in HTML elements. + + + GenBank-HTML + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Format of a report on protein features (domain composition). + + Protein features (domains) format + true + + + + + + + + + beta12orEarlier + A format resembling EMBL entry (plain text) format. + + + This concept may be used for the many non-standard EMBL-like formats. + EMBL-like format + + + + + + + + + beta12orEarlier + A format resembling FASTQ short read format. + + + This concept may be used for non-standard FASTQ short read-like formats. + FASTQ-like format + + + + + + + + + beta12orEarlier + A format resembling FASTA format. + + + This concept may be used for the many non-standard FASTA-like formats. + FASTA-like + + + + + + + + + + beta12orEarlier + A sequence format resembling uniprotkb entry format. + + + uniprotkb-like format + + + + + + + + + + + + + + + beta12orEarlier + Format for a sequence feature table. + + + Sequence feature table format + + + + + + + + + + beta12orEarlier + OBO ontology text format. + + + OBO + + + + + + + + + + beta12orEarlier + OBO ontology XML format. + + + OBO-XML + + + + + + + + + beta12orEarlier + Data format for a molecular sequence record (text). + + + Sequence record format (text) + + + + + + + + + beta12orEarlier + Data format for a molecular sequence record (XML). + + + Sequence record format (XML) + + + + + + + + + beta12orEarlier + XML format for a sequence feature table. + + + Sequence feature table format (XML) + + + + + + + + + beta12orEarlier + Text format for molecular sequence alignment information. + + + Alignment format (text) + + + + + + + + + beta12orEarlier + XML format for molecular sequence alignment information. + + + Alignment format (XML) + + + + + + + + + beta12orEarlier + Text format for a phylogenetic tree. + + + Phylogenetic tree format (text) + + + + + + + + + beta12orEarlier + XML format for a phylogenetic tree. + + + Phylogenetic tree format (XML) + + + + + + + + + + beta12orEarlier + An XML format resembling EMBL entry format. + + + This concept may be used for the any non-standard EMBL-like XML formats. + EMBL-like (XML) + + + + + + + + + beta12orEarlier + A format resembling GenBank entry (plain text) format. + + + This concept may be used for the non-standard GenBank-like formats. + GenBank-like format + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Entry format for the STRING database of protein interaction. + + STRING entry format + true + + + + + + + + + beta12orEarlier + Text format for sequence assembly data. + + + Sequence assembly format (text) + + + + + + + + + beta12orEarlier + beta13 + + + Text format (representation) of amino acid residues. + + Amino acid identifier format + true + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence without any unknown positions or ambiguity characters. + + + completely unambiguous + + + + + + + + + + beta12orEarlier + Alphabet for a molecular sequence without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure + + + + + + + + + + beta12orEarlier + Alphabet for a nucleotide sequence (characters ACGTU only) without unknown positions, ambiguity or non-sequence characters . + + + completely unambiguous pure nucleotide + + + + + + + + + + beta12orEarlier + Alphabet for a DNA sequence (characters ACGT only) without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure dna + + + + + + + + + + beta12orEarlier + Alphabet for an RNA sequence (characters ACGU only) without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure rna sequence + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a raw molecular sequence (i.e. the alphabet used). + + + Raw sequence format + http://www.onto-med.de/ontologies/gfo.owl#Symbol_sequence + + + + + + + + + + + beta12orEarlier + + + BAM format, the binary, BGZF-formatted compressed version of SAM format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data. + + + BAM + + + + + + + + + + + beta12orEarlier + + + Sequence Alignment/Map (SAM) format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data. + + + The format supports short and long reads (up to 128Mbp) produced by different sequencing platforms and is used to hold mapped data within the GATK and across the Broad Institute, the Sanger Centre, and throughout the 1000 Genomes project. + SAM + + + + + + + + + + beta12orEarlier + + + Systems Biology Markup Language (SBML), the standard XML format for models of biological processes such as for example metabolism, cell signaling, and gene regulation. + + + SBML + + + + + + + + + + beta12orEarlier + Alphabet for any protein sequence without unknown positions, ambiguity or non-sequence characters. + + + completely unambiguous pure protein + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Format of a bibliographic reference. + + + Bibliographic reference format + + + + + + + + + + + + + + + beta12orEarlier + Format of a sequence annotation track. + + + Sequence annotation track format + + + + + + + + + + + + + + + beta12orEarlier + Data format for molecular sequence alignment information that can hold sequence alignment(s) of only 2 sequences. + + + Alignment format (pair only) + + + + + + + + + + + + + + + beta12orEarlier + true + Format of sequence variation annotation. + + + Sequence variation annotation format + + + + + + + + + + beta12orEarlier + Some variant of Pearson MARKX alignment format. + + + markx0 variant + + + + + + + + + + + beta12orEarlier + Some variant of Mega format for (typically aligned) sequences. + + + mega variant + + + + + + + + + + + beta12orEarlier + Some variant of Phylip format for (aligned) sequences. + + + Phylip format variant + + + + + + + + + + beta12orEarlier + AB1 binary format of raw DNA sequence reads (output of Applied Biosystems' sequencing analysis software). Contains an electropherogram and the DNA base sequence. + + + AB1 uses the generic binary Applied Biosystems, Inc. Format (ABIF). + AB1 + + + + + + + + + + beta12orEarlier + + + ACE sequence assembly format including contigs, base-call qualities, and other metadata (version Aug 1998 and onwards). + + + ACE + + + + + + + + + + beta12orEarlier + + + Browser Extensible Data (BED) format of sequence annotation track, typically to be displayed in a genome browser. + + + BED detail format includes 2 additional columns (http://genome.ucsc.edu/FAQ/FAQformat#format1.7) and BED 15 includes 3 additional columns for experiment scores (http://genomewiki.ucsc.edu/index.php/Microarray_track). + BED + + + + + + + + + + beta12orEarlier + + + bigBed format for large sequence annotation tracks, similar to textual BED format. + + + bigBed + + + + + + + + + + beta12orEarlier + + wig + + Wiggle format (WIG) of a sequence annotation track that consists of a value for each sequence position. Typically to be displayed in a genome browser. + + + WIG + + + + + + + + + + beta12orEarlier + + + bigWig format for large sequence annotation tracks that consist of a value for each sequence position. Similar to textual WIG format. + + + bigWig + + + + + + + + + + + beta12orEarlier + + + PSL format of alignments, typically generated by BLAT or psLayout. Can be displayed in a genome browser like a sequence annotation track. + + + PSL + + + + + + + + + + + beta12orEarlier + + + Multiple Alignment Format (MAF) supporting alignments of whole genomes with rearrangements, directions, multiple pieces to the alignment, and so forth. + + + Typically generated by Multiz and TBA aligners; can be displayed in a genome browser like a sequence annotation track. This should not be confused with MIRA Assembly Format or Mutation Annotation Format. + MAF + + + + + + + + + + beta12orEarlier + + + + 2bit binary format of nucleotide sequences using 2 bits per nucleotide. In addition encodes unknown nucleotides and lower-case 'masking'. + + + 2bit + + + + + + + + + + beta12orEarlier + + + .nib (nibble) binary format of a nucleotide sequence using 4 bits per nucleotide (including unknown) and its lower-case 'masking'. + + + .nib + + + + + + + + + + beta12orEarlier + + gp + + genePred table format for gene prediction tracks. + + + genePred format has 3 main variations (http://genome.ucsc.edu/FAQ/FAQformat#format9 http://www.broadinstitute.org/software/igv/genePred). They reflect UCSC Browser DB tables. + genePred + + + + + + + + + + beta12orEarlier + + + Personal Genome SNP (pgSnp) format for sequence variation tracks (indels and polymorphisms), supported by the UCSC Genome Browser. + + + pgSnp + + + + + + + + + + beta12orEarlier + + + axt format of alignments, typically produced from BLASTZ. + + + axt + + + + + + + + + + beta12orEarlier + + lav + + LAV format of alignments generated by BLASTZ and LASTZ. + + + LAV + + + + + + + + + + beta12orEarlier + + + Pileup format of alignment of sequences (e.g. sequencing reads) to (a) reference sequence(s). Contains aligned bases per base of the reference sequence(s). + + + Pileup + + + + + + + + + + beta12orEarlier + + vcf + vcf.gz + Variant Call Format (VCF) is tabular format for storing genomic sequence variations. + + + 1000 Genomes Project has its own specification for encoding structural variations in VCF (https://www.internationalgenome.org/wiki/Analysis/Variant%20Call%20Format/VCF%20(Variant%20Call%20Format)%20version%204.0/encoding-structural-variants). This is based on VCF version 4.0 and not directly compatible with VCF version 4.3. + VCF + + + + + + + + + + + beta12orEarlier + + + Sequence Read Format (SRF) of sequence trace data. Supports submission to the NCBI Short Read Archive. + + + SRF + + + + + + + + + + beta12orEarlier + + + ZTR format for storing chromatogram data from DNA sequencing instruments. + + + ZTR + + + + + + + + + + beta12orEarlier + + + Genome Variation Format (GVF). A GFF3-compatible format with defined header and attribute tags for sequence variation. + + + GVF + + + + + + + + + + beta12orEarlier + + bcf + bcf.gz + + BCF is the binary version of Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation). + + + BCF + + + + + + + + + + + + + + + beta13 + true + Format of a matrix (array) of numerical values. + + + Matrix format + + + + + + + + + + + + + + + beta13 + true + Format of data concerning the classification of the sequences and/or structures of protein structural domain(s). + + + Protein domain classification format + + + + + + + + + beta13 + Format of raw SCOP domain classification data files. + + + These are the parsable data files provided by SCOP. + Raw SCOP domain classification format + + + + + + + + + beta13 + Format of raw CATH domain classification data files. + + + These are the parsable data files provided by CATH. + Raw CATH domain classification format + + + + + + + + + beta13 + Format of summary of domain classification information for a CATH domain. + + + The report (for example http://www.cathdb.info/domain/1cukA01) includes CATH codes for levels in the hierarchy for the domain, level descriptions and relevant data and links. + CATH domain report format + + + + + + + + + + 1.0 + + + Systems Biology Result Markup Language (SBRML), the standard XML format for simulated or calculated results (e.g. trajectories) of systems biology models. + + + SBRML + + + + + + + + + 1.0 + + + BioPAX is an exchange format for pathway data, with its data model defined in OWL. + + + BioPAX + + + + + + + + + + + 1.0 + + + EBI Application Result XML is a format returned by sequence similarity search Web services at EBI. + + + EBI Application Result XML + + + + + + + + + + 1.0 + + + XML Molecular Interaction Format (MIF), standardised by HUPO PSI MI. + MIF + + + PSI MI XML (MIF) + + + + + + + + + + 1.0 + + + phyloXML is a standardised XML format for phylogenetic trees, networks, and associated data. + + + phyloXML + + + + + + + + + + 1.0 + + + NeXML is a standardised XML format for rich phyloinformatic data. + + + NeXML + + + + + + + + + + + + + + + + 1.0 + + + MAGE-ML XML format for microarray expression data, standardised by MGED (now FGED). + + + MAGE-ML + + + + + + + + + + + + + + + + 1.0 + + + MAGE-TAB textual format for microarray expression data, standardised by MGED (now FGED). + + + MAGE-TAB + + + + + + + + + + 1.0 + + + GCDML XML format for genome and metagenome metadata according to MIGS/MIMS/MIMARKS information standards, standardised by the Genomic Standards Consortium (GSC). + + + GCDML + + + + + + + + + + + + 1.0 + + + + + + + + + + GTrack is a generic and optimised tabular format for genome or sequence feature tracks. GTrack unifies the power of other track formats (e.g. GFF3, BED, WIG), and while optimised in size, adds more flexibility, customisation, and automation ("machine understandability"). + BioXSD/GTrack GTrack + BioXSD|GTrack GTrack + GTrack ecosystem of formats + GTrack format + GTrack|BTrack|GSuite GTrack + GTrack|GSuite|BTrack GTrack + + + 'GTrack' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'GTrack' is the tabular format for representing features of sequences and genomes. + GTrack + + + + + + + + + + + + + + + 1.0 + true + Data format for a report of information derived from a biological pathway or network. + + + Biological pathway or network report format + + + + + + + + + + + + + + + 1.0 + true + Data format for annotation on a laboratory experiment. + + + Experiment annotation format + + + + + + + + + + + + + + + + 1.2 + + + Cytoband format for chromosome cytobands. + + + Reflects a UCSC Browser DB table. + Cytoband format + + + + + + + + + + + 1.2 + + + CopasiML, the native format of COPASI. + + + CopasiML + + + + + + + + + + 1.2 + + + + + CellML, the format for mathematical models of biological and other networks. + + + CellML + + + + + + + + + + 1.2 + + + + + + Tabular Molecular Interaction format (MITAB), standardised by HUPO PSI MI. + + + PSI MI TAB (MITAB) + + + + + + + + + 1.2 + + + Protein affinity format (PSI-PAR), standardised by HUPO PSI MI. It is compatible with PSI MI XML (MIF) and uses the same XML Schema. + + + PSI-PAR + + + + + + + + + + 1.2 + + + mzML format for raw spectrometer output data, standardised by HUPO PSI MSS. + + + mzML is the successor and unifier of the mzData format developed by PSI and mzXML developed at the Seattle Proteome Center. + mzML + + + + + + + + + + + + + + + 1.2 + true + Format for mass pectra and derived data, include peptide sequences etc. + + + Mass spectrometry data format + + + + + + + + + + 1.2 + + + TraML (Transition Markup Language) is the format for mass spectrometry transitions, standardised by HUPO PSI MSS. + + + TraML + + + + + + + + + + 1.2 + + + mzIdentML is the exchange format for peptides and proteins identified from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of proteomics search engines. + + + mzIdentML + + + + + + + + + + 1.2 + + + mzQuantML is the format for quantitation values associated with peptides, proteins and small molecules from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of quantitation software for proteomics. + + + mzQuantML + + + + + + + + + + 1.2 + + + GelML is the format for describing the process of gel electrophoresis, standardised by HUPO PSI PS. + + + GelML + + + + + + + + + + 1.2 + + + spML is the format for describing proteomics sample processing, other than using gels, prior to mass spectrometric protein identification, standardised by HUPO PSI PS. It may also be applicable for metabolomics. + + + spML + + + + + + + + + + 1.2 + A human-readable encoding for the Web Ontology Language (OWL). + + + OWL Functional Syntax + + + + + + + + + + 1.2 + A syntax for writing OWL class expressions. + + + This format was influenced by the OWL Abstract Syntax and the DL style syntax. + Manchester OWL Syntax + + + + + + + + + + 1.2 + A superset of the "Description-Logic Knowledge Representation System Specification from the KRSS Group of the ARPA Knowledge Sharing Effort". + + + This format is used in Protege 4. + KRSS2 Syntax + + + + + + + + + + 1.2 + The Terse RDF Triple Language (Turtle) is a human-friendly serialisation format for RDF (Resource Description Framework) graphs. + + + The SPARQL Query Language incorporates a very similar syntax. + Turtle + + + + + + + + + + 1.2 + nt + A plain text serialisation format for RDF (Resource Description Framework) graphs, and a subset of the Turtle (Terse RDF Triple Language) format. + + + N-Triples should not be confused with Notation 3 which is a superset of Turtle. + N-Triples + + + + + + + + + + 1.2 + n3 + A shorthand non-XML serialisation of Resource Description Framework model, designed with human-readability in mind. + N3 + + + Notation3 + + + + + + + + + + + + + + + + + + + 1.2 + OWL ontology XML serialisation format. + OWL + + + OWL/XML + + + + + + + + + + 1.3 + + + The A2M format is used as the primary format for multiple alignments of protein or nucleic-acid sequences in the SAM suite of tools. It is a small modification of FASTA format for sequences and is compatible with most tools that read FASTA. + + + A2M + + + + + + + + + + 1.3 + + + Standard flowgram format (SFF) is a binary file format used to encode results of pyrosequencing from the 454 Life Sciences platform for high-throughput sequencing. + Standard flowgram format + + + SFF + + + + + + + + + 1.3 + + The MAP file describes SNPs and is used by the Plink package. + Plink MAP + + + MAP + + + + + + + + + 1.3 + + The PED file describes individuals and genetic data and is used by the Plink package. + Plink PED + + + PED + + + + + + + + + 1.3 + true + Data format for a metadata on an individual and their genetic data. + + + Individual genetic data format + + + + + + + + + + 1.3 + + The PED/MAP file describes data used by the Plink package. + Plink PED/MAP + + + PED/MAP + + + + + + + + + + 1.3 + + + File format of a CT (Connectivity Table) file from the RNAstructure package. + Connect format + Connectivity Table file format + + + CT + + + + + + + + + + 1.3 + + XRNA old input style format. + + + SS + + + + + + + + + + + 1.3 + + RNA Markup Language. + + + RNAML + + + + + + + + + + 1.3 + + Format for the Genetic Data Environment (GDE). + + + GDE + + + + + + + + + 1.3 + + A multiple alignment in vertical format, as used in the AMPS (Alignment of Multiple Protein Sequences) package. + Block file format + + + BLC + + + + + + + + + + + + + + + 1.3 + true + Format of a data index of some type. + + + Data index format + + + + + + + + + + + + + + + + 1.3 + + BAM indexing format. + + + BAI + + + + + + + + + 1.3 + + HMMER profile HMM file for HMMER versions 2.x. + + + HMMER2 + + + + + + + + + 1.3 + + HMMER profile HMM file for HMMER versions 3.x. + + + HMMER3 + + + + + + + + + 1.3 + + PO is the output format of Partial Order Alignment program (POA) performing Multiple Sequence Alignment (MSA). + + + PO + + + + + + + + + + 1.3 + XML format as produced by the NCBI Blast package. + + + BLAST XML results format + + + + + + + + + + 1.7 + http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf + http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf + Reference-based compression of alignment format. + + + CRAM + + + + + + + + + + 1.7 + json + + + + JavaScript Object Notation format; a lightweight, text-based format to represent tree-structured data using key-value pairs. + JavaScript Object Notation + + + JSON + + + + + + + + + + 1.7 + Encapsulated PostScript format. + + + EPS + + + + + + + + + 1.7 + Graphics Interchange Format. + + + GIF + + + + + + + + + + 1.7 + Microsoft Excel spreadsheet format. + Microsoft Excel format + + + xls + + + + + + + + + 1.7 + tab + tsv + + + + Tabular data represented as tab-separated values in a text file. + Tab-delimited + Tab-separated values + tab + + + TSV + + + + + + + + + 1.7 + 1.10 + + Format of a file of gene expression data, e.g. a gene expression matrix or profile. + + + Gene expression data format + true + + + + + + + + + + 1.7 + Format of the cytoscape input file of gene expression ratios or values are specified over one or more experiments. + + + Cytoscape input file format + + + + + + + + + + + + + + + + 1.7 + https://github.com/BenLangmead/bowtie/blob/master/MANUAL + Bowtie format for indexed reference genome for "small" genomes. + Bowtie index format + + + ebwt + + + + + + + + + 1.7 + http://www.molbiol.ox.ac.uk/tutorials/Seqlab_GCG.pdf + Rich sequence format. + GCG RSF + + + RSF-format files contain one or more sequences that may or may not be related. In addition to the sequence data, each sequence can be annotated with descriptive sequence information (from the GCG manual). + RSF + + + + + + + + + + + 1.7 + Some format based on the GCG format. + + + GCG format variant + + + + + + + + + + 1.7 + http://rothlab.ucdavis.edu/genhelp/chapter_2_using_sequences.html#_Creating_and_Editing_Single_Sequenc + Bioinformatics Sequence Markup Language format. + + + BSML + + + + + + + + + + + + + + + + 1.7 + https://github.com/BenLangmead/bowtie/blob/master/MANUAL + Bowtie format for indexed reference genome for "large" genomes. + Bowtie long index format + + + ebwtl + + + + + + + + + + 1.8 + + Ensembl standard format for variation data. + + + Ensembl variation file format + + + + + + + + + + 1.8 + Microsoft Word format. + Microsoft Word format + doc + + + docx + + + + + + + + + 1.8 + true + Format of documents including word processor, spreadsheet and presentation. + + + Document format + + + + + + + + + + 1.8 + Portable Document Format. + + + PDF + + + + + + + + + + + + + + + 1.9 + true + Format used for images and image metadata. + + + Image format + + + + + + + + + + 1.9 + + Medical image format corresponding to the Digital Imaging and Communications in Medicine (DICOM) standard. + + + DICOM format + + + + + + + + + + 1.9 + + nii + An open file format from the Neuroimaging Informatics Technology Initiative (NIfTI) commonly used to store brain imaging data obtained using Magnetic Resonance Imaging (MRI) methods. + NIFTI format + NIfTI-1 format + + + nii + + + + + + + + + + 1.9 + + Text-based tagged file format for medical images generated using the MetaImage software package. + Metalmage format + + + mhd + + + + + + + + + + 1.9 + + Nearly Raw Rasta Data format designed to support scientific visualisation and image processing involving N-dimensional raster data. + + + nrrd + + + + + + + + + 1.9 + File format used for scripts written in the R programming language for execution within the R software environment, typically for statistical computation and graphics. + + + R file format + + + + + + + + + 1.9 + File format used for scripts for the Statistical Package for the Social Sciences. + + + SPSS + + + + + + + + + 1.9 + + eml + mht + mhtml + + + + MIME HTML format for Web pages, which can include external resources, including images, Flash animations and so on. + HTML email format + HTML email message format + MHT + MHT format + MHTML format + MIME HTML + MIME HTML format + eml + MIME multipart + MIME multipart format + MIME multipart message + MIME multipart message format + + + MHTML is not strictly an HTML format, it is encoded as an HTML email message (although with multipart/related instead of multipart/alternative). It, however, contains the main HTML block as its core, and thus it is for practical reasons included in EDAM as a specialisation of 'HTML'. + MHTML + + + + + + + + + + + + + + + + + 1.10 + Proprietary file format for (raw) BeadArray data used by genomewide profiling platforms from Illumina Inc. This format is output directly from the scanner and stores summary intensities for each probe-type on an array. + + + IDAT + + + + + + + + + + 1.10 + + Joint Picture Group file format for lossy graphics file. + JPEG + jpeg + + + Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type. + JPG + + + + + + + + + + 1.10 + Reporter Code Count-A data file (.csv) output by the Nanostring nCounter Digital Analyzer, which contains gene sample information, probe information and probe counts. + + + rcc + + + + + + + + + 1.11 + + + ARFF (Attribute-Relation File Format) is an ASCII text file format that describes a list of instances sharing a set of attributes. + + + This file format is for machine learning. + arff + + + + + + + + + + 1.11 + + + AFG is a single text-based file assembly format that holds read and consensus information together. + + + afg + + + + + + + + + + 1.11 + + + The bedGraph format allows display of continuous-valued data in track format. This display type is useful for probability scores and transcriptome data. + + + Holds a tab-delimited chromosome /start /end / datavalue dataset. + bedgraph + + + + + + + + + 1.11 + + + Browser Extensible Data (BED) format of sequence annotation track that strictly does not contain non-standard fields beyond the first 3 columns. + + + Galaxy allows BED files to contain non-standard fields beyond the first 3 columns, some other implementations do not. + bedstrict + + + + + + + + + 1.11 + + + BED file format where each feature is described by chromosome, start, end, name, score, and strand. + + + Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 6 + bed6 + + + + + + + + + 1.11 + + + A BED file where each feature is described by all twelve columns. + + + Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 12 + bed12 + + + + + + + + + + 1.11 + + + Tabular format of chromosome names and sizes used by Galaxy. + + + Galaxy allows BED files to contain non-standard fields beyond the first 3 columns, some other implementations do not. + chrominfo + + + + + + + + + + 1.11 + + + Custom Sequence annotation track format used by Galaxy. + + + Used for tracks/track views within galaxy. + customtrack + + + + + + + + + + 1.11 + + + Color space FASTA format sequence variant. + + + FASTA format extended for color space information. + csfasta + + + + + + + + + + 1.11 + + + HDF5 is a data model, library, and file format for storing and managing data, based on Hierarchical Data Format (HDF). + h5 + + + An HDF5 file appears to the user as a directed graph. The nodes of this graph are the higher-level HDF5 objects that are exposed by the HDF5 APIs: Groups, Datasets, Named datatypes. Currently supported by the Python MDTraj package. + HDF5 is the new version, according to the HDF group, a completely different technology (https://support.hdfgroup.org/products/hdf4/ compared to HDF. + HDF5 + + + + + + + + + + 1.11 + + A versatile bitmap format. + + + The TIFF format is perhaps the most versatile and diverse bitmap format in existence. Its extensible nature and support for numerous data compression schemes allow developers to customize the TIFF format to fit any peculiar data storage needs. + TIFF + + + + + + + + + + 1.11 + + Standard bitmap storage format in the Microsoft Windows environment. + + + Although it is based on Windows internal bitmap data structures, it is supported by many non-Windows and non-PC applications. + BMP + + + + + + + + + + 1.11 + + IM is a format used by LabEye and other applications based on the IFUNC image processing library. + + + IFUNC library reads and writes most uncompressed interchange versions of this format. + im + + + + + + + + + + 1.11 + + pcd + Photo CD format, which is the highest resolution format for images on a CD. + + + PCD was developed by Kodak. A PCD file contains five different resolution (ranging from low to high) of a slide or film negative. Due to it PCD is often used by many photographers and graphics professionals for high-end printed applications. + pcd + + + + + + + + + + 1.11 + + PCX is an image file format that uses a simple form of run-length encoding. It is lossless. + + + pcx + + + + + + + + + + 1.11 + + The PPM format is a lowest common denominator color image file format. + + + ppm + + + + + + + + + + 1.11 + + PSD (Photoshop Document) is a proprietary file that allows the user to work with the images' individual layers even after the file has been saved. + + + psd + + + + + + + + + + 1.11 + + X BitMap is a plain text binary image format used by the X Window System used for storing cursor and icon bitmaps used in the X GUI. + + + The XBM format was replaced by XPM for X11 in 1989. + xbm + + + + + + + + + + 1.11 + + X PixMap (XPM) is an image file format used by the X Window System, it is intended primarily for creating icon pixmaps, and supports transparent pixels. + + + Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type. + xpm + + + + + + + + + + 1.11 + + RGB file format is the native raster graphics file format for Silicon Graphics workstations. + + + rgb + + + + + + + + + + 1.11 + + The PBM format is a lowest common denominator monochrome file format. It serves as the common language of a large family of bitmap image conversion filters. + + + pbm + + + + + + + + + + 1.11 + + The PGM format is a lowest common denominator grayscale file format. + + + It is designed to be extremely easy to learn and write programs for. + pgm + + + + + + + + + + 1.11 + + png + PNG is a file format for image compression. + + + It iis expected to replace the Graphics Interchange Format (GIF). + PNG + + + + + + + + + + 1.11 + + Scalable Vector Graphics (SVG) is an XML-based vector image format for two-dimensional graphics with support for interactivity and animation. + Scalable Vector Graphics + + + The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999. + SVG + + + + + + + + + + 1.11 + + Sun Raster is a raster graphics file format used on SunOS by Sun Microsystems. + + + The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999. + rast + + + + + + + + + + + + + + + 1.11 + true + Textual report format for sequence quality for reports from sequencing machines. + + + Sequence quality report format (text) + + + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences). + + + Phred quality scores are defined as a property which is logarithmically related to the base-calling error probabilities. + qual + + + + + + + + + + 1.11 + FASTQ format subset for Phred sequencing quality score data only (no sequences) for Solexa/Illumina 1.0 format. + + + Solexa/Illumina 1.0 format can encode a Solexa/Illumina quality score from -5 to 62 using ASCII 59 to 126 (although in raw read data Solexa scores from -5 to 40 only are expected) + qualsolexa + + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences) from Illumina 1.5 and before Illumina 1.8. + + + Starting in Illumina 1.5 and before Illumina 1.8, the Phred scores 0 to 2 have a slightly different meaning. The values 0 and 1 are no longer used and the value 2, encoded by ASCII 66 "B", is used also at the end of reads as a Read Segment Quality Control Indicator. + qualillumina + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences) for SOLiD data. + + + For SOLiD data, the sequence is in color space, except the first position. The quality values are those of the Sanger format. + qualsolid + + + + + + + + + 1.11 + http://en.wikipedia.org/wiki/Phred_quality_score + FASTQ format subset for Phred sequencing quality score data only (no sequences) from 454 sequencers. + + + qual454 + + + + + + + + + 1.11 + + + Human ENCODE peak format. + + + Format that covers both the broad peak format and narrow peak format from ENCODE. + ENCODE peak format + + + + + + + + + 1.11 + + + Human ENCODE narrow peak format. + + + Format that covers both the broad peak format and narrow peak format from ENCODE. + ENCODE narrow peak format + + + + + + + + + 1.11 + + + Human ENCODE broad peak format. + + + ENCODE broad peak format + + + + + + + + + + 1.11 + + bgz + Blocked GNU Zip format. + + + BAM files are compressed using a variant of GZIP (GNU ZIP), into a format called BGZF (Blocked GNU Zip Format). + bgzip + + + + + + + + + + 1.11 + + + TAB-delimited genome position file index format. + + + tabix + + + + + + + + + 1.11 + true + Data format for graph data. + + + Graph format + + + + + + + + + 1.11 + + XML-based format used to store graph descriptions within Galaxy. + + + xgmml + + + + + + + + + 1.11 + + SIF (simple interaction file) Format - a network/pathway format used for instance in cytoscape. + + + sif + + + + + + + + + + 1.11 + MS Excel spreadsheet format consisting of a set of XML documents stored in a ZIP-compressed file. + + + xlsx + + + + + + + + + 1.11 + + Data format used by the SQLite database. + + + SQLite format + + + + + + + + + + 1.11 + + Data format used by the SQLite database conformant to the Gemini schema. + + + Gemini SQLite format + + + + + + + + + 1.11 + Duplicate of http://edamontology.org/format_3326 + 1.20 + + + Format of a data index of some type. + + + Index format + true + + + + + + + + + + 1.11 + An index of a genome database, indexed for use by the snpeff tool. + + + snpeffdb + + + + + + + + + + + + + + + 1.12 + + Binary format used by MATLAB files to store workspace variables. + .mat file format + MAT file format + MATLAB file format + + + MAT + + + + + + + + + + + 1.12 + + Format used by netCDF software library for writing and reading chromatography-MS data files. Also used to store trajectory atom coordinates information, such as the ones obtained by Molecular Dynamics simulations. + ANDI-MS + + + Network Common Data Form (NetCDF) library is supported by AMBER MD package from version 9. + netCDF + + + + + + + + + 1.12 + mgf + Mascot Generic Format. Encodes multiple MS/MS spectra in a single file. + + + Files includes *m*/*z*, intensity pairs separated by headers; headers can contain a bit more information, including search engine instructions. + MGF + + + + + + + + + 1.12 + Spectral data format file where each spectrum is written to a separate file. + + + Each file contains one header line for the known or assumed charge and the mass of the precursor peptide ion, calculated from the measured *m*/*z* and the charge. This one line was then followed by all the *m*/*z*, intensity pairs that represent the spectrum. + dta + + + + + + + + + 1.12 + Spectral data file similar to dta. + + + Differ from .dta only in subtleties of the header line format and content and support the added feature of being able to. + pkl + + + + + + + + + 1.12 + https://dx.doi.org/10.1038%2Fnbt1031 + Common file format for proteomics mass spectrometric data developed at the Seattle Proteome Center/Institute for Systems Biology. + + + mzXML + + + + + + + + + + 1.12 + http://sashimi.sourceforge.net/schema_revision/pepXML/pepXML_v118.xsd + Open data format for the storage, exchange, and processing of peptide sequence assignments of MS/MS scans, intended to provide a common data output format for many different MS/MS search engines and subsequent peptide-level analyses. + + + pepXML + + + + + + + + + + 1.12 + + Graphical Pathway Markup Language (GPML) is an XML format used for exchanging biological pathways. + + + GPML + + + + + + + + + + 1.12 + + oxlicg + + + + A list of k-mers and their occurrences in a dataset. Can also be used as an implicit De Bruijn graph. + K-mer countgraph + + + + + + + + + + + 1.13 + + + mzTab is a tab-delimited format for mass spectrometry-based proteomics and metabolomics results. + + + mzTab + + + + + + + + + + + 1.13 + + imzml + + imzML metadata is a data format for mass spectrometry imaging metadata. + + + imzML data are recorded in 2 files: '.imzXML' is a metadata XML file based on mzML by HUPO-PSI, and '.ibd' is a binary file containing the mass spectra. This entry is for the metadata XML file + imzML metadata file + + + + + + + + + + + 1.13 + + + qcML is an XML format for quality-related data of mass spectrometry and other high-throughput measurements. + + + The focus of qcML is towards mass spectrometry based proteomics, but the format is suitable for metabolomics and sequencing as well. + qcML + + + + + + + + + + + 1.13 + + + PRIDE XML is an XML format for mass spectra, peptide and protein identifications, and metadata about a corresponding measurement, sample, experiment. + + + PRIDE XML + + + + + + + + + + + + 1.13 + + + Simulation Experiment Description Markup Language (SED-ML) is an XML format for encoding simulation setups, according to the MIASE (Minimum Information About a Simulation Experiment) requirements. + + + SED-ML + + + + + + + + + + + + 1.13 + + + Open Modeling EXchange format (OMEX) is a ZIPped format for encapsulating all information necessary for a modeling and simulation project in systems biology. + + + An OMEX file is a ZIP container that includes a manifest file, listing the content of the archive, an optional metadata file adding information about the archive and its content, and the files describing the model. OMEX is one of the standardised formats within COMBINE (Computational Modeling in Biology Network). + COMBINE OMEX + + + + + + + + + + + 1.13 + + + The Investigation / Study / Assay (ISA) tab-delimited (TAB) format incorporates metadata from experiments employing a combination of technologies. + + + ISA-TAB is based on MAGE-TAB. Other than tabular, the ISA model can also be represented in RDF, and in JSON (compliable with a set of defined JSON Schemata). + ISA-TAB + + + + + + + + + + + 1.13 + + + SBtab is a tabular format for biochemical network models. + + + SBtab + + + + + + + + + + 1.13 + + + Biological Connection Markup Language (BCML) is an XML format for biological pathways. + + + BCML + + + + + + + + + + 1.13 + + + Biological Dynamics Markup Language (BDML) is an XML format for quantitative data describing biological dynamics. + + + BDML + + + + + + + + + 1.13 + + + Biological Expression Language (BEL) is a textual format for representing scientific findings in life sciences in a computable form. + + + BEL + + + + + + + + + + 1.13 + + + SBGN-ML is an XML format for Systems Biology Graphical Notation (SBGN) diagrams of biological pathways or networks. + + + SBGN-ML + + + + + + + + + + 1.13 + + agp + + AGP is a tabular format for a sequence assembly (a contig, a scaffold/supercontig, or a chromosome). + + + AGP + + + + + + + + + 1.13 + PostScript format. + PostScript + + + PS + + + + + + + + + 1.13 + + sra + SRA archive format (SRA) is the archive format used for input to the NCBI Sequence Read Archive. + SRA + SRA archive format + + + SRA format + + + + + + + + + 1.13 + + VDB ('vertical database') is the native format used for export from the NCBI Sequence Read Archive. + SRA native format + + + VDB + + + + + + + + + + + + + + + + 1.13 + + Index file format used by the samtools package to index TAB-delimited genome position files. + + + Tabix index file format + + + + + + + + + 1.13 + A five-column, tab-delimited table of feature locations and qualifiers for importing annotation into an existing Sequin submission (an NCBI tool for submitting and updating GenBank entries). + + + Sequin format + + + + + + + + + 1.14 + Proprietary mass-spectrometry format of Thermo Scientific's ProteomeDiscoverer software. + Magellan storage file format + + + This format corresponds to an SQLite database, and you can look into the files with e.g. SQLiteStudio3. There are also some readers (http://doi.org/10.1021/pr2005154) and converters (http://doi.org/10.1016/j.jprot.2015.06.015) for this format available, which re-engineered the database schema, but there is no official DB schema specification of Thermo Scientific for the format. + MSF + + + + + + + + + + + + + + + 1.14 + true + Data format for biodiversity data. + + + Biodiversity data format + + + + + + + + + + + + + + + 1.14 + + Exchange format of the Access to Biological Collections Data (ABCD) Schema; a standard for the access to and exchange of data about specimens and observations (primary biodiversity data). + ABCD + + + ABCD format + + + + + + + + + + 1.14 + Tab-delimited text files of GenePattern that contain a column for each sample, a row for each gene, and an expression value for each gene in each sample. + GCT format + Res format + + + GCT/Res format + + + + + + + + + + 1.14 + wiff + Mass spectrum file format from QSTAR and QTRAP instruments (ABI/Sciex). + wiff + + + WIFF format + + + + + + + + + + 1.14 + + Output format used by X! series search engines that is based on the XML language BIOML. + + + X!Tandem XML + + + + + + + + + + 1.14 + Proprietary file format for mass spectrometry data from Thermo Scientific. + + + Proprietary format for which documentation is not available. + Thermo RAW + + + + + + + + + + 1.14 + + "Raw" result file from Mascot database search. + + + Mascot .dat file + + + + + + + + + + 1.14 + + Format of peak list files from Andromeda search engine (MaxQuant) that consist of arbitrarily many spectra. + MaxQuant APL + + + MaxQuant APL peaklist format + + + + + + + + + 1.14 + + Synthetic Biology Open Language (SBOL) is an XML format for the specification and exchange of biological design information in synthetic biology. + + + SBOL introduces a standardised format for the electronic exchange of information on the structural and functional aspects of biological designs. + SBOL + + + + + + + + + 1.14 + + PMML uses XML to represent mining models. The structure of the models is described by an XML Schema. + + + One or more mining models can be contained in a PMML document. + PMML + + + + + + + + + + 1.14 + + Image file format used by the Open Microscopy Environment (OME). + + + An OME-TIFF dataset consists of one or more files in standard TIFF or BigTIFF format, with the file extension .ome.tif or .ome.tiff, and an identical (or in the case of multiple files, nearly identical) string of OME-XML metadata embedded in the ImageDescription tag of each file's first IFD (Image File Directory). BigTIFF file extensions are also permitted, with the file extension .ome.tf2, .ome.tf8 or .ome.btf, but note these file extensions are an addition to the original specification, and software using an older version of the specification may not be able to handle these file extensions. + OME develops open-source software and data format standards for the storage and manipulation of biological microscopy data. It is a joint project between universities, research establishments, industry and the software development community. + OME-TIFF + + + + + + + + + 1.14 + + The LocARNA PP format combines sequence or alignment information and (respectively, single or consensus) ensemble probabilities into an PP 2.0 record. + + + Format for multiple aligned or single sequences together with the probabilistic description of the (consensus) RNA secondary structure ensemble by probabilities of base pairs, base pair stackings, and base pairs and unpaired bases in the loop of base pairs. + LocARNA PP + + + + + + + + + 1.14 + + Input format used by the Database of Genotypes and Phenotypes (dbGaP). + + + The Database of Genotypes and Phenotypes (dbGaP) is a National Institutes of Health (NIH) sponsored repository charged to archive, curate and distribute information produced by studies investigating the interaction of genotype and phenotype. + dbGaP format + + + + + + + + + + + 1.15 + + biom + The BIological Observation Matrix (BIOM) is a format for representing biological sample by observation contingency tables in broad areas of comparative omics. The primary use of this format is to represent OTU tables and metagenome tables. + BIological Observation Matrix format + biom + + + BIOM is a recognised standard for the Earth Microbiome Project, and is a project supported by Genomics Standards Consortium. Supported in QIIME, Mothur, MEGAN, etc. + BIOM format + + + + + + + + + + 1.15 + + + A format for storage, exchange, and processing of protein identifications created from ms/ms-derived peptide sequence data. + + + No human-consumable information about this format is available (see http://tools.proteomecenter.org/wiki/index.php?title=Formats:protXML). + protXML + http://doi.org/10.1038/msb4100024 + http://sashimi.sourceforge.net/schema_revision/protXML/protXML_v3.xsd + + + + + + + + + + + 1.15 + true + A linked data format enables publishing structured data as linked data (Linked Data), so that the data can be interlinked and become more useful through semantic queries. + Semantic Web format + + + Linked data format + + + + + + + + + + + + 1.15 + + jsonld + + + JSON-LD, or JavaScript Object Notation for Linked Data, is a method of encoding Linked Data using JSON. + JavaScript Object Notation for Linked Data + jsonld + + + JSON-LD + + + + + + + + + + 1.15 + + yaml + yml + + YAML (YAML Ain't Markup Language) is a human-readable tree-structured data serialisation language. + YAML Ain't Markup Language + yml + + + Data in YAML format can be serialised into text, or binary format. + YAML version 1.2 is a superset of JSON; prior versions were "not strictly compatible". + YAML + + + + + + + + + + 1.16 + Tabular data represented as values in a text file delimited by some character. + Delimiter-separated values + Tabular format + + + DSV + + + + + + + + + + 1.16 + csv + + + + Tabular data represented as comma-separated values in a text file. + Comma-separated values + + + CSV + + + + + + + + + + 1.16 + out + "Raw" result file from SEQUEST database search. + + + SEQUEST .out file + + + + + + + + + + 1.16 + http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1IdXMLFile.html + http://open-ms.sourceforge.net/schemas/ + XML file format for files containing information about peptide identifications from mass spectrometry data analysis carried out with OpenMS. + + + idXML + + + + + + + + + 1.16 + Data table formatted such that it can be passed/streamed within the KNIME platform. + + + KNIME datatable format + + + + + + + + + + + 1.16 + + UniProtKB XML sequence features format is an XML format available for downloading UniProt entries. + UniProt XML + UniProt XML format + UniProtKB XML format + + + UniProtKB XML + + + + + + + + + + 1.16 + + UniProtKB RDF sequence features format is an RDF format available for downloading UniProt entries (in RDF/XML). + UniProt RDF + UniProt RDF format + UniProt RDF/XML + UniProt RDF/XML format + UniProtKB RDF format + UniProtKB RDF/XML + UniProtKB RDF/XML format + + + UniProtKB RDF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + + + + BioJSON is a BioXSD-schema-based JSON format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web applications and APIs, and object-oriented programming. + BioJSON (BioXSD data model) + BioJSON format (BioXSD) + BioXSD BioJSON + BioXSD BioJSON format + BioXSD JSON + BioXSD JSON format + BioXSD in JSON + BioXSD in JSON format + BioXSD+JSON + BioXSD/GTrack BioJSON + BioXSD|BioJSON|BioYAML BioJSON + BioXSD|GTrack BioJSON + + + Work in progress. 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioJSON' is the JSON format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'. + BioJSON (BioXSD) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + + + + BioYAML is a BioXSD-schema-based YAML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web APIs, human readability and editing, and object-oriented programming. + BioXSD BioYAML + BioXSD BioYAML format + BioXSD YAML + BioXSD YAML format + BioXSD in YAML + BioXSD in YAML format + BioXSD+YAML + BioXSD/GTrack BioYAML + BioXSD|BioJSON|BioYAML BioYAML + BioXSD|GTrack BioYAML + BioYAML (BioXSD data model) + BioYAML (BioXSD) + BioYAML format + BioYAML format (BioXSD) + + + Work in progress. 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioYAML' is the YAML format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'. + BioYAML + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + BioJSON is a JSON format of single multiple sequence alignments, with their annotations, features, and custom visualisation and application settings for the Jalview workbench. + BioJSON format (Jalview) + JSON (Jalview) + JSON format (Jalview) + Jalview BioJSON + Jalview BioJSON format + Jalview JSON + Jalview JSON format + + + BioJSON (Jalview) + + + + + + + + + + + + 1.16 + + + + + + + GSuite is a tabular format for collections of genome or sequence feature tracks, suitable for integrative multi-track analysis. GSuite contains links to genome/sequence tracks, with additional metadata. + BioXSD/GTrack GSuite + BioXSD|GTrack GSuite + GSuite (GTrack ecosystem of formats) + GSuite format + GTrack|BTrack|GSuite GSuite + GTrack|GSuite|BTrack GSuite + + + 'GSuite' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'GSuite' is the tabular format for an annotated collection of individual GTrack files. + GSuite + + + + + + + + + + + + + 1.16 + + BTrack is an HDF5-based binary format for genome or sequence feature tracks and their collections, suitable for integrative multi-track analysis. BTrack is a binary, compressed alternative to the GTrack and GSuite formats. + BTrack (GTrack ecosystem of formats) + BTrack format + BioXSD/GTrack BTrack + BioXSD|GTrack BTrack + GTrack|BTrack|GSuite BTrack + GTrack|GSuite|BTrack BTrack + + + 'BTrack' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'BTrack' is the binary, optionally compressed HDF5-based version of the GTrack and GSuite formats. + BTrack + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + + + + + + + + + + + The FAO/Bioversity/IPGRI Multi-Crop Passport Descriptors (MCPD) is an international standard format for exchange of germplasm information. + Bioversity MCPD + FAO MCPD + IPGRI MCPD + MCPD V.1 + MCPD V.2 + MCPD format + Multi-Crop Passport Descriptors + Multi-Crop Passport Descriptors format + + + Multi-Crop Passport Descriptors is a format available in 2 successive versions, V.1 (FAO/IPGRI 2001) and V.2 (FAO/Bioversity 2012). + MCPD + + + + + + + + + + + + + + + + 1.16 + true + Data format of an annotated text, e.g. with recognised entities, concepts, and relations. + + + Annotated text format + + + + + + + + + + + 1.16 + + + JSON format of annotated scientific text used by PubAnnotations and other tools. + + + PubAnnotation format + + + + + + + + + + + 1.16 + + + BioC is a standardised XML format for sharing and integrating text data and annotations. + + + BioC + + + + + + + + + + + + 1.16 + + + Native textual export format of annotated scientific text from PubTator. + + + PubTator format + + + + + + + + + + + 1.16 + + + A format of text annotation using the linked-data Open Annotation Data Model, serialised typically in RDF or JSON-LD. + + + Open Annotation format + + + + + + + + + + + 1.16 + + + + + + + + + + + + + A family of similar formats of text annotation, used by BRAT and other tools, known as BioNLP Shared Task format (BioNLP 2009 Shared Task on Event Extraction, BioNLP Shared Task 2011, BioNLP Shared Task 2013), BRAT format, BRAT standoff format, and similar. + BRAT format + BRAT standoff format + + + BioNLP Shared Task format + + + + + + + + + + + + + + + 1.16 + true + A query language (format) for structured database queries. + Query format + + + Query language + + + + + + + + + 1.16 + sql + + + + SQL (Structured Query Language) is the de-facto standard query language (format of queries) for querying and manipulating data in relational databases. + Structured Query Language + + + SQL + + + + + + + + + + 1.16 + + xq + xquery + xqy + + XQuery (XML Query) is a query language (format of queries) for querying and manipulating structured and unstructured data, usually in the form of XML, text, and with vendor-specific extensions for other data formats (JSON, binary, etc.). + XML Query + xq + xqy + + + XQuery + + + + + + + + + + 1.16 + + + SPARQL (SPARQL Protocol and RDF Query Language) is a semantic query language for querying and manipulating data stored in Resource Description Framework (RDF) format. + SPARQL Protocol and RDF Query Language + + + SPARQL + + + + + + + + + + 1.17 + XML format for XML Schema. + + + xsd + + + + + + + + + + 1.20 + + XMFA format stands for eXtended Multi-FastA format and is used to store collinear sub-alignments that constitute a single genome alignment. + eXtended Multi-FastA format + + + XMFA + + + + + + + + + + + 1.20 + + The GEN file format contains genetic data and describes SNPs. + Genotype file format + + + GEN + + + + + + + + + 1.20 + + The SAMPLE file format contains information about each individual i.e. individual IDs, covariates, phenotypes and missing data proportions, from a GWAS study. + + + SAMPLE file format + + + + + + + + + + 1.20 + + SDF is one of a family of chemical-data file formats developed by MDL Information Systems; it is intended especially for structural information. + + + SDF + + + + + + + + + + 1.20 + + An MDL Molfile is a file format for holding information about the atoms, bonds, connectivity and coordinates of a molecule. + + + Molfile + + + + + + + + + + 1.20 + + Complete, portable representation of a SYBYL molecule. ASCII file which contains all the information needed to reconstruct a SYBYL molecule. + + + Mol2 + + + + + + + + + + 1.20 + + format for the LaTeX document preparation system. + LaTeX format + + + uses the TeX typesetting program format + latex + + + + + + + + + + 1.20 + + Tab-delimited text file format used by Eland - the read-mapping program distributed by Illumina with its sequencing analysis pipeline - which maps short Solexa sequence reads to the human reference genome. + ELAND + eland + + + ELAND format + + + + + + + + + 1.20 + + + Phylip multiple alignment sequence format, less stringent than PHYLIP format. + PHYLIP Interleaved format + + + It differs from Phylip Format (format_1997) on length of the ID sequence. There no length restrictions on the ID, but whitespaces aren't allowed in the sequence ID/Name because one space separates the longest ID and the beginning of the sequence. Sequences IDs must be padded to the longest ID length. + Relaxed PHYLIP Interleaved + + + + + + + + + 1.20 + + + Phylip multiple alignment sequence format, less stringent than PHYLIP sequential format (format_1998). + Relaxed PHYLIP non-interleaved + Relaxed PHYLIP non-interleaved format + Relaxed PHYLIP sequential format + + + It differs from Phylip sequential format (format_1997) on length of the ID sequence. There no length restrictions on the ID, but whitespaces aren't allowed in the sequence ID/Name because one space separates the longest ID and the beginning of the sequence. Sequences IDs must be padded to the longest ID length. + Relaxed PHYLIP Sequential + + + + + + + + + + 1.20 + + Default XML format of VisANT, containing all the network information. + VisANT xml + VisANT xml format + + + VisML + + + + + + + + + + 1.20 + + GML (Graph Modeling Language) is a text file format supporting network data with a very easy syntax. It is used by Graphlet, Pajek, yEd, LEDA and NetworkX. + GML format + + + GML + + + + + + + + + + 1.20 + + + FASTG is a format for faithfully representing genome assemblies in the face of allelic polymorphism and assembly uncertainty. + FASTG assembly graph format + + + It is called FASTG, like FASTA, but the G stands for "graph". + FASTG + + + + + + + + + + + + + + + 1.20 + true + Data format for raw data from a nuclear magnetic resonance (NMR) spectroscopy experiment. + NMR peak assignment data format + NMR processed data format + NMR raw data format + Nuclear magnetic resonance spectroscopy data format + Processed NMR data format + Raw NMR data format + + + NMR data format + + + + + + + + + + 1.20 + + + nmrML is an MSI supported XML-based open access format for metabolomics NMR raw and processed spectral data. It is accompanies by an nmrCV (controlled vocabulary) to allow ontology-based annotations. + + + nmrML + + + + + + + + + + + 1.20 + + . proBAM is an adaptation of BAM (format_2572), which was extended to meet specific requirements entailed by proteomics data. + + + proBAM + + + + + + + + + + 1.20 + + . proBED is an adaptation of BED (format_3003), which was extended to meet specific requirements entailed by proteomics data. + + + proBED + + + + + + + + + + + + + + + 1.20 + true + Data format for raw microarray data. + Microarray data format + + + Raw microarray data format + + + + + + + + + + 1.20 + + GenePix Results (GPR) text file format developed by Axon Instruments that is used to save GenePix Results data. + + + GPR + + + + + + + + + + 1.20 + Binary format used by the ARB software suite. + ARB binary format + + + ARB + + + + + + + + + + 1.20 + http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1ConsensusXMLFile.html + OpenMS format for grouping features in one map or across several maps. + + + consensusXML + + + + + + + + + + 1.20 + http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1FeatureXMLFile.html + OpenMS format for quantitation results (LC/MS features). + + + featureXML + + + + + + + + + + 1.20 + http://www.psidev.info/mzdata-1_0_5-docs + Now deprecated data format of the HUPO Proteomics Standards Initiative. Replaced by mzML (format_3244). + + + mzData + + + + + + + + + + 1.20 + http://cruxtoolkit.sourceforge.net/tide-search.html + Format supported by the Tide tool for identifying peptides from tandem mass spectra. + + + TIDE TXT + + + + + + + + + + 1.20 + ftp://ftp.ncbi.nlm.nih.gov/blast/documents/NEWXML/ProposedBLASTXMLChanges.pdf + ftp://ftp.ncbi.nlm.nih.gov/blast/documents/NEWXML/xml2.pdf + http://www.ncbi.nlm.nih.gov/data_specs/schema/NCBI_BlastOutput2.mod.xsd + XML format as produced by the NCBI Blast package v2. + + + BLAST XML v2 results format + + + + + + + + + + 1.20 + + + Microsoft Powerpoint format. + + + pptx + + + + + + + + + + + 1.20 + + ibd + + ibd is a data format for mass spectrometry imaging data. + + + imzML data is recorded in 2 files: '.imzXML' is a metadata XML file based on mzML by HUPO-PSI, and '.ibd' is a binary file containing the mass spectra. + ibd + + + + + + + + + 1.21 + Data format used in Natural Language Processing. + Natural Language Processing format + + + NLP format + + + + + + + + + + 1.21 + + XML input file format for BEAST Software (Bayesian Evolutionary Analysis Sampling Trees). + + + BEAST + + + + + + + + + + 1.21 + + Chado-XML format is a direct mapping of the Chado relational schema into XML. + + + Chado-XML + + + + + + + + + + 1.21 + + An alignment format generated by PRANK/PRANKSTER consisting of four elements: newick, nodes, selection and model. + + + HSAML + + + + + + + + + + 1.21 + + Output xml file from the InterProScan sequence analysis application. + + + InterProScan XML + + + + + + + + + + 1.21 + + The KEGG Markup Language (KGML) is an exchange format of the KEGG pathway maps, which is converted from internally used KGML+ (KGML+SVG) format. + KEGG Markup Language + + + KGML + + + + + + + + + + 1.21 + XML format for collected entries from bibliographic databases MEDLINE and PubMed. + MEDLINE XML + + + PubMed XML + + + + + + + + + + 1.21 + + A set of XML compliant markup components for describing multiple sequence alignments. + + + MSAML + + + + + + + + + + + 1.21 + + OrthoXML is designed broadly to allow the storage and comparison of orthology data from any ortholog database. It establishes a structure for describing orthology relationships while still allowing flexibility for database-specific information to be encapsulated in the same format. + + + OrthoXML + + + + + + + + + + 1.21 + + Tree structure of Protein Sequence Database Markup Language generated using Matra software. + + + PSDML + + + + + + + + + + 1.21 + + SeqXML is an XML Schema to describe biological sequences, developed by the Stockholm Bioinformatics Centre. + + + SeqXML + + + + + + + + + + 1.21 + + XML format for the UniParc database. + + + UniParc XML + + + + + + + + + + 1.21 + + XML format for the UniRef reference clusters. + + + UniRef XML + + + + + + + + + + + 1.21 + + + + + cwl + + + + Common Workflow Language (CWL) format for description of command-line tools and workflows. + Common Workflow Language + CommonWL + + + CWL + + + + + + + + + + 1.21 + Proprietary file format for mass spectrometry data from Waters. + + + Proprietary format for which documentation is not available, but used by multiple tools. + Waters RAW + + + + + + + + + + 1.21 + + A standardized file format for data exchange in mass spectrometry, initially developed for infrared spectrometry. + + + JCAMP-DX is an ASCII based format and therefore not very compact even though it includes standards for file compression. + JCAMP-DX + + + + + + + + + + 1.21 + An NLP format used for annotated textual documents. + + + NLP annotation format + + + + + + + + + 1.21 + NLP format used by a specific type of corpus (collection of texts). + + + NLP corpus format + + + + + + + + + + + 1.21 + + + + mirGFF3 is a common format for microRNA data resulting from small-RNA RNA-Seq workflows. + miRTop format + + + mirGFF3 is a specialisation of GFF3; produced by small-RNA-Seq analysis workflows, usable and convertible with the miRTop API (https://mirtop.readthedocs.io/en/latest/), and consumable by tools for downstream analysis. + mirGFF3 + + + + + + + + + 1.21 + A "placeholder" concept for formats of annotated RNA data, including e.g. microRNA and RNA-Seq data. + RNA data format + miRNA data format + microRNA data format + + + RNA annotation format + + + + + + + + + + + + + + + 1.22 + true + File format to store trajectory information for a 3D structure . + CG trajectory formats + MD trajectory formats + NA trajectory formats + Protein trajectory formats + + + Formats differ on what they are able to store (coordinates, velocities, topologies) and how they are storing it (raw, compressed, textual, binary). + Trajectory format + + + + + + + + + 1.22 + true + Binary file format to store trajectory information for a 3D structure . + + + Trajectory format (binary) + + + + + + + + + 1.22 + true + Textual file format to store trajectory information for a 3D structure . + + + Trajectory format (text) + + + + + + + + + + 1.22 + HDF is the name of a set of file formats and libraries designed to store and organize large amounts of numerical data, originally developed at the National Center for Supercomputing Applications at the University of Illinois. + + + HDF is currently supported by many commercial and non-commercial software platforms such as Java, MATLAB/Scilab, Octave, Python and R. + HDF + + + + + + + + + + 1.22 + PCAZip format is a binary compressed file to store atom coordinates based on Essential Dynamics (ED) and Principal Component Analysis (PCA). + + + The compression is made projecting the Cartesian snapshots collected along the trajectory into an orthogonal space defined by the most relevant eigenvectors obtained by diagonalization of the covariance matrix (PCA). In the compression/decompression process, part of the original information is lost, depending on the final number of eigenvectors chosen. However, with a reasonable choice of the set of eigenvectors the compression typically reduces the trajectory file to less than one tenth of their original size with very acceptable loss of information. Compression with PCAZip can only be applied to unsolvated structures. + PCAzip + + + + + + + + + + 1.22 + Portable binary format for trajectories produced by GROMACS package. + + + XTC uses the External Data Representation (xdr) routines for writing and reading data which were created for the Unix Network File System (NFS). XTC files use a reduced precision (lossy) algorithm which works multiplying the coordinates by a scaling factor (typically 1000), so converting them to pm (GROMACS standard distance unit is nm). This allows an integer rounding of the values. Several other tricks are performed, such as making use of atom proximity information: atoms close in sequence are usually close in space (e.g. water molecules). That makes XTC format the most efficient in terms of disk usage, in most cases reducing by a factor of 2 the size of any other binary trajectory format. + XTC + + + + + + + + + + 1.22 + Trajectory Next Generation (TNG) is a format for storage of molecular simulation data. It is designed and implemented by the GROMACS development group, and it is called to be the substitute of the XTC format. + Trajectory Next Generation format + + + Fully architecture-independent format, regarding both endianness and the ability to mix single/double precision trajectories and I/O libraries. Self-sufficient, it should not require any other files for reading, and all the data should be contained in a single file for easy transport. Temporal compression of data, improving the compression rate of the previous XTC format. Possibility to store meta-data with information about the simulation. Direct access to a particular frame. Efficient parallel I/O. + TNG + + + + + + + + + + + 1.22 + The XYZ chemical file format is widely supported by many programs, although many slightly different XYZ file formats coexist (Tinker XYZ, UniChem XYZ, etc.). Basic information stored for each atom in the system are x, y and z coordinates and atom element/atomic number. + + + XYZ files are structured in this way: First line contains the number of atoms in the file. Second line contains a title, comment, or filename. Remaining lines contain atom information. Each line starts with the element symbol, followed by x, y and z coordinates in angstroms separated by whitespace. Multiple molecules or frames can be contained within one file, so it supports trajectory storage. XYZ files can be directly represented by a molecular viewer, as they contain all the basic information needed to build the 3D model. + XYZ + + + + + + + + + + + 1.22 + + AMBER trajectory (also called mdcrd), with 10 coordinates per line and format F8.3 (fixed point notation with field width 8 and 3 decimal places). + AMBER trajectory format + inpcrd + + + mdcrd + + + + + + + + + + + + + + + 1.22 + true + Format of topology files; containing the static information of a structure molecular system that is needed for a molecular simulation. + CG topology format + MD topology format + NA topology format + Protein topology format + + + Many different file formats exist describing structural molecular topology. Typically, each MD package or simulation software works with their own implementation (e.g. GROMACS top, CHARMM psf, AMBER prmtop). + Topology format + + + + + + + + + + + 1.22 + + GROMACS MD package top textual files define an entire structure system topology, either directly, or by including itp files. + + + There is currently no tool available for conversion between GROMACS topology format and other formats, due to the internal differences in both approaches. There is, however, a method to convert small molecules parameterized with AMBER force-field into GROMACS format, allowing simulations of these systems with GROMACS MD package. + GROMACS top + + + + + + + + + + + 1.22 + + AMBER Prmtop file (version 7) is a structure topology text file divided in several sections designed to be parsed easily using simple Fortran code. Each section contains particular topology information, such as atom name, charge, mass, angles, dihedrals, etc. + AMBER Parm + AMBER Parm7 + Parm7 + Prmtop + Prmtop7 + + + It can be modified manually, but as the size of the system increases, the hand-editing becomes increasingly complex. AMBER Parameter-Topology file format is used extensively by the AMBER software suite and is referred to as the Prmtop file for short. + version 7 is written to distinguish it from old versions of AMBER Prmtop. Similarly to HDF5, it is a completely different format, according to AMBER group: a drastic change to the file format occurred with the 2004 release of Amber 7 (http://ambermd.org/prmtop.pdf) + AMBER top + + + + + + + + + + + 1.22 + + X-Plor Protein Structure Files (PSF) are structure topology files used by NAMD and CHARMM molecular simulations programs. PSF files contain six main sections of interest: atoms, bonds, angles, dihedrals, improper dihedrals (force terms used to maintain planarity) and cross-terms. + + + The high similarity in the functional form of the two potential energy functions used by AMBER and CHARMM force-fields gives rise to the possible use of one force-field within the other MD engine. Therefore, the conversion of PSF files to AMBER Prmtop format is possible with the use of AMBER chamber (CHARMM - AMBER) program. + PSF + + + + + + + + + + + + 1.22 + + GROMACS itp files (include topology) contain structure topology information, and are typically included in GROMACS topology files (GROMACS top). Itp files are used to define individual (or multiple) components of a topology as a separate file. This is particularly useful if there is a molecule that is used frequently, and also reduces the size of the system topology file, splitting it in different parts. + + + GROMACS itp files are used also to define position restrictions on the molecule, or to define the force field parameters for a particular ligand. + GROMACS itp + + + + + + + + + + + + + + + 1.22 + Format of force field parameter files, which store the set of parameters (charges, masses, radii, bond lengths, bond dihedrals, etc.) that are essential for the proper description and simulation of a molecular system. + Many different file formats exist describing force field parameters. Typically, each MD package or simulation software works with their own implementation (e.g. GROMACS itp, CHARMM rtf, AMBER off / frcmod). + FF parameter format + + + + + + + + + + 1.22 + Scripps Research Institute BinPos format is a binary formatted file to store atom coordinates. + Scripps Research Institute BinPos + + + It is basically a translation of the ASCII atom coordinate format to binary code. The only additional information stored is a magic number that identifies the BinPos format and the number of atoms per snapshot. The remainder is the chain of coordinates binary encoded. A drawback of this format is its architecture dependency. Integers and floats codification depends on the architecture, thus it needs to be converted if working in different platforms (little endian, big endian). + BinPos + + + + + + + + + + + 1.22 + + AMBER coordinate/restart file with 6 coordinates per line and decimal format F12.7 (fixed point notation with field width 12 and 7 decimal places). + restrt + rst7 + + + RST + + + + + + + + + + + 1.22 + Format of CHARMM Residue Topology Files (RTF), which define groups by including the atoms, the properties of the group, and bond and charge information. + + + There is currently no tool available for conversion between GROMACS topology format and other formats, due to the internal differences in both approaches. There is, however, a method to convert small molecules parameterized with AMBER force-field into GROMACS format, allowing simulations of these systems with GROMACS MD package. + CHARMM rtf + + + + + + + + + + 1.22 + + AMBER frcmod (Force field Modification) is a file format to store any modification to the standard force field needed for a particular molecule to be properly represented in the simulation. + + + AMBER frcmod + + + + + + + + + + 1.22 + + AMBER Object File Format library files (OFF library files) store residue libraries (forcefield residue parameters). + AMBER Object File Format + AMBER lib + AMBER off + + + + + + + + + + 1.22 + MReData is a text based data standard for processed NMR data. It is relying on SDF molecule data and allows to store assignments of NMR peaks to molecule features. The NMR-extracted data (or "NMReDATA") includes: Chemical shift,scalar coupling, 2D correlation, assignment, etc. + + + NMReData is a text based data standard for processed NMR data. It is relying on SDF molecule data and allows to store assignments of NMR peaks to molecule features. The NMR-extracted data (or "NMReDATA") includes: Chemical shift,scalar coupling, 2D correlation, assignment, etc. Find more in the paper at https://doi.org/10.1002/mrc.4527. + NMReDATA + + + + + + + + + + + + + + + + + + 1.22 + + + + + BpForms is a string format for concretely representing the primary structures of biopolymers, including DNA, RNA, and proteins that include non-canonical nucleic and amino acids. See https://www.bpforms.org for more information. + + + BpForms + + + + + + + + + + + 1.22 + + Format of trr files that contain the trajectory of a simulation experiment used by GROMACS. + The first 4 bytes of any trr file containing 1993. See https://github.com/galaxyproject/galaxy/pull/6597/files#diff-409951594551183dbf886e24de6cb129R760 + trr + + + + + + + + + + + + + + + + 1.22 + + + + + + msh + + + + Mash sketch is a format for sequence / sequence checksum information. To make a sketch, each k-mer in a sequence is hashed, which creates a pseudo-random identifier. By sorting these hashes, a small subset from the top of the sorted list can represent the entire sequence. + Mash sketch + min-hash sketch + + + msh + + + + + + + + + + + + + + + + + + + + + + 1.23 + + + + loom + The Loom file format is based on HDF5, a standard for storing large numerical datasets. The Loom format is designed to efficiently hold large omics datasets. Typically, such data takes the form of a large matrix of numbers, along with metadata for the rows and columns. + Loom + + + + + + + + + + + + + + + + + + + + + + + 1.23 + + + + zarray + zgroup + The Zarr format is an implementation of chunked, compressed, N-dimensional arrays for storing data. + Zarr + + + + + + + + + + + + + + + + + + + + + + + 1.23 + + + mtx + + The Matrix Market matrix (MTX) format stores numerical or pattern matrices in a dense (array format) or sparse (coordinate format) representation. + MTX + + + + + + + + + + + 1.24 + + + + + + text/plain + + + BcForms is a format for abstractly describing the molecular structure (atoms and bonds) of macromolecular complexes as a collection of subunits and crosslinks. Each subunit can be described with BpForms (http://edamontology.org/format_3909) or SMILES (http://edamontology.org/data_2301). BcForms uses an ontology of crosslinks to abstract the chemical details of crosslinks from the descriptions of complexes (see https://bpforms.org/crosslink.html). + BcForms is related to http://edamontology.org/format_3909. (BcForms uses BpForms to describe subunits which are DNA, RNA, or protein polymers.) However, that format isn't the parent of BcForms. BcForms is similarly related to SMILES (http://edamontology.org/data_2301). + BcForms + + + + + + + + + + 1.24 + + nq + N-Quads is a line-based, plain text format for encoding an RDF dataset. It includes information about the graph each triple belongs to. + + + N-Quads should not be confused with N-Triples which does not contain graph information. + N-Quads + + + + + + + + + + 1.25 + + + + + json + application/json + + Vega is a visualization grammar, a declarative language for creating, saving, and sharing interactive visualization designs. With Vega, you can describe the visual appearance and interactive behavior of a visualization in a JSON format, and generate web-based views using Canvas or SVG. + + + Vega + + + + + + + + + + 1.25 + + + + + json + application/json + + Vega-Lite is a high-level grammar of interactive graphics. It provides a concise JSON syntax for rapidly generating visualizations to support analysis. Vega-Lite specifications can be compiled to Vega specifications. + + + Vega-lite + + + + + + + + + + + + + + + + 1.25 + + + + + application/xml + + A model description language for computational neuroscience. + + + NeuroML + + + + + + + + + + + + + + + + 1.25 + + + + + bngl + application/xml + plain/text + + BioNetGen is a format for the specification and simulation of rule-based models of biochemical systems, including signal transduction, metabolic, and genetic regulatory networks. + BioNetGen Language + + + BNGL + + + + + + + + + 1.25 + + + + A Docker image is a file, comprised of multiple layers, that is used to execute code in a Docker container. An image is essentially built from the instructions for a complete and executable version of an application, which relies on the host OS kernel. + + + Docker image + + + + + + + + + + + 1.25 + + + gfa + + Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology. + Graphical Fragment Assembly (GFA) 1.0 + + + GFA 1 + + + + + + + + + + + 1.25 + + + gfa + + Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology. GFA2 is an update of GFA1 which is not compatible with GFA1. + Graphical Fragment Assembly (GFA) 2.0 + + + GFA 2 + + + + + + + + + + 1.25 + + + xlsx + application/vnd.openxmlformats-officedocument.spreadsheetml.sheet + + ObjTables is a toolkit for creating re-usable datasets that are both human and machine-readable, combining the ease of spreadsheets (e.g., Excel workbooks) with the rigor of schemas (classes, their attributes, the type of each attribute, and the possible relationships between instances of classes). ObjTables consists of a format for describing schemas for spreadsheets, numerous data types for science, a syntax for indicating the class and attribute represented by each table and column in a workbook, and software for using schemas to rigorously validate, merge, split, compare, and revision datasets. + + + ObjTables + + + + + + + + + + 1.25 + contig + The CONTIG format used for output of the SOAPdenovo alignment program. It contains contig sequences generated without using mate pair information. + + + CONTIG + + + + + + + + + + 1.25 + wego + WEGO native format used by the Web Gene Ontology Annotation Plot application. Tab-delimited format with gene names and others GO IDs (columns) with one annotation record per line. + + + WEGO + + + + + + + + + + 1.25 + rpkm + Tab-delimited format for gene expression levels table, calculated as Reads Per Kilobase per Million (RPKM) mapped reads. + Gene expression levels table format + + + For example a 1kb transcript with 1000 alignments in a sample of 10 million reads (out of which 8 million reads can be mapped) will have RPKM = 1000/(1 * 8) = 125 + RPKM + + + + + + + + + 1.25 + tar + TAR archive file format generated by the Unix-based utility tar. + TAR + Tarball + tar + + + For example a 1kb transcript with 1000 alignments in a sample of 10 million reads (out of which 8 million reads can be mapped) will have RPKM = 1000/(1 * 8) = 125 + TAR format + + + + + + + + + + + 1.25 + chain + The CHAIN format describes a pairwise alignment that allow gaps in both sequences simultaneously and is used by the UCSC Genome Browser. + + + CHAIN + https://genome.ucsc.edu/goldenPath/help/chain.html + + + + + + + + + + 1.25 + net + The NET file format is used to describe the data that underlie the net alignment annotations in the UCSC Genome Browser. + + + NET + https://genome.ucsc.edu/goldenPath/help/net.html + + + + + + + + + + 1.25 + qmap + Format of QMAP files generated for methylation data from an internal BGI pipeline. + + + QMAP + + + + + + + + + + 1.25 + ga + An emerging format for high-level Galaxy workflow description. + Galaxy workflow format + GalaxyWF + ga + + + gxformat2 + https://github.com/galaxyproject/gxformat2 + + + + + + + + + + 1.25 + wmv + The proprietary native video format of various Microsoft programs such as Windows Media Player. + Windows Media Video format + Windows movie file format + + + WMV + + + + + + + + + + 1.25 + zip + ZIP is an archive file format that supports lossless data compression. + ZIP + + + A ZIP file may contain one or more files or directories that may have been compressed. + ZIP format + + + + + + + + + + + 1.25 + lsm + Zeiss' proprietary image format based on TIFF. + + + LSM files are the default data export for the Zeiss LSM series confocal microscopes (e.g. LSM 510, LSM 710). In addition to the image data, LSM files contain most imaging settings. + LSM + + + + + + + + + 1.25 + gz + gzip + GNU zip compressed file format common to Unix-based operating systems. + GNU Zip + gz + gzip + + + GZIP format + + + + + + + + + + + 1.25 + avi + Audio Video Interleaved (AVI) format is a multimedia container format for AVI files, that allows synchronous audio-with-video playback. + Audio Video Interleaved + + + AVI + + + + + + + + + + + 1.25 + trackdb + A declaration file format for UCSC browsers track dataset display charateristics. + + + TrackDB + + + + + + + + + + 1.25 + cigar + Compact Idiosyncratic Gapped Alignment Report format is a compressed (run-length encoded) pairwise alignment format. It is useful for representing long (e.g. genomic) pairwise alignments. + CIGAR + + + CIGAR format + http://wiki.bits.vib.be/index.php/CIGAR/ + + + + + + + + + + 1.25 + stl + STL is a file format native to the stereolithography CAD software created by 3D Systems. The format is used to save and share surface-rendered 3D images and also for 3D printing. + stl + + + Stereolithography format + + + + + + + + + + 1.25 + u3d + U3D (Universal 3D) is a compressed file format and data structure for 3D computer graphics. It contains 3D model information such as triangle meshes, lighting, shading, motion data, lines and points with color and structure. + Universal 3D + Universal 3D format + + + U3D + + + + + + + + + + 1.25 + tex + Bitmap image format used for storing textures. + + + Texture files can create the appearance of different surfaces and can be applied to both 2D and 3D objects. Note the file extension .tex is also used for LaTex documents which are a completely different format and they are NOT interchangeable. + Texture file format + + + + + + + + + + 1.25 + py + Format for scripts writtenin Python - a widely used high-level programming language for general-purpose programming. + Python + Python program + py + + + Python script + + + + + + + + + + 1.25 + mp4 + A digital multimedia container format most commonly used to store video and audio. + MP4 + + + MPEG-4 + + + + + + + + + + + 1.25 + pl + Format for scripts written in Perl - a family of high-level, general-purpose, interpreted, dynamic programming languages. + Perl + Perl program + pl + + + Perl script + + + + + + + + + + 1.25 + r + Format for scripts written in the R language - an open source programming language and software environment for statistical computing and graphics that is supported by the R Foundation for Statistical Computing. + R + R program + + + R script + + + + + + + + + + 1.25 + rmd + A file format for making dynamic documents (R Markdown scripts) with the R language. + + + R markdown + https://rmarkdown.rstudio.com/articles_intro.html + + + + + + + + + 1.25 + This duplicates an existing concept (http://edamontology.org/format_3549). + 1.26 + + An open file format from the Neuroimaging Informatics Technology Initiative (NIfTI) commonly used to store brain imaging data obtained using Magnetic Resonance Imaging (MRI) methods. + + + NIFTI format + true + + + + + + + + + 1.25 + pickle + Format used by Python pickle module for serializing and de-serializing a Python object structure. + + + pickle + https://docs.python.org/2/library/pickle.html + + + + + + + + + 1.25 + npy + The standard binary file format used by NumPy - a fundamental package for scientific computing with Python - for persisting a single arbitrary NumPy array on disk. The format stores all of the shape and dtype information necessary to reconstruct the array correctly. + NumPy + npy + + + NumPy format + + + + + + + + + 1.25 + repz + Format of repertoire (archive) files that can be read by SimToolbox (a MATLAB toolbox for structured illumination fluorescence microscopy) or alternatively extracted with zip file archiver software. + + + SimTools repertoire file format + https://pdfs.semanticscholar.org/5f25/f1cc6cdf2225fe22dc6fd4fc0296d486a85c.pdf + + + + + + + + + 1.25 + cfg + A configuration file used by various programs to store settings that are specific to their respective software. + + + Configuration file format + + + + + + + + + 1.25 + zst + Format used by the Zstandard real-time compression algorithm. + Zstandard compression format + Zstandard-compressed file format + zst + + + Zstandard format + https://github.com/facebook/zstd/blob/master/doc/zstd_compression_format.md + + + + + + + + + + 1.25 + m + The file format for MATLAB scripts or functions. + MATLAB + m + + + MATLAB script + + + + + + + + + + + + + + + + 1.26 + + + + A data format for specifying parameter estimation problems in systems biology. + + + PEtab + + + + + + + + + + 1.26 + + + g.vcf + g.vcf.gz + Genomic Variant Call Format (gVCF) is a version of VCF that includes not only the positions that are variant when compared to a reference genome, but also the non-variant positions as ranges, including metrics of confidence that the positions in the range are actually non-variant e.g. minimum read-depth and genotype quality. + g.vcf + g.vcf.gz + + + gVCF + + + + + + + + + + + + + + 1.26 + + + cml + + Chemical Markup Language (CML) is an XML-based format for encoding detailed information about a wide range of chemical concepts. + ChemML + + + cml + + + + + + + + + + + + + + + + + + + 1.26 + + + cif + + Crystallographic Information File (CIF) is a data exchange standard file format for Crystallographic Information and related Structural Science data. + + + cif + + + + + + + + + + + + + 1.26 + + + json + + + + + + + + + + Format for describing the capabilities of a biosimulation tool including the modeling frameworks, simulation algorithms, and modeling formats that it supports, as well as metadata such as a list of the interfaces, programming languages, and operating systems supported by the tool; a link to download the tool; a list of the authors of the tool; and the license to the tool. + + + BioSimulators format for the specifications of biosimulation tools + + + + + + + + + + 1.26 + + + + Outlines the syntax and semantics of the input and output arguments for command-line interfaces for biosimulation tools. + + + BioSimulators standard for command-line interfaces for biosimulation tools + + + + + + + + + + 1.26 + Data format derived from the standard PDB format, which enables user to incorporate parameters for charge and radius to the existing PDB data file. + + + PQR + + + + + + + + + + + 1.26 + Data format used in AutoDock 4 for storing atomic coordinates, partial atomic charges and AutoDock atom types for both receptors and ligands. + + + PDBQT + + + + + + + + + + + + 1.26 + + + msp + MSP is a data format for mass spectrometry data. + + + NIST Text file format for storing MS∕MS spectra (m∕z and intensity of mass peaks) along with additional annotations for each spectrum. A single MSP file can thus contain single or multiple spectra. This format is frequently used to share spectra libraries. + MSP + + + + + + + + + + beta12orEarlier + true + Function + A function that processes a set of inputs and results in a set of outputs, or associates arguments (inputs) with values (outputs). + Computational method + Computational operation + Computational procedure + Computational subroutine + Function (programming) + Lambda abstraction + Mathematical function + Mathematical operation + Computational tool + Process + sumo:Function + + + Special cases are: a) An operation that consumes no input (has no input arguments). Such operation is either a constant function, or an operation depending only on the underlying state. b) An operation that may modify the underlying state but has no output. c) The singular-case operation with no input or output, that still may modify the underlying state. + Operation + + + + + + + + + + + + + + + + + + + + + + + Function + Operation is a function that is computational. It typically has input(s) and output(s), which are always data. + + + + + Computational tool + Computational tool provides one or more operations. + + + + + Process + Process can have a function (as its quality/attribute), and can also perform an operation with inputs and outputs. + + + + + + + + + beta12orEarlier + Search or query a data resource and retrieve entries and / or annotation. + Database retrieval + Query + + + Query and retrieval + + + + + + + + + beta12orEarlier + beta13 + + + Search database to retrieve all relevant references to a particular entity or entry. + + Data retrieval (database cross-reference) + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Annotate an entity (typically a biological or biomedical database entity) with terms from a controlled vocabulary. + + + This is a broad concept and is used a placeholder for other, more specific concepts. + Annotation + + + + + + + + + + + + + + + beta12orEarlier + true + Generate an index of (typically a file of) biological data. + Data indexing + Database indexing + + + Indexing + + + + + + + + + beta12orEarlier + 1.6 + + + Analyse an index of biological data. + + Data index analysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Retrieve basic information about a molecular sequence. + + Annotation retrieval (sequence) + true + + + + + + + + + + beta12orEarlier + Generate a molecular sequence by some means. + Sequence generation (nucleic acid) + Sequence generation (protein) + + + Sequence generation + + + + + + + + + + beta12orEarlier + Edit or change a molecular sequence, either randomly or specifically. + + + Sequence editing + + + + + + + + + beta12orEarlier + Merge two or more (typically overlapping) molecular sequences. + Sequence splicing + Paired-end merging + Paired-end stitching + Read merging + Read stitching + + + Sequence merging + + + + + + + + + + beta12orEarlier + Convert a molecular sequence from one type to another. + + + Sequence conversion + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate sequence complexity, for example to find low-complexity regions in sequences. + + + Sequence complexity calculation + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate sequence ambiguity, for example identity regions in protein or nucleotide sequences with many ambiguity codes. + + + Sequence ambiguity calculation + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate character or word composition or frequency of a molecular sequence. + + + Sequence composition calculation + + + + + + + + + + + + + + + beta12orEarlier + Find and/or analyse repeat sequences in (typically nucleotide) sequences. + + + Repeat sequences include tandem repeats, inverted or palindromic repeats, DNA microsatellites (Simple Sequence Repeats or SSRs), interspersed repeats, maximal duplications and reverse, complemented and reverse complemented repeats etc. Repeat units can be exact or imperfect, in tandem or dispersed, of specified or unspecified length. + Repeat sequence analysis + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Discover new motifs or conserved patterns in sequences or sequence alignments (de-novo discovery). + Motif discovery + + + Motifs and patterns might be conserved or over-represented (occur with improbable frequency). + Sequence motif discovery + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Find (scan for) known motifs, patterns and regular expressions in molecular sequence(s). + Motif scanning + Sequence signature detection + Sequence signature recognition + Motif detection + Motif recognition + Motif search + Sequence motif detection + Sequence motif search + Sequence profile search + + + Sequence motif recognition + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Find motifs shared by molecular sequences. + + + Sequence motif comparison + + + + + + + + + beta12orEarlier + beta13 + + + Analyse the sequence, conformational or physicochemical properties of transcription regulatory elements in DNA sequences. + + For example transcription factor binding sites (TFBS) analysis to predict accessibility of DNA to binding factors. + Transcription regulatory sequence analysis + true + + + + + + + + + beta12orEarlier + 1.19 + + Identify common, conserved (homologous) or synonymous transcriptional regulatory motifs (transcription factor binding sites). + + + Conserved transcription regulatory sequence identification + true + + + + + + + + + beta12orEarlier + 1.18 + + + Extract, calculate or predict non-positional (physical or chemical) properties of a protein from processing a protein (3D) structure. + + + Protein property calculation (from structure) + true + + + + + + + + + beta12orEarlier + Analyse flexibility and motion in protein structure. + CG analysis + MD analysis + Protein Dynamics Analysis + Trajectory analysis + Nucleic Acid Dynamics Analysis + Protein flexibility and motion analysis + Protein flexibility prediction + Protein motion prediction + + + Use this concept for analysis of flexible and rigid residues, local chain deformability, regions undergoing conformational change, molecular vibrations or fluctuational dynamics, domain motions or other large-scale structural transitions in a protein structure. + Simulation analysis + + + + + + + + + + + + + + + + beta12orEarlier + Identify or screen for 3D structural motifs in protein structure(s). + Protein structural feature identification + Protein structural motif recognition + + + This includes conserved substructures and conserved geometry, such as spatial arrangement of secondary structure or protein backbone. Methods might use structure alignment, structural templates, searches for similar electrostatic potential and molecular surface shape, surface-mapping of phylogenetic information etc. + Structural motif discovery + + + + + + + + + + + + + + + + beta12orEarlier + Identify structural domains in a protein structure from first principles (for example calculations on structural compactness). + + + Protein domain recognition + + + + + + + + + beta12orEarlier + Analyse the architecture (spatial arrangement of secondary structure) of protein structure(s). + + + Protein architecture analysis + + + + + + + + + + + + + + + beta12orEarlier + WHATIF: SymShellFiveXML + WHATIF: SymShellOneXML + WHATIF: SymShellTenXML + WHATIF: SymShellTwoXML + WHATIF:ListContactsNormal + WHATIF:ListContactsRelaxed + WHATIF:ListSideChainContactsNormal + WHATIF:ListSideChainContactsRelaxed + Calculate or extract inter-atomic, inter-residue or residue-atom contacts, distances and interactions in protein structure(s). + + + Residue interaction calculation + + + + + + + + + + + + + + + beta12orEarlier + WHATIF:CysteineTorsions + WHATIF:ResidueTorsions + WHATIF:ResidueTorsionsBB + WHATIF:ShowTauAngle + Calculate, visualise or analyse phi/psi angles of a protein structure. + Backbone torsion angle calculation + Cysteine torsion angle calculation + Tau angle calculation + Torsion angle calculation + + + Protein geometry calculation + + + + + + + + + + beta12orEarlier + Extract, calculate or predict non-positional (physical or chemical) properties of a protein, including any non-positional properties of the molecular sequence, from processing a protein sequence or 3D structure. + Protein property rendering + Protein property calculation (from sequence) + Protein property calculation (from structure) + Protein structural property calculation + Structural property calculation + + + This includes methods to render and visualise the properties of a protein sequence, and a residue-level search for properties such as solvent accessibility, hydropathy, secondary structure, ligand-binding etc. + Protein property calculation + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Immunogen design + Predict antigenicity, allergenicity / immunogenicity, allergic cross-reactivity etc of peptides and proteins. + Antigenicity prediction + Immunogenicity prediction + B cell peptide immunogenicity prediction + Hopp and Woods plotting + MHC peptide immunogenicity prediction + + + Immunological system are cellular or humoral. In vaccine design to induces a cellular immune response, methods must search for antigens that can be recognized by the major histocompatibility complex (MHC) molecules present in T lymphocytes. If a humoral response is required, antigens for B cells must be identified. + This includes methods that generate a graphical rendering of antigenicity of a protein, such as a Hopp and Woods plot. + This is usually done in the development of peptide-specific antibodies or multi-epitope vaccines. Methods might use sequence data (for example motifs) and / or structural data. + Peptide immunogenicity prediction + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict, recognise and identify positional features in molecular sequences such as key functional sites or regions. + Sequence feature prediction + Sequence feature recognition + Motif database search + SO:0000110 + + + Look at "Protein feature detection" (http://edamontology.org/operation_3092) and "Nucleic acid feature detection" (http://edamontology.org/operation_0415) in case more specific terms are needed. + Sequence feature detection + + + + + + + + + beta12orEarlier + beta13 + + + Extract a sequence feature table from a sequence database entry. + + Data retrieval (feature table) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query the features (in a feature table) of molecular sequence(s). + + Feature table query + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Compare the feature tables of two or more molecular sequences. + Feature comparison + Feature table comparison + + + Sequence feature comparison + + + + + + + + + beta12orEarlier + beta13 + + + Display basic information about a sequence alignment. + + Data retrieval (sequence alignment) + true + + + + + + + + + + + + + + + beta12orEarlier + Analyse a molecular sequence alignment. + + + Sequence alignment analysis + + + + + + + + + + beta12orEarlier + Compare (typically by aligning) two molecular sequence alignments. + + + See also 'Sequence profile alignment'. + Sequence alignment comparison + + + + + + + + + + beta12orEarlier + Convert a molecular sequence alignment from one type to another (for example amino acid to coding nucleotide sequence). + + + Sequence alignment conversion + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) physicochemical property data of nucleic acids. + + Nucleic acid property processing + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate or predict physical or chemical properties of nucleic acid molecules, including any non-positional properties of the molecular sequence. + + + Nucleic acid property calculation + + + + + + + + + + + + + + + beta12orEarlier + Predict splicing alternatives or transcript isoforms from analysis of sequence data. + Alternative splicing analysis + Alternative splicing detection + Differential splicing analysis + Splice transcript prediction + + + Alternative splicing prediction + + + + + + + + + + + + + + + + beta12orEarlier + Detect frameshifts in DNA sequences, including frameshift sites and signals, and frameshift errors from sequencing projects. + Frameshift error detection + + + Methods include sequence alignment (if related sequences are available) and word-based sequence comparison. + Frameshift detection + + + + + + + + + beta12orEarlier + Detect vector sequences in nucleotide sequence, typically by comparison to a set of known vector sequences. + + + Vector sequence detection + + + + + + + + + + + + beta12orEarlier + Predict secondary structure of protein sequences. + Secondary structure prediction (protein) + + + Methods might use amino acid composition, local sequence information, multiple sequence alignments, physicochemical features, estimated energy content, statistical algorithms, hidden Markov models, support vector machines, kernel machines, neural networks etc. + Protein secondary structure prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict super-secondary structure of protein sequence(s). + + + Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc. + Protein super-secondary structure prediction + + + + + + + + + + beta12orEarlier + Predict and/or classify transmembrane proteins or transmembrane (helical) domains or regions in protein sequences. + + + Transmembrane protein prediction + + + + + + + + + + + + + + + beta12orEarlier + Analyse transmembrane protein(s), typically by processing sequence and / or structural data, and write an informative report for example about the protein and its transmembrane domains / regions. + + + Use this (or child) concept for analysis of transmembrane domains (buried and exposed faces), transmembrane helices, helix topology, orientation, inter-helical contacts, membrane dipping (re-entrant) loops and other secondary structure etc. Methods might use pattern discovery, hidden Markov models, sequence alignment, structural profiles, amino acid property analysis, comparison to known domains or some combination (hybrid methods). + Transmembrane protein analysis + + + + + + + + + beta12orEarlier + This is a "organisational class" not very useful for annotation per se. + 1.19 + + + + + Predict tertiary structure of a molecular (biopolymer) sequence. + + Structure prediction + true + + + + + + + + + + + + + + + + beta12orEarlier + Predict contacts, non-covalent interactions and distance (constraints) between amino acids in protein sequences. + Residue interaction prediction + Contact map prediction + Protein contact map prediction + + + Methods usually involve multiple sequence alignment analysis. + Residue contact prediction + + + + + + + + + beta12orEarlier + 1.19 + + Analyse experimental protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc. + + + Protein interaction raw data analysis + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify or predict protein-protein interactions, interfaces, binding sites etc in protein sequences. + + + Protein-protein interaction prediction (from protein sequence) + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify or predict protein-protein interactions, interfaces, binding sites etc in protein structures. + + + Protein-protein interaction prediction (from protein structure) + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a network of protein interactions. + Protein interaction network comparison + + + Protein interaction network analysis + + + + + + + + + beta12orEarlier + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + Compare two or more biological pathways or networks. + + Pathway or network comparison + true + + + + + + + + + + + + + + + + + beta12orEarlier + Predict RNA secondary structure (for example knots, pseudoknots, alternative structures etc). + RNA shape prediction + + + Methods might use RNA motifs, predicted intermolecular contacts, or RNA sequence-structure compatibility (inverse RNA folding). + RNA secondary structure prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse some aspect of RNA/DNA folding, typically by processing sequence and/or structural data. For example, compute folding energies such as minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants. + Nucleic acid folding + Nucleic acid folding modelling + Nucleic acid folding prediction + Nucleic acid folding energy calculation + + + Nucleic acid folding analysis + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on restriction enzymes or restriction enzyme sites. + + Data retrieval (restriction enzyme annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Identify genetic markers in DNA sequences. + + A genetic marker is any DNA sequence of known chromosomal location that is associated with and specific to a particular gene or trait. This includes short sequences surrounding a SNP, Sequence-Tagged Sites (STS) which are well suited for PCR amplification, a longer minisatellites sequence etc. + Genetic marker identification + true + + + + + + + + + + + + + + + + beta12orEarlier + Generate a genetic (linkage) map of a DNA sequence (typically a chromosome) showing the relative positions of genetic markers based on estimation of non-physical distances. + Functional mapping + Genetic cartography + Genetic map construction + Genetic map generation + Linkage mapping + QTL mapping + + + Mapping involves ordering genetic loci along a chromosome and estimating the physical distance between loci. A genetic map shows the relative (not physical) position of known genes and genetic markers. + This includes mapping of the genetic architecture of dynamic complex traits (functional mapping), e.g. by characterisation of the underlying quantitative trait loci (QTLs) or nucleotides (QTNs). + Genetic mapping + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse genetic linkage. + + + For example, estimate how close two genes are on a chromosome by calculating how often they are transmitted together to an offspring, ascertain whether two genes are linked and parental linkage, calculate linkage map distance etc. + Linkage analysis + + + + + + + + + + + + + + + + beta12orEarlier + Calculate codon usage statistics and create a codon usage table. + Codon usage table construction + + + Codon usage table generation + + + + + + + + + + beta12orEarlier + Compare two or more codon usage tables. + + + Codon usage table comparison + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse codon usage in molecular sequences or process codon usage data (e.g. a codon usage table). + Codon usage data analysis + Codon usage table analysis + + + Codon usage analysis + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Identify and plot third base position variability in a nucleotide sequence. + + + Base position variability plotting + + + + + + + + + beta12orEarlier + Find exact character or word matches between molecular sequences without full sequence alignment. + + + Sequence word comparison + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate a sequence distance matrix or otherwise estimate genetic distances between molecular sequences. + Phylogenetic distance matrix generation + Sequence distance calculation + Sequence distance matrix construction + + + Sequence distance matrix generation + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more molecular sequences, identify and remove redundant sequences based on some criteria. + + + Sequence redundancy removal + + + + + + + + + + + + + + + + + beta12orEarlier + Build clusters of similar sequences, typically using scores from pair-wise alignment or other comparison of the sequences. + Sequence cluster construction + Sequence cluster generation + + + The clusters may be output or used internally for some other purpose. + Sequence clustering + + + + + + + + + + + + + + + + + + beta12orEarlier + Align (identify equivalent sites within) molecular sequences. + Sequence alignment construction + Sequence alignment generation + Consensus-based sequence alignment + Constrained sequence alignment + Multiple sequence alignment (constrained) + Sequence alignment (constrained) + + + Includes methods that align sequence profiles (representing sequence alignments): ethods might perform one-to-one, one-to-many or many-to-many comparisons. See also 'Sequence alignment comparison'. + See also "Read mapping" + Sequence alignment + + + + + + + + + + beta12orEarlier + beta13 + + + Align two or more molecular sequences of different types (for example genomic DNA to EST, cDNA or mRNA). + + Hybrid sequence alignment construction + true + + + + + + + + + beta12orEarlier + Align molecular sequences using sequence and structural information. + Sequence alignment (structure-based) + + + Structure-based sequence alignment + + + + + + + + + + + + + + + + + beta12orEarlier + Align (superimpose) molecular tertiary structures. + Structural alignment + 3D profile alignment + 3D profile-to-3D profile alignment + Structural profile alignment + + + Includes methods that align structural (3D) profiles or templates (representing structures or structure alignments) - including methods that perform one-to-one, one-to-many or many-to-many comparisons. + Structure alignment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate some type of sequence profile (for example a hidden Markov model) from a sequence alignment. + Sequence profile construction + + + Sequence profile generation + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate some type of structural (3D) profile or template from a structure or structure alignment. + Structural profile construction + Structural profile generation + + + 3D profile generation + + + + + + + + + beta12orEarlier + 1.19 + + Align sequence profiles (representing sequence alignments). + + + Profile-profile alignment + true + + + + + + + + + beta12orEarlier + 1.19 + + Align structural (3D) profiles or templates (representing structures or structure alignments). + + + 3D profile-to-3D profile alignment + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Align molecular sequence(s) to sequence profile(s), or profiles to other profiles. A profile typically represents a sequence alignment. + Profile-profile alignment + Profile-to-profile alignment + Sequence-profile alignment + Sequence-to-profile alignment + + + A sequence profile typically represents a sequence alignment. Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Sequence profile alignment + + + + + + + + + beta12orEarlier + 1.19 + + Align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment). + + + Sequence-to-3D-profile alignment + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Align molecular sequence to structure in 3D space (threading). + Sequence-structure alignment + Sequence-3D profile alignment + Sequence-to-3D-profile alignment + + + This includes sequence-to-3D-profile alignment methods, which align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment) - methods might perform one-to-one, one-to-many or many-to-many comparisons. + Use this concept for methods that evaluate sequence-structure compatibility by assessing residue interactions in 3D. Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Protein threading + + + + + + + + + + + + + + beta12orEarlier + Recognize (predict and identify) known protein structural domains or folds in protein sequence(s) which (typically) are not accompanied by any significant sequence similarity to know structures. + Domain prediction + Fold prediction + Protein domain prediction + Protein fold prediction + Protein fold recognition + + + Methods use some type of mapping between sequence and fold, for example secondary structure prediction and alignment, profile comparison, sequence properties, homologous sequence search, kernel machines etc. Domains and folds might be taken from SCOP or CATH. + Fold recognition + + + + + + + + + beta12orEarlier + (jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved. + 1.17 + + Search for and retrieve data concerning or describing some core data, as distinct from the primary data that is being described. + + + This includes documentation, general information and other metadata on entities such as databases, database entries and tools. + Metadata retrieval + true + + + + + + + + + + + + + + + beta12orEarlier + Query scientific literature, in search for articles, article data, concepts, named entities, or for statistics. + + + Literature search + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Text analysis + Process and analyse text (typically scientific literature) to extract information from it. + Literature mining + Text analytics + Text data mining + Article analysis + Literature analysis + + + Text mining + + + + + + + + + + beta12orEarlier + Perform in-silico (virtual) PCR. + + + Virtual PCR + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Design or predict oligonucleotide primers for PCR and DNA amplification etc. + PCR primer prediction + Primer design + PCR primer design (based on gene structure) + PCR primer design (for conserved primers) + PCR primer design (for gene transcription profiling) + PCR primer design (for genotyping polymorphisms) + PCR primer design (for large scale sequencing) + PCR primer design (for methylation PCRs) + Primer quality estimation + + + Primer design involves predicting or selecting primers that are specific to a provided PCR template. Primers can be designed with certain properties such as size of product desired, primer size etc. The output might be a minimal or overlapping primer set. + This includes predicting primers based on gene structure, promoters, exon-exon junctions, predicting primers that are conserved across multiple genomes or species, primers for for gene transcription profiling, for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs), for large scale sequencing, or for methylation PCRs. + PCR primer design + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict and/or optimize oligonucleotide probes for DNA microarrays, for example for transcription profiling of genes, or for genomes and gene families. + Microarray probe prediction + + + Microarray probe design + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Combine (align and merge) overlapping fragments of a DNA sequence to reconstruct the original sequence. + Metagenomic assembly + Sequence assembly editing + + + For example, assemble overlapping reads from paired-end sequencers into contigs (a contiguous sequence corresponding to read overlaps). Or assemble contigs, for example ESTs and genomic DNA fragments, depending on the detected fragment overlaps. + Sequence assembly + + + + + + + + + + beta12orEarlier + 1.16 + + Standardize or normalize microarray data. + + + Microarray data standardisation and normalisation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) SAGE, MPSS or SBS experimental data. + + Sequencing-based expression profile data processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Perform cluster analysis of expression data to identify groups with similar expression profiles, for example by clustering. + Gene expression clustering + Gene expression profile clustering + + + Expression profile clustering + + + + + + + + + beta12orEarlier + The measurement of the activity (expression) of multiple genes in a cell, tissue, sample etc., in order to get an impression of biological function. + Feature expression analysis + Functional profiling + Gene expression profile construction + Gene expression profile generation + Gene expression quantification + Gene transcription profiling + Non-coding RNA profiling + Protein profiling + RNA profiling + mRNA profiling + + + Gene expression profiling generates some sort of gene expression profile, for example from microarray data. + Gene expression profiling + + + + + + + + + + beta12orEarlier + Comparison of expression profiles. + Gene expression comparison + Gene expression profile comparison + + + Expression profile comparison + + + + + + + + + beta12orEarlier + beta12orEarlier + + Interpret (in functional terms) and annotate gene expression data. + + + Functional profiling + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse EST or cDNA sequences. + + For example, identify full-length cDNAs from EST sequences or detect potential EST antisense transcripts. + EST and cDNA sequence analysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identify and select targets for protein structural determination. + + Methods will typically navigate a graph of protein families of known structure. + Structural genomics target selection + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Assign secondary structure from protein coordinate or experimental data. + + + Includes secondary structure assignment from circular dichroism (CD) spectroscopic data, and from protein coordinate data. + Protein secondary structure assignment + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Assign a protein tertiary structure (3D coordinates), or other aspects of protein structure, from raw experimental data. + NOE assignment + Structure calculation + + + Protein structure assignment + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + WHATIF: CorrectedPDBasXML + WHATIF: UseFileDB + WHATIF: UseResidueDB + Evaluate the quality or correctness a protein three-dimensional model. + Protein model validation + Residue validation + + + Model validation might involve checks for atomic packing, steric clashes (bumps), volume irregularities, agreement with electron density maps, number of amino acid residues, percentage of residues with missing or bad atoms, irregular Ramachandran Z-scores, irregular Chi-1 / Chi-2 normality scores, RMS-Z score on bonds and angles etc. + The PDB file format has had difficulties, inconsistencies and errors. Corrections can include identifying a meaningful sequence, removal of alternate atoms, correction of nomenclature problems, removal of incomplete residues and spurious waters, addition or removal of water, modelling of missing side chains, optimisation of cysteine bonds, regularisation of bond lengths, bond angles and planarities etc. + This includes methods that calculate poor quality residues. The scoring function to identify poor quality residues may consider residues with bad atoms or atoms with high B-factor, residues in the N- or C-terminal position, adjacent to an unstructured residue, non-canonical residues, glycine and proline (or adjacent to these such residues). + Protein structure validation + + + + + + + + + + + beta12orEarlier + WHATIF: CorrectedPDBasXML + Refine (after evaluation) a model of a molecular structure (typically a protein structure) to reduce steric clashes, volume irregularities etc. + Protein model refinement + + + Molecular model refinement + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree. + Phlyogenetic tree construction + Phylogenetic reconstruction + Phylogenetic tree generation + + + Phylogenetic trees are usually constructed from a set of sequences from which an alignment (or data matrix) is calculated. + Phylogenetic inference + + + + + + + + + + + + + + + + beta12orEarlier + Analyse an existing phylogenetic tree or trees, typically to detect features or make predictions. + Phylogenetic tree analysis + Phylogenetic modelling + + + Phylgenetic modelling is the modelling of trait evolution and prediction of trait values using phylogeny as a basis. + Phylogenetic analysis + + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees. + + + For example, to produce a consensus tree, subtrees, supertrees, calculate distances between trees or test topological similarity between trees (e.g. a congruence index) etc. + Phylogenetic tree comparison + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Edit a phylogenetic tree. + + + Phylogenetic tree editing + + + + + + + + + + + + + + + beta12orEarlier + Comparison of a DNA sequence to orthologous sequences in different species and inference of a phylogenetic tree, in order to identify regulatory elements such as transcription factor binding sites (TFBS). + Phylogenetic shadowing + + + Phylogenetic shadowing is a type of footprinting where many closely related species are used. A phylogenetic 'shadow' represents the additive differences between individual sequences. By masking or 'shadowing' variable positions a conserved sequence is produced with few or none of the variations, which is then compared to the sequences of interest to identify significant regions of conservation. + Phylogenetic footprinting + + + + + + + + + + beta12orEarlier + 1.20 + + Simulate the folding of a protein. + + + Protein folding simulation + true + + + + + + + + + beta12orEarlier + 1.19 + + Predict the folding pathway(s) or non-native structural intermediates of a protein. + + + Protein folding pathway prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + Map and model the effects of single nucleotide polymorphisms (SNPs) on protein structure(s). + + + Protein SNP mapping + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict the effect of point mutation on a protein structure, in terms of strucural effects and protein folding, stability and function. + Variant functional prediction + Protein SNP mapping + Protein mutation modelling + Protein stability change prediction + + + Protein SNP mapping maps and modesl the effects of single nucleotide polymorphisms (SNPs) on protein structure(s). Methods might predict silent or pathological mutations. + Variant effect prediction + + + + + + + + + beta12orEarlier + beta12orEarlier + + Design molecules that elicit an immune response (immunogens). + + + Immunogen design + true + + + + + + + + + beta12orEarlier + 1.18 + + Predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases). + + + Zinc finger prediction + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate Km, Vmax and derived data for an enzyme reaction. + + + Enzyme kinetics calculation + + + + + + + + + beta12orEarlier + Reformat a file of data (or equivalent entity in memory). + File format conversion + File formatting + File reformatting + Format conversion + Reformatting + + + Formatting + + + + + + + + + beta12orEarlier + Test and validate the format and content of a data file. + File format validation + + + Format validation + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + true + Visualise, plot or render (graphically) biomolecular data such as molecular sequences or structures. + Data visualisation + Rendering + Molecular visualisation + Plotting + + + This includes methods to render and visualise molecules. + Visualisation + + + + + + + + + + + + + + + + + beta12orEarlier + Search a sequence database by sequence comparison and retrieve similar sequences. Sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression. + + + This excludes direct retrieval methods (e.g. the dbfetch program). + Sequence database search + + + + + + + + + + + + + + + beta12orEarlier + Search a tertiary structure database, typically by sequence and/or structure comparison, or some other means, and retrieve structures and associated data. + + + Structure database search + + + + + + + + + beta12orEarlier + 1.8 + + Search a secondary protein database (of classification information) to assign a protein sequence(s) to a known protein family or group. + + + Protein secondary database search + true + + + + + + + + + beta12orEarlier + 1.8 + + + Screen a sequence against a motif or pattern database. + + Motif database search + true + + + + + + + + + beta12orEarlier + 1.4 + + + Search a database of sequence profiles with a query sequence. + + Sequence profile database search + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Search a database of transmembrane proteins, for example for sequence or structural similarities. + + Transmembrane protein database search + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a database and retrieve sequences with a given entry code or accession number. + + Sequence retrieval (by code) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a database and retrieve sequences containing a given keyword. + + Sequence retrieval (by keyword) + true + + + + + + + + + + + beta12orEarlier + Search a sequence database and retrieve sequences that are similar to a query sequence. + Sequence database search (by sequence) + Structure database search (by sequence) + + + Sequence similarity search + + + + + + + + + beta12orEarlier + 1.8 + + Search a sequence database and retrieve sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression. + + + Sequence database search (by motif or pattern) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database and retrieve sequences of a given amino acid composition. + + Sequence database search (by amino acid composition) + true + + + + + + + + + beta12orEarlier + Search a sequence database and retrieve sequences with a specified property, typically a physicochemical or compositional property. + + + Sequence database search (by property) + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database and retrieve sequences that are similar to a query sequence using a word-based method. + + Word-based methods (for example BLAST, gapped BLAST, MEGABLAST, WU-BLAST etc.) are usually quicker than alignment-based methods. They may or may not handle gaps. + Sequence database search (by sequence using word-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database and retrieve sequences that are similar to a query sequence using a sequence profile-based method, or with a supplied profile as query. + + This includes tools based on PSI-BLAST. + Sequence database search (by sequence using profile-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a sequence database for sequences that are similar to a query sequence using a local alignment-based method. + + This includes tools based on the Smith-Waterman algorithm or FASTA. + Sequence database search (by sequence using local alignment-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search sequence(s) or a sequence database for sequences that are similar to a query sequence using a global alignment-based method. + + This includes tools based on the Needleman and Wunsch algorithm. + Sequence database search (by sequence using global alignment-based methods) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search a DNA database (for example a database of conserved sequence tags) for matches to Sequence-Tagged Site (STS) primer sequences. + + STSs are genetic markers that are easily detected by the polymerase chain reaction (PCR) using specific primers. + Sequence database search (by sequence for primer sequences) + true + + + + + + + + + beta12orEarlier + 1.6 + + Search sequence(s) or a sequence database for sequences which match a set of peptide masses, for example a peptide mass fingerprint from mass spectrometry. + + + Sequence database search (by molecular weight) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search sequence(s) or a sequence database for sequences of a given isoelectric point. + + Sequence database search (by isoelectric point) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a tertiary structure database and retrieve entries with a given entry code or accession number. + + Structure retrieval (by code) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Query a tertiary structure database and retrieve entries containing a given keyword. + + Structure retrieval (by keyword) + true + + + + + + + + + beta12orEarlier + 1.8 + + Search a tertiary structure database and retrieve structures with a sequence similar to a query sequence. + + + Structure database search (by sequence) + true + + + + + + + + + + beta12orEarlier + Search a database of molecular structure and retrieve structures that are similar to a query structure. + Structure database search (by structure) + Structure retrieval by structure + + + Structural similarity search + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Annotate a molecular sequence record with terms from a controlled vocabulary. + + + Sequence annotation + + + + + + + + + + beta12orEarlier + Annotate a genome sequence with terms from a controlled vocabulary. + Functional genome annotation + Metagenome annotation + Structural genome annotation + + + Genome annotation + + + + + + + + + beta12orEarlier + Generate the reverse and / or complement of a nucleotide sequence. + Nucleic acid sequence reverse and complement + Reverse / complement + Reverse and complement + + + Reverse complement + + + + + + + + + + beta12orEarlier + Generate a random sequence, for example, with a specific character composition. + + + Random sequence generation + + + + + + + + + + + + + + + + beta12orEarlier + Generate digest fragments for a nucleotide sequence containing restriction sites. + Nucleic acid restriction digest + + + Restriction digest + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Cleave a protein sequence into peptide fragments (corresponding to enzymatic or chemical cleavage). + + + This is often followed by calculation of protein fragment masses (http://edamontology.org/operation_0398). + Protein sequence cleavage + + + + + + + + + beta12orEarlier + Mutate a molecular sequence a specified amount or shuffle it to produce a randomised sequence with the same overall composition. + + + Sequence mutation and randomisation + + + + + + + + + beta12orEarlier + Mask characters in a molecular sequence (replacing those characters with a mask character). + + + For example, SNPs or repeats in a DNA sequence might be masked. + Sequence masking + + + + + + + + + beta12orEarlier + Cut (remove) characters or a region from a molecular sequence. + + + Sequence cutting + + + + + + + + + beta12orEarlier + Create (or remove) restriction sites in sequences, for example using silent mutations. + + + Restriction site creation + + + + + + + + + + + + + + + beta12orEarlier + Translate a DNA sequence into protein. + + + DNA translation + + + + + + + + + + + + + + + beta12orEarlier + Transcribe a nucleotide sequence into mRNA sequence(s). + + + DNA transcription + + + + + + + + + beta12orEarlier + 1.8 + + Calculate base frequency or word composition of a nucleotide sequence. + + + Sequence composition calculation (nucleic acid) + true + + + + + + + + + beta12orEarlier + 1.8 + + Calculate amino acid frequency or word composition of a protein sequence. + + + Sequence composition calculation (protein) + true + + + + + + + + + + beta12orEarlier + Find (and possibly render) short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences. + + + Repeat sequence detection + + + + + + + + + + beta12orEarlier + Analyse repeat sequence organisation such as periodicity. + + + Repeat sequence organisation analysis + + + + + + + + + beta12orEarlier + 1.12 + + Analyse the hydrophobic, hydrophilic or charge properties of a protein structure. + + + Protein hydropathy calculation (from structure) + true + + + + + + + + + + + + + + + beta12orEarlier + WHATIF:AtomAccessibilitySolvent + WHATIF:AtomAccessibilitySolventPlus + Calculate solvent accessible or buried surface areas in protein or other molecular structures. + Protein solvent accessibility calculation + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Accessible surface calculation + + + + + + + + + beta12orEarlier + 1.12 + + Identify clusters of hydrophobic or charged residues in a protein structure. + + + Protein hydropathy cluster calculation + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate whether a protein structure has an unusually large net charge (dipole moment). + + + Protein dipole moment calculation + + + + + + + + + beta12orEarlier + WHATIF:AtomAccessibilityMolecular + WHATIF:AtomAccessibilityMolecularPlus + WHATIF:ResidueAccessibilityMolecular + WHATIF:ResidueAccessibilitySolvent + WHATIF:ResidueAccessibilityVacuum + WHATIF:ResidueAccessibilityVacuumMolecular + WHATIF:TotAccessibilityMolecular + WHATIF:TotAccessibilitySolvent + Calculate the molecular surface area in proteins and other macromolecules. + Protein atom surface calculation + Protein residue surface calculation + Protein surface and interior calculation + Protein surface calculation + + + Molecular surface calculation + + + + + + + + + beta12orEarlier + 1.12 + + Identify or predict catalytic residues, active sites or other ligand-binding sites in protein structures. + + + Protein binding site prediction (from structure) + true + + + + + + + + + + + + + + + beta12orEarlier + Analyse the interaction of protein with nucleic acids, e.g. RNA or DNA-binding sites, interfaces etc. + Protein-nucleic acid binding site analysis + Protein-DNA interaction analysis + Protein-RNA interaction analysis + + + Protein-nucleic acid interaction analysis + + + + + + + + + beta12orEarlier + Decompose a structure into compact or globular fragments (protein peeling). + + + Protein peeling + + + + + + + + + + + + + + + beta12orEarlier + Calculate a matrix of distance between residues (for example the C-alpha atoms) in a protein structure. + + + Protein distance matrix calculation + + + + + + + + + + + + + + + beta12orEarlier + Calculate a residue contact map (typically all-versus-all inter-residue contacts) for a protein structure. + Protein contact map calculation + + + Contact map calculation + + + + + + + + + + + + + + + beta12orEarlier + Calculate clusters of contacting residues in protein structures. + + + This includes for example clusters of hydrophobic or charged residues, or clusters of contacting residues which have a key structural or functional role. + Residue cluster calculation + + + + + + + + + + + + + + + beta12orEarlier + WHATIF:HasHydrogenBonds + WHATIF:ShowHydrogenBonds + WHATIF:ShowHydrogenBondsM + Identify potential hydrogen bonds between amino acids and other groups. + + + The output might include the atoms involved in the bond, bond geometric parameters and bond enthalpy. + Hydrogen bond calculation + + + + + + + + + beta12orEarlier + 1.12 + + + Calculate non-canonical atomic interactions in protein structures. + + Residue non-canonical interaction detection + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate a Ramachandran plot of a protein structure. + + + Ramachandran plot calculation + + + + + + + + + + beta12orEarlier + 1.22 + + Validate a Ramachandran plot of a protein structure. + + + Ramachandran plot validation + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate the molecular weight of a protein sequence or fragments. + Peptide mass calculation + + + Protein molecular weight calculation + + + + + + + + + + + + + + + beta12orEarlier + Predict extinction coefficients or optical density of a protein sequence. + + + Protein extinction coefficient calculation + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate pH-dependent properties from pKa calculations of a protein sequence. + Protein pH-dependent property calculation + + + Protein pKa calculation + + + + + + + + + + beta12orEarlier + 1.12 + + Hydropathy calculation on a protein sequence. + + + Protein hydropathy calculation (from sequence) + true + + + + + + + + + + + + + + + + beta12orEarlier + Plot a protein titration curve. + + + Protein titration curve plotting + + + + + + + + + + + + + + + + beta12orEarlier + Calculate isoelectric point of a protein sequence. + + + Protein isoelectric point calculation + + + + + + + + + + + + + + + beta12orEarlier + Estimate hydrogen exchange rate of a protein sequence. + + + Protein hydrogen exchange rate calculation + + + + + + + + + beta12orEarlier + Calculate hydrophobic or hydrophilic / charged regions of a protein sequence. + + + Protein hydrophobic region calculation + + + + + + + + + + + + + + + beta12orEarlier + Calculate aliphatic index (relative volume occupied by aliphatic side chains) of a protein. + + + Protein aliphatic index calculation + + + + + + + + + + + + + + + + beta12orEarlier + Calculate the hydrophobic moment of a peptide sequence and recognize amphiphilicity. + + + Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation. + Protein hydrophobic moment plotting + + + + + + + + + + + + + + + beta12orEarlier + Predict the stability or globularity of a protein sequence, whether it is intrinsically unfolded etc. + + + Protein globularity prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict the solubility or atomic solvation energy of a protein sequence. + + + Protein solubility prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict crystallizability of a protein sequence. + + + Protein crystallizability prediction + + + + + + + + + beta12orEarlier + (jison)Too fine-grained. + 1.17 + + Detect or predict signal peptides (and typically predict subcellular localisation) of eukaryotic proteins. + + + Protein signal peptide detection (eukaryotes) + true + + + + + + + + + beta12orEarlier + (jison)Too fine-grained. + 1.17 + + Detect or predict signal peptides (and typically predict subcellular localisation) of bacterial proteins. + + + Protein signal peptide detection (bacteria) + true + + + + + + + + + beta12orEarlier + 1.12 + + Predict MHC class I or class II binding peptides, promiscuous binding peptides, immunogenicity etc. + + + MHC peptide immunogenicity prediction + true + + + + + + + + + beta12orEarlier + 1.6 + + + Predict, recognise and identify positional features in protein sequences such as functional sites or regions and secondary structure. + + Methods typically involve scanning for known motifs, patterns and regular expressions. + Protein feature prediction (from sequence) + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict, recognise and identify features in nucleotide sequences such as functional sites or regions, typically by scanning for known motifs, patterns and regular expressions. + Sequence feature detection (nucleic acid) + Nucleic acid feature prediction + Nucleic acid feature recognition + Nucleic acid site detection + Nucleic acid site prediction + Nucleic acid site recognition + + + Methods typically involve scanning for known motifs, patterns and regular expressions. + This is placeholder but does not comprehensively include all child concepts - please inspect other concepts under "Nucleic acid sequence analysis" for example "Gene prediction", for other feature detection operations. + Nucleic acid feature detection + + + + + + + + + + + + + + + + beta12orEarlier + Predict antigenic determinant sites (epitopes) in protein sequences. + Antibody epitope prediction + Epitope prediction + B cell epitope mapping + B cell epitope prediction + Epitope mapping (MHC Class I) + Epitope mapping (MHC Class II) + T cell epitope mapping + T cell epitope prediction + + + Epitope mapping is commonly done during vaccine design. + Epitope mapping + + + + + + + + + + + + + + + beta12orEarlier + Predict post-translation modification sites in protein sequences. + PTM analysis + PTM prediction + PTM site analysis + PTM site prediction + Post-translation modification site prediction + Post-translational modification analysis + Protein post-translation modification site prediction + Acetylation prediction + Acetylation site prediction + Dephosphorylation prediction + Dephosphorylation site prediction + GPI anchor prediction + GPI anchor site prediction + GPI modification prediction + GPI modification site prediction + Glycosylation prediction + Glycosylation site prediction + Hydroxylation prediction + Hydroxylation site prediction + Methylation prediction + Methylation site prediction + N-myristoylation prediction + N-myristoylation site prediction + N-terminal acetylation prediction + N-terminal acetylation site prediction + N-terminal myristoylation prediction + N-terminal myristoylation site prediction + Palmitoylation prediction + Palmitoylation site prediction + Phosphoglycerylation prediction + Phosphoglycerylation site prediction + Phosphorylation prediction + Phosphorylation site prediction + Phosphosite localization + Prenylation prediction + Prenylation site prediction + Pupylation prediction + Pupylation site prediction + S-nitrosylation prediction + S-nitrosylation site prediction + S-sulfenylation prediction + S-sulfenylation site prediction + Succinylation prediction + Succinylation site prediction + Sulfation prediction + Sulfation site prediction + Sumoylation prediction + Sumoylation site prediction + Tyrosine nitration prediction + Tyrosine nitration site prediction + Ubiquitination prediction + Ubiquitination site prediction + + + Methods might predict sites of methylation, N-terminal myristoylation, N-terminal acetylation, sumoylation, palmitoylation, phosphorylation, sulfation, glycosylation, glycosylphosphatidylinositol (GPI) modification sites (GPI lipid anchor signals) etc. + Post-translational modification site prediction + + + + + + + + + + + + + + + + beta12orEarlier + Detect or predict signal peptides and signal peptide cleavage sites in protein sequences. + + + Methods might use sequence motifs and features, amino acid composition, profiles, machine-learned classifiers, etc. + Protein signal peptide detection + + + + + + + + + beta12orEarlier + 1.12 + + Predict catalytic residues, active sites or other ligand-binding sites in protein sequences. + + + Protein binding site prediction (from sequence) + true + + + + + + + + + beta12orEarlier + Predict or detect RNA and DNA-binding binding sites in protein sequences. + Protein-nucleic acid binding detection + Protein-nucleic acid binding prediction + Protein-nucleic acid binding site detection + Protein-nucleic acid binding site prediction + Zinc finger prediction + + + This includes methods that predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases). + Nucleic acids-binding site prediction + + + + + + + + + beta12orEarlier + 1.20 + + Predict protein sites that are key to protein folding, such as possible sites of nucleation or stabilisation. + + + Protein folding site prediction + true + + + + + + + + + + + + + + + beta12orEarlier + Detect or predict cleavage sites (enzymatic or chemical) in protein sequences. + + + Protein cleavage site prediction + + + + + + + + + beta12orEarlier + 1.8 + + Predict epitopes that bind to MHC class I molecules. + + + Epitope mapping (MHC Class I) + true + + + + + + + + + beta12orEarlier + 1.8 + + Predict epitopes that bind to MHC class II molecules. + + + Epitope mapping (MHC Class II) + true + + + + + + + + + beta12orEarlier + 1.12 + + Detect, predict and identify whole gene structure in DNA sequences. This includes protein coding regions, exon-intron structure, regulatory regions etc. + + + Whole gene prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + Detect, predict and identify genetic elements such as promoters, coding regions, splice sites, etc in DNA sequences. + + + Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc. + Gene component prediction + true + + + + + + + + + beta12orEarlier + Detect or predict transposons, retrotransposons / retrotransposition signatures etc. + + + Transposon prediction + + + + + + + + + beta12orEarlier + Detect polyA signals in nucleotide sequences. + PolyA detection + PolyA prediction + PolyA signal prediction + Polyadenylation signal detection + Polyadenylation signal prediction + + + PolyA signal detection + + + + + + + + + + + + + + + beta12orEarlier + Detect quadruplex-forming motifs in nucleotide sequences. + Quadruplex structure prediction + + + Quadruplex (4-stranded) structures are formed by guanine-rich regions and are implicated in various important biological processes and as therapeutic targets. + Quadruplex formation site detection + + + + + + + + + + + + + + + beta12orEarlier + Find CpG rich regions in a nucleotide sequence or isochores in genome sequences. + CpG island and isochores detection + CpG island and isochores rendering + + + An isochore is long region (> 3 KB) of DNA with very uniform GC content, in contrast to the rest of the genome. Isochores tend tends to have more genes, higher local melting or denaturation temperatures, and different flexibility. Methods might calculate fractional GC content or variation of GC content, predict methylation status of CpG islands etc. This includes methods that visualise CpG rich regions in a nucleotide sequence, for example plot isochores in a genome sequence. + CpG island and isochore detection + + + + + + + + + + + + + + + beta12orEarlier + Find and identify restriction enzyme cleavage sites (restriction sites) in (typically) DNA sequences, for example to generate a restriction map. + + + Restriction site recognition + + + + + + + + + + beta12orEarlier + Identify or predict nucleosome exclusion sequences (nucleosome free regions) in DNA. + Nucleosome exclusion sequence prediction + Nucleosome formation sequence prediction + + + Nucleosome position prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify, predict or analyse splice sites in nucleotide sequences. + Splice prediction + + + Methods might require a pre-mRNA or genomic DNA sequence. + Splice site prediction + + + + + + + + + beta12orEarlier + 1.19 + + Predict whole gene structure using a combination of multiple methods to achieve better predictions. + + + Integrated gene prediction + true + + + + + + + + + beta12orEarlier + Find operons (operators, promoters and genes) in bacteria genes. + + + Operon prediction + + + + + + + + + beta12orEarlier + Predict protein-coding regions (CDS or exon) or open reading frames in nucleotide sequences. + ORF finding + ORF prediction + + + Coding region prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict selenocysteine insertion sequence (SECIS) in a DNA sequence. + Selenocysteine insertion sequence (SECIS) prediction + + + SECIS elements are around 60 nucleotides in length with a stem-loop structure directs the cell to translate UGA codons as selenocysteines. + SECIS element prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict transcriptional regulatory motifs, patterns, elements or regions in DNA sequences. + Regulatory element prediction + Transcription regulatory element prediction + Conserved transcription regulatory sequence identification + Translational regulatory element prediction + + + This includes comparative genomics approaches that identify common, conserved (homologous) or synonymous transcriptional regulatory elements. For example cross-species comparison of transcription factor binding sites (TFBS). Methods might analyse co-regulated or co-expressed genes, or sets of oppositely expressed genes. + This includes promoters, enhancers, silencers and boundary elements / insulators, regulatory protein or transcription factor binding sites etc. Methods might be specific to a particular genome and use motifs, word-based / grammatical methods, position-specific frequency matrices, discriminative pattern analysis etc. + Transcriptional regulatory element prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict translation initiation sites, possibly by searching a database of sites. + + + Translation initiation site prediction + + + + + + + + + beta12orEarlier + Identify or predict whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in DNA sequences. + + + Methods might recognize CG content, CpG islands, splice sites, polyA signals etc. + Promoter prediction + + + + + + + + + beta12orEarlier + Identify, predict or analyse cis-regulatory elements in DNA sequences (TATA box, Pribnow box, SOS box, CAAT box, CCAAT box, operator etc.) or in RNA sequences (e.g. riboswitches). + Transcriptional regulatory element prediction (DNA-cis) + Transcriptional regulatory element prediction (RNA-cis) + + + Cis-regulatory elements (cis-elements) regulate the expression of genes located on the same strand from which the element was transcribed. Cis-elements are found in the 5' promoter region of the gene, in an intron, or in the 3' untranslated region. Cis-elements are often binding sites of one or more trans-acting factors. They also occur in RNA sequences, e.g. a riboswitch is a region of an mRNA molecule that bind a small target molecule that regulates the gene's activity. + cis-regulatory element prediction + + + + + + + + + beta12orEarlier + 1.19 + + Identify, predict or analyse cis-regulatory elements (for example riboswitches) in RNA sequences. + + + Transcriptional regulatory element prediction (RNA-cis) + true + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict functional RNA sequences with a gene regulatory role (trans-regulatory elements) or targets. + Functional RNA identification + Transcriptional regulatory element prediction (trans) + + + Trans-regulatory elements regulate genes distant from the gene from which they were transcribed. + trans-regulatory element prediction + + + + + + + + + beta12orEarlier + Identify matrix/scaffold attachment regions (MARs/SARs) in DNA sequences. + MAR/SAR prediction + Matrix/scaffold attachment site prediction + + + MAR/SAR sites often flank a gene or gene cluster and are found nearby cis-regulatory sequences. They might contribute to transcription regulation. + S/MAR prediction + + + + + + + + + beta12orEarlier + Identify or predict transcription factor binding sites in DNA sequences. + + + Transcription factor binding site prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict exonic splicing enhancers (ESE) in exons. + + + An exonic splicing enhancer (ESE) is 6-base DNA sequence motif in an exon that enhances or directs splicing of pre-mRNA or hetero-nuclear RNA (hnRNA) into mRNA. + Exonic splicing enhancer prediction + + + + + + + + + + beta12orEarlier + Evaluate molecular sequence alignment accuracy. + Sequence alignment quality evaluation + + + Evaluation might be purely sequence-based or use structural information. + Sequence alignment validation + + + + + + + + + beta12orEarlier + Analyse character conservation in a molecular sequence alignment, for example to derive a consensus sequence. + Residue conservation analysis + + + Use this concept for methods that calculate substitution rates, estimate relative site variability, identify sites with biased properties, derive a consensus sequence, or identify highly conserved or very poorly conserved sites, regions, blocks etc. + Sequence alignment analysis (conservation) + + + + + + + + + + beta12orEarlier + Analyse correlations between sites in a molecular sequence alignment. + + + This is typically done to identify possible covarying positions and predict contacts or structural constraints in protein structures. + Sequence alignment analysis (site correlation) + + + + + + + + + beta12orEarlier + Detects chimeric sequences (chimeras) from a sequence alignment. + Chimeric sequence detection + + + A chimera includes regions from two or more phylogenetically distinct sequences. They are usually artifacts of PCR and are thought to occur when a prematurely terminated amplicon reanneals to another DNA strand and is subsequently copied to completion in later PCR cycles. + Chimera detection + + + + + + + + + beta12orEarlier + Detect recombination (hotspots and coldspots) and identify recombination breakpoints in a sequence alignment. + Sequence alignment analysis (recombination detection) + + + Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on. + Recombination detection + + + + + + + + + beta12orEarlier + Identify insertion, deletion and duplication events from a sequence alignment. + Indel discovery + Sequence alignment analysis (indel detection) + + + Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on. + Indel detection + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Predict nucleosome formation potential of DNA sequences. + + Nucleosome formation potential prediction + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate a thermodynamic property of DNA or DNA/RNA, such as melting temperature, enthalpy and entropy. + + + Nucleic acid thermodynamic property calculation + + + + + + + + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA melting profile. + + + A melting profile is used to visualise and analyse partly melted DNA conformations. + Nucleic acid melting profile plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA stitch profile. + + + A stitch profile represents the alternative conformations that partly melted DNA can adopt in a temperature range. + Nucleic acid stitch profile plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA melting curve. + + + Nucleic acid melting curve plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA probability profile. + + + Nucleic acid probability profile plotting + + + + + + + + + beta12orEarlier + Calculate and plot a DNA or DNA/RNA temperature profile. + + + Nucleic acid temperature profile plotting + + + + + + + + + + + + + + + beta12orEarlier + Calculate curvature and flexibility / stiffness of a nucleotide sequence. + + + This includes properties such as. + Nucleic acid curvature calculation + + + + + + + + + beta12orEarlier + Identify or predict microRNA sequences (miRNA) and precursors or microRNA targets / binding sites in a DNA sequence. + miRNA prediction + microRNA detection + microRNA target detection + + + miRNA target prediction + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict tRNA genes in genomic sequences (tRNA). + + + tRNA gene prediction + + + + + + + + + + + + + + + beta12orEarlier + Assess binding specificity of putative siRNA sequence(s), for example for a functional assay, typically with respect to designing specific siRNA sequences. + + + siRNA binding specificity prediction + + + + + + + + + beta12orEarlier + 1.18 + + Predict secondary structure of protein sequence(s) using multiple methods to achieve better predictions. + + + Protein secondary structure prediction (integrated) + true + + + + + + + + + beta12orEarlier + Predict helical secondary structure of protein sequences. + + + Protein secondary structure prediction (helices) + + + + + + + + + beta12orEarlier + Predict turn structure (for example beta hairpin turns) of protein sequences. + + + Protein secondary structure prediction (turns) + + + + + + + + + beta12orEarlier + Predict open coils, non-regular secondary structure and intrinsically disordered / unstructured regions of protein sequences. + + + Protein secondary structure prediction (coils) + + + + + + + + + beta12orEarlier + Predict cysteine bonding state and disulfide bond partners in protein sequences. + + + Disulfide bond prediction + + + + + + + + + beta12orEarlier + Not sustainable to have protein type-specific concepts. + 1.19 + + Predict G protein-coupled receptors (GPCR). + + + GPCR prediction + true + + + + + + + + + beta12orEarlier + Not sustainable to have protein type-specific concepts. + 1.19 + + Analyse G-protein coupled receptor proteins (GPCRs). + + + GPCR analysis + true + + + + + + + + + + + + + + + + + beta12orEarlier + Predict tertiary structure (backbone and side-chain conformation) of protein sequences. + Protein folding pathway prediction + + + This includes methods that predict the folding pathway(s) or non-native structural intermediates of a protein. + Protein structure prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Predict structure of DNA or RNA. + + + Methods might identify thermodynamically stable or evolutionarily conserved structures. + Nucleic acid structure prediction + + + + + + + + + + beta12orEarlier + Predict tertiary structure of protein sequence(s) without homologs of known structure. + de novo structure prediction + + + Ab initio structure prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Build a three-dimensional protein model based on known (for example homologs) structures. + Comparative modelling + Homology modelling + Homology structure modelling + Protein structure comparative modelling + + + The model might be of a whole, part or aspect of protein structure. Molecular modelling methods might use sequence-structure alignment, structural templates, molecular dynamics, energy minimisation etc. + Protein modelling + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Model the structure of a protein in complex with a small molecule or another macromolecule. + Docking simulation + Macromolecular docking + + + This includes protein-protein interactions, protein-nucleic acid, protein-ligand binding etc. Methods might predict whether the molecules are likely to bind in vivo, their conformation when bound, the strength of the interaction, possible mutations to achieve bonding and so on. + Molecular docking + + + + + + + + + + + beta12orEarlier + Model protein backbone conformation. + Protein modelling (backbone) + Design optimization + Epitope grafting + Scaffold search + Scaffold selection + + + Methods might require a preliminary C(alpha) trace. + Scaffold selection, scaffold search, epitope grafting and design optimization are stages of backbone modelling done during rational vaccine design. + Backbone modelling + + + + + + + + + beta12orEarlier + Model, analyse or edit amino acid side chain conformation in protein structure, optimize side-chain packing, hydrogen bonding etc. + Protein modelling (side chains) + Antibody optimisation + Antigen optimisation + Antigen resurfacing + Rotamer likelihood prediction + + + Antibody optimisation is to optimize the antibody-interacting surface of the antigen (epitope). Antigen optimisation is to optimize the antigen-interacting surface of the antibody (paratope). Antigen resurfacing is to resurface the antigen by varying the sequence of non-epitope regions. + Methods might use a residue rotamer library. + This includes rotamer likelihood prediction: the prediction of rotamer likelihoods for all 20 amino acid types at each position in a protein structure, where output typically includes, for each residue position, the likelihoods for the 20 amino acid types with estimated reliability of the 20 likelihoods. + Side chain modelling + + + + + + + + + beta12orEarlier + Model loop conformation in protein structures. + Protein loop modelling + Protein modelling (loops) + + + Loop modelling + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Model protein-ligand (for example protein-peptide) binding using comparative modelling or other techniques. + Ligand-binding simulation + Protein-peptide docking + + + Methods aim to predict the position and orientation of a ligand bound to a protein receptor or enzyme. + Virtual screening is used in drug discovery to search libraries of small molecules in order to identify those molecules which are most likely to bind to a drug target (typically a protein receptor or enzyme). + Protein-ligand docking + + + + + + + + + + + + + + + + beta12orEarlier + Predict or optimise RNA sequences (sequence pools) with likely secondary and tertiary structure for in vitro selection. + Nucleic acid folding family identification + Structured RNA prediction and optimisation + + + RNA inverse folding + + + + + + + + + beta12orEarlier + Find single nucleotide polymorphisms (SNPs) - single nucleotide change in base positions - between sequences. Typically done for sequences from a high-throughput sequencing experiment that differ from a reference genome and which might, especially by reference to population frequency or functional data, indicate a polymorphism. + SNP calling + SNP discovery + Single nucleotide polymorphism detection + + + This includes functional SNPs for large-scale genotyping purposes, disease-associated non-synonymous SNPs etc. + SNP detection + + + + + + + + + + + + + + + beta12orEarlier + Generate a physical (radiation hybrid) map of genetic markers in a DNA sequence using provided radiation hybrid (RH) scores for one or more markers. + + + Radiation Hybrid Mapping + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Map the genetic architecture of dynamic complex traits. + + This can involve characterisation of the underlying quantitative trait loci (QTLs) or nucleotides (QTNs). + Functional mapping + true + + + + + + + + + + + + + + + beta12orEarlier + Infer haplotypes, either alleles at multiple loci that are transmitted together on the same chromosome, or a set of single nucleotide polymorphisms (SNPs) on a single chromatid that are statistically associated. + Haplotype inference + Haplotype map generation + Haplotype reconstruction + + + Haplotype inference can help in population genetic studies and the identification of complex disease genes, , and is typically based on aligned single nucleotide polymorphism (SNP) fragments. Haplotype comparison is a useful way to characterize the genetic variation between individuals. An individual's haplotype describes which nucleotide base occurs at each position for a set of common SNPs. Tools might use combinatorial functions (for example parsimony) or a likelihood function or model with optimisation such as minimum error correction (MEC) model, expectation-maximisation algorithm (EM), genetic algorithm or Markov chain Monte Carlo (MCMC). + Haplotype mapping + + + + + + + + + + + + + + + beta12orEarlier + Calculate linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome). + + + Linkage disequilibrium is identified where a combination of alleles (or genetic markers) occurs more or less frequently in a population than expected by chance formation of haplotypes. + Linkage disequilibrium calculation + + + + + + + + + + + + + + + + beta12orEarlier + Predict genetic code from analysis of codon usage data. + + + Genetic code prediction + + + + + + + + + + + + + + + + beta12orEarlier + Render a representation of a distribution that consists of group of data points plotted on a simple scale. + Categorical plot plotting + Dotplot plotting + + + Dot plots are useful when having not too many (e.g. 20) data points for each category. Example: draw a dotplot of sequence similarities identified from word-matching or character comparison. + Dot plot plotting + + + + + + + + + + + + + + + + beta12orEarlier + Align exactly two molecular sequences. + Pairwise alignment + + + Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Pairwise sequence alignment + + + + + + + + + + beta12orEarlier + Align more than two molecular sequences. + Multiple alignment + + + This includes methods that use an existing alignment, for example to incorporate sequences into an alignment, or combine several multiple alignments into a single, improved alignment. + Multiple sequence alignment + + + + + + + + + + beta12orEarlier + 1.6 + + + + Locally align exactly two molecular sequences. + + Local alignment methods identify regions of local similarity. + Pairwise sequence alignment generation (local) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Globally align exactly two molecular sequences. + + Global alignment methods identify similarity across the entire length of the sequences. + Pairwise sequence alignment generation (global) + true + + + + + + + + + beta12orEarlier + Locally align two or more molecular sequences. + Local sequence alignment + Sequence alignment (local) + Smith-Waterman + + + Local alignment methods identify regions of local similarity. + Local alignment + + + + + + + + + + beta12orEarlier + Globally align two or more molecular sequences. + Global sequence alignment + Sequence alignment (global) + + + Global alignment methods identify similarity across the entire length of the sequences. + Global alignment + + + + + + + + + + beta12orEarlier + 1.19 + + Align two or more molecular sequences with user-defined constraints. + + + Constrained sequence alignment + true + + + + + + + + + beta12orEarlier + 1.16 + + Align two or more molecular sequences using multiple methods to achieve higher quality. + + + Consensus-based sequence alignment + true + + + + + + + + + + + + + + + beta12orEarlier + Align multiple sequences using relative gap costs calculated from neighbors in a supplied phylogenetic tree. + Multiple sequence alignment (phylogenetic tree-based) + Multiple sequence alignment construction (phylogenetic tree-based) + Phylogenetic tree-based multiple sequence alignment construction + Sequence alignment (phylogenetic tree-based) + Sequence alignment generation (phylogenetic tree-based) + + + This is supposed to give a more biologically meaningful alignment than standard alignments. + Tree-based sequence alignment + + + + + + + + + beta12orEarlier + 1.6 + + + Align molecular secondary structure (represented as a 1D string). + + Secondary structure alignment generation + true + + + + + + + + + beta12orEarlier + 1.18 + + Align protein secondary structures. + + + Protein secondary structure alignment generation + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Align RNA secondary structures. + RNA secondary structure alignment construction + RNA secondary structure alignment generation + Secondary structure alignment construction (RNA) + + + RNA secondary structure alignment + + + + + + + + + beta12orEarlier + Align (superimpose) exactly two molecular tertiary structures. + Structure alignment (pairwise) + Pairwise protein structure alignment + + + Pairwise structure alignment + + + + + + + + + beta12orEarlier + Align (superimpose) more than two molecular tertiary structures. + Structure alignment (multiple) + Multiple protein structure alignment + + + This includes methods that use an existing alignment. + Multiple structure alignment + + + + + + + + + beta12orEarlier + beta13 + + + Align protein tertiary structures. + + Structure alignment (protein) + true + + + + + + + + + beta12orEarlier + beta13 + + + Align RNA tertiary structures. + + Structure alignment (RNA) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Locally align (superimpose) exactly two molecular tertiary structures. + + Local alignment methods identify regions of local similarity, common substructures etc. + Pairwise structure alignment generation (local) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Globally align (superimpose) exactly two molecular tertiary structures. + + Global alignment methods identify similarity across the entire structures. + Pairwise structure alignment generation (global) + true + + + + + + + + + beta12orEarlier + Locally align (superimpose) two or more molecular tertiary structures. + Structure alignment (local) + Local protein structure alignment + + + Local alignment methods identify regions of local similarity, common substructures etc. + Local structure alignment + + + + + + + + + beta12orEarlier + Globally align (superimpose) two or more molecular tertiary structures. + Structure alignment (global) + Global protein structure alignment + + + Global alignment methods identify similarity across the entire structures. + Global structure alignment + + + + + + + + + beta12orEarlier + 1.16 + + + + Align exactly two molecular profiles. + + Methods might perform one-to-one, one-to-many or many-to-many comparisons. + Profile-profile alignment (pairwise) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Align two or more molecular profiles. + + Sequence alignment generation (multiple profile) + true + + + + + + + + + beta12orEarlier + 1.16 + + + + + Align exactly two molecular Structural (3D) profiles. + + 3D profile-to-3D profile alignment (pairwise) + true + + + + + + + + + beta12orEarlier + 1.6 + + + + + Align two or more molecular 3D profiles. + + Structural profile alignment generation (multiple) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search and retrieve names of or documentation on bioinformatics tools, for example by keyword or which perform a particular function. + + Data retrieval (tool metadata) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Search and retrieve names of or documentation on bioinformatics databases or query terms, for example by keyword. + + Data retrieval (database metadata) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for large scale sequencing. + + + PCR primer design (for large scale sequencing) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs). + + + PCR primer design (for genotyping polymorphisms) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for gene transcription profiling. + + + PCR primer design (for gene transcription profiling) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers that are conserved across multiple genomes or species. + + + PCR primer design (for conserved primers) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers based on gene structure. + + + PCR primer design (based on gene structure) + true + + + + + + + + + beta12orEarlier + 1.13 + + Predict primers for methylation PCRs. + + + PCR primer design (for methylation PCRs) + true + + + + + + + + + beta12orEarlier + Sequence assembly by combining fragments using an existing backbone sequence, typically a reference genome. + Sequence assembly (mapping assembly) + + + The final sequence will resemble the backbone sequence. Mapping assemblers are usually much faster and less memory intensive than de-novo assemblers. + Mapping assembly + + + + + + + + + + beta12orEarlier + Sequence assembly by combining fragments without the aid of a reference sequence or genome. + De Bruijn graph + Sequence assembly (de-novo assembly) + + + De-novo assemblers are much slower and more memory intensive than mapping assemblers. + De-novo assembly + + + + + + + + + + + beta12orEarlier + The process of assembling many short DNA sequences together such that they represent the original chromosomes from which the DNA originated. + Genomic assembly + Sequence assembly (genome assembly) + Breakend assembly + + + Genome assembly + + + + + + + + + + beta12orEarlier + Sequence assembly for EST sequences (transcribed mRNA). + Sequence assembly (EST assembly) + + + Assemblers must handle (or be complicated by) alternative splicing, trans-splicing, single-nucleotide polymorphism (SNP), recoding, and post-transcriptional modification. + EST assembly + + + + + + + + + + + beta12orEarlier + Make sequence tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. + Tag to gene assignment + + + Sequence tag mapping assigns experimentally obtained sequence tags to known transcripts or annotate potential virtual sequence tags in a genome. + Sequence tag mapping + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) serial analysis of gene expression (SAGE) data. + + SAGE data processing + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) massively parallel signature sequencing (MPSS) data. + + MPSS data processing + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) sequencing by synthesis (SBS) data. + + SBS data processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Generate a heat map of expression data from e.g. microarray data. + Heat map construction + Heatmap generation + + + The heat map usually uses a coloring scheme to represent expression values. They can show how quantitative measurements were influenced by experimental conditions. + Heat map generation + + + + + + + + + + beta12orEarlier + 1.6 + + + Analyse one or more gene expression profiles, typically to interpret them in functional terms. + + Gene expression profile analysis + true + + + + + + + + + + + + + + + + + beta12orEarlier + Map an expression profile to known biological pathways, for example, to identify or reconstruct a pathway. + Pathway mapping + Gene expression profile pathway mapping + Gene to pathway mapping + Gene-to-pathway mapping + + + Expression profile pathway mapping + + + + + + + + + beta12orEarlier + 1.18 + + Assign secondary structure from protein coordinate data. + + + Protein secondary structure assignment (from coordinate data) + true + + + + + + + + + beta12orEarlier + 1.18 + + Assign secondary structure from circular dichroism (CD) spectroscopic data. + + + Protein secondary structure assignment (from CD data) + true + + + + + + + + + beta12orEarlier + 1.7 + + Assign a protein tertiary structure (3D coordinates) from raw X-ray crystallography data. + + + Protein structure assignment (from X-ray crystallographic data) + true + + + + + + + + + beta12orEarlier + 1.7 + + Assign a protein tertiary structure (3D coordinates) from raw NMR spectroscopy data. + + + Protein structure assignment (from NMR data) + true + + + + + + + + + beta12orEarlier + true + Construct a phylogenetic tree from a specific type of data. + Phylogenetic tree construction (data centric) + Phylogenetic tree generation (data centric) + + + Subconcepts of this concept reflect different types of data used to generate a tree, and provide an alternate axis for curation. + Phylogenetic inference (data centric) + + + + + + + + + beta12orEarlier + true + Construct a phylogenetic tree using a specific method. + Phylogenetic tree construction (method centric) + Phylogenetic tree generation (method centric) + + + Subconcepts of this concept reflect different computational methods used to generate a tree, and provide an alternate axis for curation. + Phylogenetic inference (method centric) + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from molecular sequences. + Phylogenetic tree construction (from molecular sequences) + Phylogenetic tree generation (from molecular sequences) + + + Methods typically compare multiple molecular sequence and estimate evolutionary distances and relationships to infer gene families or make functional predictions. + Phylogenetic inference (from molecular sequences) + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from continuous quantitative character data. + Phylogenetic tree construction (from continuous quantitative characters) + Phylogenetic tree generation (from continuous quantitative characters) + + + Phylogenetic inference (from continuous quantitative characters) + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from gene frequency data. + Phylogenetic tree construction (from gene frequencies) + Phylogenetic tree generation (from gene frequencies) + + + Phylogenetic inference (from gene frequencies) + + + + + + + + + + + + + + + beta12orEarlier + Phylogenetic tree construction from polymorphism data including microsatellites, RFLP (restriction fragment length polymorphisms), RAPD (random-amplified polymorphic DNA) and AFLP (amplified fragment length polymorphisms) data. + Phylogenetic tree construction (from polymorphism data) + Phylogenetic tree generation (from polymorphism data) + + + Phylogenetic inference (from polymorphism data) + + + + + + + + + beta12orEarlier + Construct a phylogenetic species tree, for example, from a genome-wide sequence comparison. + Phylogenetic species tree construction + Phylogenetic species tree generation + + + Species tree construction + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by computing a sequence alignment and searching for the tree with the fewest number of character-state changes from the alignment. + Phylogenetic tree construction (parsimony methods) + Phylogenetic tree generation (parsimony methods) + + + This includes evolutionary parsimony (invariants) methods. + Phylogenetic inference (parsimony methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by computing (or using precomputed) distances between sequences and searching for the tree with minimal discrepancies between pairwise distances. + Phylogenetic tree construction (minimum distance methods) + Phylogenetic tree generation (minimum distance methods) + + + This includes neighbor joining (NJ) clustering method. + Phylogenetic inference (minimum distance methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by relating sequence data to a hypothetical tree topology using a model of sequence evolution. + Phylogenetic tree construction (maximum likelihood and Bayesian methods) + Phylogenetic tree generation (maximum likelihood and Bayesian methods) + + + Maximum likelihood methods search for a tree that maximizes a likelihood function, i.e. that is most likely given the data and model. Bayesian analysis estimate the probability of tree for branch lengths and topology, typically using a Monte Carlo algorithm. + Phylogenetic inference (maximum likelihood and Bayesian methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by computing four-taxon trees (4-trees) and searching for the phylogeny that matches most closely. + Phylogenetic tree construction (quartet methods) + Phylogenetic tree generation (quartet methods) + + + Phylogenetic inference (quartet methods) + + + + + + + + + beta12orEarlier + Construct a phylogenetic tree by using artificial-intelligence methods, for example genetic algorithms. + Phylogenetic tree construction (AI methods) + Phylogenetic tree generation (AI methods) + + + Phylogenetic inference (AI methods) + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Identify a plausible model of DNA substitution that explains a molecular (DNA or protein) sequence alignment. + Nucleotide substitution modelling + + + DNA substitution modelling + + + + + + + + + beta12orEarlier + Analyse the shape (topology) of a phylogenetic tree. + Phylogenetic tree analysis (shape) + + + Phylogenetic tree topology analysis + + + + + + + + + + beta12orEarlier + Apply bootstrapping or other measures to estimate confidence of a phylogenetic tree. + + + Phylogenetic tree bootstrapping + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Construct a "gene tree" which represents the evolutionary history of the genes included in the study. This can be used to predict families of genes and gene function based on their position in a phylogenetic tree. + Phylogenetic tree analysis (gene family prediction) + + + Gene trees can provide evidence for gene duplication events, as well as speciation events. Where sequences from different homologs are included in a gene tree, subsequent clustering of the orthologs can demonstrate evolutionary history of the orthologs. + Gene tree construction + + + + + + + + + beta12orEarlier + Analyse a phylogenetic tree to identify allele frequency distribution and change that is subject to evolutionary pressures (natural selection, genetic drift, mutation and gene flow). Identify type of natural selection (such as stabilizing, balancing or disruptive). + Phylogenetic tree analysis (natural selection) + + + Stabilizing/purifying (directional) selection favors a single phenotype and tends to decrease genetic diversity as a population stabilizes on a particular trait, selecting out trait extremes or deleterious mutations. In contrast, balancing selection maintain genetic polymorphisms (or multiple alleles), whereas disruptive (or diversifying) selection favors individuals at both extremes of a trait. + Allele frequency distribution analysis + + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees to produce a consensus tree. + Phylogenetic tree construction (consensus) + Phylogenetic tree generation (consensus) + + + Methods typically test for topological similarity between trees using for example a congruence index. + Consensus tree construction + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees to detect subtrees or supertrees. + Phylogenetic sub/super tree detection + Subtree construction + Supertree construction + + + Phylogenetic sub/super tree construction + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more phylogenetic trees to calculate distances between trees. + + + Phylogenetic tree distances calculation + + + + + + + + + beta12orEarlier + Annotate a phylogenetic tree with terms from a controlled vocabulary. + + + Phylogenetic tree annotation + http://www.evolutionaryontology.org/cdao.owl#CDAOAnnotation + + + + + + + + + beta12orEarlier + 1.12 + + Predict and optimise peptide ligands that elicit an immunological response. + + + Immunogenicity prediction + true + + + + + + + + + + + + + + + beta12orEarlier + Predict or optimise DNA to elicit (via DNA vaccination) an immunological response. + + + DNA vaccine design + + + + + + + + + beta12orEarlier + 1.12 + + Reformat (a file or other report of) molecular sequence(s). + + + Sequence formatting + true + + + + + + + + + beta12orEarlier + 1.12 + + Reformat (a file or other report of) molecular sequence alignment(s). + + + Sequence alignment formatting + true + + + + + + + + + beta12orEarlier + 1.12 + + Reformat a codon usage table. + + + Codon usage table formatting + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Visualise, format or render a molecular sequence or sequences such as a sequence alignment, possibly with sequence features or properties shown. + Sequence rendering + Sequence alignment visualisation + + + Sequence visualisation + + + + + + + + + beta12orEarlier + 1.15 + + Visualise, format or print a molecular sequence alignment. + + + Sequence alignment visualisation + true + + + + + + + + + + + + + + + beta12orEarlier + Visualise, format or render sequence clusters. + Sequence cluster rendering + + + Sequence cluster visualisation + + + + + + + + + + + + + + + + beta12orEarlier + Render or visualise a phylogenetic tree. + Phylogenetic tree rendering + + + Phylogenetic tree visualisation + + + + + + + + + beta12orEarlier + 1.15 + + Visualise RNA secondary structure, knots, pseudoknots etc. + + + RNA secondary structure visualisation + true + + + + + + + + + beta12orEarlier + 1.15 + + Render and visualise protein secondary structure. + + + Protein secondary structure visualisation + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Visualise or render molecular 3D structure, for example a high-quality static picture or animation. + Structure rendering + Protein secondary structure visualisation + RNA secondary structure visualisation + + + This includes visualisation of protein secondary structure such as knots, pseudoknots etc. as well as tertiary and quaternary structure. + Structure visualisation + + + + + + + + + + + + + + + + beta12orEarlier + Visualise microarray or other expression data. + Expression data rendering + Gene expression data visualisation + Microarray data rendering + + + Expression data visualisation + + + + + + + + + beta12orEarlier + 1.19 + + Identify and analyse networks of protein interactions. + + + Protein interaction network visualisation + true + + + + + + + + + + + + + + + beta12orEarlier + Draw or visualise a DNA map. + DNA map drawing + Map rendering + + + Map drawing + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Render a sequence with motifs. + + Sequence motif rendering + true + + + + + + + + + + + + + + + beta12orEarlier + Draw or visualise restriction maps in DNA sequences. + + + Restriction map drawing + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Draw a linear maps of DNA. + + DNA linear map rendering + true + + + + + + + + + beta12orEarlier + DNA circular map rendering + Draw a circular maps of DNA, for example a plasmid map. + + + Plasmid map drawing + + + + + + + + + + + + + + + beta12orEarlier + Visualise operon structure etc. + Operon rendering + + + Operon drawing + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Identify folding families of related RNAs. + + Nucleic acid folding family identification + true + + + + + + + + + beta12orEarlier + 1.20 + + Compute energies of nucleic acid folding, e.g. minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants. + + + Nucleic acid folding energy calculation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Retrieve existing annotation (or documentation), typically annotation on a database entity. + + Use this concepts for tools which retrieve pre-existing annotations, not for example prediction methods that might make annotations. + Annotation retrieval + true + + + + + + + + + + + + + + + + beta12orEarlier + Predict the biological or biochemical role of a protein, or other aspects of a protein function. + Protein function analysis + Protein functional analysis + + + For functional properties that can be mapped to a sequence, use 'Sequence feature detection (protein)' instead. + Protein function prediction + + + + + + + + + + + + + + + + + beta12orEarlier + Compare the functional properties of two or more proteins. + + + Protein function comparison + + + + + + + + + beta12orEarlier + 1.6 + + + Submit a molecular sequence to a database. + + Sequence submission + true + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a known network of gene regulation. + Gene regulatory network comparison + Gene regulatory network modelling + Regulatory network comparison + Regulatory network modelling + + + Gene regulatory network analysis + + + + + + + + + beta12orEarlier + WHATIF:UploadPDB + Parse, prepare or load a user-specified data file so that it is available for use. + Data loading + Loading + + + Parsing + + + + + + + + + beta12orEarlier + 1.6 + + + Query a sequence data resource (typically a database) and retrieve sequences and / or annotation. + + This includes direct retrieval methods (e.g. the dbfetch program) but not those that perform calculations on the sequence. + Sequence retrieval + true + + + + + + + + + beta12orEarlier + 1.6 + + + WHATIF:DownloadPDB + WHATIF:EchoPDB + Query a tertiary structure data resource (typically a database) and retrieve structures, structure-related data and annotation. + + This includes direct retrieval methods but not those that perform calculations on the sequence or structure. + Structure retrieval + true + + + + + + + + + + beta12orEarlier + WHATIF:GetSurfaceDots + Calculate the positions of dots that are homogeneously distributed over the surface of a molecule. + + + A dot has three coordinates (x,y,z) and (typically) a color. + Surface rendering + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible surface') for each atom in a structure. + + + Waters are not considered. + Protein atom surface calculation (accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible molecular surface') for each atom in a structure. + + + Waters are not considered. + Protein atom surface calculation (accessible molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible surface') for each residue in a structure. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('vacuum accessible surface') for each residue in a structure. This is the accessibility of the residue when taken out of the protein together with the backbone atoms of any residue it is covalently bound to. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (vacuum accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible molecular surface') for each residue in a structure. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (accessible molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('vacuum molecular surface') for each residue in a structure. This is the accessibility of the residue when taken out of the protein together with the backbone atoms of any residue it is covalently bound to. + + + Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain). + Protein residue surface calculation (vacuum molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible molecular surface') for a structure as a whole. + + + Protein surface calculation (accessible molecular) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility ('accessible surface') for a structure as a whole. + + + Protein surface calculation (accessible) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate for each residue in a protein structure all its backbone torsion angles. + + + Backbone torsion angle calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate for each residue in a protein structure all its torsion angles. + + + Full torsion angle calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate for each cysteine (bridge) all its torsion angles. + + + Cysteine torsion angle calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + For each amino acid in a protein structure calculate the backbone angle tau. + + + Tau is the backbone angle N-Calpha-C (angle over the C-alpha). + Tau angle calculation + true + + + + + + + + + beta12orEarlier + WHATIF:ShowCysteineBridge + Detect cysteine bridges (from coordinate data) in a protein structure. + + + Cysteine bridge detection + + + + + + + + + beta12orEarlier + WHATIF:ShowCysteineFree + Detect free cysteines in a protein structure. + + + A free cysteine is neither involved in a cysteine bridge, nor functions as a ligand to a metal. + Free cysteine detection + + + + + + + + + + beta12orEarlier + WHATIF:ShowCysteineMetal + Detect cysteines that are bound to metal in a protein structure. + + + Metal-bound cysteine detection + + + + + + + + + beta12orEarlier + 1.12 + + Calculate protein residue contacts with nucleic acids in a structure. + + + Residue contact calculation (residue-nucleic acid) + true + + + + + + + + + beta12orEarlier + Calculate protein residue contacts with metal in a structure. + Residue-metal contact calculation + + + Protein-metal contact calculation + + + + + + + + + beta12orEarlier + 1.12 + + Calculate ion contacts in a structure (all ions for all side chain atoms). + + + Residue contact calculation (residue-negative ion) + true + + + + + + + + + beta12orEarlier + WHATIF:ShowBumps + Detect 'bumps' between residues in a structure, i.e. those with pairs of atoms whose Van der Waals' radii interpenetrate more than a defined distance. + + + Residue bump detection + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF:SymmetryContact + Calculate the number of symmetry contacts made by residues in a protein structure. + + + A symmetry contact is a contact between two atoms in different asymmetric unit. + Residue symmetry contact calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate contacts between residues and ligands in a protein structure. + + + Residue contact calculation (residue-ligand) + true + + + + + + + + + beta12orEarlier + WHATIF:HasSaltBridge + WHATIF:HasSaltBridgePlus + WHATIF:ShowSaltBridges + WHATIF:ShowSaltBridgesH + Calculate (and possibly score) salt bridges in a protein structure. + + + Salt bridges are interactions between oppositely charged atoms in different residues. The output might include the inter-atomic distance. + Salt bridge calculation + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF:ShowLikelyRotamers + WHATIF:ShowLikelyRotamers100 + WHATIF:ShowLikelyRotamers200 + WHATIF:ShowLikelyRotamers300 + WHATIF:ShowLikelyRotamers400 + WHATIF:ShowLikelyRotamers500 + WHATIF:ShowLikelyRotamers600 + WHATIF:ShowLikelyRotamers700 + WHATIF:ShowLikelyRotamers800 + WHATIF:ShowLikelyRotamers900 + Predict rotamer likelihoods for all 20 amino acid types at each position in a protein structure. + + + Output typically includes, for each residue position, the likelihoods for the 20 amino acid types with estimated reliability of the 20 likelihoods. + Rotamer likelihood prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF:ProlineMutationValue + Calculate for each position in a protein structure the chance that a proline, when introduced at this position, would increase the stability of the whole protein. + + + Proline mutation value calculation + true + + + + + + + + + beta12orEarlier + WHATIF: PackingQuality + Identify poorly packed residues in protein structures. + + + Residue packing validation + + + + + + + + + beta12orEarlier + WHATIF: ImproperQualityMax + WHATIF: ImproperQualitySum + Validate protein geometry, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc. An example is validation of a Ramachandran plot of a protein structure. + Ramachandran plot validation + + + Protein geometry validation + + + + + + + + + + beta12orEarlier + beta12orEarlier + + WHATIF: PDB_sequence + Extract a molecular sequence from a PDB file. + + + PDB file sequence retrieval + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify HET groups in PDB files. + + + A HET group usually corresponds to ligands, lipids, but might also (not consistently) include groups that are attached to amino acids. Each HET group is supposed to have a unique three letter code and a unique name which might be given in the output. + HET group detection + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Determine for residue the DSSP determined secondary structure in three-state (HSC). + + DSSP secondary structure assignment + true + + + + + + + + + beta12orEarlier + 1.12 + + WHATIF: PDBasXML + Reformat (a file or other report of) tertiary structure data. + + + Structure formatting + true + + + + + + + + + + + + + + + beta12orEarlier + Assign cysteine bonding state and disulfide bond partners in protein structures. + + + Protein cysteine and disulfide bond assignment + + + + + + + + + beta12orEarlier + 1.12 + + Identify poor quality amino acid positions in protein structures. + + + Residue validation + true + + + + + + + + + beta12orEarlier + 1.6 + + + WHATIF:MovedWaterPDB + Query a tertiary structure database and retrieve water molecules. + + Structure retrieval (water) + true + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict siRNA duplexes in RNA. + + + siRNA duplex prediction + + + + + + + + + + beta12orEarlier + Refine an existing sequence alignment. + + + Sequence alignment refinement + + + + + + + + + beta12orEarlier + 1.6 + + + Process an EMBOSS listfile (list of EMBOSS Uniform Sequence Addresses). + + Listfile processing + true + + + + + + + + + + beta12orEarlier + Perform basic (non-analytical) operations on a report or file of sequences (which might include features), such as file concatenation, removal or ordering of sequences, creation of subset or a new file of sequences. + + + Sequence file editing + + + + + + + + + beta12orEarlier + 1.6 + + + Perform basic (non-analytical) operations on a sequence alignment file, such as copying or removal and ordering of sequences. + + Sequence alignment file processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) physicochemical property data for small molecules. + + Small molecule data processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Search and retrieve documentation on a bioinformatics ontology. + + Data retrieval (ontology annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Query an ontology and retrieve concepts or relations. + + Data retrieval (ontology concept) + true + + + + + + + + + beta12orEarlier + Identify a representative sequence from a set of sequences, typically using scores from pair-wise alignment or other comparison of the sequences. + + + Representative sequence identification + + + + + + + + + beta12orEarlier + 1.6 + + + Perform basic (non-analytical) operations on a file of molecular tertiary structural data. + + Structure file processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Query a profile data resource and retrieve one or more profile(s) and / or associated annotation. + + This includes direct retrieval methods that retrieve a profile by, e.g. the profile name. + Data retrieval (sequence profile) + true + + + + + + + + + beta12orEarlier + Perform a statistical data operation of some type, e.g. calibration or validation. + Significance testing + Statistical analysis + Statistical test + Statistical testing + Expectation maximisation + Gibbs sampling + Hypothesis testing + Omnibus test + + + Statistical calculation + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Calculate a 3D-1D scoring matrix from analysis of protein sequence and structural data. + 3D-1D scoring matrix construction + + + A 3D-1D scoring matrix scores the probability of amino acids occurring in different structural environments. + 3D-1D scoring matrix generation + + + + + + + + + + + + + + + + beta12orEarlier + Visualise transmembrane proteins, typically the transmembrane regions within a sequence. + Transmembrane protein rendering + + + Transmembrane protein visualisation + + + + + + + + + beta12orEarlier + beta13 + + + An operation performing purely illustrative (pedagogical) purposes. + + Demonstration + true + + + + + + + + + beta12orEarlier + beta13 + + + Query a biological pathways database and retrieve annotation on one or more pathways. + + Data retrieval (pathway or network) + true + + + + + + + + + beta12orEarlier + beta13 + + + Query a database and retrieve one or more data identifiers. + + Data retrieval (identifier) + true + + + + + + + + + + beta12orEarlier + Calculate a density plot (of base composition) for a nucleotide sequence. + + + Nucleic acid density plotting + + + + + + + + + + + + + + + beta12orEarlier + Analyse one or more known molecular sequences. + Sequence analysis (general) + + + Sequence analysis + + + + + + + + + + beta12orEarlier + Analyse molecular sequence motifs. + Sequence motif processing + + + Sequence motif analysis + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) protein interaction data. + + Protein interaction data processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse protein structural data. + Structure analysis (protein) + + + Protein structure analysis + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) annotation of some type, typically annotation on an entry from a biological or biomedical database entity. + + Annotation processing + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse features in molecular sequences. + + Sequence feature analysis + true + + + + + + + + + + + + + + + beta12orEarlier + true + Basic (non-analytical) operations of some data, either a file or equivalent entity in memory, such that the same basic type of data is consumed as input and generated as output. + File handling + File processing + Report handling + Utility operation + Processing + + + Data handling + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse gene expression and regulation data. + + Gene expression analysis + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) one or more structural (3D) profile(s) or template(s) of some type. + + Structural profile processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) an index of (typically a file of) biological data. + + Data index processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) some type of sequence profile. + + Sequence profile processing + true + + + + + + + + + beta12orEarlier + 1.22 + + Analyse protein function, typically by processing protein sequence and/or structural data, and generate an informative report. + + + Protein function analysis + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse, simulate or predict protein folding, typically by processing sequence and / or structural data. For example, predict sites of nucleation or stabilisation key to protein folding. + Protein folding modelling + Protein folding simulation + Protein folding site prediction + + + Protein folding analysis + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse protein secondary structure data. + Secondary structure analysis (protein) + + + Protein secondary structure analysis + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) data on the physicochemical property of a molecule. + + Physicochemical property data processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Predict oligonucleotide primers or probes. + Primer and probe prediction + + + Primer and probe design + + + + + + + + + beta12orEarlier + 1.12 + + Process (read and / or write) data of a specific type, for example applying analytical methods. + + + Operation (typed) + true + + + + + + + + + + + + + + + beta12orEarlier + Search a database (or other data resource) with a supplied query and retrieve entries (or parts of entries) that are similar to the query. + Search + + + Typically the query is compared to each entry and high scoring matches (hits) are returned. For example, a BLAST search of a sequence database. + Database search + + + + + + + + + + + + + + + + beta12orEarlier + Retrieve an entry (or part of an entry) from a data resource that matches a supplied query. This might include some primary data and annotation. The query is a data identifier or other indexed term. For example, retrieve a sequence record with the specified accession number, or matching supplied keywords. + Data extraction + Retrieval + Data retrieval (metadata) + Metadata retrieval + + + Data retrieval + + + + + + + + + beta12orEarlier + true + Predict, recognise, detect or identify some properties of a biomolecule. + Detection + Prediction + Recognition + + + Prediction and recognition + + + + + + + + + beta12orEarlier + true + Compare two or more things to identify similarities. + + + Comparison + + + + + + + + + beta12orEarlier + true + Refine or optimise some data model. + + + Optimisation and refinement + + + + + + + + + + + + + + + beta12orEarlier + true + Model or simulate some biological entity or system, typically using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models. + Mathematical modelling + + + Modelling and simulation + + + + + + + + + beta12orEarlier + beta12orEarlier + + Perform basic operations on some data or a database. + + + Data handling + true + + + + + + + + + beta12orEarlier + true + Validate some data. + Quality control + + + Validation + + + + + + + + + beta12orEarlier + true + Map properties to positions on an biological entity (typically a molecular sequence or structure), or assemble such an entity from constituent parts. + Cartography + + + Mapping + + + + + + + + + beta12orEarlier + true + Design a biological entity (typically a molecular sequence or structure) with specific properties. + + + Design + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Process (read and / or write) microarray data. + + Microarray data processing + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Process (read and / or write) a codon usage table. + + Codon usage table processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve a codon usage table and / or associated annotation. + + Data retrieval (codon usage table) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a gene expression profile. + + Gene expression profile processing + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Gene set testing + Identify classes of genes or proteins that are over or under-represented in a large set of genes or proteins. For example analysis of a set of genes corresponding to a gene expression profile, annotated with Gene Ontology (GO) concepts, where eventual over-/under-representation of certain GO concept within the studied set of genes is revealed. + Functional enrichment analysis + GSEA + Gene-set over-represenation analysis + Gene set analysis + GO-term enrichment + Gene Ontology concept enrichment + Gene Ontology term enrichment + + + "Gene set analysis" (often used interchangeably or in an overlapping sense with "gene-set enrichment analysis") refers to the functional analysis (term enrichment) of a differentially expressed set of genes, rather than all genes analysed. + Analyse gene expression patterns to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc. + Gene sets can be defined beforehand by biological function, chromosome locations and so on. + The Gene Ontology (GO) is typically used, the input is a set of Gene IDs, and the output of the analysis is typically a ranked list of GO concepts, each associated with a p-value. + Gene-set enrichment analysis + + + + + + + + + + + + + beta12orEarlier + Predict a network of gene regulation. + + + Gene regulatory network prediction + + + + + + + + + beta12orEarlier + 1.12 + + + + Generate, analyse or handle a biological pathway or network. + + Pathway or network processing + true + + + + + + + + + + + + + + + beta12orEarlier + Process (read and / or write) RNA secondary structure data. + + + RNA secondary structure analysis + + + + + + + + + beta12orEarlier + beta13 + + Process (read and / or write) RNA tertiary structure data. + + + Structure processing (RNA) + true + + + + + + + + + + + + + + + beta12orEarlier + Predict RNA tertiary structure. + + + RNA structure prediction + + + + + + + + + + + + + + + beta12orEarlier + Predict DNA tertiary structure. + + + DNA structure prediction + + + + + + + + + beta12orEarlier + 1.12 + + Generate, process or analyse phylogenetic tree or trees. + + + Phylogenetic tree processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) protein secondary structure data. + + Protein secondary structure processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a network of protein interactions. + + Protein interaction network processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) one or more molecular sequences and associated annotation. + + Sequence processing + true + + + + + + + + + beta12orEarlier + 1.6 + + Process (read and / or write) a protein sequence and associated annotation. + + + Sequence processing (protein) + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a nucleotide sequence and associated annotation. + + Sequence processing (nucleic acid) + true + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more molecular sequences. + + + Sequence comparison + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a sequence cluster. + + Sequence cluster processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a sequence feature table. + + Feature table processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Detect, predict and identify genes or components of genes in DNA sequences, including promoters, coding regions, splice sites, etc. + Gene calling + Gene finding + Whole gene prediction + + + Includes methods that predict whole gene structure using a combination of multiple methods to achieve better predictions. + Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc. + Gene prediction + + + + + + + + + + beta12orEarlier + 1.16 + + Classify G-protein coupled receptors (GPCRs) into families and subfamilies. + + + GPCR classification + true + + + + + + + + + beta12orEarlier + Not sustainable to have protein type-specific concepts. + 1.19 + + + Predict G-protein coupled receptor (GPCR) coupling selectivity. + + GPCR coupling selectivity prediction + true + + + + + + + + + beta12orEarlier + 1.6 + + Process (read and / or write) a protein tertiary structure. + + + Structure processing (protein) + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility for each atom in a structure. + + + Waters are not considered. + Protein atom surface calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility for each residue in a structure. + + + Protein residue surface calculation + true + + + + + + + + + beta12orEarlier + 1.12 + + Calculate the solvent accessibility of a structure as a whole. + + + Protein surface calculation + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular sequence alignment. + + Sequence alignment processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict protein-protein binding sites. + Protein-protein binding site detection + + + Protein-protein binding site prediction + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular tertiary structure. + + Structure processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Annotate a DNA map of some type with terms from a controlled vocabulary. + + Map annotation + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a protein. + + Data retrieval (protein annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve a phylogenetic tree from a data resource. + + Data retrieval (phylogenetic tree) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a protein interaction. + + Data retrieval (protein interaction annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a protein family. + + Data retrieval (protein family annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on an RNA family. + + Data retrieval (RNA family annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a specific gene. + + Data retrieval (gene annotation) + true + + + + + + + + + beta12orEarlier + beta13 + + + Retrieve information on a specific genotype or phenotype. + + Data retrieval (genotype and phenotype annotation) + true + + + + + + + + + + beta12orEarlier + Compare the architecture of two or more protein structures. + + + Protein architecture comparison + + + + + + + + + + + beta12orEarlier + Identify the architecture of a protein structure. + + + Includes methods that try to suggest the most likely biological unit for a given protein X-ray crystal structure based on crystal symmetry and scoring of putative protein-protein interfaces. + Protein architecture recognition + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + The simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation. + Molecular dynamics simulation + Protein dynamics + + + Molecular dynamics + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a nucleic acid sequence (using methods that are only applicable to nucleic acid sequences). + Sequence analysis (nucleic acid) + Nucleic acid sequence alignment analysis + Sequence alignment analysis (nucleic acid) + + + Nucleic acid sequence analysis + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse a protein sequence (using methods that are only applicable to protein sequences). + Sequence analysis (protein) + Protein sequence alignment analysis + Sequence alignment analysis (protein) + + + Protein sequence analysis + + + + + + + + + + + + + + + beta12orEarlier + Analyse known molecular tertiary structures. + + + Structure analysis + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse nucleic acid tertiary structural data. + + + Nucleic acid structure analysis + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular secondary structure. + + Secondary structure processing + true + + + + + + + + + + + + + + + + beta12orEarlier + Compare two or more molecular tertiary structures. + + + Structure comparison + + + + + + + + + + + + + + + beta12orEarlier + Render a helical wheel representation of protein secondary structure. + Helical wheel rendering + + + Helical wheel drawing + + + + + + + + + + + + + + + + beta12orEarlier + Render a topology diagram of protein secondary structure. + Topology diagram rendering + + + Topology diagram drawing + + + + + + + + + + + + + + + + + + beta12orEarlier + Compare protein tertiary structures. + Structure comparison (protein) + + + Methods might identify structural neighbors, find structural similarities or define a structural core. + Protein structure comparison + + + + + + + + + + + beta12orEarlier + Compare protein secondary structures. + Protein secondary structure + Secondary structure comparison (protein) + Protein secondary structure alignment + + + Protein secondary structure comparison + + + + + + + + + + + + + + + beta12orEarlier + Predict the subcellular localisation of a protein sequence. + Protein cellular localization prediction + Protein subcellular localisation prediction + Protein targeting prediction + + + The prediction might include subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or export (extracellular proteins) of a protein. + Subcellular localisation prediction + + + + + + + + + + beta12orEarlier + 1.12 + + Calculate contacts between residues in a protein structure. + + + Residue contact calculation (residue-residue) + true + + + + + + + + + beta12orEarlier + 1.12 + + Identify potential hydrogen bonds between amino acid residues. + + + Hydrogen bond calculation (inter-residue) + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Predict the interactions of proteins with other proteins. + Protein-protein interaction detection + Protein-protein binding prediction + Protein-protein interaction prediction + + + Protein interaction prediction + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) codon usage data. + + Codon usage data processing + true + + + + + + + + + + + + + + + beta12orEarlier + Process (read and/or write) expression data from experiments measuring molecules (e.g. omics data), including analysis of one or more expression profiles, typically to interpret them in functional terms. + Expression data analysis + Gene expression analysis + Gene expression data analysis + Gene expression regulation analysis + Metagenomic inference + Microarray data analysis + Protein expression analysis + + + Metagenomic inference is the profiling of phylogenetic marker genes in order to predict metagenome function. + Expression analysis + + + + + + + + + + + beta12orEarlier + 1.6 + + Process (read and / or write) a network of gene regulation. + + + Gene regulatory network processing + true + + + + + + + + + beta12orEarlier + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + Generate, process or analyse a biological pathway or network. + + Pathway or network analysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse SAGE, MPSS or SBS experimental data, typically to identify or quantify mRNA transcripts. + + Sequencing-based expression profile data analysis + true + + + + + + + + + + + + + + + + + beta12orEarlier + Predict, analyse, characterize or model splice sites, splicing events and so on, typically by comparing multiple nucleic acid sequences. + Splicing model analysis + + + Splicing analysis + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Analyse raw microarray data. + + Microarray raw data analysis + true + + + + + + + + + beta12orEarlier + 1.19 + + + + Process (read and / or write) nucleic acid sequence or structural data. + + Nucleic acid analysis + true + + + + + + + + + beta12orEarlier + 1.19 + + + + Process (read and / or write) protein sequence or structural data. + + Protein analysis + true + + + + + + + + + beta12orEarlier + beta13 + + Process (read and / or write) molecular sequence data. + + + Sequence data processing + true + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) molecular structural data. + + Structural data processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + + Process (read and / or write) text. + + Text processing + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Analyse a protein sequence alignment, typically to detect features or make predictions. + + + Protein sequence alignment analysis + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Analyse a protein sequence alignment, typically to detect features or make predictions. + + + Nucleic acid sequence alignment analysis + true + + + + + + + + + beta12orEarlier + 1.18 + + + + Compare two or more nucleic acid sequences. + + + Nucleic acid sequence comparison + true + + + + + + + + + beta12orEarlier + 1.18 + + Compare two or more protein sequences. + + + Protein sequence comparison + true + + + + + + + + + + + + + + + beta12orEarlier + Back-translate a protein sequence into DNA. + + + DNA back-translation + + + + + + + + + beta12orEarlier + 1.8 + + Edit or change a nucleic acid sequence, either randomly or specifically. + + + Sequence editing (nucleic acid) + true + + + + + + + + + beta12orEarlier + 1.8 + + Edit or change a protein sequence, either randomly or specifically. + + + Sequence editing (protein) + true + + + + + + + + + beta12orEarlier + 1.22 + + Generate a nucleic acid sequence by some means. + + + Sequence generation (nucleic acid) + true + + + + + + + + + beta12orEarlier + 1.22 + + Generate a protein sequence by some means. + + + Sequence generation (protein) + true + + + + + + + + + beta12orEarlier + 1.8 + + Visualise, format or render a nucleic acid sequence. + + + Various nucleic acid sequence analysis methods might generate a sequence rendering but are not (for brevity) listed under here. + Nucleic acid sequence visualisation + true + + + + + + + + + beta12orEarlier + 1.8 + + Visualise, format or render a protein sequence. + + + Various protein sequence analysis methods might generate a sequence rendering but are not (for brevity) listed under here. + Protein sequence visualisation + true + + + + + + + + + + + beta12orEarlier + Compare nucleic acid tertiary structures. + Structure comparison (nucleic acid) + + + Nucleic acid structure comparison + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) nucleic acid tertiary structure data. + + Structure processing (nucleic acid) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate a map of a DNA sequence annotated with positional or non-positional features of some type. + + + DNA mapping + + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a DNA map of some type. + + Map data processing + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse the hydrophobic, hydrophilic or charge properties of a protein (from analysis of sequence or structural information). + + + Protein hydropathy calculation + + + + + + + + + + + + + + + + beta12orEarlier + Identify or predict catalytic residues, active sites or other ligand-binding sites in protein sequences or structures. + Protein binding site detection + Protein binding site prediction + + + Binding site prediction + + + + + + + + + + beta12orEarlier + Build clusters of similar structures, typically using scores from structural alignment methods. + Structural clustering + + + Structure clustering + + + + + + + + + + + + + + + beta12orEarlier + Generate a physical DNA map (sequence map) from analysis of sequence tagged sites (STS). + Sequence mapping + + + An STS is a short subsequence of known sequence and location that occurs only once in the chromosome or genome that is being mapped. Sources of STSs include 1. expressed sequence tags (ESTs), simple sequence length polymorphisms (SSLPs), and random genomic sequences from cloned genomic DNA or database sequences. + Sequence tagged site (STS) mapping + + + + + + + + + + beta12orEarlier + true + Compare two or more entities, typically the sequence or structure (or derivatives) of macromolecules, to identify equivalent subunits. + Alignment construction + Alignment generation + + + Alignment + + + + + + + + + + + beta12orEarlier + Calculate the molecular weight of a protein (or fragments) and compare it to another protein or reference data. Generally used for protein identification. + PMF + Peptide mass fingerprinting + Protein fingerprinting + + + Protein fragment weight comparison + + + + + + + + + + + + + + + beta12orEarlier + Compare the physicochemical properties of two or more proteins (or reference data). + + + Protein property comparison + + + + + + + + + beta12orEarlier + 1.18 + + + + Compare two or more molecular secondary structures. + + Secondary structure comparison + true + + + + + + + + + beta12orEarlier + 1.12 + + Generate a Hopp and Woods plot of antigenicity of a protein. + + + Hopp and Woods plotting + true + + + + + + + + + beta12orEarlier + 1.19 + + Generate a view of clustered quantitative data, annotated with textual information. + + + Cluster textual view generation + true + + + + + + + + + beta12orEarlier + Visualise clustered quantitative data as set of different profiles, where each profile is plotted versus different entities or samples on the X-axis. + Clustered quantitative data plotting + Clustered quantitative data rendering + Wave graph plotting + Microarray cluster temporal graph rendering + Microarray wave graph plotting + Microarray wave graph rendering + + + In the case of microarray data, visualise clustered gene expression data as a set of profiles, where each profile shows the gene expression values of a cluster across samples on the X-axis. + Clustering profile plotting + + + + + + + + + beta12orEarlier + 1.19 + + Generate a dendrograph of raw, preprocessed or clustered expression (e.g. microarray) data. + + + Dendrograph plotting + true + + + + + + + + + beta12orEarlier + Generate a plot of distances (distance or correlation matrix) between expression values. + Distance map rendering + Distance matrix plotting + Distance matrix rendering + Proximity map rendering + Correlation matrix plotting + Correlation matrix rendering + Microarray distance map rendering + Microarray proximity map plotting + Microarray proximity map rendering + + + Proximity map plotting + + + + + + + + + beta12orEarlier + Visualise clustered expression data using a tree diagram. + Dendrogram plotting + Dendrograph plotting + Dendrograph visualisation + Expression data tree or dendrogram rendering + Expression data tree visualisation + Microarray 2-way dendrogram rendering + Microarray checks view rendering + Microarray matrix tree plot rendering + Microarray tree or dendrogram rendering + + + Dendrogram visualisation + + + + + + + + + + beta12orEarlier + Visualize the results of a principal component analysis (orthogonal data transformation). For example, visualization of the principal components (essential subspace) coming from a Principal Component Analysis (PCA) on the trajectory atomistic coordinates of a molecular structure. + PCA plotting + Principal component plotting + ED visualization + Essential Dynamics visualization + Microarray principal component plotting + Microarray principal component rendering + PCA visualization + Principal modes visualization + + + Examples for visualization are the distribution of variance over the components, loading and score plots. + The use of Principal Component Analysis (PCA), a multivariate statistical analysis to obtain collective variables on the atomic positional fluctuations, helps to separate the configurational space in two subspaces: an essential subspace containing relevant motions, and another one containing irrelevant local fluctuations. + Principal component visualisation + + + + + + + + + beta12orEarlier + Render a graph in which the values of two variables are plotted along two axes; the pattern of the points reveals any correlation. + Scatter chart plotting + Microarray scatter plot plotting + Microarray scatter plot rendering + + + Comparison of two sets of quantitative data such as two samples of gene expression values. + Scatter plot plotting + + + + + + + + + beta12orEarlier + 1.18 + + Visualise gene expression data where each band (or line graph) corresponds to a sample. + + + Whole microarray graph plotting + true + + + + + + + + + beta12orEarlier + Visualise gene expression data after hierarchical clustering for representing hierarchical relationships. + Expression data tree-map rendering + Treemapping + Microarray tree-map rendering + + + Treemap visualisation + + + + + + + + + + beta12orEarlier + Generate a box plot, i.e. a depiction of groups of numerical data through their quartiles. + Box plot plotting + Microarray Box-Whisker plot plotting + + + In the case of micorarray data, visualise raw and pre-processed gene expression data, via a plot showing over- and under-expression along with mean, upper and lower quartiles. + Box-Whisker plot plotting + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Generate a physical (sequence) map of a DNA sequence showing the physical distance (base pairs) between features or landmarks such as restriction sites, cloned DNA fragments, genes and other genetic markers. + Physical cartography + + + Physical mapping + + + + + + + + + + beta12orEarlier + true + Apply analytical methods to existing data of a specific type. + + + This excludes non-analytical methods that read and write the same basic type of data (for that, see 'Data handling'). + Analysis + + + + + + + + + beta12orEarlier + 1.8 + + + Process or analyse an alignment of molecular sequences or structures. + + Alignment analysis + true + + + + + + + + + beta12orEarlier + 1.16 + + + + Analyse a body of scientific text (typically a full text article from a scientific journal). + + Article analysis + true + + + + + + + + + beta12orEarlier + beta13 + + + Analyse the interactions of two or more molecules (or parts of molecules) that are known to interact. + + Molecular interaction analysis + true + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + Analyse the interactions of proteins with other proteins. + Protein interaction analysis + Protein interaction raw data analysis + Protein interaction simulation + + + Includes analysis of raw experimental protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc. + Protein-protein interaction analysis + + + + + + + + + beta12orEarlier + WHATIF: HETGroupNames + WHATIF:HasMetalContacts + WHATIF:HasMetalContactsPlus + WHATIF:HasNegativeIonContacts + WHATIF:HasNegativeIonContactsPlus + WHATIF:HasNucleicContacts + WHATIF:ShowDrugContacts + WHATIF:ShowDrugContactsShort + WHATIF:ShowLigandContacts + WHATIF:ShowProteiNucleicContacts + Calculate contacts between residues, or between residues and other groups, in a protein structure, on the basis of distance calculations. + HET group detection + Residue contact calculation (residue-ligand) + Residue contact calculation (residue-metal) + Residue contact calculation (residue-negative ion) + Residue contact calculation (residue-nucleic acid) + WHATIF:SymmetryContact + + + This includes identifying HET groups, which usually correspond to ligands, lipids, but might also (not consistently) include groups that are attached to amino acids. Each HET group is supposed to have a unique three letter code and a unique name which might be given in the output. It can also include calculation of symmetry contacts, i.e. a contact between two atoms in different asymmetric unit. + Residue distance calculation + + + + + + + + + beta12orEarlier + 1.6 + + + + Process (read and / or write) an alignment of two or more molecular sequences, structures or derived data. + + Alignment processing + true + + + + + + + + + beta12orEarlier + 1.6 + + + Process (read and / or write) a molecular tertiary (3D) structure alignment. + + Structure alignment processing + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate codon usage bias, e.g. generate a codon usage bias plot. + Codon usage bias plotting + + + Codon usage bias calculation + + + + + + + + + beta12orEarlier + 1.22 + + Generate a codon usage bias plot. + + + Codon usage bias plotting + true + + + + + + + + + + + + + + + beta12orEarlier + Calculate the differences in codon usage fractions between two sequences, sets of sequences, codon usage tables etc. + + + Codon usage fraction calculation + + + + + + + + + beta12orEarlier + true + Assign molecular sequences, structures or other biological data to a specific group or category according to qualities it shares with that group or category. + + + Classification + + + + + + + + + beta12orEarlier + beta13 + + + Process (read and / or write) molecular interaction data. + + Molecular interaction data processing + true + + + + + + + + + + beta12orEarlier + Assign molecular sequence(s) to a group or category. + + + Sequence classification + + + + + + + + + + beta12orEarlier + Assign molecular structure(s) to a group or category. + + + Structure classification + + + + + + + + + beta12orEarlier + Compare two or more proteins (or some aspect) to identify similarities. + + + Protein comparison + + + + + + + + + beta12orEarlier + Compare two or more nucleic acids to identify similarities. + + + Nucleic acid comparison + + + + + + + + + beta12orEarlier + 1.19 + + Predict, recognise, detect or identify some properties of proteins. + + + Prediction and recognition (protein) + true + + + + + + + + + beta12orEarlier + 1.19 + + Predict, recognise, detect or identify some properties of nucleic acids. + + + Prediction and recognition (nucleic acid) + true + + + + + + + + + + + + + + + beta13 + Edit, convert or otherwise change a molecular tertiary structure, either randomly or specifically. + + + Structure editing + + + + + + + + + beta13 + Edit, convert or otherwise change a molecular sequence alignment, either randomly or specifically. + + + Sequence alignment editing + + + + + + + + + beta13 + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + Render (visualise) a biological pathway or network. + + Pathway or network visualisation + true + + + + + + + + + beta13 + 1.6 + + + Predict general (non-positional) functional properties of a protein from analysing its sequence. + + For functional properties that are positional, use 'Protein site detection' instead. + Protein function prediction (from sequence) + true + + + + + + + + + beta13 + (jison)This is a distinction made on basis of input; all features exist can be mapped to a sequence so this isn't needed (consolidate with "Protein feature detection"). + 1.17 + + + + Predict, recognise and identify functional or other key sites within protein sequences, typically by scanning for known motifs, patterns and regular expressions. + + + Protein sequence feature detection + true + + + + + + + + + beta13 + 1.18 + + + Calculate (or predict) physical or chemical properties of a protein, including any non-positional properties of the molecular sequence, from processing a protein sequence. + + + Protein property calculation (from sequence) + true + + + + + + + + + beta13 + 1.6 + + + Predict, recognise and identify positional features in proteins from analysing protein structure. + + Protein feature prediction (from structure) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta13 + Predict, recognise and identify positional features in proteins from analysing protein sequences or structures. + Protein feature prediction + Protein feature recognition + Protein secondary database search + Protein site detection + Protein site prediction + Protein site recognition + Sequence feature detection (protein) + Sequence profile database search + + + Features includes functional sites or regions, secondary structure, structural domains and so on. Methods might use fingerprints, motifs, profiles, hidden Markov models, sequence alignment etc to provide a mapping of a query protein sequence to a discriminatory element. This includes methods that search a secondary protein database (Prosite, Blocks, ProDom, Prints, Pfam etc.) to assign a protein sequence(s) to a known protein family or group. + Protein feature detection + + + + + + + + + beta13 + 1.6 + + + Screen a molecular sequence(s) against a database (of some type) to identify similarities between the sequence and database entries. + + Database search (by sequence) + true + + + + + + + + + + beta13 + Predict a network of protein interactions. + + + Protein interaction network prediction + + + + + + + + + + beta13 + Design (or predict) nucleic acid sequences with specific chemical or physical properties. + Gene design + + + Nucleic acid design + + + + + + + + + + beta13 + Edit a data entity, either randomly or specifically. + + + Editing + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.1 + Evaluate a DNA sequence assembly, typically for purposes of quality control. + Assembly QC + Assembly quality evaluation + Sequence assembly QC + Sequence assembly quality evaluation + + + Sequence assembly validation + + + + + + + + + + 1.1 + Align two or more (tpyically huge) molecular sequences that represent genomes. + Genome alignment construction + Whole genome alignment + + + Genome alignment + + + + + + + + + 1.1 + Reconstruction of a sequence assembly in a localised area. + + + Localised reassembly + + + + + + + + + 1.1 + Render and visualise a DNA sequence assembly. + Assembly rendering + Assembly visualisation + Sequence assembly rendering + + + Sequence assembly visualisation + + + + + + + + + + + + + + + 1.1 + Identify base (nucleobase) sequence from a fluorescence 'trace' data generated by an automated DNA sequencer. + Base calling + Phred base calling + Phred base-calling + + + Base-calling + + + + + + + + + + 1.1 + The mapping of methylation sites in a DNA (genome) sequence. Typically, the mapping of high-throughput bisulfite reads to the reference genome. + Bisulfite read mapping + Bisulfite sequence alignment + Bisulfite sequence mapping + + + Bisulfite mapping follows high-throughput sequencing of DNA which has undergone bisulfite treatment followed by PCR amplification; unmethylated cytosines are specifically converted to thymine, allowing the methylation status of cytosine in the DNA to be detected. + Bisulfite mapping + + + + + + + + + 1.1 + Identify and filter a (typically large) sequence data set to remove sequences from contaminants in the sample that was sequenced. + + + Sequence contamination filtering + + + + + + + + + 1.1 + 1.12 + + Trim sequences (typically from an automated DNA sequencer) to remove misleading ends. + + + For example trim polyA tails, introns and primer sequence flanking the sequence of amplified exons, or other unwanted sequence. + Trim ends + true + + + + + + + + + 1.1 + 1.12 + + Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences. + + + Trim vector + true + + + + + + + + + 1.1 + 1.12 + + Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence. + + + Trim to reference + true + + + + + + + + + 1.1 + Cut (remove) the end from a molecular sequence. + Trimming + Barcode sequence removal + Trim ends + Trim to reference + Trim vector + + + This includes end trimming, -- Trim sequences (typically from an automated DNA sequencer) to remove misleading ends. For example trim polyA tails, introns and primer sequence flanking the sequence of amplified exons, or other unwanted sequence.-- trimming to a reference sequence, --Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence. -- vector trimming -- Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences. + Sequence trimming + + + + + + + + + + 1.1 + Compare the features of two genome sequences. + + + Genomic elements that might be compared include genes, indels, single nucleotide polymorphisms (SNPs), retrotransposons, tandem repeats and so on. + Genome feature comparison + + + + + + + + + + + + + + + 1.1 + Detect errors in DNA sequences generated from sequencing projects). + Short read error correction + Short-read error correction + + + Sequencing error detection + + + + + + + + + 1.1 + Analyse DNA sequence data to identify differences between the genetic composition (genotype) of an individual compared to other individual's or a reference sequence. + + + Methods might consider cytogenetic analyses, copy number polymorphism (and calculate copy number calls for copy-number variation(CNV) regions), single nucleotide polymorphism (SNP), , rare copy number variation (CNV) identification, loss of heterozygosity data and so on. + Genotyping + + + + + + + + + 1.1 + Analyse a genetic variation, for example to annotate its location, alleles, classification, and effects on individual transcripts predicted for a gene model. + Genetic variation annotation + Sequence variation analysis + Variant analysis + Transcript variant analysis + + + Genetic variation annotation provides contextual interpretation of coding SNP consequences in transcripts. It allows comparisons to be made between variation data in different populations or strains for the same transcript. + Genetic variation analysis + + + + + + + + + + 1.1 + Align short oligonucleotide sequences (reads) to a larger (genomic) sequence. + Oligonucleotide alignment + Oligonucleotide alignment construction + Oligonucleotide alignment generation + Oligonucleotide mapping + Read alignment + Short oligonucleotide alignment + Short read alignment + Short read mapping + Short sequence read mapping + + + The purpose of read mapping is to identify the location of sequenced fragments within a reference genome and assumes that there is, in fact, at least local similarity between the fragment and reference sequences. + Read mapping + + + + + + + + + 1.1 + A variant of oligonucleotide mapping where a read is mapped to two separate locations because of possible structural variation. + Split-read mapping + + + Split read mapping + + + + + + + + + 1.1 + Analyse DNA sequences in order to identify a DNA 'barcode'; marker genes or any short fragment(s) of DNA that are useful to diagnose the taxa of biological organisms. + Community profiling + Sample barcoding + + + DNA barcoding + + + + + + + + + + 1.1 + 1.19 + + Identify single nucleotide change in base positions in sequencing data that differ from a reference genome and which might, especially by reference to population frequency or functional data, indicate a polymorphism. + + + SNP calling + true + + + + + + + + + 1.1 + "Polymorphism detection" and "Variant calling" are essentially the same thing - keeping the later as a more prevalent term nowadays. + 1.24 + + + Detect mutations in multiple DNA sequences, for example, from the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware. + + + Polymorphism detection + true + + + + + + + + + 1.1 + Visualise, format or render an image of a Chromatogram. + Chromatogram viewing + + + Chromatogram visualisation + + + + + + + + + 1.1 + Analyse cytosine methylation states in nucleic acid sequences. + Methylation profile analysis + + + Methylation analysis + + + + + + + + + 1.1 + 1.19 + + Determine cytosine methylation status of specific positions in a nucleic acid sequences. + + + Methylation calling + true + + + + + + + + + + 1.1 + Measure the overall level of methyl cytosines in a genome from analysis of experimental data, typically from chromatographic methods and methyl accepting capacity assay. + Genome methylation analysis + Global methylation analysis + Methylation level analysis (global) + + + Whole genome methylation analysis + + + + + + + + + 1.1 + Analysing the DNA methylation of specific genes or regions of interest. + Gene-specific methylation analysis + Methylation level analysis (gene-specific) + + + Gene methylation analysis + + + + + + + + + + 1.1 + Visualise, format or render a nucleic acid sequence that is part of (and in context of) a complete genome sequence. + Genome browser + Genome browsing + Genome rendering + Genome viewing + + + Genome visualisation + + + + + + + + + + 1.1 + Compare the sequence or features of two or more genomes, for example, to find matching regions. + Genomic region matching + + + Genome comparison + + + + + + + + + + + + + + + + 1.1 + Generate an index of a genome sequence. + Burrows-Wheeler + Genome indexing (Burrows-Wheeler) + Genome indexing (suffix arrays) + Suffix arrays + + + Many sequence alignment tasks involving many or very large sequences rely on a precomputed index of the sequence to accelerate the alignment. The Burrows-Wheeler Transform (BWT) is a permutation of the genome based on a suffix array algorithm. A suffix array consists of the lexicographically sorted list of suffixes of a genome. + Genome indexing + + + + + + + + + 1.1 + 1.12 + + Generate an index of a genome sequence using the Burrows-Wheeler algorithm. + + + The Burrows-Wheeler Transform (BWT) is a permutation of the genome based on a suffix array algorithm. + Genome indexing (Burrows-Wheeler) + true + + + + + + + + + 1.1 + 1.12 + + Generate an index of a genome sequence using a suffix arrays algorithm. + + + A suffix array consists of the lexicographically sorted list of suffixes of a genome. + Genome indexing (suffix arrays) + true + + + + + + + + + + + + + + + 1.1 + Analyse one or more spectra from mass spectrometry (or other) experiments. + Mass spectrum analysis + Spectrum analysis + + + Spectral analysis + + + + + + + + + + + + + + + + 1.1 + Identify peaks in a spectrum from a mass spectrometry, NMR, or some other spectrum-generating experiment. + Peak assignment + Peak finding + + + Peak detection + + + + + + + + + + + + + + + + 1.1 + Link together a non-contiguous series of genomic sequences into a scaffold, consisting of sequences separated by gaps of known length. The sequences that are linked are typically typically contigs; contiguous sequences corresponding to read overlaps. + Scaffold construction + Scaffold generation + + + Scaffold may be positioned along a chromosome physical map to create a "golden path". + Scaffolding + + + + + + + + + 1.1 + Fill the gaps in a sequence assembly (scaffold) by merging in additional sequences. + + + Different techniques are used to generate gap sequences to connect contigs, depending on the size of the gap. For small (5-20kb) gaps, PCR amplification and sequencing is used. For large (>20kb) gaps, fragments are cloned (e.g. in BAC (Bacterial artificial chromosomes) vectors) and then sequenced. + Scaffold gap completion + + + + + + + + + + 1.1 + Raw sequence data quality control. + Sequencing QC + Sequencing quality assessment + + + Analyse raw sequence data from a sequencing pipeline and identify (and possiby fix) problems. + Sequencing quality control + + + + + + + + + + 1.1 + Pre-process sequence reads to ensure (or improve) quality and reliability. + Sequence read pre-processing + + + For example process paired end reads to trim low quality ends remove short sequences, identify sequence inserts, detect chimeric reads, or remove low quality sequences including vector, adaptor, low complexity and contaminant sequences. Sequences might come from genomic DNA library, EST libraries, SSH library and so on. + Read pre-processing + + + + + + + + + + + + + + + 1.1 + Estimate the frequencies of different species from analysis of the molecular sequences, typically of DNA recovered from environmental samples. + + + Species frequency estimation + + + + + + + + + 1.1 + Identify putative protein-binding regions in a genome sequence from analysis of Chip-sequencing data or ChIP-on-chip data. + Protein binding peak detection + Peak-pair calling + + + Chip-sequencing combines chromatin immunoprecipitation (ChIP) with massively parallel DNA sequencing to generate a set of reads, which are aligned to a genome sequence. The enriched areas contain the binding sites of DNA-associated proteins. For example, a transcription factor binding site. ChIP-on-chip in contrast combines chromatin immunoprecipitation ('ChIP') with microarray ('chip'). "Peak-pair calling" is similar to "Peak calling" in the context of ChIP-exo. + Peak calling + + + + + + + + + 1.1 + Identify from molecular sequence analysis (typically from analysis of microarray or RNA-seq data) genes whose expression levels are significantly different between two sample groups. + Differential expression analysis + Differential gene analysis + Differential gene expression analysis + Differentially expressed gene identification + + + Differential gene expression analysis is used, for example, to identify which genes are up-regulated (increased expression) or down-regulated (decreased expression) between a group treated with a drug and a control groups. + Differential gene expression profiling + + + + + + + + + 1.1 + 1.21 + + Analyse gene expression patterns (typically from DNA microarray datasets) to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc. + + + Gene set testing + true + + + + + + + + + + 1.1 + Classify variants based on their potential effect on genes, especially functional effects on the expressed proteins. + + + Variants are typically classified by their position (intronic, exonic, etc.) in a gene transcript and (for variants in coding exons) by their effect on the protein sequence (synonymous, non-synonymous, frameshifting, etc.) + Variant classification + + + + + + + + + 1.1 + Identify biologically interesting variants by prioritizing individual variants, for example, homozygous variants absent in control genomes. + + + Variant prioritisation can be used for example to produce a list of variants responsible for 'knocking out' genes in specific genomes. Methods amino acid substitution, aggregative approaches, probabilistic approach, inheritance and unified likelihood-frameworks. + Variant prioritisation + + + + + + + + + + 1.1 + Detect, identify and map mutations, such as single nucleotide polymorphisms, short indels and structural variants, in multiple DNA sequences. Typically the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware, to study genomic alterations. + Variant mapping + Allele calling + Exome variant detection + Genome variant detection + Germ line variant calling + Mutation detection + Somatic variant calling + de novo mutation detection + + + Methods often utilise a database of aligned reads. + Somatic variant calling is the detection of variations established in somatic cells and hence not inherited as a germ line variant. + Variant detection + Variant calling + + + + + + + + + 1.1 + Detect large regions in a genome subject to copy-number variation, or other structural variations in genome(s). + Structural variation discovery + + + Methods might involve analysis of whole-genome array comparative genome hybridisation or single-nucleotide polymorphism arrays, paired-end mapping of sequencing data, or from analysis of short reads from new sequencing technologies. + Structural variation detection + + + + + + + + + 1.1 + Analyse sequencing data from experiments aiming to selectively sequence the coding regions of the genome. + Exome sequence analysis + + + Exome assembly + + + + + + + + + 1.1 + Analyse mapping density (read depth) of (typically) short reads from sequencing platforms, for example, to detect deletions and duplications. + + + Read depth analysis + + + + + + + + + 1.1 + Combine classical quantitative trait loci (QTL) analysis with gene expression profiling, for example, to describe describe cis- and trans-controlling elements for the expression of phenotype associated genes. + Gene expression QTL profiling + Gene expression quantitative trait loci profiling + eQTL profiling + + + Gene expression QTL analysis + + + + + + + + + 1.1 + Estimate the number of copies of loci of particular gene(s) in DNA sequences typically from gene-expression profiling technology based on microarray hybridisation-based experiments. For example, estimate copy number (or marker dosage) of a dominant marker in samples from polyploid plant cells or tissues, or chromosomal gains and losses in tumors. + Transcript copy number estimation + + + Methods typically implement some statistical model for hypothesis testing, and methods estimate total copy number, i.e. do not distinguish the two inherited chromosomes quantities (specific copy number). + Copy number estimation + + + + + + + + + 1.2 + Adapter removal + Remove forward and/or reverse primers from nucleic acid sequences (typically PCR products). + + + Primer removal + + + + + + + + + + + + + + + + + + + + + 1.2 + Infer a transcriptome sequence by analysis of short sequence reads. + + + Transcriptome assembly + + + + + + + + + 1.2 + 1.6 + + + Infer a transcriptome sequence without the aid of a reference genome, i.e. by comparing short sequences (reads) to each other. + + Transcriptome assembly (de novo) + true + + + + + + + + + 1.2 + 1.6 + + + Infer a transcriptome sequence by mapping short reads to a reference genome. + + Transcriptome assembly (mapping) + true + + + + + + + + + + + + + + + + + + + + + 1.3 + Convert one set of sequence coordinates to another, e.g. convert coordinates of one assembly to another, cDNA to genomic, CDS to genomic, protein translation to genomic etc. + + + Sequence coordinate conversion + + + + + + + + + 1.3 + Calculate similarity between 2 or more documents. + + + Document similarity calculation + + + + + + + + + + 1.3 + Cluster (group) documents on the basis of their calculated similarity. + + + Document clustering + + + + + + + + + + 1.3 + Recognise named entities, ontology concepts, tags, events, and dictionary terms within documents. + Concept mining + Entity chunking + Entity extraction + Entity identification + Event extraction + NER + Named-entity recognition + + + Named-entity and concept recognition + + + + + + + + + + + + 1.3 + Map data identifiers to one another for example to establish a link between two biological databases for the purposes of data integration. + Accession mapping + Identifier mapping + + + The mapping can be achieved by comparing identifier values or some other means, e.g. exact matches to a provided sequence. + ID mapping + + + + + + + + + 1.3 + Process data in such a way that makes it hard to trace to the person which the data concerns. + Data anonymisation + + + Anonymisation + + + + + + + + + 1.3 + (jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved. + 1.17 + + Search for and retrieve a data identifier of some kind, e.g. a database entry accession. + + + ID retrieval + true + + + + + + + + + + + + + + + + + + + + + 1.4 + Generate a checksum of a molecular sequence. + + + Sequence checksum generation + + + + + + + + + + + + + + + 1.4 + Construct a bibliography from the scientific literature. + Bibliography construction + + + Bibliography generation + + + + + + + + + 1.4 + Predict the structure of a multi-subunit protein and particularly how the subunits fit together. + + + Protein quaternary structure prediction + + + + + + + + + + + + + + + + + + + + + 1.4 + Analyse the surface properties of proteins or other macromolecules, including surface accessible pockets, interior inaccessible cavities etc. + + + Molecular surface analysis + + + + + + + + + 1.4 + Compare two or more ontologies, e.g. identify differences. + + + Ontology comparison + + + + + + + + + 1.4 + 1.9 + + Compare two or more ontologies, e.g. identify differences. + + + Ontology comparison + true + + + + + + + + + + + + + + + + 1.4 + Recognition of which format the given data is in. + Format identification + Format inference + Format recognition + + + 'Format recognition' is not a bioinformatics-specific operation, but of great relevance in bioinformatics. Should be removed from EDAM if/when captured satisfactorily in a suitable domain-generic ontology. + Format detection + + + + + + The has_input "Data" (data_0006) may cause visualisation or other problems although ontologically correct. But on the other hand it may be useful to distinguish from nullary operations without inputs. + + + + + + + + + 1.4 + Split a file containing multiple data items into many files, each containing one item. + File splitting + + + Splitting + + + + + + + + + 1.6 + true + Construct some data entity. + Construction + + + For non-analytical operations, see the 'Processing' branch. + Generation + + + + + + + + + 1.6 + (jison)This is a distinction made on basis of input; all features exist can be mapped to a sequence so this isn't needed. + 1.17 + + + Predict, recognise and identify functional or other key sites within nucleic acid sequences, typically by scanning for known motifs, patterns and regular expressions. + + + Nucleic acid sequence feature detection + true + + + + + + + + + 1.6 + Deposit some data in a database or some other type of repository or software system. + Data deposition + Data submission + Database deposition + Database submission + Submission + + + For non-analytical operations, see the 'Processing' branch. + Deposition + + + + + + + + + 1.6 + true + Group together some data entities on the basis of similarities such that entities in the same group (cluster) are more similar to each other than to those in other groups (clusters). + + + Clustering + + + + + + + + + 1.6 + 1.19 + + Construct some entity (typically a molecule sequence) from component pieces. + + + Assembly + true + + + + + + + + + 1.6 + true + Convert a data set from one form to another. + + + Conversion + + + + + + + + + 1.6 + Standardize or normalize data by some statistical method. + Normalisation + Standardisation + + + In the simplest normalisation means adjusting values measured on different scales to a common scale (often between 0.0 and 1.0), but can refer to more sophisticated adjustment whereby entire probability distributions of adjusted values are brought into alignment. Standardisation typically refers to an operation whereby a range of values are standardised to measure how many standard deviations a value is from its mean. + Standardisation and normalisation + + + + + + + + + 1.6 + Combine multiple files or data items into a single file or object. + + + Aggregation + + + + + + + + + + + + + + + 1.6 + Compare two or more scientific articles. + + + Article comparison + + + + + + + + + 1.6 + true + Mathematical determination of the value of something, typically a properly of a molecule. + + + Calculation + + + + + + + + + 1.6 + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + 1.24 + + + + + Predict a molecular pathway or network. + + Pathway or network prediction + true + + + + + + + + + 1.6 + 1.12 + + The process of assembling many short DNA sequences together such that they represent the original chromosomes from which the DNA originated. + + + Genome assembly + true + + + + + + + + + 1.6 + 1.19 + + Generate a graph, or other visual representation, of data, showing the relationship between two or more variables. + + + Plotting + true + + + + + + + + + + + + + + + 1.7 + Image processing + The analysis of a image (typically a digital image) of some type in order to extract information from it. + + + Image analysis + + + + + + + + + + 1.7 + Analysis of data from a diffraction experiment. + + + Diffraction data analysis + + + + + + + + + + + + + + + 1.7 + Analysis of cell migration images in order to study cell migration, typically in order to study the processes that play a role in the disease progression. + + + Cell migration analysis + + + + + + + + + + 1.7 + Processing of diffraction data into a corrected, ordered, and simplified form. + + + Diffraction data reduction + + + + + + + + + + + + + + + 1.7 + Measurement of neurites; projections (axons or dendrites) from the cell body of a neuron, from analysis of neuron images. + + + Neurite measurement + + + + + + + + + 1.7 + The evaluation of diffraction intensities and integration of diffraction maxima from a diffraction experiment. + Diffraction profile fitting + Diffraction summation integration + + + Diffraction data integration + + + + + + + + + 1.7 + Phase a macromolecular crystal structure, for example by using molecular replacement or experimental phasing methods. + + + Phasing + + + + + + + + + 1.7 + A technique used to construct an atomic model of an unknown structure from diffraction data, based upon an atomic model of a known structure, either a related protein or the same protein from a different crystal form. + + + The technique solves the phase problem, i.e. retrieve information concern phases of the structure. + Molecular replacement + + + + + + + + + 1.7 + A method used to refine a structure by moving the whole molecule or parts of it as a rigid unit, rather than moving individual atoms. + + + Rigid body refinement usually follows molecular replacement in the assignment of a structure from diffraction data. + Rigid body refinement + + + + + + + + + + + + + + + + 1.7 + An image processing technique that combines and analyze multiple images of a particulate sample, in order to produce an image with clearer features that are more easily interpreted. + + + Single particle analysis is used to improve the information that can be obtained by relatively low resolution techniques, , e.g. an image of a protein or virus from transmission electron microscopy (TEM). + Single particle analysis + + + + + + + + + + + 1.7 + true + This is two related concepts. + Compare (align and classify) multiple particle images from a micrograph in order to produce a representative image of the particle. + + + A micrograph can include particles in multiple different orientations and/or conformations. Particles are compared and organised into sets based on their similarity. Typically iterations of classification and alignment and are performed to optimise the final 3D EM map. + Single particle alignment and classification + + + + + + + + + + + + + + + 1.7 + Clustering of molecular sequences on the basis of their function, typically using information from an ontology of gene function, or some other measure of functional phenotype. + Functional sequence clustering + + + Functional clustering + + + + + + + + + 1.7 + Classifiication (typically of molecular sequences) by assignment to some taxonomic hierarchy. + Taxonomy assignment + Taxonomic profiling + + + Taxonomic classification + + + + + + + + + + + + + + + + 1.7 + The prediction of the degree of pathogenicity of a microorganism from analysis of molecular sequences. + Pathogenicity prediction + + + Virulence prediction + + + + + + + + + + 1.7 + Analyse the correlation patterns among features/molecules across across a variety of experiments, samples etc. + Co-expression analysis + Gene co-expression network analysis + Gene expression correlation + Gene expression correlation analysis + + + Expression correlation analysis + + + + + + + + + + + + + + + 1.7 + true + Identify a correlation, i.e. a statistical relationship between two random variables or two sets of data. + + + Correlation + + + + + + + + + + + + + + + + 1.7 + Compute the covariance model for (a family of) RNA secondary structures. + + + RNA structure covariance model generation + + + + + + + + + 1.7 + 1.18 + + Predict RNA secondary structure by analysis, e.g. probabilistic analysis, of the shape of RNA folds. + + + RNA secondary structure prediction (shape-based) + true + + + + + + + + + 1.7 + 1.18 + + Prediction of nucleic-acid folding using sequence alignments as a source of data. + + + Nucleic acid folding prediction (alignment-based) + true + + + + + + + + + 1.7 + Count k-mers (substrings of length k) in DNA sequence data. + + + k-mer counting is used in genome and transcriptome assembly, metagenomic sequencing, and for error correction of sequence reads. + k-mer counting + + + + + + + + + + + + + + + 1.7 + Reconstructing the inner node labels of a phylogenetic tree from its leafes. + Phylogenetic tree reconstruction + Gene tree reconstruction + Species tree reconstruction + + + Note that this is somewhat different from simply analysing an existing tree or constructing a completely new one. + Phylogenetic reconstruction + + + + + + + + + 1.7 + Generate some data from a chosen probibalistic model, possibly to evaluate algorithms. + + + Probabilistic data generation + + + + + + + + + + 1.7 + Generate sequences from some probabilistic model, e.g. a model that simulates evolution. + + + Probabilistic sequence generation + + + + + + + + + + + + + + + + 1.7 + Identify or predict causes for antibiotic resistance from molecular sequence analysis. + + + Antimicrobial resistance prediction + + + + + + + + + + + + + + + 1.8 + Analysis of a set of objects, such as genes, annotated with given categories, where eventual over-/under-representation of certain categories within the studied set of objects is revealed. + Enrichment + Over-representation analysis + Functional enrichment + + + Categories from a relevant ontology can be used. The input is typically a set of genes or other biological objects, possibly represented by their identifiers, and the output of the analysis is typically a ranked list of categories, each associated with a statistical metric of over-/under-representation within the studied data. + Enrichment analysis + + + + + + + + + + + + + + + 1.8 + Analyse a dataset with respect to concepts from an ontology of chemical structure, leveraging chemical similarity information. + Chemical class enrichment + + + Chemical similarity enrichment + + + + + + + + + 1.8 + Plot an incident curve such as a survival curve, death curve, mortality curve. + + + Incident curve plotting + + + + + + + + + 1.8 + Identify and map patterns of genomic variations. + + + Methods often utilise a database of aligned reads. + Variant pattern analysis + + + + + + + + + 1.8 + 1.12 + + Model some biological system using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models. + + + Mathematical modelling + true + + + + + + + + + + + + + + + 1.9 + Visualise images resulting from various types of microscopy. + + + Microscope image visualisation + + + + + + + + + 1.9 + Annotate an image of some sort, typically with terms from a controlled vocabulary. + + + Image annotation + + + + + + + + + 1.9 + Replace missing data with substituted values, usually by using some statistical or other mathematical approach. + Data imputation + + + Imputation + + + + + + + + + + 1.9 + Visualise, format or render data from an ontology, typically a tree of terms. + Ontology browsing + + + Ontology visualisation + + + + + + + + + 1.9 + A method for making numerical assessments about the maximum percent of time that a conformer of a flexible macromolecule can exist and still be compatible with the experimental data. + + + Maximum occurrence analysis + + + + + + + + + + 1.9 + Compare the models or schemas used by two or more databases, or any other general comparison of databases rather than a detailed comparison of the entries themselves. + Data model comparison + Schema comparison + + + Database comparison + + + + + + + + + 1.9 + 1.24 + + + + Simulate the bevaviour of a biological pathway or network. + + Notions of pathway and network were mixed up, EDAM 1.24 disentangles them. + Network simulation + true + + + + + + + + + 1.9 + Analyze read counts from RNA-seq experiments. + + + RNA-seq read count analysis + + + + + + + + + 1.9 + Identify and remove redundancy from a set of small molecule structures. + + + Chemical redundancy removal + + + + + + + + + 1.9 + Analyze time series data from an RNA-seq experiment. + + + RNA-seq time series data analysis + + + + + + + + + 1.9 + Simulate gene expression data, e.g. for purposes of benchmarking. + + + Simulated gene expression data generation + + + + + + + + + 1.12 + Identify semantic relations among entities and concepts within a text, using text mining techniques. + Relation discovery + Relation inference + Relationship discovery + Relationship extraction + Relationship inference + + + Relation extraction + + + + + + + + + + + + + + + 1.12 + Re-adjust the output of mass spectrometry experiments with shifted ppm values. + + + Mass spectra calibration + + + + + + + + + + + + + + + 1.12 + Align multiple data sets using information from chromatography and/or peptide identification, from mass spectrometry experiments. + + + Chromatographic alignment + + + + + + + + + + + + + + + 1.12 + The removal of isotope peaks in a spectrum, to represent the fragment ion as one data point. + Deconvolution + + + Deisotoping is commonly done to reduce complexity, and done in conjunction with the charge state deconvolution. + Deisotoping + + + + + + + + + + + + + + + + 1.12 + Technique for determining the amount of proteins in a sample. + Protein quantitation + + + Protein quantification + + + + + + + + + + + + + + + 1.12 + Determination of peptide sequence from mass spectrum. + Peptide-spectrum-matching + + + Peptide identification + + + + + + + + + + + + + + + + + + + + + 1.12 + Calculate the isotope distribution of a given chemical species. + + + Isotopic distributions calculation + + + + + + + + + 1.12 + Prediction of retention time in a mass spectrometry experiment based on compositional and structural properties of the separated species. + Retention time calculation + + + Retention time prediction + + + + + + + + + 1.12 + Quantification without the use of chemical tags. + + + Label-free quantification + + + + + + + + + 1.12 + Quantification based on the use of chemical tags. + + + Labeled quantification + + + + + + + + + 1.12 + Quantification by Selected/multiple Reaction Monitoring workflow (XIC quantitation of precursor / fragment mass pair). + + + MRM/SRM + + + + + + + + + 1.12 + Calculate number of identified MS2 spectra as approximation of peptide / protein quantity. + + + Spectral counting + + + + + + + + + 1.12 + Quantification analysis using stable isotope labeling by amino acids in cell culture. + + + SILAC + + + + + + + + + 1.12 + Quantification analysis using the AB SCIEX iTRAQ isobaric labelling workflow, wherein 2-8 reporter ions are measured in MS2 spectra near 114 m/z. + + + iTRAQ + + + + + + + + + 1.12 + Quantification analysis using labeling based on 18O-enriched H2O. + + + 18O labeling + + + + + + + + + 1.12 + Quantification analysis using the Thermo Fisher tandem mass tag labelling workflow. + + + TMT-tag + + + + + + + + + 1.12 + Quantification analysis using chemical labeling by stable isotope dimethylation. + + + Stable isotope dimethyl labelling + + + + + + + + + 1.12 + Peptide sequence tags are used as piece of information about a peptide obtained by tandem mass spectrometry. + + + Tag-based peptide identification + + + + + + + + + + 1.12 + Analytical process that derives a peptide's amino acid sequence from its tandem mass spectrum (MS/MS) without the assistance of a sequence database. + + + de Novo sequencing + + + + + + + + + 1.12 + Identification of post-translational modifications (PTMs) of peptides/proteins in mass spectrum. + + + PTM identification + + + + + + + + + + 1.12 + Determination of best matches between MS/MS spectrum and a database of protein or nucleic acid sequences. + + + Peptide database search + + + + + + + + + 1.12 + Peptide database search for identification of known and unknown PTMs looking for mass difference mismatches. + Modification-tolerant peptide database search + Unrestricted peptide database search + + + Blind peptide database search + + + + + + + + + 1.12 + 1.19 + + + Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search. + + + Validation of peptide-spectrum matches + true + + + + + + + + + + 1.12 + Validation of peptide-spectrum matches + Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search, and by comparison to search results with a database containing incorrect information. + + + Target-Decoy + + + + + + + + + 1.12 + Analyse data in order to deduce properties of an underlying distribution or population. + Empirical Bayes + + + Statistical inference + + + + + + + + + + 1.12 + A statistical calculation to estimate the relationships among variables. + Regression + + + Regression analysis + + + + + + + + + + + + + + + + + 1.12 + Model a metabolic network. This can include 1) reconstruction to break down a metabolic pathways into reactions, enzymes, and other relevant information, and compilation of this into a mathematical model and 2) simulations of metabolism based on the model. + + + Metabolic network reconstruction + Metabolic network simulation + Metabolic pathway simulation + Metabolic reconstruction + + + The terms and synyonyms here reflect that for practical intents and purposes, "pathway" and "network" can be treated the same. + Metabolic network modelling + + + + + + + + + + 1.12 + Predict the effect or function of an individual single nucleotide polymorphism (SNP). + + + SNP annotation + + + + + + + + + 1.12 + Prediction of genes or gene components from first principles, i.e. without reference to existing genes. + Gene prediction (ab-initio) + + + Ab-initio gene prediction + + + + + + + + + + 1.12 + Prediction of genes or gene components by reference to homologous genes. + Empirical gene finding + Empirical gene prediction + Evidence-based gene prediction + Gene prediction (homology-based) + Similarity-based gene prediction + Homology prediction + Orthology prediction + + + Homology-based gene prediction + + + + + + + + + + 1.12 + Construction of a statistical model, or a set of assumptions around some observed data, usually by describing a set of probability distributions which approximate the distribution of data. + + + Statistical modelling + + + + + + + + + + + 1.12 + Compare two or more molecular surfaces. + + + Molecular surface comparison + + + + + + + + + 1.12 + Annotate one or more sequences with functional information, such as cellular processes or metaobolic pathways, by reference to a controlled vocabulary - invariably the Gene Ontology (GO). + Sequence functional annotation + + + Gene functional annotation + + + + + + + + + 1.12 + Variant filtering is used to eliminate false positive variants based for example on base calling quality, strand and position information, and mapping info. + + + Variant filtering + + + + + + + + + 1.12 + Identify binding sites in nucleic acid sequences that are statistically significantly differentially bound between sample groups. + + + Differential binding analysis + + + + + + + + + + 1.13 + Analyze data from RNA-seq experiments. + + + RNA-Seq analysis + + + + + + + + + 1.13 + Visualise, format or render a mass spectrum. + + + Mass spectrum visualisation + + + + + + + + + 1.13 + Filter a set of files or data items according to some property. + Sequence filtering + rRNA filtering + + + Filtering + + + + + + + + + 1.14 + Identification of the best reference for mapping for a specific dataset from a list of potential references, when performing genetic variation analysis. + + + Reference identification + + + + + + + + + 1.14 + Label-free quantification by integration of ion current (ion counting). + Ion current integration + + + Ion counting + + + + + + + + + 1.14 + Chemical tagging free amino groups of intact proteins with stable isotopes. + ICPL + + + Isotope-coded protein label + + + + + + + + + 1.14 + Labeling all proteins and (possibly) all amino acids using C-13 or N-15 enriched grown medium or feed. + C-13 metabolic labeling + N-15 metabolic labeling + + + This includes N-15 metabolic labeling (labeling all proteins and (possibly) all amino acids using N-15 enriched grown medium or feed) and C-13 metabolic labeling (labeling all proteins and (possibly) all amino acids using C-13 enriched grown medium or feed). + Metabolic labeling + + + + + + + + + 1.15 + Construction of a single sequence assembly of all reads from different samples, typically as part of a comparative metagenomic analysis. + Sequence assembly (cross-assembly) + + + Cross-assembly + + + + + + + + + 1.15 + The comparison of samples from a metagenomics study, for example, by comparison of metagenome shotgun reads or assembled contig sequences, by comparison of functional profiles, or some other method. + + + Sample comparison + + + + + + + + + + 1.15 + Differential protein analysis + The analysis, using proteomics techniques, to identify proteins whose encoding genes are differentially expressed under a given experimental setup. + Differential protein expression analysis + + + Differential protein expression profiling + + + + + + + + + 1.15 + 1.17 + + The analysis, using any of diverse techniques, to identify genes that are differentially expressed under a given experimental setup. + + + Differential gene expression analysis + true + + + + + + + + + 1.15 + Visualise, format or render data arising from an analysis of multiple samples from a metagenomics/community experiment. + + + Multiple sample visualisation + + + + + + + + + 1.15 + The extrapolation of empirical characteristics of individuals or populations, backwards in time, to their common ancestors. + Ancestral sequence reconstruction + Character mapping + Character optimisation + + + Ancestral reconstruction is often used to recover possible ancestral character states of ancient, extinct organisms. + Ancestral reconstruction + + + + + + + + + 1.16 + Site localisation of post-translational modifications in peptide or protein mass spectra. + PTM scoring + Site localisation + + + PTM localisation + + + + + + + + + 1.16 + Operations concerning the handling and use of other tools. + Endpoint management + + + Service management + + + + + + + + + 1.16 + An operation supporting the browsing or discovery of other tools and services. + + + Service discovery + + + + + + + + + 1.16 + An operation supporting the aggregation of other services (at least two) into a functional unit, for the automation of some task. + + + Service composition + + + + + + + + + 1.16 + An operation supporting the calling (invocation) of other tools and services. + + + Service invocation + + + + + + + + + + + + + + + 1.16 + A data mining method typically used for studying biological networks based on pairwise correlations between variables. + WGCNA + Weighted gene co-expression network analysis + + + Weighted correlation network analysis + + + + + + + + + + + + + + + + 1.16 + Identification of protein, for example from one or more peptide identifications by tandem mass spectrometry. + Protein inference + + + Protein identification + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.16 + Text annotation is the operation of adding notes, data and metadata, recognised entities and concepts, and their relations to a text (such as a scientific article). + Article annotation + Literature annotation + + + Text annotation + + + + + + + + + + 1.17 + A method whereby data on several variants are "collapsed" into a single covariate based on regions such as genes. + + + Genome-wide association studies (GWAS) analyse a genome-wide set of genetic variants in different individuals to see if any variant is associated with a trait. Traditional association techniques can lack the power to detect the significance of rare variants individually, or measure their compound effect (rare variant burden). "Collapsing methods" were developed to overcome these problems. + Collapsing methods + + + + + + + + + 1.17 + miRNA analysis + The analysis of microRNAs (miRNAs) : short, highly conserved small noncoding RNA molecules that are naturally occurring plant and animal genomes. + miRNA expression profiling + + + miRNA expression analysis + + + + + + + + + 1.17 + Counting and summarising the number of short sequence reads that map to genomic features. + + + Read summarisation + + + + + + + + + 1.17 + A technique whereby molecules with desired properties and function are isolated from libraries of random molecules, through iterative cycles of selection, amplification, and mutagenesis. + + + In vitro selection + + + + + + + + + 1.17 + The calculation of species richness for a number of individual samples, based on plots of the number of species as a function of the number of samples (rarefaction curves). + Species richness assessment + + + Rarefaction + + + + + + + + + + 1.17 + An operation which groups reads or contigs and assigns them to operational taxonomic units. + Binning + Binning shotgun reads + + + Binning methods use one or a combination of compositional features or sequence similarity. + Read binning + + + + + + + + + + 1.17 + true + Counting and measuring experimentally determined observations into quantities. + Quantitation + + + Quantification + + + + + + + + + 1.17 + Quantification of data arising from RNA-Seq high-throughput sequencing, typically the quantification of transcript abundances durnig transcriptome analysis in a gene expression study. + RNA-Seq quantitation + + + RNA-Seq quantification + + + + + + + + + + + + + + + 1.17 + Match experimentally measured mass spectrum to a spectrum in a spectral library or database. + + + Spectral library search + + + + + + + + + 1.17 + Sort a set of files or data items according to some property. + + + Sorting + + + + + + + + + 1.17 + Mass spectra identification of compounds that are produced by living systems. Including polyketides, terpenoids, phenylpropanoids, alkaloids and antibiotics. + De novo metabolite identification + Fragmenation tree generation + Metabolite identification + + + Natural product identification + + + + + + + + + 1.19 + Identify and assess specific genes or regulatory regions of interest that are differentially methylated. + Differentially-methylated region identification + + + DMR identification + + + + + + + + + 1.21 + + + Genotyping of multiple loci, typically characterizing microbial species isolates using internal fragments of multiple housekeeping genes. + MLST + + + Multilocus sequence typing + + + + + + + + + + + + + + + + + 1.21 + Calculate a theoretical mass spectrometry spectra for given sequences. + Spectrum prediction + + + Spectrum calculation + + + + + + + + + + + + + + + 1.22 + 3D visualization of a molecular trajectory. + + + Trajectory visualization + + + + + + + + + + 1.22 + Compute Essential Dynamics (ED) on a simulation trajectory: an analysis of molecule dynamics using PCA (Principal Component Analysis) applied to the atomic positional fluctuations. + ED + PCA + Principal modes + + + Principal Component Analysis (PCA) is a multivariate statistical analysis to obtain collective variables and reduce the dimensionality of the system. + Essential dynamics + + + + + + + + + + + + + + + + + + + + + 1.22 + Obtain force field parameters (charge, bonds, dihedrals, etc.) from a molecule, to be used in molecular simulations. + Ligand parameterization + Molecule parameterization + + + Forcefield parameterisation + + + + + + + + + 1.22 + Analyse DNA sequences in order to determine an individual's DNA characteristics, for example in criminal forensics, parentage testing and so on. + DNA fingerprinting + DNA profiling + + + + + + + + + + 1.22 + Predict or detect active sites in proteins; the region of an enzyme which binds a substrate bind and catalyses a reaction. + Active site detection + + + Active site prediction + + + + + + + + + + 1.22 + Predict or detect ligand-binding sites in proteins; a region of a protein which reversibly binds a ligand for some biochemical purpose, such as transport or regulation of protein function. + Ligand-binding site detection + Peptide-protein binding prediction + + + Ligand-binding site prediction + + + + + + + + + + 1.22 + Predict or detect metal ion-binding sites in proteins. + Metal-binding site detection + Protein metal-binding site prediction + + + Metal-binding site prediction + + + + + + + + + + + + + + + + + + + + + + 1.22 + Model or simulate protein-protein binding using comparative modelling or other techniques. + Protein docking + + + Protein-protein docking + + + + + + + + + + + + + + + + + + + + + 1.22 + Predict DNA-binding proteins. + DNA-binding protein detection + DNA-protein interaction prediction + Protein-DNA interaction prediction + + + DNA-binding protein prediction + + + + + + + + + + + + + + + + + + + + + 1.22 + Predict RNA-binding proteins. + Protein-RNA interaction prediction + RNA-binding protein detection + RNA-protein interaction prediction + + + RNA-binding protein prediction + + + + + + + + + 1.22 + Predict or detect RNA-binding sites in protein sequences. + Protein-RNA binding site detection + Protein-RNA binding site prediction + RNA binding site detection + + + RNA binding site prediction + + + + + + + + + 1.22 + Predict or detect DNA-binding sites in protein sequences. + Protein-DNA binding site detection + Protein-DNA binding site prediction + DNA binding site detection + + + DNA binding site prediction + + + + + + + + + + + + + + + + 1.22 + Identify or predict intrinsically disordered regions in proteins. + + + Protein disorder prediction + + + + + + + + + + 1.22 + Extract structured information from unstructured ("free") or semi-structured textual documents. + IE + + + Information extraction + + + + + + + + + + 1.22 + Retrieve resources from information systems matching a specific information need. + + + Information retrieval + + + + + + + + + + + + + + + 1.24 + Study of genomic feature structure, variation, function and evolution at a genomic scale. + Genomic analysis + Genome analysis + + + + + + + + + 1.24 + The determination of cytosine methylation status of specific positions in a nucleic acid sequences (usually reads from a bisulfite sequencing experiment). + + + Methylation calling + + + + + + + + + + + + + + + 1.24 + The identification of changes in DNA sequence or chromosome structure, usually in the context of diagnostic tests for disease, or to study ancestry or phylogeny. + Genetic testing + + + This can include indirect methods which reveal the results of genetic changes, such as RNA analysis to indicate gene expression, or biochemical analysis to identify expressed proteins. + DNA testing + + + + + + + + + + 1.24 + The processing of reads from high-throughput sequencing machines. + + + Sequence read processing + + + + + + + + + + + + + + + + 1.24 + Render (visualise) a network - typically a biological network of some sort. + Network rendering + Protein interaction network rendering + Protein interaction network visualisation + Network visualisation + + + + + + + + + + + + + + + + 1.24 + Render (visualise) a biological pathway. + Pathway rendering + + + Pathway visualisation + + + + + + + + + + + + + + + + + + + + + 1.24 + Generate, process or analyse a biological network. + Biological network analysis + Biological network modelling + Biological network prediction + Network comparison + Network modelling + Network prediction + Network simulation + Network topology simulation + + + Network analysis + + + + + + + + + + + + + + + + + + + + + + 1.24 + Generate, process or analyse a biological pathway. + Biological pathway analysis + Biological pathway modelling + Biological pathway prediction + Functional pathway analysis + Pathway comparison + Pathway modelling + Pathway prediction + Pathway simulation + + + Pathway analysis + + + + + + + + + + + 1.24 + Predict a metabolic pathway. + + + Metabolic pathway prediction + + + + + + + + + 1.24 + Assigning sequence reads to separate groups / files based on their index tag (sample origin). + Sequence demultiplexing + + + NGS sequence runs are often performed with multiple samples pooled together. In such cases, an index tag (or "barcode") - a unique sequence of between 6 and 12bp - is ligated to each sample's genetic material so that the sequence reads from different samples can be identified. The process of demultiplexing (dividing sequence reads into separate files for each index tag/sample) may be performed automatically by the sequencing hardware. Alternatively the reads may be lumped together in one file with barcodes still attached, requiring you to do the splitting using software. In such cases, a "mapping" file is used which indicates which barcodes correspond to which samples. + Demultiplexing + + + + + + + + + + + + + + + + + + + + + 1.24 + A process used in statistics, machine learning, and information theory that reduces the number of random variables by obtaining a set of principal variables. + Dimension reduction + + + Dimensionality reduction + + + + + + + + + + + + + + + + + + + + + + 1.24 + A dimensionality reduction process that selects a subset of relevant features (variables, predictors) for use in model construction. + Attribute selection + Variable selection + Variable subset selection + + + Feature selection + + + + + + + + + + + + + + + + + + + + + + 1.24 + A dimensionality reduction process which builds (ideally) informative and non-redundant values (features) from an initial set of measured data, to aid subsequent generalization, learning or interpretation. + Feature projection + + + Feature extraction + + + + + + + + + + + + + + + + + + + + + + 1.24 + Virtual screening is used in drug discovery to identify potential drug compounds. It involves searching libraries of small molecules in order to identify those molecules which are most likely to bind to a drug target (typically a protein receptor or enzyme). + Ligand-based screening + Ligand-based virtual screening + Structure-based screening + Structured-based virtual screening + Virtual ligand screening + + + Virtual screening is widely used for lead identification, lead optimization, and scaffold hopping during drug design and discovery. + Virtual screening + + + + + + + + + 1.24 + The application of phylogenetic and other methods to estimate paleogeographical events such as speciation. + Biogeographic dating + Speciation dating + Species tree dating + Tree-dating + + + Tree dating + + + + + + + + + + + + + + + + + + + + + + 1.24 + The development and use of mathematical models and systems analysis for the description of ecological processes, and applications such as the sustainable management of resources. + + + Ecological modelling + + + + + + + + + 1.24 + Mapping between gene tree nodes and species tree nodes or branches, to analyse and account for possible differences between gene histories and species histories, explaining this in terms of gene-scale events such as duplication, loss, transfer etc. + Gene tree / species tree reconciliation + + + Methods typically test for topological similarity between trees using for example a congruence index. + Phylogenetic tree reconciliation + + + + + + + + + 1.24 + The detection of genetic selection, or (the end result of) the process by which certain traits become more prevalent in a species than other traits. + + + Selection detection + + + + + + + + + 1.25 + A statistical procedure that uses an orthogonal transformation to convert a set of observations of possibly correlated variables into a set of values of linearly uncorrelated variables called principal components. + + + Principal component analysis + + + + + + + + + + 1.25 + Identify where sections of the genome are repeated and the number of repeats in the genome varies between individuals. + CNV detection + + + Copy number variation detection + + + + + + + + + 1.25 + Identify deletion events causing the number of repeats in the genome to vary between individuals. + + + Deletion detection + + + + + + + + + 1.25 + Identify duplication events causing the number of repeats in the genome to vary between individuals. + + + Duplication detection + + + + + + + + + 1.25 + Identify copy number variations which are complex, e.g. multi-allelic variations that have many structural alleles and have rearranged multiple times in the ancestral genomes. + + + Complex CNV detection + + + + + + + + + 1.25 + Identify amplification events causing the number of repeats in the genome to vary between individuals. + + + Amplification detection + + + + + + + + + + + + + + + + 1.25 + Predict adhesins in protein sequences. + + + An adhesin is a cell-surface component that facilitate the adherence of a microorganism to a cell or surface. They are important virulence factors during establishment of infection and thus are targeted during vaccine development approaches that seek to block adhesin function and prevent adherence to host cell. + Adhesin prediction + + + + + + + + + 1.25 + Design new protein molecules with specific structural or functional properties. + Protein redesign + Rational protein design + de novo protein design + + + Protein design + + + + + + + + + + 1.25 + The design of small molecules with specific biological activity, such as inhibitors or modulators for proteins that are of therapeutic interest. This can involve the modification of individual atoms, the addition or removal of molecular fragments, and the use reaction-based design to explore tractable synthesis options for the small molecule. + Drug design + Ligand-based drug design + Structure-based drug design + Structure-based small molecule design + Small molecule design can involve assessment of target druggability and flexibility, molecular docking, in silico fragment screening, molecular dynamics, and homology modeling. + There are two broad categories of small molecule design techniques when applied to the design of drugs: ligand-based drug design (e.g. ligand similarity) and structure-based drug design (ligand docking) methods. Ligand similarity methods exploit structural similarities to known active ligands, whereas ligand docking methods use the 3D structure of a target protein to predict the binding modes and affinities of ligands to it. + Small molecule design + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The estimation of the power of a test; that is the probability of correctly rejecting the null hypothesis when it is false. + Estimation of statistical power + Power analysis + + + Power test + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The prediction of DNA modifications (e.g. N4-methylcytosine and N6-Methyladenine) using, for example, statistical models. + + + DNA modification prediction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The analysis and simulation of disease transmission using, for example, statistical methods such as the SIR-model. + + + Disease transmission analysis + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.26 + The correction of p-values from multiple statistical tests to correct for false positives. + FDR estimation + False discovery rate estimation + + + Multiple testing correction + + + + + + + + + + beta12orEarlier + true + A category denoting a rather broad domain or field of interest, of study, application, work, data, or technology. Topics have no clearly defined borders between each other. + sumo:FieldOfStudy + + + Topic + + + + + + + + + + + + + + + + + beta12orEarlier + true + The processing and analysis of nucleic acid sequence, structural and other data. + Nucleic acid bioinformatics + Nucleic acid informatics + Nucleic_acids + Nucleic acid physicochemistry + Nucleic acid properties + + + Nucleic acids + + http://purl.bioontology.org/ontology/MSH/D017422 + http://purl.bioontology.org/ontology/MSH/D017423 + + + + + + + + + beta12orEarlier + true + Archival, processing and analysis of protein data, typically molecular sequence and structural data. + Protein bioinformatics + Protein informatics + Proteins + Protein databases + + + Proteins + + http://purl.bioontology.org/ontology/MSH/D020539 + + + + + + + + + beta12orEarlier + 1.13 + + The structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids. + + + Metabolites + true + + + + + + + + + beta12orEarlier + true + The archival, processing and analysis of molecular sequences (monomer composition of polymers) including molecular sequence data resources, sequence sites, alignments, motifs and profiles. + Sequence_analysis + Biological sequences + Sequence databases + + + + Sequence analysis + + http://purl.bioontology.org/ontology/MSH/D017421 + + + + + + + + + beta12orEarlier + true + The curation, processing, analysis and prediction of data about the structure of biological molecules, typically proteins and nucleic acids and other macromolecules. + Biomolecular structure + Structural bioinformatics + Structure_analysis + Computational structural biology + Molecular structure + Structure data resources + Structure databases + Structures + + + + This includes related concepts such as structural properties, alignments and structural motifs. + Structure analysis + + http://purl.bioontology.org/ontology/MSH/D015394 + + + + + + + + + beta12orEarlier + true + The prediction of molecular structure, including the prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features, and the folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations. + Structure_prediction + DNA structure prediction + Nucleic acid design + Nucleic acid folding + Nucleic acid structure prediction + Protein fold recognition + Protein structure prediction + RNA structure prediction + + + This includes the recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s), for example by threading, or the alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment). + Structure prediction + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + The alignment (equivalence between sites) of molecular sequences, structures or profiles (representing a sequence or structure alignment). + + Alignment + true + + + + + + + + + + beta12orEarlier + true + The study of evolutionary relationships amongst organisms. + Phylogeny + Phylogenetic clocks + Phylogenetic dating + Phylogenetic simulation + Phylogenetic stratigraphy + Phylogeny reconstruction + + + + This includes diverse phylogenetic methods, including phylogenetic tree construction, typically from molecular sequence or morphological data, methods that simulate DNA sequence evolution, a phylogenetic tree or the underlying data, or which estimate or use molecular clock and stratigraphic (age) data, methods for studying gene evolution etc. + Phylogeny + + http://purl.bioontology.org/ontology/MSH/D010802 + + + + + + + + + + beta12orEarlier + true + The study of gene or protein functions and their interactions in totality in a given organism, tissue, cell etc. + Functional_genomics + + + + Functional genomics + + + + + + + + + + beta12orEarlier + true + The conceptualisation, categorisation and nomenclature (naming) of entities or phenomena within biology or bioinformatics. This includes formal ontologies, controlled vocabularies, structured glossary, symbols and terminology or other related resource. + Ontology_and_terminology + Applied ontology + Ontologies + Ontology + Ontology relations + Terminology + Upper ontology + + + + Ontology and terminology + + http://purl.bioontology.org/ontology/MSH/D002965 + + + + + + + + + beta12orEarlier + 1.13 + + + + The search and query of data sources (typically databases or ontologies) in order to retrieve entries or other information. + + Information retrieval + true + + + + + + + + + beta12orEarlier + true + VT 1.5.6 Bioinformatics + The archival, curation, processing and analysis of complex biological data. + Bioinformatics + + + + This includes data processing in general, including basic handling of files and databases, datatypes, workflows and annotation. + Bioinformatics + + http://purl.bioontology.org/ontology/MSH/D016247 + + + + + + + + + beta12orEarlier + true + Computer graphics + VT 1.2.5 Computer graphics + Rendering (drawing on a computer screen) or visualisation of molecular sequences, structures or other biomolecular data. + Data rendering + Data_visualisation + + + Data visualisation + + + + + + + + + + beta12orEarlier + 1.3 + + + The study of the thermodynamic properties of a nucleic acid. + + Nucleic acid thermodynamics + true + + + + + + + + + + beta12orEarlier + The archival, curation, processing and analysis of nucleic acid structural information, such as whole structures, structural features and alignments, and associated annotation. + Nucleic acid structure + Nucleic_acid_structure_analysis + DNA melting + DNA structure + Nucleic acid denaturation + Nucleic acid thermodynamics + RNA alignment + RNA structure + RNA structure alignment + + + Includes secondary and tertiary nucleic acid structural data, nucleic acid thermodynamic, thermal and conformational properties including DNA or DNA/RNA denaturation (melting) etc. + Nucleic acid structure analysis + + + + + + + + + + beta12orEarlier + RNA sequences and structures. + RNA + Small RNA + + + RNA + + + + + + + + + + beta12orEarlier + 1.3 + + + Topic for the study of restriction enzymes, their cleavage sites and the restriction of nucleic acids. + + Nucleic acid restriction + true + + + + + + + + + beta12orEarlier + true + The mapping of complete (typically nucleotide) sequences. Mapping (in the sense of short read alignment, or more generally, just alignment) has application in RNA-Seq analysis (mapping of transcriptomics reads), variant discovery (e.g. mapping of exome capture), and re-sequencing (mapping of WGS reads). + Mapping + Genetic linkage + Linkage + Linkage mapping + Synteny + + + This includes resources that aim to identify, map or analyse genetic markers in DNA sequences, for example to produce a genetic (linkage) map of a chromosome or genome or to analyse genetic linkage and synteny. It also includes resources for physical (sequence) maps of a DNA sequence showing the physical distance (base pairs) between features or landmarks such as restriction sites, cloned DNA fragments, genes and other genetic markers. It also covers for example the alignment of sequences of (typically millions) of short reads to a reference genome. + Mapping + + + + + + + + + + beta12orEarlier + 1.3 + + + The study of codon usage in nucleotide sequence(s), genetic codes and so on. + + Genetic codes and codon usage + true + + + + + + + + + beta12orEarlier + The translation of mRNA into protein and subsequent protein processing in the cell. + Protein_expression + Translation + + + + Protein expression + + + + + + + + + + beta12orEarlier + 1.3 + + + Methods that aims to identify, predict, model or analyse genes or gene structure in DNA sequences. + + This includes the study of promoters, coding regions, splice sites, etc. Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc. + Gene finding + true + + + + + + + + + beta12orEarlier + 1.3 + + + The transcription of DNA into mRNA. + + Transcription + true + + + + + + + + + beta12orEarlier + beta13 + + + Promoters in DNA sequences (region of DNA that facilitates the transcription of a particular gene by binding RNA polymerase and transcription factor proteins). + + Promoters + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + The folding (in 3D space) of nucleic acid molecules. + + + Nucleic acid folding + true + + + + + + + + + beta12orEarlier + true + Gene structure, regions which make an RNA product and features such as promoters, coding regions, gene fusion, splice sites etc. + Gene features + Gene_structure + Fusion genes + + + This includes operons (operators, promoters and genes) from a bacterial genome. For example the operon leader and trailer gene, gene composition of the operon and associated information. + This includes the study of promoters, coding regions etc. + Gene structure + + + + + + + + + + beta12orEarlier + true + Protein and peptide identification, especially in the study of whole proteomes of organisms. + Proteomics + Bottom-up proteomics + Discovery proteomics + MS-based targeted proteomics + MS-based untargeted proteomics + Metaproteomics + Peptide identification + Protein and peptide identification + Quantitative proteomics + Targeted proteomics + Top-down proteomics + + + + Includes metaproteomics: proteomics analysis of an environmental sample. + Proteomics includes any methods (especially high-throughput) that separate, characterize and identify expressed proteins such as mass spectrometry, two-dimensional gel electrophoresis and protein microarrays, as well as in-silico methods that perform proteolytic or mass calculations on a protein sequence and other analyses of protein production data, for example in different cells or tissues. + Proteomics + + http://purl.bioontology.org/ontology/MSH/D040901 + + + + + + + + + + beta12orEarlier + true + The elucidation of the three dimensional structure for all (available) proteins in a given organism. + Structural_genomics + + + + Structural genomics + + + + + + + + + + beta12orEarlier + true + The study of the physical and biochemical properties of peptides and proteins, for example the hydrophobic, hydrophilic and charge properties of a protein. + Protein physicochemistry + Protein_properties + Protein hydropathy + + + Protein properties + + + + + + + + + + beta12orEarlier + true + Protein-protein, protein-DNA/RNA and protein-ligand interactions, including analysis of known interactions and prediction of putative interactions. + Protein_interactions + Protein interaction map + Protein interaction networks + Protein interactome + Protein-DNA interaction + Protein-DNA interactions + Protein-RNA interaction + Protein-RNA interactions + Protein-ligand interactions + Protein-nucleic acid interactions + Protein-protein interactions + + + This includes experimental (e.g. yeast two-hybrid) and computational analysis techniques. + Protein interactions + + + + + + + + + + beta12orEarlier + true + Protein stability, folding (in 3D space) and protein sequence-structure-function relationships. This includes for example study of inter-atomic or inter-residue interactions in protein (3D) structures, the effect of mutation, and the design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein. + Protein_folding_stability_and_design + Protein design + Protein folding + Protein residue interactions + Protein stability + Rational protein design + + + Protein folding, stability and design + + + + + + + + + + + beta12orEarlier + beta13 + + + Two-dimensional gel electrophoresis image and related data. + + Two-dimensional gel electrophoresis + true + + + + + + + + + beta12orEarlier + 1.13 + + An analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase. + + + Mass spectrometry + true + + + + + + + + + beta12orEarlier + beta13 + + + Protein microarray data. + + Protein microarrays + true + + + + + + + + + beta12orEarlier + 1.3 + + + The study of the hydrophobic, hydrophilic and charge properties of a protein. + + Protein hydropathy + true + + + + + + + + + beta12orEarlier + The study of how proteins are transported within and without the cell, including signal peptides, protein subcellular localisation and export. + Protein_targeting_and_localisation + Protein localisation + Protein sorting + Protein targeting + + + Protein targeting and localisation + + + + + + + + + + beta12orEarlier + 1.3 + + + Enzyme or chemical cleavage sites and proteolytic or mass calculations on a protein sequence. + + Protein cleavage sites and proteolysis + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + The comparison of two or more protein structures. + + + Use this concept for methods that are exclusively for protein structure. + Protein structure comparison + true + + + + + + + + + beta12orEarlier + 1.3 + + + The processing and analysis of inter-atomic or inter-residue interactions in protein (3D) structures. + + Protein residue interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein-protein interactions, individual interactions and networks, protein complexes, protein functional coupling etc. + + Protein-protein interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein-ligand (small molecule) interactions. + + Protein-ligand interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein-DNA/RNA interactions. + + Protein-nucleic acid interactions + true + + + + + + + + + beta12orEarlier + 1.3 + + + The design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein. + + Protein design + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + G-protein coupled receptors (GPCRs). + + G protein-coupled receptors (GPCR) + true + + + + + + + + + beta12orEarlier + true + Carbohydrates, typically including structural information. + Carbohydrates + + + Carbohydrates + + + + + + + + + + beta12orEarlier + true + Lipids and their structures. + Lipidomics + Lipids + + + Lipids + + + + + + + + + + beta12orEarlier + true + Small molecules of biological significance, typically archival, curation, processing and analysis of structural information. + Small_molecules + Amino acids + Chemical structures + Drug structures + Drug targets + Drugs and target structures + Metabolite structures + Peptides + Peptides and amino acids + Target structures + Targets + Toxins + Toxins and targets + CHEBI:23367 + + + Small molecules include organic molecules, metal-organic compounds, small polypeptides, small polysaccharides and oligonucleotides. Structural data is usually included. + This concept excludes macromolecules such as proteins and nucleic acids. + This includes the structures of drugs, drug target, their interactions and binding affinities. Also the structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids. Also the physicochemical, biochemical or structural properties of amino acids or peptides. Also structural and associated data for toxic chemical substances. + Small molecules + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Edit, convert or otherwise change a molecular sequence, either randomly or specifically. + + Sequence editing + true + + + + + + + + + beta12orEarlier + true + The archival, processing and analysis of the basic character composition of molecular sequences, for example character or word frequency, ambiguity, complexity, particularly regions of low complexity, and repeats or the repetitive nature of molecular sequences. + Sequence_composition_complexity_and_repeats + Low complexity sequences + Nucleic acid repeats + Protein repeats + Protein sequence repeats + Repeat sequences + Sequence complexity + Sequence composition + Sequence repeats + + + This includes repetitive elements within a nucleic acid sequence, e.g. long terminal repeats (LTRs); sequences (typically retroviral) directly repeated at both ends of a sequence and other types of repeating unit. + This includes short repetitive subsequences (repeat sequences) in a protein sequence. + Sequence composition, complexity and repeats + + + + + + + + + beta12orEarlier + 1.3 + + + Conserved patterns (motifs) in molecular sequences, that (typically) describe functional or other key sites. + + Sequence motifs + true + + + + + + + + + beta12orEarlier + 1.12 + + The comparison of two or more molecular sequences, for example sequence alignment and clustering. + + + The comparison might be on the basis of sequence, physico-chemical or some other properties of the sequences. + Sequence comparison + true + + + + + + + + + beta12orEarlier + true + The archival, detection, prediction and analysis of positional features such as functional and other key sites, in molecular sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them. + Sequence_sites_features_and_motifs + Functional sites + HMMs + Sequence features + Sequence motifs + Sequence profiles + Sequence sites + + + Sequence sites, features and motifs + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Search and retrieve molecular sequences that are similar to a sequence-based query (typically a simple sequence). + + The query is a sequence-based entity such as another sequence, a motif or profile. + Sequence database search + true + + + + + + + + + beta12orEarlier + 1.7 + + The comparison and grouping together of molecular sequences on the basis of their similarities. + + + This includes systems that generate, process and analyse sequence clusters. + Sequence clustering + true + + + + + + + + + beta12orEarlier + true + Structural features or common 3D motifs within protein structures, including the surface of a protein structure, such as biological interfaces with other molecules. + Protein 3D motifs + Protein_structural_motifs_and_surfaces + Protein structural features + Protein structural motifs + Protein surfaces + Structural motifs + + + This includes conformation of conserved substructures, conserved geometry (spatial arrangement) of secondary structure or protein backbone, solvent-exposed surfaces, internal cavities, the analysis of shape, hydropathy, electrostatic patches, role and functions etc. + Protein structural motifs and surfaces + + + + + + + + + + beta12orEarlier + 1.3 + + + The processing, analysis or use of some type of structural (3D) profile or template; a computational entity (typically a numerical matrix) that is derived from and represents a structure or structure alignment. + + Structural (3D) profiles + true + + + + + + + + + beta12orEarlier + 1.12 + + The prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features. + + + Protein structure prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + The folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations. + + + Nucleic acid structure prediction + true + + + + + + + + + beta12orEarlier + 1.7 + + The prediction of three-dimensional structure of a (typically protein) sequence from first principles, using a physics-based or empirical scoring function and without using explicit structural templates. + + + Ab initio structure prediction + true + + + + + + + + + beta12orEarlier + 1.4 + + + The modelling of the three-dimensional structure of a protein using known sequence and structural data. + + Homology modelling + true + + + + + + + + + + beta12orEarlier + true + Molecular flexibility + Molecular motions + The study and simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation. + Molecular_dynamics + Protein dynamics + + + This includes methods such as Molecular Dynamics, Coarse-grained dynamics, metadynamics, Quantum Mechanics, QM/MM, Markov State Models, etc. This includes resources concerning flexibility and motion in protein and other molecular structures. + Molecular dynamics + + + + + + + + + + beta12orEarlier + true + 1.12 + + The modelling the structure of proteins in complex with small molecules or other macromolecules. + + + Molecular docking + true + + + + + + + + + beta12orEarlier + 1.3 + + The prediction of secondary or supersecondary structure of protein sequences. + + + Protein secondary structure prediction + true + + + + + + + + + beta12orEarlier + 1.3 + + The prediction of tertiary structure of protein sequences. + + + Protein tertiary structure prediction + true + + + + + + + + + beta12orEarlier + 1.12 + + The recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s). + + + Protein fold recognition + true + + + + + + + + + beta12orEarlier + 1.7 + + The alignment of molecular sequences or sequence profiles (representing sequence alignments). + + + This includes the generation of alignments (the identification of equivalent sites), the analysis of alignments, editing, visualisation, alignment databases, the alignment (equivalence between sites) of sequence profiles (representing sequence alignments) and so on. + Sequence alignment + true + + + + + + + + + beta12orEarlier + 1.7 + + The superimposition of molecular tertiary structures or structural (3D) profiles (representing a structure or structure alignment). + + + This includes the generation, storage, analysis, rendering etc. of structure alignments. + Structure alignment + true + + + + + + + + + beta12orEarlier + 1.3 + + The alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment). + + + Threading + true + + + + + + + + + beta12orEarlier + 1.3 + + + Sequence profiles; typically a positional, numerical matrix representing a sequence alignment. + + Sequence profiles include position-specific scoring matrix (position weight matrix), hidden Markov models etc. + Sequence profiles and HMMs + true + + + + + + + + + beta12orEarlier + 1.3 + + + The reconstruction of a phylogeny (evolutionary relatedness amongst organisms), for example, by building a phylogenetic tree. + + Currently too specific for the topic sub-ontology (but might be unobsoleted). + Phylogeny reconstruction + true + + + + + + + + + + beta12orEarlier + true + The integrated study of evolutionary relationships and whole genome data, for example, in the analysis of species trees, horizontal gene transfer and evolutionary reconstruction. + Phylogenomics + + + + Phylogenomics + + + + + + + + + + beta12orEarlier + beta13 + + + Simulated polymerase chain reaction (PCR). + + Virtual PCR + true + + + + + + + + + beta12orEarlier + true + The assembly of fragments of a DNA sequence to reconstruct the original sequence. + Sequence_assembly + Assembly + + + Assembly has two broad types, de-novo and re-sequencing. Re-sequencing is a specialised case of assembly, where an assembled (typically de-novo assembled) reference genome is available and is about 95% identical to the re-sequenced genome. All other cases of assembly are 'de-novo'. + Sequence assembly + + + + + + + + + + + beta12orEarlier + true + Stable, naturally occurring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms. + DNA variation + Genetic_variation + Genomic variation + Mutation + Polymorphism + Somatic mutations + + + Genetic variation + + http://purl.bioontology.org/ontology/MSH/D014644 + + + + + + + + + beta12orEarlier + 1.3 + + + Microarrays, for example, to process microarray data or design probes and experiments. + + Microarrays + http://purl.bioontology.org/ontology/MSH/D046228 + true + + + + + + + + + beta12orEarlier + true + VT 3.1.7 Pharmacology and pharmacy + The study of drugs and their effects or responses in living systems. + Pharmacology + Computational pharmacology + Pharmacoinformatics + + + + Pharmacology + + + + + + + + + + beta12orEarlier + true + http://edamontology.org/topic_0197 + The analysis of levels and patterns of synthesis of gene products (proteins and functional RNA) including interpretation in functional terms of gene expression data. + Expression + Gene_expression + Codon usage + DNA chips + DNA microarrays + Gene expression profiling + Gene transcription + Gene translation + Transcription + + + + Gene expression levels are analysed by identifying, quantifying or comparing mRNA transcripts, for example using microarrays, RNA-seq, northern blots, gene-indexed expression profiles etc. + This includes the study of codon usage in nucleotide sequence(s), genetic codes and so on. + Gene expression + + http://purl.bioontology.org/ontology/MSH/D015870 + + + + + + + + + beta12orEarlier + true + The regulation of gene expression. + Regulatory genomics + + + Gene regulation + + + + + + + + + + + beta12orEarlier + true + The influence of genotype on drug response, for example by correlating gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity. + Pharmacogenomics + Pharmacogenetics + + + + Pharmacogenomics + + + + + + + + + + + beta12orEarlier + true + VT 3.1.4 Medicinal chemistry + The design and chemical synthesis of bioactive molecules, for example drugs or potential drug compounds, for medicinal purposes. + Drug design + Medicinal_chemistry + + + + This includes methods that search compound collections, generate or analyse drug 3D conformations, identify drug targets with structural docking etc. + Medicinal chemistry + + + + + + + + + + beta12orEarlier + 1.3 + + + Information on a specific fish genome including molecular sequences, genes and annotation. + + Fish + true + + + + + + + + + beta12orEarlier + 1.3 + + + Information on a specific fly genome including molecular sequences, genes and annotation. + + Flies + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Information on a specific mouse or rat genome including molecular sequences, genes and annotation. + + The resource may be specific to a group of mice / rats or all mice / rats. + Mice or rats + true + + + + + + + + + beta12orEarlier + 1.3 + + + Information on a specific worm genome including molecular sequences, genes and annotation. + + Worms + true + + + + + + + + + beta12orEarlier + 1.3 + + The processing and analysis of the bioinformatics literature and bibliographic data, such as literature search and query. + + + Literature analysis + true + + + + + + + + + + beta12orEarlier + The processing and analysis of natural language, such as scientific literature in English, in order to extract data and information, or to enable human-computer interaction. + NLP + Natural_language_processing + BioNLP + Literature mining + Text analytics + Text data mining + Text mining + + + + Natural language processing + + + + + + + + + + + + beta12orEarlier + Deposition and curation of database accessions, including annotation, typically with terms from a controlled vocabulary. + Data_submission_annotation_and_curation + Data curation + Data provenance + Database curation + + + + Data submission, annotation, and curation + + + + + + + + + beta12orEarlier + 1.13 + + The management and manipulation of digital documents, including database records, files and reports. + + + Document, record and content management + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Annotation of a molecular sequence. + + Sequence annotation + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + + Annotation of a genome. + + Genome annotation + true + + + + + + + + + + beta12orEarlier + Spectroscopy + An analytical technique that exploits the magenetic properties of certain atomic nuclei to provide information on the structure, dynamics, reaction state and chemical environment of molecules. + NMR spectroscopy + Nuclear magnetic resonance spectroscopy + NMR + HOESY + Heteronuclear Overhauser Effect Spectroscopy + NOESY + Nuclear Overhauser Effect Spectroscopy + ROESY + Rotational Frame Nuclear Overhauser Effect Spectroscopy + + + + NMR + + + + + + + + + + beta12orEarlier + 1.12 + + The classification of molecular sequences based on some measure of their similarity. + + + Methods including sequence motifs, profile and other diagnostic elements which (typically) represent conserved patterns (of residues or properties) in molecular sequences. + Sequence classification + true + + + + + + + + + beta12orEarlier + 1.3 + + + primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc. + + Protein classification + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Sequence motifs, or sequence profiles derived from an alignment of molecular sequences of a particular type. + + This includes comparison, discovery, recognition etc. of sequence motifs. + Sequence motif or profile + true + + + + + + + + + beta12orEarlier + true + Protein chemical modifications, e.g. post-translational modifications. + PTMs + Post-translational modifications + Protein post-translational modification + Protein_modifications + Post-translation modifications + Protein chemical modifications + Protein post-translational modifications + GO:0006464 + MOD:00000 + + + EDAM does not describe all possible protein modifications. For fine-grained annotation of protein modification use the Gene Ontology (children of concept GO:0006464) and/or the Protein Modifications ontology (children of concept MOD:00000) + Protein modifications + + + + + + + + + + beta12orEarlier + true + http://edamontology.org/topic_3076 + Molecular interactions, biological pathways, networks and other models. + Molecular_interactions_pathways_and_networks + Biological models + Biological networks + Biological pathways + Cellular process pathways + Disease pathways + Environmental information processing pathways + Gene regulatory networks + Genetic information processing pathways + Interactions + Interactome + Metabolic pathways + Molecular interactions + Networks + Pathways + Signal transduction pathways + Signaling pathways + + + + Molecular interactions, pathways and networks + + + + + + + + + + + beta12orEarlier + true + VT 1.3 Information sciences + VT 1.3.3 Information retrieval + VT 1.3.4 Information management + VT 1.3.5 Knowledge management + VT 1.3.99 Other + The study and practice of information processing and use of computer information systems. + Information management + Information science + Knowledge management + Informatics + + + Informatics + + + + + + + + + + beta12orEarlier + 1.3 + + Data resources for the biological or biomedical literature, either a primary source of literature or some derivative. + + + Literature data resources + true + + + + + + + + + beta12orEarlier + true + Laboratory management and resources, for example, catalogues of biological resources for use in the lab including cell lines, viruses, plasmids, phages, DNA probes and primers and so on. + Laboratory_Information_management + Laboratory resources + + + + Laboratory information management + + + + + + + + + + beta12orEarlier + 1.3 + + + General cell culture or data on a specific cell lines. + + Cell and tissue culture + true + + + + + + + + + + beta12orEarlier + true + VT 1.5.15 Ecology + The ecological and environmental sciences and especially the application of information technology (ecoinformatics). + Ecology + Computational ecology + Ecoinformatics + Ecological informatics + Ecosystem science + + + + Ecology + + http://purl.bioontology.org/ontology/MSH/D004777 + + + + + + + + + + beta12orEarlier + Electron diffraction experiment + The study of matter by studying the interference pattern from firing electrons at a sample, to analyse structures at resolutions higher than can be achieved using light. + Electron_microscopy + Electron crystallography + SEM + Scanning electron microscopy + Single particle electron microscopy + TEM + Transmission electron microscopy + + + + Electron microscopy + + + + + + + + + + beta12orEarlier + beta13 + + + The cell cycle including key genes and proteins. + + Cell cycle + true + + + + + + + + + beta12orEarlier + 1.13 + + The physicochemical, biochemical or structural properties of amino acids or peptides. + + + Peptides and amino acids + true + + + + + + + + + beta12orEarlier + 1.3 + + + A specific organelle, or organelles in general, typically the genes and proteins (or genome and proteome). + + Organelles + true + + + + + + + + + beta12orEarlier + 1.3 + + + Ribosomes, typically of ribosome-related genes and proteins. + + Ribosomes + true + + + + + + + + + beta12orEarlier + beta13 + + + A database about scents. + + Scents + true + + + + + + + + + beta12orEarlier + 1.13 + + The structures of drugs, drug target, their interactions and binding affinities. + + + Drugs and target structures + true + + + + + + + + + beta12orEarlier + true + A specific organism, or group of organisms, used to study a particular aspect of biology. + Organisms + Model_organisms + + + + This may include information on the genome (including molecular sequences and map, genes and annotation), proteome, as well as more general information about an organism. + Model organisms + + + + + + + + + + beta12orEarlier + true + Whole genomes of one or more organisms, or genomes in general, such as meta-information on genomes, genome projects, gene names etc. + Genomics + Exomes + Genome annotation + Genomes + Personal genomics + Synthetic genomics + Viral genomics + Whole genomes + + + + Genomics + + http://purl.bioontology.org/ontology/MSH/D023281 + + + + + + + + + + beta12orEarlier + true + Particular gene(s), gene family or other gene group or system and their encoded proteins.Primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc., curation of a particular protein or protein family, or any other proteins that have been classified as members of a common group. + Genes, gene family or system + Gene_and protein_families + Gene families + Gene family + Gene system + Protein families + Protein sequence classification + + + + A protein families database might include the classifier (e.g. a sequence profile) used to build the classification. + Gene and protein families + + + + + + + + + + + beta12orEarlier + 1.13 + + Study of chromosomes. + + + Chromosomes + true + + + + + + + + + beta12orEarlier + true + The study of genetic constitution of a living entity, such as an individual, and organism, a cell and so on, typically with respect to a particular observable phenotypic traits, or resources concerning such traits, which might be an aspect of biochemistry, physiology, morphology, anatomy, development and so on. + Genotype and phenotype resources + Genotype-phenotype + Genotype-phenotype analysis + Genotype_and_phenotype + Genotype + Genotyping + Phenotype + Phenotyping + + + + Genotype and phenotype + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Gene expression e.g. microarray data, northern blots, gene-indexed expression profiles etc. + + Gene expression and microarray + true + + + + + + + + + beta12orEarlier + true + Molecular probes (e.g. a peptide probe or DNA microarray probe) or PCR primers and hybridisation oligos in a nucleic acid sequence. + Probes_and_primers + Primer quality + Primers + Probes + + + This includes the design of primers for PCR and DNA amplification or the design of molecular probes. + Probes and primers + http://purl.bioontology.org/ontology/MSH/D015335 + + + + + + + + + beta12orEarlier + true + VT 3.1.6 Pathology + Diseases, including diseases in general and the genes, gene variations and proteins involved in one or more specific diseases. + Disease + Pathology + + + + Pathology + + + + + + + + + + beta12orEarlier + 1.3 + + + A particular protein, protein family or other group of proteins. + + Specific protein resources + true + + + + + + + + + beta12orEarlier + true + VT 1.5.25 Taxonomy + Organism classification, identification and naming. + Taxonomy + + + Taxonomy + + + + + + + + + + beta12orEarlier + 1.8 + + Archival, processing and analysis of protein sequences and sequence-based entities such as alignments, motifs and profiles. + + + Protein sequence analysis + true + + + + + + + + + beta12orEarlier + 1.8 + + The archival, processing and analysis of nucleotide sequences and and sequence-based entities such as alignments, motifs and profiles. + + + Nucleic acid sequence analysis + true + + + + + + + + + beta12orEarlier + 1.3 + + + The repetitive nature of molecular sequences. + + Repeat sequences + true + + + + + + + + + beta12orEarlier + 1.3 + + + The (character) complexity of molecular sequences, particularly regions of low complexity. + + Low complexity sequences + true + + + + + + + + + beta12orEarlier + beta13 + + + A specific proteome including protein sequences and annotation. + + Proteome + true + + + + + + + + + beta12orEarlier + DNA sequences and structure, including processes such as methylation and replication. + DNA analysis + DNA + Ancient DNA + Chromosomes + + + The DNA sequences might be coding or non-coding sequences. + DNA + + + + + + + + + + beta12orEarlier + 1.13 + + Protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. + + + Coding RNA + true + + + + + + + + + + beta12orEarlier + true + Non-coding or functional RNA sequences, including regulatory RNA sequences, ribosomal RNA (rRNA) and transfer RNA (tRNA). + Functional_regulatory_and_non-coding_RNA + Functional RNA + Long ncRNA + Long non-coding RNA + Non-coding RNA + Regulatory RNA + Small and long non-coding RNAs + Small interfering RNA + Small ncRNA + Small non-coding RNA + Small nuclear RNA + Small nucleolar RNA + lncRNA + miRNA + microRNA + ncRNA + piRNA + piwi-interacting RNA + siRNA + snRNA + snoRNA + + + Non-coding RNA includes piwi-interacting RNA (piRNA), small nuclear RNA (snRNA) and small nucleolar RNA (snoRNA). Regulatory RNA includes microRNA (miRNA) - short single stranded RNA molecules that regulate gene expression, and small interfering RNA (siRNA). + Functional, regulatory and non-coding RNA + + + + + + + + + + beta12orEarlier + 1.3 + + + One or more ribosomal RNA (rRNA) sequences. + + rRNA + true + + + + + + + + + beta12orEarlier + 1.3 + + + One or more transfer RNA (tRNA) sequences. + + tRNA + true + + + + + + + + + beta12orEarlier + 1.8 + + Protein secondary structure or secondary structure alignments. + + + This includes assignment, analysis, comparison, prediction, rendering etc. of secondary structure data. + Protein secondary structure + true + + + + + + + + + beta12orEarlier + 1.3 + + + RNA secondary or tertiary structure and alignments. + + RNA structure + true + + + + + + + + + beta12orEarlier + 1.8 + + Protein tertiary structures. + + + Protein tertiary structure + true + + + + + + + + + beta12orEarlier + 1.3 + + + Classification of nucleic acid sequences and structures. + + Nucleic acid classification + true + + + + + + + + + beta12orEarlier + 1.14 + + Primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc., curation of a particular protein or protein family, or any other proteins that have been classified as members of a common group. + + + Protein families + true + + + + + + + + + beta12orEarlier + true + Protein tertiary structural domains and folds in a protein or polypeptide chain. + Protein_folds_and_structural_domains + Intramembrane regions + Protein domains + Protein folds + Protein membrane regions + Protein structural domains + Protein topological domains + Protein transmembrane regions + Transmembrane regions + + + This includes topological domains such as cytoplasmic regions in a protein. + This includes trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements. For example, the location and size of the membrane spanning segments and intervening loop regions, transmembrane region IN/OUT orientation relative to the membrane, plus the following data for each amino acid: A Z-coordinate (the distance to the membrane center), the free energy of membrane insertion (calculated in a sliding window over the sequence) and a reliability score. The z-coordinate implies information about re-entrant helices, interfacial helices, the tilt of a transmembrane helix and loop lengths. + Protein folds and structural domains + + + + + + + + + + beta12orEarlier + 1.3 + + Nucleotide sequence alignments. + + + Nucleic acid sequence alignment + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein sequence alignments. + + A sequence profile typically represents a sequence alignment. + Protein sequence alignment + true + + + + + + + + + beta12orEarlier + 1.3 + + + + The archival, detection, prediction and analysis ofpositional features such as functional sites in nucleotide sequences. + + Nucleic acid sites and features + true + + + + + + + + + beta12orEarlier + 1.3 + + + + The detection, identification and analysis of positional features in proteins, such as functional sites. + + Protein sites and features + true + + + + + + + + + + + beta12orEarlier + Proteins that bind to DNA and control transcription of DNA to mRNA (transcription factors) and also transcriptional regulatory sites, elements and regions (such as promoters, enhancers, silencers and boundary elements / insulators) in nucleotide sequences. + Transcription_factors_and_regulatory_sites + -10 signals + -35 signals + Attenuators + CAAT signals + CAT box + CCAAT box + CpG islands + Enhancers + GC signals + Isochores + Promoters + TATA signals + TFBS + Terminators + Transcription factor binding sites + Transcription factors + Transcriptional regulatory sites + + + This includes CpG rich regions (isochores) in a nucleotide sequence. + This includes promoters, CAAT signals, TATA signals, -35 signals, -10 signals, GC signals, primer binding sites for initiation of transcription or reverse transcription, enhancer, attenuator, terminators and ribosome binding sites. + Transcription factor proteins either promote (as an activator) or block (as a repressor) the binding to DNA of RNA polymerase. Regulatory sites including transcription factor binding site as well as promoters, enhancers, silencers and boundary elements / insulators. + Transcription factors and regulatory sites + + + + + + + + + + + beta12orEarlier + 1.0 + + + + Protein phosphorylation and phosphorylation sites in protein sequences. + + Phosphorylation sites + true + + + + + + + + + beta12orEarlier + 1.13 + + Metabolic pathways. + + + Metabolic pathways + true + + + + + + + + + beta12orEarlier + 1.13 + + Signaling pathways. + + + Signaling pathways + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein and peptide identification. + + Protein and peptide identification + true + + + + + + + + + beta12orEarlier + Biological or biomedical analytical workflows or pipelines. + Pipelines + Workflows + Software integration + Tool integration + Tool interoperability + + + Workflows + + + + + + + + + + beta12orEarlier + 1.0 + + + Structuring data into basic types and (computational) objects. + + Data types and objects + true + + + + + + + + + beta12orEarlier + 1.3 + + + Theoretical biology. + + Theoretical biology + true + + + + + + + + + beta12orEarlier + 1.3 + + + Mitochondria, typically of mitochondrial genes and proteins. + + Mitochondria + true + + + + + + + + + beta12orEarlier + VT 1.5.10 Botany + VT 1.5.22 Plant science + Plants, e.g. information on a specific plant genome including molecular sequences, genes and annotation. + Botany + Plant + Plant science + Plants + Plant_biology + Plant anatomy + Plant cell biology + Plant ecology + Plant genetics + Plant physiology + + + The resource may be specific to a plant, a group of plants or all plants. + Plant biology + + + + + + + + + + beta12orEarlier + VT 1.5.28 + Study of viruses, e.g. sequence and structural data, interactions of viral proteins, or a viral genome including molecular sequences, genes and annotation. + Virology + + + Virology + + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Fungi and molds, e.g. information on a specific fungal genome including molecular sequences, genes and annotation. + + The resource may be specific to a fungus, a group of fungi or all fungi. + Fungi + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). Definition is wrong anyway. + 1.17 + + + Pathogens, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation. + + The resource may be specific to a pathogen, a group of pathogens or all pathogens. + Pathogens + true + + + + + + + + + beta12orEarlier + 1.3 + + + Arabidopsis-specific data. + + Arabidopsis + true + + + + + + + + + beta12orEarlier + 1.3 + + + Rice-specific data. + + Rice + true + + + + + + + + + beta12orEarlier + 1.3 + + + Informatics resources that aim to identify, map or analyse genetic markers in DNA sequences, for example to produce a genetic (linkage) map of a chromosome or genome or to analyse genetic linkage and synteny. + + Genetic mapping and linkage + true + + + + + + + + + beta12orEarlier + true + The study (typically comparison) of the sequence, structure or function of multiple genomes. + Comparative_genomics + + + + Comparative genomics + + + + + + + + + + beta12orEarlier + Mobile genetic elements, such as transposons, Plasmids, Bacteriophage elements and Group II introns. + Mobile_genetic_elements + Transposons + + + Mobile genetic elements + + + + + + + + + + beta12orEarlier + beta13 + + + Human diseases, typically describing the genes, mutations and proteins implicated in disease. + + Human disease + true + + + + + + + + + beta12orEarlier + true + VT 3.1.3 Immunology + The application of information technology to immunology such as immunological processes, immunological genes, proteins and peptide ligands, antigens and so on. + Immunology + + + + Immunology + + http://purl.bioontology.org/ontology/MSH/D007120 + http://purl.bioontology.org/ontology/MSH/D007125 + + + + + + + + + beta12orEarlier + true + Lipoproteins (protein-lipid assemblies), and proteins or region of a protein that spans or are associated with a membrane. + Membrane_and_lipoproteins + Lipoproteins + Membrane proteins + Transmembrane proteins + + + Membrane and lipoproteins + + + + + + + + + + + beta12orEarlier + true + Proteins that catalyze chemical reaction, the kinetics of enzyme-catalysed reactions, enzyme nomenclature etc. + Enzymology + Enzymes + + + Enzymes + + + + + + + + + + beta12orEarlier + 1.13 + + PCR primers and hybridisation oligos in a nucleic acid sequence. + + + Primers + true + + + + + + + + + beta12orEarlier + 1.13 + + Regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript. + + + PolyA signal or sites + true + + + + + + + + + beta12orEarlier + 1.13 + + CpG rich regions (isochores) in a nucleotide sequence. + + + CpG island and isochores + true + + + + + + + + + beta12orEarlier + 1.13 + + Restriction enzyme recognition sites (restriction sites) in a nucleic acid sequence. + + + Restriction sites + true + + + + + + + + + beta12orEarlier + 1.13 + + + + Splice sites in a nucleotide sequence or alternative RNA splicing events. + + Splice sites + true + + + + + + + + + beta12orEarlier + 1.13 + + Matrix/scaffold attachment regions (MARs/SARs) in a DNA sequence. + + + Matrix/scaffold attachment sites + true + + + + + + + + + beta12orEarlier + 1.13 + + Operons (operators, promoters and genes) from a bacterial genome. + + + Operon + true + + + + + + + + + beta12orEarlier + 1.13 + + Whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in a DNA sequence. + + + Promoters + true + + + + + + + + + beta12orEarlier + true + VT 1.5.24 Structural biology + The molecular structure of biological molecules, particularly macromolecules such as proteins and nucleic acids. + Structural_biology + Structural assignment + Structural determination + Structure determination + + + + This includes experimental methods for biomolecular structure determination, such as X-ray crystallography, nuclear magnetic resonance (NMR), circular dichroism (CD) spectroscopy, microscopy etc., including the assignment or modelling of molecular structure from such data. + Structural biology + + + + + + + + + + beta12orEarlier + 1.13 + + Trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements. + + + Protein membrane regions + true + + + + + + + + + beta12orEarlier + 1.13 + + The comparison of two or more molecular structures, for example structure alignment and clustering. + + + This might involve comparison of secondary or tertiary (3D) structural information. + Structure comparison + true + + + + + + + + + beta12orEarlier + true + The study of gene and protein function including the prediction of functional properties of a protein. + Functional analysis + Function_analysis + Protein function analysis + Protein function prediction + + + + Function analysis + + + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Specific bacteria or archaea, e.g. information on a specific prokaryote genome including molecular sequences, genes and annotation. + + The resource may be specific to a prokaryote, a group of prokaryotes or all prokaryotes. + Prokaryotes and Archaea + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein data resources. + + Protein databases + true + + + + + + + + + beta12orEarlier + 1.3 + + + Experimental methods for biomolecular structure determination, such as X-ray crystallography, nuclear magnetic resonance (NMR), circular dichroism (CD) spectroscopy, microscopy etc., including the assignment or modelling of molecular structure from such data. + + Structure determination + true + + + + + + + + + beta12orEarlier + true + VT 1.5.11 Cell biology + Cells, such as key genes and proteins involved in the cell cycle. + Cell_biology + Cells + Cellular processes + Protein subcellular localization + + + Cell biology + + + + + + + + + + beta12orEarlier + beta13 + + + Topic focused on identifying, grouping, or naming things in a structured way according to some schema based on observable relationships. + + Classification + true + + + + + + + + + beta12orEarlier + 1.3 + + + Lipoproteins (protein-lipid assemblies). + + Lipoproteins + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Visualise a phylogeny, for example, render a phylogenetic tree. + + Phylogeny visualisation + true + + + + + + + + + beta12orEarlier + true + The application of information technology to chemistry in biological research environment. + Chemical informatics + Chemoinformatics + Cheminformatics + + + + Cheminformatics + + + + + + + + + + beta12orEarlier + true + The holistic modelling and analysis of complex biological systems and the interactions therein. + Systems_biology + Biological modelling + Biological system modelling + Systems modelling + + + + This includes databases of models and methods to construct or analyse a model. + Systems biology + + http://purl.bioontology.org/ontology/MSH/D049490 + + + + + + + + + beta12orEarlier + The application of statistical methods to biological problems. + Statistics_and_probability + Bayesian methods + Biostatistics + Descriptive statistics + Gaussian processes + Inferential statistics + Markov processes + Multivariate statistics + Probabilistic graphical model + Probability + Statistics + + + + Statistics and probability + + + + http://purl.bioontology.org/ontology/MSH/D056808 + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Search for and retrieve molecular structures that are similar to a structure-based query (typically another structure or part of a structure). + + The query is a structure-based entity such as another structure, a 3D (structural) motif, 3D profile or template. + Structure database search + true + + + + + + + + + beta12orEarlier + true + The construction, analysis, evaluation, refinement etc. of models of a molecules properties or behaviour, including the modelling the structure of proteins in complex with small molecules or other macromolecules (docking). + Molecular_modelling + Comparative modelling + Docking + Homology modeling + Homology modelling + Molecular docking + + + Molecular modelling + + + + + + + + + + beta12orEarlier + 1.2 + + + The prediction of functional properties of a protein. + + Protein function prediction + true + + + + + + + + + beta12orEarlier + 1.13 + + Single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs. + + + SNP + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + Predict transmembrane domains and topology in protein sequences. + + Transmembrane protein prediction + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + + The comparison two or more nucleic acid (typically RNA) secondary or tertiary structures. + + Use this concept for methods that are exclusively for nucleic acid structures. + Nucleic acid structure comparison + true + + + + + + + + + beta12orEarlier + 1.13 + + Exons in a nucleotide sequences. + + + Exons + true + + + + + + + + + beta12orEarlier + 1.13 + + Transcription of DNA into RNA including the regulation of transcription. + + + Gene transcription + true + + + + + + + + + + beta12orEarlier + DNA mutation. + DNA_mutation + + + DNA mutation + + + + + + + + + + beta12orEarlier + true + VT 3.2.16 Oncology + The study of cancer, for example, genes and proteins implicated in cancer. + Cancer biology + Oncology + Cancer + Neoplasm + Neoplasms + + + + Oncology + + + + + + + + + + beta12orEarlier + 1.13 + + Structural and associated data for toxic chemical substances. + + + Toxins and targets + true + + + + + + + + + beta12orEarlier + 1.13 + + Introns in a nucleotide sequences. + + + Introns + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A topic concerning primarily bioinformatics software tools, typically the broad function or purpose of a tool. + + + Tool topic + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + A general area of bioinformatics study, typically the broad scope or category of content of a bioinformatics journal or conference proceeding. + + + Study topic + true + + + + + + + + + beta12orEarlier + 1.3 + + + Biological nomenclature (naming), symbols and terminology. + + Nomenclature + true + + + + + + + + + beta12orEarlier + 1.3 + + + The genes, gene variations and proteins involved in one or more specific diseases. + + Disease genes and proteins + true + + + + + + + + + + beta12orEarlier + true + http://edamontology.org/topic_3040 + Protein secondary or tertiary structural data and/or associated annotation. + Protein structure + Protein_structure_analysis + Protein tertiary structure + + + + Protein structure analysis + + + + + + + + + + beta12orEarlier + The study of human beings in general, including the human genome and proteome. + Humans + Human_biology + + + Human biology + + + + + + + + + + beta12orEarlier + 1.3 + + + Informatics resource (typically a database) primarily focused on genes. + + Gene resources + true + + + + + + + + + beta12orEarlier + 1.3 + + + Yeast, e.g. information on a specific yeast genome including molecular sequences, genes and annotation. + + Yeast + true + + + + + + + + + beta12orEarlier + (jison) Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Eukaryotes or data concerning eukaryotes, e.g. information on a specific eukaryote genome including molecular sequences, genes and annotation. + + The resource may be specific to a eukaryote, a group of eukaryotes or all eukaryotes. + Eukaryotes + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Invertebrates, e.g. information on a specific invertebrate genome including molecular sequences, genes and annotation. + + The resource may be specific to an invertebrate, a group of invertebrates or all invertebrates. + Invertebrates + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Vertebrates, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation. + + The resource may be specific to a vertebrate, a group of vertebrates or all vertebrates. + Vertebrates + true + + + + + + + + + beta12orEarlier + (jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). + 1.17 + + + Unicellular eukaryotes, e.g. information on a unicellular eukaryote genome including molecular sequences, genes and annotation. + + The resource may be specific to a unicellular eukaryote, a group of unicellular eukaryotes or all unicellular eukaryotes. + Unicellular eukaryotes + true + + + + + + + + + beta12orEarlier + 1.3 + + + Protein secondary or tertiary structure alignments. + + Protein structure alignment + true + + + + + + + + + + beta12orEarlier + The study of matter and their structure by means of the diffraction of X-rays, typically the diffraction pattern caused by the regularly spaced atoms of a crystalline sample. + Crystallography + X-ray_diffraction + X-ray crystallography + X-ray microscopy + + + + X-ray diffraction + + + + + + + + + + beta12orEarlier + 1.3 + + + Conceptualisation, categorisation and naming of entities or phenomena within biology or bioinformatics. + + Ontologies, nomenclature and classification + http://purl.bioontology.org/ontology/MSH/D002965 + true + + + + + + + + + + beta12orEarlier + Immunity-related proteins and their ligands. + Immunoproteins_and_antigens + Antigens + Immunopeptides + Immunoproteins + Therapeutic antibodies + + + + This includes T cell receptors (TR), major histocompatibility complex (MHC), immunoglobulin superfamily (IgSF) / antibodies, major histocompatibility complex superfamily (MhcSF), etc." + Immunoproteins and antigens + + + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Specific molecules, including large molecules built from repeating subunits (macromolecules) and small molecules of biological significance. + CHEBI:23367 + + Molecules + true + + + + + + + + + + beta12orEarlier + true + VT 3.1.9 Toxicology + Toxins and the adverse effects of these chemical substances on living organisms. + Toxicology + Computational toxicology + Toxicoinformatics + + + + Toxicology + + + + + + + + + + beta12orEarlier + beta13 + + + Parallelised sequencing processes that are capable of sequencing many thousands of sequences simultaneously. + + High-throughput sequencing + true + + + + + + + + + beta12orEarlier + 1.13 + + Gene regulatory networks. + + + Gene regulatory networks + true + + + + + + + + + beta12orEarlier + beta12orEarlier + + + Informatics resources dedicated to one or more specific diseases (not diseases in general). + + Disease (specific) + true + + + + + + + + + beta12orEarlier + 1.13 + + Variable number of tandem repeat (VNTR) polymorphism in a DNA sequence. + + + VNTR + true + + + + + + + + + beta12orEarlier + 1.13 + + + Microsatellite polymorphism in a DNA sequence. + + + Microsatellites + true + + + + + + + + + beta12orEarlier + 1.13 + + + Restriction fragment length polymorphisms (RFLP) in a DNA sequence. + + + RFLP + true + + + + + + + + + + beta12orEarlier + true + DNA polymorphism. + DNA_polymorphism + Microsatellites + RFLP + SNP + Single nucleotide polymorphism + VNTR + Variable number of tandem repeat polymorphism + snps + + + Includes microsatellite polymorphism in a DNA sequence. A microsatellite polymorphism is a very short subsequence that is repeated a variable number of times between individuals. These repeats consist of the nucleotides cytosine and adenosine. + Includes restriction fragment length polymorphisms (RFLP) in a DNA sequence. An RFLP is defined by the presence or absence of a specific restriction site of a bacterial restriction enzyme. + Includes single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs. A SNP is a DNA sequence variation where a single nucleotide differs between members of a species or paired chromosomes in an individual. + Includes variable number of tandem repeat (VNTR) polymorphism in a DNA sequence. VNTRs occur in non-coding regions of DNA and consists sub-sequence that is repeated a multiple (and varied) number of times. + DNA polymorphism + + + + + + + + + + beta12orEarlier + 1.3 + + + Topic for the design of nucleic acid sequences with specific conformations. + + Nucleic acid design + true + + + + + + + + + beta13 + 1.3 + + + The design of primers for PCR and DNA amplification or the design of molecular probes. + + Primer or probe design + true + + + + + + + + + beta13 + 1.2 + + + Molecular secondary or tertiary (3D) structural data resources, typically of proteins and nucleic acids. + + Structure databases + true + + + + + + + + + beta13 + 1.2 + + + Nucleic acid (secondary or tertiary) structure, such as whole structures, structural features and associated annotation. + + Nucleic acid structure + true + + + + + + + + + beta13 + 1.3 + + + Molecular sequence data resources, including sequence sites, alignments, motifs and profiles. + + Sequence databases + true + + + + + + + + + beta13 + 1.3 + + + Nucleotide sequences and associated concepts such as sequence sites, alignments, motifs and profiles. + + Nucleic acid sequences + true + + + + + + + + + beta13 + 1.3 + + Protein sequences and associated concepts such as sequence sites, alignments, motifs and profiles. + + + Protein sequences + true + + + + + + + + + beta13 + 1.3 + + + Protein interaction networks. + + Protein interaction networks + true + + + + + + + + + beta13 + true + VT 1.5.4 Biochemistry and molecular biology + The molecular basis of biological activity, particularly the macromolecules (e.g. proteins and nucleic acids) that are essential to life. + Molecular_biology + Biological processes + + + + Molecular biology + + + + + + + + + + beta13 + 1.3 + + + Mammals, e.g. information on a specific mammal genome including molecular sequences, genes and annotation. + + Mammals + true + + + + + + + + + beta13 + true + VT 1.5.5 Biodiversity conservation + The degree of variation of life forms within a given ecosystem, biome or an entire planet. + Biodiversity + + + + Biodiversity + + http://purl.bioontology.org/ontology/MSH/D044822 + + + + + + + + + beta13 + 1.3 + + + The comparison, grouping together and classification of macromolecules on the basis of sequence similarity. + + This includes the results of sequence clustering, ortholog identification, assignment to families, annotation etc. + Sequence clusters and classification + true + + + + + + + + + beta13 + true + The study of genes, genetic variation and heredity in living organisms. + Genetics + Genes + Heredity + + + + Genetics + + http://purl.bioontology.org/ontology/MSH/D005823 + + + + + + + + + beta13 + true + The genes and genetic mechanisms such as Mendelian inheritance that underly continuous phenotypic traits (such as height or weight). + Quantitative_genetics + + + Quantitative genetics + + + + + + + + + + beta13 + true + The distribution of allele frequencies in a population of organisms and its change subject to evolutionary processes including natural selection, genetic drift, mutation and gene flow. + Population_genetics + + + + Population genetics + + + + + + + + + + beta13 + 1.3 + + Regulatory RNA sequences including microRNA (miRNA) and small interfering RNA (siRNA). + + + Regulatory RNA + true + + + + + + + + + beta13 + 1.13 + + The documentation of resources such as tools, services and databases and how to get help. + + + Documentation and help + true + + + + + + + + + beta13 + 1.3 + + + The structural and functional organisation of genes and other genetic elements. + + Genetic organisation + true + + + + + + + + + beta13 + true + The application of information technology to health, disease and biomedicine. + Biomedical informatics + Clinical informatics + Health and disease + Health informatics + Healthcare informatics + Medical_informatics + + + + Medical informatics + + + + + + + + + + beta13 + true + VT 1.5.14 Developmental biology + How organisms grow and develop. + Developmental_biology + Development + + + + Developmental biology + + + + + + + + + + beta13 + true + The development of organisms between the one-cell stage (typically the zygote) and the end of the embryonic stage. + Embryology + + + + Embryology + + + + + + + + + + beta13 + true + VT 3.1.1 Anatomy and morphology + The form and function of the structures of living organisms. + Anatomy + + + + Anatomy + + + + + + + + + + beta13 + true + The scientific literature, language processing, reference information, and documentation. + Language + Literature + Literature_and_language + Bibliography + Citations + Documentation + References + Scientific literature + + + + This includes the documentation of resources such as tools, services and databases, user support, how to get help etc. + Literature and language + http://purl.bioontology.org/ontology/MSH/D011642 + + + + + + + + + beta13 + true + VT 1.5 Biological sciences + VT 1.5.1 Aerobiology + VT 1.5.13 Cryobiology + VT 1.5.23 Reproductive biology + VT 1.5.3 Behavioural biology + VT 1.5.7 Biological rhythm + VT 1.5.8 Biology + VT 1.5.99 Other + The study of life and living organisms, including their morphology, biochemistry, physiology, development, evolution, and so on. + Biological science + Biology + Aerobiology + Behavioural biology + Biological rhythms + Chronobiology + Cryobiology + Reproductive biology + + + + Biology + + + + + + + + + + beta13 + true + Data stewardship + VT 1.3.1 Data management + Data management comprises the practices and principles of taking care of data, other than analysing them. This includes for example taking care of the associated metadata, formatting, storage, archiving, or access. + Metadata management + + + + Data management + + + http://purl.bioontology.org/ontology/MSH/D000079803 + + + + + + + + + beta13 + 1.3 + + + The detection of the positional features, such as functional and other key sites, in molecular sequences. + + Sequence feature detection + http://purl.bioontology.org/ontology/MSH/D058977 + true + + + + + + + + + beta13 + 1.3 + + + The detection of positional features such as functional sites in nucleotide sequences. + + Nucleic acid feature detection + true + + + + + + + + + beta13 + 1.3 + + + The detection, identification and analysis of positional protein sequence features, such as functional sites. + + Protein feature detection + true + + + + + + + + + beta13 + 1.2 + + + Topic for modelling biological systems in mathematical terms. + + Biological system modelling + true + + + + + + + + + beta13 + The acquisition of data, typically measurements of physical systems using any type of sampling system, or by another other means. + Data collection + + + Data acquisition + + + + + + + + + + beta13 + 1.3 + + + Specific genes and/or their encoded proteins or a family or other grouping of related genes and proteins. + + Genes and proteins resources + true + + + + + + + + + beta13 + 1.13 + + Topological domains such as cytoplasmic regions in a protein. + + + Protein topological domains + true + + + + + + + + + beta13 + true + + Protein sequence variants produced e.g. from alternative splicing, alternative promoter usage, alternative initiation and ribosomal frameshifting. + Protein_variants + + + Protein variants + + + + + + + + + + beta13 + 1.12 + + + Regions within a nucleic acid sequence containing a signal that alters a biological function. + + Expression signals + true + + + + + + + + + + beta13 + + Nucleic acids binding to some other molecule. + DNA_binding_sites + Matrix-attachment region + Matrix/scaffold attachment region + Nucleosome exclusion sequences + Restriction sites + Ribosome binding sites + Scaffold-attachment region + + + This includes ribosome binding sites (Shine-Dalgarno sequence in prokaryotes), restriction enzyme recognition sites (restriction sites) etc. + This includes sites involved with DNA replication and recombination. This includes binding sites for initiation of replication (origin of replication), regions where transfer is initiated during the conjugation or mobilisation (origin of transfer), starting sites for DNA duplication (origin of replication) and regions which are eliminated through any of kind of recombination. Also nucleosome exclusion regions, i.e. specific patterns or regions which exclude nucleosomes (the basic structural units of eukaryotic chromatin which play a significant role in regulating gene expression). + DNA binding sites + + + + + + + + + + beta13 + 1.13 + + Repetitive elements within a nucleic acid sequence. + + + This includes long terminal repeats (LTRs); sequences (typically retroviral) directly repeated at both ends of a defined sequence and other types of repeating unit. + Nucleic acid repeats + true + + + + + + + + + beta13 + true + DNA replication or recombination. + DNA_replication_and_recombination + + + DNA replication and recombination + + + + + + + + + + + beta13 + 1.13 + + Coding sequences for a signal or transit peptide. + + + Signal or transit peptide + true + + + + + + + + + beta13 + 1.13 + + Sequence tagged sites (STS) in nucleic acid sequences. + + + Sequence tagged sites + true + + + + + + + + + 1.1 + true + The determination of complete (typically nucleotide) sequences, including those of genomes (full genome sequencing, de novo sequencing and resequencing), amplicons and transcriptomes. + DNA-Seq + Sequencing + Chromosome walking + Clone verification + DNase-Seq + High throughput sequencing + High-throughput sequencing + NGS + NGS data analysis + Next gen sequencing + Next generation sequencing + Panels + Primer walking + Sanger sequencing + Targeted next-generation sequencing panels + + + + Sequencing + + http://purl.bioontology.org/ontology/MSH/D059014 + + + + + + + + + + 1.1 + The analysis of protein-DNA interactions where chromatin immunoprecipitation (ChIP) is used in combination with massively parallel DNA sequencing to identify the binding sites of DNA-associated proteins. + ChIP-sequencing + Chip Seq + Chip sequencing + Chip-sequencing + ChIP-seq + ChIP-exo + + + ChIP-seq + + + + + + + + + + 1.1 + A topic concerning high-throughput sequencing of cDNA to measure the RNA content (transcriptome) of a sample, for example, to investigate how different alleles of a gene are expressed, detect post-transcriptional mutations or identify gene fusions. + RNA sequencing + RNA-Seq analysis + Small RNA sequencing + Small RNA-Seq + Small-Seq + Transcriptome profiling + WTSS + Whole transcriptome shotgun sequencing + RNA-Seq + MicroRNA sequencing + miRNA-seq + + + This includes small RNA profiling (small RNA-Seq), for example to find novel small RNAs, characterize mutations and analyze expression of small RNAs. + RNA-Seq + + + + + + + + + + + 1.1 + 1.3 + + DNA methylation including bisulfite sequencing, methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc. + + + DNA methylation + true + + + + + + + + + 1.1 + true + The systematic study of metabolites, the chemical processes they are involved, and the chemical fingerprints of specific cellular processes in a whole cell, tissue, organ or organism. + Metabolomics + Exometabolomics + LC-MS-based metabolomics + MS-based metabolomics + MS-based targeted metabolomics + MS-based untargeted metabolomics + Mass spectrometry-based metabolomics + Metabolites + Metabolome + Metabonomics + NMR-based metabolomics + + + + Metabolomics + + http://purl.bioontology.org/ontology/MSH/D055432 + + + + + + + + + + 1.1 + true + The study of the epigenetic modifications of a whole cell, tissue, organism etc. + Epigenomics + + + + Epigenetics concerns the heritable changes in gene expression owing to mechanisms other than DNA sequence variation. + Epigenomics + + http://purl.bioontology.org/ontology/MSH/D057890 + + + + + + + + + + 1.1 + true + Environmental DNA (eDNA) + Environmental sequencing + Biome sequencing + Community genomics + Ecogenomics + Environmental genomics + Environmental omics + The study of genetic material recovered from environmental samples, and associated environmental data. + Metagenomics + Shotgun metagenomics + + + + Metagenomics + + + + + + + + + + + + 1.1 + Variation in chromosome structure including microscopic and submicroscopic types of variation such as deletions, duplications, copy-number variants, insertions, inversions and translocations. + DNA structural variation + Genomic structural variation + DNA_structural_variation + Deletion + Duplication + Insertion + Inversion + Translocation + + + Structural variation + + + + + + + + + + 1.1 + DNA-histone complexes (chromatin), organisation of chromatin into nucleosomes and packaging into higher-order structures. + DNA_packaging + Nucleosome positioning + + + DNA packaging + + http://purl.bioontology.org/ontology/MSH/D042003 + + + + + + + + + 1.1 + 1.3 + + + A topic concerning high-throughput sequencing of randomly fragmented genomic DNA, for example, to investigate whole-genome sequencing and resequencing, SNP discovery, identification of copy number variations and chromosomal rearrangements. + + DNA-Seq + true + + + + + + + + + 1.1 + 1.3 + + + The alignment of sequences of (typically millions) of short reads to a reference genome. This is a specialised topic within sequence alignment, especially because of complications arising from RNA splicing. + + RNA-Seq alignment + true + + + + + + + + + 1.1 + Experimental techniques that combine chromatin immunoprecipitation ('ChIP') with microarray ('chip'). ChIP-on-chip is used for high-throughput study protein-DNA interactions. + ChIP-chip + ChIP-on-chip + ChiP + + + ChIP-on-chip + + + + + + + + + + 1.3 + The protection of data, such as patient health data, from damage or unwanted access from unauthorised users. + Data privacy + Data_security + + + Data security + + + + + + + + + + 1.3 + Biological samples and specimens. + Specimen collections + Sample_collections + biosamples + samples + + + + Sample collections + + + + + + + + + + + 1.3 + true + VT 1.5.4 Biochemistry and molecular biology + Chemical substances and physico-chemical processes and that occur within living organisms. + Biological chemistry + Biochemistry + Glycomics + Pathobiochemistry + Phytochemistry + + + + Biochemistry + + + + + + + + + + + 1.3 + true + The study of evolutionary relationships amongst organisms from analysis of genetic information (typically gene or protein sequences). + Phylogenetics + + + Phylogenetics + + http://purl.bioontology.org/ontology/MSH/D010802 + + + + + + + + + 1.3 + true + Topic concerning the study of heritable changes, for example in gene expression or phenotype, caused by mechanisms other than changes in the DNA sequence. + Epigenetics + DNA methylation + Histone modification + Methylation profiles + + + + This includes sub-topics such as histone modification and DNA methylation (methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc.) + Epigenetics + + http://purl.bioontology.org/ontology/MSH/D019175 + + + + + + + + + 1.3 + true + The exploitation of biological process, structure and function for industrial purposes, for example the genetic manipulation of microorganisms for the antibody production. + Biotechnology + Applied microbiology + + + + Biotechnology + + + + + + + + + + + + 1.3 + true + Phenomes, or the study of the change in phenotype (the physical and biochemical traits of organisms) in response to genetic and environmental factors. + Phenomics + + + + Phenomics + + + + + + + + + + 1.3 + true + VT 1.5.16 Evolutionary biology + The evolutionary processes, from the genetic to environmental scale, that produced life in all its diversity. + Evolution + Evolutionary_biology + + + + Evolutionary biology + + + + + + + + + + 1.3 + true + VT 3.1.8 Physiology + The functions of living organisms and their constituent parts. + Physiology + Electrophysiology + + + + Physiology + + + + + + + + + + 1.3 + true + VT 1.5.20 Microbiology + The biology of microorganisms. + Microbiology + Antimicrobial stewardship + Medical microbiology + Microbial genetics + Microbial physiology + Microbial surveillance + Microbiological surveillance + Molecular infection biology + Molecular microbiology + + + + Microbiology + + + + + + + + + + 1.3 + true + The biology of parasites. + Parasitology + + + + Parasitology + + + + + + + + + + 1.3 + true + VT 3.1 Basic medicine + VT 3.2 Clinical medicine + VT 3.2.9 General and internal medicine + Research in support of healing by diagnosis, treatment, and prevention of disease. + Biomedical research + Clinical medicine + Experimental medicine + Medicine + General medicine + Internal medicine + + + + Medicine + + + + + + + + + + 1.3 + true + Neuroscience + VT 3.1.5 Neuroscience + The study of the nervous system and brain; its anatomy, physiology and function. + Neurobiology + Molecular neuroscience + Neurophysiology + Systemetic neuroscience + + + + Neurobiology + + + + + + + + + + 1.3 + true + VT 3.3.1 Epidemiology + Topic concerning the the patterns, cause, and effect of disease within populations. + Public_health_and_epidemiology + Epidemiology + Public health + + + + Public health and epidemiology + + + + + + + + + + + + 1.3 + true + VT 1.5.9 Biophysics + The use of physics to study biological system. + Biophysics + Medical physics + + + + Biophysics + + + + + + + + + + 1.3 + true + VT 1.5.12 Computational biology + VT 1.5.19 Mathematical biology + VT 1.5.26 Theoretical biology + The development and application of theory, analytical methods, mathematical models and computational simulation of biological systems. + Computational_biology + Biomathematics + Mathematical biology + Theoretical biology + + + + This includes the modeling and treatment of biological processes and systems in mathematical terms (theoretical biology). + Computational biology + + + + + + + + + + + 1.3 + true + The analysis of transcriptomes, or a set of all the RNA molecules in a specific cell, tissue etc. + Transcriptomics + Comparative transcriptomics + Transcriptome + + + + Transcriptomics + + + + + + + + + + 1.3 + Chemical science + Polymer science + VT 1.7.10 Polymer science + VT 1.7 Chemical sciences + VT 1.7.2 Chemistry + VT 1.7.3 Colloid chemistry + VT 1.7.5 Electrochemistry + VT 1.7.6 Inorganic and nuclear chemistry + VT 1.7.7 Mathematical chemistry + VT 1.7.8 Organic chemistry + VT 1.7.9 Physical chemistry + The composition and properties of matter, reactions, and the use of reactions to create new substances. + Chemistry + Inorganic chemistry + Mathematical chemistry + Nuclear chemistry + Organic chemistry + Physical chemistry + + + + Chemistry + + + + + + + + + + 1.3 + VT 1.1.99 Other + VT:1.1 Mathematics + The study of numbers (quantity) and other topics including structure, space, and change. + Maths + Mathematics + Dynamic systems + Dynamical systems + Dynymical systems theory + Graph analytics + Monte Carlo methods + Multivariate analysis + + + + Mathematics + + + + + + + + + + 1.3 + VT 1.2 Computer sciences + VT 1.2.99 Other + The theory and practical use of computer systems. + Computer_science + Cloud computing + HPC + High performance computing + High-performance computing + + + + Computer science + + + + + + + + + + 1.3 + The study of matter, space and time, and related concepts such as energy and force. + Physics + + + + Physics + + + + + + + + + + + 1.3 + true + RNA splicing; post-transcription RNA modification involving the removal of introns and joining of exons. + Alternative splicing + RNA_splicing + Splice sites + + + This includes the study of splice sites, splicing patterns, alternative splicing events and variants, isoforms, etc.. + RNA splicing + + + + + + + + + + + 1.3 + true + The structure and function of genes at a molecular level. + Molecular_genetics + + + + Molecular genetics + + + + + + + + + + 1.3 + true + VT 3.2.25 Respiratory systems + The study of respiratory system. + Pulmonary medicine + Pulmonology + Respiratory_medicine + Pulmonary disorders + Respiratory disease + + + + Respiratory medicine + + + + + + + + + + 1.3 + 1.4 + + + The study of metabolic diseases. + + Metabolic disease + true + + + + + + + + + 1.3 + VT 3.3.4 Infectious diseases + The branch of medicine that deals with the prevention, diagnosis and management of transmissible disease with clinically evident illness resulting from infection with pathogenic biological agents (viruses, bacteria, fungi, protozoa, parasites and prions). + Communicable disease + Transmissible disease + Infectious_disease + + + + Infectious disease + + + + + + + + + + 1.3 + The study of rare diseases. + Rare_diseases + + + + Rare diseases + + + + + + + + + + + 1.3 + true + VT 1.7.4 Computational chemistry + Topic concerning the development and application of theory, analytical methods, mathematical models and computational simulation of chemical systems. + Computational_chemistry + + + + Computational chemistry + + + + + + + + + + 1.3 + true + The branch of medicine that deals with the anatomy, functions and disorders of the nervous system. + Neurology + Neurological disorders + + + + Neurology + + + + + + + + + + 1.3 + true + VT 3.2.22 Peripheral vascular disease + VT 3.2.4 Cardiac and Cardiovascular systems + The diseases and abnormalities of the heart and circulatory system. + Cardiovascular medicine + Cardiology + Cardiovascular disease + Heart disease + + + + Cardiology + + + + + + + + + + + 1.3 + true + The discovery and design of drugs or potential drug compounds. + Drug_discovery + + + + This includes methods that search compound collections, generate or analyse drug 3D conformations, identify drug targets with structural docking etc. + Drug discovery + + + + + + + + + + 1.3 + true + Repositories of biological samples, typically human, for basic biological and clinical research. + Tissue collection + biobanking + Biobank + + + + Biobank + + + + + + + + + + 1.3 + Laboratory study of mice, for example, phenotyping, and mutagenesis of mouse cell lines. + Laboratory mouse + Mouse_clinic + + + + Mouse clinic + + + + + + + + + + 1.3 + Collections of microbial cells including bacteria, yeasts and moulds. + Microbial_collection + + + + Microbial collection + + + + + + + + + + 1.3 + Collections of cells grown under laboratory conditions, specifically, cells from multi-cellular eukaryotes and especially animal cells. + Cell_culture_collection + + + + Cell culture collection + + + + + + + + + + 1.3 + Collections of DNA, including both collections of cloned molecules, and populations of micro-organisms that store and propagate cloned DNA. + Clone_library + + + + Clone library + + + + + + + + + + 1.3 + true + 'translating' the output of basic and biomedical research into better diagnostic tools, medicines, medical procedures, policies and advice. + Translational_medicine + + + + Translational medicine + + + + + + + + + + 1.3 + Collections of chemicals, typically for use in high-throughput screening experiments. + Compound_libraries_and_screening + Chemical library + Chemical screening + Compound library + Small chemical compounds libraries + Small compounds libraries + Target identification and validation + + + + Compound libraries and screening + + + + + + + + + + 1.3 + true + VT 3.3 Health sciences + Topic concerning biological science that is (typically) performed in the context of medicine. + Biomedical sciences + Health science + Biomedical_science + + + + Biomedical science + + + + + + + + + + 1.3 + Topic concerning the identity of biological entities, or reports on such entities, and the mapping of entities and records in different databases. + Data_identity_and_mapping + + + + Data identity and mapping + + + + + + + + + 1.3 + 1.12 + + The search and retrieval from a database on the basis of molecular sequence similarity. + + + Sequence search + true + + + + + + + + + 1.4 + true + Objective indicators of biological state often used to assess health, and determinate treatment. + Diagnostic markers + Biomarkers + + + Biomarkers + + + + + + + + + + 1.4 + The procedures used to conduct an experiment. + Experimental techniques + Lab method + Lab techniques + Laboratory method + Laboratory_techniques + Experiments + Laboratory experiments + + + + Laboratory techniques + + + + + + + + + + 1.4 + The development of policies, models and standards that cover data acquisition, storage and integration, such that it can be put to use, typically through a process of systematically applying statistical and / or logical techniques to describe, illustrate, summarise or evaluate data. + Data_architecture_analysis_and_design + Data analysis + Data architecture + Data design + + + + Data architecture, analysis and design + + + + + + + + + + 1.4 + The combination and integration of data from different sources, for example into a central repository or warehouse, to provide users with a unified view of these data. + Data_integration_and_warehousing + Data integration + Data warehousing + + + + Data integration and warehousing + + + + + + + + + + + 1.4 + Any matter, surface or construct that interacts with a biological system. + Biomaterials + + + + Biomaterials + + + + + + + + + + + 1.4 + true + The use of synthetic chemistry to study and manipulate biological systems. + Chemical_biology + + + + Chemical biology + + + + + + + + + + 1.4 + VT 1.7.1 Analytical chemistry + The study of the separation, identification, and quantification of the chemical components of natural and artificial materials. + Analytical_chemistry + + + + Analytical chemistry + + + + + + + + + + 1.4 + The use of chemistry to create new compounds. + Synthetic_chemistry + Synthetic organic chemistry + + + + Synthetic chemistry + + + + + + + + + + 1.4 + 1.2.12 Programming languages + Software engineering + VT 1.2.1 Algorithms + VT 1.2.14 Software engineering + VT 1.2.7 Data structures + The process that leads from an original formulation of a computing problem to executable programs. + Computer programming + Software development + Software_engineering + Algorithms + Data structures + Programming languages + + + + Software engineering + + + + + + + + + + 1.4 + true + The process of bringing a new drug to market once a lead compounds has been identified through drug discovery. + Drug development science + Medicine development + Medicines development + Drug_development + + + + Drug development + + + + + + + + + + 1.4 + Drug delivery + Drug formulation + Drug formulation and delivery + The process of formulating and administering a pharmaceutical compound to achieve a therapeutic effect. + Biotherapeutics + + + + Biotherapeutics + + + + + + + + + 1.4 + true + The study of how a drug interacts with the body. + Drug_metabolism + ADME + Drug absorption + Drug distribution + Drug excretion + Pharmacodynamics + Pharmacokinetics + Pharmacokinetics and pharmacodynamics + + + + Drug metabolism + + + + + + + + + + 1.4 + Health care research + Health care science + The discovery, development and approval of medicines. + Drug discovery and development + Medicines_research_and_development + + + + Medicines research and development + + + + + + + + + + + 1.4 + The safety (or lack) of drugs and other medical interventions. + Patient safety + Safety_sciences + Drug safety + + + + Safety sciences + + + + + + + + + + 1.4 + The detection, assessment, understanding and prevention of adverse effects of medicines. + Pharmacovigilence + + + + Pharmacovigilence concerns safety once a drug has gone to market. + Pharmacovigilance + + + + + + + + + + + 1.4 + The testing of new medicines, vaccines or procedures on animals (preclinical) and humans (clinical) prior to their approval by regulatory authorities. + Preclinical_and_clinical_studies + Clinical studies + Clinical study + Clinical trial + Drug trials + Preclinical studies + Preclinical study + + + + Preclinical and clinical studies + + + + + + + + + + 1.4 + true + The visual representation of an object. + Imaging + Diffraction experiment + Microscopy + Microscopy imaging + Optical super resolution microscopy + Photonic force microscopy + Photonic microscopy + + + + This includes diffraction experiments that are based upon the interference of waves, typically electromagnetic waves such as X-rays or visible light, by some object being studied, typical in order to produce an image of the object or determine its structure. + Imaging + + + + + + + + + + 1.4 + The use of imaging techniques to understand biology. + Biological imaging + Biological_imaging + + + + Bioimaging + + + + + + + + + + 1.4 + VT 3.2.13 Medical imaging + VT 3.2.14 Nuclear medicine + VT 3.2.24 Radiology + The use of imaging techniques for clinical purposes for medical research. + Medical_imaging + Neuroimaging + Nuclear medicine + Radiology + + + + Medical imaging + + + + + + + + + + 1.4 + The use of optical instruments to magnify the image of an object. + Light_microscopy + + + + Light microscopy + + + + + + + + + + 1.4 + The use of animals and alternatives in experimental research. + Animal experimentation + Animal research + Animal testing + In vivo testing + Laboratory_animal_science + + + + Laboratory animal science + + + + + + + + + + 1.4 + true + VT 1.5.18 Marine and Freshwater biology + The study of organisms in the ocean or brackish waters. + Marine_biology + + + + Marine biology + + + + + + + + + + 1.4 + true + The identification of molecular and genetic causes of disease and the development of interventions to correct them. + Molecular_medicine + + + + Molecular medicine + + + + + + + + + + 1.4 + VT 3.3.7 Nutrition and Dietetics + The study of the effects of food components on the metabolism, health, performance and disease resistance of humans and animals. It also includes the study of human behaviours related to food choices. + Nutrition + Nutrition science + Nutritional_science + Dietetics + + + + Nutritional science + + + + + + + + + + 1.4 + true + The collective characterisation and quantification of pools of biological molecules that translate into the structure, function, and dynamics of an organism or organisms. + Omics + + + + Omics + + + + + + + + + + 1.4 + The processes that need to be in place to ensure the quality of products for human or animal use. + Quality assurance + Quality_affairs + Good clinical practice + Good laboratory practice + Good manufacturing practice + + + + Quality affairs + + + + + + + + + 1.4 + The protection of public health by controlling the safety and efficacy of products in areas including pharmaceuticals, veterinary medicine, medical devices, pesticides, agrochemicals, cosmetics, and complementary medicines. + Healthcare RA + Regulatory_affairs + + + + Regulatory affairs + + + + + + + + + + 1.4 + true + Biomedical approaches to clinical interventions that involve the use of stem cells. + Stem cell research + Regenerative_medicine + + + + Regenerative medicine + + + + + + + + + + 1.4 + true + An interdisciplinary field of study that looks at the dynamic systems of the human body as part of an integrted whole, incorporating biochemical, physiological, and environmental interactions that sustain life. + Systems_medicine + + + + Systems medicine + + + + + + + + + + 1.4 + Topic concerning the branch of medicine that deals with the prevention, diagnosis, and treatment of disease, disorder and injury in animals. + Veterinary_medicine + Clinical veterinary medicine + + + + Veterinary medicine + + + + + + + + + + 1.4 + The application of biological concepts and methods to the analytical and synthetic methodologies of engineering. + Biological engineering + Bioengineering + + + + Bioengineering + + + + + + + + + + 1.4 + true + Ageing + Aging + Gerontology + VT 3.2.10 Geriatrics and gerontology + The branch of medicine dealing with the diagnosis, treatment and prevention of disease in older people, and the problems specific to aging. + Geriatrics + Geriatric_medicine + + + + Geriatric medicine + + + + + + + + + + 1.4 + true + VT 3.2.1 Allergy + Health issues related to the immune system and their prevention, diagnosis and management. + Allergy_clinical_immunology_and_immunotherapeutics + Allergy + Clinical immunology + Immune disorders + Immunomodulators + Immunotherapeutics + + + + Allergy, clinical immunology and immunotherapeutics + + + + + + + + + + + + 1.4 + true + The prevention of pain and the evaluation, treatment and rehabilitation of persons in pain. + Algiatry + Pain management + Pain_medicine + + + + Pain medicine + + + + + + + + + + 1.4 + VT 3.2.2 Anaesthesiology + Anaesthesia and anaesthetics. + Anaesthetics + Anaesthesiology + + + + Anaesthesiology + + + + + + + + + + 1.4 + VT 3.2.5 Critical care/Emergency medicine + The multidisciplinary that cares for patients with acute, life-threatening illness or injury. + Acute medicine + Emergency medicine + Intensive care medicine + Critical_care_medicine + + + + Critical care medicine + + + + + + + + + + 1.4 + VT 3.2.7 Dermatology and venereal diseases + The branch of medicine that deals with prevention, diagnosis and treatment of disorders of the skin, scalp, hair and nails. + Dermatology + Dermatological disorders + + + + Dermatology + + + + + + + + + + 1.4 + The study, diagnosis, prevention and treatments of disorders of the oral cavity, maxillofacial area and adjacent structures. + Dentistry + + + + Dentistry + + + + + + + + + + 1.4 + VT 3.2.20 Otorhinolaryngology + The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the ear, nose and throat. + Audiovestibular medicine + Otolaryngology + Otorhinolaryngology + Ear_nose_and_throat_medicine + Head and neck disorders + + + + Ear, nose and throat medicine + + + + + + + + + + 1.4 + true + The branch of medicine dealing with diseases of endocrine organs, hormone systems, their target organs, and disorders of the pathways of glucose and lipid metabolism. + Endocrinology_and_metabolism + Endocrine disorders + Endocrinology + Metabolic disorders + Metabolism + + + + Endocrinology and metabolism + + + + + + + + + + 1.4 + true + VT 3.2.11 Hematology + The branch of medicine that deals with the blood, blood-forming organs and blood diseases. + Haematology + Blood disorders + Haematological disorders + + + + Haematology + + + + + + + + + + 1.4 + true + VT 3.2.8 Gastroenterology and hepatology + The branch of medicine that deals with disorders of the oesophagus, stomach, duodenum, jejenum, ileum, large intestine, sigmoid colon and rectum. + Gastroenterology + Gastrointestinal disorders + + + + Gastroenterology + + + + + + + + + + 1.4 + The study of the biological and physiological differences between males and females and how they effect differences in disease presentation and management. + Gender_medicine + + + + Gender medicine + + + + + + + + + + 1.4 + true + VT 3.2.15 Obstetrics and gynaecology + The branch of medicine that deals with the health of the female reproductive system, pregnancy and birth. + Gynaecology_and_obstetrics + Gynaecological disorders + Gynaecology + Obstetrics + + + + Gynaecology and obstetrics + + + + + + + + + + + 1.4 + true + The branch of medicine that deals with the liver, gallbladder, bile ducts and bile. + Hepatology + Hepatic_and_biliary_medicine + Liver disorders + + + + Hepatic and biliary medicine + + Hepatobiliary medicine + + + + + + + + + 1.4 + 1.13 + + The branch of medicine that deals with the infectious diseases of the tropics. + + + Infectious tropical disease + true + + + + + + + + + 1.4 + The branch of medicine that treats body wounds or shock produced by sudden physical injury, as from violence or accident. + Traumatology + Trauma_medicine + + + + Trauma medicine + + + + + + + + + + 1.4 + true + The branch of medicine that deals with the diagnosis, management and prevention of poisoning and other adverse health effects caused by medications, occupational and environmental toxins, and biological agents. + Medical_toxicology + + + + Medical toxicology + + + + + + + + + + 1.4 + VT 3.2.19 Orthopaedics + VT 3.2.26 Rheumatology + The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the muscle, bone and connective tissue. It incorporates aspects of orthopaedics, rheumatology, rehabilitation medicine and pain medicine. + Musculoskeletal_medicine + Musculoskeletal disorders + Orthopaedics + Rheumatology + + + + Musculoskeletal medicine + + + + + + + + + + + + 1.4 + Optometry + VT 3.2.17 Ophthalmology + VT 3.2.18 Optometry + The branch of medicine that deals with disorders of the eye, including eyelid, optic nerve/visual pathways and occular muscles. + Ophthalmology + Eye disoders + + + + Ophthalmology + + + + + + + + + + 1.4 + VT 3.2.21 Paediatrics + The branch of medicine that deals with the medical care of infants, children and adolescents. + Child health + Paediatrics + + + + Paediatrics + + + + + + + + + + 1.4 + Mental health + VT 3.2.23 Psychiatry + The branch of medicine that deals with the management of mental illness, emotional disturbance and abnormal behaviour. + Psychiatry + Psychiatric disorders + + + + Psychiatry + + + + + + + + + + 1.4 + VT 3.2.3 Andrology + The health of the reproductive processes, functions and systems at all stages of life. + Reproductive_health + Andrology + Family planning + Fertility medicine + Reproductive disorders + + + + Reproductive health + + + + + + + + + + 1.4 + VT 3.2.28 Transplantation + The use of operative, manual and instrumental techniques on a patient to investigate and/or treat a pathological condition or help improve bodily function or appearance. + Surgery + Transplantation + + + + Surgery + + + + + + + + + + 1.4 + VT 3.2.29 Urology and nephrology + The branches of medicine and physiology focussing on the function and disorders of the urinary system in males and females, the reproductive system in males, and the kidney. + Urology_and_nephrology + Kidney disease + Nephrology + Urological disorders + Urology + + + + Urology and nephrology + + + + + + + + + + + 1.4 + Alternative medicine + Holistic medicine + Integrative medicine + VT 3.2.12 Integrative and Complementary medicine + Medical therapies that fall beyond the scope of conventional medicine but may be used alongside it in the treatment of disease and ill health. + Complementary_medicine + + + + Complementary medicine + + + + + + + + + + 1.7 + Techniques that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body. + MRT + Magnetic resonance imaging + Magnetic resonance tomography + NMRI + Nuclear magnetic resonance imaging + MRI + + + MRI + + + + + + + + + + + 1.7 + The study of matter by studying the diffraction pattern from firing neutrons at a sample, typically to determine atomic and/or magnetic structure. + Neutron diffraction experiment + Neutron_diffraction + Elastic neutron scattering + Neutron microscopy + + + Neutron diffraction + + + + + + + + + + 1.7 + Imaging in sections (sectioning), through the use of a wave-generating device (tomograph) that generates an image (a tomogram). + CT + Computed tomography + TDM + Tomography + Electron tomography + PET + Positron emission tomography + X-ray tomography + + + Tomography + + + + + + + + + + 1.7 + true + KDD + Knowledge discovery in databases + VT 1.3.2 Data mining + The discovery of patterns in large data sets and the extraction and trasnsformation of those patterns into a useful format. + Data_mining + Pattern recognition + + + Data mining + + + + + + + + + + 1.7 + Artificial Intelligence + VT 1.2.2 Artificial Intelligence (expert systems, machine learning, robotics) + A topic concerning the application of artificial intelligence methods to algorithms, in order to create methods that can learn from data in order to generate an output, rather than relying on explicitly encoded information only. + Machine_learning + Active learning + Ensembl learning + Kernel methods + Knowledge representation + Neural networks + Recommender system + Reinforcement learning + Supervised learning + Unsupervised learning + + + Machine learning + + + + + + + + + + 1.8 + Database administration + Information systems + Databases + The general handling of data stored in digital archives such as databases, databanks, web portals, and other data resources. + Database_management + Content management + Document management + File management + Record management + + + This includes databases for the results of scientific experiments, the application of high-throughput technology, computational analysis and the scientific literature. It covers the management and manipulation of digital documents, including database records, files, and reports. + Database management + + + + + + + + + + 1.8 + VT 1.5.29 Zoology + Animals, e.g. information on a specific animal genome including molecular sequences, genes and annotation. + Animal + Animal biology + Animals + Metazoa + Zoology + Animal genetics + Animal physiology + Entomology + + + The study of the animal kingdom. + Zoology + + + + + + + + + + + 1.8 + The biology, archival, detection, prediction and analysis of positional features such as functional and other key sites, in protein sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them. + Protein_sites_features_and_motifs + Protein sequence features + Signal peptide cleavage sites + + + A signal peptide coding sequence encodes an N-terminal domain of a secreted protein, which is involved in attaching the polypeptide to a membrane leader sequence. A transit peptide coding sequence encodes an N-terminal domain of a nuclear-encoded organellar protein; which is involved in import of the protein into the organelle. + Protein sites, features and motifs + + + + + + + + + + 1.8 + The biology, archival, detection, prediction and analysis of positional features such as functional and other key sites, in nucleic acid sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them. + Nucleic_acid_sites_features_and_motifs + Nucleic acid functional sites + Nucleic acid sequence features + Primer binding sites + Sequence tagged sites + + + Sequence tagged sites are short DNA sequences that are unique within a genome and serve as a mapping landmark, detectable by PCR they allow a genome to be mapped via an ordering of STSs. + Nucleic acid sites, features and motifs + + + + + + + + + + 1.8 + Transcription of DNA into RNA and features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules. + Gene_transcripts + Coding RNA + EST + Exons + Fusion transcripts + Gene transcript features + Introns + PolyA signal + PolyA site + Signal peptide coding sequence + Transit peptide coding sequence + cDNA + mRNA + mRNA features + + + This includes 5'untranslated region (5'UTR), coding sequences (CDS), exons, intervening sequences (intron) and 3'untranslated regions (3'UTR). + This includes Introns, and protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. Also expressed sequence tag (EST) or complementary DNA (cDNA) sequences. + This includes coding sequences for a signal or transit peptide. A signal peptide coding sequence encodes an N-terminal domain of a secreted protein, which is involved in attaching the polypeptide to a membrane leader sequence. A transit peptide coding sequence encodes an N-terminal domain of a nuclear-encoded organellar protein; which is involved in import of the protein into the organelle. + This includes regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript. A polyA signal is required for endonuclease cleavage of an RNA transcript that is followed by polyadenylation. A polyA site is a site on an RNA transcript to which adenine residues will be added during post-transcriptional polyadenylation. + Gene transcripts + + + + + + + + + + 1.8 + 1.13 + + Protein-ligand (small molecule) interaction(s). + + + Protein-ligand interactions + true + + + + + + + + + 1.8 + 1.13 + + Protein-drug interaction(s). + + + Protein-drug interactions + true + + + + + + + + + 1.8 + Genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods. + Genotyping_experiment + + + Genotyping experiment + + + + + + + + + + 1.8 + Genome-wide association study experiments. + GWAS + GWAS analysis + Genome-wide association study + GWAS_study + + + GWAS study + + + + + + + + + + 1.8 + Microarray experiments including conditions, protocol, sample:data relationships etc. + Microarrays + Microarray_experiment + Gene expression microarray + Genotyping array + Methylation array + MicroRNA array + Multichannel microarray + One channel microarray + Proprietary platform micoarray + RNA chips + RNA microarrays + Reverse phase protein array + SNP array + Tiling arrays + Tissue microarray + Two channel microarray + aCGH microarray + mRNA microarray + miRNA array + + + This might specify which raw data file relates to which sample and information on hybridisations, e.g. which are technical and which are biological replicates. + Microarray experiment + + + + + + + + + + 1.8 + PCR experiments, e.g. quantitative real-time PCR. + Polymerase chain reaction + PCR_experiment + Quantitative PCR + RT-qPCR + Real Time Quantitative PCR + + + PCR experiment + + + + + + + + + + 1.8 + Proteomics experiments. + Proteomics_experiment + 2D PAGE experiment + DIA + Data-independent acquisition + MS + MS experiments + Mass spectrometry + Mass spectrometry experiments + Northern blot experiment + Spectrum demultiplexing + + + This includes two-dimensional gel electrophoresis (2D PAGE) experiments, gels or spots in a gel. Also mass spectrometry - an analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase. Also Northern blot experiments. + Proteomics experiment + + + + + + + + + + + 1.8 + 1.13 + + Two-dimensional gel electrophoresis experiments, gels or spots in a gel. + + + 2D PAGE experiment + true + + + + + + + + + 1.8 + 1.13 + + Northern Blot experiments. + + + Northern blot experiment + true + + + + + + + + + 1.8 + RNAi experiments. + RNAi_experiment + + + RNAi experiment + + + + + + + + + + 1.8 + Biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction. + Simulation_experiment + + + Simulation experiment + + + + + + + + + 1.8 + 1.13 + + Protein-DNA/RNA interaction(s). + + + Protein-nucleic acid interactions + true + + + + + + + + + 1.8 + 1.13 + + Protein-protein interaction(s), including interactions between protein domains. + + + Protein-protein interactions + true + + + + + + + + + 1.8 + 1.13 + + Cellular process pathways. + + + Cellular process pathways + true + + + + + + + + + 1.8 + 1.13 + + Disease pathways, typically of human disease. + + + Disease pathways + true + + + + + + + + + 1.8 + 1.13 + + Environmental information processing pathways. + + + Environmental information processing pathways + true + + + + + + + + + 1.8 + 1.13 + + Genetic information processing pathways. + + + Genetic information processing pathways + true + + + + + + + + + 1.8 + 1.13 + + Super-secondary structure of protein sequence(s). + + + Protein super-secondary structure + true + + + + + + + + + 1.8 + 1.13 + + Catalytic residues (active site) of an enzyme. + + + Protein active sites + true + + + + + + + + + 1.8 + Binding sites in proteins, including cleavage sites (for a proteolytic enzyme or agent), key residues involved in protein folding, catalytic residues (active site) of an enzyme, ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids, RNA and DNA-binding proteins and binding sites etc. + Protein_binding_sites + Enzyme active site + Protein cleavage sites + Protein functional sites + Protein key folding sites + Protein-nucleic acid binding sites + + + Protein binding sites + + + + + + + + + + 1.8 + 1.13 + + RNA and DNA-binding proteins and binding sites in protein sequences. + + + Protein-nucleic acid binding sites + true + + + + + + + + + 1.8 + 1.13 + + Cleavage sites (for a proteolytic enzyme or agent) in a protein sequence. + + + Protein cleavage sites + true + + + + + + + + + 1.8 + 1.13 + + Chemical modification of a protein. + + + Protein chemical modifications + true + + + + + + + + + 1.8 + Disordered structure in a protein. + Protein features (disordered structure) + Protein_disordered_structure + + + Protein disordered structure + + + + + + + + + + 1.8 + 1.13 + + Structural domains or 3D folds in a protein or polypeptide chain. + + + Protein domains + true + + + + + + + + + 1.8 + 1.13 + + Key residues involved in protein folding. + + + Protein key folding sites + true + + + + + + + + + 1.8 + 1.13 + + Post-translation modifications in a protein sequence, typically describing the specific sites involved. + + + Protein post-translational modifications + true + + + + + + + + + 1.8 + Secondary structure (predicted or real) of a protein, including super-secondary structure. + Protein features (secondary structure) + Protein_secondary_structure + Protein super-secondary structure + + + Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc. + The location and size of the secondary structure elements and intervening loop regions is typically given. The report can include disulphide bonds and post-translationally formed peptide bonds (crosslinks). + Protein secondary structure + + + + + + + + + + 1.8 + 1.13 + + Short repetitive subsequences (repeat sequences) in a protein sequence. + + + Protein sequence repeats + true + + + + + + + + + 1.8 + 1.13 + + Signal peptides or signal peptide cleavage sites in protein sequences. + + + Protein signal peptides + true + + + + + + + + + 1.10 + VT 1.1.1 Applied mathematics + The application of mathematics to specific problems in science, typically by the formulation and analysis of mathematical models. + Applied_mathematics + + + Applied mathematics + + + + + + + + + + 1.10 + VT 1.1.1 Pure mathematics + The study of abstract mathematical concepts. + Pure_mathematics + Linear algebra + + + Pure mathematics + + + + + + + + + + 1.10 + The control of data entry and maintenance to ensure the data meets defined standards, qualities or constraints. + Data_governance + Data stewardship + + + Data governance + + http://purl.bioontology.org/ontology/MSH/D030541 + + + + + + + + + 1.10 + The quality, integrity, and cleaning up of data. + Data_quality_management + Data clean-up + Data cleaning + Data integrity + Data quality + + + Data quality management + + + + + + + + + + 1.10 + Freshwater science + VT 1.5.18 Marine and Freshwater biology + The study of organisms in freshwater ecosystems. + Freshwater_biology + + + + Freshwater biology + + + + + + + + + + 1.10 + true + VT 3.1.2 Human genetics + The study of inheritance in human beings. + Human_genetics + + + + Human genetics + + + + + + + + + + 1.10 + VT 3.3.14 Tropical medicine + Health problems that are prevalent in tropical and subtropical regions. + Tropical_medicine + + + + Tropical medicine + + + + + + + + + + 1.10 + true + VT 3.3.14 Tropical medicine + VT 3.4 Medical biotechnology + VT 3.4.1 Biomedical devices + VT 3.4.2 Health-related biotechnology + Biotechnology applied to the medical sciences and the development of medicines. + Medical_biotechnology + Pharmaceutical biotechnology + + + + Medical biotechnology + + + + + + + + + + 1.10 + true + VT 3.4.5 Molecular diagnostics + An approach to medicine whereby decisions, practices and are tailored to the individual patient based on their predicted response or risk of disease. + Precision medicine + Personalised_medicine + Molecular diagnostics + + + + Personalised medicine + + + + + + + + + + 1.12 + Experimental techniques to purify a protein-DNA crosslinked complex. Usually sequencing follows e.g. in the techniques ChIP-chip, ChIP-seq and MeDIP-seq. + Chromatin immunoprecipitation + Immunoprecipitation_experiment + + + Immunoprecipitation experiment + + + + + + + + + + 1.12 + Laboratory technique to sequence the complete DNA sequence of an organism's genome at a single time. + Genome sequencing + WGS + Whole_genome_sequencing + De novo genome sequencing + Whole genome resequencing + + + Whole genome sequencing + + + + + + + + + + 1.12 + + Laboratory technique to sequence the methylated regions in DNA. + MeDIP-chip + MeDIP-seq + mDIP + Methylated_DNA_immunoprecipitation + BS-Seq + Bisulfite sequencing + MeDIP + Methylated DNA immunoprecipitation (MeDIP) + Methylation sequencing + WGBS + Whole-genome bisulfite sequencing + methy-seq + methyl-seq + + + Methylated DNA immunoprecipitation + + + + + + + + + + 1.12 + Laboratory technique to sequence all the protein-coding regions in a genome, i.e., the exome. + Exome + Exome analysis + Exome capture + Targeted exome capture + WES + Whole exome sequencing + Exome_sequencing + + + Exome sequencing is considered a cheap alternative to whole genome sequencing. + Exome sequencing + + + + + + + + + + 1.12 + + true + The design of an experiment intended to test a hypothesis, and describe or explain empirical data obtained under various experimental conditions. + Design of experiments + Experimental design + Studies + Experimental_design_and_studies + + + Experimental design and studies + + + + + + + + + + + 1.12 + The design of an experiment involving non-human animals. + Animal_study + Challenge study + + + Animal study + + + + + + + + + + + 1.13 + true + The ecology of microorganisms including their relationship with one another and their environment. + Environmental microbiology + Microbial_ecology + Community analysis + Microbiome + Molecular community analysis + + + Microbial ecology + + + + + + + + + + 1.17 + An antibody-based technique used to map in vivo RNA-protein interactions. + RIP + RNA_immunoprecipitation + CLIP + CLIP-seq + HITS-CLIP + PAR-CLIP + iCLIP + + + RNA immunoprecipitation + + + + + + + + + + 1.17 + Large-scale study (typically comparison) of DNA sequences of populations. + Population_genomics + + + + Population genomics + + + + + + + + + + 1.20 + Agriculture + Agroecology + Agronomy + Multidisciplinary study, research and development within the field of agriculture. + Agricultural_science + Agricultural biotechnology + Agricultural economics + Animal breeding + Animal husbandry + Animal nutrition + Farming systems research + Food process engineering + Food security + Horticulture + Phytomedicine + Plant breeding + Plant cultivation + Plant nutrition + Plant pathology + Soil science + + + Agricultural science + + + + + + + + + + 1.20 + Approach which samples, in parallel, all genes in all organisms present in a given sample, e.g. to provide insight into biodiversity and function. + Shotgun metagenomic sequencing + Metagenomic_sequencing + + + Metagenomic sequencing + + + + + + + + + + 1.21 + Environment + Study of the environment, the interactions between its physical, chemical, and biological components and it's effect on life. Also how humans impact upon the environment, and how we can manage and utilise natural resources. + Environmental_science + + + Environmental sciences + + + + + + + + + + 1.22 + The study and simulation of molecular conformations using a computational model and computer simulations. + + + This includes methods such as Molecular Dynamics, Coarse-grained dynamics, metadynamics, Quantum Mechanics, QM/MM, Markov State Models, etc. + Biomolecular simulation + + + + + + + + + + 1.22 + The application of multi-disciplinary science and technology for the construction of artificial biological systems for diverse applications. + Biomimeic chemistry + + + Synthetic biology + + + + + + + + + + + 1.22 + The application of biotechnology to directly manipulate an organism's genes. + Genetic manipulation + Genetic modification + Genetic_engineering + Genome editing + Genome engineering + + + Genetic engineering + + + + + + + + + + 1.24 + A field of biological research focused on the discovery and identification of peptides, typically by comparing mass spectra against a protein database. + Proteogenomics + + + Proteogenomics + + + + + + + + + + 1.24 + Amplicon panels + Resequencing + Laboratory experiment to identify the differences between a specific genome (of an individual) and a reference genome (developed typically from many thousands of individuals). WGS re-sequencing is used as golden standard to detect variations compared to a given reference genome, including small variants (SNP and InDels) as well as larger genome re-organisations (CNVs, translocations, etc.). + Highly targeted resequencing + Whole genome resequencing (WGR) + Whole-genome re-sequencing (WGSR) + Amplicon sequencing + Amplicon-based sequencing + Ultra-deep sequencing + Amplicon sequencing is the ultra-deep sequencing of PCR products (amplicons), usually for the purpose of efficient genetic variant identification and characterisation in specific genomic regions. + Genome resequencing + + + + + + + + + + 1.24 + A biomedical field that bridges immunology and genetics, to study the genetic basis of the immune system. + Immune system genetics + Immungenetics + Immunology and genetics + Immunogenetics + Immunogenes + + + This involves the study of often complex genetic traits underlying diseases involving defects in the immune system. For example, identifying target genes for therapeutic approaches, or genetic variations involved in immunological pathology. + Immunogenetics + + + + + + + + + + 1.24 + Interdisciplinary science focused on extracting information from chemical systems by data analytical approaches, for example multivariate statistics, applied mathematics, and computer science. + Chemometrics + + + Chemometrics + + + + + + + + + + 1.24 + Cytometry is the measurement of the characteristics of cells. + Cytometry + Flow cytometry + Image cytometry + Mass cytometry + + + Cytometry + + + + + + + + + + 1.24 + Biotechnology approach that seeks to optimize cellular genetic and regulatory processes in order to increase the cells' production of a certain substance. + + + Metabolic engineering + + + + + + + + + + 1.24 + Molecular biology methods used to analyze the spatial organization of chromatin in a cell. + 3C technologies + 3C-based methods + Chromosome conformation analysis + Chromosome_conformation_capture + Chromatin accessibility + Chromatin accessibility assay + Chromosome conformation capture + + + + + + + + + + + 1.24 + The study of microbe gene expression within natural environments (i.e. the metatranscriptome). + Metatranscriptomics + + + Metatranscriptomics methods can be used for whole gene expression profiling of complex microbial communities. + Metatranscriptomics + + + + + + + + + + 1.24 + The reconstruction and analysis of genomic information in extinct species. + Paleogenomics + Ancestral genomes + Paleogenetics + Paleogenomics + + + + + + + + + + + 1.24 + The biological classification of organisms by categorizing them in groups ("clades") based on their most recent common ancestor. + Cladistics + Tree of life + + + Cladistics + + + + + + + + + + + + 1.24 + The study of the process and mechanism of change of biomolecules such as DNA, RNA, and proteins across generations. + Molecular_evolution + + + Molecular evolution + + + + + + + + + + + 1.24 + Immunoinformatics is the field of computational biology that deals with the study of immunoloogical questions. Immunoinformatics is at the interface between immunology and computer science. It takes advantage of computational, statistical, mathematical approaches and enhances the understanding of immunological knowledge. + Computational immunology + Immunoinformatics + This involves the study of often complex genetic traits underlying diseases involving defects in the immune system. For example, identifying target genes for therapeutic approaches, or genetic variations involved in immunological pathology. + Immunoinformatics + + + + + + + + + + 1.24 + A diagnostic imaging technique based on the application of ultrasound. + Standardized echography + Ultrasound imaging + Echography + Diagnostic sonography + Medical ultrasound + Standard echography + Ultrasonography + + + Echography + + + + + + + + + + 1.24 + Experimental approaches to determine the rates of metabolic reactions - the metabolic fluxes - within a biological entity. + Fluxomics + The "fluxome" is the complete set of metabolic fluxes in a cell, and is a dynamic aspect of phenotype. + Fluxomics + + + + + + + + + + 1.12 + An experiment for studying protein-protein interactions. + Protein_interaction_experiment + Co-immunoprecipitation + Phage display + Yeast one-hybrid + Yeast two-hybrid + + + This used to have the ID http://edamontology.org/topic_3557 but the numerical part (owing to an error) duplicated http://edamontology.org/operation_3557 ('Imputation'). ID of this concept set to http://edamontology.org/topic_3957 in EDAM 1.24. + Protein interaction experiment + + + + + + + + + + 1.25 + A DNA structural variation, specifically a duplication or deletion event, resulting in sections of the genome to be repeated, or the number of repeats in the genome to vary between individuals. + Copy_number_variation + CNV deletion + CNV duplication + CNV insertion / amplification + Complex CNV + Copy number variant + Copy number variation + + + + + + + + + + 1.25 + The branch of genetics concerned with the relationships between chromosomes and cellular behaviour, especially during mitosis and meiosis. + + + Cytogenetics + + + + + + + + + + 1.25 + The design of vaccines to protect against a particular pathogen, including antigens, delivery systems, and adjuvants to elicit a predictable immune response against specific epitopes. + Vaccinology + Rational vaccine design + Reverse vaccinology + Structural vaccinology + Structure-based immunogen design + Vaccine design + + + Vaccinology + + + + + + + + + + 1.25 + The study of immune system as a whole, its regulation and response to pathogens using genome-wide approaches. + + + Immunomics + + + + + + + + + + 1.25 + Epistasis can be defined as the ability of the genotype at one locus to supersede the phenotypic effect of a mutation at another locus. This interaction between genes can occur at different level: gene expression, protein levels, etc... + Epistatic genetic interaction + Epistatic interactions + + + Epistasis + + http://purl.bioontology.org/ontology/MSH/D004843 + + + + + + + + + 1.26 + Open science encompasses the practices of making scientific research transparent and participatory, and its outputs publicly accessible. + + + Open science + + + + + + + + + + 1.26 + Data rescue denotes digitalisation, formatting, archival, and publication of data that were not available in accessible or usable form. Examples are data from private archives, data inside publications, or in paper records stored privately or publicly. + + + Data rescue + + + + + + + + + + + 1.26 + FAIR data principles + FAIRification + FAIR data is data that meets the principles of being findable, accessible, interoperable, and reusable. + Findable, accessible, interoperable, reusable data + Open data + + + A substantially overlapping term is 'open data', i.e. publicly available data that is free to use, distribute, and create derivative work from, without restrictions. Open data does not automatically have to be FAIR (e.g. findable or interoperable), while FAIR data does in some cases not have to be publicly available without restrictions (especially sensitive personal data). + FAIR data + + + + + + + + + + + + 1.26 + Microbial mechanisms for protecting microorganisms against antimicrobial agents. + AMR + Antifungal resistance + Antiprotozoal resistance + Antiviral resistance + Extensive drug resistance (XDR) + Multidrug resistance + Multiple drug resistance (MDR) + Multiresistance + Pandrug resistance (PDR) + Total drug resistance (TDR) + + + Antimicrobial Resistance + + + + + + + + + + + 1.26 + The monitoring method for measuring electrical activity in the brain. + EEG + + + Electroencephalography + + + + + + + + + + + 1.26 + The monitoring method for measuring electrical activity in the heart. + ECG + EKG + + + Electrocardiography + + + + + + + + + + 1.26 + A method for studying biomolecules and other structures at very low (cryogenic) temperature using electron microscopy. + cryo-EM + + + Cryogenic electron microscopy + + + + + + + + + + 1.26 + Biosciences, or life sciences, include fields of study related to life, living beings, and biomolecules. + Life sciences + + + Biosciences + + + + + + + + + + + + + 1.26 + Biogeochemical cycle + The carbon cycle is the biogeochemical pathway of carbon moving through the different parts of the Earth (such as ocean, atmosphere, soil), or eventually another planet. + + + Note that the carbon-nitrogen-oxygen (CNO) cycle (https://en.wikipedia.org/wiki/CNO_cycle) is a completely different, thermonuclear reaction in stars. + Carbon cycle + + + + + + + + + + + 1.26 + Multiomics concerns integration of data from multiple omics (e.g. transcriptomics, proteomics, epigenomics). + Integrative omics + Multi-omics + Pan-omics + Panomics + + + Multiomics + + + + + + + + + + + 1.26 + With ribosome profiling, ribosome-protected mRNA fragments are analyzed with RNA-seq techniques leading to a genome-wide measurement of the translation landscape. + RIBO-seq + Ribo-Seq + RiboSeq + ribo-seq + ribosomal footprinting + translation footprinting + + + Ribosome Profiling + + + + + + + + + + 1.26 + Combined with NGS (Next Generation Sequencing) technologies, single-cell sequencing allows the study of genetic information (DNA, RNA, epigenome...) at a single cell level. It is often used for differential analysis and gene expression profiling. + Single Cell Genomics + + + Single-Cell Sequencing + + + + + + + + + + + 1.26 + The study of mechanical waves in liquids, solids, and gases. + + + Acoustics + + + + + + + + + + + + 1.26 + Interdisplinary study of behavior, precise control, and manipulation of low (microlitre) volume fluids in constrained space. + Fluidics + + + Microfluidics + + + + + + + + + + 1.26 + Genomic imprinting is a gene regulation mechanism by which a subset of genes are expressed from one of the two parental chromosomes only. Imprinted genes are organized in clusters, their silencing/activation of the imprinted loci involves epigenetic marks (DNA methylation, etc) and so-called imprinting control regions (ICR). It has been described in mammals, but also plants and insects. + Gene imprinting + + + Genomic imprinting + + + + + + + + + + + + + + + + + 1.26 + Environmental DNA (eDNA) + Environmental RNA (eRNA) + Environmental sequencing + Taxonomic profiling + Metabarcoding is the barcoding of (environmental) DNA or RNA to identify multiple taxa from the same sample. + DNA metabarcoding + Environmental metabarcoding + RNA metabarcoding + eDNA metabarcoding + eRNA metabarcoding + + + Typically, high-throughput sequencing is performed and the resulting sequence reads are matched to DNA barcodes in a reference database. + Metabarcoding + + + + + + + + + + + + + 1.2 + + An obsolete concept (redefined in EDAM). + + Needed for conversion to the OBO format. + Obsolete concept (EDAM) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beta12orEarlier + A serialisation format conforming to the Web Ontology Language (OWL) model. + + + OWL format + + + 1.2 + rdf + + Resource Description Framework (RDF) XML format. + + + RDF/XML can be used as a standard serialisation syntax for OWL DL, but not for OWL Full. + RDF/XML + http://www.ebi.ac.uk/SWO/data/SWO_3000006 + + + + + + + diff --git a/edamfu/tests/output.xml b/edamfu/tests/output.xml new file mode 100644 index 0000000..793a6cb --- /dev/null +++ b/edamfu/tests/output.xml @@ -0,0 +1,2 @@ + +Text with ' \ No newline at end of file diff --git a/edamfu/tests/test_core.py b/edamfu/tests/test_core.py new file mode 100644 index 0000000..70abd8d --- /dev/null +++ b/edamfu/tests/test_core.py @@ -0,0 +1,113 @@ +import filecmp +import os +import tempfile +import unittest +from xml.dom import minidom +import xml.etree.ElementTree as ET + +from rdflib import Graph, URIRef, RDF, OWL, Namespace + +from edamfu.core import load, save, CANONICAL_NAMESPACES + + +def get_temporary_file_path(): + # Create a temporary file and return its path + temp_file = tempfile.NamedTemporaryFile(delete=False) + temp_file_path = temp_file.name + temp_file.close() + return temp_file_path + + +def get_ontology_subject(graph): + # Test for the presence of owl:Ontology + ontology_subjects = [ + subject + for subject in graph.subjects(RDF.type, OWL.Ontology) + if all( + triple_object != OWL.Class + for _, _, triple_object in graph.triples((subject, RDF.type, None)) + ) + ] + return ontology_subjects[0] if ontology_subjects else None + + +def retrieve_element_from_xml(xml_file_path, element_path): + # Parse the XML file + tree = ET.parse(xml_file_path) + root = tree.getroot() + return root.findall(element_path) + + +def compare_xml_elements(elem1, elem2, tag=''): + if elem1.tag != elem2.tag: + return False, f"tag `{tag}`: Tags {elem1.tag} and {elem2.tag} are different" + if elem1.text and elem2.text and elem1.text != elem2.text: + text1 = elem1.text.replace(' ', '\u2423').replace(' ', '\u2192').replace('\n', '\u240A') + text2 = elem2.text.replace(' ', '\u2423').replace(' ', '\u2192').replace('\n', '\u240A') + return False, f"tag `{tag}`: Text `{text1}` and `{text2}` are different" + elif (elem1.text and not elem2.text) or (not elem1.text and elem2.text): + return False, f"tag `{tag}`: Text {elem1.text} and {elem2.text} are different" + if elem1.attrib != elem2.attrib: + return False, f"tag `{tag}`: Attributes {elem1.attrib} and {elem2.attrib} are different" + if len(elem1) != len(elem2): + return False, f"tag `{tag}`: Number of children {len(elem1)} and {len(elem2)} are different" + for child1, child2 in zip(elem1, elem2): + res, msg = compare_xml_elements(child1, child2, tag=tag+'/'+elem1.tag) + if not res: + return res, msg + return True, "all elements are identical" + +def get_pretty_xml(element): + rough_string = ET.tostring(element, 'utf-8') + reparsed = minidom.parseString(rough_string) + return reparsed.toprettyxml(indent=" ") + +class CoreTestCase(unittest.TestCase): + # Test loading the "raw" EDAM ontology from a file, and then saving it to another file + + @classmethod + def setUpClass(cls): + # Set up any necessary test data or resources + cls.edam_file_raw_path = "EDAM_dev.owl" + g = load(cls.edam_file_raw_path) + cls.result_file_path = get_temporary_file_path() + save(g, cls.result_file_path) + cls.result_graph = Graph() + cls.result_graph.parse(cls.result_file_path, format="xml") + + @classmethod + def tearDownClass(cls): + #print(retrieve_element_from_xml(cls.edam_file_raw_path, ".//{http://www.w3.org/2002/07/owl#}Ontology")) + #print(retrieve_element_from_xml(cls.result_file_path, ".//{http://www.w3.org/2002/07/owl#}Ontology")) + #if cls.result_file_path and os.path.exists(cls.result_file_path): + # os.remove(cls.result_file_path) + return + + def test_ontology_class_exists(self): + # there should be an ontology class in the result graph + self.assertIsNotNone( + get_ontology_subject(self.result_graph), + f"Cannot find the ontology class in the result graph of file {self.result_file_path}", + ) + + def test_ontology_elements_identical(self): + # the result should be the same as the original file + raw_onto_el = retrieve_element_from_xml(self.edam_file_raw_path, ".//{http://www.w3.org/2002/07/owl#}Ontology")[0] + result_onto_el = retrieve_element_from_xml(self.result_file_path, ".//{http://www.w3.org/2002/07/owl#}Ontology")[0] + res, msg = compare_xml_elements(raw_onto_el, result_onto_el) + self.assertTrue( + res, + f"Ontology elements in {self.edam_file_raw_path} and {self.result_file_path} are not identical because {msg}", + #f"Ontology elements in {self.edam_file_raw_path} and {self.result_file_path} are not identical because {msg}:\n\n {get_pretty_xml(raw_onto_el)}\n\n vs \n\n{get_pretty_xml(result_onto_el)}", + ) + + def test_files_identical(self): + # the result should be the same as the original file + self.assertTrue( + filecmp.cmp(self.edam_file_raw_path, self.result_file_path), + f"Files {self.edam_file_raw_path} and {self.result_file_path} are not identical", + ) + + +if __name__ == "__main__": + unittest.main() diff --git a/src/webapp/app.py b/src/webapp/app.py index c4f82ad..ac86123 100644 --- a/src/webapp/app.py +++ b/src/webapp/app.py @@ -1,7 +1,7 @@ import csv from flask import Flask, redirect, url_for, request, render_template import random -import nbformat +import os from rdflib import ConjunctiveGraph, Namespace @@ -51,11 +51,27 @@ def index(): new_formats=res['nb_formats'] - res_last['nb_formats'] ) -@app.route('/expert_curation') -def expert_curation(): - # 1. select a topic - # 2. select topic-specific curation actions (subclasses of the identified topic) - return render_template('expert_curation.html') +@app.route('/current') +def current(): + res = get_edam_numbers(g) + + return render_template('current.html', + topics=res['nb_topics'], + operations=res['nb_operations'], + data=res['nb_data'], + formats=res['nb_formats'] + ) + +@app.route('/quality') +def quality(): + res = get_edam_numbers(g) + + return render_template('quality.html', + topics=res['nb_topics'], + operations=res['nb_operations'], + data=res['nb_data'], + formats=res['nb_formats'] + ) def get_edam_numbers(g): query_op = """ @@ -140,49 +156,182 @@ def edam_last_report(): return render_template('edam_last_report.html', output_edamci_list=edamci_output_list, robot_output_list=robot_output_list) +################################################# +# How to contribute +################################################# +@app.route('/high_priority') +def high_priority(): + dir_queries = "./queries" + + ## Checks that all mandatory properties are filled in. + query = dir_queries + "/mandatory_property_missing.rq" + with open(query, "r") as f: + query = f.read() + results = g.query(query) + f.close() + + mandatory_property_missing = [] + for r in results: + mandatory_property_missing.append({"term": r["label"], "class": r["entity"]}) + + ## Checks that all IDs have a unique number. + query = dir_queries + "/get_uri.rq" + with open(query, "r") as f: + query = f.read() + results = g.query(query) + f.close() + + id_unique = [] + for r in results: + id_unique.append({"term": r["label"], "class": r["entity"]}) + + return render_template('high_priority.html', + mandatory_property_missing = mandatory_property_missing, + id_unique = id_unique, + random = random) + +#################################### @app.route('/quick_curation') def quick_curation(): - # NO wikipedia - q_no_wikipedia = """ - SELECT (count(?term) as ?nb_no_wikipedia) WHERE { - ?c rdfs:subClassOf+ edam:topic_0003 ; - rdfs:label ?term . - - FILTER NOT EXISTS { - ?c rdfs:seeAlso ?seealso . - FILTER (regex(str(?seealso), "wikipedia.org", "i")) - } . - } - """ - results = g.query(q_no_wikipedia, initNs=ns) - count_no_wikipedia = 0 + dir_queries = "./queries" + + ## Checks that all webpage and doi are declared as literal links. + query = dir_queries + "/literal_links.rq" + with open(query, "r") as f: + query = f.read() + results = g.query(query) + f.close() + + literal_links = [] + for r in results: + literal_links.append({"term": r["label"], "class": r["entity"]}) + + ## Formatting of def and labels + # end_dot_def_missing.rq;end_dot_label.rq;end_space_annotation.rq;eol_in_annotation.rq;start_space_annotation.rq;tab_in_annotation.rq + queries = [ dir_queries + "/end_dot_def_missing.rq", dir_queries + "/end_dot_label.rq", dir_queries + "/end_space_annotation.rq", dir_queries + "/eol_in_annotation.rq", + dir_queries + "/start_space_annotation.rq", dir_queries + "/tab_in_annotation.rq"] + results = {} + for q in queries: + with open(q, "r") as f: + q = f.read() + results.update(g.query(q)) + f.close() + + formatting = [] for r in results: - count_no_wikipedia = str(r["nb_no_wikipedia"]) - - ######### - q_no_wikipedia_all = """ - SELECT ?c ?term WHERE { - ?c rdfs:subClassOf+ edam:topic_0003 ; - rdfs:label ?term . - - FILTER NOT EXISTS { - ?c rdfs:seeAlso ?seealso . - FILTER (regex(str(?seealso), "wikipedia.org", "i")) - } . - } - """ - results = g.query(q_no_wikipedia_all, initNs=ns) - no_wikipedia = [] + formatting.append({"term": r["label"], "class": r["entity"]}) + + ## Get topics without a wikipedia link (WARNING) + query = dir_queries + "/no_wikipedia_link_topic.rq" + with open(query, "r") as f: + query = f.read() + results = g.query(query) + f.close() + + no_wikipedia_link_topic = [] for r in results: - no_wikipedia.append({"term": r["term"], "class": r["c"]}) + no_wikipedia_link_topic.append({"term": r["term"], "class": r["concept"]}) + + # ## Get operations without a wikipedia link (WARNING) + # query = dir_queries + "/no_wikipedia_link_operation.rq" + # with open(query, "r") as f: + # query = f.read() + # results = g.query(query) + # f.close() + + # no_wikipedia_link_operation = [] + # for r in results: + # no_wikipedia_link_operation.append({"term": r["term"], "class": r["concept"]}) + + # ## Get topics without any broad synonym (OPTIONAL) + # query = dir_queries + "/no_broad_synonym_topic.rq" + # with open(query, "r") as f: + # query = f.read() + # results = g.query(query) + # f.close() + + # no_broad_synonym_topic = [] + # for r in results: + # no_broad_synonym_topic.append({"term": r["term"], "class": r["concept"]}) - if len(no_wikipedia) > 5: - no_wikipedia = random.sample(no_wikipedia, 5) + # ## Get topics without a definition (ERROR) + # query = dir_queries + "/no_definition_topic.rq" + # with open(query, "r") as f: + # query = f.read() + # results = g.query(query) + # f.close() + + # no_definition_topic = [] + # for r in results: + # no_definition_topic.append({"term": r["term"], "class": r["concept"]}) + + + # NO wikipedia + # q_no_wikipedia = """ + # SELECT (count(?term) as ?nb_no_wikipedia) WHERE { + # ?c rdfs:subClassOf+ edam:topic_0003 ; + # rdfs:label ?term . + # + # FILTER NOT EXISTS { + # ?c rdfs:seeAlso ?seealso . + # FILTER (regex(str(?seealso), "wikipedia.org", "i")) + # } . + # } + # """ + # + # results = g.query(q_no_wikipedia, initNs=ns) + # count_no_wikipedia = 0 + # for r in results: + # count_no_wikipedia = str(r["nb_no_wikipedia"]) + + # ######### + # q_no_wikipedia_all = """ + # SELECT ?c ?term WHERE { + # ?c rdfs:subClassOf+ edam:topic_0003 ; + # rdfs:label ?term . + # + # FILTER NOT EXISTS { + # ?c rdfs:seeAlso ?seealso . + # FILTER (regex(str(?seealso), "wikipedia.org", "i")) + # } . + # } + # """ + # results = g.query(q_no_wikipedia_all, initNs=ns) + # no_wikipedia = [] + # for r in results: + # no_wikipedia.append({"term": r["term"], "class": r["c"]}) + # + # if len(no_wikipedia) > 5: + # no_wikipedia = random.sample(no_wikipedia, 5) return render_template('quick_curation.html', - count_no_wikipedia = count_no_wikipedia, - missing_wikipedia = no_wikipedia) + #count_no_wikipedia = count_no_wikipedia, + no_wikipedia_link_topic = no_wikipedia_link_topic, + literal_links = literal_links, + formatting = formatting, + random = random) + +############################################## +@app.route('/field_specific') +def field_specific(): + dir_queries = "./queries" + ## Get identifiers (hybrid) without a regex (WARNING) + query = dir_queries + "/no_regex_identifier.rq" + with open(query, "r") as f: + query = f.read() + results = g.query(query) + f.close() + + no_regex_identifier = [] + for r in results: + no_regex_identifier.append({"term": r["term"], "class": r["concept"]}) + + + return render_template('field_specific.html', + no_regex_identifier = no_regex_identifier, + random = random) + if __name__ == "__main__": diff --git a/src/webapp/queries/end_dot_def_missing.rq b/src/webapp/queries/end_dot_def_missing.rq new file mode 100644 index 0000000..8ae3ab5 --- /dev/null +++ b/src/webapp/queries/end_dot_def_missing.rq @@ -0,0 +1,21 @@ +PREFIX obo: +PREFIX owl: +PREFIX rdfs: +PREFIX rdf: +PREFIX oboInOwl: +PREFIX edam: +PREFIX xsd: + +SELECT DISTINCT ?entity ?property ?def ?label WHERE { + VALUES ?property {oboInOwl:hasDefinition} + ?entity ?property ?def . + ?entity rdfs:label ?label . + + FILTER NOT EXISTS { + FILTER REGEX(str(?def), "['.']+$") + } + FILTER (!isBlank(?def)) + +} +ORDER BY ?entity + diff --git a/src/webapp/queries/end_dot_label.rq b/src/webapp/queries/end_dot_label.rq new file mode 100644 index 0000000..358bd3e --- /dev/null +++ b/src/webapp/queries/end_dot_label.rq @@ -0,0 +1,19 @@ +PREFIX obo: +PREFIX owl: +PREFIX rdfs: +PREFIX rdf: +PREFIX oboInOwl: +PREFIX edam: +PREFIX xsd: + +SELECT DISTINCT ?entity ?property ?value ?label WHERE { + VALUES ?property {rdfs:label} + ?entity ?property ?value . + ?entity rdfs:label ?label . + + FILTER REGEX(str(?value), "['.']+$") + FILTER (!isBlank(?entity)) + +} +ORDER BY ?entity + diff --git a/src/webapp/queries/end_space_annotation.rq b/src/webapp/queries/end_space_annotation.rq new file mode 100644 index 0000000..a0fe042 --- /dev/null +++ b/src/webapp/queries/end_space_annotation.rq @@ -0,0 +1,18 @@ +PREFIX obo: +PREFIX owl: +PREFIX rdfs: +PREFIX rdf: +PREFIX oboInOwl: +PREFIX edam: +PREFIX xsd: + +SELECT DISTINCT ?entity ?property ?value ?label WHERE { + ?entity ?property ?value . + ?entity rdfs:label ?label . + + FILTER REGEX(str(?value), "[\\s\r\n]+$") + FILTER (!isBlank(?entity)) + +} +ORDER BY ?entity + diff --git a/src/webapp/queries/eol_in_annotation.rq b/src/webapp/queries/eol_in_annotation.rq new file mode 100644 index 0000000..3f3cf88 --- /dev/null +++ b/src/webapp/queries/eol_in_annotation.rq @@ -0,0 +1,17 @@ +PREFIX obo: +PREFIX owl: +PREFIX rdfs: +PREFIX rdf: +PREFIX oboInOwl: +PREFIX edam: +PREFIX xsd: + +SELECT DISTINCT ?entity ?property ?value ?label WHERE { + ?entity ?property ?value . + ?entity rdfs:label ?label . + FILTER regex(?value, "\n") + FILTER (!isBlank(?entity)) + +} +ORDER BY ?entity + diff --git a/src/webapp/queries/get_uri.rq b/src/webapp/queries/get_uri.rq new file mode 100644 index 0000000..4e409fc --- /dev/null +++ b/src/webapp/queries/get_uri.rq @@ -0,0 +1,15 @@ +PREFIX obo: +PREFIX owl: +PREFIX rdfs: +PREFIX rdf: +PREFIX oboInOwl: +PREFIX edam: +PREFIX xsd: + +SELECT DISTINCT ?entity ?label WHERE { + + ?entity a owl:Class . + OPTIONAL {?entity rdfs:label ?label .} + +} +ORDER BY ?entity diff --git a/src/webapp/queries/literal_links.rq b/src/webapp/queries/literal_links.rq new file mode 100644 index 0000000..e0078a0 --- /dev/null +++ b/src/webapp/queries/literal_links.rq @@ -0,0 +1,38 @@ +PREFIX obo: +PREFIX owl: +PREFIX rdfs: +PREFIX rdf: +PREFIX oboInOwl: +PREFIX edam: +PREFIX xsd: + +SELECT DISTINCT ?entity ?property ?label ?value WHERE { + VALUES ?property { + + + + + + + + + + + + + + + + + + + +} + +?entity ?property ?value . + +FILTER isLiteral(?value) +?entity rdfs:label ?label . + +} +ORDER BY ?entity \ No newline at end of file diff --git a/src/webapp/queries/mandatory_property_missing.rq b/src/webapp/queries/mandatory_property_missing.rq new file mode 100644 index 0000000..084bf7e --- /dev/null +++ b/src/webapp/queries/mandatory_property_missing.rq @@ -0,0 +1,37 @@ +PREFIX obo: +PREFIX owl: +PREFIX rdfs: +PREFIX rdf: +PREFIX oboInOwl: +PREFIX edam: +PREFIX xsd: + +SELECT DISTINCT ?entity ?property ?label ?property_subs_edam WHERE { + + VALUES ?property {oboInOwl:hasDefinition + edam:created_in + #oboInOwl:inSubset + rdfs:label + rdfs:subClassOf } + ?entity a owl:Class . + + FILTER NOT EXISTS {?entity owl:deprecated true .} + OPTIONAL {?entity rdfs:label ?label .} + FILTER ( ?entity != ) + FILTER ( ?entity != ) + FILTER ( ?entity != ) + FILTER ( ?entity != ) + FILTER ( ?entity != ) + + FILTER NOT EXISTS {?entity ?property ?value . + MINUS { ?value rdf:type owl:Restriction .} #to prevent concept with rdfs:subClassOf property being only restriction (e.g. has_topic) + } + FILTER (!isBlank(?entity)) + # UNION + # { + # VALUES ?property { oboInOwl:inSubset + # } + # FILTER NOT EXISTS {?entity ?property .} + # } +} +ORDER BY ?entity \ No newline at end of file diff --git a/src/webapp/queries/no_broad_synonym_topic.rq b/src/webapp/queries/no_broad_synonym_topic.rq new file mode 100644 index 0000000..5efaa10 --- /dev/null +++ b/src/webapp/queries/no_broad_synonym_topic.rq @@ -0,0 +1,12 @@ +## Get topics that don't have any 'broadSynonym' attribute + +PREFIX edam: +PREFIX oboInOwl: + +SELECT ?term ?concept WHERE { + ?concept rdfs:subClassOf+ edam:topic_0003 ; + rdfs:label ?term . + FILTER NOT EXISTS { + ?concept oboInOwl:hasBroadSynonym ?hasBroadSynonym . + } . +} \ No newline at end of file diff --git a/src/webapp/queries/no_definition_topic.rq b/src/webapp/queries/no_definition_topic.rq new file mode 100644 index 0000000..7a24ef0 --- /dev/null +++ b/src/webapp/queries/no_definition_topic.rq @@ -0,0 +1,13 @@ +## Get topics that don't have a 'hasDefinition' attribute (ERROR level) + +PREFIX edam: +PREFIX oboInOwl: + +SELECT ?term ?concept WHERE { + ?concept rdfs:subClassOf+ edam:topic_0003 ; + rdfs:label ?term . + + FILTER NOT EXISTS { + ?concept oboInOwl:hasDefinition ?def + } . +} \ No newline at end of file diff --git a/src/webapp/queries/no_regex_identifier.rq b/src/webapp/queries/no_regex_identifier.rq new file mode 100644 index 0000000..ee7309f --- /dev/null +++ b/src/webapp/queries/no_regex_identifier.rq @@ -0,0 +1,14 @@ +## Hybrid Identifiers with no regex attribute (WARNING) + +PREFIX edam: +PREFIX oboInOwl: + +SELECT ?term ?concept ?regex WHERE { + ?concept rdfs:subClassOf+ edam:data_2109 ; + rdfs:label ?term . + + FILTER NOT EXISTS { + ?concept edam:regex ?regex + } . + +} \ No newline at end of file diff --git a/src/webapp/queries/no_wikipedia_link_operation.rq b/src/webapp/queries/no_wikipedia_link_operation.rq new file mode 100644 index 0000000..446cfea --- /dev/null +++ b/src/webapp/queries/no_wikipedia_link_operation.rq @@ -0,0 +1,13 @@ +## Get operations that don't have a wikipedia link as a 'seeAlso' attribute + +PREFIX edam: +PREFIX oboInOwl: + +SELECT ?term ?concept WHERE { + ?concept rdfs:subClassOf+ edam:operation_0004 ; + rdfs:label ?term . + FILTER NOT EXISTS { + ?concept rdfs:seeAlso ?seealso . + FILTER (regex(str(?seealso), "wikipedia.org", "i")) + } . +} \ No newline at end of file diff --git a/src/webapp/queries/no_wikipedia_link_topic.rq b/src/webapp/queries/no_wikipedia_link_topic.rq new file mode 100644 index 0000000..9af413e --- /dev/null +++ b/src/webapp/queries/no_wikipedia_link_topic.rq @@ -0,0 +1,13 @@ +## Get topics that don't have a wikipedia link as a 'seeAlso' attribute + +PREFIX edam: +PREFIX oboInOwl: + +SELECT ?term ?concept WHERE { + ?concept rdfs:subClassOf+ edam:topic_0003 ; + rdfs:label ?term . + FILTER NOT EXISTS { + ?concept rdfs:seeAlso ?seealso . + FILTER (regex(str(?seealso), "wikipedia.org", "i")) + } . +} \ No newline at end of file diff --git a/src/webapp/queries/start_space_annotation.rq b/src/webapp/queries/start_space_annotation.rq new file mode 100644 index 0000000..90d2200 --- /dev/null +++ b/src/webapp/queries/start_space_annotation.rq @@ -0,0 +1,18 @@ +PREFIX obo: +PREFIX owl: +PREFIX rdfs: +PREFIX rdf: +PREFIX oboInOwl: +PREFIX edam: +PREFIX xsd: + +SELECT DISTINCT ?entity ?property ?value ?label WHERE { + ?entity ?property ?value . + ?entity rdfs:label ?label . + FILTER REGEX(str(?value), "^[\\s\r\n]+") + FILTER (!isBlank(?entity)) + +} +ORDER BY ?entity + + diff --git a/src/webapp/queries/tab_in_annotation.rq b/src/webapp/queries/tab_in_annotation.rq new file mode 100644 index 0000000..bc92a89 --- /dev/null +++ b/src/webapp/queries/tab_in_annotation.rq @@ -0,0 +1,20 @@ +PREFIX obo: +PREFIX owl: +PREFIX rdfs: +PREFIX rdf: +PREFIX oboInOwl: +PREFIX edam: +PREFIX xsd: + +SELECT DISTINCT ?entity ?property ?value ?label WHERE { + ?entity ?property ?value . + ?entity rdfs:label ?label . + + FILTER regex(?value, "\t") + FILTER (!isBlank(?entity)) + +} +ORDER BY ?entity + + + diff --git a/src/webapp/static/img/data_cloud_dev.png b/src/webapp/static/img/data_cloud_dev.png new file mode 100644 index 0000000..24e52e9 Binary files /dev/null and b/src/webapp/static/img/data_cloud_dev.png differ diff --git a/src/webapp/static/img/data_tree_dev.png b/src/webapp/static/img/data_tree_dev.png new file mode 100644 index 0000000..4861646 Binary files /dev/null and b/src/webapp/static/img/data_tree_dev.png differ diff --git a/src/webapp/static/img/operation_cloud_dev.png b/src/webapp/static/img/operation_cloud_dev.png new file mode 100644 index 0000000..1f24121 Binary files /dev/null and b/src/webapp/static/img/operation_cloud_dev.png differ diff --git a/src/webapp/static/img/operation_tree_dev.png b/src/webapp/static/img/operation_tree_dev.png new file mode 100644 index 0000000..79c358b Binary files /dev/null and b/src/webapp/static/img/operation_tree_dev.png differ diff --git a/src/webapp/static/img/topic_cloud_dev.png b/src/webapp/static/img/topic_cloud_dev.png new file mode 100644 index 0000000..cec065e Binary files /dev/null and b/src/webapp/static/img/topic_cloud_dev.png differ diff --git a/src/webapp/static/img/topic_tree_dev.png b/src/webapp/static/img/topic_tree_dev.png new file mode 100644 index 0000000..3ab1e93 Binary files /dev/null and b/src/webapp/static/img/topic_tree_dev.png differ diff --git a/src/webapp/templates/current.html b/src/webapp/templates/current.html new file mode 100644 index 0000000..52236fd --- /dev/null +++ b/src/webapp/templates/current.html @@ -0,0 +1,103 @@ +{% extends "layout.html" %} + +{% block nav %} +{% include 'nav.html' %} +{% endblock %} + +{% block body %} + +

Current panorama of the EDAM ontology

+ +
+

Number of terms available

+ + +
+ + +
+ +

Overview of the topics

+ + +
+ +
+ +

Overview of the operations

+ + +
+ +
+ +

Overview of the data types

+ + +
+ + +{% endblock %} \ No newline at end of file diff --git a/src/webapp/templates/expert_curation.html b/src/webapp/templates/expert_curation.html deleted file mode 100644 index 521af2c..0000000 --- a/src/webapp/templates/expert_curation.html +++ /dev/null @@ -1,12 +0,0 @@ -{% extends "layout.html" %} - -{% block nav %} -{% include 'nav.html' %} -{% endblock %} - -{% block body %} - -

Top priority curation needs in my field

-

In this demo, we focus on some specific topics and randomly pick 5 classes to be updated.

- -{% endblock %} \ No newline at end of file diff --git a/src/webapp/templates/field_specific.html b/src/webapp/templates/field_specific.html new file mode 100644 index 0000000..dde0e07 --- /dev/null +++ b/src/webapp/templates/field_specific.html @@ -0,0 +1,23 @@ +{% extends "layout.html" %} + +{% block nav %} +{% include 'nav.html' %} +{% endblock %} + +{% block body %} + +

Field specific contributions

+ +
+

{{ no_regex_identifier|length }} EDAM hybrid identifiers with missing regex.

+
+ {% for item in random.sample(no_regex_identifier, 8) %} + {{ item.term }} + {% endfor %} +
+
+ + + + +{% endblock %} \ No newline at end of file diff --git a/src/webapp/templates/high_priority.html b/src/webapp/templates/high_priority.html new file mode 100644 index 0000000..802d938 --- /dev/null +++ b/src/webapp/templates/high_priority.html @@ -0,0 +1,43 @@ +{% extends "layout.html" %} + +{% block nav %} +{% include 'nav.html' %} +{% endblock %} + +{% block body %} + +

High priority

+ +
+

{{ mandatory_property_missing|length }} Concepts with missing mandatory properties.

+
+ {% if mandatory_property_missing|length < 8 %} + {% for item in mandatory_property_missing %} + {{ item.term }} + {% endfor %} + {% else %} + {% for item in random.sample(mandatory_property_missing, 8) %} + {{ item.term }} + {% endfor %} + {% endif %} +
+
+ +
+

{{ mandatory_property_missing|length }} ID numbers that are no unique.

+
+ {% if id_unique|length < 8 %} + {% for item in id_unique %} + {{ item.term }} + {% endfor %} + {% else %} + {% for item in random.sample(id_unique, 8) %} + {{ item.term }} + {% endfor %} + {% endif %} +
+
+ + + +{% endblock %} \ No newline at end of file diff --git a/src/webapp/templates/index.html b/src/webapp/templates/index.html index 4d67451..a3fc184 100644 --- a/src/webapp/templates/index.html +++ b/src/webapp/templates/index.html @@ -6,67 +6,85 @@ {% block body %} -

Welcome to the EDAM ontology dashboard

+

Welcome to the EDAM Control Room

-

EDAM concepts

- +
-

From the last stable release

+

Current state of EDAM concepts (dev version)

diff --git a/src/webapp/templates/layout.html b/src/webapp/templates/layout.html index 009e389..cd5237f 100644 --- a/src/webapp/templates/layout.html +++ b/src/webapp/templates/layout.html @@ -6,6 +6,7 @@ + diff --git a/src/webapp/templates/nav.html b/src/webapp/templates/nav.html index e585ed7..32eca10 100644 --- a/src/webapp/templates/nav.html +++ b/src/webapp/templates/nav.html @@ -1,17 +1,29 @@ \ No newline at end of file + + + + + + + + + diff --git a/src/webapp/templates/quality.html b/src/webapp/templates/quality.html new file mode 100644 index 0000000..828ea71 --- /dev/null +++ b/src/webapp/templates/quality.html @@ -0,0 +1,25 @@ +{% extends "layout.html" %} + +{% block nav %} +{% include 'nav.html' %} +{% endblock %} + +{% block body %} + +

Quality reports

+ +
+ +

Quality report (temp screen capture)

+ + +
+ +{% endblock %} \ No newline at end of file diff --git a/src/webapp/templates/quick_curation.html b/src/webapp/templates/quick_curation.html index 5ed8c91..fa65aa8 100644 --- a/src/webapp/templates/quick_curation.html +++ b/src/webapp/templates/quick_curation.html @@ -6,16 +6,56 @@ {% block body %} -

Finding top priority curation needs

-

In this demo, we randomly pick 5 classes from the EDAM ontology that need to be curated.

+

Quick and easy tasks

+ +

.

-

{{ count_no_wikipedia }} EDAM topics with missing wikipedia +

{{ no_wikipedia_link_topic|length }} EDAM topics with missing wikipedia links.

- {% for item in missing_wikipedia %} - {{ item.term }} - {% endfor %} + {% if no_wikipedia_link_topic|length < 8 %} + {% for item in no_wikipedia_link_topic %} + {{ item.term }} + {% endfor %} + {% else %} + {% for item in random.sample(no_wikipedia_link_topic, 8) %} + {{ item.term }} + {% endfor %} + {% endif %} +
+
+ + +
+

{{ literal_links|length }} EDAM concepts have webpage and/or DOI not declared as literal links

+
+ {% if literal_links|length < 8 %} + {% for item in literal_links %} + {{ item.term }} + {% endfor %} + {% else %} + {% for item in random.sample(literal_links, 8) %} + {{ item.term }} + {% endfor %} + {% endif %} +
+ +
+ +
+

{{ formatting|length }} Formatting

+ EDAM concepts that could use some proper formatting: labels and definitions starting with capital letters, definitions ending with a full stop, and no additional spaces at the beginning or end of any field. +
+ {% if formatting|length < 8 %} + {% for item in formatting %} + {{ item.term }} + {% endfor %} + {% else %} + {% for item in random.sample(formatting, 8) %} + {{ item.term }} + {% endfor %} + {% endif %}
diff --git a/src/webapp/test_queries/edam.json b/src/webapp/test_queries/edam.json new file mode 100644 index 0000000..cf600c0 --- /dev/null +++ b/src/webapp/test_queries/edam.json @@ -0,0 +1,182248 @@ +[ + { + "@id": "http://edamontology.org/format_1918", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1475" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for an individual atom." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Atomic data format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0143", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The comparison of two or more protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Use this concept for methods that are exclusively for protein structure." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1551", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of output of the Pcons Model Quality Assessment Program (MQAP)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Pcons ranks protein models by assessing their quality based on the occurrence of recurring common three-dimensional structural patterns. Pcons returns a score reflecting the overall global quality and a score for each individual residue in the protein reflecting the local residue quality." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pcons report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2065" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0386", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate whether a protein structure has an unusually large net charge (dipole moment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein dipole moment calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0250" + }, + { + "@id": "_:Nff01c9d63834489ca7961180af585d1b" + } + ] + }, + { + "@id": "_:Nff01c9d63834489ca7961180af585d1b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1545" + } + ] + }, + { + "@id": "http://edamontology.org/data_1536", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on the immunogenicity of MHC class I or class II binding peptides." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MHC peptide immunogenicity report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1061", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a QSAR descriptor." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "QSAR descriptor name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2110" + }, + { + "@id": "_:N3778ac4028444825bc76791b122eefe5" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "_:N3778ac4028444825bc76791b122eefe5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0847" + } + ] + }, + { + "@id": "http://edamontology.org/format_1978", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DAS GFF (XML) feature format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "DASGFF feature" + }, + { + "@value": "das feature" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DASGFF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2553" + } + ] + }, + { + "@id": "http://edamontology.org/data_1170", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a biological (mathematical) model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biological model name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1085" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/data_1067", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0976" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a phylogenetic distance matrix." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic distance matrix identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1783", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a gene from Aspergillus Genome Database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (ASPGD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2186", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Geneseq sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "geneseq" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2181" + } + ] + }, + { + "@id": "http://edamontology.org/data_3953", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A ranked list of pathways, each associated with z-score, p-value or similar, concerning or derived from the analysis of e.g. a set of genes or proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Pathway term enrichment report" + }, + { + "@value": "Pathway report" + }, + { + "@value": "Pathway enrichment report" + }, + { + "@value": "Pathway over-representation report" + }, + { + "@value": "Pathway analysis results" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway overrepresentation data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N15be662f4db74e3ab14632f12d33f174" + }, + { + "@id": "http://edamontology.org/data_3753" + } + ] + }, + { + "@id": "_:N15be662f4db74e3ab14632f12d33f174", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1775" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0722", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0623" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Classification of nucleic acid sequences and structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2787", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of a whole genome assigned by the NCBI." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NCBI genome accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2903" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2089", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Refine an existing sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment refinement" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2425" + }, + { + "@id": "http://edamontology.org/operation_0258" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0659", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Non-coding or functional RNA sequences, including regulatory RNA sequences, ribosomal RNA (rRNA) and transfer RNA (tRNA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Functional_regulatory_and_non-coding_RNA" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Functional RNA" + }, + { + "@value": "Small non-coding RNA" + }, + { + "@value": "Long non-coding RNA" + }, + { + "@value": "piRNA" + }, + { + "@value": "Long ncRNA" + }, + { + "@value": "snRNA" + }, + { + "@value": "snoRNA" + }, + { + "@value": "ncRNA" + }, + { + "@value": "microRNA" + }, + { + "@value": "Non-coding RNA" + }, + { + "@value": "Regulatory RNA" + }, + { + "@value": "miRNA" + }, + { + "@value": "Small nuclear RNA" + }, + { + "@value": "piwi-interacting RNA" + }, + { + "@value": "Small interfering RNA" + }, + { + "@value": "siRNA" + }, + { + "@value": "Small and long non-coding RNAs" + }, + { + "@value": "lncRNA" + }, + { + "@value": "Small nucleolar RNA" + }, + { + "@value": "Small ncRNA" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Non-coding RNA includes piwi-interacting RNA (piRNA), small nuclear RNA (snRNA) and small nucleolar RNA (snoRNA). Regulatory RNA includes microRNA (miRNA) - short single stranded RNA molecules that regulate gene expression, and small interfering RNA (siRNA)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Functional, regulatory and non-coding RNA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Non-coding_RNA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0114" + }, + { + "@id": "http://edamontology.org/topic_0099" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3197", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse a genetic variation, for example to annotate its location, alleles, classification, and effects on individual transcripts predicted for a gene model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence variation analysis" + }, + { + "@value": "Variant analysis" + }, + { + "@value": "Genetic variation annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Transcript variant analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Genetic variation annotation provides contextual interpretation of coding SNP consequences in transcripts. It allows comparisons to be made between variation data in different populations or strains for the same transcript." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic variation analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2945" + } + ] + }, + { + "@id": "http://edamontology.org/data_0977", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a bioinformatics tool, e.g. an application or web service." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tool identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1818", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the solvent accessibility ('accessible molecular surface') for each atom in a structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0387" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Waters are not considered." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein atom surface calculation (accessible molecular)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3497", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - \"raw\" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata)." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.23" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_2975" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A raw DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_3494" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA sequence (raw)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1235", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A set of sequences that have been clustered or otherwise classified as belonging to a group including (typically) sequence cluster information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The cluster might include sequences identifiers, short descriptions, alignment and summary information." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0850" + }, + { + "@id": "_:N3ec4c564a19f45f9b427bd773585b432" + } + ] + }, + { + "@id": "_:N3ec4c564a19f45f9b427bd773585b432", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0623" + } + ] + }, + { + "@id": "http://edamontology.org/data_2610", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "ENS[A-Z]*[FPTG][0-9]{11}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Ensembl IDs" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2849", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An abstract of a scientific article." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Abstract" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2526" + } + ] + }, + { + "@id": "http://edamontology.org/data_2677", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Danio rerio' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Danio rerio')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2237", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Query a profile data resource and retrieve one or more profile(s) and / or associated annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes direct retrieval methods that retrieve a profile by, e.g. the profile name." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (sequence profile)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3373", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The process of bringing a new drug to market once a lead compounds has been identified through drug discovery." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Medicines development" + }, + { + "@value": "Drug development science" + }, + { + "@value": "Medicine development" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Drug_development" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drug development" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Drug_development" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3376" + } + ] + }, + { + "@id": "http://edamontology.org/data_1021", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Typically one of the EMBL or Swiss-Prot feature qualifiers." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Feature qualifiers hold information about a feature beyond that provided by the feature key and location." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature qualifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2914" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3396", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An interdisciplinary field of study that looks at the dynamic systems of the human body as part of an integrted whole, incorporating biochemical, physiological, and environmental interactions that sustain life." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Systems_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Systems medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Systems_medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_2957", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A Hopp and Woods plot of predicted antigenicity of a peptide or protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hopp and Woods plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1534" + }, + { + "@id": "http://edamontology.org/data_2884" + } + ] + }, + { + "@id": "http://edamontology.org/data_2831", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A flat-file (textual) data archive." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0957" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Databank" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1764", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1235" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTA sequence database (based on ATOM records in PDB) for CATH domains (clustered at different levels of sequence identity)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH representative domain sequences (ATOM)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0564", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise, format or render a molecular sequence or sequences such as a sequence alignment, possibly with sequence features or properties shown." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Sequence alignment visualisation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N4317b36600b94fa9b789287373d302a6" + }, + { + "@id": "_:N28ff775109404fbabb7eea0ba8fd1a6c" + }, + { + "@id": "http://edamontology.org/operation_0337" + }, + { + "@id": "http://edamontology.org/operation_2403" + } + ] + }, + { + "@id": "_:N4317b36600b94fa9b789287373d302a6", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2044" + } + ] + }, + { + "@id": "_:N28ff775109404fbabb7eea0ba8fd1a6c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2969" + } + ] + }, + { + "@id": "http://edamontology.org/data_2991", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Geometry data for a protein structure, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Torsion angle data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein geometry data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3937", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A dimensionality reduction process which builds (ideally) informative and non-redundant values (features) from an initial set of measured data, to aid subsequent generalization, learning or interpretation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Feature projection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Feature extraction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3935" + }, + { + "@id": "_:N7224d7f57ac8424fb03c11778121aef3" + }, + { + "@id": "_:Nf19b8453b2534b56a9baecdb38ebf659" + } + ] + }, + { + "@id": "_:N7224d7f57ac8424fb03c11778121aef3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0943" + } + ] + }, + { + "@id": "_:Nf19b8453b2534b56a9baecdb38ebf659", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://edamontology.org/data_3718", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information about the ability of an organism to cause disease in a corresponding host." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Pathogenicity" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathogenicity report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3716" + } + ] + }, + { + "@id": "http://edamontology.org/data_1898", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: CGDID" + }, + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: CGD" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for loci from CGD (Candida Genome Database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CGDID" + }, + { + "@value": "CGD locus identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID (CGD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1893" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3572", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The quality, integrity, and cleaning up of data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Data_quality_management" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Data integrity" + }, + { + "@value": "Data clean-up" + }, + { + "@value": "Data quality" + }, + { + "@value": "Data cleaning" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data quality management" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Data_quality" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3071" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3173", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of the epigenetic modifications of a whole cell, tissue, organism etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Epigenomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Epigenetics concerns the heritable changes in gene expression owing to mechanisms other than DNA sequence variation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Epigenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D057890" + }, + { + "@id": "https://en.wikipedia.org/wiki/Epigenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3295" + }, + { + "@id": "http://edamontology.org/topic_0622" + } + ] + }, + { + "@id": "http://edamontology.org/data_1714", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An image of spots from a microarray experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microarray spots image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2603" + }, + { + "@id": "http://edamontology.org/data_3424" + } + ] + }, + { + "@id": "http://edamontology.org/data_2734", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2732" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a family of viruses." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Family name (virus)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3565", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyze time series data from an RNA-seq experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA-seq time series data analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3680" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2931", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2424" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2518" + }, + { + "@id": "http://edamontology.org/operation_2487" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more molecular secondary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Secondary structure comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2037", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of phylogenetic continuous quantitative character data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic continuous quantitative character format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2036" + }, + { + "@id": "_:Nfa70c14cc17b44c9aac6f47827d9196a" + } + ] + }, + { + "@id": "_:Nfa70c14cc17b44c9aac6f47827d9196a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1426" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2503", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) molecular sequence data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2403" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence data processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2892", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a type or group of cells." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell type name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + }, + { + "@id": "http://edamontology.org/data_2655" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0370", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Create (or remove) restriction sites in sequences, for example using silent mutations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Restriction site creation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0231" + } + ] + }, + { + "@id": "http://edamontology.org/documentation", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'Documentation' trailing modifier (qualifier, 'documentation') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to a page with explanation, description, documentation, or specification of the given data format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "Specification" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Documentation" + } + ] + }, + { + "@id": "http://edamontology.org/format_2185", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.insdc.org/sites/insdc.org/files/documents/INSD_v1.5.dtd.docx" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "INSDSeq provides the elements of a sequence as presented in the GenBank/EMBL/DDBJ-style flatfile formats, with a small amount of additional structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "INSDC XML" + }, + { + "@value": "INSD XML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "INSDSeq" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2204" + } + ] + }, + { + "@id": "http://edamontology.org/format_2329", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report on a gene from the GeneCards database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GeneCards gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0311", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Standardize or normalize microarray data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3435" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microarray data standardisation and normalisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0312", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) SAGE, MPSS or SBS experimental data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequencing-based expression profile data processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0280", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Retrieve information on restriction enzymes or restriction enzyme sites." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (restriction enzyme annotation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3268", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A label (text token) describing a type of sequence feature such as gene, transcript, cds, exon, repeat, simple, misc, variation, somatic variation, structural variation, somatic structural variation, constrained or regulatory." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0305", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Query scientific literature, in search for articles, article data, concepts, named entities, or for statistics." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Literature search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Na550f8011b92466289561d9b7f8485a6" + }, + { + "@id": "http://edamontology.org/operation_2421" + } + ] + }, + { + "@id": "_:Na550f8011b92466289561d9b7f8485a6", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3068" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3350", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict the structure of a multi-subunit protein and particularly how the subunits fit together." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein quaternary structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2423" + } + ] + }, + { + "@id": "http://edamontology.org/format_3787", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A query language (format) for structured database queries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Query format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Query language" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ne2cc67629e2c49e980dda313640459a4" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Ne2cc67629e2c49e980dda313640459a4", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3786" + } + ] + }, + { + "@id": "http://edamontology.org/data_1234", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Any collection of multiple nucleotide sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence set (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0850" + } + ] + }, + { + "@id": "http://edamontology.org/format_1435", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylogenetic tree data format used by the PHYLIP program." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylip tree format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2556" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2619", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "AA[0-9]{4}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a protein modification catalogued in the RESID database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RESID ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2618" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1769", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0279" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compute energies of nucleic acid folding, e.g. minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0279" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid folding energy calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3412", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with the liver, gallbladder, bile ducts and bile." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Hepatology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Hepatic_and_biliary_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Liver disorders" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hepatic and biliary medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Hepatology" + }, + { + "@value": "Hepatobiliary medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_1758", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF: type" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Three-letter amino acid residue names as used in PDB files." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PDB residue name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2564" + } + ] + }, + { + "@id": "http://edamontology.org/data_3427", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "RNAi experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNAi report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2978", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning a biochemical reaction, typically data and more general annotation on the kinetics of enzyme-catalysed reaction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Reaction annotation" + }, + { + "@value": "Enzyme kinetics annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reaction data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/data_2395", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2530" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a specific fungus." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Fungi annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3466", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Encapsulated PostScript format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EPS" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3696" + } + ] + }, + { + "@id": "http://edamontology.org/format_1577", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the SMART protein secondary database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SMART entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3176", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DNA-histone complexes (chromatin), organisation of chromatin into nucleosomes and packaging into higher-order structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "DNA_packaging" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Nucleosome positioning" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA packaging" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Chromosome#DNA_packaging" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D042003" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0654" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2448", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2478" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a nucleotide sequence and associated annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence processing (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1369", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of the model of random sequences used by MEME." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MEME background Markov model" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2072" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2336", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phase for translation of DNA (0, 1 or 2) relative to a fragment of the coding sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Translation phase specification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2217", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1622" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a specific tumor including nature and origin of the sample, anatomic site, organ or tissue, tumor type, including morphology and/or histologic type, and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tumor annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3755", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Site localisation of post-translational modifications in peptide or protein mass spectra." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PTM scoring" + }, + { + "@value": "Site localisation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PTM localisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3645" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3455", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A technique used to construct an atomic model of an unknown structure from diffraction data, based upon an atomic model of a known structure, either a related protein or the same protein from a different crystal form." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The technique solves the phase problem, i.e. retrieve information concern phases of the structure." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular replacement" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0322" + } + ] + }, + { + "@id": "http://edamontology.org/data_2618", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a protein modification catalogued in a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein modification ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/format_3781", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://dl.acm.org/citation.cfm?id=2391150" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.pubannotation.org/docs/annotation-format/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.pubannotation.org/docs/annotation-format/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "JSON format of annotated scientific text used by PubAnnotations and other tools." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PubAnnotation format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3780" + }, + { + "@id": "http://edamontology.org/format_3464" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0740", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Nucleotide sequence alignments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0934", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2535" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Massively parallel signature sequencing (MPSS) data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MPSS experimental data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3582", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://seqanswers.com/wiki/AFG" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://seqanswers.com/wiki/AFG" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "AFG is a single text-based file assembly format that holds read and consensus information together." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "afg" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2561" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2360", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0906" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on indirect protein domain-protein domain interaction(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Domain-domain interaction (indirect)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1350", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Dirichlet distribution MEME format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MEME Dirichlet prior" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2074" + } + ] + }, + { + "@id": "http://edamontology.org/data_1684", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBOSS (EMBASSY) sites application log file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS sites log file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1710", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image of one or more molecular tertiary (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2968" + } + ] + }, + { + "@id": "http://edamontology.org/format_1698", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the KEGG COMPOUND database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KEGG COMPOUND entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1099", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3021" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of a UniProt (protein sequence) database entry. May contain version or isoform number." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniProt accession (extended)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1112", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a cluster of molecular sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N63f78652179e4b09822a6bd7bb34f9bc" + }, + { + "@id": "http://edamontology.org/data_1064" + } + ] + }, + { + "@id": "_:N63f78652179e4b09822a6bd7bb34f9bc", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1235" + } + ] + }, + { + "@id": "http://edamontology.org/data_3805", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.19" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Structural 3D model (volume map) from electron microscopy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "3D EM Map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0883" + }, + { + "@id": "_:Ndf7ab698bb9b4b96a81398a6882a3708" + } + ] + }, + { + "@id": "_:Ndf7ab698bb9b4b96a81398a6882a3708", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1317" + } + ] + }, + { + "@id": "http://edamontology.org/data_0862", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A dotplot of sequence similarities identified from word-matching or character comparison." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Dotplot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0867" + } + ] + }, + { + "@id": "http://edamontology.org/format_1630", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.sanger.ac.uk/resources/software/caf/" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "caf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.sanger.ac.uk/resources/software/caf/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Common Assembly Format (CAF). A sequence assembly format including contigs, base-call qualities, and other metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CAF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2561" + } + ] + }, + { + "@id": "http://edamontology.org/format_3996", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "py" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for scripts writtenin Python - a widely used high-level programming language for general-purpose programming." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Python program" + }, + { + "@value": "Python" + }, + { + "@value": "py" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Python script" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2032" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3385", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The use of optical instruments to magnify the image of an object." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Light_microscopy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Light microscopy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Microscopy#Optical_microscopy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3382" + } + ] + }, + { + "@id": "http://edamontology.org/data_2402", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on tentative or known protein-drug interaction(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1566" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-drug interaction report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1462", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a carbohydrate (3D) structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Carbohydrate structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0883" + }, + { + "@id": "_:N671ae1868a6e430c8f86b8946229febc" + }, + { + "@id": "_:Nb23411cf100f459a958a362138bb5874" + } + ] + }, + { + "@id": "_:N671ae1868a6e430c8f86b8946229febc", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0153" + } + ] + }, + { + "@id": "_:Nb23411cf100f459a958a362138bb5874", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0152" + } + ] + }, + { + "@id": "http://edamontology.org/data_2342", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a biological pathway or network." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway or network name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1082" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0338", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a sequence database by sequence comparison and retrieve similar sequences. Sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This excludes direct retrieval methods (e.g. the dbfetch program)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N648973be60de4b00910000acf26c9df4" + }, + { + "@id": "http://edamontology.org/operation_2421" + }, + { + "@id": "http://edamontology.org/operation_2403" + } + ] + }, + { + "@id": "_:N648973be60de4b00910000acf26c9df4", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0857" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0579", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise operon structure etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Operon rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Operon drawing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0573" + }, + { + "@id": "_:N79abb44530a14f128ff0a696b5f00daf" + } + ] + }, + { + "@id": "_:N79abb44530a14f128ff0a696b5f00daf", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0114" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3050", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.5 Biodiversity conservation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The degree of variation of life forms within a given ecosystem, biome or an entire planet." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Biodiversity" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biodiversity" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D044822" + }, + { + "@id": "https://en.wikipedia.org/wiki/Biodiversity" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0610" + } + ] + }, + { + "@id": "http://edamontology.org/format_2027", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for reports on enzyme kinetics." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enzyme kinetics report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N642874bad904439ca7a8cb659cc5464d" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N642874bad904439ca7a8cb659cc5464d", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2024" + } + ] + }, + { + "@id": "http://edamontology.org/data_1680", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "STRIDE log file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "STRIDE log file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0343", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2421" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a database of transmembrane proteins, for example for sequence or structural similarities." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transmembrane protein database search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_4015", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.1371/journal.pcbi.1008646" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://petab.readthedocs.io/en/stable/documentation_data_format.html" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://petab.readthedocs.io/en/stable/example.html" + } + ], + "http://edamontology.org/repository": [ + { + "@id": "https://github.com/PEtab-dev/PEtab" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A data format for specifying parameter estimation problems in systems biology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PEtab" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://petab.readthedocs.io/en/stable/" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3475" + }, + { + "@id": "_:N48b5cfb75b374573b30ded0f3c77d895" + } + ] + }, + { + "@id": "_:N48b5cfb75b374573b30ded0f3c77d895", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3869" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3501", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analysis of a set of objects, such as genes, annotated with given categories, where eventual over-/under-representation of certain categories within the studied set of objects is revealed." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Enrichment" + }, + { + "@value": "Over-representation analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Functional enrichment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Categories from a relevant ontology can be used. The input is typically a set of genes or other biological objects, possibly represented by their identifiers, and the output of the analysis is typically a ranked list of categories, each associated with a statistical metric of over-/under-representation within the studied data." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enrichment analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N966ce33cac2245fb889000b39d982bd1" + }, + { + "@id": "http://edamontology.org/operation_2945" + } + ] + }, + { + "@id": "_:N966ce33cac2245fb889000b39d982bd1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3753" + } + ] + }, + { + "@id": "http://edamontology.org/data_2907", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of a protein deposited in a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein accessions" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0989" + }, + { + "@id": "http://edamontology.org/data_2901" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3458", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/is_refactor_candidate": [ + { + "@value": true + } + ], + "http://edamontology.org/refactor_comment": [ + { + "@value": "This is two related concepts." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare (align and classify) multiple particle images from a micrograph in order to produce a representative image of the particle." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A micrograph can include particles in multiple different orientations and/or conformations. Particles are compared and organised into sets based on their similarity. Typically iterations of classification and alignment and are performed to optimise the final 3D EM map." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Single particle alignment and classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3457" + }, + { + "@id": "http://edamontology.org/operation_2990" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0362", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotate a genome sequence with terms from a controlled vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Functional genome annotation" + }, + { + "@value": "Metagenome annotation" + }, + { + "@value": "Structural genome annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0361" + }, + { + "@id": "http://edamontology.org/operation_3918" + } + ] + }, + { + "@id": "http://edamontology.org/data_2128", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Informal name for a genetic code, typically an organism name." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic code name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + }, + { + "@id": "http://edamontology.org/data_2127" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3395", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Biomedical approaches to clinical interventions that involve the use of stem cells." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Stem cell research" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Regenerative_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Regenerative medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Regenerative_medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3344" + } + ] + }, + { + "@id": "http://edamontology.org/data_1599", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2865" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A simple measure of synonymous codon usage bias often used to predict gene expression levels." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon adaptation index" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1524", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The solubility or atomic solvation energy of a protein sequence or structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein solubility data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein solubility" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2970" + } + ] + }, + { + "@id": "http://edamontology.org/data_1075", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a protein family." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein secondary database record identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein family identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nb0711a18851b426baa1a4804dbc09075" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:Nb0711a18851b426baa1a4804dbc09075", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0907" + } + ] + }, + { + "@id": "http://edamontology.org/data_3358", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a data format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Format identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0567", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Render or visualise a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0337" + }, + { + "@id": "http://edamontology.org/operation_0324" + }, + { + "@id": "_:Nf2a2bf5c59684357ae4a63b4a8003b0b" + } + ] + }, + { + "@id": "_:Nf2a2bf5c59684357ae4a63b4a8003b0b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0872" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2943", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a box plot, i.e. a depiction of groups of numerical data through their quartiles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Box plot plotting" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Microarray Box-Whisker plot plotting" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "In the case of micorarray data, visualise raw and pre-processed gene expression data, via a plot showing over- and under-expression along with mean, upper and lower quartiles." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Box-Whisker plot plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Box_plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0337" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0598", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence motifs, or sequence profiles derived from an alignment of molecular sequences of a particular type." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes comparison, discovery, recognition etc. of sequence motifs." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif or profile" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0983", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier (e.g. character symbol) of a specific atom." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Atom identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Atom ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/format_2210", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1915" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report on organism strain data / cell line." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Strain data format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3101", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A node from a classification of protein structural domain(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein domain classification node" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2222", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search and retrieve documentation on a bioinformatics ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (ontology annotation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3727", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.openmicroscopy.org/site/support/ome-model/ome-tiff/specification.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image file format used by the Open Microscopy Environment (OME)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "An OME-TIFF dataset consists of one or more files in standard TIFF or BigTIFF format, with the file extension .ome.tif or .ome.tiff, and an identical (or in the case of multiple files, nearly identical) string of OME-XML metadata embedded in the ImageDescription tag of each file's first IFD (Image File Directory). BigTIFF file extensions are also permitted, with the file extension .ome.tf2, .ome.tf8 or .ome.btf, but note these file extensions are an addition to the original specification, and software using an older version of the specification may not be able to handle these file extensions." + }, + { + "@value": "OME develops open-source software and data format standards for the storage and manipulation of biological microscopy data. It is a joint project between universities, research establishments, industry and the software development community." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "OME-TIFF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_1171", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "(BIOMD|MODEL)[0-9]{10}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the BioModel database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioModel ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2891" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3794", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An antibody-based technique used to map in vivo RNA-protein interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "RIP" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "RNA_immunoprecipitation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "PAR-CLIP" + }, + { + "@value": "CLIP-seq" + }, + { + "@value": "iCLIP" + }, + { + "@value": "HITS-CLIP" + }, + { + "@value": "CLIP" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA immunoprecipitation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Immunoprecipitation#RNA_immunoprecipitation_(RIP)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3656" + } + ] + }, + { + "@id": "http://edamontology.org/data_2647", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[a-zA-Z_0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the Ligand-gated ion channel (LGICdb) database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "LGICdb identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2907" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_3310", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://rna.ucsc.edu/rnacenter/xrna/xrna_faq.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XRNA old input style format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SS" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2076" + } + ] + }, + { + "@id": "http://edamontology.org/data_1756", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on a single amino acid residue position in a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Residue" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein residue" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1460" + } + ] + }, + { + "@id": "http://edamontology.org/data_1059", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The extension of a file name." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A file extension is the characters appearing after the final '.' in the file name." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "File name extension" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1050" + } + ] + }, + { + "@id": "http://edamontology.org/data_1447", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0874" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Matrix of floating point numbers for sequence comparison." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Comparison matrix (floats)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2032", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a workflow." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Script format" + }, + { + "@value": "Programming language" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Workflow format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "http://edamontology.org/data_0978", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name or other identifier of a discrete entity (any biological thing with a distinct, discrete physical existence)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Discrete entity identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3422", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.29 Urology and nephrology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branches of medicine and physiology focussing on the function and disorders of the urinary system in males and females, the reproductive system in males, and the kidney." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Urology_and_nephrology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Kidney disease" + }, + { + "@value": "Nephrology" + }, + { + "@value": "Urological disorders" + }, + { + "@value": "Urology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Urology and nephrology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Urology" + }, + { + "@id": "https://en.wikipedia.org/wiki/Nephrology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_1790", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Symbol of a gene from E.coli Genetic Stock Center." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (CGSC)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1995", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1973" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Nexus/paup non-interleaved format for (aligned) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "nexusnon alignment format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3260", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0523" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Infer a transcriptome sequence by mapping short reads to a reference genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcriptome assembly (mapping)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2269", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The application of statistical methods to biological problems." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Statistics_and_probability" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Probabilistic graphical model" + }, + { + "@value": "Biostatistics" + }, + { + "@value": "Gaussian processes" + }, + { + "@value": "Descriptive statistics" + }, + { + "@value": "Multivariate statistics" + }, + { + "@value": "Inferential statistics" + }, + { + "@value": "Bayesian methods" + }, + { + "@value": "Markov processes" + }, + { + "@value": "Statistics" + }, + { + "@value": "Probability" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Statistics and probability" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Probability" + }, + { + "@id": "https://en.wikipedia.org/wiki/Statistics" + }, + { + "@id": "http://en.wikipedia.org/wiki/Biostatistics" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D056808" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3315" + } + ] + }, + { + "@id": "http://edamontology.org/data_0925", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An assembly of fragments of a (typically genomic) DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Contigs" + }, + { + "@value": "SO:0000353" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "SO:0001248" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Typically, an assembly is a collection of contigs (for example ESTs and genomic DNA fragments) that are ordered, aligned and merged. Annotation of the assembled sequence might be included." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "http://en.wikipedia.org/wiki/Sequence_assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1234" + } + ] + }, + { + "@id": "http://edamontology.org/format_3910", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://manual.gromacs.org/online/trr.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of trr files that contain the trajectory of a simulation experiment used by GROMACS." + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The first 4 bytes of any trr file containing 1993. See https://github.com/galaxyproject/galaxy/pull/6597/files#diff-409951594551183dbf886e24de6cb129R760" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "trr" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2033" + }, + { + "@id": "http://edamontology.org/format_3868" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3365", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The development of policies, models and standards that cover data acquisition, storage and integration, such that it can be put to use, typically through a process of systematically applying statistical and / or logical techniques to describe, illustrate, summarise or evaluate data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Data_architecture_analysis_and_design" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Data architecture" + }, + { + "@value": "Data analysis" + }, + { + "@value": "Data design" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data architecture, analysis and design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Data_architecture" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3071" + } + ] + }, + { + "@id": "http://edamontology.org/data_1622", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about a specific disease." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example, an informative report on a specific tumor including nature and origin of the sample, anatomic site, organ or tissue, tumor type, including morphology and/or histologic type, and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Disease report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0920" + }, + { + "@id": "_:N570df54d4407431b859c8eb4fa7b4fb7" + } + ] + }, + { + "@id": "_:N570df54d4407431b859c8eb4fa7b4fb7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0634" + } + ] + }, + { + "@id": "http://edamontology.org/data_1588", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DNA base pair stacking energies data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA base pair stacking energies data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2088" + } + ] + }, + { + "@id": "http://edamontology.org/data_1286", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence map of a plasmid (circular DNA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Plasmid map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1279" + } + ] + }, + { + "@id": "http://edamontology.org/data_1166", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A synonymous name of a data type from the MIRIAM database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A synonymous name for a MIRIAM data type taken from a controlled vocabulary." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MIRIAM data type synonymous name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1163" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3172", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The systematic study of metabolites, the chemical processes they are involved, and the chemical fingerprints of specific cellular processes in a whole cell, tissue, organ or organism." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Metabolomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Exometabolomics" + }, + { + "@value": "Metabolites" + }, + { + "@value": "Metabonomics" + }, + { + "@value": "Mass spectrometry-based metabolomics" + }, + { + "@value": "LC-MS-based metabolomics" + }, + { + "@value": "NMR-based metabolomics" + }, + { + "@value": "MS-based metabolomics" + }, + { + "@value": "MS-based untargeted metabolomics" + }, + { + "@value": "MS-based targeted metabolomics" + }, + { + "@value": "Metabolome" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metabolomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D055432" + }, + { + "@id": "https://en.wikipedia.org/wiki/Metabolomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3391" + } + ] + }, + { + "@id": "http://edamontology.org/data_2881", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2085" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on general information, properties or features of one or more molecular secondary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Secondary structure report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3451", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Rate of association of a protein with another protein or some other molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "kon" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Rate of association" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/data_0883", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a macromolecular tertiary (3D) structure or part of a structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure data" + }, + { + "@value": "Coordinate model" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The coordinate data may be predicted or real." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D015394" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + }, + { + "@id": "_:N370fd01bfe4e4c59b4f6de7f0926655a" + } + ] + }, + { + "@id": "_:N370fd01bfe4e4c59b4f6de7f0926655a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ] + }, + { + "@id": "http://edamontology.org/data_2378", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0906" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on the interaction of a protein (or protein domain) with specific structural (3D) and/or sequence motifs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-motif interaction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "_:N45be34e6dcc849dba305c4332ce0a558", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:quality_of' might be seen narrower in the sense that it only relates subjects that are a 'quality' (snap:Quality) with objects that are an 'independent_continuant' (snap:IndependentContinuant), and is broader in the sense that it relates any qualities of the object." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/is_topic_of" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "OBO_REL:quality_of" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0092", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Computer graphics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.2.5 Computer graphics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Rendering (drawing on a computer screen) or visualisation of molecular sequences, structures or other biomolecular data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Data rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Data_visualisation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Data_visualization" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3316" + } + ] + }, + { + "@id": "http://edamontology.org/data_1856", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF: insertion_code" + }, + { + "@value": "PDBML:pdbx_PDB_ins_code" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An insertion code (part of the residue number) for an amino acid residue from a PDB file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PDB insertion code" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1016" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2446", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2403" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) one or more molecular sequences and associated annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1649", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of a report from the HumanCyc metabolic pathways database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HumanCyc entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1026", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby_namespace:Global_GeneSymbol" + }, + { + "@value": "Moby_namespace:Global_GeneCommonName" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The short name of a gene; a single word that does not contain white space characters. It is typically derived from the gene name." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene symbol" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2299" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2461", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the solvent accessibility for each residue in a structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0387" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein residue surface calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0877", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Super-secondary structure of protein sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features report (super-secondary)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0804", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.1.3 Immunology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The application of information technology to immunology such as immunological processes, immunological genes, proteins and peptide ligands, antigens and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Immunology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Immunology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D007120" + }, + { + "@id": "https://en.wikipedia.org/wiki/Immunology" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D007125" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3344" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0257", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Display basic information about a sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (sequence alignment)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1607", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of EcoCyc genome database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EcoCyc gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2332", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "xml" + } + ], + "http://edamontology.org/media_type": [ + { + "@id": "http://www.iana.org/assignments/media-types/application/xml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.iana.org/assignments/media-types/application/xml" + }, + { + "@id": "http://filext.com/file-extension/XML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "eXtensible Markup Language (XML) format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "eXtensible Markup Language" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Data in XML format can be serialised into text, or binary format." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "XML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1915" + } + ], + "http://www.w3.org/2002/07/owl#disjointWith": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/format_1431", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2036" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of phylogenetic property data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic property values format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0524", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence assembly by combining fragments without the aid of a reference sequence or genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "De Bruijn graph" + }, + { + "@value": "Sequence assembly (de-novo assembly)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "De-novo assemblers are much slower and more memory intensive than mapping assemblers." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "De-novo assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequence_assembly#De-novo_vs._mapping_assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0310" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2257", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0084" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise a phylogeny, for example, render a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogeny visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1038", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a protein structural domain." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is typically a character or string concatenated with a PDB identifier and a chain identifier." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein domain ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:Nf5959365581f4115b11f9800e7a4fde0" + } + ] + }, + { + "@id": "_:Nf5959365581f4115b11f9800e7a4fde0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1468" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0369", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cut (remove) characters or a region from a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cutting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0231" + } + ] + }, + { + "@id": "http://edamontology.org/data_1281", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image of a sequence with matches to signatures, motifs or profiles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2969" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence signature map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1180", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a concept from the Plant Ontology (PO)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Plant Ontology concept ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1087" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1397", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A penalty for opening a gap in an alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gap opening penalty" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2137" + } + ] + }, + { + "@id": "http://edamontology.org/data_2025", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A plot giving an approximation of the kinetics of an enzyme-catalysed reaction, assuming simple kinetics (i.e. no intermediate or product inhibition, allostericity or cooperativity). It plots initial reaction rate to the substrate concentration (S) from which the maximum rate (vmax) is apparent." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Michaelis Menten plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2024" + } + ] + }, + { + "@id": "http://edamontology.org/data_2805", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a GeneSNP database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GeneSNP ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2294" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0482", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Model protein-ligand (for example protein-peptide) binding using comparative modelling or other techniques." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Ligand-binding simulation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein-peptide docking" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Virtual screening is used in drug discovery to search libraries of small molecules in order to identify those molecules which are most likely to bind to a drug target (typically a protein receptor or enzyme)." + }, + { + "@value": "Methods aim to predict the position and orientation of a ligand bound to a protein receptor or enzyme." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-ligand docking" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Virtual_screening" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nd6472979c2d642d9b42254e37e045a99" + }, + { + "@id": "_:Ncf68d88f76f145d986ddb2914d4520b4" + }, + { + "@id": "http://edamontology.org/operation_0478" + } + ] + }, + { + "@id": "_:Nd6472979c2d642d9b42254e37e045a99", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1461" + } + ] + }, + { + "@id": "_:Ncf68d88f76f145d986ddb2914d4520b4", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ] + }, + { + "@id": "http://edamontology.org/data_2629", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "S[0-9]{2}\\.[0-9]{3}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a peptidase enzyme from the MEROPS database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MEROPS ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enzyme ID (MEROPS)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2321" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0796", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0102" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Informatics resources that aim to identify, map or analyse genetic markers in DNA sequences, for example to produce a genetic (linkage) map of a chromosome or genome or to analyse genetic linkage and synteny." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic mapping and linkage" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2439", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) RNA secondary structure data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA secondary structure analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2481" + }, + { + "@id": "_:N3178cccaa61f49ab9e4047aa36f8847d" + } + ] + }, + { + "@id": "_:N3178cccaa61f49ab9e4047aa36f8847d", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0097" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0803", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0634" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Human diseases, typically describing the genes, mutations and proteins implicated in disease." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Human disease" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2466", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0362" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotate a DNA map of some type with terms from a controlled vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Map annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_4006", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "zst" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used by the Zstandard real-time compression algorithm." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Zstandard compression format" + }, + { + "@value": "zst" + }, + { + "@value": "Zstandard-compressed file format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Zstandard format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "https://github.com/facebook/zstd/blob/master/doc/zstd_compression_format.md" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_3134", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules. This includes reports on a specific gene transcript, clone or EST." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Clone or EST (report)" + }, + { + "@value": "mRNA (report)" + }, + { + "@value": "Transcript (report)" + }, + { + "@value": "Nucleic acid features (mRNA features)" + }, + { + "@value": "mRNA features" + }, + { + "@value": "Gene transcript annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes 5'untranslated region (5'UTR), coding sequences (CDS), exons, intervening sequences (intron) and 3'untranslated regions (3'UTR)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene transcript report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1276" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2226", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_1317" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Experimental methods for biomolecular structure determination, such as X-ray crystallography, nuclear magnetic resonance (NMR), circular dichroism (CD) spectroscopy, microscopy etc., including the assignment or modelling of molecular structure from such data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure determination" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3375", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of how a drug interacts with the body." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Drug_metabolism" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Drug excretion" + }, + { + "@value": "Pharmacodynamics" + }, + { + "@value": "Drug distribution" + }, + { + "@value": "Drug absorption" + }, + { + "@value": "Pharmacokinetics" + }, + { + "@value": "ADME" + }, + { + "@value": "Pharmacokinetics and pharmacodynamics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drug metabolism" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Drug_metabolism" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3376" + } + ] + }, + { + "@id": "http://edamontology.org/format_1969", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBOSS debugging trace sequence format of full internal data content." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "debug-seq" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/data_2628", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of an interaction from the BioGRID database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioGRID interaction ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1074" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1176", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]{7}|GO:[0-9]{7}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a concept from The Gene Ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GO concept identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GO concept ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1087" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3300", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.1.8 Physiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The functions of living organisms and their constituent parts." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Physiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Electrophysiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Physiology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Physiology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_1043", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/example": [ + { + "@value": "3.30.1190.10.1.1.1.1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A code number identifying a node from the CATH database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CATH node identifier" + }, + { + "@value": "CATH code" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH node ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2700" + } + ] + }, + { + "@id": "http://edamontology.org/data_2339", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a concept in an ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology concept name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3025" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/data_1557", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a protein 'architecture' node from the CATH database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH architecture" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2438", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_3927" + }, + { + "@id": "http://edamontology.org/operation_3928" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate, analyse or handle a biological pathway or network." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway or network processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1268", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A table of amino acid word composition of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence composition (amino acid words)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid word frequencies table" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + }, + { + "@id": "http://edamontology.org/data_1261" + } + ] + }, + { + "@id": "http://edamontology.org/data_1662", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_1696" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report typically including a map (diagram) of drug structure relationships." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1696" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drug structure relationship map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0261", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0262" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) physicochemical property data of nucleic acids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid property processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2814", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId": [ + { + "@value": "http://edamontology.org/topic_3040" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein secondary or tertiary structural data and/or associated annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein structure" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_structure_analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein tertiary structure" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0078" + }, + { + "@id": "http://edamontology.org/topic_0081" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2225", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0078" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein data resources." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein databases" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2910", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of a protein family (that is deposited in a database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein family accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1075" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2946", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2928" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process or analyse an alignment of molecular sequences or structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alignment analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1992", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mega non-interleaved format for (typically aligned) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "meganon" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2923" + } + ] + }, + { + "@id": "http://edamontology.org/format_2175", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2172" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used for clusters of genes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene cluster format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0191", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_3293" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The reconstruction of a phylogeny (evolutionary relatedness amongst organisms), for example, by building a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Currently too specific for the topic sub-ontology (but might be unobsoleted)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogeny reconstruction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0178", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The prediction of secondary or supersecondary structure of protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0082" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0971", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A scientific text, typically a full text article from a scientific journal." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Scientific article" + }, + { + "@value": "Article text" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Article" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2526" + }, + { + "@id": "http://edamontology.org/data_3671" + } + ] + }, + { + "@id": "http://edamontology.org/format_2572", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://samtools.github.io/hts-specs/SAMv1.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "https://samtools.github.io/hts-specs/SAMv1.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BAM format, the binary, BGZF-formatted compressed version of SAM format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BAM" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2057" + }, + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_2920" + } + ] + }, + { + "@id": "http://edamontology.org/format_1297", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report format for tandem repeats in a sequence (an EMBOSS report format)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS repeat" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2155" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3537", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Chemical modification of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0601" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein chemical modifications" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2177", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2337" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A single thing." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Exactly 1" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3096", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Edit a data entity, either randomly or specifically." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Editing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0613", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The physicochemical, biochemical or structural properties of amino acids or peptides." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0154" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptides and amino acids" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2008", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict siRNA duplexes in RNA." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "siRNA duplex prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nc4606e2abd1546c9b45a2e4e5d8d9840" + }, + { + "@id": "http://edamontology.org/operation_0443" + } + ] + }, + { + "@id": "_:Nc4606e2abd1546c9b45a2e4e5d8d9840", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0659" + } + ] + }, + { + "@id": "http://edamontology.org/data_1853", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0919" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on a chromosome aberration such as abnormalities in chromosome structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chromosome annotation (aberration)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0202", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.1.7 Pharmacology and pharmacy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of drugs and their effects or responses in living systems." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Pharmacology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Computational pharmacology" + }, + { + "@value": "Pharmacoinformatics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pharmacology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Pharmacology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3344" + } + ] + }, + { + "@id": "http://edamontology.org/data_0896", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative human-readable report about one or more specific protein molecules or protein structural domains, derived from analysis of primary (sequence or structural) data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene product annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/format_1478", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of PDB database in PDBML (XML) format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PDBML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_1475" + } + ] + }, + { + "@id": "http://edamontology.org/data_2590", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2891" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from a database of biological hierarchies." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hierarchy identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3354", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A HMM transition matrix contains the probabilities of switching from one HMM state to another." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "HMM transition matrix" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Consider for example an HMM with two states (AT-rich and GC-rich). The transition matrix will hold the probabilities of switching from the AT-rich to the GC-rich state, and vica versa." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transition matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + } + ] + }, + { + "@id": "http://edamontology.org/data_0937", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Protein X-ray crystallographic data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "X-ray crystallography data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Electron density map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2537" + } + ] + }, + { + "@id": "http://edamontology.org/operation_4034", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The correction of p-values from multiple statistical tests to correct for false positives." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "FDR estimation" + }, + { + "@value": "False discovery rate estimation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Multiple testing correction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Multiple_comparisons_problem" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2238" + }, + { + "@id": "_:N4e9b229e8aea46179b139267d3e629ad" + }, + { + "@id": "_:Nc83023faad92468bbc346ea1b94d33c7" + }, + { + "@id": "_:Nc87efc6e6d404e668aa8a3f5d601a00f" + } + ] + }, + { + "@id": "_:N4e9b229e8aea46179b139267d3e629ad", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3932" + } + ] + }, + { + "@id": "_:Nc83023faad92468bbc346ea1b94d33c7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2269" + } + ] + }, + { + "@id": "_:Nc87efc6e6d404e668aa8a3f5d601a00f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1669" + } + ] + }, + { + "@id": "http://edamontology.org/data_1868", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:BriefTaxonConcept" + }, + { + "@value": "Moby:PotentialTaxon" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a group of organisms belonging to the same taxonomic rank." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Taxonomic rank" + }, + { + "@value": "Taxonomy rank" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For a complete list of taxonomic ranks see https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Taxon" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2909" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3792", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "miRNA analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The analysis of microRNAs (miRNAs) : short, highly conserved small noncoding RNA molecules that are naturally occurring plant and animal genomes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "miRNA expression profiling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "miRNA expression analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ] + }, + { + "@id": "http://edamontology.org/data_1415", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2161" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on character conservation in a molecular sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. Use this concept for calculated substitution rates, relative site variability, data on sites with biased properties, highly conserved or very poorly conserved sites, regions, blocks etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment report (site conservation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3088", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0250" + }, + { + "@id": "http://edamontology.org/operation_2479" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate (or predict) physical or chemical properties of a protein, including any non-positional properties of the molecular sequence, from processing a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0250" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein property calculation (from sequence)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1190", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a computer package, application, method or function." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tool name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0977" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3177", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_3168" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A topic concerning high-throughput sequencing of randomly fragmented genomic DNA, for example, to investigate whole-genome sequencing and resequencing, SNP discovery, identification of copy number variations and chromosomal rearrangements." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA-Seq" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1944", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Jackknifer interleaved and non-interleaved sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "jackknifer" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/data_1755", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on a single atom from a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Atom data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "CHEBI:33250" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein atom" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1460" + } + ] + }, + { + "@id": "http://edamontology.org/data_1674", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2093" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cross-references from a sequence record to other databases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database cross-references" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://xmlns.com/foaf/0.1/page", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/operation_3762", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An operation supporting the aggregation of other services (at least two) into a functional unit, for the automation of some task." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Service composition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3760" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0346", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a sequence database and retrieve sequences that are similar to a query sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Structure database search (by sequence)" + }, + { + "@value": "Sequence database search (by sequence)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence similarity search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0338" + }, + { + "@id": "http://edamontology.org/operation_0339" + }, + { + "@id": "http://edamontology.org/operation_2451" + } + ] + }, + { + "@id": "http://edamontology.org/data_1746", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_1743" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cartesian z coordinate of an atom (in a molecular structure)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1743" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Atomic z coordinate" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3653", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Spectral data file similar to dta." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Differ from .dta only in subtleties of the header line format and content and support the added feature of being able to." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pkl" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/data_0872", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:phylogenetic_tree" + }, + { + "@value": "Moby:myTree" + }, + { + "@value": "Moby:Tree" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The raw data (not just an image) from which a phylogenetic tree is directly generated or plotted, such as topology, lengths (in time or in expected amounts of variance) and a confidence interval for each length." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogeny" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A phylogenetic tree is usually constructed from a set of sequences from which an alignment (or data matrix) is calculated. See also 'Phylogenetic tree image'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D010802" + }, + { + "@value": "http://www.evolutionaryontology.org/cdao.owl#Tree" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Naa7d02e5397541c492ec4e383f854cba" + }, + { + "@id": "http://edamontology.org/data_2523" + } + ] + }, + { + "@id": "_:Naa7d02e5397541c492ec4e383f854cba", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0084" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0267", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict secondary structure of protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Secondary structure prediction (protein)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might use amino acid composition, local sequence information, multiple sequence alignments, physicochemical features, estimated energy content, statistical algorithms, hidden Markov models, support vector machines, kernel machines, neural networks etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2416" + }, + { + "@id": "http://edamontology.org/operation_3092" + }, + { + "@id": "http://edamontology.org/operation_2479" + }, + { + "@id": "http://edamontology.org/operation_2423" + } + ] + }, + { + "@id": "http://edamontology.org/format_3286", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://pngu.mgh.harvard.edu/~purcell/plink/data.shtml#ped" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The PED file describes individuals and genetic data and is used by the Plink package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Plink PED" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PED" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3288" + } + ] + }, + { + "@id": "http://edamontology.org/format_4004", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "repz" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of repertoire (archive) files that can be read by SimToolbox (a MATLAB toolbox for structured illumination fluorescence microscopy) or alternatively extracted with zip file archiver software." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SimTools repertoire file format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "https://pdfs.semanticscholar.org/5f25/f1cc6cdf2225fe22dc6fd4fc0296d486a85c.pdf" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3942", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The application of phylogenetic and other methods to estimate paleogeographical events such as speciation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Tree-dating" + }, + { + "@value": "Biogeographic dating" + }, + { + "@value": "Speciation dating" + }, + { + "@value": "Species tree dating" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tree dating" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0324" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0298", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0292" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align sequence profiles (representing sequence alignments)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0300" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Profile-profile alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1470", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a protein tertiary (3D) structure (typically C-alpha atoms only)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein structure (C-alpha atoms)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "C-beta atoms from amino acid side-chains may be included." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "C-alpha trace" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1460" + } + ] + }, + { + "@id": "http://edamontology.org/data_1182", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "FMA:[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a concept from Foundational Model of Anatomy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Classifies anatomical entities according to their shared characteristics (genus) and distinguishing characteristics (differentia). Specifies the part-whole and spatial relationships of the entities, morphological transformation of the entities during prenatal development and the postnatal life cycle and principles, rules and definitions according to which classes and relationships in the other three components of FMA are represented." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FMA concept ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1087" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0285", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more codon usage tables." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage table comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2998" + }, + { + "@id": "http://edamontology.org/operation_0286" + } + ] + }, + { + "@id": "http://edamontology.org/data_1394", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A simple floating point number defining the penalty for opening or extending a gap in an alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alignment score or penalty" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1772" + } + ] + }, + { + "@id": "http://edamontology.org/data_1732", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0967" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A comment on a concept from an ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology concept comment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2718", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an oligonucleotide from a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Oligonucleotide ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2901" + }, + { + "@id": "http://edamontology.org/data_2119" + } + ] + }, + { + "@id": "http://edamontology.org/data_2081", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0883" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The secondary structure assignment (predicted or real) of a nucleic acid or protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Secondary structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0157", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The archival, processing and analysis of the basic character composition of molecular sequences, for example character or word frequency, ambiguity, complexity, particularly regions of low complexity, and repeats or the repetitive nature of molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Sequence_composition_complexity_and_repeats" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein sequence repeats" + }, + { + "@value": "Sequence composition" + }, + { + "@value": "Protein repeats" + }, + { + "@value": "Sequence repeats" + }, + { + "@value": "Sequence complexity" + }, + { + "@value": "Repeat sequences" + }, + { + "@value": "Nucleic acid repeats" + }, + { + "@value": "Low complexity sequences" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes short repetitive subsequences (repeat sequences) in a protein sequence." + }, + { + "@value": "This includes repetitive elements within a nucleic acid sequence, e.g. long terminal repeats (LTRs); sequences (typically retroviral) directly repeated at both ends of a sequence and other types of repeating unit." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence composition, complexity and repeats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ] + }, + { + "@id": "http://edamontology.org/data_2659", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "SMP[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a pathway from the Small Molecule Pathway Database (SMPDB)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (SMPDB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2365" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0172", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0082" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3010", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": ".nib (nibble) binary format of a nucleotide sequence using 4 bits per nucleotide (including unknown) and its lower-case 'masking'." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": ".nib" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2571" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3382", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The visual representation of an object." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Imaging" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Optical super resolution microscopy" + }, + { + "@value": "Photonic microscopy" + }, + { + "@value": "Diffraction experiment" + }, + { + "@value": "Photonic force microscopy" + }, + { + "@value": "Microscopy imaging" + }, + { + "@value": "Microscopy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes diffraction experiments that are based upon the interference of waves, typically electromagnetic waves such as X-rays or visible light, by some object being studied, typical in order to produce an image of the object or determine its structure." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Imaging" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Imaging" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3361" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3411", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.15 Obstetrics and gynaecology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with the health of the female reproductive system, pregnancy and birth." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Gynaecology_and_obstetrics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Gynaecological disorders" + }, + { + "@value": "Gynaecology" + }, + { + "@value": "Obstetrics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gynaecology and obstetrics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Obstetrics" + }, + { + "@id": "https://en.wikipedia.org/wiki/Gynaecology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/format_3606", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Textual report format for sequence quality for reports from sequencing machines." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence quality report format (text)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nc4d73aad11df4a0da923751c4a1529ac" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Nc4d73aad11df4a0da923751c4a1529ac", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/data_1892", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a gene from the GeneFarm database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (GeneFarm)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1146", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the EMDB electron microscopy database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMDB ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1079" + } + ] + }, + { + "@id": "http://edamontology.org/data_2698", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Tupaia belangeri' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Tupaia belangeri')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1936", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Genbank entry format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GenBank" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GenBank format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2206" + }, + { + "@id": "http://edamontology.org/format_2205" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2512", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Edit or change a protein sequence, either randomly or specifically." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0231" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence editing (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1817", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the solvent accessibility ('accessible surface') for each atom in a structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0387" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Waters are not considered." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein atom surface calculation (accessible)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2657", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[a-zA-Z_0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of a neuron from the NeuroMorpho database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NeuroMorpho ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2893" + } + ] + }, + { + "@id": "http://edamontology.org/format_3916", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.23" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://reference.wolfram.com/language/ref/format/MTX.html" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://reference.wolfram.com/language/ref/format/MTX.html" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "mtx" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "https://www.nist.gov/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The Matrix Market matrix (MTX) format stores numerical or pattern matrices in a dense (array format) or sparse (coordinate format) representation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MTX" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N4e0403a656bc46cfa1c5133392f7747d" + }, + { + "@id": "_:N7573c829ef034af9994d51165e4d569a" + }, + { + "@id": "http://edamontology.org/format_2058" + }, + { + "@id": "http://edamontology.org/format_3033" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "_:N4e0403a656bc46cfa1c5133392f7747d", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2535" + } + ] + }, + { + "@id": "_:N7573c829ef034af9994d51165e4d569a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3112" + } + ] + }, + { + "@id": "http://edamontology.org/format_2552", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a molecular sequence record (XML)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence record format (XML)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1919" + } + ] + }, + { + "@id": "http://edamontology.org/data_2790", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a two-dimensional (protein) gel." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gel identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gel ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/format_3015", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://samtools.sourceforge.net/pileup.shtml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://samtools.sourceforge.net/pileup.shtml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Pileup format of alignment of sequences (e.g. sequencing reads) to (a) reference sequence(s). Contains aligned bases per base of the reference sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pileup" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2920" + } + ] + }, + { + "@id": "http://edamontology.org/data_1594", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1584" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "RNA calculated energy data generated by the Vienna package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Vienna RNA calculated energy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0549", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construct a phylogenetic tree by using artificial-intelligence methods, for example genetic algorithms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree generation (AI methods)" + }, + { + "@value": "Phylogenetic tree construction (AI methods)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic inference (AI methods)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0539" + } + ] + }, + { + "@id": "http://edamontology.org/data_1858", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF: PDBx_B_iso_or_equiv" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Isotropic B factor (atomic displacement parameter) for an atom from a PDB file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Isotropic B factor" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1917" + } + ] + }, + { + "@id": "http://edamontology.org/format_1938", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GFF feature file format with sequence in the header." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GFF2-seq" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_1974" + } + ] + }, + { + "@id": "http://edamontology.org/data_2160", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A plot of Fickett testcode statistic (identifying protein coding regions) in a nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Fickett testcode plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2884" + } + ] + }, + { + "@id": "http://edamontology.org/data_1233", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Any collection of multiple protein sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence set (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0850" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0429", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect quadruplex-forming motifs in nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Quadruplex structure prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Quadruplex (4-stranded) structures are formed by guanine-rich regions and are implicated in various important biological processes and as therapeutic targets." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Quadruplex formation site detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0415" + }, + { + "@id": "_:Nd9a7ceffbf38402bba2cf5c180364587" + } + ] + }, + { + "@id": "_:Nd9a7ceffbf38402bba2cf5c180364587", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3128" + } + ] + }, + { + "@id": "http://edamontology.org/data_0967", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning or derived from a concept from a biological ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Ontology class metadata" + }, + { + "@value": "Ontology term metadata" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology concept data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2353" + } + ] + }, + { + "@id": "http://edamontology.org/data_1658", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "environmental information processing pathways." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2984" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Environmental information processing pathway report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2410", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse gene expression and regulation data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene expression analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3720", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report about localisation of the isolaton of biological material e.g. country or coordinates." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Geographic location" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3717" + } + ] + }, + { + "@id": "http://edamontology.org/format_2181", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A text format resembling EMBL entry format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept may be used for the many non-standard EMBL-like text formats." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBL-like (text)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2543" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_0936", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. Typically this is the sequencing-based expression profile annotated with gene identifiers." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2535" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence tag profile (with gene assignment)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2038", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of phylogenetic discrete states data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic discrete states format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2036" + }, + { + "@id": "_:N00182f99ef2b47e88177aa987793afe9" + } + ] + }, + { + "@id": "_:N00182f99ef2b47e88177aa987793afe9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1427" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2258", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The application of information technology to chemistry in biological research environment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Chemical informatics" + }, + { + "@value": "Chemoinformatics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Cheminformatics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cheminformatics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Cheminformatics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0605" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0479", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Model protein backbone conformation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein modelling (backbone)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Scaffold selection" + }, + { + "@value": "Epitope grafting" + }, + { + "@value": "Scaffold search" + }, + { + "@value": "Design optimization" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might require a preliminary C(alpha) trace." + }, + { + "@value": "Scaffold selection, scaffold search, epitope grafting and design optimization are stages of backbone modelling done during rational vaccine design." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Backbone modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0477" + } + ] + }, + { + "@id": "http://edamontology.org/data_1444", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Independent contrasts for characters used in a phylogenetic tree, or covariances, regressions and correlations between characters for those contrasts." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic report (character contrasts)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic character contrasts" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2523" + } + ] + }, + { + "@id": "http://edamontology.org/data_0856", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "How the annotation of a sequence feature (for example in EMBL or Swiss-Prot) was derived." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This might be the name and version of a software tool, the name of a database, or 'curated' to indicate a manual annotation (made by a human)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature source" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2914" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3922", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A field of biological research focused on the discovery and identification of peptides, typically by comparing mass spectra against a protein database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Proteogenomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Proteogenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Proteogenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0622" + } + ] + }, + { + "@id": "http://edamontology.org/data_2044", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "One or more molecular sequences, possibly with associated annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequences" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept is a placeholder of concepts for primary sequence data including raw sequences and sequence records. It should not normally be used for derivatives such as sequence alignments, motifs or profiles." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.org/biotop/biotop.owl#BioMolecularSequenceInformation" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D008969" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nada0a5c4da0f4c619d388cc139634cb8" + }, + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "_:Nada0a5c4da0f4c619d388cc139634cb8", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ] + }, + { + "@id": "http://edamontology.org/data_0912", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a nucleic acid molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid physicochemical property" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "GC-content" + }, + { + "@value": "Nucleic acid structural property" + }, + { + "@value": "Nucleic acid property (structural)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Nucleic acid structural properties stiffness, curvature, twist/roll data or other conformational parameters or properties." + }, + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid property" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2087" + } + ] + }, + { + "@id": "http://edamontology.org/data_3905", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualization of distribution of quantitative data, e.g. expression data, by histograms, violin plots and density plots." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Density plot" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Histogram" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2884" + } + ] + }, + { + "@id": "http://edamontology.org/data_1855", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a clone (cloned molecular sequence) from a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Clone ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2769" + } + ] + }, + { + "@id": "http://edamontology.org/data_3142", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a 'fold' node from the SCOP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SCOP fold" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2775", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a kinase protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Kinase name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1009" + } + ] + }, + { + "@id": "http://edamontology.org/data_3122", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on features in a nucleic acid sequence that indicate changes to or differences between sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid features (difference and change)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1191", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The unique name of a signature (sequence classifier) method." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Signature methods from http://www.ebi.ac.uk/Tools/InterProScan/help.html#results include BlastProDom, FPrintScan, HMMPIR, HMMPfam, HMMSmart, HMMTigr, ProfileScan, ScanRegExp, SuperFamily and HAMAP." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tool name (signature)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1190" + } + ] + }, + { + "@id": "http://edamontology.org/format_2558", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An XML format resembling EMBL entry format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept may be used for the any non-standard EMBL-like XML formats." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBL-like (XML)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2543" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0304", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search for and retrieve data concerning or describing some core data, as distinct from the primary data that is being described." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes documentation, general information and other metadata on entities such as databases, database entries and tools." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metadata retrieval" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1671", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0958" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on an application version, for example name, version number and release date." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tool version information" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2816", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_3053" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Informatics resource (typically a database) primarily focused on genes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene resources" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2663", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a carbohydrate." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Carbohydrate identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1086" + }, + { + "@id": "_:Nf44795b818f14f4c8ff6035b12ca18ad" + }, + { + "@id": "_:N9d359d14518e465499dcd2ecb27df435" + } + ] + }, + { + "@id": "_:Nf44795b818f14f4c8ff6035b12ca18ad", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2313" + } + ] + }, + { + "@id": "_:N9d359d14518e465499dcd2ecb27df435", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1462" + } + ] + }, + { + "@id": "http://edamontology.org/data_1593", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "RNA concentration data used by the Vienna package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Vienna RNA concentration data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2510", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Back-translate a protein sequence into DNA." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA back-translation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nd2514508838e4e669127b967329e26aa" + }, + { + "@id": "http://edamontology.org/operation_0233" + } + ] + }, + { + "@id": "_:Nd2514508838e4e669127b967329e26aa", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0108" + } + ] + }, + { + "@id": "http://edamontology.org/format_3246", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://psidev.info/traml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://psidev.info/traml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "TraML (Transition Markup Language) is the format for mass spectrometry transitions, standardised by HUPO PSI MSS." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TraML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_2797", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier for a ligand-gated ion channel protein from the LGICdb database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "LGICdb ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein ID (LGICdb)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3332", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.7.4 Computational chemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Topic concerning the development and application of theory, analytical methods, mathematical models and computational simulation of chemical systems." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Computational_chemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Computational chemistry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Computational_chemistry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3316" + }, + { + "@id": "http://edamontology.org/topic_3314" + } + ] + }, + { + "@id": "http://edamontology.org/data_2725", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier for a gene transcript from the Ensembl database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Transcript ID (Ensembl)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl transcript ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2610" + }, + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2769" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0352", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0346" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a sequence database for sequences that are similar to a query sequence using a local alignment-based method." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes tools based on the Smith-Waterman algorithm or FASTA." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database search (by sequence using local alignment-based methods)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1584", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Enthalpy of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid enthalpy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2985" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0401", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Hydropathy calculation on a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2574" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein hydropathy calculation (from sequence)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3515", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein-drug interaction(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-drug interactions" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3802", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sort a set of files or data items according to some property." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sorting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2944", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a physical (sequence) map of a DNA sequence showing the physical distance (base pairs) between features or landmarks such as restriction sites, cloned DNA fragments, genes and other genetic markers." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Physical cartography" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Physical mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gene_mapping#Physical_mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2520" + }, + { + "@id": "_:Nb5414fc5161948e3abd3454fd0da3c2f" + }, + { + "@id": "_:N2b10a078a1354491b64ad771739b5349" + } + ] + }, + { + "@id": "_:Nb5414fc5161948e3abd3454fd0da3c2f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0102" + } + ] + }, + { + "@id": "_:N2b10a078a1354491b64ad771739b5349", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1280" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3083", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.24" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2497" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_3925" + }, + { + "@id": "http://edamontology.org/operation_3926" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Render (visualise) a biological pathway or network." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway or network visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3544", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Signal peptides or signal peptide cleavage sites in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3510" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein signal peptides" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3664", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construction of a statistical model, or a set of assumptions around some observed data, usually by describing a set of probability distributions which approximate the distribution of data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Statistical modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Statistical_model" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2238" + } + ] + }, + { + "@id": "http://edamontology.org/data_2768", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation about a gene symbol." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene symbol annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1151", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the HGVbase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HGVbase ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1081" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_3951", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://raw.githubusercontent.com/KarrLab/bcforms/master/bcforms/grammar.lark" + }, + { + "@id": "https://bcforms.org" + }, + { + "@id": "http://sandbox.karrlab.org/tree/bcforms" + }, + { + "@id": "http://docs.karrlab.org/bcforms" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://bcforms.org" + } + ], + "http://edamontology.org/media_type": [ + { + "@value": "text/plain" + } + ], + "http://edamontology.org/ontology_used": [ + { + "@id": "https://www.bpforms.org/crosslink" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "https://www.karrlab.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BcForms is a format for abstractly describing the molecular structure (atoms and bonds) of macromolecular complexes as a collection of subunits and crosslinks. Each subunit can be described with BpForms (http://edamontology.org/format_3909) or SMILES (http://edamontology.org/data_2301). BcForms uses an ontology of crosslinks to abstract the chemical details of crosslinks from the descriptions of complexes (see https://bpforms.org/crosslink.html)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "BcForms is related to http://edamontology.org/format_3909. (BcForms uses BpForms to describe subunits which are DNA, RNA, or protein polymers.) However, that format isn't the parent of BcForms. BcForms is similarly related to SMILES (http://edamontology.org/data_2301)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BcForms" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2062" + }, + { + "@id": "http://edamontology.org/format_2030" + } + ] + }, + { + "@id": "http://edamontology.org/format_3581", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.cs.waikato.ac.nz/ml/weka/arff.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.cs.waikato.ac.nz/ml/weka/arff.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "ARFF (Attribute-Relation File Format) is an ASCII text file format that describes a list of instances sharing a set of attributes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This file format is for machine learning." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "arff" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3378", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The detection, assessment, understanding and prevention of adverse effects of medicines." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Pharmacovigilence" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Pharmacovigilence concerns safety once a drug has gone to market." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pharmacovigilance" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Pharmacovigilance" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3377" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0770", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0091" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Structuring data into basic types and (computational) objects." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data types and objects" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0239", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Find (scan for) known motifs, patterns and regular expressions in molecular sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Motif scanning" + }, + { + "@value": "Sequence signature detection" + }, + { + "@value": "Sequence signature recognition" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Motif search" + }, + { + "@value": "Motif recognition" + }, + { + "@value": "Sequence motif search" + }, + { + "@value": "Sequence profile search" + }, + { + "@value": "Motif detection" + }, + { + "@value": "Sequence motif detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif recognition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0253" + }, + { + "@id": "http://edamontology.org/operation_2404" + }, + { + "@id": "_:N215c72a79f324807891004688ca29e05" + }, + { + "@id": "_:Neb309b202fe341d69af6d260338d7fe0" + } + ] + }, + { + "@id": "_:N215c72a79f324807891004688ca29e05", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0858" + } + ] + }, + { + "@id": "_:Neb309b202fe341d69af6d260338d7fe0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "http://edamontology.org/data_3132", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3128" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on displacement loops in a mitochondrial DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A displacement loop is a region of mitochondrial DNA in which one of the strands is displaced by an RNA molecule." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid features (d-loop)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2454", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect, predict and identify genes or components of genes in DNA sequences, including promoters, coding regions, splice sites, etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene calling" + }, + { + "@value": "Gene finding" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Whole gene prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Includes methods that predict whole gene structure using a combination of multiple methods to achieve better predictions." + }, + { + "@value": "Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gene_prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Na3e5375d78e9415daae02faf14734032" + }, + { + "@id": "http://edamontology.org/operation_2478" + }, + { + "@id": "_:N8a045ff15d4c453fbd513176f0080602" + } + ] + }, + { + "@id": "_:Na3e5375d78e9415daae02faf14734032", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0114" + } + ] + }, + { + "@id": "_:N8a045ff15d4c453fbd513176f0080602", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0916" + } + ] + }, + { + "@id": "http://edamontology.org/data_1270", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation of positional sequence features, organised into a standard feature table." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence feature table" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Feature table" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3070", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.1 Aerobiology" + }, + { + "@value": "VT 1.5.23 Reproductive biology" + }, + { + "@value": "VT 1.5.99 Other" + }, + { + "@value": "VT 1.5.3 Behavioural biology" + }, + { + "@value": "VT 1.5.13 Cryobiology" + }, + { + "@value": "VT 1.5.8 Biology" + }, + { + "@value": "VT 1.5.7 Biological rhythm" + }, + { + "@value": "VT 1.5 Biological sciences" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of life and living organisms, including their morphology, biochemistry, physiology, development, evolution, and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biological science" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Behavioural biology" + }, + { + "@value": "Biological rhythms" + }, + { + "@value": "Aerobiology" + }, + { + "@value": "Cryobiology" + }, + { + "@value": "Chronobiology" + }, + { + "@value": "Reproductive biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_4019" + } + ] + }, + { + "@id": "http://edamontology.org/format_1734", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of bibliographic reference as used by the PubMed database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PubMed citation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2848" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1386", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1381" + }, + { + "@id": "http://edamontology.org/data_1383" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of exactly two nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment (nucleic acid pair)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1596", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about RNA/DNA folding, minimum folding energies for DNA or RNA sequences, energy landscape of RNA mutants etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid report (folding)" + }, + { + "@value": "Nucleic acid report (folding model)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "RNA secondary structure folding classification" + }, + { + "@value": "RNA secondary structure folding probabilities" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid folding report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2084" + } + ] + }, + { + "@id": "http://edamontology.org/data_0879", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0867" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on protein secondary structure alignment-derived data or metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Secondary structure alignment metadata (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1006", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "String of one or more ASCII characters representing an amino acid." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0994" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3186", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The mapping of methylation sites in a DNA (genome) sequence. Typically, the mapping of high-throughput bisulfite reads to the reference genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Bisulfite sequence mapping" + }, + { + "@value": "Bisulfite sequence alignment" + }, + { + "@value": "Bisulfite read mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Bisulfite mapping follows high-throughput sequencing of DNA which has undergone bisulfite treatment followed by PCR amplification; unmethylated cytosines are specifically converted to thymine, allowing the methylation status of cytosine in the DNA to be detected." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Bisulfite mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2944" + }, + { + "@id": "http://edamontology.org/operation_3204" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3351", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse the surface properties of proteins or other macromolecules, including surface accessible pockets, interior inaccessible cavities etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular surface analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nf8736e1c0d424b40bb66aa6cd0754cb3" + }, + { + "@id": "_:N93db45d2d0134cd0a727cddedb48c542" + }, + { + "@id": "http://edamontology.org/operation_2480" + } + ] + }, + { + "@id": "_:Nf8736e1c0d424b40bb66aa6cd0754cb3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0123" + } + ] + }, + { + "@id": "_:N93db45d2d0134cd0a727cddedb48c542", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0166" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1822", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the solvent accessibility ('vacuum molecular surface') for each residue in a structure. This is the accessibility of the residue when taken out of the protein together with the backbone atoms of any residue it is covalently bound to." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0387" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein residue surface calculation (vacuum molecular)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1739", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Article format of the PubMed Central database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pmc" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2020" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1743", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cartesian coordinate of an atom (in a molecular structure)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Cartesian coordinate" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Atomic coordinate" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1917" + } + ] + }, + { + "@id": "http://edamontology.org/format_2919", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a sequence annotation track." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence annotation track format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1920" + }, + { + "@id": "_:N4472885e3e06448eb8f03643745c693a" + } + ] + }, + { + "@id": "_:N4472885e3e06448eb8f03643745c693a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3002" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2962", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate codon usage bias, e.g. generate a codon usage bias plot." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Codon usage bias plotting" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage bias calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0286" + }, + { + "@id": "_:N798f96166b5840dd87b3630c0b363f60" + } + ] + }, + { + "@id": "_:N798f96166b5840dd87b3630c0b363f60", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2865" + } + ] + }, + { + "@id": "http://edamontology.org/data_1544", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phi/psi angle data or a Ramachandran plot of a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ramachandran plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2991" + } + ] + }, + { + "@id": "http://edamontology.org/format_1810", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report on Escherichia coli genes, proteins and molecules from the CyberCell Database (CCDB)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ColiCard report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0970", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:GCP_SimpleCitation" + }, + { + "@value": "Moby:Publication" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Bibliographic data that uniquely identifies a scientific article, book or other published material." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Bibliographic reference" + }, + { + "@value": "Reference" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A bibliographic reference might include information such as authors, title, journal name, date and (possibly) a link to the abstract or full-text of the article if available." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Citation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2526" + } + ] + }, + { + "@id": "http://edamontology.org/format_3824", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for raw data from a nuclear magnetic resonance (NMR) spectroscopy experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nuclear magnetic resonance spectroscopy data format" + }, + { + "@value": "NMR peak assignment data format" + }, + { + "@value": "Processed NMR data format" + }, + { + "@value": "Raw NMR data format" + }, + { + "@value": "NMR processed data format" + }, + { + "@value": "NMR raw data format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NMR data format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:N1b1b710526854ea88a9a77fec17f620c" + } + ] + }, + { + "@id": "_:N1b1b710526854ea88a9a77fec17f620c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3488" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0412", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison)Too fine-grained." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0418" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect or predict signal peptides (and typically predict subcellular localisation) of bacterial proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0418" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein signal peptide detection (bacteria)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0221", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0219" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation of a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/is_input_of", + "@type": [ + "http://www.w3.org/2002/07/owl#ObjectProperty" + ], + "http://purl.obolibrary.org/obo/is_anti_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_reflexive": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/transitive_over": [ + { + "@value": "OBO_REL:is_a" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'A is_input_of B' defines for the subject A, that it as a necessary or actual input or input argument of the object B." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "OBO_REL:participates_in" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#isCyclic": [ + { + "@value": true + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is or has an 'Operation' function, or an entity outside of an ontology that has an 'Operation' function or is an 'Operation'. In EDAM, 'is_input_of' is not explicitly defined between EDAM concepts, only the inverse 'has_input'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#domain": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "is input of" + } + ], + "http://www.w3.org/2000/01/rdf-schema#range": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ], + "http://www.w3.org/2004/02/skos/core#closeMatch": [ + { + "@id": "http://purl.obolibrary.org/obo/OBI_0000295" + } + ], + "http://www.w3.org/2004/02/skos/core#exactMatch": [ + { + "@id": "http://wsio.org/is_input_of" + } + ] + }, + { + "@id": "http://edamontology.org/data_1498", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A measure of the similarity between two ligand fingerprints." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A ligand fingerprint is derived from ligand structural data from a Protein DataBank file. It reflects the elements or groups present or absent, covalent bonds and bond orders and the bonded environment in terms of SATIS codes and BLEEP atom types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tanimoto similarity score" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0888" + } + ] + }, + { + "@id": "http://edamontology.org/data_1263", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A plot of third base position variability in a nucleotide sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Base position variability plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1261" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3372", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Software engineering" + }, + { + "@value": "1.2.12 Programming languages" + }, + { + "@value": "VT 1.2.1 Algorithms" + }, + { + "@value": "VT 1.2.14 Software engineering" + }, + { + "@value": "VT 1.2.7 Data structures" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The process that leads from an original formulation of a computing problem to executable programs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Computer programming" + }, + { + "@value": "Software development" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Software_engineering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Algorithms" + }, + { + "@value": "Programming languages" + }, + { + "@value": "Data structures" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Software engineering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Software_engineering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3316" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3024", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2423" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict, recognise, detect or identify some properties of nucleic acids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2423" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Prediction and recognition (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0447", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Evaluate molecular sequence alignment accuracy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence alignment quality evaluation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Evaluation might be purely sequence-based or use structural information." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment validation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2428" + }, + { + "@id": "http://edamontology.org/operation_0258" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3194", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare the features of two genome sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Genomic elements that might be compared include genes, indels, single nucleotide polymorphisms (SNPs), retrotransposons, tandem repeats and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome feature comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3918" + }, + { + "@id": "http://edamontology.org/operation_0256" + } + ] + }, + { + "@id": "http://edamontology.org/data_2578", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a toxin from the ArachnoServer database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ArachnoServer ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2897" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0351", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0346" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a sequence database and retrieve sequences that are similar to a query sequence using a sequence profile-based method, or with a supplied profile as query." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes tools based on PSI-BLAST." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database search (by sequence using profile-based methods)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3223", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify from molecular sequence analysis (typically from analysis of microarray or RNA-seq data) genes whose expression levels are significantly different between two sample groups." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Differential expression analysis" + }, + { + "@value": "Differential gene expression analysis" + }, + { + "@value": "Differentially expressed gene identification" + }, + { + "@value": "Differential gene analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Differential gene expression analysis is used, for example, to identify which genes are up-regulated (increased expression) or down-regulated (decreased expression) between a group treated with a drug and a control groups." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Differential gene expression profiling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0314" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3125", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId": [ + { + "@id": "http://edamontology.org/data_3125" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Nucleic acids binding to some other molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "DNA_binding_sites" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Ribosome binding sites" + }, + { + "@value": "Nucleosome exclusion sequences" + }, + { + "@value": "Matrix/scaffold attachment region" + }, + { + "@value": "Scaffold-attachment region" + }, + { + "@value": "Restriction sites" + }, + { + "@value": "Matrix-attachment region" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes ribosome binding sites (Shine-Dalgarno sequence in prokaryotes), restriction enzyme recognition sites (restriction sites) etc." + }, + { + "@value": "This includes sites involved with DNA replication and recombination. This includes binding sites for initiation of replication (origin of replication), regions where transfer is initiated during the conjugation or mobilisation (origin of transfer), starting sites for DNA duplication (origin of replication) and regions which are eliminated through any of kind of recombination. Also nucleosome exclusion regions, i.e. specific patterns or regions which exclude nucleosomes (the basic structural units of eukaryotic chromatin which play a significant role in regulating gene expression)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA binding sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/DNA_binding_site" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0654" + }, + { + "@id": "http://edamontology.org/topic_3511" + } + ] + }, + { + "@id": "http://edamontology.org/data_2321", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique, persistent identifier of an enzyme." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Enzyme accession" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enzyme ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2907" + }, + { + "@id": "http://edamontology.org/data_1010" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3921", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The processing of reads from high-throughput sequencing machines." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence read processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + } + ] + }, + { + "@id": "http://edamontology.org/format_1655", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the Panther Pathways database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Panther Pathways entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0348", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0338" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a sequence database and retrieve sequences of a given amino acid composition." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database search (by amino acid composition)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2777", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a physical entity from the ConsensusPathDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ConsensusPathDB entity name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2917" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/data_1254", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report about non-positional sequence features, typically a report on general molecular sequence properties derived from sequence analysis." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence properties report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence property" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2955" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0243", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0250" + }, + { + "@id": "http://edamontology.org/operation_2406" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Extract, calculate or predict non-positional (physical or chemical) properties of a protein from processing a protein (3D) structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0250" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein property calculation (from structure)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "_:N08dde059bb9041f399d468093cc2d21c", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "In very unusual cases." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#isCyclic" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/has_function" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0517", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict primers for large scale sequencing." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0308" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PCR primer design (for large scale sequencing)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0909", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The maximum initial velocity or rate of a reaction. It is the limiting velocity as substrate concentrations get very large." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Vmax" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2024" + } + ] + }, + { + "@id": "http://edamontology.org/format_1976", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PIR feature format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/format_1948" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pir" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3698", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.ncbi.nlm.nih.gov/books/NBK242622/" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "sra" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "SRA archive format (SRA) is the archive format used for input to the NCBI Sequence Read Archive." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "SRA archive format" + }, + { + "@value": "SRA" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SRA format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2964", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the differences in codon usage fractions between two sequences, sets of sequences, codon usage tables etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage fraction calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N07ca15a338e64a9e9bd404c74424f940" + }, + { + "@id": "http://edamontology.org/operation_0286" + } + ] + }, + { + "@id": "_:N07ca15a338e64a9e9bd404c74424f940", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1602" + } + ] + }, + { + "@id": "_:N5a1bbcf74ff34deeb13d529e94087ee8", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Computational tool provides one or more operations." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "Computational tool" + } + ] + }, + { + "@id": "http://edamontology.org/format_3984", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "qmap" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of QMAP files generated for methylation data from an internal BGI pipeline." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "QMAP" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1920" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2973", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2085" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning molecular secondary structure data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Secondary structure data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0279", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse some aspect of RNA/DNA folding, typically by processing sequence and/or structural data. For example, compute folding energies such as minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid folding" + }, + { + "@value": "Nucleic acid folding modelling" + }, + { + "@value": "Nucleic acid folding prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Nucleic acid folding energy calculation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid folding analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2426" + }, + { + "@id": "http://edamontology.org/operation_2481" + }, + { + "@id": "http://edamontology.org/operation_0475" + }, + { + "@id": "_:N1b435c5073f249df99f4cc24756708a1" + } + ] + }, + { + "@id": "_:N1b435c5073f249df99f4cc24756708a1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1596" + } + ] + }, + { + "@id": "http://edamontology.org/data_1124", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry from the TreeFam database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TreeFam accession number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1068" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0491", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align exactly two molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Pairwise alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might perform one-to-one, one-to-many or many-to-many comparisons." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pairwise sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequence_alignment#Pairwise_alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N71a5d65298e74507bd51f08922aaffdc" + }, + { + "@id": "http://edamontology.org/operation_0292" + } + ] + }, + { + "@id": "_:N71a5d65298e74507bd51f08922aaffdc", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1381" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3169", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The analysis of protein-DNA interactions where chromatin immunoprecipitation (ChIP) is used in combination with massively parallel DNA sequencing to identify the binding sites of DNA-associated proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ChIP-sequencing" + }, + { + "@value": "Chip Seq" + }, + { + "@value": "Chip-sequencing" + }, + { + "@value": "Chip sequencing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "ChIP-seq" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "ChIP-exo" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ChIP-seq" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/ChIP-sequencing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3656" + }, + { + "@id": "http://edamontology.org/topic_3168" + } + ] + }, + { + "@id": "http://edamontology.org/data_1668", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The z-value is the number of standard deviations a data value is above or below a mean value." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A z-value might be specified as a threshold for reporting hits from database searches." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Z-value" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0951" + } + ] + }, + { + "@id": "http://edamontology.org/data_1621", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about the influence of genotype on drug response." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The report might correlate gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pharmacogenomic test report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0920" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2122", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Perform basic (non-analytical) operations on a sequence alignment file, such as copying or removal and ordering of sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment file processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1651", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the PATIKA biological pathways database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PATIKA entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2738", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of gene in the Xenbase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (Xenbase)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1267", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A table of amino acid frequencies of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence composition (amino acid frequencies)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid frequencies table" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + }, + { + "@id": "http://edamontology.org/data_1261" + } + ] + }, + { + "@id": "http://edamontology.org/data_1079", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from a database of electron microscopy data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Electron microscopy model ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:N77d4fd20b0454562bb74f828cc47a670" + } + ] + }, + { + "@id": "_:N77d4fd20b0454562bb74f828cc47a670", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3805" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3659", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A statistical calculation to estimate the relationships among variables." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Regression" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Regression analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Regression_analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2238" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3295", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Topic concerning the study of heritable changes, for example in gene expression or phenotype, caused by mechanisms other than changes in the DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Epigenetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Methylation profiles" + }, + { + "@value": "DNA methylation" + }, + { + "@value": "Histone modification" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes sub-topics such as histone modification and DNA methylation (methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc.)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Epigenetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D019175" + }, + { + "@id": "https://en.wikipedia.org/wiki/Epigenetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3053" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0541", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylogenetic tree construction from continuous quantitative character data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree construction (from continuous quantitative characters)" + }, + { + "@value": "Phylogenetic tree generation (from continuous quantitative characters)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic inference (from continuous quantitative characters)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0538" + }, + { + "@id": "_:N79c90bc269cc415fa9a1c2e257790b98" + } + ] + }, + { + "@id": "_:N79c90bc269cc415fa9a1c2e257790b98", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1426" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3384", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.14 Nuclear medicine" + }, + { + "@value": "VT 3.2.13 Medical imaging" + }, + { + "@value": "VT 3.2.24 Radiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The use of imaging techniques for clinical purposes for medical research." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Medical_imaging" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Neuroimaging" + }, + { + "@value": "Nuclear medicine" + }, + { + "@value": "Radiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Medical imaging" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Medical_imaging" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3382" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2885", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DNA polymorphism." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "DNA_polymorphism" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "snps" + }, + { + "@value": "RFLP" + }, + { + "@value": "SNP" + }, + { + "@value": "VNTR" + }, + { + "@value": "Microsatellites" + }, + { + "@value": "Variable number of tandem repeat polymorphism" + }, + { + "@value": "Single nucleotide polymorphism" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Includes microsatellite polymorphism in a DNA sequence. A microsatellite polymorphism is a very short subsequence that is repeated a variable number of times between individuals. These repeats consist of the nucleotides cytosine and adenosine." + }, + { + "@value": "Includes single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs. A SNP is a DNA sequence variation where a single nucleotide differs between members of a species or paired chromosomes in an individual." + }, + { + "@value": "Includes restriction fragment length polymorphisms (RFLP) in a DNA sequence. An RFLP is defined by the presence or absence of a specific restriction site of a bacterial restriction enzyme." + }, + { + "@value": "Includes variable number of tandem repeat (VNTR) polymorphism in a DNA sequence. VNTRs occur in non-coding regions of DNA and consists sub-sequence that is repeated a multiple (and varied) number of times." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA polymorphism" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Single-nucleotide_polymorphism" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0199" + }, + { + "@id": "http://edamontology.org/topic_0654" + } + ] + }, + { + "@id": "http://edamontology.org/data_1521", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The aliphatic index of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The aliphatic index is the relative protein volume occupied by aliphatic side chains." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein aliphatic index" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2970" + } + ] + }, + { + "@id": "http://edamontology.org/data_2724", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1713" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation on an embryo or concerning embryological development." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Embryo report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1040", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/example": [ + { + "@value": "1nr3A00" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a protein domain from CATH." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CATH domain identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH domain ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2700" + } + ] + }, + { + "@id": "http://edamontology.org/is_deprecation_candidate", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "When 'true', the concept has been proposed to be deprecated." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "deprecation_candidate" + } + ] + }, + { + "@id": "http://edamontology.org/format_1934", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Fitch program format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "fitch program" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/format_3976", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://gfa-spec.github.io/GFA-spec/" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://raw.githubusercontent.com/sjackman/gfalint/master/examples/big2.gfa" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "gfa" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "https://github.com/GFA-spec" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology. GFA2 is an update of GFA1 which is not compatible with GFA1." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Graphical Fragment Assembly (GFA) 2.0" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GFA 2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://gfa-spec.github.io/GFA-spec/GFA2.html#backward-compatibility-with-gfa-1" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2561" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2299", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a gene, (typically) assigned by a person and/or according to a naming scheme. It may contain white space characters and is typically more intuitive and readable than a gene symbol. It (typically) may be used to identify similar genes in different species and to derive a gene symbol." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Allele name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1025" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3398", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The application of biological concepts and methods to the analytical and synthetic methodologies of engineering." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biological engineering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Bioengineering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Bioengineering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Biological_engineering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3297" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3465", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify a correlation, i.e. a statistical relationship between two random variables or two sets of data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Correlation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nf5cd0153717441ef988d7542dd72feff" + }, + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "_:Nf5cd0153717441ef988d7542dd72feff", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://edamontology.org/data_0947", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2600" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A map (typically a diagram) of a biological pathway." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biological pathway map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3860", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate a theoretical mass spectrometry spectra for given sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Spectrum prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Spectrum calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3214" + }, + { + "@id": "http://edamontology.org/operation_0250" + }, + { + "@id": "_:N657d91af705d45d5a2e4a20cad05cb0a" + } + ] + }, + { + "@id": "_:N657d91af705d45d5a2e4a20cad05cb0a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0943" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3894", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse DNA sequences in order to determine an individual's DNA characteristics, for example in criminal forensics, parentage testing and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "DNA fingerprinting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA profiling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/DNA_profiling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + } + ] + }, + { + "@id": "http://edamontology.org/format_3771", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.uniprot.org/format/uniprot_rdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "UniProtKB RDF sequence features format is an RDF format available for downloading UniProt entries (in RDF/XML)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "UniProt RDF" + }, + { + "@value": "UniProt RDF/XML" + }, + { + "@value": "UniProtKB RDF format" + }, + { + "@value": "UniProt RDF format" + }, + { + "@value": "UniProtKB RDF/XML format" + }, + { + "@value": "UniProtKB RDF/XML" + }, + { + "@value": "UniProt RDF/XML format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniProtKB RDF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2547" + }, + { + "@id": "http://edamontology.org/format_2376" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0395", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0249" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate non-canonical atomic interactions in protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Residue non-canonical interaction detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1517", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0896" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a specific restriction enzyme such as enzyme reference data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This might include name of enzyme, organism, isoschizomers, methylation, source, suppliers, literature references, or data on restriction enzyme patterns such as name of enzyme, recognition site, length of pattern, number of cuts made by enzyme, details of blunt or sticky end cut etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Restriction enzyme report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1677", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A label (text token) describing the type of job, for example interactive or non-interactive." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Job type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3702", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Proprietary mass-spectrometry format of Thermo Scientific's ProteomeDiscoverer software." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Magellan storage file format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This format corresponds to an SQLite database, and you can look into the files with e.g. SQLiteStudio3. There are also some readers (http://doi.org/10.1021/pr2005154) and converters (http://doi.org/10.1016/j.jprot.2015.06.015) for this format available, which re-engineered the database schema, but there is no official DB schema specification of Thermo Scientific for the format." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MSF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/data_2174", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Secondary identifier of an object from the FlyBase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Secondary identifier are used to handle entries that were merged with or split from other entries in the database." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FlyBase secondary identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1089" + } + ] + }, + { + "@id": "http://edamontology.org/data_3739", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The total species diversity in a landscape." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ɣ-diversity" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gamma diversity data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3707" + } + ] + }, + { + "@id": "http://edamontology.org/data_2290", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An accession number of an entry from the EMBL sequence database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "EMBL identifier" + }, + { + "@value": "EMBL ID" + }, + { + "@value": "EMBL accession number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBL accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1103" + } + ] + }, + { + "@id": "http://edamontology.org/data_2744", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a locus from the PseudoCAP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID (PseudoCAP)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1893" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2941", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0571" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise gene expression data where each band (or line graph) corresponds to a sample." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0571" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Whole microarray graph plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3708", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://github.com/tdwg/abcd" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Exchange format of the Access to Biological Collections Data (ABCD) Schema; a standard for the access to and exchange of data about specimens and observations (primary biodiversity data)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ABCD" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ABCD format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3706" + }, + { + "@id": "_:Nf591413c7ab644fbaef20820c7c0cf88" + } + ] + }, + { + "@id": "_:Nf591413c7ab644fbaef20820c7c0cf88", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3707" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0237", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Find and/or analyse repeat sequences in (typically nucleotide) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Repeat sequences include tandem repeats, inverted or palindromic repeats, DNA microsatellites (Simple Sequence Repeats or SSRs), interspersed repeats, maximal duplications and reverse, complemented and reverse complemented repeats etc. Repeat units can be exact or imperfect, in tandem or dispersed, of specified or unspecified length." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Repeat sequence analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N2b77ed956b204618bab9bb69e6c831fb" + }, + { + "@id": "http://edamontology.org/operation_2403" + } + ] + }, + { + "@id": "_:N2b77ed956b204618bab9bb69e6c831fb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0157" + } + ] + }, + { + "@id": "http://edamontology.org/data_1689", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A username on a computer system or a website." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Username" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2101" + } + ] + }, + { + "@id": "http://edamontology.org/data_2980", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report concerning the classification of protein sequences or structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2359", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0906" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on protein domain-protein domain interaction(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Domain-domain interactions" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2028", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3108" + }, + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Raw data from or annotation on laboratory experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Experimental data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2240", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0962" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on the types of small molecules or 'heterogens' (non-protein groups) that are represented in PDB files." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Heterogen annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2842", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_3168" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Parallelised sequencing processes that are capable of sequencing many thousands of sequences simultaneously." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "High-throughput sequencing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2514", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0230" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a protein sequence by some means." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0230" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence generation (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3764", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://open-ms.sourceforge.net/schemas/" + }, + { + "@value": "http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1IdXMLFile.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML file format for files containing information about peptide identifications from mass spectrometry data analysis carried out with OpenMS." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "idXML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3135", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Coding sequences for a signal or transit peptide." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3512" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Signal or transit peptide" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2065", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report on the quality of a protein three-dimensional model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure report (quality evaluation) format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N1bede16f0fba4f52822628f4c5cad3f1" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N1bede16f0fba4f52822628f4c5cad3f1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1539" + } + ] + }, + { + "@id": "http://edamontology.org/data_2080", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report of hits from searching a database of some type." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Search results" + }, + { + "@value": "Database hits" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database search results" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/format_3696", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PostScript format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PostScript" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PS" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2664", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the GlycomeDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GlycomeDB ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2900" + } + ] + }, + { + "@id": "http://edamontology.org/data_2528", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2087" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning a specific type of molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0320", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Assign a protein tertiary structure (3D coordinates), or other aspects of protein structure, from raw experimental data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Structure calculation" + }, + { + "@value": "NOE assignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure assignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N5cf3658e49dc48eea165f657a5354af7" + }, + { + "@id": "http://edamontology.org/operation_2406" + }, + { + "@id": "http://edamontology.org/operation_2423" + }, + { + "@id": "_:N696a4eca382a46178c8a8c9d8c354102" + } + ] + }, + { + "@id": "_:N5cf3658e49dc48eea165f657a5354af7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1460" + } + ] + }, + { + "@id": "_:N696a4eca382a46178c8a8c9d8c354102", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1317" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0330", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Map and model the effects of single nucleotide polymorphisms (SNPs) on protein structure(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0331" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein SNP mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2998", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more nucleic acids to identify similarities." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2424" + } + ] + }, + { + "@id": "http://edamontology.org/data_1029", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1104" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An NCBI UniGene unique identifier of a gene." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene identifier (NCBI UniGene)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1420", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0858" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of molecular sequences to a protein fingerprint from the PRINTS database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence-profile alignment (fingerprint)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0297", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate some type of structural (3D) profile or template from a structure or structure alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structural profile generation" + }, + { + "@value": "Structural profile construction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "3D profile generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2480" + }, + { + "@id": "_:Nabfe5f2c8dc544af9dcf5ecb7855983b" + }, + { + "@id": "_:N14afc87818f448b6b6d313c88518baaa" + }, + { + "@id": "http://edamontology.org/operation_3429" + }, + { + "@id": "_:Nd938763717c14d53806b28baf624c6d7" + } + ] + }, + { + "@id": "_:Nabfe5f2c8dc544af9dcf5ecb7855983b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0889" + } + ] + }, + { + "@id": "_:N14afc87818f448b6b6d313c88518baaa", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0886" + } + ] + }, + { + "@id": "_:Nd938763717c14d53806b28baf624c6d7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0883" + } + ] + }, + { + "@id": "http://edamontology.org/data_3768", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Groupings of expression profiles according to a clustering algorithm." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Clustered gene expression profiles" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Clustered expression profiles" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2603" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3800", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Quantification of data arising from RNA-Seq high-throughput sequencing, typically the quantification of transcript abundances durnig transcriptome analysis in a gene expression study." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "RNA-Seq quantitation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA-Seq quantification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3799" + } + ] + }, + { + "@id": "http://edamontology.org/data_2711", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information concerning a genome as a whole." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2530" + } + ] + }, + { + "@id": "http://edamontology.org/format_3475", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "tab" + }, + { + "@value": "tsv" + } + ], + "http://edamontology.org/media_type": [ + { + "@id": "http://www.iana.org/assignments/media-types/text/tab-separated-values" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.iana.org/assignments/media-types/text/tab-separated-values" + }, + { + "@id": "http://filext.com/file-extension/TSV" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Tabular data represented as tab-separated values in a text file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Tab-delimited" + }, + { + "@value": "Tab-separated values" + }, + { + "@value": "tab" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TSV" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3751" + } + ] + }, + { + "@id": "http://edamontology.org/data_3129", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "short repetitive subsequences (repeat sequences) in a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features report (repeats)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3060", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Regulatory RNA sequences including microRNA (miRNA) and small interfering RNA (siRNA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0659" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Regulatory RNA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0787", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0780" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Rice-specific data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Rice" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3658", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse data in order to deduce properties of an underlying distribution or population." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Empirical Bayes" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Statistical inference" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Statistical_inference" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2238" + } + ] + }, + { + "@id": "http://edamontology.org/data_2850", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a lipid structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Lipid structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0883" + } + ] + }, + { + "@id": "http://edamontology.org/data_1347", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Dirichlet distribution used by hidden Markov model analysis programs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Dirichlet distribution" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0950" + } + ] + }, + { + "@id": "http://edamontology.org/format_3725", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://sbolstandard.org/downloads/specification-data-model-2-0/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Synthetic Biology Open Language (SBOL) is an XML format for the specification and exchange of biological design information in synthetic biology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "SBOL introduces a standardised format for the electronic exchange of information on the structural and functional aspects of biological designs." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SBOL" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_2690", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ornithorhynchus anatinus' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID (\"Ornithorhynchus anatinus\")" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2459", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a protein tertiary structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2406" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure processing (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3161", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.mged.org/Workgroups/MAGE/mage-ml.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.mged.org/Workgroups/MAGE/mage-ml.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "MAGE-ML XML format for microarray expression data, standardised by MGED (now FGED)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MAGE-ML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2058" + }, + { + "@id": "_:N275d5a4cdb824033996459852da2bdd8" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "_:N275d5a4cdb824033996459852da2bdd8", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3111" + } + ] + }, + { + "@id": "http://edamontology.org/data_1008", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "PDBML:pdbx_PDB_strand_id" + }, + { + "@value": "WHATIF: chain" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a polypeptide chain from a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein chain identifier" + }, + { + "@value": "PDB chain identifier" + }, + { + "@value": "Chain identifier" + }, + { + "@value": "PDB strand id" + }, + { + "@value": "Polypeptide chain identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is typically a character (for the chain) appended to a PDB identifier, e.g. 1cukA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Polypeptide chain ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N719af800e29e44f799de77e4790e12cb" + }, + { + "@id": "http://edamontology.org/data_0988" + } + ] + }, + { + "@id": "_:N719af800e29e44f799de77e4790e12cb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1467" + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#inSubset", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/operation_2465", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2480" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a molecular tertiary structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3661", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict the effect or function of an individual single nucleotide polymorphism (SNP)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SNP annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0361" + } + ] + }, + { + "@id": "http://edamontology.org/data_1088", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a scientific article." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Article identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Article ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N91e2c17b557d46a48f81d0435d25465d" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N91e2c17b557d46a48f81d0435d25465d", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0971" + } + ] + }, + { + "@id": "http://edamontology.org/data_2046", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A nucleic acid sequence and minimal metadata, typically an identifier of the sequence and/or a comment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0849" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence record (lite)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3955", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Experimental approaches to determine the rates of metabolic reactions - the metabolic fluxes - within a biological entity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Fluxomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The \"fluxome\" is the complete set of metabolic fluxes in a cell, and is a dynamic aspect of phenotype." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Fluxomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Fluxomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3391" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3420", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.3 Andrology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The health of the reproductive processes, functions and systems at all stages of life." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Reproductive_health" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Family planning" + }, + { + "@value": "Fertility medicine" + }, + { + "@value": "Andrology" + }, + { + "@value": "Reproductive disorders" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reproductive health" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Reproductive_health" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0520", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict primers that are conserved across multiple genomes or species." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0308" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PCR primer design (for conserved primers)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_4036", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format used in AutoDock 4 for storing atomic coordinates, partial atomic charges and AutoDock atom types for both receptors and ligands." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PDBQT" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://userguide.mdanalysis.org/2.0.0-dev0/formats/reference/pdbqt.html#pdbqt-specification" + }, + { + "@id": "https://userguide.mdanalysis.org/stable/formats/reference/pdbqt.html#pdbqt-specification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_1475" + } + ] + }, + { + "@id": "http://edamontology.org/data_1716", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0966" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term definition from The Gene Ontology (GO)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GO" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3252", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable encoding for the Web Ontology Language (OWL)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "OWL Functional Syntax" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2197" + } + ] + }, + { + "@id": "http://edamontology.org/data_0875", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predicted or actual protein topology represented as a string of protein secondary structure elements." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The location and size of the secondary structure elements and intervening loop regions is usually indicated." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein topology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2747", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0957" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a subdivision of the Collagen Mutation Database (CMD) database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database name (CMD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1947", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GCG MSF (multiple sequence file) file format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GCG MSF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3486" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2420", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) data of a specific type, for example applying analytical methods." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2945" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Operation (typed)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3946", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The development and use of mathematical models and systems analysis for the description of ecological processes, and applications such as the sustainable management of resources." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ecological modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N469de83ed6494c4ca814e177a2a383b3" + }, + { + "@id": "http://edamontology.org/operation_2426" + }, + { + "@id": "http://edamontology.org/operation_0286" + }, + { + "@id": "_:Nafb5152b08fe478baab11590fc98b51e" + } + ] + }, + { + "@id": "_:N469de83ed6494c4ca814e177a2a383b3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1439" + } + ] + }, + { + "@id": "_:Nafb5152b08fe478baab11590fc98b51e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0084" + } + ] + }, + { + "@id": "http://edamontology.org/is_output_of", + "@type": [ + "http://www.w3.org/2002/07/owl#ObjectProperty" + ], + "http://purl.obolibrary.org/obo/is_anti_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_reflexive": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/transitive_over": [ + { + "@value": "OBO_REL:is_a" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'A is_output_of B' defines for the subject A, that it as a necessary or actual output or output argument of the object B." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "OBO_REL:participates_in" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#isCyclic": [ + { + "@value": true + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is or has an 'Operation' function, or an entity outside of an ontology that has an 'Operation' function or is an 'Operation'. In EDAM, 'is_output_of' is not explicitly defined between EDAM concepts, only the inverse 'has_output'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#domain": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "is output of" + } + ], + "http://www.w3.org/2000/01/rdf-schema#range": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ], + "http://www.w3.org/2004/02/skos/core#closeMatch": [ + { + "@id": "http://purl.obolibrary.org/obo/OBI_0000312" + } + ], + "http://www.w3.org/2004/02/skos/core#exactMatch": [ + { + "@id": "http://wsio.org/is_output_of" + } + ] + }, + { + "@id": "http://edamontology.org/format_3608", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTQ format subset for Phred sequencing quality score data only (no sequences) for Solexa/Illumina 1.0 format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Solexa/Illumina 1.0 format can encode a Solexa/Illumina quality score from -5 to 62 using ASCII 59 to 126 (although in raw read data Solexa scores from -5 to 40 only are expected)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "qualsolexa" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1933" + }, + { + "@id": "http://edamontology.org/format_3607" + } + ] + }, + { + "@id": "http://edamontology.org/format_1455", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of the HSSP database (Homology-derived Secondary Structure in Proteins)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "hssp" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2077" + } + ] + }, + { + "@id": "http://edamontology.org/format_3969", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://vega.github.io/vega/docs/" + }, + { + "@id": "https://vega.github.io/vega/docs/#specification" + }, + { + "@id": "https:doi.org/10.1145/2642918.2647360" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://vega.github.io/vega/examples/" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "json" + } + ], + "http://edamontology.org/media_type": [ + { + "@value": "application/json" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "http://idl.cs.washington.edu/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Vega is a visualization grammar, a declarative language for creating, saving, and sharing interactive visualization designs. With Vega, you can describe the visual appearance and interactive behavior of a visualization in a JSON format, and generate web-based views using Canvas or SVG." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Vega" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_3464" + } + ] + }, + { + "@id": "http://edamontology.org/data_2873", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene frequencies data that may be read during phylogenetic tree calculation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic gene frequencies data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1426" + } + ] + }, + { + "@id": "http://edamontology.org/format_2334", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1047" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Typical textual representation of a URI." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "URI format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2848", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a bibliographic reference." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Bibliographic reference format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nd019043b65a8417c9503ab20eb59eaff" + }, + { + "@id": "_:N9adf66aa5e374417b66f40e2c4c78796" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Nd019043b65a8417c9503ab20eb59eaff", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2849" + } + ] + }, + { + "@id": "_:N9adf66aa5e374417b66f40e2c4c78796", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0970" + } + ] + }, + { + "@id": "http://edamontology.org/data_1785", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a gene from dictyBase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (dictyBase)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3908", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Retrieve resources from information systems matching a specific information need." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Information retrieval" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0306" + } + ] + }, + { + "@id": "http://edamontology.org/topic_4013", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Microbial mechanisms for protecting microorganisms against antimicrobial agents." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "AMR" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Total drug resistance (TDR)" + }, + { + "@value": "Multiple drug resistance (MDR)" + }, + { + "@value": "Antiviral resistance" + }, + { + "@value": "Multiresistance" + }, + { + "@value": "Antiprotozoal resistance" + }, + { + "@value": "Antifungal resistance" + }, + { + "@value": "Pandrug resistance (PDR)" + }, + { + "@value": "Multidrug resistance" + }, + { + "@value": "Extensive drug resistance (XDR)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Antimicrobial Resistance" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Antimicrobial_resistance" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3301" + }, + { + "@id": "http://edamontology.org/topic_3324" + } + ] + }, + { + "@id": "http://edamontology.org/data_1679", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DaliLite log file describing all the steps taken by a DaliLite alignment of two protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DaliLite log file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1609", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of Gramene genome database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gramene gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1867", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a protein fold." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein fold name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/data_1438", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2523" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report of data concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used for example for reports on confidence, shape or stratigraphic (age) data derived from phylogenetic tree analysis." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0290", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more molecular sequences, identify and remove redundant sequences based on some criteria." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence redundancy removal" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2451" + }, + { + "@id": "_:N1ab7564a33d841a7b43abd2ccd4674e2" + } + ] + }, + { + "@id": "_:N1ab7564a33d841a7b43abd2ccd4674e2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2044" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0301", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2928" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0303" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence-to-3D-profile alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3259", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0524" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Infer a transcriptome sequence without the aid of a reference genome, i.e. by comparing short sequences (reads) to each other." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcriptome assembly (de novo)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3923", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://edamontology.org/related_term": [ + { + "@value": "Amplicon panels" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Resequencing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Laboratory experiment to identify the differences between a specific genome (of an individual) and a reference genome (developed typically from many thousands of individuals). WGS re-sequencing is used as golden standard to detect variations compared to a given reference genome, including small variants (SNP and InDels) as well as larger genome re-organisations (CNVs, translocations, etc.)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Highly targeted resequencing" + }, + { + "@value": "Whole-genome re-sequencing (WGSR)" + }, + { + "@value": "Whole genome resequencing (WGR)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "Amplicon sequencing" + }, + { + "@value": "Ultra-deep sequencing" + }, + { + "@value": "Amplicon-based sequencing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Amplicon sequencing is the ultra-deep sequencing of PCR products (amplicons), usually for the purpose of efficient genetic variant identification and characterisation in specific genomic regions." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome resequencing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3168" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2440", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) RNA tertiary structure data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2480" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure processing (RNA)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1690", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A password on a computer system, or a website." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Password" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2101" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3930", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A biomedical field that bridges immunology and genetics, to study the genetic basis of the immune system." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Immune system genetics" + }, + { + "@value": "Immunology and genetics" + }, + { + "@value": "Immungenetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Immunogenetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Immunogenes" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This involves the study of often complex genetic traits underlying diseases involving defects in the immune system. For example, identifying target genes for therapeutic approaches, or genetic variations involved in immunological pathology." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Immunogenetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Immunogenetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3053" + }, + { + "@id": "http://edamontology.org/topic_0804" + } + ] + }, + { + "@id": "http://edamontology.org/format_3019", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://sequenceontology.org/gvf.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://sequenceontology.org/gvf.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Genome Variation Format (GVF). A GFF3-compatible format with defined header and attribute tags for sequence variation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GVF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1975" + }, + { + "@id": "http://edamontology.org/format_2921" + } + ] + }, + { + "@id": "http://edamontology.org/format_1620", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the dbSNP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "dbSNP polymorphism report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1329", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on epitopes that bind to MHC class I molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MHC Class I epitopes report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1143", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the TRANSFAC database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TRANSFAC accession number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2911" + } + ] + }, + { + "@id": "http://edamontology.org/data_1331", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report or plot of PEST sites in a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "'PEST' motifs target proteins for proteolytic degradation and reduce the half-lives of proteins dramatically." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features (PEST sites)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1089", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "FB[a-zA-Z_0-9]{2}[0-9]{7}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an object from the FlyBase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FlyBase ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3343", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Collections of chemicals, typically for use in high-throughput screening experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Compound_libraries_and_screening" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Small compounds libraries" + }, + { + "@value": "Compound library" + }, + { + "@value": "Target identification and validation" + }, + { + "@value": "Chemical screening" + }, + { + "@value": "Small chemical compounds libraries" + }, + { + "@value": "Chemical library" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Compound libraries and screening" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Chemical_library" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3336" + } + ] + }, + { + "@id": "http://edamontology.org/data_3146", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a 'species' node from the SCOP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SCOP species" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2293", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Secondary (internal) identifier of a Gramene database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gramene secondary ID" + }, + { + "@value": "Gramene internal ID" + }, + { + "@value": "Gramene internal identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gramene secondary identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2915" + } + ] + }, + { + "@id": "http://edamontology.org/format_1295", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report format for tandem repeats in a nucleotide sequence (format generated by the Sanger Centre quicktandem program)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "quicktandem" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2155" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3674", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://en.wikipedia.org/wiki/Whole_genome_sequencing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Laboratory technique to sequence the methylated regions in DNA." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MeDIP-chip" + }, + { + "@value": "mDIP" + }, + { + "@value": "MeDIP-seq" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Methylated_DNA_immunoprecipitation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Methylation sequencing" + }, + { + "@value": "WGBS" + }, + { + "@value": "Methylated DNA immunoprecipitation (MeDIP)" + }, + { + "@value": "Bisulfite sequencing" + }, + { + "@value": "methyl-seq" + }, + { + "@value": "MeDIP" + }, + { + "@value": "methy-seq" + }, + { + "@value": "BS-Seq" + }, + { + "@value": "Whole-genome bisulfite sequencing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Methylated DNA immunoprecipitation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Methylated_DNA_immunoprecipitation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3656" + } + ] + }, + { + "@id": "http://edamontology.org/data_1344", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0950" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for the motifs (patterns) that MEME will search for." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MEME motif alphabet" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_4030", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Interdisplinary study of behavior, precise control, and manipulation of low (microlitre) volume fluids in constrained space." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Fluidics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microfluidics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Microfluidics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3318" + }, + { + "@id": "http://edamontology.org/topic_3297" + }, + { + "@id": "http://edamontology.org/topic_3292" + } + ] + }, + { + "@id": "http://edamontology.org/data_2909", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:OccurrenceRecord" + }, + { + "@value": "Moby:FirstEpithet" + }, + { + "@value": "Moby:BriefOccurrenceRecord" + }, + { + "@value": "Moby:OrganismsShortName" + }, + { + "@value": "Moby:InfraspecificEpithet" + }, + { + "@value": "Moby:OrganismsLongName" + }, + { + "@value": "Moby:Organism_Name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of an organism (or group of organisms)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Organism name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1869" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0260", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Convert a molecular sequence alignment from one type to another (for example amino acid to coding nucleotide sequence)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment conversion" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3434" + }, + { + "@id": "http://edamontology.org/operation_3081" + } + ] + }, + { + "@id": "http://edamontology.org/data_1900", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: NCBI_locus_tag" + }, + { + "@value": "Moby_namespace:LocusID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for loci from NCBI database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Locus ID (NCBI)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NCBI locus tag" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1893" + } + ] + }, + { + "@id": "http://edamontology.org/data_3567", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report about a biosample." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biosample report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reference sample report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3514", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein-ligand (small molecule) interaction(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-ligand interactions" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0620", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The structures of drugs, drug target, their interactions and binding affinities." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0154" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drugs and target structures" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3644", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analytical process that derives a peptide's amino acid sequence from its tandem mass spectrum (MS/MS) without the assistance of a sequence database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "de Novo sequencing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0230" + }, + { + "@id": "http://edamontology.org/operation_3631" + } + ] + }, + { + "@id": "http://edamontology.org/data_1135", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the Gene3D database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene3D ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2910" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0559", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict and optimise peptide ligands that elicit an immunological response." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0252" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Immunogenicity prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1958", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Refseq protein entry sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Currently identical to genpept format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "refseqp" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3596", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://netpbm.sourceforge.net/doc/ppm.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The PPM format is a lowest common denominator color image file format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ppm" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0748", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0160" + }, + { + "@id": "http://edamontology.org/topic_0639" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The detection, identification and analysis of positional features in proteins, such as functional sites." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sites and features" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1990", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment format for start and end of matches between sequence pairs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "match" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2468", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Retrieve a phylogenetic tree from a data resource." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (phylogenetic tree)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3972", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://doi.org/10.1007/978-1-59745-525-1_5" + }, + { + "@id": "https://doi.org/10.1007/978-1-61779-833-7_9" + }, + { + "@id": "https://bionetgen.org/" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://github.com/RuleWorld/BNGTutorial/blob/master/README.md" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "bngl" + } + ], + "http://edamontology.org/media_type": [ + { + "@value": "plain/text" + }, + { + "@value": "application/xml" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "https://www.csb.pitt.edu/Faculty/Faeder/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BioNetGen is a format for the specification and simulation of rule-based models of biochemical systems, including signal transduction, metabolic, and genetic regulatory networks." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "BioNetGen Language" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BNGL" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2013" + }, + { + "@id": "_:Nb9a8c28b5c7143458ffaecca53b12d5e" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "_:Nb9a8c28b5c7143458ffaecca53b12d5e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3241" + } + ] + }, + { + "@id": "http://edamontology.org/data_1017", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Specification of range(s) of sequence positions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence range" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2534" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0536", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Assign a protein tertiary structure (3D coordinates) from raw X-ray crystallography data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0320" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure assignment (from X-ray crystallographic data)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2990", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Assign molecular sequences, structures or other biological data to a specific group or category according to qualities it shares with that group or category." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/data_0964", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0962" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report about a specific scent." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Scent annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1052", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:URL" + }, + { + "@value": "Moby:Link" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A Uniform Resource Locator (URL)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "URL" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1047" + } + ] + }, + { + "@id": "http://edamontology.org/format_1980", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1927" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBL feature format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBL feature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0523", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence assembly by combining fragments using an existing backbone sequence, typically a reference genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence assembly (mapping assembly)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The final sequence will resemble the backbone sequence. Mapping assemblers are usually much faster and less memory intensive than de-novo assemblers." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mapping assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequence_assembly#De-novo_vs._mapping_assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0310" + } + ] + }, + { + "@id": "http://edamontology.org/format_3804", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML format for XML Schema." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "xsd" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/format_1930", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "fq" + }, + { + "@value": "fastq" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTQ short read format ignoring quality scores." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "fq" + }, + { + "@value": "FASTAQ" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FASTQ" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2182" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3443", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Image processing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The analysis of a image (typically a digital image) of some type in order to extract information from it." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Image analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Image_analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2945" + }, + { + "@id": "_:N6d76ec5e763f4e10b022b559ef6e68fb" + } + ] + }, + { + "@id": "_:N6d76ec5e763f4e10b022b559ef6e68fb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3382" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3954", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A diagnostic imaging technique based on the application of ultrasound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Standardized echography" + }, + { + "@value": "Ultrasound imaging" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Echography" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Medical ultrasound" + }, + { + "@value": "Diagnostic sonography" + }, + { + "@value": "Standard echography" + }, + { + "@value": "Ultrasonography" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Echography" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Medical_ultrasound" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3382" + } + ] + }, + { + "@id": "http://edamontology.org/format_2305", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GFF feature format (of indeterminate version)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GFF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2206" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "_:N4588e0aea2604bb2be3b4adb080cb02f", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The has_input \"Data\" (data_0006) may cause visualisation or other problems although ontologically correct. But on the other hand it may be useful to distinguish from nullary operations without inputs." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://edamontology.org/comment_handle" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/operation_3357" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@id": "http://edamontology.org/comment_handle" + } + ] + }, + { + "@id": "http://edamontology.org/data_2083", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1394" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning, extracted from, or derived from the analysis of molecular alignment of some type." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alignment data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3524", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Simulation_experiment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Simulation experiment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3361" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2869", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId": [ + { + "@id": "http://edamontology.org/data_2869" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Restriction fragment length polymorphisms (RFLP) in a DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_2885" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RFLP" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3241", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mathematical model of a network, that contains biochemical kinetics." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Kinetic model" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0950" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3391", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The collective characterisation and quantification of pools of biological molecules that translate into the structure, function, and dynamics of an organism or organisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Omics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Omics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Omics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_4019" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3406", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.20 Otorhinolaryngology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the ear, nose and throat." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Otorhinolaryngology" + }, + { + "@value": "Otolaryngology" + }, + { + "@value": "Audiovestibular medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Ear_nose_and_throat_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Head and neck disorders" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ear, nose and throat medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Otorhinolaryngology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2493", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0286" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) codon usage data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage data processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2445", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0276" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a network of protein interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction network processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/data_1793", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Symbol of a gene from Bacillus subtilis Genome Sequence Project." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (Bacillus subtilis)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2533", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DNA mutation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "DNA_mutation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA mutation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Mutation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0654" + }, + { + "@id": "http://edamontology.org/topic_0199" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3170", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A topic concerning high-throughput sequencing of cDNA to measure the RNA content (transcriptome) of a sample, for example, to investigate how different alleles of a gene are expressed, detect post-transcriptional mutations or identify gene fusions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Transcriptome profiling" + }, + { + "@value": "Small RNA-Seq" + }, + { + "@value": "RNA-Seq analysis" + }, + { + "@value": "Whole transcriptome shotgun sequencing" + }, + { + "@value": "RNA sequencing" + }, + { + "@value": "Small-Seq" + }, + { + "@value": "Small RNA sequencing" + }, + { + "@value": "WTSS" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "RNA-Seq" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "MicroRNA sequencing" + }, + { + "@value": "miRNA-seq" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes small RNA profiling (small RNA-Seq), for example to find novel small RNAs, characterize mutations and analyze expression of small RNAs." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA-Seq" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/RNA-Seq" + }, + { + "@id": "https://en.wikipedia.org/wiki/Small_RNA_sequencing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3168" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2475", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify the architecture of a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Includes methods that try to suggest the most likely biological unit for a given protein X-ray crystal structure based on crystal symmetry and scoring of putative protein-protein interfaces." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein architecture recognition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0247" + }, + { + "@id": "http://edamontology.org/operation_2423" + }, + { + "@id": "http://edamontology.org/operation_2996" + } + ] + }, + { + "@id": "http://edamontology.org/data_1033", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier for a gene (or other feature) from the Ensembl database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene ID (Ensembl)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl gene ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2610" + }, + { + "@id": "http://edamontology.org/data_2295" + } + ] + }, + { + "@id": "http://edamontology.org/format_1650", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the INOH signal transduction pathways database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "INOH entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2399", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Transcription of DNA into RNA including the regulation of transcription." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3512" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene transcription" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1128", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the AAindex database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "AAindex ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1073" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3512", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Transcription of DNA into RNA and features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Gene_transcripts" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Introns" + }, + { + "@value": "mRNA features" + }, + { + "@value": "Gene transcript features" + }, + { + "@value": "Fusion transcripts" + }, + { + "@value": "cDNA" + }, + { + "@value": "PolyA site" + }, + { + "@value": "Signal peptide coding sequence" + }, + { + "@value": "EST" + }, + { + "@value": "Coding RNA" + }, + { + "@value": "PolyA signal" + }, + { + "@value": "Transit peptide coding sequence" + }, + { + "@value": "mRNA" + }, + { + "@value": "Exons" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes Introns, and protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. Also expressed sequence tag (EST) or complementary DNA (cDNA) sequences." + }, + { + "@value": "This includes regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript. A polyA signal is required for endonuclease cleavage of an RNA transcript that is followed by polyadenylation. A polyA site is a site on an RNA transcript to which adenine residues will be added during post-transcriptional polyadenylation." + }, + { + "@value": "This includes coding sequences for a signal or transit peptide. A signal peptide coding sequence encodes an N-terminal domain of a secreted protein, which is involved in attaching the polypeptide to a membrane leader sequence. A transit peptide coding sequence encodes an N-terminal domain of a nuclear-encoded organellar protein; which is involved in import of the protein into the organelle." + }, + { + "@value": "This includes 5'untranslated region (5'UTR), coding sequences (CDS), exons, intervening sequences (intron) and 3'untranslated regions (3'UTR)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene transcripts" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Primary_transcript" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0114" + }, + { + "@id": "http://edamontology.org/topic_0099" + } + ] + }, + { + "@id": "http://edamontology.org/data_1053", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A Uniform Resource Name (URN)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "URN" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1047" + } + ] + }, + { + "@id": "http://edamontology.org/data_2091", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A persistent (stable) and unique identifier, typically identifying an object (entry) from a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://semanticscience.org/resource/SIO_000675" + }, + { + "@value": "http://semanticscience.org/resource/SIO_000731" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0842" + } + ] + }, + { + "@id": "http://edamontology.org/data_1400", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1411" + }, + { + "@id": "http://edamontology.org/data_1410" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A penalty for gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Terminal gap penalty" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0469", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict turn structure (for example beta hairpin turns) of protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure prediction (turns)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0267" + } + ] + }, + { + "@id": "_:N85bafeccd692464783b800ffdfeac7ee", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "In very unusual cases." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#isCyclic" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1574", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the PRINTS protein secondary database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PRINTS entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2398", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier for a protein from the Ensembl database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Ensembl ID (protein)" + }, + { + "@value": "Protein ID (Ensembl)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl protein ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + }, + { + "@id": "http://edamontology.org/data_2610" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3123", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0749" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Regions within a nucleic acid sequence containing a signal that alters a biological function." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Expression signals" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3936", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A dimensionality reduction process that selects a subset of relevant features (variables, predictors) for use in model construction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Variable subset selection" + }, + { + "@value": "Attribute selection" + }, + { + "@value": "Variable selection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Feature selection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Feature_selection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nc2e4cfca13ca467fb0018aecb5d46b24" + }, + { + "@id": "_:N0d6811d52e2d4332b260b1b61c603d36" + }, + { + "@id": "http://edamontology.org/operation_3935" + } + ] + }, + { + "@id": "_:Nc2e4cfca13ca467fb0018aecb5d46b24", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0943" + } + ] + }, + { + "@id": "_:N0d6811d52e2d4332b260b1b61c603d36", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://purl.obolibrary.org/obo/idspace", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/format_2171", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used for clusters of protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster format (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2170" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0384", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:AtomAccessibilitySolvent" + }, + { + "@value": "WHATIF:AtomAccessibilitySolventPlus" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate solvent accessible or buried surface areas in protein or other molecular structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein solvent accessibility calculation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Accessible surface calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nef2f0f9e2b7d46638051c6c95ccb7048" + }, + { + "@id": "http://edamontology.org/operation_3351" + } + ] + }, + { + "@id": "_:Nef2f0f9e2b7d46638051c6c95ccb7048", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1542" + } + ] + }, + { + "@id": "http://edamontology.org/data_1005", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3-letter code word for a ligand (HET group) from a PDB file, for example ATP." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Short ligand name" + }, + { + "@value": "Component identifier code" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HET group name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0990" + } + ] + }, + { + "@id": "http://edamontology.org/data_1887", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2285" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby_namespace:MIPS_GE_Maize" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for genetic elements in MIPS Maize database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (MIPS Maize)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1821", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the solvent accessibility ('accessible molecular surface') for each residue in a structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0387" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein residue surface calculation (accessible molecular)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0452", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify insertion, deletion and duplication events from a sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Indel discovery" + }, + { + "@value": "Sequence alignment analysis (indel detection)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Indel detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3227" + } + ] + }, + { + "@id": "http://edamontology.org/data_1728", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2858" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term definition for a molecular function from the Gene Ontology (GO)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Data Type is an enumerated string." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GO (molecular function)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2117", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a map of a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Map identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:N1c4b9b64c8c649d9947813a487a0ca0e" + } + ] + }, + { + "@id": "_:N1c4b9b64c8c649d9947813a487a0ca0e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1274" + } + ] + }, + { + "@id": "http://edamontology.org/format_3774", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://jalview.github.io/biojson" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://jalview.github.io/biojson" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BioJSON is a JSON format of single multiple sequence alignments, with their annotations, features, and custom visualisation and application settings for the Jalview workbench." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "JSON format (Jalview)" + }, + { + "@value": "JSON (Jalview)" + }, + { + "@value": "Jalview JSON" + }, + { + "@value": "Jalview JSON format" + }, + { + "@value": "BioJSON format (Jalview)" + }, + { + "@value": "Jalview BioJSON format" + }, + { + "@value": "Jalview BioJSON" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioJSON (Jalview)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1921" + }, + { + "@id": "_:N7e4996f513eb4ff9833fa34c7f3eb0b9" + }, + { + "@id": "http://edamontology.org/format_1920" + }, + { + "@id": "http://edamontology.org/format_3464" + }, + { + "@id": "_:Nca09507fbc87494e99a9a6dae2dca2c0" + } + ] + }, + { + "@id": "_:N7e4996f513eb4ff9833fa34c7f3eb0b9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "_:Nca09507fbc87494e99a9a6dae2dca2c0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0863" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0602", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId": [ + { + "@value": "http://edamontology.org/topic_3076" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Molecular interactions, biological pathways, networks and other models." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Molecular_interactions_pathways_and_networks" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Genetic information processing pathways" + }, + { + "@value": "Interactome" + }, + { + "@value": "Disease pathways" + }, + { + "@value": "Molecular interactions" + }, + { + "@value": "Networks" + }, + { + "@value": "Biological networks" + }, + { + "@value": "Signaling pathways" + }, + { + "@value": "Biological models" + }, + { + "@value": "Signal transduction pathways" + }, + { + "@value": "Environmental information processing pathways" + }, + { + "@value": "Gene regulatory networks" + }, + { + "@value": "Pathways" + }, + { + "@value": "Interactions" + }, + { + "@value": "Cellular process pathways" + }, + { + "@value": "Metabolic pathways" + }, + { + "@value": "Biological pathways" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular interactions, pathways and networks" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Interactome" + }, + { + "@id": "https://en.wikipedia.org/wiki/Metabolic_pathway" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3307" + } + ] + }, + { + "@id": "http://edamontology.org/data_3723", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Experimentally determined parameter of the morphology of an organism, e.g. size & shape." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Morphology parameter" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3108" + } + ] + }, + { + "@id": "http://edamontology.org/format_2182", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A text format resembling FASTQ short read format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept may be used for non-standard FASTQ short read-like formats." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FASTQ-like format (text)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2545" + } + ] + }, + { + "@id": "http://edamontology.org/data_2393", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the Rouge or HUGE databases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mFLJ/mKIAA number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0539", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construct a phylogenetic tree using a specific method." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree generation (method centric)" + }, + { + "@value": "Phylogenetic tree construction (method centric)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subconcepts of this concept reflect different computational methods used to generate a tree, and provide an alternate axis for curation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic inference (method centric)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0323" + } + ] + }, + { + "@id": "http://edamontology.org/format_2202", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a molecular sequence record, typically corresponding to a full entry from a molecular sequence database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/format_1919" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence record full format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3179", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Experimental techniques that combine chromatin immunoprecipitation ('ChIP') with microarray ('chip'). ChIP-on-chip is used for high-throughput study protein-DNA interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ChIP-chip" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "ChIP-on-chip" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "ChiP" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ChIP-on-chip" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/ChIP-on-chip" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3656" + } + ] + }, + { + "@id": "http://edamontology.org/format_2039", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of phylogenetic cliques data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree report (cliques) format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2036" + }, + { + "@id": "_:Nd6edb70d4b1c42d3a9c7fcc6d8f2823b" + } + ] + }, + { + "@id": "_:Nd6edb70d4b1c42d3a9c7fcc6d8f2823b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1428" + } + ] + }, + { + "@id": "http://edamontology.org/data_2778", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The number of a strain of algae and protozoa from the CCAP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CCAP strain number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2912" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2597", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a catalogue of biological resources from the CABRI database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CABRI catalogue name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + }, + { + "@id": "http://edamontology.org/data_2596" + } + ] + }, + { + "@id": "http://edamontology.org/data_0888", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A value representing molecular structure similarity, measured from structure alignment or some other type of structure comparison." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure similarity score" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1772" + } + ] + }, + { + "@id": "http://edamontology.org/data_2986", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3148" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning the classification of nucleic acid sequences or structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0174", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The prediction of three-dimensional structure of a (typically protein) sequence from first principles, using a physics-based or empirical scoring function and without using explicit structural templates." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0082" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ab initio structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1292", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image showing the architecture of InterPro domains in a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2969" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. Domain architecture is shown as a series of non-overlapping domains in the protein." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InterPro architecture image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1545", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on the net charge distribution (dipole moment) of a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein dipole moment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3225", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Classify variants based on their potential effect on genes, especially functional effects on the expressed proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Variants are typically classified by their position (intronic, exonic, etc.) in a gene transcript and (for variants in coding exons) by their effect on the protein sequence (synonymous, non-synonymous, frameshifting, etc.)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Variant classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2995" + }, + { + "@id": "http://edamontology.org/operation_3197" + } + ] + }, + { + "@id": "http://edamontology.org/data_1879", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0968" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An abbreviation of a phrase or word." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Acronym" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1037", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "Gene:[0-9]{7}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an gene from the TAIR database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TAIR accession (gene)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2387" + } + ] + }, + { + "@id": "http://edamontology.org/data_0899", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D structural motifs in a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structural motifs and surfaces" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2518", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare nucleic acid tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure comparison (nucleic acid)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid structure comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2998" + }, + { + "@id": "http://edamontology.org/operation_2481" + }, + { + "@id": "http://edamontology.org/operation_2483" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3903", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict or detect DNA-binding sites in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein-DNA binding site detection" + }, + { + "@value": "Protein-DNA binding site prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "DNA binding site detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA binding site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0420" + } + ] + }, + { + "@id": "http://edamontology.org/data_1787", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a gene from MaizeGDB (maize genes) database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (MaizeGDB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3218", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Raw sequence data quality control." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequencing QC" + }, + { + "@value": "Sequencing quality assessment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Analyse raw sequence data from a sequencing pipeline and identify (and possiby fix) problems." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequencing quality control" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + }, + { + "@id": "http://edamontology.org/operation_2428" + } + ] + }, + { + "@id": "http://edamontology.org/format_1343", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of results of a search of the InterPro database showing matches between protein sequence(s) and signatures for an InterPro entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The table presents matches between query proteins (rows) and signature methods (columns) for this entry. Alternatively the sequence(s) might be from from the InterPro entry itself. The match position in the protein sequence and match status (true positive, false positive etc) are indicated." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InterPro match table format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1341" + } + ] + }, + { + "@id": "http://edamontology.org/operation_4008", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Design new protein molecules with specific structural or functional properties." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein redesign" + }, + { + "@value": "Rational protein design" + }, + { + "@value": "de novo protein design" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2430" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0288", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Find exact character or word matches between molecular sequences without full sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence word comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2451" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1839", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:HasSaltBridgePlus" + }, + { + "@value": "WHATIF:ShowSaltBridges" + }, + { + "@value": "WHATIF:HasSaltBridge" + }, + { + "@value": "WHATIF:ShowSaltBridgesH" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate (and possibly score) salt bridges in a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Salt bridges are interactions between oppositely charged atoms in different residues. The output might include the inter-atomic distance." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Salt bridge calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0248" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3416", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.19 Orthopaedics" + }, + { + "@value": "VT 3.2.26 Rheumatology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the muscle, bone and connective tissue. It incorporates aspects of orthopaedics, rheumatology, rehabilitation medicine and pain medicine." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Musculoskeletal_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Rheumatology" + }, + { + "@value": "Musculoskeletal disorders" + }, + { + "@value": "Orthopaedics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Musculoskeletal medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Orthopedic_surgery" + }, + { + "@id": "https://en.wikipedia.org/wiki/Rheumatology" + }, + { + "@id": "https://en.wikipedia.org/wiki/Musculoskeletal_physiology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0081", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The curation, processing, analysis and prediction of data about the structure of biological molecules, typically proteins and nucleic acids and other macromolecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structural bioinformatics" + }, + { + "@value": "Biomolecular structure" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Structure_analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Structure databases" + }, + { + "@value": "Structures" + }, + { + "@value": "Structure data resources" + }, + { + "@value": "Computational structural biology" + }, + { + "@value": "Molecular structure" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes related concepts such as structural properties, alignments and structural motifs." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D015394" + }, + { + "@id": "https://en.wikipedia.org/wiki/Structural_bioinformatics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3307" + } + ] + }, + { + "@id": "http://edamontology.org/data_3085", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report (typically a table) on character or word composition / frequency of protein sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1261" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence composition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0498", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align two or more molecular sequences using multiple methods to achieve higher quality." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0292" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Consensus-based sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0379", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Find (and possibly render) short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Repeat sequence detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0237" + }, + { + "@id": "http://edamontology.org/operation_0415" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0077", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The processing and analysis of nucleic acid sequence, structural and other data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid informatics" + }, + { + "@value": "Nucleic acid bioinformatics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Nucleic_acids" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Nucleic acid physicochemistry" + }, + { + "@value": "Nucleic acid properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acids" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D017422" + }, + { + "@id": "https://en.wikipedia.org/wiki/Nucleic_acid" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D017423" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3307" + } + ] + }, + { + "@id": "http://edamontology.org/format_3485", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://www.molbiol.ox.ac.uk/tutorials/Seqlab_GCG.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Rich sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GCG RSF" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "RSF-format files contain one or more sequences that may or may not be related. In addition to the sequence data, each sequence can be annotated with descriptive sequence information (from the GCG manual)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RSF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3486" + } + ] + }, + { + "@id": "http://edamontology.org/data_1279", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A map of genetic markers in a contiguous, assembled genomic sequence, with the sizes and separation of markers measured in base pairs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A sequence map typically includes annotation on significant subsequences such as contigs, haplotypes and genes. The contigs shown will (typically) be a set of small overlapping clones representing a complete chromosomal segment." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1280" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0140", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of how proteins are transported within and without the cell, including signal peptides, protein subcellular localisation and export." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_targeting_and_localisation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein targeting" + }, + { + "@value": "Protein localisation" + }, + { + "@value": "Protein sorting" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein targeting and localisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_targeting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0108" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2442", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict DNA tertiary structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0475" + }, + { + "@id": "_:N82557f9485de4e7f919e651b2a78dd6b" + } + ] + }, + { + "@id": "_:N82557f9485de4e7f919e651b2a78dd6b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1464" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0256", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare the feature tables of two or more molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Feature table comparison" + }, + { + "@value": "Feature comparison" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nec3f31325c14416cb9f0b25a89788c81" + }, + { + "@id": "http://edamontology.org/operation_2403" + }, + { + "@id": "http://edamontology.org/operation_2424" + }, + { + "@id": "_:Nec1456a8ee3843be8b4dd4f3287977c1" + } + ] + }, + { + "@id": "_:Nec3f31325c14416cb9f0b25a89788c81", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "_:Nec1456a8ee3843be8b4dd4f3287977c1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "http://edamontology.org/format_1737", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "CiteXplore 'all' citation format includes all known details such as Mesh terms and cross-references." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CiteXplore-all" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2848" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3616", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.htslib.org/doc/tabix.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.htslib.org/doc/tabix.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "TAB-delimited genome position file index format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "tabix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2932", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a Hopp and Woods plot of antigenicity of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0252" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hopp and Woods plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2098", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a submitted job." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Job identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://wsio.org/data_009" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/data_1398", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A penalty for extending a gap in an alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gap extension penalty" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2137" + } + ] + }, + { + "@id": "http://edamontology.org/data_1490", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1481" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "C-beta atoms from amino acid side-chains may be included." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Multiple protein tertiary structure alignment (C-alpha atoms)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1576", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the Pfam protein secondary database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pfam entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2723", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier for a protein from the DisProt database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "DisProt ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein ID (DisProt)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2907" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_0865", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A value representing molecular sequence similarity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence similarity score" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1772" + } + ] + }, + { + "@id": "http://edamontology.org/format_1357", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an EMBOSS sequence pattern." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS sequence pattern" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2068" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0741", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein sequence alignments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A sequence profile typically represents a sequence alignment." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3553", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotate an image of some sort, typically with terms from a controlled vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Image annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0226" + } + ] + }, + { + "@id": "http://edamontology.org/data_2356", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Stable accession number of an entry (RNA family) from the RFAM database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RFAM accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2355" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2669", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the ModelDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ModelDB ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2891" + } + ] + }, + { + "@id": "http://edamontology.org/data_2784", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier for a virus from the RNAVirusDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Could list (or reference) other taxa here from https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNAVirusDB ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2785" + } + ] + }, + { + "@id": "http://edamontology.org/format_2004", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "T-Coffee program alignment format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "T-Coffee format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_3131", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more nucleic acid sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0858" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif matches (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2607", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for any protein sequence without unknown positions, ambiguity or non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "completely unambiguous pure protein" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1208" + }, + { + "@id": "http://edamontology.org/format_2567" + } + ] + }, + { + "@id": "http://edamontology.org/data_3110", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Raw data (typically MIAME-compliant) for hybridisations from a microarray experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Such data as found in Affymetrix CEL or GPR files." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Raw microarray data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3117" + }, + { + "@id": "http://edamontology.org/data_3108" + } + ] + }, + { + "@id": "http://edamontology.org/format_2058", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a file of gene expression data, e.g. a gene expression matrix or profile." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene expression data format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene expression report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nd334aef4d3d44127810cac036a2d1253" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Nd334aef4d3d44127810cac036a2d1253", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2603" + } + ] + }, + { + "@id": "http://edamontology.org/format_1516", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from the withrefm section of the REBASE enzyme database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "REBASE withrefm enzyme report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3464", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "json" + } + ], + "http://edamontology.org/media_type": [ + { + "@id": "http://www.iana.org/assignments/media-types/application/json" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.iana.org/assignments/media-types/application/json" + }, + { + "@id": "http://filext.com/file-extension/JSON" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "JavaScript Object Notation format; a lightweight, text-based format to represent tree-structured data using key-value pairs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "JavaScript Object Notation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "JSON" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/JSON" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3750" + }, + { + "@id": "http://edamontology.org/format_1915" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0468", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict helical secondary structure of protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure prediction (helices)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0267" + } + ] + }, + { + "@id": "http://edamontology.org/data_0932", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2717" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on oligonucleotide probes (typically for use with DNA microarrays)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Oligonucleotide probe data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3139", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence tagged sites (STS) in nucleic acid sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3511" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence tagged sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0182", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The alignment of molecular sequences or sequence profiles (representing sequence alignments)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes the generation of alignments (the identification of equivalent sites), the analysis of alignments, editing, visualisation, alignment databases, the alignment (equivalence between sites) of sequence profiles (representing sequence alignments) and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1160", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the CPDB (ConsensusPathDB) biological pathways database, which is an identifier from an external database integrated into CPDB." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CPDB ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept refers to identifiers used by the databases collated in CPDB; CPDB identifiers are not independently defined." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (CPDB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2365" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0437", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict selenocysteine insertion sequence (SECIS) in a DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Selenocysteine insertion sequence (SECIS) prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "SECIS elements are around 60 nucleotides in length with a stem-loop structure directs the cell to translate UGA codons as selenocysteines." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SECIS element prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ndef8c37519374e97a698c4b636c662bb" + }, + { + "@id": "http://edamontology.org/operation_2454" + } + ] + }, + { + "@id": "_:Ndef8c37519374e97a698c4b636c662bb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0916" + } + ] + }, + { + "@id": "http://edamontology.org/data_1663", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2600" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "networks of protein interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction networks" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1439", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A model of DNA substitution that explains a DNA sequence alignment, derived from phylogenetic tree analysis." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence alignment report (DNA substitution model)" + }, + { + "@value": "Phylogenetic tree report (DNA substitution model)" + }, + { + "@value": "Substitution model" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA substitution model" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0950" + } + ] + }, + { + "@id": "http://edamontology.org/data_2641", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "M[0-9]{4}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an enzyme reaction mechanism from the MACie database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MACie entry number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reaction ID (MACie)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2108" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_3494", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "DNA sequences" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2977" + } + ] + }, + { + "@id": "http://edamontology.org/data_2198", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1246" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A cluster of similar genes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene cluster" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0521", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict primers based on gene structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0308" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PCR primer design (based on gene structure)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0130", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein stability, folding (in 3D space) and protein sequence-structure-function relationships. This includes for example study of inter-atomic or inter-residue interactions in protein (3D) structures, the effect of mutation, and the design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_folding_stability_and_design" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein stability" + }, + { + "@value": "Protein residue interactions" + }, + { + "@value": "Protein folding" + }, + { + "@value": "Rational protein design" + }, + { + "@value": "Protein design" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein folding, stability and design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_design" + }, + { + "@id": "https://en.wikipedia.org/wiki/Protein_folding" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_2814" + } + ] + }, + { + "@id": "http://edamontology.org/format_3863", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "NLP format used by a specific type of corpus (collection of texts)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NLP corpus format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3862" + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#isCyclic", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/data_2373", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a spot from a two-dimensional (protein) gel." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Spot ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/format_1578", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the Superfamily protein secondary database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Superfamily entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3469", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compute the covariance model for (a family of) RNA secondary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA structure covariance model generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2439" + }, + { + "@id": "_:Nea557b0e59534a058c5b210ba1ff7868" + }, + { + "@id": "http://edamontology.org/operation_3429" + } + ] + }, + { + "@id": "_:Nea557b0e59534a058c5b210ba1ff7868", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0097" + } + ] + }, + { + "@id": "http://edamontology.org/format_1425", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Raw data file format used by Phylip from which a phylogenetic tree is directly generated or plotted." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylip tree raw" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2556" + } + ] + }, + { + "@id": "http://edamontology.org/data_1733", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2093" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Reference for a concept from an ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology concept reference" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2302", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the STRING database of protein-protein interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "STRING ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1074" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3453", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The evaluation of diffraction intensities and integration of diffraction maxima from a diffraction experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Diffraction profile fitting" + }, + { + "@value": "Diffraction summation integration" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Diffraction data integration" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3445" + } + ] + }, + { + "@id": "http://edamontology.org/data_1081", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from a database of genotypes and phenotypes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genotype and phenotype annotation ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N1a150a2c025c45a1a4db215c2ee2e222" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N1a150a2c025c45a1a4db215c2ee2e222", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0920" + } + ] + }, + { + "@id": "http://edamontology.org/has_output", + "@type": [ + "http://www.w3.org/2002/07/owl#ObjectProperty" + ], + "http://purl.obolibrary.org/obo/is_anti_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_reflexive": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/transitive_over": [ + { + "@value": "OBO_REL:is_a" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'A has_output B' defines for the subject A, that it has the object B as a necessary or actual output or output argument." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "OBO_REL:has_participant" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#isCyclic": [ + { + "@value": true + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subject A can either be concept that is or has an 'Operation' function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that has an 'Operation' function or is an 'Operation'. Object B can be any concept or entity. In EDAM, only 'has_output' is explicitly defined between EDAM concepts ('Operation' 'has_output' 'Data'). The inverse, 'is_output_of', is not explicitly defined." + } + ], + "http://www.w3.org/2000/01/rdf-schema#domain": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "has output" + } + ], + "http://www.w3.org/2000/01/rdf-schema#range": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.w3.org/2002/07/owl#inverseOf": [ + { + "@id": "http://edamontology.org/is_output_of" + } + ], + "http://www.w3.org/2004/02/skos/core#closeMatch": [ + { + "@id": "http://purl.obolibrary.org/obo/OBI_0000299" + } + ], + "http://www.w3.org/2004/02/skos/core#exactMatch": [ + { + "@id": "http://wsio.org/has_output" + } + ] + }, + { + "@id": "http://edamontology.org/data_2650", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "PA[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a pathway from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (PharmGKB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2649" + }, + { + "@id": "http://edamontology.org/data_2365" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0307", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Perform in-silico (virtual) PCR." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Virtual PCR" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + } + ] + }, + { + "@id": "http://edamontology.org/format_3887", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of CHARMM Residue Topology Files (RTF), which define groups by including the atoms, the properties of the group, and bond and charge information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "There is currently no tool available for conversion between GROMACS topology format and other formats, due to the internal differences in both approaches. There is, however, a method to convert small molecules parameterized with AMBER force-field into GROMACS format, allowing simulations of these systems with GROMACS MD package." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CHARMM rtf" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3879" + }, + { + "@id": "http://edamontology.org/format_2033" + } + ] + }, + { + "@id": "http://edamontology.org/data_1896", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: ASPGD" + }, + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: ASPGDID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for loci from ASPGD (Aspergillus Genome Database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID (ASPGD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1893" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1450", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1448" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Matrix of integer numbers for nucleotide comparison." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleotide comparison matrix (integers)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1722", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0966" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term from Foundational Model of Anatomy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Classifies anatomical entities according to their shared characteristics (genus) and distinguishing characteristics (differentia). Specifies the part-whole and spatial relationships of the entities, morphological transformation of the entities during prenatal development and the postnatal life cycle and principles, rules and definitions according to which classes and relationships in the other three components of FMA are represented." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FMA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0594", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The classification of molecular sequences based on some measure of their similarity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods including sequence motifs, profile and other diagnostic elements which (typically) represent conserved patterns (of residues or properties) in molecular sequences." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3690", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.1093/bioinformatics/btu767" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://ssbd.qbic.riken.jp/bdml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://ssbd.qbic.riken.jp/bdml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Biological Dynamics Markup Language (BDML) is an XML format for quantitative data describing biological dynamics." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BDML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_1471", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1467" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (all atoms)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein chain (all atoms)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2714", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a position-specific scoring matrix from the CDD database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CDD PSSM-ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1115" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1291", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image showing detailed information on matches between protein sequence(s) and InterPro Entries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2969" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InterPro detailed match image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1098", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "(NC|AC|NG|NT|NW|NZ|NM|NR|XM|XR|NP|AP|XP|YP|ZP)_[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of a RefSeq database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "RefSeq ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RefSeq accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2362" + } + ] + }, + { + "@id": "http://edamontology.org/data_1022", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user. Typically an EMBL or Swiss-Prot feature label." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence feature name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A feature label identifies a feature of a sequence database entry. When used with the database name and the entry's primary accession number, it is a unique identifier of that feature." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature label" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2914" + }, + { + "@id": "http://edamontology.org/data_3034" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/format_2203", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a molecular sequence record 'lite', typically molecular sequence and minimal metadata, such as an identifier of the sequence and/or a comment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/format_1919" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence record lite format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3867", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Binary file format to store trajectory information for a 3D structure ." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Trajectory format (binary)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3866" + } + ] + }, + { + "@id": "http://edamontology.org/data_2685", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Loxodonta africana' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Loxodonta africana')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3578", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Proprietary file format for (raw) BeadArray data used by genomewide profiling platforms from Illumina Inc. This format is output directly from the scanner and stores summary intensities for each probe-type on an array." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "IDAT" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N838f9efc9a27462d9f9003d384a81bb3" + }, + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_2058" + } + ] + }, + { + "@id": "_:N838f9efc9a27462d9f9003d384a81bb3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3110" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3338", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Laboratory study of mice, for example, phenotyping, and mutagenesis of mouse cell lines." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Laboratory mouse" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Mouse_clinic" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mouse clinic" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Laboratory_mouse" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3277" + } + ] + }, + { + "@id": "http://edamontology.org/data_1256", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1255" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Comparative data on sequence features such as statistics, intersections (and data on intersections), differences etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence features (comparative)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2054", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for molecular interaction data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Molecular interaction format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N32aebf4d05714e949598b873f5053b27" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N32aebf4d05714e949598b873f5053b27", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0906" + } + ] + }, + { + "@id": "http://edamontology.org/data_1806", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Any name (other than the recommended one) for a gene." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene synonym" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2684", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Homo sapiens' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Homo sapiens')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0244", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse flexibility and motion in protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MD analysis" + }, + { + "@value": "Trajectory analysis" + }, + { + "@value": "Protein Dynamics Analysis" + }, + { + "@value": "CG analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein motion prediction" + }, + { + "@value": "Nucleic Acid Dynamics Analysis" + }, + { + "@value": "Protein flexibility prediction" + }, + { + "@value": "Protein flexibility and motion analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Use this concept for analysis of flexible and rigid residues, local chain deformability, regions undergoing conformational change, molecular vibrations or fluctuational dynamics, domain motions or other large-scale structural transitions in a protein structure." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Simulation analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0250" + } + ] + }, + { + "@id": "http://edamontology.org/topic_4028", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Combined with NGS (Next Generation Sequencing) technologies, single-cell sequencing allows the study of genetic information (DNA, RNA, epigenome...) at a single cell level. It is often used for differential analysis and gene expression profiling." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Single Cell Genomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Single-Cell Sequencing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Single_cell_sequencing" + }, + { + "@id": "https://en.wikipedia.org/wiki/Single-cell_analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3168" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0277", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.24" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2497" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_3928" + }, + { + "@id": "http://edamontology.org/operation_3927" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more biological pathways or networks." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway or network comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1685", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBOSS (EMBASSY) supermatcher error file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS supermatcher error file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2542", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2350" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report on protein features (domain composition)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features (domains) format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/has_identifier", + "@type": [ + "http://www.w3.org/2002/07/owl#ObjectProperty" + ], + "http://purl.obolibrary.org/obo/is_anti_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_reflexive": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/transitive_over": [ + { + "@value": "OBO_REL:is_a" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'A has_identifier B' defines for the subject A, that it has the object B as its identifier." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#isCyclic": [ + { + "@value": "false" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is an 'Identifier', or an entity outside of an ontology that is an 'Identifier' or is in the role of an 'Identifier'. In EDAM, 'has_identifier' is not explicitly defined between EDAM concepts, only the inverse 'is_identifier_of'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#domain": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "has identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#range": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.w3.org/2002/07/owl#inverseOf": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3371", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The use of chemistry to create new compounds." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Synthetic_chemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Synthetic organic chemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Synthetic chemistry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Chemical_synthesis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3314" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1814", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:EchoPDB" + }, + { + "@value": "WHATIF:DownloadPDB" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Query a tertiary structure data resource (typically a database) and retrieve structures, structure-related data and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes direct retrieval methods but not those that perform calculations on the sequence or structure." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure retrieval" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1809", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:BacMapGeneCard" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report on the DNA and protein sequences for a given gene label from a bacterial chromosome maps from the BacMap database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BacMap gene card format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3302", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The biology of parasites." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Parasitology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Parasitology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Parasitology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3344" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3305", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.3.1 Epidemiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Topic concerning the the patterns, cause, and effect of disease within populations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Public_health_and_epidemiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Epidemiology" + }, + { + "@value": "Public health" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Public health and epidemiology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Public_health" + }, + { + "@id": "https://en.wikipedia.org/wiki/Epidemiology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/format_3477", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of the cytoscape input file of gene expression ratios or values are specified over one or more experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cytoscape input file format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2058" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_2055", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for sequence assembly data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence assembly format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N255266fe989746d9b612088884b42429" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N255266fe989746d9b612088884b42429", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0925" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2470", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Retrieve information on a protein family." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (protein family annotation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2612", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9A-Za-z]+:[0-9]+:[0-9]{1,5}(\\.[0-9])?" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a sequence cluster from the CluSTr database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CluSTr ID" + }, + { + "@value": "CluSTr cluster ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster ID (CluSTr)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1112" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2499", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict, analyse, characterize or model splice sites, splicing events and so on, typically by comparing multiple nucleic acid sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Splicing model analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Splicing analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2426" + }, + { + "@id": "_:N757abc4afd1148a6bc07a6719ef47a4f" + }, + { + "@id": "http://edamontology.org/operation_2454" + }, + { + "@id": "http://edamontology.org/operation_2423" + } + ] + }, + { + "@id": "_:N757abc4afd1148a6bc07a6719ef47a4f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0114" + } + ] + }, + { + "@id": "http://edamontology.org/format_1640", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the ArrayExpress microarrays database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ArrayExpress entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2534", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An attribute of a molecular sequence, possibly in reference to some other sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Sequence parameter" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence attribute" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3448", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of matter by studying the diffraction pattern from firing neutrons at a sample, typically to determine atomic and/or magnetic structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Neutron diffraction experiment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Neutron_diffraction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Neutron microscopy" + }, + { + "@value": "Elastic neutron scattering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Neutron diffraction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Neutron_diffraction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_1317" + }, + { + "@id": "http://edamontology.org/topic_3382" + } + ] + }, + { + "@id": "http://edamontology.org/data_2767", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Basic information concerning an identifier of data (typically including the identifier itself). For example, a gene symbol with information concerning its provenance." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Identifier with metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3611", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://en.wikipedia.org/wiki/Phred_quality_score" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTQ format subset for Phred sequencing quality score data only (no sequences) from 454 sequencers." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "qual454" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3607" + } + ] + }, + { + "@id": "http://edamontology.org/data_2165", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A plot of pK versus pH for a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein ionisation curve" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2884" + }, + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/data_1688", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBOSS vectorstrip log file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS vectorstrip log file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0336", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Test and validate the format and content of a data file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "File format validation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Format validation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2428" + } + ] + }, + { + "@id": "http://edamontology.org/data_2769", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a RNA transcript." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcript ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2901" + }, + { + "@id": "http://edamontology.org/data_2119" + }, + { + "@id": "_:Neb9e2eacb8724abe813a3d2504614b1f" + } + ] + }, + { + "@id": "_:Neb9e2eacb8724abe813a3d2504614b1f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1276" + } + ] + }, + { + "@id": "http://edamontology.org/data_2866", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Northern Blot experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Northern blot report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3613", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://galaxy.readthedocs.org/en/latest/lib/galaxy.datatypes.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://galaxy.readthedocs.org/en/latest/lib/galaxy.datatypes.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Human ENCODE narrow peak format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Format that covers both the broad peak format and narrow peak format from ENCODE." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ENCODE narrow peak format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3612" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3705", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Chemical tagging free amino groups of intact proteins with stable isotopes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ICPL" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Isotope-coded protein label" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3635" + } + ] + }, + { + "@id": "http://edamontology.org/format_3783", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.1093/database/bas041" + }, + { + "@id": "http://doi.org/10.1093/nar/gkt441" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.ncbi.nlm.nih.gov/CBBresearch/Lu/Demo/PubTator/tutorial/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "https://www.ncbi.nlm.nih.gov/CBBresearch/Lu/Demo/PubTator/tutorial/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Native textual export format of annotated scientific text from PubTator." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PubTator format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3780" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0405", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate hydrophobic or hydrophilic / charged regions of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein hydrophobic region calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2574" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3522", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Northern Blot experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3520" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Northern blot experiment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/has_input", + "@type": [ + "http://www.w3.org/2002/07/owl#ObjectProperty" + ], + "http://purl.obolibrary.org/obo/is_anti_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_reflexive": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/transitive_over": [ + { + "@value": "OBO_REL:is_a" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'A has_input B' defines for the subject A, that it has the object B as a necessary or actual input or input argument." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "OBO_REL:has_participant" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#isCyclic": [ + { + "@value": true + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subject A can either be concept that is or has an 'Operation' function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that has an 'Operation' function or is an 'Operation'. Object B can be any concept or entity. In EDAM, only 'has_input' is explicitly defined between EDAM concepts ('Operation' 'has_input' 'Data'). The inverse, 'is_input_of', is not explicitly defined." + } + ], + "http://www.w3.org/2000/01/rdf-schema#domain": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "has input" + } + ], + "http://www.w3.org/2000/01/rdf-schema#range": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.w3.org/2002/07/owl#inverseOf": [ + { + "@id": "http://edamontology.org/is_input_of" + } + ], + "http://www.w3.org/2004/02/skos/core#closeMatch": [ + { + "@id": "http://purl.obolibrary.org/obo/OBI_0000293" + } + ], + "http://www.w3.org/2004/02/skos/core#exactMatch": [ + { + "@id": "http://wsio.org/has_input" + } + ] + }, + { + "@id": "http://edamontology.org/format_3491", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "https://github.com/BenLangmead/bowtie/blob/master/MANUAL" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Bowtie format for indexed reference genome for \"large\" genomes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Bowtie long index format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ebwtl" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3326" + }, + { + "@id": "_:N328f6694c8c64abeac6ec5d804da24e3" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "_:N328f6694c8c64abeac6ec5d804da24e3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3210" + } + ] + }, + { + "@id": "http://edamontology.org/format_4039", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://bioconductor.org/packages/release/bioc/vignettes/MsBackendMsp/inst/doc/MsBackendMsp.html" + }, + { + "@id": "https://chemdata.nist.gov/mass-spc/ms-search/docs/Ver20Man_11.pdf" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "msp" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "MSP is a data format for mass spectrometry data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "NIST Text file format for storing MS∕MS spectra (m∕z and intensity of mass peaks) along with additional annotations for each spectrum. A single MSP file can thus contain single or multiple spectra. This format is frequently used to share spectra libraries." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MSP" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/data_1155", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "REACT_[0-9]+(\\.[0-9]+)?" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the Reactome database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Reactome ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (reactome)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2365" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0153", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Lipids and their structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Lipidomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Lipids" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Lipids" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Lipid" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ] + }, + { + "@id": "http://edamontology.org/data_0901", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "structural domains or 3D folds in a protein or polypeptide chain." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features report (domains)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3640", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Quantification analysis using labeling based on 18O-enriched H2O." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "18O labeling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3635" + } + ] + }, + { + "@id": "http://edamontology.org/data_3116", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation on laboratory and/or data processing protocols used in an microarray experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This might describe e.g. the normalisation methods used to process the raw data." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microarray protocol annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "_:N806467e786e64249b5040b6bec2b3972", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "In very unusual cases." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#isCyclic" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/is_topic_of" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0331", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict the effect of point mutation on a protein structure, in terms of strucural effects and protein folding, stability and function." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Variant functional prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein mutation modelling" + }, + { + "@value": "Protein stability change prediction" + }, + { + "@value": "Protein SNP mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Protein SNP mapping maps and modesl the effects of single nucleotide polymorphisms (SNPs) on protein structure(s). Methods might predict silent or pathological mutations." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Variant effect prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2423" + }, + { + "@id": "_:Ne919243d4fc646d0851118b8dc7e1bfe" + }, + { + "@id": "_:N2cbefe6298174f33ae156015c697c87e" + } + ] + }, + { + "@id": "_:Ne919243d4fc646d0851118b8dc7e1bfe", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0199" + } + ] + }, + { + "@id": "_:N2cbefe6298174f33ae156015c697c87e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0130" + } + ] + }, + { + "@id": "http://edamontology.org/data_2315", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier assigned to sequence records processed by NCBI, made of the accession number of the database record followed by a dot and a version number." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "accession.version" + }, + { + "@value": "NCBI accession.version" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Nucleotide sequence version contains two letters followed by six digits, a dot, and a version number (or for older nucleotide sequence records, the format is one letter followed by five digits, a dot, and a version number). Protein sequence version contains three letters followed by five digits, a dot, and a version number." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NCBI version" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2362" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2878", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a protein (3D) structural motif; any group of contiguous or non-contiguous amino acid residues but typically those forming a feature with a structural or functional role." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structural motif" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1460" + } + ] + }, + { + "@id": "http://edamontology.org/data_1358", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1353" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A nucleotide regular expression pattern from the Prosite database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Prosite nucleotide pattern" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3595", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.coolutils.com/Formats/PCX" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PCX is an image file format that uses a simple form of run-length encoding. It is lossless." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pcx" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_2651", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "PA[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a disease from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Disease ID (PharmGKB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2649" + }, + { + "@id": "http://edamontology.org/data_1150" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/obsolete", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty" + } + ] + }, + { + "@id": "http://edamontology.org/data_2611", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[A-Z][0-9]+(\\.[-[0-9]+])?" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a disease from the International Classification of Diseases (ICD) database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ICD identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "_:N2f99c69deeeb472a85ce32452a026bdc" + }, + { + "@id": "http://edamontology.org/data_1150" + } + ] + }, + { + "@id": "_:N2f99c69deeeb472a85ce32452a026bdc", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1622" + } + ] + }, + { + "@id": "http://edamontology.org/format_1910", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylogenetic tree Newick (text) format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "nh" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "newick" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2556" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0133", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Two-dimensional gel electrophoresis image and related data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Two-dimensional gel electrophoresis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3548", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://dicom.nema.org/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Medical image format corresponding to the Digital Imaging and Communications in Medicine (DICOM) standard." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DICOM format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2426", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Model or simulate some biological entity or system, typically using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Mathematical modelling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Modelling and simulation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nc5698417af7b45b68b9496c00bbe134b" + }, + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "_:Nc5698417af7b45b68b9496c00bbe134b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2275" + } + ] + }, + { + "@id": "http://edamontology.org/data_2169", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on siRNA duplexes in mRNA." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid features (siRNA)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2968", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data (typically biological or biomedical) that has been rendered into an image, typically for display on screen." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Image data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://semanticscience.org/resource/SIO_000079" + }, + { + "@value": "http://semanticscience.org/resource/SIO_000081" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0473", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Not sustainable to have protein type-specific concepts." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0270" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse G-protein coupled receptor proteins (GPCRs)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0270" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GPCR analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2798", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an EST sequence from the MaizeDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MaizeDB ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2728" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1589", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DNA base pair twist angle data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA base pair twist angle data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2088" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2277", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_2885" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SNP" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2297", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: ECK" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an E. coli K-12 gene from EcoGene Database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "E. coli K-12 gene identifier" + }, + { + "@value": "ECK accession" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (ECK)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1795" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2246", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An operation performing purely illustrative (pedagogical) purposes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Demonstration" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0855", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2955" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Basic or general information concerning molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is used for such things as a report including the sequence identifier, type and length." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1144", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[AEP]-[a-zA-Z_0-9]{4}-[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry from the ArrayExpress database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ArrayExpress experiment ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ArrayExpress accession number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1078" + } + ] + }, + { + "@id": "http://edamontology.org/data_3719", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information about the biosafety classification of an organism according to corresponding law." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biosafety level" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biosafety classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3716" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3348", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a checksum of a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence checksum generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3429" + }, + { + "@id": "_:N0d8c87bb0f554d169e63b7e81b2044c7" + }, + { + "@id": "_:Na04e7f72587e4f4f8e25c1307a45bf5e" + } + ] + }, + { + "@id": "_:N0d8c87bb0f554d169e63b7e81b2044c7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3077" + } + ] + }, + { + "@id": "_:Na04e7f72587e4f4f8e25c1307a45bf5e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2044" + } + ] + }, + { + "@id": "http://edamontology.org/data_2633", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a book." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Book ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/format_3615", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.htslib.org/doc/tabix.html" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "bgz" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Blocked GNU Zip format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "BAM files are compressed using a variant of GZIP (GNU ZIP), into a format called BGZF (Blocked GNU Zip Format)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "bgzip" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_3547" + } + ] + }, + { + "@id": "http://edamontology.org/data_1039", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a protein domain (or other node) from the SCOP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SCOP domain identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1038" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0315", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Comparison of expression profiles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Gene expression profile comparison" + }, + { + "@value": "Gene expression comparison" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Expression profile comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0431", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Find and identify restriction enzyme cleavage sites (restriction sites) in (typically) DNA sequences, for example to generate a restriction map." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Restriction site recognition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "http://edamontology.org/operation_0575" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0415" + }, + { + "@id": "_:Nabbc9dc739094192a96d6393e3e6206e" + } + ] + }, + { + "@id": "_:Nabbc9dc739094192a96d6393e3e6206e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "http://edamontology.org/data_2249", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A DTD (document type definition)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DTD" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2105", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a compound from the BioCyc chemical compounds database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "BioCyc compound identifier" + }, + { + "@value": "BioCyc compound ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Compound ID (BioCyc)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2894" + }, + { + "@id": "http://edamontology.org/data_2104" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3950", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The detection of genetic selection, or (the end result of) the process by which certain traits become more prevalent in a species than other traits." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Selection detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + } + ] + }, + { + "@id": "http://edamontology.org/topic_4016", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The monitoring method for measuring electrical activity in the heart." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "EKG" + }, + { + "@value": "ECG" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Electrocardiography" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Electrocardiography" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3382" + }, + { + "@id": "http://edamontology.org/topic_3300" + } + ] + }, + { + "@id": "http://edamontology.org/data_1441", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2523" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on the confidence of a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree report (tree evaluation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3695", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Filter a set of files or data items according to some property." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "rRNA filtering" + }, + { + "@value": "Sequence filtering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Filtering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0341", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0253" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Screen a sequence against a motif or pattern database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Motif database search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2840", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.1.9 Toxicology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Toxins and the adverse effects of these chemical substances on living organisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Toxicology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Toxicoinformatics" + }, + { + "@value": "Computational toxicology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Toxicology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Toxicology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3377" + }, + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_3022", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/example": [ + { + "@value": "16" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[1-9][0-9]?" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a genetic code in the NCBI list of genetic codes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NCBI genetic code ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2127" + } + ] + }, + { + "@id": "http://edamontology.org/format_3244", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://psidev.info/mzml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://psidev.info/mzml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "mzML format for raw spectrometer output data, standardised by HUPO PSI MSS." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "mzML is the successor and unifier of the mzData format developed by PSI and mzXML developed at the Seattle Proteome Center." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mzML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_2586", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An image arising from a Northern Blot experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Northern blot image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3424" + } + ] + }, + { + "@id": "http://edamontology.org/data_1472", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1467" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (typically C-alpha atoms only)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "C-beta atoms from amino acid side-chains may be included." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein chain (C-alpha atoms)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2713", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier for a protein complex from the CORUM database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CORUM complex ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein ID (CORUM)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + } + ] + }, + { + "@id": "http://edamontology.org/data_2956", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning the properties or features of one or more protein secondary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/data_0938", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Nuclear magnetic resonance (NMR) raw data, typically for a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein NMR data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Raw NMR data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2537" + } + ] + }, + { + "@id": "http://edamontology.org/is_identifier_of", + "@type": [ + "http://www.w3.org/2002/07/owl#ObjectProperty" + ], + "http://purl.obolibrary.org/obo/is_anti_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_reflexive": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/transitive_over": [ + { + "@value": "OBO_REL:is_a" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'A is_identifier_of B' defines for the subject A, that it is an identifier of the object B." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#isCyclic": [ + { + "@value": "false" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subject A can either be a concept that is an 'Identifier', or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is an 'Identifier' or is in the role of an 'Identifier'. Object B can be any concept or entity outside of an ontology. In EDAM, only 'is_identifier_of' is explicitly defined between EDAM concepts (only 'Identifier' 'is_identifier_of' 'Data'). The inverse, 'has_identifier', is not explicitly defined." + } + ], + "http://www.w3.org/2000/01/rdf-schema#domain": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "is identifier of" + } + ], + "http://www.w3.org/2000/01/rdf-schema#range": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/data_2856", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Distances (values representing similarity) between a group of molecular structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural distance matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2855" + } + ] + }, + { + "@id": "http://edamontology.org/format_1582", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report format for the kinetics of enzyme-catalysed reaction(s) in a format generated by EMBOSS findkm. This includes Michaelis Menten plot, Hanes Woolf plot, Michaelis Menten constant (Km) and maximum velocity (Vmax)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "findkm" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2027" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3397", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Topic concerning the branch of medicine that deals with the prevention, diagnosis, and treatment of disease, disorder and injury in animals." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Veterinary_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Clinical veterinary medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Veterinary medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Veterinary_medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/format_1974", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.sanger.ac.uk/resources/software/gff/spec.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.sanger.ac.uk/resources/software/gff/spec.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "General Feature Format (GFF) of sequence features." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GFF2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2305" + } + ] + }, + { + "@id": "http://edamontology.org/format_2062", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report of general information about a specific protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N53cc3ab8756e474ebf1cc7a875516a40" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N53cc3ab8756e474ebf1cc7a875516a40", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0896" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0340", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a secondary protein database (of classification information) to assign a protein sequence(s) to a known protein family or group." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3092" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary database search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1952", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PDB nucleotide sequence format (SEQRES lines)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "pdbnucseq format in EMBOSS." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pdbseqresnuc" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_1475" + } + ] + }, + { + "@id": "http://edamontology.org/format_3726", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://dmg.org/pmml/v4-2-1/GeneralStructure.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PMML uses XML to represent mining models. The structure of the models is described by an XML Schema." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "One or more mining models can be contained in a PMML document." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PMML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_2965", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a two-dimensional (2D PAGE) gel." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "2D PAGE gel report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1693", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Number of iterations of an algorithm." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Number of iterations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1316", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report on exon-intron structure generated by EMBOSS est2genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "est2genome format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2031" + } + ] + }, + { + "@id": "http://edamontology.org/format_3327", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://samtools.sourceforge.net/SAMv1.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BAM indexing format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BAI" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3326" + }, + { + "@id": "_:Nab4ee6d1f2834c5a95b3a86a2602998d" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "_:Nab4ee6d1f2834c5a95b3a86a2602998d", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0955" + } + ] + }, + { + "@id": "http://edamontology.org/format_1977", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1963" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Swiss-Prot feature format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "swiss feature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1678", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3106" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report of tool-specific metadata on some analysis or process performed, for example a log of diagnostic or error messages." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tool log" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2415", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse, simulate or predict protein folding, typically by processing sequence and / or structural data. For example, predict sites of nucleation or stabilisation key to protein folding." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein folding modelling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein folding simulation" + }, + { + "@value": "Protein folding site prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein folding analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N5396c35bac5040429e8802d4933651ab" + }, + { + "@id": "http://edamontology.org/operation_2406" + }, + { + "@id": "_:N70891259b91b4073a3b96dc11fe5f38b" + }, + { + "@id": "http://edamontology.org/operation_2426" + } + ] + }, + { + "@id": "_:N5396c35bac5040429e8802d4933651ab", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0130" + } + ] + }, + { + "@id": "_:N70891259b91b4073a3b96dc11fe5f38b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1537" + } + ] + }, + { + "@id": "http://edamontology.org/format_2052", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for reports on a protein family." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein family report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Naa33b410b88b4a6f9160c1bb4f68f67e" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Naa33b410b88b4a6f9160c1bb4f68f67e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0907" + } + ] + }, + { + "@id": "http://edamontology.org/data_1520", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report on the hydrophobic moment of a polypeptide sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptide hydrophobic moment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2970" + } + ] + }, + { + "@id": "http://edamontology.org/data_2024", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning chemical reaction(s) catalysed by enzyme(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enzyme kinetics data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + }, + { + "@id": "http://edamontology.org/data_2978" + } + ] + }, + { + "@id": "http://edamontology.org/data_0902", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1537" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on architecture (spatial arrangement of secondary structure) of a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein architecture report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "_:N869b435e7390473b94d91f80fdc1b18f", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:quality_of' might be seen narrower in the sense that it only relates subjects that are a 'quality' (snap:Quality) with objects that are an 'independent_continuant' (snap:IndependentContinuant), and is broader in the sense that it relates any qualities of the object." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "OBO_REL:quality_of" + } + ] + }, + { + "@id": "http://edamontology.org/data_2743", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of an entry (gene) from the HUGO database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (HUGO)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1645", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from the Electron Microscopy DataBase (EMDB)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMDB entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2092", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "single nucleotide polymorphism (SNP) in a DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SNP" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0268", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict super-secondary structure of protein sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein super-secondary structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0267" + }, + { + "@id": "_:Ne3435459b81443b682e791ffdbe6d0d7" + } + ] + }, + { + "@id": "_:Ne3435459b81443b682e791ffdbe6d0d7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1277" + } + ] + }, + { + "@id": "http://edamontology.org/format_3748", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.4018/jswis.2009081901" + }, + { + "@id": "https://www.w3.org/DesignIssues/LinkedData.html" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A linked data format enables publishing structured data as linked data (Linked Data), so that the data can be interlinked and become more useful through semantic queries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "Semantic Web format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Linked data format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Linked_data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2123", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2480" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) physicochemical property data for small molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Small molecule data processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2396", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2530" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a specific fungus anamorph." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Fungi annotation (anamorph)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0769", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Biological or biomedical analytical workflows or pipelines." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Pipelines" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Workflows" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Software integration" + }, + { + "@value": "Tool integration" + }, + { + "@value": "Tool interoperability" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Workflows" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Workflow" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3071" + } + ] + }, + { + "@id": "http://edamontology.org/data_2595", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a taxon using the controlled vocabulary of the UTRdb database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UTRdb taxon" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1868" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2929", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the molecular weight of a protein (or fragments) and compare it to another protein or reference data. Generally used for protein identification." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PMF" + }, + { + "@value": "Protein fingerprinting" + }, + { + "@value": "Peptide mass fingerprinting" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein fragment weight comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0398" + }, + { + "@id": "http://edamontology.org/operation_2930" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0137", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0123" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of the hydrophobic, hydrophilic and charge properties of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein hydropathy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3749", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.w3.org/TR/json-ld" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "jsonld" + } + ], + "http://edamontology.org/media_type": [ + { + "@id": "http://www.iana.org/assignments/media-types/application/ld+json" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.iana.org/assignments/media-types/application/ld+json" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "JSON-LD, or JavaScript Object Notation for Linked Data, is a method of encoding Linked Data using JSON." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "jsonld" + }, + { + "@value": "JavaScript Object Notation for Linked Data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "JSON-LD" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/JSON-LD" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2376" + }, + { + "@id": "http://edamontology.org/format_3748" + }, + { + "@id": "http://edamontology.org/format_3464" + } + ] + }, + { + "@id": "http://edamontology.org/format_1581", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the FSSP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FSSP entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2289", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1097" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of nucleotide sequence(s) or nucleotide sequence database entries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence identifier (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1925", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Codata entry format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "codata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_0980", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name or other identifier of a collection of discrete biological entities." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Entity collection identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2114", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "CE[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein identifier used by WormBase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "WormBase wormpep ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + }, + { + "@id": "http://edamontology.org/data_2113" + } + ] + }, + { + "@id": "http://edamontology.org/format_2188", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "UniProt entry sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/format_1963" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniProt format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1387", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1381" + }, + { + "@id": "http://edamontology.org/data_1384" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of exactly two protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment (protein pair)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3393", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The processes that need to be in place to ensure the quality of products for human or animal use." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Quality assurance" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Quality_affairs" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Good clinical practice" + }, + { + "@value": "Good laboratory practice" + }, + { + "@value": "Good manufacturing practice" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Quality affairs" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3376" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0478", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Model the structure of a protein in complex with a small molecule or another macromolecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Docking simulation" + }, + { + "@value": "Macromolecular docking" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes protein-protein interactions, protein-nucleic acid, protein-ligand binding etc. Methods might predict whether the molecules are likely to bind in vivo, their conformation when bound, the strength of the interaction, possible mutations to achieve bonding and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular docking" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Docking_(molecular)" + }, + { + "@id": "https://en.wikipedia.org/wiki/Macromolecular_docking" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ncb8d29c6b35c460dbc60ddb7a556fc90" + }, + { + "@id": "http://edamontology.org/operation_1777" + }, + { + "@id": "http://edamontology.org/operation_2480" + }, + { + "@id": "_:N8d50161a83e544d7bd4a50a3d42df94e" + } + ] + }, + { + "@id": "_:Ncb8d29c6b35c460dbc60ddb7a556fc90", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2877" + } + ] + }, + { + "@id": "_:N8d50161a83e544d7bd4a50a3d42df94e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1461" + } + ] + }, + { + "@id": "http://edamontology.org/data_3112", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The final processed (normalised) data for a set of hybridisations in a microarray experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene expression data matrix" + }, + { + "@value": "Normalised microarray data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This combines data from all hybridisations." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene expression matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + }, + { + "@id": "http://edamontology.org/data_2603" + } + ] + }, + { + "@id": "http://edamontology.org/data_2637", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier for pathways, reactions, complexes and small molecules from the cPath (Pathway Commons) database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "These identifiers are unique within the cPath database, however, they are not stable between releases." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "cPath ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2365" + }, + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1138", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "PF[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of a Pfam entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pfam accession number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2910" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3187", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify and filter a (typically large) sequence data set to remove sequences from contaminants in the sample that was sequenced." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence contamination filtering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3218" + } + ] + }, + { + "@id": "http://edamontology.org/format_1736", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "CiteXplore 'core' citation format including title, journal, authors and abstract." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CiteXplore-core" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2848" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3686", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.1186/s12859-014-0369-z" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://co.mbine.org/documents/archive" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://co.mbine.org/documents/archive" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Open Modeling EXchange format (OMEX) is a ZIPped format for encapsulating all information necessary for a modeling and simulation project in systems biology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "An OMEX file is a ZIP container that includes a manifest file, listing the content of the archive, an optional metadata file adding information about the archive and its content, and the files describing the model. OMEX is one of the standardised formats within COMBINE (Computational Modeling in Biology Network)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "COMBINE OMEX" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3167" + }, + { + "@id": "http://edamontology.org/format_2013" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3741", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Differential protein analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The analysis, using proteomics techniques, to identify proteins whose encoding genes are differentially expressed under a given experimental setup." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Differential protein expression analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Differential protein expression profiling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0314" + }, + { + "@id": "http://edamontology.org/operation_2997" + } + ] + }, + { + "@id": "http://edamontology.org/data_2648", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a biological reaction (kinetics entry) from the SABIO-RK reactions database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reaction kinetics ID (SABIO-RK)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2309" + } + ] + }, + { + "@id": "http://edamontology.org/data_1556", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a protein 'class' node from the CATH database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH class" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1199", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The InChIKey (hashed InChI) is a fixed length (25 character) condensed digital representation of an InChI chemical structure specification. It uniquely identifies a chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "An InChIKey identifier is not human- nor machine-readable but is more suitable for web searches than an InChI chemical structure specification." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InChIKey" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2035" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3607", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://en.wikipedia.org/wiki/Phred_quality_score" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTQ format subset for Phred sequencing quality score data only (no sequences)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Phred quality scores are defined as a property which is logarithmically related to the base-calling error probabilities." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "qual" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3606" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2182" + } + ] + }, + { + "@id": "http://edamontology.org/format_3775", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://dx.doi.org/10.1101/067561" + }, + { + "@id": "http://doi.org/10.7490/f1000research.1112716.1" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://hyperbrowser.uio.no/gsuite/static/hyperbrowser/gsuite/GSuite_specification.txt" + }, + { + "@id": "https://hyperbrowser.uio.no/gsuite/static/hyperbrowser/gsuite/GSuite_specification.html" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://github.com/gtrack/gtrack/tree/master/gsuite/examples" + } + ], + "http://edamontology.org/repository": [ + { + "@id": "https://github.com/gtrack/gtrack" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "https://hyperbrowser.uio.no/gsuite/static/hyperbrowser/gsuite/GSuite_specification.html" + }, + { + "@id": "https://hyperbrowser.uio.no/gsuite/static/hyperbrowser/gsuite/GSuite_specification.txt" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GSuite is a tabular format for collections of genome or sequence feature tracks, suitable for integrative multi-track analysis. GSuite contains links to genome/sequence tracks, with additional metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GTrack|BTrack|GSuite GSuite" + }, + { + "@value": "GSuite (GTrack ecosystem of formats)" + }, + { + "@value": "BioXSD/GTrack GSuite" + }, + { + "@value": "GSuite format" + }, + { + "@value": "GTrack|GSuite|BTrack GSuite" + }, + { + "@value": "BioXSD|GTrack GSuite" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "'GSuite' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'GSuite' is the tabular format for an annotated collection of individual GTrack files." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GSuite" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://hyperbrowser.uio.no/gsuite" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1920" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2162", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An image of peptide sequence sequence looking down the axis of the helix for highlighting amphipathicity and other properties." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Helical wheel" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1709" + } + ] + }, + { + "@id": "http://edamontology.org/data_2854", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A simple matrix of numbers, where each value (or column of values) is derived derived from analysis of the corresponding position in a sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PSSM" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Position-specific scoring matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1354" + }, + { + "@id": "http://edamontology.org/data_2082" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3345", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Topic concerning the identity of biological entities, or reports on such entities, and the mapping of entities and records in different databases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Data_identity_and_mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data identity and mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3071" + } + ] + }, + { + "@id": "http://edamontology.org/data_1340", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0857" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on the evaluation of the significance of sequence similarity scores from a sequence database search (for example a BLAST search)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database hits evaluation data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1030", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1027" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An Entrez unique identifier of a gene." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene identifier (Entrez)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3647", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Peptide database search for identification of known and unknown PTMs looking for mass difference mismatches." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Modification-tolerant peptide database search" + }, + { + "@value": "Unrestricted peptide database search" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Blind peptide database search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3646" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0514", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0299" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0295" + }, + { + "@id": "http://edamontology.org/operation_0504" + }, + { + "@id": "http://edamontology.org/operation_0294" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align two or more molecular 3D profiles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural profile alignment generation (multiple)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0240", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Find motifs shared by molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nb26f380fc12a4bcca13a1a6aef7d3ecf" + }, + { + "@id": "http://edamontology.org/operation_2404" + }, + { + "@id": "http://edamontology.org/operation_2451" + }, + { + "@id": "_:N7fb14850444240ff94667c194ad3918f" + } + ] + }, + { + "@id": "_:Nb26f380fc12a4bcca13a1a6aef7d3ecf", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "_:N7fb14850444240ff94667c194ad3918f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0858" + } + ] + }, + { + "@id": "http://edamontology.org/data_2050", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "General data for a molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "General molecular property" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular property (general)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2087" + } + ] + }, + { + "@id": "http://edamontology.org/data_2026", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A plot based on the Michaelis Menten equation of enzyme kinetics plotting the ratio of the initial substrate concentration (S) against the reaction velocity (v)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hanes Woolf plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2024" + } + ] + }, + { + "@id": "http://edamontology.org/format_1991", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mega format for (typically aligned) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mega" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2923" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1778", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare the functional properties of two or more proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein function comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2997" + }, + { + "@id": "_:N02067db339eb4aca9d178f7ebe1df40c" + }, + { + "@id": "http://edamontology.org/operation_1777" + } + ] + }, + { + "@id": "_:N02067db339eb4aca9d178f7ebe1df40c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1775" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0377", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate base frequency or word composition of a nucleotide sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0236" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence composition calculation (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3450", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Measurement of neurites; projections (axons or dendrites) from the cell body of a neuron, from analysis of neuron images." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Neurite measurement" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N2c93f92fe6a048a0a8a723a42512c041" + }, + { + "@id": "http://edamontology.org/operation_3443" + } + ] + }, + { + "@id": "_:N2c93f92fe6a048a0a8a723a42512c041", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2229" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0323", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construct a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic reconstruction" + }, + { + "@value": "Phlyogenetic tree construction" + }, + { + "@value": "Phylogenetic tree generation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Phylogenetic trees are usually constructed from a set of sequences from which an alignment (or data matrix) is calculated." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic inference" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Computational_phylogenetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0324" + }, + { + "@id": "http://edamontology.org/operation_3429" + }, + { + "@id": "_:N6aa966a3aa0943dfb7d730abb37aedeb" + }, + { + "@id": "_:N7cd391a4562b48edb3e234edbd42c0b1" + } + ] + }, + { + "@id": "_:N6aa966a3aa0943dfb7d730abb37aedeb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0872" + } + ] + }, + { + "@id": "_:N7cd391a4562b48edb3e234edbd42c0b1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ] + }, + { + "@id": "http://edamontology.org/format_1631", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://media.affymetrix.com/support/developer/powertools/changelog/gcos-agcc/exp.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence assembly project file EXP format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Affymetrix EXP format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EXP" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2561" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2741", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (promoter) from the ABS database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ABS identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ABS ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2727" + } + ] + }, + { + "@id": "http://edamontology.org/format_1648", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the MetaCyc metabolic pathways database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MetaCyc entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1259", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on sequence complexity, for example low-complexity or repeat regions in sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence property (complexity)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence complexity report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1254" + } + ] + }, + { + "@id": "http://edamontology.org/data_2358", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0906" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on protein domain-DNA/RNA interaction(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Domain-nucleic acid interaction report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2591", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the Brite database of biological hierarchies." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Brite hierarchy ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2891" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0410", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict crystallizability of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein crystallizability prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N114465b21f404b038eafab6fd77f5d1b" + }, + { + "@id": "http://edamontology.org/operation_2574" + } + ] + }, + { + "@id": "_:N114465b21f404b038eafab6fd77f5d1b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1525" + } + ] + }, + { + "@id": "http://edamontology.org/data_1096", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of a protein sequence database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein sequence accession number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence accession (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nd40aa93d4b5942e3ae772b619d7616cd" + }, + { + "@id": "http://edamontology.org/data_1093" + } + ] + }, + { + "@id": "_:Nd40aa93d4b5942e3ae772b619d7616cd", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2976" + } + ] + }, + { + "@id": "http://edamontology.org/data_0903", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on an analysis or model of protein folding properties, folding pathways, residues or sites that are key to protein folding, nucleation or stabilisation centers etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1537" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein folding report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2516", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise, format or render a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0564" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Various protein sequence analysis methods might generate a sequence rendering but are not (for brevity) listed under here." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3130", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0858" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif matches (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0577", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0573" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Draw a linear maps of DNA." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA linear map rendering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2722", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "disordered structure in a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features report (disordered structure)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1363", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A profile (typically representing a sequence alignment) derived from a matrix of nucleotide (or amino acid) counts per position that reflects information content at each position." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ICM" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Information content matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2854" + } + ] + }, + { + "@id": "http://edamontology.org/format_1617", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of the WormBase genomes database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "WormBase gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1563", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of SMART domain assignment data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The SMART output file includes data on genetically mobile domains / analysis of domain architectures, including phyletic distributions, functional class, tertiary structures and functionally important residues." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SMART domain assignment report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2241", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise transmembrane proteins, typically the transmembrane regions within a sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Transmembrane protein rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transmembrane protein visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0270" + }, + { + "@id": "_:N45e5de79e5e041a19c7ca27194a57a10" + }, + { + "@id": "http://edamontology.org/operation_0570" + } + ] + }, + { + "@id": "_:N45e5de79e5e041a19c7ca27194a57a10", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2992" + } + ] + }, + { + "@id": "http://edamontology.org/format_1994", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1949" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Nexus/paup format for (aligned) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "nexus alignment format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3073", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_3511" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The detection of positional features such as functional sites in nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid feature detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/data_1567", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "protein-DNA/RNA interaction(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0906" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-nucleic acid interactions report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2388", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an Arabidopsis thaliana gene from the TAIR database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TAIR accession (At gene)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1037" + } + ] + }, + { + "@id": "http://edamontology.org/data_2882", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DNA sequence-specific feature annotation (not in a feature table)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA features" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2779", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of stock from a catalogue of biological resources." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Stock number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/data_2150", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1115" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a sequence profile." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence profile name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1747", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1476" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an ATOM record (describing data for an individual atom) from a PDB file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PDB atom record format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3168", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The determination of complete (typically nucleotide) sequences, including those of genomes (full genome sequencing, de novo sequencing and resequencing), amplicons and transcriptomes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "DNA-Seq" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Sequencing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Targeted next-generation sequencing panels" + }, + { + "@value": "High throughput sequencing" + }, + { + "@value": "DNase-Seq" + }, + { + "@value": "NGS data analysis" + }, + { + "@value": "Next gen sequencing" + }, + { + "@value": "Next generation sequencing" + }, + { + "@value": "Primer walking" + }, + { + "@value": "High-throughput sequencing" + }, + { + "@value": "Chromosome walking" + }, + { + "@value": "Clone verification" + }, + { + "@value": "NGS" + }, + { + "@value": "Sanger sequencing" + }, + { + "@value": "Panels" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequencing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequencing" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D059014" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3361" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0555", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more phylogenetic trees to produce a consensus tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree construction (consensus)" + }, + { + "@value": "Phylogenetic tree generation (consensus)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods typically test for topological similarity between trees using for example a congruence index." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Consensus tree construction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0325" + }, + { + "@id": "http://edamontology.org/operation_0323" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0526", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence assembly for EST sequences (transcribed mRNA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence assembly (EST assembly)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Assemblers must handle (or be complicated by) alternative splicing, trans-splicing, single-nucleotide polymorphism (SNP), recoding, and post-transcriptional modification." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EST assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequence_assembly#EST_assemblers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0310" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3840", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://purl.obolibrary.org/obo/OBI_0000435" + }, + { + "@id": "http://purl.phyloviz.net/ontology/typon#MLST" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Genotyping of multiple loci, typically characterizing microbial species isolates using internal fragments of multiple housekeeping genes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MLST" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Multilocus sequence typing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Multilocus_sequence_typing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3196" + } + ] + }, + { + "@id": "http://edamontology.org/data_2344", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[a-zA-Z_0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a pathway from the NCI-Nature pathway database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (NCI-Nature)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2365" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/repository", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'Repository' trailing modifier (qualifier, 'repository') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to the public source-code repository where the given data format is developed or maintained." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Public repository" + }, + { + "@value": "Source-code repository" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Repository" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0500", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2928" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align molecular secondary structure (represented as a 1D string)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Secondary structure alignment generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0847", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A QSAR quantitative descriptor (name-value pair) of chemical structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "QSAR descriptors have numeric values that quantify chemical information encoded in a symbolic representation of a molecule. They are used in quantitative structure activity relationship (QSAR) applications. Many subtypes of individual descriptors (not included in EDAM) cover various types of protein properties." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "QSAR descriptor" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2050" + } + ] + }, + { + "@id": "http://edamontology.org/format_3977", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.objtables.org/docs" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://www.objtables.org/docs#examples" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "xlsx" + } + ], + "http://edamontology.org/media_type": [ + { + "@value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "https://www.karrlab.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "ObjTables is a toolkit for creating re-usable datasets that are both human and machine-readable, combining the ease of spreadsheets (e.g., Excel workbooks) with the rigor of schemas (classes, their attributes, the type of each attribute, and the possible relationships between instances of classes). ObjTables consists of a format for describing schemas for spreadsheets, numerous data types for science, a syntax for indicating the class and attribute represented by each table and column in a workbook, and software for using schemas to rigorously validate, merge, split, compare, and revision datasets." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ObjTables" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3620" + } + ] + }, + { + "@id": "http://edamontology.org/data_1242", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0850" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A library of nucleotide sequences to avoid during hybridisation events. Hybridisation of the internal oligo to sequences in this library is avoided, rather than priming from them. The file is in a restricted FASTA format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Primer3 internal oligo mishybridizing library" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2381", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report of genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Experiment report (genotyping)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0884", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0883" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An entry from a molecular tertiary (3D) structure database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tertiary structure record" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2343", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[a-zA-Z_0-9]{2,3}[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a pathway from the KEGG pathway database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "KEGG pathway ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (KEGG)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1154" + }, + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2365" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3207", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analysing the DNA methylation of specific genes or regions of interest." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene-specific methylation analysis" + }, + { + "@value": "Methylation level analysis (gene-specific)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene methylation analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3204" + } + ] + }, + { + "@id": "http://edamontology.org/format_3281", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://compbio.soe.ucsc.edu/a2m-desc.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://compbio.soe.ucsc.edu/a2m-desc.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The A2M format is used as the primary format for multiple alignments of protein or nucleic-acid sequences in the SAM suite of tools. It is a small modification of FASTA format for sequences and is compatible with most tools that read FASTA." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "A2M" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2200" + }, + { + "@id": "http://edamontology.org/format_2554" + } + ] + }, + { + "@id": "http://edamontology.org/data_2736", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A feature identifier as used in the SwissRegulon database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This can be name of a gene, the ID of a TFBS, or genomic coordinates in form \"chr:start..end\"." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature ID (SwissRegulon)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1015" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0180", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0082" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein fold recognition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1590", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DNA base trimer roll angles data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA base trimer roll angles data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2088" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0487", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Infer haplotypes, either alleles at multiple loci that are transmitted together on the same chromosome, or a set of single nucleotide polymorphisms (SNPs) on a single chromatid that are statistically associated." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Haplotype reconstruction" + }, + { + "@value": "Haplotype inference" + }, + { + "@value": "Haplotype map generation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Haplotype inference can help in population genetic studies and the identification of complex disease genes, , and is typically based on aligned single nucleotide polymorphism (SNP) fragments. Haplotype comparison is a useful way to characterize the genetic variation between individuals. An individual's haplotype describes which nucleotide base occurs at each position for a set of common SNPs. Tools might use combinatorial functions (for example parsimony) or a likelihood function or model with optimisation such as minimum error correction (MEC) model, expectation-maximisation algorithm (EM), genetic algorithm or Markov chain Monte Carlo (MCMC)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Haplotype mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N243ac87561e2409b96645f77e3b06738" + }, + { + "@id": "http://edamontology.org/operation_0282" + } + ] + }, + { + "@id": "_:N243ac87561e2409b96645f77e3b06738", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1863" + } + ] + }, + { + "@id": "http://edamontology.org/data_1139", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "SM[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry from the SMART database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SMART accession number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2910" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3891", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compute Essential Dynamics (ED) on a simulation trajectory: an analysis of molecule dynamics using PCA (Principal Component Analysis) applied to the atomic positional fluctuations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Principal modes" + }, + { + "@value": "PCA" + }, + { + "@value": "ED" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Principal Component Analysis (PCA) is a multivariate statistical analysis to obtain collective variables and reduce the dimensionality of the system." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Essential dynamics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2481" + }, + { + "@id": "http://edamontology.org/operation_0244" + } + ] + }, + { + "@id": "http://edamontology.org/data_2016", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all amino acids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Amino acid data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid property" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2087" + } + ] + }, + { + "@id": "http://edamontology.org/data_1185", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a concept from the MGED ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MGED concept ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1087" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_1391", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTA-style format for multiple sequences aligned by HMMER package to an HMM." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HMMER-aln" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2200" + }, + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2925", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning, extracted from, or derived from the analysis of molecular sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1795", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a gene from EcoGene Database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "EcoGene Accession" + }, + { + "@value": "EcoGene ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (EcoGene)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1373", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1355" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein domain signature (sequence classifier) from the InterPro database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Protein domain signatures identify structural or functional domains or other units with defined boundaries." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein domain signature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1816", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:GetSurfaceDots" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the positions of dots that are homogeneously distributed over the surface of a molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A dot has three coordinates (x,y,z) and (typically) a color." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Surface rendering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0570" + }, + { + "@id": "http://edamontology.org/operation_3351" + } + ] + }, + { + "@id": "http://edamontology.org/data_3165", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "sequencing experiment, including samples, sampling, preparation, sequencing, and analysis." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NGS experiment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1077", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a transcription factor (or a TF binding site)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcription factor identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0989" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/format_3995", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "tex" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Bitmap image format used for storing textures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Texture files can create the appearance of different surfaces and can be applied to both 2D and 3D objects. Note the file extension .tex is also used for LaTex documents which are a completely different format and they are NOT interchangeable." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Texture file format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_0995", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name or other identifier of a nucleotide." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleotide identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1086" + } + ] + }, + { + "@id": "http://edamontology.org/format_3859", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.jcamp-dx.org/drafts/JCAMP6_2b%20Draft.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A standardized file format for data exchange in mass spectrometry, initially developed for infrared spectrometry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "JCAMP-DX is an ASCII based format and therefore not very compact even though it includes standards for file compression." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "JCAMP-DX" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Mass_spectrometry_data_format#cite_note-3" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0415", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict, recognise and identify features in nucleotide sequences such as functional sites or regions, typically by scanning for known motifs, patterns and regular expressions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence feature detection (nucleic acid)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Nucleic acid feature recognition" + }, + { + "@value": "Nucleic acid site detection" + }, + { + "@value": "Nucleic acid site recognition" + }, + { + "@value": "Nucleic acid site prediction" + }, + { + "@value": "Nucleic acid feature prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is placeholder but does not comprehensively include all child concepts - please inspect other concepts under \"Nucleic acid sequence analysis\" for example \"Gene prediction\", for other feature detection operations." + }, + { + "@value": "Methods typically involve scanning for known motifs, patterns and regular expressions." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid feature detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N4cbb309d822b47ae978312bff7103797" + }, + { + "@id": "http://edamontology.org/operation_2478" + }, + { + "@id": "http://edamontology.org/operation_2423" + }, + { + "@id": "_:Nc219607941e14c66810a4a18180065ae" + } + ] + }, + { + "@id": "_:N4cbb309d822b47ae978312bff7103797", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1276" + } + ] + }, + { + "@id": "_:Nc219607941e14c66810a4a18180065ae", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "http://edamontology.org/format_2548", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for a sequence feature table." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature table format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N634e6a0d43de4db0a908e061be2152e5" + }, + { + "@id": "http://edamontology.org/format_1920" + } + ] + }, + { + "@id": "_:N634e6a0d43de4db0a908e061be2152e5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "http://edamontology.org/topic_4017", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A method for studying biomolecules and other structures at very low (cryogenic) temperature using electron microscopy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "cryo-EM" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cryogenic electron microscopy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Cryogenic_electron_microscopy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0611" + } + ] + }, + { + "@id": "http://edamontology.org/data_1110", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The EMBOSS type of a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "See the EMBOSS documentation (http://emboss.sourceforge.net/) for a definition of what this includes." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS sequence type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3959", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of genetics concerned with the relationships between chromosomes and cellular behaviour, especially during mitosis and meiosis." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cytogenetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Cytogenetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3321" + } + ] + }, + { + "@id": "http://edamontology.org/format_3784", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.openannotation.org/spec/core/core.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.openannotation.org/spec/core/core.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A format of text annotation using the linked-data Open Annotation Data Model, serialised typically in RDF or JSON-LD." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Open Annotation format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "http://restoa.github.io/" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2376" + }, + { + "@id": "http://edamontology.org/format_3780" + }, + { + "@id": "http://edamontology.org/format_3749" + } + ] + }, + { + "@id": "http://edamontology.org/data_2886", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein sequence and associated metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence record (protein)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence record" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2976" + }, + { + "@id": "http://edamontology.org/data_0849" + } + ] + }, + { + "@id": "http://edamontology.org/data_2958", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_1583" + }, + { + "@id": "http://edamontology.org/data_2884" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1583" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid melting curve" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3828", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for raw microarray data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Microarray data format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Raw microarray data format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nfe0ed132b8f1476c9c26de90a684d2f5" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Nfe0ed132b8f1476c9c26de90a684d2f5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3110" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3202", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "\"Polymorphism detection\" and \"Variant calling\" are essentially the same thing - keeping the later as a more prevalent term nowadays." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.24" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_3197" + }, + { + "@id": "http://edamontology.org/operation_2478" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect mutations in multiple DNA sequences, for example, from the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3227" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Polymorphism detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2545", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A format resembling FASTQ short read format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept may be used for non-standard FASTQ short read-like formats." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FASTQ-like format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2057" + } + ] + }, + { + "@id": "http://edamontology.org/format_2051", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2921" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for sequence polymorphism data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Polymorphism report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3027", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2339" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a concept for a molecular function from the GO ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GO concept name (molecular function)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0528", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) serial analysis of gene expression (SAGE) data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SAGE data processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2285", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for genetic elements in MIPS database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MIPS genetic element identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (MIPS)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2295" + } + ] + }, + { + "@id": "http://edamontology.org/format_3882", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.ks.uiuc.edu/Training/TutorialsOverview/namd/namd-tutorial-unix-html/node23.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "X-Plor Protein Structure Files (PSF) are structure topology files used by NAMD and CHARMM molecular simulations programs. PSF files contain six main sections of interest: atoms, bonds, angles, dihedrals, improper dihedrals (force terms used to maintain planarity) and cross-terms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The high similarity in the functional form of the two potential energy functions used by AMBER and CHARMM force-fields gives rise to the possible use of one force-field within the other MD engine. Therefore, the conversion of PSF files to AMBER Prmtop format is possible with the use of AMBER chamber (CHARMM - AMBER) program." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PSF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2033" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3879" + } + ] + }, + { + "@id": "http://edamontology.org/data_2880", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2992" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image of one or more molecular secondary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Secondary structure image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0160", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The archival, detection, prediction and analysis of positional features such as functional and other key sites, in molecular sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Sequence_sites_features_and_motifs" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Sequence profiles" + }, + { + "@value": "Sequence sites" + }, + { + "@value": "HMMs" + }, + { + "@value": "Functional sites" + }, + { + "@value": "Sequence features" + }, + { + "@value": "Sequence motifs" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence sites, features and motifs" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3307" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3366", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The combination and integration of data from different sources, for example into a central repository or warehouse, to provide users with a unified view of these data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Data_integration_and_warehousing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Data integration" + }, + { + "@value": "Data warehousing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data integration and warehousing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Data_warehouse" + }, + { + "@id": "https://en.wikipedia.org/wiki/Data_integration" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3071" + } + ] + }, + { + "@id": "http://edamontology.org/data_1692", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a person." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Person name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2118" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3201", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0484" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify single nucleotide change in base positions in sequencing data that differ from a reference genome and which might, especially by reference to population frequency or functional data, indicate a polymorphism." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0484" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SNP calling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3592", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.fileformat.info/format/bmp/egff.htm" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Standard bitmap storage format in the Microsoft Windows environment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Although it is based on Windows internal bitmap data structures, it is supported by many non-Windows and non-PC applications." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BMP" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0236", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate character or word composition or frequency of a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence composition calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3438" + }, + { + "@id": "_:Nad94b3975ea14c6091c3e1e66ea2b1e5" + }, + { + "@id": "_:N1fab972740144409b4c049cd96fe0f00" + }, + { + "@id": "http://edamontology.org/operation_2403" + } + ] + }, + { + "@id": "_:Nad94b3975ea14c6091c3e1e66ea2b1e5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1261" + } + ] + }, + { + "@id": "_:N1fab972740144409b4c049cd96fe0f00", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0157" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3174", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://edamontology.org/related_term": [ + { + "@value": "Environmental DNA (eDNA)" + }, + { + "@value": "Environmental sequencing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Environmental omics" + }, + { + "@value": "Environmental genomics" + }, + { + "@value": "Ecogenomics" + }, + { + "@value": "Community genomics" + }, + { + "@value": "Biome sequencing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of genetic material recovered from environmental samples, and associated environmental data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Metagenomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Shotgun metagenomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metagenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Metagenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0610" + }, + { + "@id": "http://edamontology.org/topic_0622" + } + ], + "http://www.w3.org/2004/02/skos/core#exactMatch": [ + { + "@id": "http://purl.bioontology.org/ontology/MSH/D056186" + } + ] + }, + { + "@id": "http://edamontology.org/format_3990", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "avi" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Audio Video Interleaved (AVI) format is a multimedia container format for AVI files, that allows synchronous audio-with-video playback." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Audio Video Interleaved" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "AVI" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Audio_Video_Interleave" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_3547" + } + ] + }, + { + "@id": "http://edamontology.org/data_0928", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data quantifying the level of expression of (typically) multiple genes, derived for example from microarray experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "Gene expression pattern" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene expression profile" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2603" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0448", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse character conservation in a molecular sequence alignment, for example to derive a consensus sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Residue conservation analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Use this concept for methods that calculate substitution rates, estimate relative site variability, identify sites with biased properties, derive a consensus sequence, or identify highly conserved or very poorly conserved sites, regions, blocks etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment analysis (conservation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0258" + } + ] + }, + { + "@id": "http://edamontology.org/data_0954", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A mapping of the accession numbers (or other database identifier) of entries between (typically) two biological or biomedical databases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The cross-mapping is typically a table where each row is an accession number and each column is a database being cross-referenced. The cells give the accession number or identifier of the corresponding entry in a database. If a cell in the table is not filled then no mapping could be found for the database. Additional information might be given on version, date etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database cross-mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2093" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0786", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0780" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Arabidopsis-specific data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Arabidopsis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3620", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "MS Excel spreadsheet format consisting of a set of XML documents stored in a ZIP-compressed file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "xlsx" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3507" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_1857", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF: PDBx_occupancy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The fraction of an atom type present at a site in a molecular structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The sum of the occupancies of all the atom types at a site should not normally significantly exceed 1.0." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Atomic occupancy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1917" + } + ] + }, + { + "@id": "http://edamontology.org/data_2691", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryctolagus cuniculus' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Oryctolagus cuniculus')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0663", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0659" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "One or more transfer RNA (tRNA) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "tRNA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0910", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Km is the concentration (usually in Molar units) of substrate that leads to half-maximal velocity of an enzyme-catalysed reaction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Km" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2024" + } + ] + }, + { + "@id": "http://edamontology.org/format_1997", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylip format for (aligned) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PHYLIP interleaved format" + }, + { + "@value": "PHYLIP" + }, + { + "@value": "phy" + }, + { + "@value": "ph" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PHYLIP format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2924" + } + ] + }, + { + "@id": "http://edamontology.org/format_3956", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.w3.org/TR/n-quads" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "nq" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "N-Quads is a line-based, plain text format for encoding an RDF dataset. It includes information about the graph each triple belongs to." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "N-Quads should not be confused with N-Triples which does not contain graph information." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "N-Quads" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2376" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_2924", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Some variant of Phylip format for (aligned) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylip format variant" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3879", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of topology files; containing the static information of a structure molecular system that is needed for a molecular simulation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CG topology format" + }, + { + "@value": "MD topology format" + }, + { + "@value": "Protein topology format" + }, + { + "@value": "NA topology format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Many different file formats exist describing structural molecular topology. Typically, each MD package or simulation software works with their own implementation (e.g. GROMACS top, CHARMM psf, AMBER prmtop)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Topology format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N40c014bccfba4613965d4b0f0c1134db" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N40c014bccfba4613965d4b0f0c1134db", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3872" + } + ] + }, + { + "@id": "http://edamontology.org/format_3971", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://doi.org/10.1371/journal.pcbi.1000815" + }, + { + "@id": "https://neuroml.org/" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://neuroml.org/neuromlv2" + }, + { + "@id": "https://neuroml-db.org/" + } + ], + "http://edamontology.org/media_type": [ + { + "@value": "application/xml" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "https://neuroml.org/editors" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A model description language for computational neuroscience." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NeuroML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ndb712a3eade3400e9417b8bc74bb8d21" + }, + { + "@id": "http://edamontology.org/format_2013" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "_:Ndb712a3eade3400e9417b8bc74bb8d21", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3241" + } + ] + }, + { + "@id": "http://edamontology.org/format_1988", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Pearson MARKX2 alignment format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "markx2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2922" + } + ] + }, + { + "@id": "http://edamontology.org/format_1923", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "ACEDB sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "acedb" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3526", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein-protein interaction(s), including interactions between protein domains." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-protein interactions" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0779", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_2229" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mitochondria, typically of mitochondrial genes and proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mitochondria" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2521", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2520" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a DNA map of some type." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Map data processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2340", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a build of a particular genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome build identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2749" + } + ] + }, + { + "@id": "http://edamontology.org/format_2328", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report on a gene from the PseudoCAP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PseudoCAP gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0215", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a specific worm genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Worms" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0472", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Not sustainable to have protein type-specific concepts." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0269" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict G protein-coupled receptors (GPCR)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0269" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GPCR prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1623", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from the OMIM database of genotypes and phenotypes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "OMIM entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0150", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0130" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2665", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[a-zA-Z_0-9]+[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the LipidBank database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "LipidBank ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2905" + } + ] + }, + { + "@id": "http://edamontology.org/data_1539", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report on the quality of a protein three-dimensional model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein structure validation report" + }, + { + "@value": "Protein property (structural quality)" + }, + { + "@value": "Protein report (structural quality)" + }, + { + "@value": "Protein structure report (quality evaluation)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Model validation might involve checks for atomic packing, steric clashes, agreement with electron density maps etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structural quality report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1537" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3890", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D visualization of a molecular trajectory." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Trajectory visualization" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nee0eadfeeb674047960d57b195a8591a" + }, + { + "@id": "http://edamontology.org/operation_0570" + } + ] + }, + { + "@id": "_:Nee0eadfeeb674047960d57b195a8591a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2162" + } + ] + }, + { + "@id": "http://edamontology.org/data_2166", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A plot of character or word composition / frequency of a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence composition plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1261" + }, + { + "@id": "http://edamontology.org/data_2884" + } + ] + }, + { + "@id": "http://edamontology.org/data_3115", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation on the array itself used in a microarray experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This might include gene identifiers, genomic coordinates, probe oligonucleotide sequences etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microarray metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2603" + } + ] + }, + { + "@id": "http://edamontology.org/data_2967", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2968" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An image from a microarray experiment which (typically) allows a visualisation of probe hybridisation and gene-expression data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microarray image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3899", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Model or simulate protein-protein binding using comparative modelling or other techniques." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein docking" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-protein docking" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nf5850acee37046f4a628e65f07e2bd13" + }, + { + "@id": "_:Ne2f805b0f1ba4faaafbcd3fa0bad1082" + }, + { + "@id": "http://edamontology.org/operation_0478" + } + ] + }, + { + "@id": "_:Nf5850acee37046f4a628e65f07e2bd13", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1461" + } + ] + }, + { + "@id": "_:Ne2f805b0f1ba4faaafbcd3fa0bad1082", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0371", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Translate a DNA sequence into protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA translation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0233" + }, + { + "@id": "_:Ne51b63bf89af47b1a4cf48cdb1a4a67a" + } + ] + }, + { + "@id": "_:Ne51b63bf89af47b1a4cf48cdb1a4a67a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0108" + } + ] + }, + { + "@id": "http://edamontology.org/format_3710", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "wiff" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mass spectrum file format from QSTAR and QTRAP instruments (ABI/Sciex)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "wiff" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "WIFF format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/data_3449", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An image from a cell migration track assay." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell migration track image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2968" + }, + { + "@id": "_:Nf625529ece014de9abbab03d5a904103" + } + ] + }, + { + "@id": "_:Nf625529ece014de9abbab03d5a904103", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2229" + } + ] + }, + { + "@id": "http://edamontology.org/format_3833", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1FeatureXMLFile.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "OpenMS format for quantitation results (LC/MS features)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "featureXML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1780", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_3431" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Submit a molecular sequence to a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence submission" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0992", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1086" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Code word for a ligand, for example from a PDB file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ligand identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2086", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0912" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3128" + }, + { + "@id": "http://edamontology.org/data_0912" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on nucleic acid structure-derived data, describing structural properties of a DNA molecule, or any other annotation or information about specific nucleic acid 3D structure(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid structure data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1843", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF: PackingQuality" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify poorly packed residues in protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Residue packing validation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0321" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0147", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein-protein interactions, individual interactions and networks, protein complexes, protein functional coupling etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-protein interactions" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1458", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of local RNA secondary structure components with free energy values, generated by the Vienna RNA package/server." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Vienna local RNA secondary structure format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1457" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0426", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect, predict and identify genetic elements such as promoters, coding regions, splice sites, etc in DNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2454" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene component prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1975", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://github.com/The-Sequence-Ontology/Specifications/blob/master/gff3.md" + } + ], + "http://edamontology.org/ontology_used": [ + { + "@id": "http://www.sequenceontology.org/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "https://github.com/The-Sequence-Ontology/Specifications/blob/master/gff3.md" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generic Feature Format version 3 (GFF3) of sequence features." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GFF3" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2305" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0245", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or screen for 3D structural motifs in protein structure(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein structural motif recognition" + }, + { + "@value": "Protein structural feature identification" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes conserved substructures and conserved geometry, such as spatial arrangement of secondary structure or protein backbone. Methods might use structure alignment, structural templates, searches for similar electrostatic potential and molecular surface shape, surface-mapping of phylogenetic information etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural motif discovery" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3092" + }, + { + "@id": "_:Nd4b228025b6e4bbda4d5e3f4473a5607" + }, + { + "@id": "http://edamontology.org/operation_2406" + } + ] + }, + { + "@id": "_:Nd4b228025b6e4bbda4d5e3f4473a5607", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0166" + } + ] + }, + { + "@id": "http://edamontology.org/data_1346", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0950" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "File of directives for ordering and spacing of MEME motifs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MEME motifs directive file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3199", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A variant of oligonucleotide mapping where a read is mapped to two separate locations because of possible structural variation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Split-read mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Split read mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3198" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2505", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_3778" + }, + { + "@id": "http://edamontology.org/operation_0306" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) text." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Text processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3518", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Microarray experiments including conditions, protocol, sample:data relationships etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Microarrays" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Microarray_experiment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "SNP array" + }, + { + "@value": "Proprietary platform micoarray" + }, + { + "@value": "One channel microarray" + }, + { + "@value": "Tiling arrays" + }, + { + "@value": "Two channel microarray" + }, + { + "@value": "RNA chips" + }, + { + "@value": "Multichannel microarray" + }, + { + "@value": "aCGH microarray" + }, + { + "@value": "mRNA microarray" + }, + { + "@value": "RNA microarrays" + }, + { + "@value": "Reverse phase protein array" + }, + { + "@value": "miRNA array" + }, + { + "@value": "Tissue microarray" + }, + { + "@value": "Gene expression microarray" + }, + { + "@value": "MicroRNA array" + }, + { + "@value": "Genotyping array" + }, + { + "@value": "Methylation array" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This might specify which raw data file relates to which sample and information on hybridisations, e.g. which are technical and which are biological replicates." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microarray experiment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Microarray" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3361" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1774", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Retrieve existing annotation (or documentation), typically annotation on a database entity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Use this concepts for tools which retrieve pre-existing annotations, not for example prediction methods that might make annotations." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Annotation retrieval" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2021", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format of a report from text mining." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Text mining report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N0cf9585ef1214f65a4fcc46dd7976470" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N0cf9585ef1214f65a4fcc46dd7976470", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0972" + } + ] + }, + { + "@id": "http://edamontology.org/data_2632", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "PWY[a-zA-Z_0-9]{2}\\-[0-9]{3}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the Saccharomyces genome database (SGD)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SGD ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_3825", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://edamontology.org/www.nmrML.org" + }, + { + "@id": "https://github.com/nmrML/nmrML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "nmrML is an MSI supported XML-based open access format for metabolomics NMR raw and processed spectral data. It is accompanies by an nmrCV (controlled vocabulary) to allow ontology-based annotations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "nmrML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3824" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2428", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Validate some data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Quality control" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Validation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/format_3998", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "pl" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for scripts written in Perl - a family of high-level, general-purpose, interpreted, dynamic programming languages." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Perl program" + }, + { + "@value": "pl" + }, + { + "@value": "Perl" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Perl script" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2032" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_1612", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of the Mouse Genome Database (MGD)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MGD gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0438", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict transcriptional regulatory motifs, patterns, elements or regions in DNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Regulatory element prediction" + }, + { + "@value": "Transcription regulatory element prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Translational regulatory element prediction" + }, + { + "@value": "Conserved transcription regulatory sequence identification" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes promoters, enhancers, silencers and boundary elements / insulators, regulatory protein or transcription factor binding sites etc. Methods might be specific to a particular genome and use motifs, word-based / grammatical methods, position-specific frequency matrices, discriminative pattern analysis etc." + }, + { + "@value": "This includes comparative genomics approaches that identify common, conserved (homologous) or synonymous transcriptional regulatory elements. For example cross-species comparison of transcription factor binding sites (TFBS). Methods might analyse co-regulated or co-expressed genes, or sets of oppositely expressed genes." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcriptional regulatory element prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nc4a97032442a4f83a256eec693634505" + }, + { + "@id": "http://edamontology.org/operation_2454" + } + ] + }, + { + "@id": "_:Nc4a97032442a4f83a256eec693634505", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0749" + } + ] + }, + { + "@id": "http://edamontology.org/format_1573", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the PIRSF protein secondary database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PIRSF entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1972", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "NCBI FASTA sequence format with NCBI-style IDs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "There are several variants of this." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NCBI format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2200" + } + ] + }, + { + "@id": "http://edamontology.org/data_1389", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0863" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of more than two nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Multiple nucleotide sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1965", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2005" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Treecon output sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "treecon sequence format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1885", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby_namespace:GENEFARM_GeneID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a gene from the GeneFarm database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (GeneFarm)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_1654", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the CPDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CPDB entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1237", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0850" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequences generated by HMMER package in FASTA-style format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HMMER synthetic sequences set" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1899", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: JCVI_CMR" + }, + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: TIGR_CMR" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Locus identifier for Comprehensive Microbial Resource at the J. Craig Venter Institute." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID (CMR)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1893" + } + ] + }, + { + "@id": "http://edamontology.org/data_2254", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of an OBO file format such as OBO-XML, plain and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "OBO file format name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2129" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0112", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The folding (in 3D space) of nucleic acid molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0097" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid folding" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1105", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a dbEST database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "dbEST ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "dbEST accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2292" + }, + { + "@id": "http://edamontology.org/data_2728" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1003", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Beilstein registry number of a chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Beilstein chemical registry number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical registry number (Beilstein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0991" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0233", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Convert a molecular sequence from one type to another." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence conversion" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0231" + }, + { + "@id": "http://edamontology.org/operation_3434" + } + ] + }, + { + "@id": "http://edamontology.org/data_1682", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBOSS wordfinder log file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS wordfinder log file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1766", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0850" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTA sequence database for all CATH domains (based on PDB ATOM records)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH domain sequences (ATOM)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2064", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a matrix of 3D-1D scores (amino acid environment probabilities)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "3D-1D scoring matrix format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3033" + }, + { + "@id": "_:N082b2f89d1004718960eae378fb68248" + } + ] + }, + { + "@id": "_:N082b2f89d1004718960eae378fb68248", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1499" + } + ] + }, + { + "@id": "http://edamontology.org/data_1428", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "One or more cliques of mutually compatible characters that are generated, for example from analysis of discrete character data, and are used to generate a phylogeny." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic report (cliques)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic character cliques" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2523" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0259", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare (typically by aligning) two molecular sequence alignments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "See also 'Sequence profile alignment'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0258" + }, + { + "@id": "http://edamontology.org/operation_2424" + } + ] + }, + { + "@id": "http://edamontology.org/format_2376", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A serialisation format conforming to the Resource Description Framework (RDF) model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Resource Description Framework format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "Resource Description Framework" + }, + { + "@value": "RDF" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RDF format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Resource_Description_Framework" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1915" + }, + { + "@id": "http://edamontology.org/format_2195" + }, + { + "@id": "http://edamontology.org/format_3748" + } + ] + }, + { + "@id": "http://edamontology.org/data_2525", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2084" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning one or more nucleic acid molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3357", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/comment_handle": [ + { + "@id": "http://edamontology.org/comment_handle" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Recognition of which format the given data is in." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Format inference" + }, + { + "@value": "Format identification" + }, + { + "@value": "Format recognition" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "'Format recognition' is not a bioinformatics-specific operation, but of great relevance in bioinformatics. Should be removed from EDAM if/when captured satisfactorily in a suitable domain-generic ontology." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Format detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nec255e9f0249488c9311de570c84df40" + }, + { + "@id": "http://edamontology.org/operation_2409" + } + ] + }, + { + "@id": "_:Nec255e9f0249488c9311de570c84df40", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3358" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0334", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate Km, Vmax and derived data for an enzyme reaction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enzyme kinetics calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nc2327884412743beaec128c6797b0e4d" + }, + { + "@id": "http://edamontology.org/operation_0250" + }, + { + "@id": "_:N98b6589151b74e6b84c61f76897a96f3" + } + ] + }, + { + "@id": "_:Nc2327884412743beaec128c6797b0e4d", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2024" + } + ] + }, + { + "@id": "_:N98b6589151b74e6b84c61f76897a96f3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0821" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3067", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.1.1 Anatomy and morphology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The form and function of the structures of living organisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Anatomy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Anatomy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Anatomy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3344" + } + ] + }, + { + "@id": "http://edamontology.org/format_2061", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report on PCR primers or hybridisation oligos in a nucleic acid sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid features (primers) format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "http://edamontology.org/format_3609", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://en.wikipedia.org/wiki/Phred_quality_score" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTQ format subset for Phred sequencing quality score data only (no sequences) from Illumina 1.5 and before Illumina 1.8." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Starting in Illumina 1.5 and before Illumina 1.8, the Phred scores 0 to 2 have a slightly different meaning. The values 0 and 1 are no longer used and the value 2, encoded by ASCII 66 \"B\", is used also at the end of reads as a Read Segment Quality Control Indicator." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "qualillumina" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1931" + }, + { + "@id": "http://edamontology.org/format_3607" + } + ] + }, + { + "@id": "http://edamontology.org/data_3274", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an object from the MGI database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MGI accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_3356", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.15" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1364" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@language": "en", + "@value": "Hidden Markov model" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0254", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Extract a sequence feature table from a sequence database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (feature table)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0551", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse the shape (topology) of a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree analysis (shape)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree topology analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0324" + } + ] + }, + { + "@id": "http://edamontology.org/data_0874", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Matrix of integer or floating point numbers for amino acid or nucleotide sequence comparison." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Substitution matrix" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The comparison matrix might include matrix name, optional comment, height and width (or size) of matrix, an index row/column (of characters) and data rows/columns (of integers or floats)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Comparison matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + } + ] + }, + { + "@id": "http://edamontology.org/data_1322", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "signal peptides or signal peptide cleavage sites in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features report (signal peptides)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1613", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of the Rat Genome Database (RGD)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RGD gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2291", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a polypeptide in the UniProt database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "UniProtKB identifier" + }, + { + "@value": "UniProtKB entry name" + }, + { + "@value": "UniProt identifier" + }, + { + "@value": "UniProt entry name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniProt ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N320a4a23fcaa404eb37c4a5e1d373c20" + }, + { + "@id": "http://edamontology.org/data_2154" + } + ] + }, + { + "@id": "_:N320a4a23fcaa404eb37c4a5e1d373c20", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0849" + } + ] + }, + { + "@id": "http://edamontology.org/data_1748", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF: atom_type" + }, + { + "@value": "PDBML:pdbx_PDB_atom_name" + }, + { + "@value": "WHATIF: alternate_atom" + }, + { + "@value": "WHATIF: PDBx_type_symbol" + }, + { + "@value": "WHATIF: PDBx_auth_atom_id" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier (a string) of a specific atom from a PDB file for a molecular structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PDB atom name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1757" + } + ] + }, + { + "@id": "http://edamontology.org/data_2320", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The assonant name of a cell line." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell line name (assonant)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2316" + } + ] + }, + { + "@id": "http://edamontology.org/data_1046", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a strain of an organism variant, typically a plant, virus or bacterium." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Strain name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2379" + }, + { + "@id": "http://edamontology.org/data_2909" + } + ] + }, + { + "@id": "http://edamontology.org/data_2223", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning a biological ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2337" + }, + { + "@id": "_:Nc8f9e64af92546d68208051095bf6e08" + } + ] + }, + { + "@id": "_:Nc8f9e64af92546d68208051095bf6e08", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0089" + } + ] + }, + { + "@id": "http://edamontology.org/data_1543", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1537" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein surface report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3304", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Neuroscience" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.1.5 Neuroscience" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of the nervous system and brain; its anatomy, physiology and function." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Neurobiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Molecular neuroscience" + }, + { + "@value": "Systemetic neuroscience" + }, + { + "@value": "Neurophysiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Neurobiology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Neuroscience" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3344" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0474", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict tertiary structure (backbone and side-chain conformation) of protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein folding pathway prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes methods that predict the folding pathway(s) or non-native structural intermediates of a protein." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_structure_prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2423" + }, + { + "@id": "_:N53a31c6e5a764230857387ce68344a47" + }, + { + "@id": "http://edamontology.org/operation_2479" + }, + { + "@id": "http://edamontology.org/operation_2406" + } + ] + }, + { + "@id": "_:N53a31c6e5a764230857387ce68344a47", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1460" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0471", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict cysteine bonding state and disulfide bond partners in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Disulfide bond prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3092" + } + ] + }, + { + "@id": "http://edamontology.org/format_3462", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Reference-based compression of alignment format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CRAM" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_2920" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3641", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Quantification analysis using the Thermo Fisher tandem mass tag labelling workflow." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TMT-tag" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3635" + } + ] + }, + { + "@id": "http://edamontology.org/format_1552", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of output of the ProQ protein model quality predictor." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "ProQ is a neural network-based predictor that predicts the quality of a protein model based on the number of structural features." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ProQ report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2065" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1000", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Brand name of a chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Brand chemical name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical name (brand)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0990" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0149", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein-DNA/RNA interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-nucleic acid interactions" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3986", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "wmv" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The proprietary native video format of various Microsoft programs such as Windows Media Player." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Windows Media Video format" + }, + { + "@value": "Windows movie file format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "WMV" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Windows_Media_Video" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3205", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_3204" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Determine cytosine methylation status of specific positions in a nucleic acid sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3204" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Methylation calling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2275", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The construction, analysis, evaluation, refinement etc. of models of a molecules properties or behaviour, including the modelling the structure of proteins in complex with small molecules or other macromolecules (docking)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Molecular_modelling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Comparative modelling" + }, + { + "@value": "Docking" + }, + { + "@value": "Homology modeling" + }, + { + "@value": "Molecular docking" + }, + { + "@value": "Homology modelling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Molecular_modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0082" + } + ] + }, + { + "@id": "http://edamontology.org/data_1147", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[GDS|GPL|GSE|GSM][0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry from the GEO database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GEO accession number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1080" + } + ] + }, + { + "@id": "http://edamontology.org/data_2126", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Frame for translation of DNA (3 forward and 3 reverse frames relative to a chromosome)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Translation frame specification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2473", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Retrieve information on a specific genotype or phenotype." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (genotype and phenotype annotation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3468", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Microsoft Excel spreadsheet format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Microsoft Excel format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "xls" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3507" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0372", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Transcribe a nucleotide sequence into mRNA sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA transcription" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0233" + }, + { + "@id": "_:N8c0d5961be6943d498fde46001f3f268" + } + ] + }, + { + "@id": "_:N8c0d5961be6943d498fde46001f3f268", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ] + }, + { + "@id": "http://edamontology.org/format_1647", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the KEGG PATHWAY database of pathway maps for molecular interactions and reaction networks." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KEGG PATHWAY entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1433", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of PHYLIP discrete states data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylip discrete states format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2038" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3928", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate, process or analyse a biological pathway." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biological pathway analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Biological pathway prediction" + }, + { + "@value": "Pathway prediction" + }, + { + "@value": "Pathway comparison" + }, + { + "@value": "Pathway modelling" + }, + { + "@value": "Pathway simulation" + }, + { + "@value": "Biological pathway modelling" + }, + { + "@value": "Functional pathway analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Pathway_analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2945" + }, + { + "@id": "_:N0a8c3ac2160c49be822257dbe9a61fcb" + }, + { + "@id": "_:Nd8040411ca6e43449fee41ac0a0c2b2d" + } + ] + }, + { + "@id": "_:N0a8c3ac2160c49be822257dbe9a61fcb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2259" + } + ] + }, + { + "@id": "_:Nd8040411ca6e43449fee41ac0a0c2b2d", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0602" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2451", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N0f73b5d391434fe4921fdef685bdba9e" + }, + { + "@id": "_:Nde394ff9228d4ccaa8ea86ebbed42a9b" + }, + { + "@id": "http://edamontology.org/operation_2403" + }, + { + "@id": "http://edamontology.org/operation_2424" + } + ] + }, + { + "@id": "_:N0f73b5d391434fe4921fdef685bdba9e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2955" + } + ] + }, + { + "@id": "_:Nde394ff9228d4ccaa8ea86ebbed42a9b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2044" + } + ] + }, + { + "@id": "http://edamontology.org/data_3722", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Experimentally determined parameter of the physiology of an organism, e.g. substrate spectrum." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Physiology parameter" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3108" + } + ] + }, + { + "@id": "http://edamontology.org/data_2603", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image, hybridisation or some other data arising from a study of feature/molecule expression, typically profiling or quantification." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "RNA profile" + }, + { + "@value": "RNA quantification data" + }, + { + "@value": "Transcriptome profile" + }, + { + "@value": "mRNA quantification data" + }, + { + "@value": "Gene transcription quantification data" + }, + { + "@value": "Gene transcription profile" + }, + { + "@value": "Microarray data" + }, + { + "@value": "Gene expression data" + }, + { + "@value": "Protein expression data" + }, + { + "@value": "Non-coding RNA profile" + }, + { + "@value": "Transcriptome quantification data" + }, + { + "@value": "RNA-seq data" + }, + { + "@value": "Metabolite expression data" + }, + { + "@value": "mRNA profile" + }, + { + "@value": "Gene product quantification data" + }, + { + "@value": "Non-coding RNA quantification data" + }, + { + "@value": "Gene product profile" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "Proteome profile" + }, + { + "@value": "Protein quantification data" + }, + { + "@value": "Proteome quantification data" + }, + { + "@value": "Protein profile" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Expression data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nb71483020e5b4ed39cba42c41947a051" + }, + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "_:Nb71483020e5b4ed39cba42c41947a051", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0094", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0097" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of the thermodynamic properties of a nucleic acid." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid thermodynamics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3271", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A phylogenetic tree that is an estimate of the character's phylogeny." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene tree" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0872" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0698", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_2814" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein tertiary structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2034", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2013" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a biological model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biological model format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3866", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "File format to store trajectory information for a 3D structure ." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "NA trajectory formats" + }, + { + "@value": "Protein trajectory formats" + }, + { + "@value": "MD trajectory formats" + }, + { + "@value": "CG trajectory formats" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Formats differ on what they are able to store (coordinates, velocities, topologies) and how they are storing it (raw, compressed, textual, binary)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Trajectory format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:N62fff59eba1747d3a90a3e98c767be49" + } + ] + }, + { + "@id": "_:N62fff59eba1747d3a90a3e98c767be49", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3870" + } + ] + }, + { + "@id": "http://edamontology.org/data_2041", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2711" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a genome version." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome version information" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1383", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of multiple nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence alignment (nucleic acid)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "RNA sequence alignment" + }, + { + "@value": "DNA sequence alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0863" + } + ] + }, + { + "@id": "http://edamontology.org/format_3852", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://orthoxml.org/xml/Documentation.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "SeqXML is an XML Schema to describe biological sequences, developed by the Stockholm Bioinformatics Centre." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SeqXML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2552" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0439", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict translation initiation sites, possibly by searching a database of sites." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Translation initiation site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N47d2512473c5458aaa1ba90ca2311ea0" + }, + { + "@id": "http://edamontology.org/operation_0436" + } + ] + }, + { + "@id": "_:N47d2512473c5458aaa1ba90ca2311ea0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0108" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3064", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.14 Developmental biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "How organisms grow and develop." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Developmental_biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Development" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Developmental biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Developmental_biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0557", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more phylogenetic trees to calculate distances between trees." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree distances calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N196b6c759c694e79aab0738d8a762606" + }, + { + "@id": "http://edamontology.org/operation_0325" + } + ] + }, + { + "@id": "_:N196b6c759c694e79aab0738d8a762606", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1442" + } + ] + }, + { + "@id": "http://edamontology.org/data_3509", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A mapping of supplied textual terms or phrases to ontology concepts (URIs)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2093" + } + ] + }, + { + "@id": "http://edamontology.org/format_3813", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.stats.ox.ac.uk/~marchini/software/gwas/file_format.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The SAMPLE file format contains information about each individual i.e. individual IDs, covariates, phenotypes and missing data proportions, from a GWAS study." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SAMPLE file format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1468", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for the tertiary (3D) structure of a protein domain." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein domain" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1460" + }, + { + "@id": "_:N70ff19109cb24afca0e3da4703effe70" + } + ] + }, + { + "@id": "_:N70ff19109cb24afca0e3da4703effe70", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0736" + } + ] + }, + { + "@id": "http://edamontology.org/data_1034", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "S[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the SGD database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "SGD identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (SGD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2632" + }, + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0440", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in DNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might recognize CG content, CpG islands, splice sites, polyA signals etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Promoter prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0438" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3521", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Two-dimensional gel electrophoresis experiments, gels or spots in a gel." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3520" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "2D PAGE experiment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2765", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2872" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "One or more terms from one or more controlled vocabularies which are annotations on an entity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The concepts are typically provided as a persistent identifier or some other link the source ontologies. Evidence of the validity of the annotation might be included." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Term ID list" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0507", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0509" + }, + { + "@id": "http://edamontology.org/operation_0295" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Locally align (superimpose) exactly two molecular tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Local alignment methods identify regions of local similarity, common substructures etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pairwise structure alignment generation (local)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "_:N2fb2809043694b7ebe109164f9a5d9c3", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "'OBO_REL:participates_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'continuant' (snap:Continuant) with ontological categories that are a 'process' (span:Process), and broader in the sense that it relates any participating subjects not just outputs or output arguments. It is also not clear whether an output (result) actually participates in the process that generates it." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/is_output_of" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "OBO_REL:participates_in" + } + ] + }, + { + "@id": "http://edamontology.org/data_1187", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/example": [ + { + "@value": "4963447" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[1-9][0-9]{0,8}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PubMed unique identifier of an article." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PMID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PubMed ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1088" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0335", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Reformat a file of data (or equivalent entity in memory)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "File reformatting" + }, + { + "@value": "Format conversion" + }, + { + "@value": "File formatting" + }, + { + "@value": "File format conversion" + }, + { + "@value": "Reformatting" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Formatting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0525", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The process of assembling many short DNA sequences together such that they represent the original chromosomes from which the DNA originated." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Genomic assembly" + }, + { + "@value": "Sequence assembly (genome assembly)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Breakend assembly" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequence_assembly#Genome_assemblers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3918" + }, + { + "@id": "http://edamontology.org/operation_0310" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2404", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse molecular sequence motifs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence motif processing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2403" + } + ] + }, + { + "@id": "http://edamontology.org/data_1195", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of an EMBASSY package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tool name (EMBASSY package)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1190" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0503", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align (superimpose) exactly two molecular tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure alignment (pairwise)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Pairwise protein structure alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pairwise structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0295" + } + ] + }, + { + "@id": "http://edamontology.org/format_3239", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.copasi.org/tiki-index.php?page_ref_id=128" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.copasi.org/tiki-index.php?page_ref_id=128" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "CopasiML, the native format of COPASI." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CopasiML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2013" + }, + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_3166" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2435", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a gene expression profile." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene expression profile processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1784", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a gene from Candida Genome Database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (CGD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2056", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for information about a microarray experimental per se (not the data generated from that experiment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microarray experiment data format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3167" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3334", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with the anatomy, functions and disorders of the nervous system." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Neurology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Neurological disorders" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Neurology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Neurology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2483", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more molecular tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N47feb32ccf61420993b9daf029693c3f" + }, + { + "@id": "http://edamontology.org/operation_2480" + }, + { + "@id": "http://edamontology.org/operation_2424" + } + ] + }, + { + "@id": "_:N47feb32ccf61420993b9daf029693c3f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ] + }, + { + "@id": "http://edamontology.org/data_1467", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for the tertiary (3D) structure of a polypeptide chain." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein chain" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1460" + } + ] + }, + { + "@id": "http://edamontology.org/data_0944", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A set of peptide masses (peptide mass fingerprint) from mass spectrometry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein fingerprint" + }, + { + "@value": "Peak list" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Molecular weights standard fingerprint" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A molecular weight standard fingerprint is standard protonated molecular masses e.g. from trypsin (modified porcine trypsin, Promega) and keratin peptides." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptide mass fingerprint" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nc192a8c1ad134c4f9c20074038c8b132" + }, + { + "@id": "http://edamontology.org/data_2979" + }, + { + "@id": "http://edamontology.org/data_2536" + } + ] + }, + { + "@id": "_:Nc192a8c1ad134c4f9c20074038c8b132", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://edamontology.org/data_1258", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0912" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report of general sequence properties derived from nucleotide sequence data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence property (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://purl.org/dc/elements/1.1/contributor", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/operation_2937", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a plot of distances (distance or correlation matrix) between expression values." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Distance matrix plotting" + }, + { + "@value": "Proximity map rendering" + }, + { + "@value": "Distance matrix rendering" + }, + { + "@value": "Distance map rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Microarray proximity map rendering" + }, + { + "@value": "Microarray proximity map plotting" + }, + { + "@value": "Microarray distance map rendering" + }, + { + "@value": "Correlation matrix rendering" + }, + { + "@value": "Correlation matrix plotting" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Proximity map plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0571" + } + ] + }, + { + "@id": "http://edamontology.org/data_1010", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name or other identifier of an enzyme or record from a database of enzymes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enzyme identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0989" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0416", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict antigenic determinant sites (epitopes) in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Epitope prediction" + }, + { + "@value": "Antibody epitope prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "T cell epitope prediction" + }, + { + "@value": "Epitope mapping (MHC Class I)" + }, + { + "@value": "T cell epitope mapping" + }, + { + "@value": "B cell epitope prediction" + }, + { + "@value": "Epitope mapping (MHC Class II)" + }, + { + "@value": "B cell epitope mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Epitope mapping is commonly done during vaccine design." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Epitope mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3092" + }, + { + "@id": "http://edamontology.org/operation_2429" + }, + { + "@id": "_:Nf99493cf0c99436cb502721130b4808e" + } + ] + }, + { + "@id": "_:Nf99493cf0c99436cb502721130b4808e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0804" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0543", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylogenetic tree construction from polymorphism data including microsatellites, RFLP (restriction fragment length polymorphisms), RAPD (random-amplified polymorphic DNA) and AFLP (amplified fragment length polymorphisms) data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree generation (from polymorphism data)" + }, + { + "@value": "Phylogenetic tree construction (from polymorphism data)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic inference (from polymorphism data)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N5e5b0c666d4e41d0b1d4f04262d10d53" + }, + { + "@id": "http://edamontology.org/operation_0538" + } + ] + }, + { + "@id": "_:N5e5b0c666d4e41d0b1d4f04262d10d53", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0199" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0291", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Build clusters of similar sequences, typically using scores from pair-wise alignment or other comparison of the sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence cluster generation" + }, + { + "@value": "Sequence cluster construction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The clusters may be output or used internally for some other purpose." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence clustering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequence_clustering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3429" + }, + { + "@id": "http://edamontology.org/operation_2451" + }, + { + "@id": "_:Ndbb09ce00b00433cb328470ccdc61bd2" + }, + { + "@id": "http://edamontology.org/operation_3432" + } + ] + }, + { + "@id": "_:Ndbb09ce00b00433cb328470ccdc61bd2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1235" + } + ] + }, + { + "@id": "http://edamontology.org/format_1920", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for molecular sequence feature information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature annotation format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N6da29e7da8a946b5ba2fc95426a4344a" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N6da29e7da8a946b5ba2fc95426a4344a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "http://edamontology.org/data_1101", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a TREMBL sequence database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_3021" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TREMBL accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0951", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A value representing estimated statistical significance of some observed data; typically sequence database hits." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Statistical estimate score" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1772" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0159", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The comparison of two or more molecular sequences, for example sequence alignment and clustering." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The comparison might be on the basis of sequence, physico-chemical or some other properties of the sequences." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2486", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Render a topology diagram of protein secondary structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Topology diagram rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Topology diagram drawing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_topology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N454288ab95f741c794656315ae1e41b2" + }, + { + "@id": "http://edamontology.org/operation_0570" + } + ] + }, + { + "@id": "_:N454288ab95f741c794656315ae1e41b2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2992" + } + ] + }, + { + "@id": "http://edamontology.org/format_3991", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "trackdb" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A declaration file format for UCSC browsers track dataset display charateristics." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TrackDB" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_2919" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2502", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2945" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2479" + }, + { + "@id": "http://edamontology.org/operation_2406" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) protein sequence or structural data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_1307", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_3320" + }, + { + "@id": "http://edamontology.org/topic_3512" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Splice sites in a nucleotide sequence or alternative RNA splicing events." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Splice sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2230", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0089" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Topic focused on identifying, grouping, or naming things in a structured way according to some schema based on observable relationships." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0878", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/is_deprecation_candidate": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of the (1D representations of) secondary structure of two or more proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Secondary structure alignment (protein)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2366" + } + ] + }, + { + "@id": "http://edamontology.org/data_2695", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Rattus norvegicus' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Rattus norvegicus')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3724", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Experimental determined parameter for the cultivation of an organism." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Cultivation conditions" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Nitrogen source" + }, + { + "@value": "Carbon source" + }, + { + "@value": "Temperature" + }, + { + "@value": "Salinity" + }, + { + "@value": "Culture media composition" + }, + { + "@value": "pH value" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cultivation parameter" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3108" + } + ] + }, + { + "@id": "http://edamontology.org/data_2792", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier for a peroxidase protein from the PeroxiBase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PeroxiBase ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein ID (PeroxiBase)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3629", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The removal of isotope peaks in a spectrum, to represent the fragment ion as one data point." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Deconvolution" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Deisotoping is commonly done to reduce complexity, and done in conjunction with the charge state deconvolution." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Deisotoping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3214" + }, + { + "@id": "_:N21d78aab6a7f4e9fa76ff6ff57c5fdce" + } + ] + }, + { + "@id": "_:N21d78aab6a7f4e9fa76ff6ff57c5fdce", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0943" + } + ] + }, + { + "@id": "http://edamontology.org/data_2012", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:GCP_MapPosition" + }, + { + "@value": "Moby:GCP_MapInterval" + }, + { + "@value": "PDBML:_atom_site.id" + }, + { + "@value": "Moby:HitPosition" + }, + { + "@value": "Moby:Position" + }, + { + "@value": "Moby:Locus" + }, + { + "@value": "Moby:GCP_MapPoint" + }, + { + "@value": "Moby:MapPosition" + }, + { + "@value": "Moby:GenePosition" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A position in a map (for example a genetic map), either a single position (point) or a region / interval." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Map position" + }, + { + "@value": "Locus" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes positions in genomes based on a reference sequence. A position may be specified for any mappable object, i.e. anything that may have positional information such as a physical position in a chromosome. Data might include sequence region name, strand, coordinate system name, assembly name, start position and end position." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence coordinates" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + }, + { + "@id": "http://edamontology.org/data_1016" + }, + { + "@id": "http://edamontology.org/data_1017" + } + ] + }, + { + "@id": "http://edamontology.org/format_1919", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a molecular sequence record." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence record format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N7021f01d7a8640b88bb8ea6b8bc66bdb" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N7021f01d7a8640b88bb8ea6b8bc66bdb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0849" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3744", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise, format or render data arising from an analysis of multiple samples from a metagenomics/community experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Multiple sample visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0337" + } + ] + }, + { + "@id": "http://edamontology.org/format_3328", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "ftp://selab.janelia.org/pub/software/hmmer/2.4i/Userguide.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "HMMER profile HMM file for HMMER versions 2.x." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HMMER2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1370" + } + ] + }, + { + "@id": "http://edamontology.org/data_1537", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about one or more specific protein 3D structure(s) or structural domains." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein report (structure)" + }, + { + "@value": "Protein property (structural)" + }, + { + "@value": "Protein structure report (domain)" + }, + { + "@value": "Protein structural property" + }, + { + "@value": "Protein structure-derived report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0896" + }, + { + "@id": "http://edamontology.org/data_2085" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3095", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Design (or predict) nucleic acid sequences with specific chemical or physical properties." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Gene design" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Nucleic_acid_design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + }, + { + "@id": "http://edamontology.org/operation_2430" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0175", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_2275" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The modelling of the three-dimensional structure of a protein using known sequence and structural data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Homology modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1236", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0850" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A file of intermediate results from a PSIBLAST search that is used for priming the search in the next PSIBLAST iteration." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A Psiblast checkpoint file uses ASN.1 Binary Format and usually has the extension '.asn'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Psiblast checkpoint file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1955", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1997" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylip interleaved sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "phylip sequence format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1184", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a concept from the ChEBI ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ChEBI concept ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1087" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0252", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Immunogen design" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict antigenicity, allergenicity / immunogenicity, allergic cross-reactivity etc of peptides and proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Immunogenicity prediction" + }, + { + "@value": "Antigenicity prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "B cell peptide immunogenicity prediction" + }, + { + "@value": "Hopp and Woods plotting" + }, + { + "@value": "MHC peptide immunogenicity prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is usually done in the development of peptide-specific antibodies or multi-epitope vaccines. Methods might use sequence data (for example motifs) and / or structural data." + }, + { + "@value": "Immunological system are cellular or humoral. In vaccine design to induces a cellular immune response, methods must search for antigens that can be recognized by the major histocompatibility complex (MHC) molecules present in T lymphocytes. If a humoral response is required, antigens for B cells must be identified." + }, + { + "@value": "This includes methods that generate a graphical rendering of antigenicity of a protein, such as a Hopp and Woods plot." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptide immunogenicity prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0250" + }, + { + "@id": "_:N9b4b1ddfc27e4e448b78988b3c6aeecb" + }, + { + "@id": "_:Na68f78a984454e8baff65b1e9133991e" + }, + { + "@id": "http://edamontology.org/operation_1777" + } + ] + }, + { + "@id": "_:N9b4b1ddfc27e4e448b78988b3c6aeecb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1534" + } + ] + }, + { + "@id": "_:Na68f78a984454e8baff65b1e9133991e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0804" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0451", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect recombination (hotspots and coldspots) and identify recombination breakpoints in a sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence alignment analysis (recombination detection)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Recombination detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + } + ] + }, + { + "@id": "http://edamontology.org/data_1598", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A genetic code for an organism." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A genetic code need not include detailed codon usage information." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic code" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0914" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0424", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict epitopes that bind to MHC class II molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0416" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Epitope mapping (MHC Class II)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2090", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0957" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a database (or ontology) entry version, such as name (or other identifier) or parent database, unique identifier of entry, data, author and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database entry version information" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3992", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "cigar" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compact Idiosyncratic Gapped Alignment Report format is a compressed (run-length encoded) pairwise alignment format. It is useful for representing long (e.g. genomic) pairwise alignments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CIGAR" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CIGAR format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://wiki.bits.vib.be/index.php/CIGAR/" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2920" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3639", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Quantification analysis using the AB SCIEX iTRAQ isobaric labelling workflow, wherein 2-8 reporter ions are measured in MS2 spectra near 114 m/z." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "iTRAQ" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3635" + } + ] + }, + { + "@id": "http://edamontology.org/data_2139", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A temperature concerning nucleic acid denaturation, typically the temperature at which the two strands of a hybridised or double stranded nucleic acid (DNA or RNA/DNA) molecule separate." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Melting temperature" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid melting temperature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2985" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2997", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more proteins (or some aspect) to identify similarities." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2424" + } + ] + }, + { + "@id": "http://edamontology.org/data_1283", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A map showing banding patterns derived from direct observation of a stained chromosome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Cytologic map" + }, + { + "@value": "Chromosome map" + }, + { + "@value": "Cytogenic map" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is the lowest-resolution physical map and can provide only rough estimates of physical (base pair) distances. Like a genetic map, they are limited to genetic markers of traits observable only in whole organisms." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cytogenetic map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1280" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3043", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein sequences and associated concepts such as sequence sites, alignments, motifs and profiles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequences" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2363", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning two-dimensional polygel electrophoresis." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "2D PAGE data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3279", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cluster (group) documents on the basis of their calculated similarity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Document clustering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Document_clustering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3437" + }, + { + "@id": "http://edamontology.org/operation_3432" + } + ] + }, + { + "@id": "http://edamontology.org/data_1150", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry from a database of disease." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Disease ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3667" + } + ] + }, + { + "@id": "http://edamontology.org/data_1792", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Symbol of a gene from the Mouse Genome Database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (MGD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1294", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Images based on GlobPlot prediction of intrinsic disordered regions and globular domains in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2969" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GlobPlot domain image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1527", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The titration curve of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein titration curve" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + }, + { + "@id": "http://edamontology.org/data_2884" + } + ] + }, + { + "@id": "http://edamontology.org/topic_4027", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "With ribosome profiling, ribosome-protected mRNA fragments are analyzed with RNA-seq techniques leading to a genome-wide measurement of the translation landscape." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ribo-seq" + }, + { + "@value": "RiboSeq" + }, + { + "@value": "RIBO-seq" + }, + { + "@value": "ribosomal footprinting" + }, + { + "@value": "Ribo-Seq" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "translation footprinting" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ribosome Profiling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Ribosome_profiling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3308" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0385", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify clusters of hydrophobic or charged residues in a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0393" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein hydropathy cluster calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3242", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://wiki.thebiogrid.org/doku.php/psi_mitab_file" + }, + { + "@id": "http://psicquic.github.io/MITAB27Format.html" + }, + { + "@id": "ftp://ftp.ebi.ac.uk/pub/databases/intact/current/psimitab/README" + }, + { + "@id": "https://wiki.reactome.org/index.php/PSI-MITAB_interactions" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "ftp://ftp.ebi.ac.uk/pub/databases/intact/current/psimitab/README" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Tabular Molecular Interaction format (MITAB), standardised by HUPO PSI MI." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PSI MI TAB (MITAB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2054" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2776", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a physical entity from the ConsensusPathDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ConsensusPathDB entity ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2917" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_3737", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The mean species diversity in sites or habitats at a local scale." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "α-diversity" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alpha diversity data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3707" + } + ] + }, + { + "@id": "http://edamontology.org/data_1262", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on peptide fragments of certain molecular weight(s) in one or more protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptide molecular weight hits" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1233" + } + ] + }, + { + "@id": "http://edamontology.org/data_0987", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a chromosome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chromosome name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0984" + }, + { + "@id": "_:Nee5afe8f7f5a44a0b8a9dbff3438acfd" + }, + { + "@id": "http://edamontology.org/data_2119" + } + ] + }, + { + "@id": "_:Nee5afe8f7f5a44a0b8a9dbff3438acfd", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0919" + } + ] + }, + { + "@id": "http://edamontology.org/data_2870", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A map showing distance between genetic markers estimated by radiation-induced breaks in a chromosome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "RH map" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The radiation method can break very closely linked markers providing a more detailed map. Most genetic markers and subsequences may be located to a defined map position and with a more precise estimates of distance than a linkage map." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Radiation hybrid map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1280" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0392", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate a residue contact map (typically all-versus-all inter-residue contacts) for a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein contact map calculation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Contact map calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0391" + }, + { + "@id": "_:N6cd4aa54f712441c8efd4a7d7628f634" + } + ] + }, + { + "@id": "_:N6cd4aa54f712441c8efd4a7d7628f634", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1547" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3799", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Counting and measuring experimentally determined observations into quantities." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Quantitation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Quantification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0325", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more phylogenetic trees." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example, to produce a consensus tree, subtrees, supertrees, calculate distances between trees or test topological similarity between trees (e.g. a congruence index) etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0324" + }, + { + "@id": "http://edamontology.org/operation_2424" + } + ] + }, + { + "@id": "http://edamontology.org/format_3685", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.1186/1752-0509-5-198" + }, + { + "@id": "http://doi.org/10.1007/978-3-540-88562-7_15" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://sed-ml.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://sed-ml.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Simulation Experiment Description Markup Language (SED-ML) is an XML format for encoding simulation setups, according to the MIASE (Minimum Information About a Simulation Experiment) requirements." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SED-ML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3167" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_2047", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein sequence and minimal metadata, typically an identifier of the sequence and/or a comment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0849" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence record (lite)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2846", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene regulatory networks." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0602" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene regulatory networks" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1452", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1449" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Matrix of integer numbers for amino acid comparison." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid comparison matrix (integers)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3721", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report about any kind of isolation source of biological material e.g. blood, water, soil." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Isolation source" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3717" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0601", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein chemical modifications, e.g. post-translational modifications." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Post-translational modifications" + }, + { + "@value": "Protein post-translational modification" + }, + { + "@value": "PTMs" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_modifications" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein chemical modifications" + }, + { + "@value": "Post-translation modifications" + }, + { + "@value": "Protein post-translational modifications" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "GO:0006464" + }, + { + "@value": "MOD:00000" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "EDAM does not describe all possible protein modifications. For fine-grained annotation of protein modification use the Gene Ontology (children of concept GO:0006464) and/or the Protein Modifications ontology (children of concept MOD:00000)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein modifications" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Post-translational_modification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0108" + } + ] + }, + { + "@id": "http://edamontology.org/data_1051", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of an ontology of biological or bioinformatics concepts and relations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + }, + { + "@id": "_:N523f96510f4b4fe0a1a1cb7b225ea4ac" + }, + { + "@id": "http://edamontology.org/data_2338" + } + ] + }, + { + "@id": "_:N523f96510f4b4fe0a1a1cb7b225ea4ac", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0582" + } + ] + }, + { + "@id": "http://edamontology.org/format_3257", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "n3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A shorthand non-XML serialisation of Resource Description Framework model, designed with human-readability in mind." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "N3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Notation3" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2376" + } + ] + }, + { + "@id": "http://edamontology.org/data_1390", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0863" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of more than two protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Multiple protein sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/file_extension", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'File extension' concept property ('file_extension' metadata tag) lists examples of usual file extensions of formats." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "N.B.: File extensions that are not correspondigly defined at http://filext.com are recorded in EDAM only if not in conflict with http://filext.com, and/or unique and usual within life-science computing." + }, + { + "@value": "Separated by bar ('|'), without a dot ('.') prefix, preferably not all capital characters." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "File extension" + } + ] + }, + { + "@id": "http://edamontology.org/operation_4032", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The prediction of DNA modifications (e.g. N4-methylcytosine and N6-Methyladenine) using, for example, statistical models." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA modification prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N6502b56c8a3f4c0ea7a2ffc5de745521" + }, + { + "@id": "_:Nc354d31503ac4d0891cfa2326f6e43d1" + }, + { + "@id": "http://edamontology.org/operation_0415" + }, + { + "@id": "_:N69a5390be8674023ad9d5e84f8330ba3" + }, + { + "@id": "_:Nbeed9363fc1a453ebeb08337d6bfb5d5" + }, + { + "@id": "_:N5ceb521c758644ea8f43ab50a354a0a5" + } + ] + }, + { + "@id": "_:N6502b56c8a3f4c0ea7a2ffc5de745521", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1276" + } + ] + }, + { + "@id": "_:Nc354d31503ac4d0891cfa2326f6e43d1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3295" + } + ] + }, + { + "@id": "_:N69a5390be8674023ad9d5e84f8330ba3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "_:Nbeed9363fc1a453ebeb08337d6bfb5d5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3494" + } + ] + }, + { + "@id": "_:N5ceb521c758644ea8f43ab50a354a0a5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1772" + } + ] + }, + { + "@id": "http://edamontology.org/format_1935", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GCG sequence file format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GCG SSF" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "GCG SSF (single sequence file) file format." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GCG" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3486" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0321", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF: UseResidueDB" + }, + { + "@value": "WHATIF: UseFileDB" + }, + { + "@value": "WHATIF: CorrectedPDBasXML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Evaluate the quality or correctness a protein three-dimensional model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein model validation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Residue validation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Model validation might involve checks for atomic packing, steric clashes (bumps), volume irregularities, agreement with electron density maps, number of amino acid residues, percentage of residues with missing or bad atoms, irregular Ramachandran Z-scores, irregular Chi-1 / Chi-2 normality scores, RMS-Z score on bonds and angles etc." + }, + { + "@value": "The PDB file format has had difficulties, inconsistencies and errors. Corrections can include identifying a meaningful sequence, removal of alternate atoms, correction of nomenclature problems, removal of incomplete residues and spurious waters, addition or removal of water, modelling of missing side chains, optimisation of cysteine bonds, regularisation of bond lengths, bond angles and planarities etc." + }, + { + "@value": "This includes methods that calculate poor quality residues. The scoring function to identify poor quality residues may consider residues with bad atoms or atoms with high B-factor, residues in the N- or C-terminal position, adjacent to an unstructured residue, non-canonical residues, glycine and proline (or adjacent to these such residues)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure validation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Structure_validation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2428" + }, + { + "@id": "_:Ncadeeffc576d477a900b58690f3607fb" + }, + { + "@id": "http://edamontology.org/operation_2406" + }, + { + "@id": "_:N21cbdb41a7994ec2b274b185032589ee" + } + ] + }, + { + "@id": "_:Ncadeeffc576d477a900b58690f3607fb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2275" + } + ] + }, + { + "@id": "_:N21cbdb41a7994ec2b274b185032589ee", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1539" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0262", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate or predict physical or chemical properties of nucleic acid molecules, including any non-positional properties of the molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid property calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N56ff19626b8344589684f89261aff3e9" + }, + { + "@id": "http://edamontology.org/operation_3438" + } + ] + }, + { + "@id": "_:N56ff19626b8344589684f89261aff3e9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0912" + } + ] + }, + { + "@id": "http://edamontology.org/data_1348", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3355" + }, + { + "@id": "http://edamontology.org/data_3354" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Emission and transition counts of a hidden Markov model, generated once HMM has been determined, for example after residues/gaps have been assigned to match, delete and insert states." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HMM emission and transition counts" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_4002", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "pickle" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used by Python pickle module for serializing and de-serializing a Python object structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pickle" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "https://docs.python.org/2/library/pickle.html" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_2606", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name (not necessarily stable) an entry (RNA family) from the RFAM database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RFAM name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2355" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1825", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate for each residue in a protein structure all its backbone torsion angles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0249" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Backbone torsion angle calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0284", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate codon usage statistics and create a codon usage table." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Codon usage table construction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage table generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3429" + }, + { + "@id": "_:N3c6241bb52674e9da1431fcf8e070b75" + }, + { + "@id": "http://edamontology.org/operation_0286" + } + ] + }, + { + "@id": "_:N3c6241bb52674e9da1431fcf8e070b75", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1597" + } + ] + }, + { + "@id": "http://edamontology.org/data_1080", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of a report of gene expression (e.g. a gene expression profile) from a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene expression profile identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene expression report ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:N86a8e431f60e4034b3704ca46d7b8dd2" + } + ] + }, + { + "@id": "_:N86a8e431f60e4034b3704ca46d7b8dd2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3111" + } + ] + }, + { + "@id": "http://edamontology.org/data_1708", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image of RNA secondary structure, knots, pseudoknots etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA secondary structure image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2968" + } + ] + }, + { + "@id": "http://edamontology.org/data_1686", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBOSS megamerger log file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS megamerger log file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1493", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of RNA tertiary (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure alignment (RNA)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1482" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3224", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse gene expression patterns (typically from DNA microarray datasets) to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2436" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene set testing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0532", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse one or more gene expression profiles, typically to interpret them in functional terms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene expression profile analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0843", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An entry (retrievable via URL) from a biological database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database entry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0353", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0346" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search sequence(s) or a sequence database for sequences that are similar to a query sequence using a global alignment-based method." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes tools based on the Needleman and Wunsch algorithm." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database search (by sequence using global alignment-based methods)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2704", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier assigned by the I.M.A.G.E. consortium to a clone (cloned molecular sequence)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "I.M.A.G.E. cloneID" + }, + { + "@value": "IMAGE cloneID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Clone ID (IMAGE)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1855" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0504", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align (superimpose) more than two molecular tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure alignment (multiple)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Multiple protein structure alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes methods that use an existing alignment." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Multiple structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0295" + } + ] + }, + { + "@id": "http://edamontology.org/data_1064", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a set of molecular sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence set ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N659f393a73b24003bd7dda084e6d9374" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N659f393a73b24003bd7dda084e6d9374", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0850" + } + ] + }, + { + "@id": "http://edamontology.org/data_3424", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.5" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Raw biological or biomedical image generated by some experimental technique." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Raw image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://semanticscience.org/resource/SIO_000081" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2968" + } + ] + }, + { + "@id": "http://edamontology.org/format_3888", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://ambermd.org/formats.html#frcmod" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "AMBER frcmod (Force field Modification) is a file format to store any modification to the standard force field needed for a particular molecule to be properly represented in the simulation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "AMBER frcmod" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3884" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3770", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.uniprot.org/docs/uniprot.xsd" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "UniProtKB XML sequence features format is an XML format available for downloading UniProt entries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "UniProt XML format" + }, + { + "@value": "UniProt XML" + }, + { + "@value": "UniProtKB XML format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniProtKB XML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2547" + }, + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2552" + } + ] + }, + { + "@id": "http://edamontology.org/format_3600", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.fileformat.info/format/jpeg/egff.htm" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "RGB file format is the native raster graphics file format for Silicon Graphics workstations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "rgb" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_1119", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier or name of a profile from the JASPAR database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "JASPAR profile ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1115" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2819", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/topic_3500" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Invertebrates, e.g. information on a specific invertebrate genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The resource may be specific to an invertebrate, a group of invertebrates or all invertebrates." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Invertebrates" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3502", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse a dataset with respect to concepts from an ontology of chemical structure, leveraging chemical similarity information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Chemical class enrichment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical similarity enrichment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N5364258635104e65a47c2f37449fbd44" + }, + { + "@id": "http://edamontology.org/operation_3501" + } + ] + }, + { + "@id": "_:N5364258635104e65a47c2f37449fbd44", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1775" + } + ] + }, + { + "@id": "http://edamontology.org/data_2960", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_1583" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1583" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid temperature profile" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3897", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict or detect ligand-binding sites in proteins; a region of a protein which reversibly binds a ligand for some biochemical purpose, such as transport or regulation of protein function." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Ligand-binding site detection" + }, + { + "@value": "Peptide-protein binding prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ligand-binding site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Ligand_(biochemistry)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2575" + } + ] + }, + { + "@id": "http://edamontology.org/format_1950", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PDB sequence format (ATOM lines)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "pdb format in EMBOSS." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pdbatom" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_1475" + } + ] + }, + { + "@id": "http://edamontology.org/data_3807", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.19" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Raw DDD movie acquisition from electron microscopy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EM Movie" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N427ff45305124e49be135607f478eb64" + }, + { + "@id": "http://edamontology.org/data_3424" + } + ] + }, + { + "@id": "_:N427ff45305124e49be135607f478eb64", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1317" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3566", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Simulate gene expression data, e.g. for purposes of benchmarking." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Simulated gene expression data generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2426" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0265", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect frameshifts in DNA sequences, including frameshift sites and signals, and frameshift errors from sequencing projects." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Frameshift error detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods include sequence alignment (if related sequences are available) and word-based sequence comparison." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Frameshift detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3195" + }, + { + "@id": "http://edamontology.org/operation_3227" + }, + { + "@id": "_:Nf101879a06254acb899e1e5ee36d2887" + } + ] + }, + { + "@id": "_:Nf101879a06254acb899e1e5ee36d2887", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3168" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0282", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a genetic (linkage) map of a DNA sequence (typically a chromosome) showing the relative positions of genetic markers based on estimation of non-physical distances." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Genetic cartography" + }, + { + "@value": "Linkage mapping" + }, + { + "@value": "Genetic map construction" + }, + { + "@value": "Genetic map generation" + }, + { + "@value": "Functional mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "QTL mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Mapping involves ordering genetic loci along a chromosome and estimating the physical distance between loci. A genetic map shows the relative (not physical) position of known genes and genetic markers." + }, + { + "@value": "This includes mapping of the genetic architecture of dynamic complex traits (functional mapping), e.g. by characterisation of the underlying quantitative trait loci (QTLs) or nucleotides (QTNs)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gene_mapping#Gene_mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N4f5b3e47d763464ab13435fd0e7f1cb5" + }, + { + "@id": "http://edamontology.org/operation_2520" + }, + { + "@id": "http://edamontology.org/operation_0283" + } + ] + }, + { + "@id": "_:N4f5b3e47d763464ab13435fd0e7f1cb5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1278" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2482", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2480" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a molecular secondary structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Secondary structure processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2923", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Some variant of Mega format for (typically aligned) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mega variant" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/data_2613", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "G[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a glycan ligand from the KEGG GLYCAN database (a subset of KEGG LIGAND)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KEGG Glycan ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2900" + }, + { + "@id": "http://edamontology.org/data_1154" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0423", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict epitopes that bind to MHC class I molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0416" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Epitope mapping (MHC Class I)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1480", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0886" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of more than two molecular tertiary (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment (multiple)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3213", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate an index of a genome sequence using a suffix arrays algorithm." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3211" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A suffix array consists of the lexicographically sorted list of suffixes of a genome." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome indexing (suffix arrays)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3656", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Experimental techniques to purify a protein-DNA crosslinked complex. Usually sequencing follows e.g. in the techniques ChIP-chip, ChIP-seq and MeDIP-seq." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Chromatin immunoprecipitation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Immunoprecipitation_experiment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Immunoprecipitation experiment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Immunoprecipitation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3361" + } + ] + }, + { + "@id": "http://edamontology.org/data_1403", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "This is the threshold drop in score at which extension of word alignment is halted." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drop off score" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1394" + } + ] + }, + { + "@id": "http://edamontology.org/data_0959", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3106" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Textual metadata on a submitted or completed job." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Job metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2616", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "DIP[\\:\\-][0-9]{3}[EN]" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the DIP database of protein-protein interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DIP ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1074" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3574", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.1.2 Human genetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of inheritance in human beings." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Human_genetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Human genetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Human_genetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3053" + } + ] + }, + { + "@id": "http://edamontology.org/data_2622", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "HMDB[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a small molecule metabolite from the Human Metabolome Database (HMDB)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "HMDB ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Compound ID (HMDB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2894" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "_:Nc212cedf943d4d7d8fc24465839bc521", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "EDAM does not distinguish a data record (a tool-understandable information artefact) from data or datum (its content, the tool-understandable encoding of an information)." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "Data record" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3226", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify biologically interesting variants by prioritizing individual variants, for example, homozygous variants absent in control genomes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Variant prioritisation can be used for example to produce a list of variants responsible for 'knocking out' genes in specific genomes. Methods amino acid substitution, aggregative approaches, probabilistic approach, inheritance and unified likelihood-frameworks." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Variant prioritisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3197" + } + ] + }, + { + "@id": "http://edamontology.org/format_2571", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a raw molecular sequence (i.e. the alphabet used)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Raw sequence format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://www.onto-med.de/ontologies/gfo.owl#Symbol_sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N029f28abb1314e0ea1ed07102affa531" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N029f28abb1314e0ea1ed07102affa531", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2044" + } + ] + }, + { + "@id": "http://edamontology.org/data_3153", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An image of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2968" + } + ] + }, + { + "@id": "http://edamontology.org/data_0979", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name or other identifier of an entity feature (a physical part or region of a discrete biological entity, or a feature that can be mapped to such a thing)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Entity feature identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3013", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/goldenPath/help/axt.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/goldenPath/help/axt.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "axt format of alignments, typically produced from BLASTZ." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "axt" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2920" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3032", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0632" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The design of primers for PCR and DNA amplification or the design of molecular probes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Primer or probe design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2888", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0849" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence record (full)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2015", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2014" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a sequence-HMM profile alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence-profile alignment (HMM) format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3402", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.2 Anaesthesiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Anaesthesia and anaesthetics." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Anaesthetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Anaesthesiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Anaesthesiology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Anesthesiology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_1362", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A profile (typically representing a sequence alignment) that is weighted matrix of nucleotide (or amino acid) counts per position." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PWM" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Contributions of individual sequences to the matrix might be uneven (weighted)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Position weight matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2854" + } + ] + }, + { + "@id": "http://edamontology.org/format_3821", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://visant.bu.edu/misi/visML.htm" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Default XML format of VisANT, containing all the network information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "VisANT xml format" + }, + { + "@value": "VisANT xml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "VisML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2013" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_1260", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on ambiguity in molecular sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence property (ambiguity)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence ambiguity report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1254" + } + ] + }, + { + "@id": "http://edamontology.org/has_function", + "@type": [ + "http://www.w3.org/2002/07/owl#ObjectProperty" + ], + "http://purl.obolibrary.org/obo/is_anti_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_reflexive": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/transitive_over": [ + { + "@value": "OBO_REL:is_a" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'A has_function B' defines for the subject A, that it has the object B as its function." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "OBO_REL:bearer_of" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#isCyclic": [ + { + "@value": true + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is (or is in a role of) a function, or an entity outside of an ontology that is (or is in a role of) a function specification. In the scope of EDAM, 'has_function' serves only for relating annotated entities outside of EDAM with 'Operation' concepts." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "has function" + } + ], + "http://www.w3.org/2000/01/rdf-schema#range": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ], + "http://www.w3.org/2002/07/owl#inverseOf": [ + { + "@id": "http://edamontology.org/is_function_of" + } + ], + "http://www.w3.org/2004/02/skos/core#broadMatch": [ + { + "@id": "http://www.loa.istc.cnr.it/ontologies/DOLCE-Lite.owl#has-quality" + } + ], + "http://www.w3.org/2004/02/skos/core#closeMatch": [ + { + "@id": "http://purl.obolibrary.org/obo/OBI_0000306" + } + ], + "http://www.w3.org/2004/02/skos/core#exactMatch": [ + { + "@id": "http://wsio.org/has_function" + } + ] + }, + { + "@id": "http://edamontology.org/format_3014", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.bx.psu.edu/miller_lab/dist/lav_format.html" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "lav" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.bx.psu.edu/miller_lab/dist/lav_format.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "LAV format of alignments generated by BLASTZ and LASTZ." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "LAV" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2920" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1875", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a taxon from the NCBI taxonomy database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NCBI taxon" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1868" + } + ] + }, + { + "@id": "http://edamontology.org/data_1721", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0966" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term from the UMLS vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UMLS" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3683", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://code.google.com/archive/p/qcml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://code.google.com/archive/p/qcml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "qcML is an XML format for quality-related data of mass spectrometry and other high-throughput measurements." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The focus of qcML is towards mass spectrometry based proteomics, but the format is suitable for metabolomics and sequencing as well." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "qcML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_3167" + }, + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/format_2333", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Binary format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Only specific native binary formats are listed under 'Binary format' in EDAM. Generic binary formats - such as any data being zipped, or any XML data being serialised into the Efficient XML Interchange (EXI) format - are not modelled in EDAM. Refer to http://wsio.org/compression_004." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Binary format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1915" + } + ] + }, + { + "@id": "http://edamontology.org/format_2066", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report on sequence hits and associated data from searching a sequence database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database hits (sequence) format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:N5fba08c413a24f0295e41708d18f2b3b" + } + ] + }, + { + "@id": "_:N5fba08c413a24f0295e41708d18f2b3b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0857" + } + ] + }, + { + "@id": "http://edamontology.org/data_2875", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1883" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An entry (resource) from the DRCAT bioinformatics resource catalogue." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DRCAT resource" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1826", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate for each residue in a protein structure all its torsion angles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0249" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Full torsion angle calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_4023", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "https://doi.org/10.1021/ci990052b" + }, + { + "@id": "https://doi.org/10.1039/CS9972600001" + }, + { + "@id": "https://doi.org/10.1186/1758-2946-3-44" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://cml.sourceforge.net/" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://www.ch.ic.ac.uk/omf/cml/doc/examples/" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "cml" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "http://www-pmr.ch.cam.ac.uk/wiki/Main_Page" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Chemical Markup Language (CML) is an XML-based format for encoding detailed information about a wide range of chemical concepts." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ChemML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "cml" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "http://www-pmr.ch.cam.ac.uk/wiki/Chemical_Markup_Language" + }, + { + "@id": "https://en.wikipedia.org/wiki/Chemical_Markup_Language" + }, + { + "@id": "http://fileformats.archiveteam.org/wiki/CML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2030" + } + ] + }, + { + "@id": "http://edamontology.org/oldParent", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EDAM concept URI of the erstwhile \"parent\" of a now deprecated concept." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Old parent" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0271", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "This is a \"organisational class\" not very useful for annotation per se." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2480" + }, + { + "@id": "http://edamontology.org/operation_2423" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0474" + }, + { + "@id": "http://edamontology.org/operation_0475" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict tertiary structure of a molecular (biopolymer) sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0460", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate and plot a DNA or DNA/RNA temperature profile." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid temperature profile plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0456" + } + ] + }, + { + "@id": "http://edamontology.org/format_2570", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for an RNA sequence (characters ACGU only) without unknown positions, ambiguity or non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "completely unambiguous pure rna sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2567" + }, + { + "@id": "http://edamontology.org/format_1213" + } + ] + }, + { + "@id": "http://edamontology.org/data_0918", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "stable, naturally occurring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA variation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2189", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1963" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "ipi sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ipi" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2158", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used for report on restriction enzyme recognition sites in nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid features (restriction sites) format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0771", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_3307" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Theoretical biology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Theoretical biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/regex", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'Regular expression' concept property ('regex' metadata tag) specifies the allowed values of types of identifiers (accessions). Applicable to some other types of data, too." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Regular expression" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2284", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate a density plot (of base composition) for a nucleotide sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid density plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0236" + }, + { + "@id": "http://edamontology.org/operation_0564" + } + ] + }, + { + "@id": "http://edamontology.org/data_1193", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a FASTA tool." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes 'fasta3', 'fastx3', 'fasty3', 'fastf3', 'fasts3' and 'ssearch'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tool name (FASTA)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1190" + } + ] + }, + { + "@id": "http://edamontology.org/data_2370", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a polyA signal from the ASTD database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ASTD ID (polya)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2367" + } + ] + }, + { + "@id": "http://edamontology.org/format_1580", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the ProDom protein domain classification database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ProDom entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1142", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "PD[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A ProDom domain family accession number." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "ProDom is a protein domain family database." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ProDom accession number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2910" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3314", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "VT 1.7.10 Polymer science" + }, + { + "@value": "Chemical science" + }, + { + "@value": "Polymer science" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.7.7 Mathematical chemistry" + }, + { + "@value": "VT 1.7.2 Chemistry" + }, + { + "@value": "VT 1.7.5 Electrochemistry" + }, + { + "@value": "VT 1.7.6 Inorganic and nuclear chemistry" + }, + { + "@value": "VT 1.7.3 Colloid chemistry" + }, + { + "@value": "VT 1.7.9 Physical chemistry" + }, + { + "@value": "VT 1.7 Chemical sciences" + }, + { + "@value": "VT 1.7.8 Organic chemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The composition and properties of matter, reactions, and the use of reactions to create new substances." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Chemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Mathematical chemistry" + }, + { + "@value": "Organic chemistry" + }, + { + "@value": "Inorganic chemistry" + }, + { + "@value": "Physical chemistry" + }, + { + "@value": "Nuclear chemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemistry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Chemistry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0164", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The comparison and grouping together of molecular sequences on the basis of their similarities." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes systems that generate, process and analyse sequence clusters." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence clustering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0200", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Microarrays, for example, to process microarray data or design probes and experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microarrays" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D046228" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1188", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "(doi\\:)?[0-9]{2}\\.[0-9]{4}/.*" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Digital Object Identifier (DOI) of a published article." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Digital Object Identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DOI" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1088" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2951", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0295" + }, + { + "@id": "http://edamontology.org/operation_0292" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) an alignment of two or more molecular sequences, structures or derived data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alignment processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1921", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for molecular sequence alignment information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alignment format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N071af110fd0846ef884a3dd889960dfb" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N071af110fd0846ef884a3dd889960dfb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0863" + } + ] + }, + { + "@id": "http://edamontology.org/data_1299", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1255" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Location of short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The report might include derived data map such as classification, annotation, organisation, periodicity etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence features (repeats)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0278", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict RNA secondary structure (for example knots, pseudoknots, alternative structures etc)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "RNA shape prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might use RNA motifs, predicted intermolecular contacts, or RNA sequence-structure compatibility (inverse RNA folding)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA secondary structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0415" + }, + { + "@id": "http://edamontology.org/operation_0475" + }, + { + "@id": "http://edamontology.org/operation_2439" + }, + { + "@id": "_:N79602d2183f64d8e8ec04e71abf81d1c" + } + ] + }, + { + "@id": "_:N79602d2183f64d8e8ec04e71abf81d1c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0880" + } + ] + }, + { + "@id": "http://edamontology.org/format_1986", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Pearson MARKX1 alignment format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "markx1" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2922" + } + ] + }, + { + "@id": "http://edamontology.org/data_2167", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Density plot (of base composition) for a nucleotide sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid density plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2884" + }, + { + "@id": "http://edamontology.org/data_1261" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2501", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2945" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2481" + }, + { + "@id": "http://edamontology.org/operation_2478" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) nucleic acid sequence or structural data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1392", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of multiple sequences aligned by DIALIGN package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DIALIGN format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1731", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The definition of a concept from an ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Ontology class definition" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology concept definition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0967" + } + ] + }, + { + "@id": "http://edamontology.org/data_1908", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:Tropgene_locus" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a locus from the Tropgene database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID (Tropgene)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1893" + } + ] + }, + { + "@id": "http://edamontology.org/data_2345", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a pathway from the ConsensusPathDB pathway database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (ConsensusPathDB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2365" + }, + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2917" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0624", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Study of chromosomes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0654" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chromosomes" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1502", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Chemical classification (small, aliphatic, aromatic, polar, charged etc) of amino acids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Chemical classes (amino acids)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid index (chemical classes)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1501" + } + ] + }, + { + "@id": "http://edamontology.org/data_2974", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - \"raw\" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata)." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.23" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_0848" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A raw protein sequence (string of characters)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2976" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence (raw)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3815", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://en.wikipedia.org/wiki/Chemical_table_file#Molfile" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An MDL Molfile is a file format for holding information about the atoms, bonds, connectivity and coordinates of a molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molfile" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2030" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3456", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A method used to refine a structure by moving the whole molecule or parts of it as a rigid unit, rather than moving individual atoms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Rigid body refinement usually follows molecular replacement in the assignment of a structure from diffraction data." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Rigid body refinement" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0322" + } + ] + }, + { + "@id": "http://edamontology.org/data_1074", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Molecular interaction ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a report of protein interactions from a protein interaction database (typically)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N3354df54d1334f8abb2c2a8a09e85e4d" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N3354df54d1334f8abb2c2a8a09e85e4d", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0906" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1832", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate protein residue contacts with nucleic acids in a structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2950" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Residue contact calculation (residue-nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3346", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The search and retrieval from a database on the basis of molecular sequence similarity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0364", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a random sequence, for example, with a specific character composition." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Random sequence generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0230" + } + ] + }, + { + "@id": "http://edamontology.org/data_0991", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique registry number of a chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical registry number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2894" + } + ] + }, + { + "@id": "http://edamontology.org/format_1998", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylip non-interleaved format for (aligned) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PHYLIP sequential format" + }, + { + "@value": "phylipnon" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PHYLIP sequential" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2924" + } + ] + }, + { + "@id": "http://edamontology.org/data_1244", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0850" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "File of one or more pairs of primer sequences, as used by EMBOSS primersearch application." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "primersearch primer pairs sequence record" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2697", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Takifugu rubripes' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Takifugu rubripes')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0972", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information resulting from text mining." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Text mining output" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A text mining abstract will typically include an annotated a list of words or sentences extracted from one or more scientific articles." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Text mining report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + }, + { + "@id": "http://edamontology.org/data_2526" + } + ] + }, + { + "@id": "http://edamontology.org/format_1336", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of EMBASSY domain hits file (DHF) of hits (sequences) with domain classification information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The hits are relatives to a SCOP or CATH family and are found from a search of a sequence database." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "dhf" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2066" + } + ] + }, + { + "@id": "http://edamontology.org/data_0907", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Protein classification data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a specific protein family or other classification or group of protein sequences or structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein family annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein family report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N887781b954374226a0da38e4cc2f890c" + }, + { + "@id": "http://edamontology.org/data_0896" + } + ] + }, + { + "@id": "_:N887781b954374226a0da38e4cc2f890c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0623" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2491", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify potential hydrogen bonds between amino acid residues." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0394" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hydrogen bond calculation (inter-residue)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3898", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict or detect metal ion-binding sites in proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein metal-binding site prediction" + }, + { + "@value": "Metal-binding site detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metal-binding site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Metalloprotein" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2575" + } + ] + }, + { + "@id": "http://edamontology.org/data_1073", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an index of amino acid physicochemical and biochemical property data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid index ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:Neeec26e6669f4f00a47dcb1dad9c59ed" + }, + { + "@id": "http://edamontology.org/data_3036" + } + ] + }, + { + "@id": "_:Neeec26e6669f4f00a47dcb1dad9c59ed", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1501" + } + ] + }, + { + "@id": "http://edamontology.org/data_3952", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.wikipathways.org" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "WP[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a pathway from the WikiPathways pathway database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "WikiPathways pathway ID" + }, + { + "@value": "WikiPathways ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (WikiPathways)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2365" + } + ] + }, + { + "@id": "http://edamontology.org/data_2216", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The number of a codon, for instance, at which a mutation is located." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1016" + } + ] + }, + { + "@id": "http://edamontology.org/data_1542", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on the solvent accessible or buried surface area of a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept covers definitions of the protein surface, interior and interfaces, accessible and buried residues, surface accessible pockets, interior inaccessible cavities etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein solvent accessibility" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/data_2994", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Weights for sequence positions or characters in phylogenetic analysis where zero is defined as unweighted." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic character weights" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2523" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0204", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The regulation of gene expression." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Regulatory genomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene regulation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Regulation_of_gene_expression" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2942", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise gene expression data after hierarchical clustering for representing hierarchical relationships." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Expression data tree-map rendering" + }, + { + "@value": "Treemapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Microarray tree-map rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Treemap visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Treemapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0571" + } + ] + }, + { + "@id": "http://edamontology.org/data_0914", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data derived from analysis of codon usage (typically a codon usage table) of DNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Codon usage report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + }, + { + "@id": "_:Na45ab161ccf54831bb3d36f2b7098210" + } + ] + }, + { + "@id": "_:Na45ab161ccf54831bb3d36f2b7098210", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ] + }, + { + "@id": "http://edamontology.org/data_1725", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0966" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term from the MGED ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MGED" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2555", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML format for molecular sequence alignment information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alignment format (XML)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1921" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0409", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict the solubility or atomic solvation energy of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein solubility prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2574" + }, + { + "@id": "_:N69b1acfeb52e40a492992b287d1968e0" + } + ] + }, + { + "@id": "_:N69b1acfeb52e40a492992b287d1968e0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1524" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0084", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of evolutionary relationships amongst organisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Phylogeny" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Phylogeny reconstruction" + }, + { + "@value": "Phylogenetic stratigraphy" + }, + { + "@value": "Phylogenetic clocks" + }, + { + "@value": "Phylogenetic dating" + }, + { + "@value": "Phylogenetic simulation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes diverse phylogenetic methods, including phylogenetic tree construction, typically from molecular sequence or morphological data, methods that simulate DNA sequence evolution, a phylogenetic tree or the underlying data, or which estimate or use molecular clock and stratigraphic (age) data, methods for studying gene evolution etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogeny" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Phylogenetic_tree" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D010802" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3307" + }, + { + "@id": "http://edamontology.org/topic_3299" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3541", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Post-translation modifications in a protein sequence, typically describing the specific sites involved." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0601" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein post-translational modifications" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3960", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A statistical procedure that uses an orthogonal transformation to convert a set of observations of possibly correlated variables into a set of values of linearly uncorrelated variables called principal components." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Principal component analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Principal_component_analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2238" + } + ] + }, + { + "@id": "http://edamontology.org/data_3181", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report about a DNA sequence assembly." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Assembly report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This might include an overall quality assessment of the assembly and summary statistics including counts, average length and number of bases for reads, matches and non-matches, contigs, reads in pairs etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence assembly report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0867" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0324", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse an existing phylogenetic tree or trees, typically to detect features or make predictions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Phylogenetic modelling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Phylgenetic modelling is the modelling of trait evolution and prediction of trait values using phylogeny as a basis." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2945" + }, + { + "@id": "_:N183f7b6aa57549b6b65a410cff75830d" + } + ] + }, + { + "@id": "_:N183f7b6aa57549b6b65a410cff75830d", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0084" + } + ] + }, + { + "@id": "http://edamontology.org/data_3270", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/example": [ + { + "@value": "ENSGT00390000003602" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier for a gene tree from the Ensembl database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Ensembl ID (gene tree)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl gene tree ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1068" + }, + { + "@id": "http://edamontology.org/data_2610" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_3250", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://psidev.info" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://psidev.info" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "spML is the format for describing proteomics sample processing, other than using gels, prior to mass spectrometric protein identification, standardised by HUPO PSI PS. It may also be applicable for metabolomics." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "spML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_3167" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3912", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The application of biotechnology to directly manipulate an organism's genes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Genetic modification" + }, + { + "@value": "Genetic manipulation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Genetic_engineering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Genome engineering" + }, + { + "@value": "Genome editing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic engineering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Genetic_engineering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3297" + }, + { + "@id": "http://edamontology.org/topic_3053" + } + ] + }, + { + "@id": "http://edamontology.org/data_1132", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of an InterPro entry, usually indicating the type of protein matches for that entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InterPro entry name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nfcf0a7e8bd5d4035b83de2908e9b6b7f" + }, + { + "@id": "http://edamontology.org/data_1131" + } + ] + }, + { + "@id": "_:Nfcf0a7e8bd5d4035b83de2908e9b6b7f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1355" + } + ] + }, + { + "@id": "http://edamontology.org/topic_4019", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Biosciences, or life sciences, include fields of study related to life, living beings, and biomolecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Life sciences" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biosciences" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/List_of_life_sciences" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0608", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_2229" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "General cell culture or data on a specific cell lines." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell and tissue culture" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1765", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1235" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTA sequence database (based on COMBS sequence data) for CATH domains (clustered at different levels of sequence identity)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH representative domain sequences (COMBS)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3709", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Tab-delimited text files of GenePattern that contain a column for each sample, a row for each gene, and an expression value for each gene in each sample." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GCT format" + }, + { + "@value": "Res format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GCT/Res format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2058" + } + ] + }, + { + "@id": "http://edamontology.org/data_2667", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]{1,5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of an entry from the MMDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MMDB accession" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MMDB ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1070" + } + ] + }, + { + "@id": "http://edamontology.org/format_3167", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for annotation on a laboratory experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Experiment annotation format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nbe762b6874f4440c82b4944c22de5205" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Nbe762b6874f4440c82b4944c22de5205", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2531" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0247", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse the architecture (spatial arrangement of secondary structure) of protein structure(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein architecture analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2406" + } + ] + }, + { + "@id": "http://edamontology.org/data_2375", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a spot from a two-dimensional (protein) gel from a HSC-2DPAGE database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Spot ID (HSC-2DPAGE)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2373" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_2159", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.10" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used for report on coding regions in nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/format_2031" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene features (coding region) format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3530", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Genetic information processing pathways." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0602" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic information processing pathways" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3143", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a 'superfamily' node from the SCOP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SCOP superfamily" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3021", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.uniprot.org/help/accession_numbers" + } + ], + "http://edamontology.org/example": [ + { + "@value": "P43353|Q7M1G0|Q9C199|A5A6J6" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[OPQ][0-9][A-Z0-9]{3}[0-9]|[A-NR-Z][0-9]([A-Z][A-Z0-9]{2}[0-9]){1,2}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of a UniProt (protein sequence) database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "UniProt accession number" + }, + { + "@value": "UniProt entry accession" + }, + { + "@value": "UniProtKB accession number" + }, + { + "@value": "UniProtKB accession" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "TrEMBL entry accession" + }, + { + "@value": "Swiss-Prot entry accession" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniProt accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1096" + } + ] + }, + { + "@id": "http://edamontology.org/format_3729", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.ncbi.nlm.nih.gov/books/NBK154410/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Input format used by the Database of Genotypes and Phenotypes (dbGaP)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The Database of Genotypes and Phenotypes (dbGaP) is a National Institutes of Health (NIH) sponsored repository charged to archive, curate and distribute information produced by studies investigating the interaction of genotype and phenotype." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "dbGaP format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3795", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A technique whereby molecules with desired properties and function are isolated from libraries of random molecules, through iterative cycles of selection, amplification, and mutagenesis." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "In vitro selection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3095" + } + ] + }, + { + "@id": "http://edamontology.org/format_3610", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://en.wikipedia.org/wiki/Phred_quality_score" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTQ format subset for Phred sequencing quality score data only (no sequences) for SOLiD data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For SOLiD data, the sequence is in color space, except the first position. The quality values are those of the Sanger format." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "qualsolid" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3607" + } + ] + }, + { + "@id": "http://edamontology.org/data_1547", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An amino acid residue contact map for a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein contact map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0906" + } + ] + }, + { + "@id": "http://edamontology.org/data_2634", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "(ISBN)?(-13|-10)?[:]?[ ]?([0-9]{2,3}[ -]?)?[0-9]{1,5}[ -]?[0-9]{1,7}[ -]?[0-9]{1,6}[ -]?([0-9]|X)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The International Standard Book Number (ISBN) is for identifying printed books." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ISBN" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2633" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0465", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Assess binding specificity of putative siRNA sequence(s), for example for a functional assay, typically with respect to designing specific siRNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "siRNA binding specificity prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Na28c6e58413540fdbd6e05998a3e3728" + }, + { + "@id": "http://edamontology.org/operation_0443" + } + ] + }, + { + "@id": "_:Na28c6e58413540fdbd6e05998a3e3728", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0659" + } + ] + }, + { + "@id": "http://edamontology.org/data_1772", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A numerical value, that is some type of scored value arising for example from a prediction method." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Score" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3038", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Molecular secondary or tertiary (3D) structural data resources, typically of proteins and nucleic acids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure databases" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2187", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A text sequence format resembling uniprotkb entry format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniProt-like (text)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2547" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0563", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Reformat a codon usage table." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0335" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage table formatting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1354", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Some type of statistical model representing a (typically multiple) sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence profile" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://semanticscience.org/resource/SIO_010531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0860" + }, + { + "@id": "_:N70ac3e95c66a4b3fac938ddab12566ca" + } + ] + }, + { + "@id": "_:N70ac3e95c66a4b3fac938ddab12566ca", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3516", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Genotyping_experiment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genotyping experiment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Genotyping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3361" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3459", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Clustering of molecular sequences on the basis of their function, typically using information from an ontology of gene function, or some other measure of functional phenotype." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Functional sequence clustering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Functional clustering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nb83544e612df4afaac7591f9fa995230" + }, + { + "@id": "http://edamontology.org/operation_0291" + } + ] + }, + { + "@id": "_:Nb83544e612df4afaac7591f9fa995230", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1775" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3902", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict or detect RNA-binding sites in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein-RNA binding site prediction" + }, + { + "@value": "Protein-RNA binding site detection" + }, + { + "@value": "RNA binding site detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA binding site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0420" + } + ] + }, + { + "@id": "http://edamontology.org/data_3265", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a HGMD database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "HGMD identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HGMD ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2294" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2661", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Structural and associated data for toxic chemical substances." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0154" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Toxins and targets" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2891", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of a mathematical model, typically an entry from a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biological model accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1085" + } + ] + }, + { + "@id": "http://edamontology.org/data_2705", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]{7}|GO:[0-9]{7}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a 'cellular component' concept from the Gene Ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GO concept identifier (cellular compartment)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GO concept ID (cellular component)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1176" + } + ] + }, + { + "@id": "http://purl.org/dc/elements/1.1/title", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/data_2193", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Basic information on any arbitrary database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database entry metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2337" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0578", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "DNA circular map rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Draw a circular maps of DNA, for example a plasmid map." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Plasmid map drawing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0573" + } + ] + }, + { + "@id": "http://edamontology.org/format_3583", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The bedGraph format allows display of continuous-valued data in track format. This display type is useful for probability scores and transcriptome data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Holds a tab-delimited chromosome /start /end / datavalue dataset." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "bedgraph" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2919" + } + ] + }, + { + "@id": "http://edamontology.org/data_2709", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a gene expression profile from the CleanEx database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CleanEx entry name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1080" + } + ] + }, + { + "@id": "http://edamontology.org/data_1466", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a tRNA tertiary (3D) structure, including tmRNA, snoRNAs etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "tRNA structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1465" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3520", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Proteomics experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Proteomics_experiment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Data-independent acquisition" + }, + { + "@value": "Spectrum demultiplexing" + }, + { + "@value": "Mass spectrometry experiments" + }, + { + "@value": "Mass spectrometry" + }, + { + "@value": "2D PAGE experiment" + }, + { + "@value": "MS" + }, + { + "@value": "DIA" + }, + { + "@value": "Northern blot experiment" + }, + { + "@value": "MS experiments" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes two-dimensional gel electrophoresis (2D PAGE) experiments, gels or spots in a gel. Also mass spectrometry - an analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase. Also Northern blot experiments." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Proteomics experiment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Proteomics" + }, + { + "@id": "https://en.wikipedia.org/wiki/Proteomics_Standards_Initiative" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3361" + } + ] + }, + { + "@id": "http://edamontology.org/format_2559", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A format resembling GenBank entry (plain text) format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept may be used for the non-standard GenBank-like formats." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GenBank-like format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1919" + } + ] + }, + { + "@id": "http://edamontology.org/data_0889", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Some type of structural (3D) profile or template (representing a structure or structure alignment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structural (3D) profile" + }, + { + "@value": "3D profile" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural profile" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + }, + { + "@id": "_:N206139ac5c2f4599b0bc72914589137e" + } + ] + }, + { + "@id": "_:N206139ac5c2f4599b0bc72914589137e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ] + }, + { + "@id": "http://edamontology.org/format_1197", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Chemical structure specified in IUPAC International Chemical Identifier (InChI) line notation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InChI" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2035" + } + ] + }, + { + "@id": "http://edamontology.org/format_3700", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://samtools.github.io/hts-specs/tabix.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Index file format used by the samtools package to index TAB-delimited genome position files." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tabix index file format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "_:N2472b5077bee436a8c8b3d21e6f4e101" + }, + { + "@id": "http://edamontology.org/format_3326" + } + ] + }, + { + "@id": "_:N2472b5077bee436a8c8b3d21e6f4e101", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0955" + } + ] + }, + { + "@id": "http://edamontology.org/format_3883", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://manual.gromacs.org/documentation/2018/user-guide/file-formats.html#itp" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GROMACS itp files (include topology) contain structure topology information, and are typically included in GROMACS topology files (GROMACS top). Itp files are used to define individual (or multiple) components of a topology as a separate file. This is particularly useful if there is a molecule that is used frequently, and also reduces the size of the system topology file, splitting it in different parts." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "GROMACS itp files are used also to define position restrictions on the molecule, or to define the force field parameters for a particular ligand." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GROMACS itp" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3884" + }, + { + "@id": "http://edamontology.org/format_2033" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3879" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3361", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The procedures used to conduct an experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Laboratory method" + }, + { + "@value": "Experimental techniques" + }, + { + "@value": "Lab techniques" + }, + { + "@value": "Lab method" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Laboratory_techniques" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Laboratory experiments" + }, + { + "@value": "Experiments" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Laboratory techniques" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Laboratory" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ] + }, + { + "@id": "http://edamontology.org/format_3884", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of force field parameter files, which store the set of parameters (charges, masses, radii, bond lengths, bond dihedrals, etc.) that are essential for the proper description and simulation of a molecular system." + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Many different file formats exist describing force field parameters. Typically, each MD package or simulation software works with their own implementation (e.g. GROMACS itp, CHARMM rtf, AMBER off / frcmod)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FF parameter format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:N8cea1537912b4b88b3f9f5d4e7f82e20" + } + ] + }, + { + "@id": "_:N8cea1537912b4b88b3f9f5d4e7f82e20", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3872" + } + ] + }, + { + "@id": "http://edamontology.org/format_3712", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Proprietary file format for mass spectrometry data from Thermo Scientific." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Proprietary format for which documentation is not available." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Thermo RAW" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/format_2554", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Text format for molecular sequence alignment information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alignment format (text)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1921" + } + ] + }, + { + "@id": "http://edamontology.org/data_2168", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image of a sequence trace (nucleotide sequence versus probabilities of each of the 4 bases)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence trace image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2969" + } + ] + }, + { + "@id": "http://edamontology.org/data_2152", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A parameter that is used to control rendering (drawing) to a device or image." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Rendering parameter" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3289", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0304" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search for and retrieve a data identifier of some kind, e.g. a database entry accession." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ID retrieval" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0397", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_1844" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Validate a Ramachandran plot of a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_1844" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ramachandran plot validation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1300", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0916" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on predicted or actual gene structure, regions which make an RNA product and features such as promoters, coding regions, splice sites etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene and transcript structure (report)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1181", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a concept from the UMLS vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UMLS concept ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1087" + } + ] + }, + { + "@id": "http://edamontology.org/data_2795", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of an open reading frame." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ORF identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3925", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Render (visualise) a network - typically a biological network of some sort." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Network rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein interaction network rendering" + }, + { + "@value": "Protein interaction network visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Network visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3927" + }, + { + "@id": "_:N11dfe06fe8d24ba49eca2794a908eb6c" + }, + { + "@id": "http://edamontology.org/operation_0337" + } + ] + }, + { + "@id": "_:N11dfe06fe8d24ba49eca2794a908eb6c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2600" + } + ] + }, + { + "@id": "http://edamontology.org/data_2609", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "D[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a drug from the KEGG Drug database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drug ID (KEGG)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2895" + }, + { + "@id": "http://edamontology.org/data_1154" + } + ] + }, + { + "@id": "http://edamontology.org/data_0842", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A text token, number or something else which identifies an entity, but which may not be persistent (stable) or unique (the same identifier may identify multiple things)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N1db3678aa5ba4040803f0b6a17d43d78" + }, + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.w3.org/2002/07/owl#disjointWith": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.w3.org/2004/02/skos/core#exactMatch": [ + { + "@id": "http://semanticscience.org/resource/SIO_000115" + }, + { + "@id": "http://wsio.org/data_005" + } + ], + "http://www.w3.org/2004/02/skos/core#narrowMatch": [ + { + "@id": "http://purl.org/dc/elements/1.1/identifier" + } + ] + }, + { + "@id": "_:N1db3678aa5ba4040803f0b6a17d43d78", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/data_1636", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A graphical 2D tabular representation of expression data, typically derived from an omics experiment. A heat map is a table where rows and columns correspond to different features and contexts (for example, cells or samples) and the cell colour represents the level of expression of a gene that context." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Heat map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3768" + }, + { + "@id": "http://edamontology.org/data_2968" + } + ] + }, + { + "@id": "http://edamontology.org/data_1355", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report about a specific or conserved protein sequence pattern." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein site signature" + }, + { + "@value": "InterPro entry" + }, + { + "@value": "Protein family signature" + }, + { + "@value": "Protein region signature" + }, + { + "@value": "Protein domain signature" + }, + { + "@value": "Protein repeat signature" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein signature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2762" + } + ] + }, + { + "@id": "http://edamontology.org/data_2157", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1266" + }, + { + "@id": "http://edamontology.org/data_1268" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Word composition data for a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Word composition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2977", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "One or more nucleic acid sequences, possibly with associated annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid sequences" + }, + { + "@value": "Nucleotide sequences" + }, + { + "@value": "Nucleotide sequence" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "DNA sequence" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.org/biotop/biotop.owl#NucleotideSequenceInformation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2044" + } + ] + }, + { + "@id": "http://edamontology.org/format_3819", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://biopython.org/DIST/docs/api/Bio.AlignIO.PhylipIO-module.html" + }, + { + "@id": "http://www.phylo.org/index.php/help/relaxed_phylip" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylip multiple alignment sequence format, less stringent than PHYLIP format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PHYLIP Interleaved format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "It differs from Phylip Format (format_1997) on length of the ID sequence. There no length restrictions on the ID, but whitespaces aren't allowed in the sequence ID/Name because one space separates the longest ID and the beginning of the sequence. Sequences IDs must be padded to the longest ID length." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Relaxed PHYLIP Interleaved" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2924" + } + ] + }, + { + "@id": "http://edamontology.org/example", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'Example' concept property ('example' metadata tag) lists examples of valid values of types of identifiers (accessions). Applicable to some other types of data, too." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Separated by bar ('|'). For more complex data and data formats, it can be a link to a website with examples, instead." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Example" + } + ] + }, + { + "@id": "http://edamontology.org/data_0990", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique name of a chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Chemical name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Compound name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1086" + }, + { + "@id": "http://edamontology.org/data_0984" + } + ] + }, + { + "@id": "http://edamontology.org/format_3983", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "net" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The NET file format is used to describe the data that underlie the net alignment annotations in the UCSC Genome Browser." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NET" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "https://genome.ucsc.edu/goldenPath/help/net.html" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1920" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_1216", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for an RNA sequence (characters ACGU only) with possible unknown positions but without ambiguity or non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "unambiguous pure rna sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1213" + }, + { + "@id": "http://edamontology.org/format_1206" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0433", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify, predict or analyse splice sites in nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Splice prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might require a pre-mRNA or genomic DNA sequence." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Splice site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2499" + }, + { + "@id": "_:N46b6d5d7443840efb0900798b9b9c6b5" + } + ] + }, + { + "@id": "_:N46b6d5d7443840efb0900798b9b9c6b5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0114" + } + ] + }, + { + "@id": "http://edamontology.org/data_1243", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0850" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A nucleotide sequence library of sequences to avoid during amplification (for example repetitive sequences, or possibly the sequences of genes in a gene family that should not be amplified. The file must is in a restricted FASTA format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Primer3 mispriming library file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2551", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a molecular sequence record (text)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence record format (text)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1919" + } + ] + }, + { + "@id": "http://edamontology.org/data_0953", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2337" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a version of software or data, for example name, version number and release date." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Development status / maturity may be part of the version information, for example in case of tools, standards, or some data records." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Version information" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0246", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify structural domains in a protein structure from first principles (for example calculations on structural compactness)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein domain recognition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3092" + }, + { + "@id": "http://edamontology.org/operation_2406" + }, + { + "@id": "_:N811624e6ebbd448194c9cde5c7dc95ad" + } + ] + }, + { + "@id": "_:N811624e6ebbd448194c9cde5c7dc95ad", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0736" + } + ] + }, + { + "@id": "http://edamontology.org/data_1381", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/is_deprecation_candidate": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of exactly two molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence alignment (pair)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pair sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://semanticscience.org/resource/SIO_010068" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0863" + } + ] + }, + { + "@id": "http://edamontology.org/format_3848", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML format for collected entries from bibliographic databases MEDLINE and PubMed." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MEDLINE XML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PubMed XML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2848" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_0956", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information concerning an analysis of an index of biological data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Database index annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data index report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N89ec3eb325ff4df494a3949c4d6399fb" + }, + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "_:N89ec3eb325ff4df494a3949c4d6399fb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3489" + } + ] + }, + { + "@id": "http://edamontology.org/format_1637", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of Affymetrix data file of raw image data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Affymetrix image data file format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "dat" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N1750a7b242ce48eaa9ea89f964f7469d" + }, + { + "@id": "http://edamontology.org/format_2058" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "_:N1750a7b242ce48eaa9ea89f964f7469d", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1714" + } + ] + }, + { + "@id": "http://edamontology.org/data_1531", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The extinction coefficient of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein extinction coefficient" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0209", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.1.4 Medicinal chemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The design and chemical synthesis of bioactive molecules, for example drugs or potential drug compounds, for medicinal purposes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Drug design" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Medicinal_chemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes methods that search compound collections, generate or analyse drug 3D conformations, identify drug targets with structural docking etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Medicinal chemistry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Medicinal_chemistry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3371" + }, + { + "@id": "http://edamontology.org/topic_3336" + } + ] + }, + { + "@id": "http://purl.obolibrary.org/obo/is_symmetric", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/format_1445", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for distances, such as Branch Score distance, between two or more phylogenetic trees as used by the Phylip package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylip tree distance format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2049" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2425", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Refine or optimise some data model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Optimisation and refinement" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/format_3000", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "AB1 binary format of raw DNA sequence reads (output of Applied Biosystems' sequencing analysis software). Contains an electropherogram and the DNA base sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "AB1 uses the generic binary Applied Biosystems, Inc. Format (ABIF)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "AB1" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_2057" + } + ] + }, + { + "@id": "http://edamontology.org/data_1158", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the INOH database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "INOH identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (INOH)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2365" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1798", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1035" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene identifier from Leishmania major GeneDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (GeneDB Leishmania major)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1159", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the PATIKA database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PATIKA ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (PATIKA)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2365" + } + ] + }, + { + "@id": "http://edamontology.org/data_0863", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of multiple molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "msa" + }, + { + "@value": "Multiple sequence alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D016415" + }, + { + "@id": "http://en.wikipedia.org/wiki/Sequence_alignment" + }, + { + "@value": "http://semanticscience.org/resource/SIO_010066" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1916" + }, + { + "@id": "_:N4c4acc3b79744e1896171eaba7220095" + } + ] + }, + { + "@id": "_:N4c4acc3b79744e1896171eaba7220095", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3315", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT:1.1 Mathematics" + }, + { + "@value": "VT 1.1.99 Other" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of numbers (quantity) and other topics including structure, space, and change." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Maths" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Mathematics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Dynamical systems" + }, + { + "@value": "Multivariate analysis" + }, + { + "@value": "Graph analytics" + }, + { + "@value": "Dynamic systems" + }, + { + "@value": "Dynymical systems theory" + }, + { + "@value": "Monte Carlo methods" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mathematics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Mathematics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ] + }, + { + "@id": "http://edamontology.org/data_1446", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0874" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Matrix of integer numbers for sequence comparison." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Comparison matrix (integers)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1499", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A matrix of 3D-1D scores reflecting the probability of amino acids to occur in different tertiary structural environments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "3D-1D scoring matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0892" + } + ] + }, + { + "@id": "http://edamontology.org/data_2835", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for a gene from the VBASE2 database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "VBASE2 ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (VBASE2)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_3106", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Metadata concerning the software, hardware or other aspects of a computer system." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "System metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2337" + } + ] + }, + { + "@id": "http://edamontology.org/format_1929", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTA format including NCBI-style IDs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "FASTA format" + }, + { + "@value": "FASTA sequence format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FASTA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2200" + }, + { + "@id": "http://edamontology.org/format_2554" + } + ] + }, + { + "@id": "http://edamontology.org/format_3875", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Portable binary format for trajectories produced by GROMACS package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "XTC uses the External Data Representation (xdr) routines for writing and reading data which were created for the Unix Network File System (NFS). XTC files use a reduced precision (lossy) algorithm which works multiplying the coordinates by a scaling factor (typically 1000), so converting them to pm (GROMACS standard distance unit is nm). This allows an integer rounding of the values. Several other tricks are performed, such as making use of atom proximity information: atoms close in sequence are usually close in space (e.g. water molecules). That makes XTC format the most efficient in terms of disk usage, in most cases reducing by a factor of 2 the size of any other binary trajectory format." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "XTC" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3867" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_2979", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning small peptides." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Peptide data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptide property" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2087" + } + ] + }, + { + "@id": "http://edamontology.org/data_0905", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction raw data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3108" + } + ] + }, + { + "@id": "_:N5a8372b68a064e519d8739a31d690b7e", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:function_of' only relates subjects that are a 'function' (snap:Function) with objects that are an 'independent_continuant' (snap:IndependentContinuant), so for example no processes. It does not define explicitly that the subject is a function of the object." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/is_function_of" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "OBO_REL:function_of" + } + ] + }, + { + "@id": "http://edamontology.org/data_2316", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a cell line." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell line name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1046" + } + ] + }, + { + "@id": "http://edamontology.org/format_1214", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a DNA sequence (characters ACGT only) with possible unknown positions but without ambiguity or non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "unambiguous pure dna" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1212" + }, + { + "@id": "http://edamontology.org/format_1206" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3318", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of matter, space and time, and related concepts such as energy and force." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Physics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Physics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Physics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0295", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align (superimpose) molecular tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structural alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "3D profile alignment" + }, + { + "@value": "3D profile-to-3D profile alignment" + }, + { + "@value": "Structural profile alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Includes methods that align structural (3D) profiles or templates (representing structures or structure alignments) - including methods that perform one-to-one, one-to-many or many-to-many comparisons." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Structural_alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2480" + }, + { + "@id": "http://edamontology.org/operation_2928" + }, + { + "@id": "_:N04ba6aab7b844ffca986654492f34666" + }, + { + "@id": "http://edamontology.org/operation_2483" + } + ] + }, + { + "@id": "_:N04ba6aab7b844ffca986654492f34666", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0886" + } + ] + }, + { + "@id": "http://edamontology.org/format_3906", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "MReData is a text based data standard for processed NMR data. It is relying on SDF molecule data and allows to store assignments of NMR peaks to molecule features. The NMR-extracted data (or \"NMReDATA\") includes: Chemical shift,scalar coupling, 2D correlation, assignment, etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "NMReData is a text based data standard for processed NMR data. It is relying on SDF molecule data and allows to store assignments of NMR peaks to molecule features. The NMR-extracted data (or \"NMReDATA\") includes: Chemical shift,scalar coupling, 2D correlation, assignment, etc. Find more in the paper at https://doi.org/10.1002/mrc.4527." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NMReDATA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "http://nmredata.org/" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3824" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3877", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The XYZ chemical file format is widely supported by many programs, although many slightly different XYZ file formats coexist (Tinker XYZ, UniChem XYZ, etc.). Basic information stored for each atom in the system are x, y and z coordinates and atom element/atomic number." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "XYZ files are structured in this way: First line contains the number of atoms in the file. Second line contains a title, comment, or filename. Remaining lines contain atom information. Each line starts with the element symbol, followed by x, y and z coordinates in angstroms separated by whitespace. Multiple molecules or frames can be contained within one file, so it supports trajectory storage. XYZ files can be directly represented by a molecular viewer, as they contain all the basic information needed to build the 3D model." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "XYZ" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2033" + }, + { + "@id": "http://edamontology.org/format_3868" + } + ] + }, + { + "@id": "http://edamontology.org/format_2303", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format (HTML) for the STRING database of protein interaction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "STRING entry format (HTML)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3204", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse cytosine methylation states in nucleic acid sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Methylation profile analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Methylation analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + } + ] + }, + { + "@id": "http://edamontology.org/format_3011", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format9" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "gp" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "genePred table format for gene prediction tracks." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "genePred format has 3 main variations (http://genome.ucsc.edu/FAQ/FAQformat#format9 http://www.broadinstitute.org/software/igv/genePred). They reflect UCSC Browser DB tables." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "genePred" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2919" + } + ] + }, + { + "@id": "http://edamontology.org/data_2735", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0957" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a SwissRegulon database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database name (SwissRegulon)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1485", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1481" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of protein tertiary (3D) structures (all atoms considered)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment (protein all atoms)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3939", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Biotechnology approach that seeks to optimize cellular genetic and regulatory processes in order to increase the cells' production of a certain substance." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metabolic engineering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Metabolic_engineering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3297" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0922", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PCR primers and hybridisation oligos in a nucleic acid sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0632" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Primers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3682", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.1016/j.jprot.2012.07.026" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.imzml.org/index.php?option=com_content&view=article&id=188&Itemid=63" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "imzml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.imzml.org/index.php?option=com_content&view=article&id=188&Itemid=63" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "imzML metadata is a data format for mass spectrometry imaging metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "imzML data are recorded in 2 files: '.imzXML' is a metadata XML file based on mzML by HUPO-PSI, and '.ibd' is a binary file containing the mass spectra. This entry is for the metadata XML file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "imzML metadata file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/data_1321", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on predicted or known key residue positions (sites) in a protein sequence, such as binding or functional sites." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Use this concept for collections of specific sites which are not necessarily contiguous, rather than contiguous stretches of amino acids." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features (sites)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1157", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an pathway from the BioCyc biological pathways database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "BioCyc pathway ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (BioCyc)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2365" + }, + { + "@id": "http://edamontology.org/data_2104" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2478", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse a nucleic acid sequence (using methods that are only applicable to nucleic acid sequences)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence analysis (nucleic acid)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Sequence alignment analysis (nucleic acid)" + }, + { + "@value": "Nucleic acid sequence alignment analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nab4f90f1ec4340bd98ec6f2c5bb87dc5" + }, + { + "@id": "http://edamontology.org/operation_2403" + }, + { + "@id": "_:N09a99c05cc9e4506bdacb7f38c8b8fd9" + } + ] + }, + { + "@id": "_:Nab4f90f1ec4340bd98ec6f2c5bb87dc5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2977" + } + ] + }, + { + "@id": "_:N09a99c05cc9e4506bdacb7f38c8b8fd9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0077" + } + ] + }, + { + "@id": "http://edamontology.org/data_0880", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:RNAStructML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report of secondary structure (predicted or real) of an RNA molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Secondary structure (RNA)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes thermodynamically stable or evolutionarily conserved structures such as knots, pseudoknots etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA secondary structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1465" + }, + { + "@id": "_:N15b5b4df77564efa87b6cc079f3e56dd" + } + ] + }, + { + "@id": "_:N15b5b4df77564efa87b6cc079f3e56dd", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0097" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0089", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The conceptualisation, categorisation and nomenclature (naming) of entities or phenomena within biology or bioinformatics. This includes formal ontologies, controlled vocabularies, structured glossary, symbols and terminology or other related resource." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Ontology_and_terminology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Applied ontology" + }, + { + "@value": "Upper ontology" + }, + { + "@value": "Ontologies" + }, + { + "@value": "Terminology" + }, + { + "@value": "Ontology relations" + }, + { + "@value": "Ontology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology and terminology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D002965" + }, + { + "@id": "https://en.wikipedia.org/wiki/Ontology_(information_science)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0605" + } + ] + }, + { + "@id": "http://edamontology.org/format_2195", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used for ontologies." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:Nc8bf693ccb6a4449a1c52a4dfdb6135f" + } + ] + }, + { + "@id": "_:Nc8bf693ccb6a4449a1c52a4dfdb6135f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0582" + } + ] + }, + { + "@id": "http://edamontology.org/isdebtag", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "When 'true', the concept has been proposed or is supported within Debian as a tag." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "isdebtag" + } + ] + }, + { + "@id": "http://edamontology.org/data_1807", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of an open reading frame attributed by a sequencing project." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ORF name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + }, + { + "@id": "http://edamontology.org/data_2795" + } + ] + }, + { + "@id": "http://edamontology.org/data_3111", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data generated from processing and analysis of probe set data from a microarray experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene annotation (expression)" + }, + { + "@value": "Microarray probe set data" + }, + { + "@value": "Gene expression report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Such data as found in Affymetrix .CHP files or data from other software such as RMA or dChip." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Processed microarray data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3117" + }, + { + "@id": "_:N08bdeb1c0afe4abc9682ff713069bad7" + } + ] + }, + { + "@id": "_:N08bdeb1c0afe4abc9682ff713069bad7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ] + }, + { + "@id": "http://edamontology.org/data_2660", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the BioNumbers database of key numbers and associated data in molecular biology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioNumbers ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3577", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.4.5 Molecular diagnostics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An approach to medicine whereby decisions, practices and are tailored to the individual patient based on their predicted response or risk of disease." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Precision medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Personalised_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Molecular diagnostics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Personalised medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Personalized_medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_2527", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Typically a simple numerical or string value that controls the operation of a tool." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Parameter" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0158", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Conserved patterns (motifs) in molecular sequences, that (typically) describe functional or other key sites." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motifs" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1639", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of affymetrix gene cluster files (hc-genes.txt, hc-chips.txt) from hierarchical clustering." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "affymetrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2172" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_3144", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a 'family' node from the SCOP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SCOP family" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0920", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about the set of genes (or allelic forms) present in an individual, organism or cell and associated with a specific physical characteristic, or a report concerning an organisms traits and phenotypes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Genotype/phenotype annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genotype/phenotype report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/data_2071", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An amino acid sequence motif." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein sequence motif" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1353" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0344", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Query a database and retrieve sequences with a given entry code or accession number." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence retrieval (by code)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2059", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2350" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report on genotype / phenotype information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genotype and phenotype annotation format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topics", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty" + } + ] + }, + { + "@id": "http://edamontology.org/data_1880", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0968" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term which is likely to be misleading of its meaning." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Misnomer" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1670", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0957" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a database (or ontology) version, for example name, version number and release date." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database version information" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2397", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Exons in a nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3512" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Exons" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2197", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A serialisation format conforming to the Web Ontology Language (OWL) model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "OWL format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2195" + }, + { + "@id": "http://edamontology.org/format_2376" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3680", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyze data from RNA-seq experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA-Seq analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3921" + }, + { + "@id": "http://edamontology.org/operation_2495" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2509", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2451" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2451" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1886", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby_namespace:Blattner_number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The blattner identifier for a gene." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Blattner number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2564", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Three letter amino acid identifier, e.g. GLY." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid name (three letter)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1006" + } + ] + }, + { + "@id": "http://edamontology.org/data_2300", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of an entry (gene) from the NCBI genes database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (NCBI)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3036", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of an array of numerical values, such as a comparison matrix." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Matrix identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:N61804d5b410940ab9dd5097a00c80d7e" + } + ] + }, + { + "@id": "_:N61804d5b410940ab9dd5097a00c80d7e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2082" + } + ] + }, + { + "@id": "http://edamontology.org/data_0955", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An index of data of biological relevance." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data index" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + }, + { + "@id": "_:N5d361a6cfab24015ad3bbda03f7f8790" + } + ] + }, + { + "@id": "_:N5d361a6cfab24015ad3bbda03f7f8790", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3489" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3087", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison)This is a distinction made on basis of input; all features exist can be mapped to a sequence so this isn't needed (consolidate with \"Protein feature detection\")." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_3092" + }, + { + "@id": "http://edamontology.org/operation_0253" + }, + { + "@id": "http://edamontology.org/operation_2479" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict, recognise and identify functional or other key sites within protein sequences, typically by scanning for known motifs, patterns and regular expressions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3092" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence feature detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1115", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a sequence profile." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A sequence profile typically represents a sequence alignment." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence profile ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N228ac6d339ca47f8872121f5e6edcc34" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N228ac6d339ca47f8872121f5e6edcc34", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1354" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3570", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.1.1 Pure mathematics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of abstract mathematical concepts." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Pure_mathematics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Linear algebra" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pure mathematics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Pure_mathematics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3315" + } + ] + }, + { + "@id": "http://edamontology.org/data_1141", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry (family) from the TIGRFam database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "TIGRFam accession number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TIGRFam ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2910" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_1701", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from PubChem." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PubChem entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1206", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a molecular sequence with possible unknown positions but without ambiguity or non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "unambiguous pure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2094" + }, + { + "@id": "http://edamontology.org/format_2096" + } + ] + }, + { + "@id": "http://edamontology.org/data_1114", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a sequence motif, for example an entry from a motif database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:N0ae6a606ffaa4ab6803fff64e73b33c0" + } + ] + }, + { + "@id": "_:N0ae6a606ffaa4ab6803fff64e73b33c0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1353" + } + ] + }, + { + "@id": "http://edamontology.org/format_1422", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used by the HMMER package for of an alignment of a hidden Markov model against a sequence database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HMMER profile alignment (HMM versus sequences)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2014" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3394", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The protection of public health by controlling the safety and efficacy of products in areas including pharmaceuticals, veterinary medicine, medical devices, pesticides, agrochemicals, cosmetics, and complementary medicines." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Healthcare RA" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Regulatory_affairs" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Regulatory affairs" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Regulatory_affairs#Healthcare_RA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3376" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0798", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mobile genetic elements, such as transposons, Plasmids, Bacteriophage elements and Group II introns." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Mobile_genetic_elements" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Transposons" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mobile genetic elements" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Mobile_genetic_elements" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0114" + } + ] + }, + { + "@id": "http://edamontology.org/data_2896", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a toxin." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Toxin name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2576" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0512", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0298" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0292" + }, + { + "@id": "http://edamontology.org/operation_0300" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align two or more molecular profiles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment generation (multiple profile)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3269", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3148" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on gene homologues between species." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene homology (report)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3734", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a lane within a flow cell of a sequencing machine, within which millions of sequences are immobilised, amplified and sequenced." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Lane identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3732" + } + ] + }, + { + "@id": "http://edamontology.org/data_0931", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "microarray experiments including conditions, protocol, sample:data relationships etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microarray experiment report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3009", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://jcomeau.freeshell.org/www/genome/2bitformat.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome-source.cse.ucsc.edu/gitweb/?p=kent.git;a=blob_plain;f=src/inc/twoBit.h;hb=HEAD" + }, + { + "@id": "http://jcomeau.freeshell.org/www/genome/2bitformat.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "2bit binary format of nucleotide sequences using 2 bits per nucleotide. In addition encodes unknown nucleotides and lower-case 'masking'." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "2bit" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_2571" + } + ] + }, + { + "@id": "http://edamontology.org/data_2369", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an intron from the ASTD database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ASTD ID (intron)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2367" + } + ] + }, + { + "@id": "http://edamontology.org/data_1127", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9][a-zA-Z_0-9]{3}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of an entry from the PDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PDB identifier" + }, + { + "@value": "PDBID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A PDB identification code which consists of 4 characters, the first of which is a digit in the range 0 - 9; the remaining 3 are alphanumeric, and letters are upper case only. (source: https://cdn.rcsb.org/wwpdb/docs/documentation/file-format/PDB_format_1996.pdf)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PDB ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1070" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3529", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Environmental information processing pathways." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0602" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Environmental information processing pathways" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3829", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://mdc.custhelp.com/app/answers/detail/a_id/17120/related/1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GenePix Results (GPR) text file format developed by Axon Instruments that is used to save GenePix Results data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GPR" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3828" + } + ] + }, + { + "@id": "http://edamontology.org/format_3597", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.fileformat.info/format/psd/egff.htm" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PSD (Photoshop Document) is a proprietary file that allows the user to work with the images' individual layers even after the file has been saved." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "psd" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_1245", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A cluster of protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein sequence cluster" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The sequences are typically related, for example a family of sequences." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1235" + }, + { + "@id": "http://edamontology.org/data_1233" + } + ] + }, + { + "@id": "http://edamontology.org/data_1687", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBOSS megamerger log file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS whichdb log file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3835", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://cruxtoolkit.sourceforge.net/tide-search.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format supported by the Tide tool for identifying peptides from tandem mass spectra." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TIDE TXT" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_2390", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the UNITE database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UNITE accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1097" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2093", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Reference to a dataset (or a cross-reference between two datasets), typically one or more entries in a biological database or ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A list of database accessions or identifiers are usually included." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data reference" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3421", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.28 Transplantation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The use of operative, manual and instrumental techniques on a patient to investigate and/or treat a pathological condition or help improve bodily function or appearance." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Surgery" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Transplantation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Surgery" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Surgery" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3278", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate similarity between 2 or more documents." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Document similarity calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3437" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3321", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The structure and function of genes at a molecular level." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Molecular_genetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular genetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Molecular_genetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3053" + }, + { + "@id": "http://edamontology.org/topic_3307" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3415", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with the diagnosis, management and prevention of poisoning and other adverse health effects caused by medications, occupational and environmental toxins, and biological agents." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Medical_toxicology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Medical toxicology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Medical_toxicology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0535", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0319" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Assign secondary structure from circular dichroism (CD) spectroscopic data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0319" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure assignment (from CD data)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2323", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from the Enzyme nomenclature database (ENZYME)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ENZYME enzyme report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1800", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1035" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Spombe" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene identifier from Schizosaccharomyces pombe GeneDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (GeneDB Schizosaccharomyces pombe)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0365", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate digest fragments for a nucleotide sequence containing restriction sites." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid restriction digest" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Restriction digest" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Restriction_digest" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0262" + }, + { + "@id": "http://edamontology.org/operation_0230" + }, + { + "@id": "_:N3c4a471569a1423198c3c00b4f65e6aa" + } + ] + }, + { + "@id": "_:N3c4a471569a1423198c3c00b4f65e6aa", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1239" + } + ] + }, + { + "@id": "http://edamontology.org/data_1338", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0857" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Scores from a sequence database search (for example a BLAST search)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database hits scores list" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_4018", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://sites.google.com/site/gvcftools/home/about-gvcf/gvcf-conventions" + }, + { + "@id": "https://gatk.broadinstitute.org/hc/en-us/articles/360035531812-GVCF-Genomic-Variant-Call-Format" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "g.vcf.gz" + }, + { + "@value": "g.vcf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Genomic Variant Call Format (gVCF) is a version of VCF that includes not only the positions that are variant when compared to a reference genome, but also the non-variant positions as ranges, including metrics of confidence that the positions in the range are actually non-variant e.g. minimum read-depth and genotype quality." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "g.vcf.gz" + }, + { + "@value": "g.vcf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "gVCF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://sites.google.com/site/gvcftools/home/about-gvcf" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3016" + } + ] + }, + { + "@id": "http://edamontology.org/format_1341", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Results format for searches of the InterPro database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InterPro hits format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2066" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3703", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identification of the best reference for mapping for a specific dataset from a list of potential references, when performing genetic variation analysis." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reference identification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3197" + } + ] + }, + { + "@id": "http://edamontology.org/data_2649", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "PA[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PharmGKB ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2631", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "mge:[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a mobile genetic element from the Aclame database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ACLAME ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2630" + } + ] + }, + { + "@id": "http://edamontology.org/data_0853", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The strand of a DNA sequence (forward or reverse)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The forward or 'top' strand might specify a sequence is to be used as given, the reverse or 'bottom' strand specifying the reverse complement of the sequence is to be used." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA sense specification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0360", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a database of molecular structure and retrieve structures that are similar to a query structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure retrieval by structure" + }, + { + "@value": "Structure database search (by structure)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural similarity search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2483" + }, + { + "@id": "http://edamontology.org/operation_0339" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3061", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The documentation of resources such as tools, services and databases and how to get help." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3068" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Documentation and help" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3503", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Plot an incident curve such as a survival curve, death curve, mortality curve." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Incident curve plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0337" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3801", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Match experimentally measured mass spectrum to a spectrum in a spectral library or database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Spectral library search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3631" + }, + { + "@id": "_:N4ab8c1c065c048c2a458e4dafac23fb1" + } + ] + }, + { + "@id": "_:N4ab8c1c065c048c2a458e4dafac23fb1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0943" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0281", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0415" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify genetic markers in DNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A genetic marker is any DNA sequence of known chromosomal location that is associated with and specific to a particular gene or trait. This includes short sequences surrounding a SNP, Sequence-Tagged Sites (STS) which are well suited for PCR amplification, a longer minisatellites sequence etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic marker identification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2756", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a membrane transport proteins from the transport classification database (TCDB)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TCID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + } + ] + }, + { + "@id": "http://edamontology.org/format_2006", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nd2bb11284ee941ec9c8ae22f06e7c372" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Nd2bb11284ee941ec9c8ae22f06e7c372", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0872" + } + ] + }, + { + "@id": "http://edamontology.org/format_3844", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://gmod.org/wiki/Chado_XML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Chado-XML format is a direct mapping of the Chado relational schema into XML." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chado-XML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2552" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3303", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2 Clinical medicine" + }, + { + "@value": "VT 3.2.9 General and internal medicine" + }, + { + "@value": "VT 3.1 Basic medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Research in support of healing by diagnosis, treatment, and prevention of disease." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biomedical research" + }, + { + "@value": "Experimental medicine" + }, + { + "@value": "Clinical medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Internal medicine" + }, + { + "@value": "General medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_4019" + } + ] + }, + { + "@id": "http://edamontology.org/data_2857", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2526" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Bibliographic data concerning scientific article(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Article metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2306", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://mblab.wustl.edu/GTF22.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format4" + }, + { + "@id": "http://mblab.wustl.edu/GTF22.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene Transfer Format (GTF), a restricted version of GFF." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GTF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2305" + } + ] + }, + { + "@id": "http://edamontology.org/data_3735", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A number corresponding to the number of an analysis performed by a sequencing machine. For example, if it's the 13th analysis, the run is 13." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Run number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3732" + } + ] + }, + { + "@id": "http://edamontology.org/format_1218", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for any protein sequence with possible unknown positions but without ambiguity or non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "unambiguous pure protein" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1206" + }, + { + "@id": "http://edamontology.org/format_1208" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0513", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0299" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0295" + }, + { + "@id": "http://edamontology.org/operation_0294" + }, + { + "@id": "http://edamontology.org/operation_0503" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align exactly two molecular Structural (3D) profiles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "3D profile-to-3D profile alignment (pairwise)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1078", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from a database of microarray data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Experiment annotation ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Naa505387c280451b8e84f34f951e130b" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:Naa505387c280451b8e84f34f951e130b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2531" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0443", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict functional RNA sequences with a gene regulatory role (trans-regulatory elements) or targets." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Transcriptional regulatory element prediction (trans)" + }, + { + "@value": "Functional RNA identification" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Trans-regulatory elements regulate genes distant from the gene from which they were transcribed." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "trans-regulatory element prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N48f56e91ae1f4971a33f98c6336e687f" + }, + { + "@id": "http://edamontology.org/operation_0438" + } + ] + }, + { + "@id": "_:N48f56e91ae1f4971a33f98c6336e687f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0659" + } + ] + }, + { + "@id": "http://edamontology.org/data_2794", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of an open reading frame (catalogued in a database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ORF ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2795" + }, + { + "@id": "http://edamontology.org/data_1893" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0446", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict exonic splicing enhancers (ESE) in exons." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "An exonic splicing enhancer (ESE) is 6-base DNA sequence motif in an exon that enhances or directs splicing of pre-mRNA or hetero-nuclear RNA (hnRNA) into mRNA." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Exonic splicing enhancer prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0440" + }, + { + "@id": "_:Nc1d990d5ddbe49e799672a4634e32727" + } + ] + }, + { + "@id": "_:Nc1d990d5ddbe49e799672a4634e32727", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0114" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0289", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate a sequence distance matrix or otherwise estimate genetic distances between molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence distance matrix construction" + }, + { + "@value": "Phylogenetic distance matrix generation" + }, + { + "@value": "Sequence distance calculation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence distance matrix generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N2b0195d129034ff1be6b17a64ab0e377" + }, + { + "@id": "http://edamontology.org/operation_3429" + }, + { + "@id": "http://edamontology.org/operation_2451" + }, + { + "@id": "_:N9761ba44fed448e283a885d1d2cef9f2" + } + ] + }, + { + "@id": "_:N2b0195d129034ff1be6b17a64ab0e377", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0084" + } + ] + }, + { + "@id": "_:N9761ba44fed448e283a885d1d2cef9f2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0870" + } + ] + }, + { + "@id": "http://edamontology.org/data_2812", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a lipid." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Lipid identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N0f7721cdf39f44eba104415beba01495" + }, + { + "@id": "_:Na91e9680e4f448bd89e63deb35e86dc9" + }, + { + "@id": "http://edamontology.org/data_0982" + } + ] + }, + { + "@id": "_:N0f7721cdf39f44eba104415beba01495", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2850" + } + ] + }, + { + "@id": "_:Na91e9680e4f448bd89e63deb35e86dc9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2879" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3230", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse mapping density (read depth) of (typically) short reads from sequencing platforms, for example, to detect deletions and duplications." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Read depth analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3921" + } + ] + }, + { + "@id": "http://edamontology.org/data_1882", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier representing an author in the DragonDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DragonDB author identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1881" + } + ] + }, + { + "@id": "http://edamontology.org/format_2243", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2036" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PHYLIP file format for phylogenetic property data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "phylip property values" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2763", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0916" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a particular locus." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0546", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construct a phylogenetic tree by computing (or using precomputed) distances between sequences and searching for the tree with minimal discrepancies between pairwise distances." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree generation (minimum distance methods)" + }, + { + "@value": "Phylogenetic tree construction (minimum distance methods)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes neighbor joining (NJ) clustering method." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic inference (minimum distance methods)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0539" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2508", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2451" + }, + { + "@id": "http://edamontology.org/operation_2998" + }, + { + "@id": "http://edamontology.org/operation_2478" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more nucleic acid sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2451" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3636", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Quantification by Selected/multiple Reaction Monitoring workflow (XIC quantitation of precursor / fragment mass pair)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MRM/SRM" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3630" + } + ] + }, + { + "@id": "http://edamontology.org/data_1133", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/example": [ + { + "@value": "IPR015590" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "IPR[0-9]{6}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Primary accession number of an InterPro entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "InterPro primary accession" + }, + { + "@value": "InterPro primary accession number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Every InterPro entry has a unique accession number to provide a persistent citation of database records." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InterPro accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2910" + }, + { + "@id": "_:N76a7115d0a4a4cc3a90536a830a0b8af" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "_:N76a7115d0a4a4cc3a90536a830a0b8af", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1355" + } + ] + }, + { + "@id": "http://edamontology.org/data_2721", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an dinucleotide property from the DiProDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DiProDB ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2718" + } + ] + }, + { + "@id": "http://edamontology.org/data_1032", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a gene from DictyBase." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (DictyBase)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_1454", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from the DSSP database (Dictionary of Secondary Structure in Proteins)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The DSSP database is built using the DSSP application which defines secondary structure, geometrical features and solvent exposure of proteins, given atomic coordinates in PDB format." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "dssp" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2077" + } + ] + }, + { + "@id": "http://edamontology.org/format_1782", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry (gene) format of the NCBI database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NCBI gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3624", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An index of a genome database, indexed for use by the snpeff tool." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "snpeffdb" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3326" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_1066", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a molecular sequence alignment, for example a record from an alignment database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "_:N542c6ad8d3274f959c818064d5972d5a" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N542c6ad8d3274f959c818064d5972d5a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0863" + } + ] + }, + { + "@id": "http://edamontology.org/data_1558", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a protein 'topology' node from the CATH database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH topology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1020", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The type of a sequence feature, typically a term or accession from the Sequence Ontology, for example an EMBL or Swiss-Prot sequence feature key." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence feature method" + }, + { + "@value": "Sequence feature type" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A feature key indicates the biological nature of the feature or information about changes to or versions of the sequence." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature key" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2914" + } + ] + }, + { + "@id": "http://edamontology.org/topic_1305", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Restriction enzyme recognition sites (restriction sites) in a nucleic acid sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3125" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Restriction sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2520", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a map of a DNA sequence annotated with positional or non-positional features of some type." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gene_mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nf83b041796584251aa3abf85227879bc" + }, + { + "@id": "_:N58c9c5720efe42dabd2f8dedeeb38e27" + }, + { + "@id": "_:N0fa329ecc80b4e03baa02181d9303abd" + }, + { + "@id": "http://edamontology.org/operation_2429" + } + ] + }, + { + "@id": "_:Nf83b041796584251aa3abf85227879bc", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0102" + } + ] + }, + { + "@id": "_:N58c9c5720efe42dabd2f8dedeeb38e27", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1274" + } + ] + }, + { + "@id": "_:N0fa329ecc80b4e03baa02181d9303abd", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0196" + } + ] + }, + { + "@id": "http://edamontology.org/format_1209", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for the consensus of two or more molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "consensus" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2095" + }, + { + "@id": "http://edamontology.org/format_2097" + } + ] + }, + { + "@id": "http://edamontology.org/data_1860", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A genetic map which shows the approximate location of quantitative trait loci (QTL) between two or more markers." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Quantitative trait locus map" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "QTL map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1278" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2456", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Classify G-protein coupled receptors (GPCRs) into families and subfamilies." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2995" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GPCR classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3814", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://en.wikipedia.org/wiki/Chemical_table_file#SDF" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "SDF is one of a family of chemical-data file formats developed by MDL Information Systems; it is intended especially for structural information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SDF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2030" + } + ] + }, + { + "@id": "http://edamontology.org/format_3665", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://khmer.readthedocs.org/en/v2.0/dev/binary-file-formats.html#countgraph" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "oxlicg" + } + ], + "http://edamontology.org/media_type": [ + { + "@id": "http://www.iana.org/assignments/media-types/application/vnd.oxli.countgraph" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://khmer.readthedocs.org/en/v2.0/dev/binary-file-formats.html#countgraph" + }, + { + "@id": "http://www.iana.org/assignments/media-types/application/vnd.oxli.countgraph" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A list of k-mers and their occurrences in a dataset. Can also be used as an implicit De Bruijn graph." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "K-mer countgraph" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_3617" + } + ] + }, + { + "@id": "http://edamontology.org/operation_4009", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The design of small molecules with specific biological activity, such as inhibitors or modulators for proteins that are of therapeutic interest. This can involve the modification of individual atoms, the addition or removal of molecular fragments, and the use reaction-based design to explore tractable synthesis options for the small molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Drug design" + }, + { + "@value": "Structure-based drug design" + }, + { + "@value": "Structure-based small molecule design" + }, + { + "@value": "Ligand-based drug design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Small molecule design can involve assessment of target druggability and flexibility, molecular docking, in silico fragment screening, molecular dynamics, and homology modeling." + }, + { + "@value": "There are two broad categories of small molecule design techniques when applied to the design of drugs: ligand-based drug design (e.g. ligand similarity) and structure-based drug design (ligand docking) methods. Ligand similarity methods exploit structural similarities to known active ligands, whereas ligand docking methods use the 3D structure of a target protein to predict the binding modes and affinities of ligands to it." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Small molecule design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2430" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0430", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Find CpG rich regions in a nucleotide sequence or isochores in genome sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CpG island and isochores detection" + }, + { + "@value": "CpG island and isochores rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "An isochore is long region (> 3 KB) of DNA with very uniform GC content, in contrast to the rest of the genome. Isochores tend tends to have more genes, higher local melting or denaturation temperatures, and different flexibility. Methods might calculate fractional GC content or variation of GC content, predict methylation status of CpG islands etc. This includes methods that visualise CpG rich regions in a nucleotide sequence, for example plot isochores in a genome sequence." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CpG island and isochore detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0415" + }, + { + "@id": "_:N4fcc6d4024a94300b668fbdf7504b15a" + } + ] + }, + { + "@id": "_:N4fcc6d4024a94300b668fbdf7504b15a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0157" + } + ] + }, + { + "@id": "http://edamontology.org/format_3618", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://galaxy.readthedocs.org/en/latest/lib/galaxy.datatypes.html?highlight=datatypes%20graph#module-galaxy.datatypes.graph" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML-based format used to store graph descriptions within Galaxy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "xgmml" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3617" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0558", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotate a phylogenetic tree with terms from a controlled vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://www.evolutionaryontology.org/cdao.owl#CDAOAnnotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0226" + } + ] + }, + { + "@id": "http://edamontology.org/data_0927", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about the linkage of alleles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene annotation (linkage)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Linkage disequilibrium (report)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic linkage report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2084" + } + ] + }, + { + "@id": "http://edamontology.org/created_in", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Version in which a concept was created." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Created in" + } + ] + }, + { + "@id": "http://edamontology.org/format_1966", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "NCBI ASN.1-based sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ASN.1 sequence format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2178", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2337" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "One or more things." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "1 or more" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3668", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of some disease." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Disease name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3667" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0456", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate and plot a DNA or DNA/RNA melting profile." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A melting profile is used to visualise and analyse partly melted DNA conformations." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid melting profile plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0337" + }, + { + "@id": "_:N1b1236ce51bf402792bc16ba53e17562" + }, + { + "@id": "http://edamontology.org/operation_0262" + } + ] + }, + { + "@id": "_:N1b1236ce51bf402792bc16ba53e17562", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1583" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0366", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cleave a protein sequence into peptide fragments (corresponding to enzymatic or chemical cleavage)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is often followed by calculation of protein fragment masses (http://edamontology.org/operation_0398)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence cleavage" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0230" + }, + { + "@id": "_:N3da5df1b44fd4789b2a0a8c7f500d2e9" + }, + { + "@id": "_:N9283397bc5c4446e8759d44b16b09657" + } + ] + }, + { + "@id": "_:N3da5df1b44fd4789b2a0a8c7f500d2e9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1238" + } + ] + }, + { + "@id": "_:N9283397bc5c4446e8759d44b16b09657", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://edamontology.org/data_2904", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An accession of a map of a molecular sequence (deposited in a database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Map accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2117" + } + ] + }, + { + "@id": "http://edamontology.org/data_1378", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2071" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein active site signature (sequence classifier) from the InterPro database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A protein active site signature corresponds to an enzyme catalytic pocket. An active site typically includes non-contiguous residues, therefore multiple signatures may be required to describe an active site. ; residues involved in enzymatic reactions for which mutational data is typically available." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein active site signature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1549", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Patterns of hydrogen bonding in protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein hydrogen bonds" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0906" + } + ] + }, + { + "@id": "http://edamontology.org/data_2580", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a monomer from the BindingDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BindingDB Monomer ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2894" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2927", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0914" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning codon usage." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0780", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.22 Plant science" + }, + { + "@value": "VT 1.5.10 Botany" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Plants, e.g. information on a specific plant genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Plant science" + }, + { + "@value": "Botany" + }, + { + "@value": "Plant" + }, + { + "@value": "Plants" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Plant_biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Plant cell biology" + }, + { + "@value": "Plant anatomy" + }, + { + "@value": "Plant ecology" + }, + { + "@value": "Plant genetics" + }, + { + "@value": "Plant physiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The resource may be specific to a plant, a group of plants or all plants." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Plant biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Botany" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/data_1726", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0966" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term from the myGrid ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The ontology is provided as two components, the service ontology and the domain ontology. The domain ontology acts provides concepts for core bioinformatics data types and their relations. The service ontology describes the physical and operational features of web services." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "myGrid" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1705", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the HET group dictionary (HET groups from PDB files)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HET group dictionary entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2030" + } + ] + }, + { + "@id": "http://edamontology.org/format_1700", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the KEGG GLYCAN database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KEGG GLYCAN entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1018", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1015" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name or other identifier of an nucleic acid feature." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid feature identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1057", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1056" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a molecular sequence database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1407", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1398" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A simple floating point number defining the penalty for extending a gap in an alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gap extension penalty (float)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0502", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align RNA secondary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "RNA secondary structure alignment generation" + }, + { + "@value": "RNA secondary structure alignment construction" + }, + { + "@value": "Secondary structure alignment construction (RNA)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA secondary structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2439" + }, + { + "@id": "_:Ne7e701556bdc44faa8d7050c1ed7443c" + }, + { + "@id": "http://edamontology.org/operation_3429" + }, + { + "@id": "_:N6e6c0dbff40d43c4ab987fc2e44e2051" + } + ] + }, + { + "@id": "_:Ne7e701556bdc44faa8d7050c1ed7443c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0880" + } + ] + }, + { + "@id": "_:N6e6c0dbff40d43c4ab987fc2e44e2051", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0881" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3379", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The testing of new medicines, vaccines or procedures on animals (preclinical) and humans (clinical) prior to their approval by regulatory authorities." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Preclinical_and_clinical_studies" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Drug trials" + }, + { + "@value": "Preclinical studies" + }, + { + "@value": "Clinical studies" + }, + { + "@value": "Clinical study" + }, + { + "@value": "Preclinical study" + }, + { + "@value": "Clinical trial" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Preclinical and clinical studies" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Clinical_trial" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3376" + }, + { + "@id": "http://edamontology.org/topic_3678" + } + ] + }, + { + "@id": "http://edamontology.org/data_1007", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "String of one or more ASCII characters representing a nucleotide." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleotide code" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0990" + }, + { + "@id": "http://edamontology.org/data_0995" + } + ] + }, + { + "@id": "http://edamontology.org/data_2141", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1249" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Size of the incremental 'step' a sequence window is moved over a sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Window step size" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/oldRelated", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EDAM concept URI of an erstwhile related concept (by has_input, has_output, has_topic, is_format_of, etc.) of a now deprecated concept." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Old related" + } + ] + }, + { + "@id": "http://edamontology.org/topic_1302", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3512" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PolyA signal or sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3675", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Variant filtering is used to eliminate false positive variants based for example on base calling quality, strand and position information, and mapping info." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Variant filtering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3218" + } + ] + }, + { + "@id": "http://edamontology.org/format_1644", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://dept.stat.lsa.umich.edu/~kshedden/Courses/Stat545/Notes/AffxFileFormats/chp.html#:~:text=Affymetrix%20CHP%20File%20Format&text=The%20CHP%20file%20contains%20probe,is%20the%20new%20XDA%20format." + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "chp" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of Affymetrix data file of information about (normalised) expression levels of the individual probes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Affymetrix probe normalised data format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CHP" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N545a7f6cf2884789b603e10fdd4b1ad9" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2058" + } + ] + }, + { + "@id": "_:N545a7f6cf2884789b603e10fdd4b1ad9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3111" + } + ] + }, + { + "@id": "http://edamontology.org/format_3006", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format6.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format6.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "bigWig format for large sequence annotation tracks that consist of a value for each sequence position. Similar to textual WIG format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "bigWig" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2919" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_0844", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mass of a molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular mass" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2050" + } + ] + }, + { + "@id": "http://edamontology.org/format_2562", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0994" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Text format (representation) of amino acid residues." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid identifier format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3788", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "sql" + } + ], + "http://edamontology.org/media_type": [ + { + "@id": "http://www.iana.org/assignments/media-types/application/sql" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://filext.com/file-extension/SQL" + }, + { + "@id": "http://www.iana.org/assignments/media-types/application/sql" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "SQL (Structured Query Language) is the de-facto standard query language (format of queries) for querying and manipulating data in relational databases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structured Query Language" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SQL" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/SQL" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3390", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.3.7 Nutrition and Dietetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of the effects of food components on the metabolism, health, performance and disease resistance of humans and animals. It also includes the study of human behaviours related to food choices." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nutrition" + }, + { + "@value": "Nutrition science" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Nutritional_science" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Dietetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nutritional science" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Nutrition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3344" + } + ] + }, + { + "@id": "_:N81ecbdba47124d3092ec988bcf1e61ad", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Closely related, but focusing on labeling and human readability but not on identification." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/data_2099" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@id": "http://www.w3.org/2000/01/rdf-schema#label" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0213", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/topic_2820" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a specific mouse or rat genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The resource may be specific to a group of mice / rats or all mice / rats." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mice or rats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0114", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene structure, regions which make an RNA product and features such as promoters, coding regions, gene fusion, splice sites etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene features" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Gene_structure" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Fusion genes" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes the study of promoters, coding regions etc." + }, + { + "@value": "This includes operons (operators, promoters and genes) from a bacterial genome. For example the operon leader and trailer gene, gene composition of the operon and associated information." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gene_structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3321" + } + ] + }, + { + "@id": "http://edamontology.org/data_2325", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an enzyme from the REBASE enzymes database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "REBASE enzyme number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2321" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2638", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an assay from the PubChem database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PubChem bioassay ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "http://edamontology.org/data_2639" + } + ] + }, + { + "@id": "http://edamontology.org/data_2895", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of a drug." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drug accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0993" + } + ] + }, + { + "@id": "http://edamontology.org/data_1406", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1398" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A simple floating point number defining the penalty for extending a gap in an alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gap extension penalty (integer)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3601", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://netpbm.sourceforge.net/doc/pbm.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The PBM format is a lowest common denominator monochrome file format. It serves as the common language of a large family of bitmap image conversion filters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pbm" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/format_3245", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for mass pectra and derived data, include peptide sequences etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mass spectrometry data format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N020a84ac09a740cd822b50c16611491a" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N020a84ac09a740cd822b50c16611491a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2536" + } + ] + }, + { + "@id": "http://edamontology.org/format_3166", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a report of information derived from a biological pathway or network." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biological pathway or network report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ncd4d2762f3044ed5ba23275a1db32462" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Ncd4d2762f3044ed5ba23275a1db32462", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2984" + } + ] + }, + { + "@id": "http://edamontology.org/format_3589", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.clcsupport.com/clcassemblycell/420/index.php?manual=Color_space_file_formats.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.clcsupport.com/clcassemblycell/420/index.php?manual=Color_space_file_formats.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Color space FASTA format sequence variant." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "FASTA format extended for color space information." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "csfasta" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2200" + }, + { + "@id": "http://edamontology.org/format_2554" + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/format_3004", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format1.5" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format1.5" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "bigBed format for large sequence annotation tracks, similar to textual BED format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "bigBed" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2919" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_1759", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "PDBML:pdbx_PDB_model_num" + }, + { + "@value": "WHATIF: model_number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a model structure from a PDB file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Model number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PDB model number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3035" + } + ] + }, + { + "@id": "http://edamontology.org/data_2683", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gasterosteus aculeatus' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Gasterosteus aculeatus')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3896", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict or detect active sites in proteins; the region of an enzyme which binds a substrate bind and catalyses a reaction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Active site detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Active site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Active_site" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2575" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1913", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify poor quality amino acid positions in protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0321" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Residue validation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2280", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0097" + }, + { + "@id": "http://edamontology.org/topic_1770" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The comparison two or more nucleic acid (typically RNA) secondary or tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Use this concept for methods that are exclusively for nucleic acid structures." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid structure comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2737", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of gene in the NMPDR database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A FIG ID consists of four parts: a prefix, genome id, locus type and id number." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FIG ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2731", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry (protein family) from the GeneFarm database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GeneFarm family ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein family ID (GeneFarm)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2910" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0163", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search and retrieve molecular sequences that are similar to a sequence-based query (typically a simple sequence)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The query is a sequence-based entity such as another sequence, a motif or profile." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1508", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Van der Waals radii of atoms for different amino acid residues." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "van der Waals radii (amino acids)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid index (van der Waals radii)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1501" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0545", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construct a phylogenetic tree by computing a sequence alignment and searching for the tree with the fewest number of character-state changes from the alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree generation (parsimony methods)" + }, + { + "@value": "Phylogenetic tree construction (parsimony methods)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes evolutionary parsimony (invariants) methods." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic inference (parsimony methods)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0539" + } + ] + }, + { + "@id": "http://edamontology.org/data_1903", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby_namespace:DDB_gene" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of locus from DictyBase (Dictyostelium discoideum)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID (DictyBase)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1893" + } + ] + }, + { + "@id": "http://edamontology.org/format_1610", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of KEGG GENES genome database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KEGG GENES gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1642", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2717" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Affymetrix library file of information about which probes belong to which probe set." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Affymetrix probe sets library file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3654", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "https://dx.doi.org/10.1038%2Fnbt1031" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Common file format for proteomics mass spectrometric data developed at the Seattle Proteome Center/Institute for Systems Biology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mzXML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0108", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The translation of mRNA into protein and subsequent protein processing in the cell." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_expression" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Translation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein expression" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_expression" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0078" + } + ] + }, + { + "@id": "http://edamontology.org/format_1983", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBOSS alignment format for debugging trace of full internal data content." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "debug" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0184", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0082" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Threading" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1359", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1353" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein regular expression pattern from the Prosite database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Prosite protein pattern" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3538", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Disordered structure in a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein features (disordered structure)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_disordered_structure" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein disordered structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Intrinsically_disordered_proteins" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_2814" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0499", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align multiple sequences using relative gap costs calculated from neighbors in a supplied phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Multiple sequence alignment construction (phylogenetic tree-based)" + }, + { + "@value": "Phylogenetic tree-based multiple sequence alignment construction" + }, + { + "@value": "Sequence alignment (phylogenetic tree-based)" + }, + { + "@value": "Sequence alignment generation (phylogenetic tree-based)" + }, + { + "@value": "Multiple sequence alignment (phylogenetic tree-based)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is supposed to give a more biologically meaningful alignment than standard alignments." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tree-based sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0292" + }, + { + "@id": "_:N8fd9997bb48d4696a2ecfae0f3d1c784" + } + ] + }, + { + "@id": "_:N8fd9997bb48d4696a2ecfae0f3d1c784", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0084" + } + ] + }, + { + "@id": "http://edamontology.org/format_1945", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mase program sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mase format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2526", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning, extracted from, or derived from the analysis of a scientific text (or texts) such as a full text article from a scientific journal." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Scientific text data" + }, + { + "@value": "Article data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. It includes concepts that are best described as scientific text or closely concerned with or derived from text." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Text data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + }, + { + "@id": "_:N92ba60f7abf646a68fb8aeef95514f08" + } + ] + }, + { + "@id": "_:N92ba60f7abf646a68fb8aeef95514f08", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3068" + } + ] + }, + { + "@id": "http://edamontology.org/data_2106", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a biological reaction from the BioCyc reactions database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reaction ID (BioCyc)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2104" + }, + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2108" + } + ] + }, + { + "@id": "http://edamontology.org/data_1277", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on intrinsic positional features of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Feature table (protein)" + }, + { + "@value": "Protein feature table" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes protein sequence feature annotation in any known sequence feature table format and any other report of protein features." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0896" + }, + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "http://edamontology.org/data_0885", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2080" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Results (hits) from searching a database of tertiary structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure database search results" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0895", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0962" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report about a specific peptide." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptide annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3961", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify where sections of the genome are repeated and the number of repeats in the genome varies between individuals." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CNV detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Copy number variation detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3228" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3280", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Recognise named entities, ontology concepts, tags, events, and dictionary terms within documents." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Event extraction" + }, + { + "@value": "Entity extraction" + }, + { + "@value": "Entity chunking" + }, + { + "@value": "Entity identification" + }, + { + "@value": "Named-entity recognition" + }, + { + "@value": "Concept mining" + }, + { + "@value": "NER" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Named-entity and concept recognition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Concept_mining" + }, + { + "@id": "https://en.wikipedia.org/wiki/Named-entity_recognition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3907" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3444", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Techniques that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Magnetic resonance imaging" + }, + { + "@value": "Magnetic resonance tomography" + }, + { + "@value": "MRT" + }, + { + "@value": "NMRI" + }, + { + "@value": "Nuclear magnetic resonance imaging" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "MRI" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MRI" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Magnetic_resonance_imaging" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3382" + } + ] + }, + { + "@id": "http://edamontology.org/data_2761", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the UTRSite database of regulatory motifs in eukaryotic UTRs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UTRSite ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1114" + } + ] + }, + { + "@id": "http://edamontology.org/data_2319", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a cell line without any punctuation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell line name (no punctuation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2316" + } + ] + }, + { + "@id": "http://edamontology.org/deprecation_comment", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A comment explaining why the comment should be or was deprecated, including name of person commenting (jison, mkalas etc.)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "deprecation_comment" + } + ] + }, + { + "@id": "http://edamontology.org/data_1238", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein sequence cleaved into peptide fragments (by enzymatic or chemical cleavage) with fragment masses." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Proteolytic digest" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1233" + }, + { + "@id": "_:N9802600608994ad0aec528065acffad9" + } + ] + }, + { + "@id": "_:N9802600608994ad0aec528065acffad9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://edamontology.org/data_2018", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information which (typically) is generated or collated by hand and which describes a biological entity, phenomena or associated primary (e.g. sequence or structural) data, as distinct from the primary data itself and computer-generated reports derived from it." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0933", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2535" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Output from a serial analysis of gene expression (SAGE) experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SAGE experimental data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0396", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate a Ramachandran plot of a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ramachandran plot calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Ramachandran_plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nfdec2827f6564e1eae27f61fb98c55e2" + }, + { + "@id": "http://edamontology.org/operation_0249" + } + ] + }, + { + "@id": "_:Nfdec2827f6564e1eae27f61fb98c55e2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1544" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0470", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict open coils, non-regular secondary structure and intrinsically disordered / unstructured regions of protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure prediction (coils)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0267" + } + ] + }, + { + "@id": "http://edamontology.org/data_3140", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0916" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on predicted or actual immunoglobulin gene structure including constant, switch and variable regions and diversity, joining and variable segments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid features (immunoglobulin gene structure)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1432", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PHYLIP file format for phylogenetics character frequency data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylip character frequencies format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2037" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3642", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Quantification analysis using chemical labeling by stable isotope dimethylation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Stable isotope dimethyl labelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3635" + } + ] + }, + { + "@id": "http://edamontology.org/data_1177", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a concept from the MeSH vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MeSH concept ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1087" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0618", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0154" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A database about scents." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Scents" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2253", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a data type." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data resource definition name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1084" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/data_0583", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3106" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A directory on disk from which files are read." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Directory metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3369", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The use of synthetic chemistry to study and manipulate biological systems." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Chemical_biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Chemical_biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + }, + { + "@id": "http://edamontology.org/topic_3371" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3460", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Classifiication (typically of molecular sequences) by assignment to some taxonomic hierarchy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Taxonomy assignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Taxonomic profiling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Taxonomic classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2995" + } + ] + }, + { + "@id": "http://edamontology.org/data_2644", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an enzyme-catalysed reaction from the Rhea database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reaction ID (Rhea)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2108" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3625", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify semantic relations among entities and concepts within a text, using text mining techniques." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Relationship discovery" + }, + { + "@value": "Relationship extraction" + }, + { + "@value": "Relationship inference" + }, + { + "@value": "Relation inference" + }, + { + "@value": "Relation discovery" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Relation extraction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0306" + } + ] + }, + { + "@id": "http://edamontology.org/data_2043", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A molecular sequence and minimal metadata, typically an identifier of the sequence and/or a comment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0849" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence record lite" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2101", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Authentication data usually used to log in into an account on an information system such as a web application or a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Account authentication" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2118" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0110", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The transcription of DNA into mRNA." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcription" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0505", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0295" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align protein tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3612", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Human ENCODE peak format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Format that covers both the broad peak format and narrow peak format from ENCODE." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ENCODE peak format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3585" + } + ] + }, + { + "@id": "http://edamontology.org/format_2183", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://ftp.ebi.ac.uk/pub/databases/ena/doc/xsd/sra_1_5/ENA.embl.xsd" + } + ], + "http://edamontology.org/is_deprecation_candidate": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML format for EMBL entries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBLXML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "https://fairsharing.org/bsg-s001452/" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2204" + } + ] + }, + { + "@id": "http://edamontology.org/data_2180", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2337" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Two or more things." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "2 or more" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3016", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://samtools.github.io/hts-specs/VCFv4.3.pdf" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "vcf.gz" + }, + { + "@value": "vcf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Variant Call Format (VCF) is tabular format for storing genomic sequence variations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "1000 Genomes Project has its own specification for encoding structural variations in VCF (https://www.internationalgenome.org/wiki/Analysis/Variant%20Call%20Format/VCF%20(Variant%20Call%20Format)%20version%204.0/encoding-structural-variants). This is based on VCF version 4.0 and not directly compatible with VCF version 4.3." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "VCF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Variant_Call_Format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2921" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2635", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "B[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a metabolite from the 3DMET database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "3DMET ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Compound ID (3DMET)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2894" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3517", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Genome-wide association study experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GWAS" + }, + { + "@value": "Genome-wide association study" + }, + { + "@value": "GWAS analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "GWAS_study" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GWAS study" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Genome-wide_association_study" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3678" + } + ] + }, + { + "@id": "http://edamontology.org/data_1306", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report on nucleosome formation potential or exclusion sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleosome exclusion sequences" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0485", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a physical (radiation hybrid) map of genetic markers in a DNA sequence using provided radiation hybrid (RH) scores for one or more markers." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Radiation Hybrid Mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ncd323d4537b94f8a99a2e03ca5f5ba10" + }, + { + "@id": "http://edamontology.org/operation_2944" + } + ] + }, + { + "@id": "_:Ncd323d4537b94f8a99a2e03ca5f5ba10", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2870" + } + ] + }, + { + "@id": "http://edamontology.org/data_1553", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a node from the CATH database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The report (for example http://www.cathdb.info/cathnode/1.10.10.10) includes CATH code (of the node and upper levels in the hierarchy), classification text (of appropriate levels in hierarchy), list of child nodes, representative domain and other relevant data and links." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH node" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0413", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict MHC class I or class II binding peptides, promiscuous binding peptides, immunogenicity etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0252" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MHC peptide immunogenicity prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1984", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Fasta format for (aligned) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FASTA-aln" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2200" + }, + { + "@id": "http://edamontology.org/format_2554" + } + ] + }, + { + "@id": "http://edamontology.org/format_3556", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://tools.ietf.org/html/rfc2557" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "mhtml" + }, + { + "@value": "mht" + }, + { + "@value": "eml" + } + ], + "http://edamontology.org/media_type": [ + { + "@id": "http://www.iana.org/assignments/media-types/multipart/related" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.iana.org/assignments/media-types/multipart/related" + }, + { + "@id": "https://tools.ietf.org/html/rfc2557" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "MIME HTML format for Web pages, which can include external resources, including images, Flash animations and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MIME HTML" + }, + { + "@value": "MHT" + }, + { + "@value": "MHTML format" + }, + { + "@value": "HTML email message format" + }, + { + "@value": "eml" + }, + { + "@value": "MHT format" + }, + { + "@value": "HTML email format" + }, + { + "@value": "MIME HTML format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "MIME multipart message format" + }, + { + "@value": "MIME multipart format" + }, + { + "@value": "MIME multipart message" + }, + { + "@value": "MIME multipart" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "MHTML is not strictly an HTML format, it is encoded as an HTML email message (although with multipart/related instead of multipart/alternative). It, however, contains the main HTML block as its core, and thus it is for practical reasons included in EDAM as a specialisation of 'HTML'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MHTML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/MHTML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2331" + } + ] + }, + { + "@id": "http://edamontology.org/data_1724", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0966" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term from the ChEBI ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ChEBI" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3487", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://rothlab.ucdavis.edu/genhelp/chapter_2_using_sequences.html#_Creating_and_Editing_Single_Sequenc" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Bioinformatics Sequence Markup Language format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BSML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2552" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1830", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:ShowCysteineFree" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect free cysteines in a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A free cysteine is neither involved in a cysteine bridge, nor functions as a ligand to a metal." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Free cysteine detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_1850" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0550", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify a plausible model of DNA substitution that explains a molecular (DNA or protein) sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleotide substitution modelling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA substitution modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N85777c48e1a4439daefbd2b092d45515" + }, + { + "@id": "_:Ncfee6004ecdf4d5abc8b4e35385d15a7" + }, + { + "@id": "http://edamontology.org/operation_2426" + }, + { + "@id": "http://edamontology.org/operation_0286" + } + ] + }, + { + "@id": "_:N85777c48e1a4439daefbd2b092d45515", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1439" + } + ] + }, + { + "@id": "_:Ncfee6004ecdf4d5abc8b4e35385d15a7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0084" + } + ] + }, + { + "@id": "http://edamontology.org/data_3917", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.23" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A table of unnormalized values representing summarised read counts per genomic region (e.g. gene, transcript, peak)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Read count matrix" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Count matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + } + ] + }, + { + "@id": "http://edamontology.org/format_1512", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from the BRENDA enzyme database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BRENDA enzyme report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1712", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An image of the structure of a small chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Small molecule structure image" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Small molecule sketch" + }, + { + "@value": "Chemical structure sketch" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The molecular identifier and formula are typically included." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical structure image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1710" + } + ] + }, + { + "@id": "http://edamontology.org/format_2550", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "OBO ontology XML format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "OBO-XML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2196" + } + ] + }, + { + "@id": "http://edamontology.org/data_1205", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A QSAR molecular descriptor." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "QSAR molecular descriptor" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "QSAR descriptor (molecular)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0847" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3445", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analysis of data from a diffraction experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Diffraction data analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2480" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3563", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyze read counts from RNA-seq experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA-seq read count analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3680" + } + ] + }, + { + "@id": "http://edamontology.org/data_2877", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a multi-protein complex; two or more polypeptides chains in a stable, functional association with one another." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein complex" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1460" + } + ] + }, + { + "@id": "http://edamontology.org/data_1280", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A map of DNA (linear or circular) annotated with physical features or landmarks such as restriction sites, cloned DNA fragments, genes or genetic markers, along with the physical distances between them." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Distance in a physical map is measured in base pairs. A physical map might be ordered relative to a reference map (typically a genetic map) in the process of genome sequencing." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Physical map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1274" + } + ] + }, + { + "@id": "http://edamontology.org/data_2985", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A thermodynamic or kinetic property of a nucleic acid molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid property (thermodynamic or kinetic)" + }, + { + "@value": "Nucleic acid thermodynamic property" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid thermodynamic data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0912" + } + ] + }, + { + "@id": "http://edamontology.org/format_2573", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://samtools.github.io/hts-specs/SAMv1.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "https://samtools.github.io/hts-specs/SAMv1.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence Alignment/Map (SAM) format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The format supports short and long reads (up to 128Mbp) produced by different sequencing platforms and is used to hold mapped data within the GATK and across the Broad Institute, the Sanger Centre, and throughout the 1000 Genomes project." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SAM" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2920" + }, + { + "@id": "http://edamontology.org/format_2057" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1252", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1249" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Specification of range(s) of length of sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence length range" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3663", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Prediction of genes or gene components by reference to homologous genes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Similarity-based gene prediction" + }, + { + "@value": "Gene prediction (homology-based)" + }, + { + "@value": "Empirical gene prediction" + }, + { + "@value": "Evidence-based gene prediction" + }, + { + "@value": "Empirical gene finding" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Orthology prediction" + }, + { + "@value": "Homology prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Homology-based gene prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gene_prediction#Empirical_methods" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2454" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0308", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Design or predict oligonucleotide primers for PCR and DNA amplification etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PCR primer prediction" + }, + { + "@value": "Primer design" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "PCR primer design (for gene transcription profiling)" + }, + { + "@value": "PCR primer design (for large scale sequencing)" + }, + { + "@value": "PCR primer design (for conserved primers)" + }, + { + "@value": "PCR primer design (for genotyping polymorphisms)" + }, + { + "@value": "PCR primer design (based on gene structure)" + }, + { + "@value": "PCR primer design (for methylation PCRs)" + }, + { + "@value": "Primer quality estimation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Primer design involves predicting or selecting primers that are specific to a provided PCR template. Primers can be designed with certain properties such as size of product desired, primer size etc. The output might be a minimal or overlapping primer set." + }, + { + "@value": "This includes predicting primers based on gene structure, promoters, exon-exon junctions, predicting primers that are conserved across multiple genomes or species, primers for for gene transcription profiling, for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs), for large scale sequencing, or for methylation PCRs." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PCR primer design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Primer_(molecular_biology)#PCR_primer_design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2419" + }, + { + "@id": "_:Ne346b49050ee41c79c4f126b6f3de7de" + }, + { + "@id": "_:N48740729117c43c0877f8030e28d8128" + }, + { + "@id": "_:N8aa33800d0194cec8a5a441c2fb4fee5" + } + ] + }, + { + "@id": "_:Ne346b49050ee41c79c4f126b6f3de7de", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0632" + } + ] + }, + { + "@id": "_:N48740729117c43c0877f8030e28d8128", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1240" + } + ] + }, + { + "@id": "_:N8aa33800d0194cec8a5a441c2fb4fee5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2977" + } + ] + }, + { + "@id": "http://edamontology.org/data_0999", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "International Non-proprietary Name (INN or 'generic name') of a chemical compound, assigned by the World Health Organisation (WHO)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "INN chemical name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical name (INN)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0990" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3297", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The exploitation of biological process, structure and function for industrial purposes, for example the genetic manipulation of microorganisms for the antibody production." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Biotechnology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Applied microbiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biotechnology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Biotechnology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/data_1375", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1355" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein repeat signature (sequence classifier) from the InterPro database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A protein repeat signature is a repeated protein motif, that is not in single copy expected to independently fold into a globular domain." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein repeat signature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1928", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Staden experiment file format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Staden experiment format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3941", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of microbe gene expression within natural environments (i.e. the metatranscriptome)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Metatranscriptomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Metatranscriptomics methods can be used for whole gene expression profiling of complex microbial communities." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metatranscriptomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Metatranscriptomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0203" + }, + { + "@id": "http://edamontology.org/topic_3308" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0274", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict protein-protein interactions, interfaces, binding sites etc in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2464" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-protein interaction prediction (from protein sequence)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1888", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2285" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby_namespace:MIPS_GE_Medicago" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for genetic elements in MIPS Medicago database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (MIPS Medicago)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3602", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://netpbm.sourceforge.net/doc/pgm.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The PGM format is a lowest common denominator grayscale file format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "It is designed to be extremely easy to learn and write programs for." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pgm" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_3547" + } + ] + }, + { + "@id": "http://edamontology.org/data_1290", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image showing matches between protein sequence(s) and InterPro Entries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2969" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. Each protein is represented as a scaled horizontal line with colored bars indicating the position of the matches." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InterPro compact match image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3823", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://fastg.sourceforge.net/" + }, + { + "@id": "http://fastg.sourceforge.net/FASTG_Spec_v1.00.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTG is a format for faithfully representing genome assemblies in the face of allelic polymorphism and assembly uncertainty." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "FASTG assembly graph format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "It is called FASTG, like FASTA, but the G stands for \"graph\"." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FASTG" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2561" + } + ] + }, + { + "@id": "http://edamontology.org/data_0946", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2984" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report about a specific biological pathway or network, typically including a map (diagram) of the pathway." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway or network annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2726", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0962" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on one or more small molecules that are enzyme inhibitors." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Inhibitor annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3575", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.3.14 Tropical medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Health problems that are prevalent in tropical and subtropical regions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Tropical_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tropical medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Tropical_medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3559", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise, format or render data from an ontology, typically a tree of terms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Ontology browsing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0337" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0389", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse the interaction of protein with nucleic acids, e.g. RNA or DNA-binding sites, interfaces etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein-nucleic acid binding site analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein-RNA interaction analysis" + }, + { + "@value": "Protein-DNA interaction analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-nucleic acid interaction analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_1777" + }, + { + "@id": "_:Nf4bc7472009f44f1a6bd6518a33fe83f" + } + ] + }, + { + "@id": "_:Nf4bc7472009f44f1a6bd6518a33fe83f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ] + }, + { + "@id": "http://edamontology.org/format_1614", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of the Saccharomyces Genome Database (SGD)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SGD gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3677", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify binding sites in nucleic acid sequences that are statistically significantly differentially bound between sample groups." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Differential binding analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0415" + } + ] + }, + { + "@id": "http://edamontology.org/data_0919", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about a specific chromosome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes basic information. e.g. chromosome number, length, karyotype features, chromosome sequence etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chromosome report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2084" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0224", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search or query a data resource and retrieve entries and / or annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Database retrieval" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Query" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Query and retrieval" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ] + }, + { + "@id": "http://edamontology.org/data_0582", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An ontology of biological or bioinformatics concepts and relations, a controlled vocabulary, structured glossary etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2353" + }, + { + "@id": "_:N8df0b696760141929f54cf5d440dcbaa" + } + ] + }, + { + "@id": "_:N8df0b696760141929f54cf5d440dcbaa", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0089" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0461", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate curvature and flexibility / stiffness of a nucleotide sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes properties such as." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid curvature calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Naa4f7aa3ed9a40e49572a030613649a2" + }, + { + "@id": "http://edamontology.org/operation_0262" + } + ] + }, + { + "@id": "_:Naa4f7aa3ed9a40e49572a030613649a2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0912" + } + ] + }, + { + "@id": "http://edamontology.org/data_1084", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a data type definition from some provider." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Data resource definition identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data resource definition ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/data_2099", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@id": "http://www.w3.org/2000/01/rdf-schema#label" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A name of a thing, which need not necessarily uniquely identify it." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Symbolic name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://semanticscience.org/resource/SIO_000116" + }, + { + "@value": "http://usefulinc.com/ns/doap#name" + }, + { + "@value": "\"http://www.w3.org/2000/01/rdf-schema#label" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0842" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3797", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The calculation of species richness for a number of individual samples, based on plots of the number of species as a function of the number of samples (rarefaction curves)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Species richness assessment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Rarefaction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Rarefaction_(ecology)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3438" + } + ] + }, + { + "@id": "http://edamontology.org/format_3747", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://tools.proteomecenter.org/formats/protXML/protXML_xmlspy_docs.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://purl.obolibrary.org/obo/MS_1001422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A format for storage, exchange, and processing of protein identifications created from ms/ms-derived peptide sequence data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "No human-consumable information about this format is available (see http://tools.proteomecenter.org/wiki/index.php?title=Formats:protXML)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "protXML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://sashimi.sourceforge.net/schema_revision/protXML/protXML_v3.xsd" + }, + { + "@value": "http://doi.org/10.1038/msb4100024" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0418", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect or predict signal peptides and signal peptide cleavage sites in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might use sequence motifs and features, amino acid composition, profiles, machine-learned classifiers, etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein signal peptide detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_1777" + }, + { + "@id": "http://edamontology.org/operation_3092" + }, + { + "@id": "_:Nbd1c199dbdcd4e6ba5c436b36654b00f" + } + ] + }, + { + "@id": "_:Nbd1c199dbdcd4e6ba5c436b36654b00f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0140" + } + ] + }, + { + "@id": "http://edamontology.org/data_1009", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0984" + }, + { + "@id": "http://edamontology.org/data_0989" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3472", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Count k-mers (substrings of length k) in DNA sequence data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "k-mer counting is used in genome and transcriptome assembly, metagenomic sequencing, and for error correction of sequence reads." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "k-mer counting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0236" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3407", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine dealing with diseases of endocrine organs, hormone systems, their target organs, and disorders of the pathways of glucose and lipid metabolism." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Endocrinology_and_metabolism" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Metabolism" + }, + { + "@value": "Endocrinology" + }, + { + "@value": "Endocrine disorders" + }, + { + "@value": "Metabolic disorders" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Endocrinology and metabolism" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Endocrinology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_1062", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of an entry from a database where the same type of identifier is used for objects (data) of different semantic type." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept is required for completeness. It should never have child concepts." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database entry identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3047", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.4 Biochemistry and molecular biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The molecular basis of biological activity, particularly the macromolecules (e.g. proteins and nucleic acids) that are essential to life." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Molecular_biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Biological processes" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Molecular_biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3731", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The comparison of samples from a metagenomics study, for example, by comparison of metagenome shotgun reads or assembled contig sequences, by comparison of functional profiles, or some other method." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sample comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2424" + } + ] + }, + { + "@id": "http://edamontology.org/format_3255", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The Terse RDF Triple Language (Turtle) is a human-friendly serialisation format for RDF (Resource Description Framework) graphs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The SPARQL Query Language incorporates a very similar syntax." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Turtle" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2376" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1443", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2523" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Molecular clock and stratigraphic (age) data derived from phylogenetic tree analysis." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree report (tree stratigraphic)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1657", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "genetic information processing pathways." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2984" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic information processing pathway report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2346", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the UniRef database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "UniRef cluster id" + }, + { + "@value": "UniRef entry accession" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster ID (UniRef)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1112" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3796", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Large-scale study (typically comparison) of DNA sequences of populations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Population_genomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Population genomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Population_genomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0622" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3545", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Model some biological system using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2426" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mathematical modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2190", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A fixed-size datum calculated (by using a hash function) for a molecular sequence, typically for purposes of error detection or indexing." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Hash" + }, + { + "@value": "Hash code" + }, + { + "@value": "Hash value" + }, + { + "@value": "Hash sum" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence checksum" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2534" + } + ] + }, + { + "@id": "http://edamontology.org/data_3426", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report concerning proteomics experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Proteomics experiment report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3994", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "u3d" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "U3D (Universal 3D) is a compressed file format and data structure for 3D computer graphics. It contains 3D model information such as triangle meshes, lighting, shading, motion data, lines and points with color and structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Universal 3D" + }, + { + "@value": "Universal 3D format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "U3D" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0820", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Lipoproteins (protein-lipid assemblies), and proteins or region of a protein that spans or are associated with a membrane." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Membrane_and_lipoproteins" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Membrane proteins" + }, + { + "@value": "Lipoproteins" + }, + { + "@value": "Transmembrane proteins" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Membrane and lipoproteins" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Lipoprotein" + }, + { + "@id": "https://en.wikipedia.org/wiki/Membrane_protein" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0078" + } + ] + }, + { + "@id": "http://edamontology.org/data_1274", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A map of (typically one) DNA sequence annotated with positional or non-positional features." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "DNA map" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N8f81d6dd5d08454999d417818180b636" + }, + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "_:N8f81d6dd5d08454999d417818180b636", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0102" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3191", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3192" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Trim to reference" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3957", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An experiment for studying protein-protein interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_interaction_experiment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Yeast two-hybrid" + }, + { + "@value": "Co-immunoprecipitation" + }, + { + "@value": "Phage display" + }, + { + "@value": "Yeast one-hybrid" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This used to have the ID http://edamontology.org/topic_3557 but the numerical part (owing to an error) duplicated http://edamontology.org/operation_3557 ('Imputation'). ID of this concept set to http://edamontology.org/topic_3957 in EDAM 1.24." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction experiment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein%E2%80%93protein_interaction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3361" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0208", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The influence of genotype on drug response, for example by correlating gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Pharmacogenomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Pharmacogenetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pharmacogenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Pharmacogenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0622" + }, + { + "@id": "http://edamontology.org/topic_0202" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0347", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a sequence database and retrieve sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0239" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database search (by motif or pattern)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3649", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Validation of peptide-spectrum matches" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search, and by comparison to search results with a database containing incorrect information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Target-Decoy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2428" + }, + { + "@id": "http://edamontology.org/operation_3646" + } + ] + }, + { + "@id": "http://edamontology.org/format_2095", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a molecular sequence with possible unknown positions but possibly with non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "unpure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2571" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0492", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align more than two molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Multiple alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes methods that use an existing alignment, for example to incorporate sequences into an alignment, or combine several multiple alignments into a single, improved alignment." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Multiple sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Multiple_sequence_alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0292" + } + ] + }, + { + "@id": "http://edamontology.org/data_1100", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of PIR sequence database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PIR ID" + }, + { + "@value": "PIR accession number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PIR identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1096" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2506", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2502" + }, + { + "@id": "http://edamontology.org/operation_3023" + }, + { + "@id": "http://edamontology.org/operation_0258" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse a protein sequence alignment, typically to detect features or make predictions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2479" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence alignment analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1999", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment format for score values for pairs of sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "scores format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2419", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict oligonucleotide primers or probes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Primer and probe prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Primer and probe design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2423" + }, + { + "@id": "_:N2c812d4b3714417789b1b7e40ca3d1ff" + }, + { + "@id": "http://edamontology.org/operation_3095" + } + ] + }, + { + "@id": "_:N2c812d4b3714417789b1b7e40ca3d1ff", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0632" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3267", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Convert one set of sequence coordinates to another, e.g. convert coordinates of one assembly to another, cDNA to genomic, CDS to genomic, protein translation to genomic etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence coordinate conversion" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N388702293fa44072aabfd71515e6885c" + }, + { + "@id": "http://edamontology.org/operation_3434" + }, + { + "@id": "_:N76923bc004df4a3eb6e0648370696d69" + } + ] + }, + { + "@id": "_:N388702293fa44072aabfd71515e6885c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2012" + } + ] + }, + { + "@id": "_:N76923bc004df4a3eb6e0648370696d69", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2012" + } + ] + }, + { + "@id": "http://edamontology.org/data_1796", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: FlyBase" + }, + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: FB" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene identifier from FlyBase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (FlyBase)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2295" + } + ] + }, + { + "@id": "http://edamontology.org/data_1164", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/example": [ + { + "@value": "urn:miriam:pubmed:16333295|urn:miriam:obo.go:GO%3A0045202" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The URI (URL or URN) of a data entity from the MIRIAM database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "identifiers.org synonym" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A MIRIAM URI consists of the URI of the MIRIAM data type (PubMed, UniProt etc) followed by the identifier of an element of that data type, for example PMID for a publication or an accession number for a GO term." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MIRIAM URI" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N83203e9718ab4aa7be42fe1ffbea1e72" + }, + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2902" + }, + { + "@id": "http://edamontology.org/data_1047" + } + ] + }, + { + "@id": "_:N83203e9718ab4aa7be42fe1ffbea1e72", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0957" + } + ] + }, + { + "@id": "http://edamontology.org/data_1681", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "NACCESS log file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NACCESS log file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3779", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A text (such as a scientific article), annotated with notes, data and metadata, such as recognised entities, concepts, and their relations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Annotated text" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2526" + }, + { + "@id": "http://edamontology.org/data_3671" + } + ] + }, + { + "@id": "http://edamontology.org/data_2858", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A concept from a biological ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes any fields from the concept definition such as concept name, definition, comments and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology concept" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2353" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0489", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict genetic code from analysis of codon usage data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic code prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nd7e288f92352453889d704b36a4edc67" + }, + { + "@id": "http://edamontology.org/operation_0286" + }, + { + "@id": "http://edamontology.org/operation_2423" + } + ] + }, + { + "@id": "_:Nd7e288f92352453889d704b36a4edc67", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1598" + } + ] + }, + { + "@id": "http://edamontology.org/format_3591", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.fileformat.info/format/tiff/egff.htm" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A versatile bitmap format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The TIFF format is perhaps the most versatile and diverse bitmap format in existence. Its extensible nature and support for numerous data compression schemes allow developers to customize the TIFF format to fit any peculiar data storage needs." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TIFF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/format_3691", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.openbel.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.openbel.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Biological Expression Language (BEL) is a textual format for representing scientific findings in life sciences in a computable form." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BEL" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0302", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align molecular sequence to structure in 3D space (threading)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence-structure alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Sequence-to-3D-profile alignment" + }, + { + "@value": "Sequence-3D profile alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Use this concept for methods that evaluate sequence-structure compatibility by assessing residue interactions in 3D. Methods might perform one-to-one, one-to-many or many-to-many comparisons." + }, + { + "@value": "This includes sequence-to-3D-profile alignment methods, which align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment) - methods might perform one-to-one, one-to-many or many-to-many comparisons." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein threading" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Threading_(protein_sequence)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ncca0782cf9204cbba86647c88587eab0" + }, + { + "@id": "http://edamontology.org/operation_0303" + }, + { + "@id": "_:N01f2251a8cb244f0aca298c501d975d2" + } + ] + }, + { + "@id": "_:Ncca0782cf9204cbba86647c88587eab0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0893" + } + ] + }, + { + "@id": "_:N01f2251a8cb244f0aca298c501d975d2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1460" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3557", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Replace missing data with substituted values, usually by using some statistical or other mathematical approach." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Data imputation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Imputation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Imputation_(statistics)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2238" + } + ] + }, + { + "@id": "http://edamontology.org/data_3717", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report about any kind of isolation of biological material." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Geographic location" + }, + { + "@value": "Isolation source" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Isolation report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0156", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0091" + }, + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Edit, convert or otherwise change a molecular sequence, either randomly or specifically." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence editing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1213", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for an RNA sequence with possible ambiguity, unknown positions and non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "rna" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#RNA_sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1207" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3324", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.3.4 Infectious diseases" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with the prevention, diagnosis and management of transmissible disease with clinically evident illness resulting from infection with pathogenic biological agents (viruses, bacteria, fungi, protozoa, parasites and prions)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Communicable disease" + }, + { + "@value": "Transmissible disease" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Infectious_disease" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Infectious disease" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Infectious_disease_(medical_specialty)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0634" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3920", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The identification of changes in DNA sequence or chromosome structure, usually in the context of diagnostic tests for disease, or to study ancestry or phylogeny." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Genetic testing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This can include indirect methods which reveal the results of genetic changes, such as RNA analysis to indicate gene expression, or biochemical analysis to identify expressed proteins." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA testing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Genetic_testing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + }, + { + "@id": "_:N4d65ec41cff34f3ba6532a1c458a6ebd" + } + ] + }, + { + "@id": "_:N4d65ec41cff34f3ba6532a1c458a6ebd", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0622" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0337", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise, plot or render (graphically) biomolecular data such as molecular sequences or structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Rendering" + }, + { + "@value": "Data visualisation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Plotting" + }, + { + "@value": "Molecular visualisation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes methods to render and visualise molecules." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Biological_data_visualization" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nccc251f5d25b4625ab7df9f5aa0df648" + }, + { + "@id": "http://edamontology.org/operation_0004" + }, + { + "@id": "_:N66b6f64295a4444ea467a395305d2dfd" + }, + { + "@id": "_:Nbd1462aed5254f4581ce41b2635905f8" + } + ] + }, + { + "@id": "_:Nccc251f5d25b4625ab7df9f5aa0df648", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2968" + } + ] + }, + { + "@id": "_:N66b6f64295a4444ea467a395305d2dfd", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2968" + } + ] + }, + { + "@id": "_:Nbd1462aed5254f4581ce41b2635905f8", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0092" + } + ] + }, + { + "@id": "http://edamontology.org/format_2532", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Genbank entry format wrapped in HTML elements." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GenBank-HTML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2559" + }, + { + "@id": "http://edamontology.org/format_2331" + } + ] + }, + { + "@id": "http://edamontology.org/data_1469", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1460" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a protein tertiary (3D) structure (all atoms)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure (all atoms)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1212", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a DNA sequence with possible ambiguity, unknown positions and non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "dna" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#DNA_sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1207" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3435", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.6" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Standardize or normalize data by some statistical method." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Normalisation" + }, + { + "@value": "Standardisation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "In the simplest normalisation means adjusting values measured on different scales to a common scale (often between 0.0 and 1.0), but can refer to more sophisticated adjustment whereby entire probability distributions of adjusted values are brought into alignment. Standardisation typically refers to an operation whereby a range of values are standardised to measure how many standard deviations a value is from its mean." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Standardisation and normalisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2238" + } + ] + }, + { + "@id": "http://edamontology.org/format_1207", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a nucleotide sequence with possible ambiguity, unknown positions and non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Non-sequence characters may be used for example for gaps." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "nucleotide" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Nucleotide_sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2571" + } + ] + }, + { + "@id": "http://edamontology.org/data_2538", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a mutation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mutation identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/format_3590", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.hdfgroup.org/HDF5/doc/H5.format.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "https://www.hdfgroup.org/HDF5/doc/H5.format.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "HDF5 is a data model, library, and file format for storing and managing data, based on Hierarchical Data Format (HDF)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "h5" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "HDF5 is the new version, according to the HDF group, a completely different technology (https://support.hdfgroup.org/products/hdf4/ compared to HDF." + }, + { + "@value": "An HDF5 file appears to the user as a directed graph. The nodes of this graph are the higher-level HDF5 objects that are exposed by the HDF5 APIs: Groups, Datasets, Named datatypes. Currently supported by the Python MDTraj package." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HDF5" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3867" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3419", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Mental health" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.23 Psychiatry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with the management of mental illness, emotional disturbance and abnormal behaviour." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Psychiatry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Psychiatric disorders" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Psychiatry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Psychiatry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_3871", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Force field parameters: charges, masses, radii, bond lengths, bond dihedrals, etc. define the structural molecular system, and are essential for the proper description and simulation of a molecular system." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Forcefield parameters" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3869" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2433", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0286" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0285" + }, + { + "@id": "http://edamontology.org/operation_0284" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a codon usage table." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage table processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0857", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report of sequence hits and associated data from searching a database of sequences (for example a BLAST search). This will typically include a list of scores (often with statistical evaluation) and a set of alignments for the hits." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence search hits" + }, + { + "@value": "Sequence database search results" + }, + { + "@value": "Sequence database hits" + }, + { + "@value": "Database hits (sequence)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The score list includes the alignment score, percentage of the query sequence matched, length of the database sequence entry in this alignment, identifier of the database sequence entry, excerpt of the database sequence entry description etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence search results" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2080" + } + ] + }, + { + "@id": "http://edamontology.org/data_3148", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Nucleic acid classification" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about a particular family of genes, typically a set of genes with similar sequence that originate from duplication of a common ancestor gene, or any other classification of nucleic acid sequences or structures that reflects gene structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene annotation (homology)" + }, + { + "@value": "Gene annotation (homology information)" + }, + { + "@value": "Gene homology (report)" + }, + { + "@value": "Gene family annotation" + }, + { + "@value": "Homology information" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes reports on on gene homologues between species." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene family report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2084" + } + ] + }, + { + "@id": "http://edamontology.org/data_1789", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a gene from Tetrahymena Genome Database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (TGD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3931", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Interdisciplinary science focused on extracting information from chemical systems by data analytical approaches, for example multivariate statistics, applied mathematics, and computer science." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Chemometrics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemometrics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Chemometrics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_2258" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0821", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Proteins that catalyze chemical reaction, the kinetics of enzyme-catalysed reactions, enzyme nomenclature etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Enzymology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Enzymes" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enzymes" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Enzyme" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0078" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2457", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Not sustainable to have protein type-specific concepts." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0473" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0269" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict G-protein coupled receptor (GPCR) coupling selectivity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GPCR coupling selectivity prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1844", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF: ImproperQualityMax" + }, + { + "@value": "WHATIF: ImproperQualitySum" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Validate protein geometry, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc. An example is validation of a Ramachandran plot of a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Ramachandran plot validation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein geometry validation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Ramachandran_plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0321" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3118", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Topological domains such as cytoplasmic regions in a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0736" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein topological domains" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0942", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Two-dimensional gel electrophoresis image." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "2D PAGE image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3424" + }, + { + "@id": "_:Nf37ba69b4b7b4f71bcc81ee036ca120c" + } + ] + }, + { + "@id": "_:Nf37ba69b4b7b4f71bcc81ee036ca120c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://edamontology.org/format_3886", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://ambermd.org/formats.html#restart" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "AMBER coordinate/restart file with 6 coordinates per line and decimal format F12.7 (fixed point notation with field width 12 and 7 decimal places)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "restrt" + }, + { + "@value": "rst7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RST" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2033" + }, + { + "@id": "http://edamontology.org/format_3868" + } + ] + }, + { + "@id": "http://edamontology.org/data_2070", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A nucleotide sequence motif." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid sequence motif" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "DNA sequence motif" + }, + { + "@value": "RNA sequence motif" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1353" + } + ] + }, + { + "@id": "http://edamontology.org/data_0911", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0962" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report about a specific nucleotide base." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleotide base annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3138", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3134" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Features concerning transcription of DNA into RNA including the regulation of transcription." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes promoters, CAAT signals, TATA signals, -35 signals, -10 signals, GC signals, primer binding sites for initiation of transcription or reverse transcription, enhancer, attenuator, terminators and ribosome binding sites." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcriptional features (report)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2676", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona savignyi' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Ciona savignyi')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1106", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a dbSNP database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "dbSNP identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "dbSNP ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2294" + } + ] + }, + { + "@id": "http://edamontology.org/data_1525", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on the crystallizability of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein crystallizability data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein crystallizability" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2970" + } + ] + }, + { + "@id": "http://edamontology.org/data_2762", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report about a specific or conserved pattern in a molecular sequence, such as its context in genes or proteins, its role, origin or method of construction, etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence profile report" + }, + { + "@value": "Sequence motif report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence signature report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + }, + { + "@id": "_:N20583e3faa3440ebbe01218caada8c43" + } + ] + }, + { + "@id": "_:N20583e3faa3440ebbe01218caada8c43", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "http://edamontology.org/operations", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty" + } + ] + }, + { + "@id": "http://edamontology.org/data_2118", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a software end-user on a website or a database (typically a person or an entity)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Person identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/data_1167", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a Taverna workflow." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Taverna workflow ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1083" + } + ] + }, + { + "@id": "http://edamontology.org/data_1153", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[*#+%^]?[0-9]{6}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the OMIM database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "OMIM ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Online_Mendelian_Inheritance_in_Man" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1081" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0565", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.15" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise, format or print a molecular sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0564" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3689", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://compbiotoolbox.fmach.it/BCMLdocs" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://compbiotoolbox.fmach.it/BCMLdocs" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Biological Connection Markup Language (BCML) is an XML format for biological pathways." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BCML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2013" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_2702", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an enzyme from the CAZy enzymes database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CAZy ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enzyme ID (CAZy)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2321" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0531", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a heat map of expression data from e.g. microarray data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Heat map construction" + }, + { + "@value": "Heatmap generation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The heat map usually uses a coloring scheme to represent expression values. They can show how quantitative measurements were influenced by experimental conditions." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Heat map generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Heat_map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3429" + }, + { + "@id": "_:Nd538ee5cc46c4e29b4664940d3e414da" + }, + { + "@id": "http://edamontology.org/operation_0571" + } + ] + }, + { + "@id": "_:Nd538ee5cc46c4e29b4664940d3e414da", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1636" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1820", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the solvent accessibility ('vacuum accessible surface') for each residue in a structure. This is the accessibility of the residue when taken out of the protein together with the backbone atoms of any residue it is covalently bound to." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0387" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein residue surface calculation (vacuum accessible)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_1775", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of gene and protein function including the prediction of functional properties of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Functional analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Function_analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein function analysis" + }, + { + "@value": "Protein function prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Function analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_function_prediction" + }, + { + "@id": "https://en.wikipedia.org/wiki/Functional_genomics#At_the_protein_level" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3307" + } + ] + }, + { + "@id": "http://edamontology.org/data_2701", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/example": [ + { + "@value": "2.10.10.10" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A code number identifying a family from the CATH database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH node ID (family)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1043" + } + ] + }, + { + "@id": "http://edamontology.org/data_2639", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the PubChem database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PubChem identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PubChem ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2232", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0820" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Lipoproteins (protein-lipid assemblies)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Lipoproteins" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3869", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data coming from molecular simulations, computer \"experiments\" on model molecules. Typically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Simulation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3182", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align two or more (tpyically huge) molecular sequences that represent genomes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Genome alignment construction" + }, + { + "@value": "Whole genome alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0292" + }, + { + "@id": "http://edamontology.org/operation_3918" + } + ] + }, + { + "@id": "http://edamontology.org/data_2975", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - \"raw\" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata)." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.23" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_0848" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A raw nucleic acid sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2977" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence (raw)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3409", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.8 Gastroenterology and hepatology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with disorders of the oesophagus, stomach, duodenum, jejenum, ileum, large intestine, sigmoid colon and rectum." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Gastroenterology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Gastrointestinal disorders" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gastroenterology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gastroenterology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/format_3880", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://manual.gromacs.org/documentation/2018/user-guide/file-formats.html#top" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GROMACS MD package top textual files define an entire structure system topology, either directly, or by including itp files." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "There is currently no tool available for conversion between GROMACS topology format and other formats, due to the internal differences in both approaches. There is, however, a method to convert small molecules parameterized with AMBER force-field into GROMACS format, allowing simulations of these systems with GROMACS MD package." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GROMACS top" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3879" + }, + { + "@id": "http://edamontology.org/format_2033" + } + ] + }, + { + "@id": "http://edamontology.org/data_2380", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of an item from the CABRI database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CABRI accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2109" + } + ] + }, + { + "@id": "http://edamontology.org/data_1496", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0888" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A score reflecting structural similarities of two molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular similarity score" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0494", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0496" + }, + { + "@id": "http://edamontology.org/operation_0491" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Globally align exactly two molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Global alignment methods identify similarity across the entire length of the sequences." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pairwise sequence alignment generation (global)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0459", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate and plot a DNA or DNA/RNA probability profile." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid probability profile plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0456" + } + ] + }, + { + "@id": "http://edamontology.org/format_3163", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://gcdml.gensc.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://gcdml.gensc.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GCDML XML format for genome and metagenome metadata according to MIGS/MIMS/MIMARKS information standards, standardised by the Genomic Standards Consortium (GSC)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GCDML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3167" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_2179", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2337" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Exactly two things." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Exactly 2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0427", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect or predict transposons, retrotransposons / retrotransposition signatures etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transposon prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0415" + } + ] + }, + { + "@id": "http://edamontology.org/data_1094", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A label (text token) describing a type of molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Sequence type might reflect the molecule (protein, nucleic acid etc) or the sequence itself (gapped, ambiguous etc)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2753", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A conformational energy map of the glycosidic linkages in a carbohydrate molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Carbohydrate conformational map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3425" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2492", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict the interactions of proteins with other proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein-protein interaction detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein-protein binding prediction" + }, + { + "@value": "Protein-protein interaction prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2949" + }, + { + "@id": "_:Naaa921d7430e492395c79fe59b5c0b32" + }, + { + "@id": "_:Ndbc93a1401884eb8a2a56819329e64bf" + } + ] + }, + { + "@id": "_:Naaa921d7430e492395c79fe59b5c0b32", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ] + }, + { + "@id": "_:Ndbc93a1401884eb8a2a56819329e64bf", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0906" + } + ] + }, + { + "@id": "http://edamontology.org/data_1253", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report on basic information about a molecular sequence such as name, accession number, type (nucleic or protein), length, description etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2955" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence information report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2581", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2339" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a concept from the GO ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GO concept name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2803", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of a cDNA molecule catalogued in the RefSeq database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Clone ID (RefSeq)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1098" + }, + { + "@id": "http://edamontology.org/data_1855" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2464", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict protein-protein binding sites." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein-protein binding site detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-protein binding site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2575" + }, + { + "@id": "_:N99b9de0b11384258813544001b3f9b62" + }, + { + "@id": "_:N50105f0340d0407b95c1aa5b60cafc64" + } + ] + }, + { + "@id": "_:N99b9de0b11384258813544001b3f9b62", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0906" + } + ] + }, + { + "@id": "_:N50105f0340d0407b95c1aa5b60cafc64", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ] + }, + { + "@id": "http://edamontology.org/data_2732", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a family of organism." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Family name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1868" + } + ] + }, + { + "@id": "http://edamontology.org/format_2568", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a nucleotide sequence (characters ACGTU only) without unknown positions, ambiguity or non-sequence characters ." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "completely unambiguous pure nucleotide" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1207" + }, + { + "@id": "http://edamontology.org/format_2567" + } + ] + }, + { + "@id": "http://edamontology.org/format_1959", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2000" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Selex sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "selex sequence format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2233", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify a representative sequence from a set of sequences, typically using scores from pair-wise alignment or other comparison of the sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Representative sequence identification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2451" + } + ] + }, + { + "@id": "http://edamontology.org/data_1031", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a gene or feature from the CGD database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CGD ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (CGD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2696", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Spermophilus tridecemlineatus' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Spermophilus tridecemlineatus')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1351", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report from the HMMER package on the emission and transition counts of a hidden Markov model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HMMER emission and transition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2075" + } + ] + }, + { + "@id": "http://edamontology.org/data_1068", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a phylogenetic tree for example from a phylogenetic tree database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:Nf48df71be8fa4993a4e6517f8cd88d9b" + } + ] + }, + { + "@id": "_:Nf48df71be8fa4993a4e6517f8cd88d9b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0872" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2472", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Retrieve information on a specific gene." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (gene annotation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1813", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Query a sequence data resource (typically a database) and retrieve sequences and / or annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes direct retrieval methods (e.g. the dbfetch program) but not those that perform calculations on the sequence." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence retrieval" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1842", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:ProlineMutationValue" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate for each position in a protein structure the chance that a proline, when introduced at this position, would increase the stability of the whole protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0331" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Proline mutation value calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2094", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for molecular sequence with possible unknown positions but without non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2571" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_0997", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique name from Chemical Entities of Biological Interest (ChEBI) of a chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ChEBI chemical name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is the recommended chemical name for use for example in database annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical name (ChEBI)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0990" + } + ] + }, + { + "@id": "http://edamontology.org/data_2023", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data used to replace (mask) characters in a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence mask parameter" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2522", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2019" + }, + { + "@id": "http://edamontology.org/data_1274" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning a map of molecular sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Map data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1616", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of The Arabidopsis Information Resource (TAIR) genome database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TAIR gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1408", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1399" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A simple floating point number defining the penalty for gaps that are close together in an alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gap separation penalty (integer)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1430", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PHYLIP file format for continuous quantitative character data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylip continuous quantitative characters" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2037" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0211", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a specific fly genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Flies" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2757", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "PF[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a domain from the Pfam database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pfam domain name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1131" + } + ] + }, + { + "@id": "http://edamontology.org/format_3506", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Microsoft Word format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Microsoft Word format" + }, + { + "@value": "doc" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "docx" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3507" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2417", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2945" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) data on the physicochemical property of a molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Physicochemical property data processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2407", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) annotation of some type, typically annotation on an entry from a biological or biomedical database entity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Annotation processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2796", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[1-9][0-9]*" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the GlycosciencesDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "LInear Notation for Unique description of Carbohydrate Sequences ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "LINUCS ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://doi.org/10.1016/S0008-6215(01)00230-0" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2900" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0083", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0081" + }, + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The alignment (equivalence between sites) of molecular sequences, structures or profiles (representing a sequence or structure alignment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2934", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0337" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a view of clustered quantitative data, annotated with textual information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2938" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cluster textual view generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0781", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.28" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Study of viruses, e.g. sequence and structural data, interactions of viral proteins, or a viral genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Virology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Virology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Virology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3895", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The application of multi-disciplinary science and technology for the construction of artificial biological systems for diverse applications." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Biomimeic chemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Synthetic biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Synthetic_biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3297" + }, + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/data_2353", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning or derived from an ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Ontological data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + }, + { + "@id": "_:N53dbe20597414fcdb5c6bfa6c58a64a2" + } + ] + }, + { + "@id": "_:N53dbe20597414fcdb5c6bfa6c58a64a2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0089" + } + ] + }, + { + "@id": "http://edamontology.org/data_1123", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry from the TreeBASE database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TreeBASE study accession number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1068" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_3753", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A ranked list of categories (usually ontology concepts), each associated with a statistical metric of over-/under-representation within the studied data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Over-representation report" + }, + { + "@value": "Enrichment report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Functional enrichment report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Over-representation data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1836", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:ShowBumps" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect 'bumps' between residues in a structure, i.e. those with pairs of atoms whose Van der Waals' radii interpenetrate more than a defined distance." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Residue bump detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0321" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0561", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Reformat (a file or other report of) molecular sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0335" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence formatting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1912", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylogenetic tree Nexus (text) format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nexus format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2556" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1738", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0970" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a published article provided by the doc2loc program." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The doc2loc output includes the url, format, type and availability code of a document for every service provider." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "doc2loc document information" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2530", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about a specific organism." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Organism annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Organism report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3211", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate an index of a genome sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Genome indexing (suffix arrays)" + }, + { + "@value": "Burrows-Wheeler" + }, + { + "@value": "Suffix arrays" + }, + { + "@value": "Genome indexing (Burrows-Wheeler)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Many sequence alignment tasks involving many or very large sequences rely on a precomputed index of the sequence to accelerate the alignment. The Burrows-Wheeler Transform (BWT) is a permutation of the genome based on a suffix array algorithm. A suffix array consists of the lexicographically sorted list of suffixes of a genome." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome indexing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ne7b0ff0a08304958880bec4d8b9ea09b" + }, + { + "@id": "http://edamontology.org/operation_3918" + }, + { + "@id": "http://edamontology.org/operation_0227" + } + ] + }, + { + "@id": "_:Ne7b0ff0a08304958880bec4d8b9ea09b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3210" + } + ] + }, + { + "@id": "http://edamontology.org/format_3681", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.1074/mcp.O113.036681" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://code.google.com/archive/p/mztab" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://code.google.com/archive/p/mztab" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "mzTab is a tab-delimited format for mass spectrometry-based proteomics and metabolomics results." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mzTab" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3561", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare the models or schemas used by two or more databases, or any other general comparison of databases rather than a detailed comparison of the entries themselves." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Data model comparison" + }, + { + "@value": "Schema comparison" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2424" + }, + { + "@id": "http://edamontology.org/operation_2429" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0522", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict primers for methylation PCRs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0308" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PCR primer design (for methylation PCRs)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2214", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on mutation prognostic data, such as information on patient cohort, the study settings and the results of the study." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mutation annotation (prognostic)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2592", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2099" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A type (represented as a string) of cancer." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cancer type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1385", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of multiple molecular sequences of different types." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence alignment (hybrid)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Hybrid sequence alignments include for example genomic DNA to EST, cDNA or mRNA." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hybrid sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0863" + } + ] + }, + { + "@id": "http://edamontology.org/data_2630", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a mobile genetic element." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mobile genetic element ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/format_2014", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a sequence-profile alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence-profile alignment format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:Ne8e1ad8508534fb08cc4fead0bb78bd6" + } + ] + }, + { + "@id": "_:Ne8e1ad8508534fb08cc4fead0bb78bd6", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0858" + } + ] + }, + { + "@id": "http://edamontology.org/format_3599", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.fileformat.info/format/xpm/egff.htm" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "X PixMap (XPM) is an image file format used by the X Window System, it is intended primarily for creating icon pixmaps, and supports transparent pixels." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "xpm" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_2298", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for a gene approved by the HUGO Gene Nomenclature Committee." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "HGNC ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (HGNC)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_0962", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about a specific chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Chemical structure report" + }, + { + "@value": "Small molecule annotation" + }, + { + "@value": "Chemical compound annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Small molecule report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N618dd63e4efe408aa642ff0ae1f5a028" + }, + { + "@id": "http://edamontology.org/data_2085" + } + ] + }, + { + "@id": "_:N618dd63e4efe408aa642ff0ae1f5a028", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0154" + } + ] + }, + { + "@id": "http://edamontology.org/format_3885", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Scripps Research Institute BinPos format is a binary formatted file to store atom coordinates." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Scripps Research Institute BinPos" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "It is basically a translation of the ASCII atom coordinate format to binary code. The only additional information stored is a magic number that identifies the BinPos format and the number of atoms per snapshot. The remainder is the chain of coordinates binary encoded. A drawback of this format is its architecture dependency. Integers and floats codification depends on the architecture, thus it needs to be converted if working in different platforms (little endian, big endian)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BinPos" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3867" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_1131", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a protein family." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein family name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1075" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/data_1239", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "SO:0000412" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Restriction digest fragments from digesting a nucleotide sequence with restriction sites using a restriction endonuclease." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Restriction digest" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1234" + } + ] + }, + { + "@id": "http://edamontology.org/data_1864", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_2019" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data describing a set of multiple genetic or physical maps, typically sharing a common set of features which are mapped." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2019" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Map set data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2894", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of an entry from a database of chemicals." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Chemical compound accession" + }, + { + "@value": "Small molecule accession" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Compound accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1086" + }, + { + "@id": "http://edamontology.org/data_2901" + } + ] + }, + { + "@id": "http://edamontology.org/format_3017", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://srf.sourceforge.net/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://srf.sourceforge.net/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence Read Format (SRF) of sequence trace data. Supports submission to the NCBI Short Read Archive." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SRF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_2057" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0540", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylogenetic tree construction from molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree construction (from molecular sequences)" + }, + { + "@value": "Phylogenetic tree generation (from molecular sequences)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods typically compare multiple molecular sequence and estimate evolutionary distances and relationships to infer gene families or make functional predictions." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic inference (from molecular sequences)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2403" + }, + { + "@id": "http://edamontology.org/operation_0538" + } + ] + }, + { + "@id": "http://edamontology.org/data_1474", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1468" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a protein domain tertiary (3D) structure (typically C-alpha atoms only)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "C-beta atoms from amino acid side-chains may be included." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein domain (C-alpha atoms)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1178", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a concept from the HGNC controlled vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HGNC concept ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1087" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0179", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The prediction of tertiary structure of protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0082" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein tertiary structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3020", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://samtools.github.io/hts-specs/VCFv4.3.pdf" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "bcf" + }, + { + "@value": "bcf.gz" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://samtools.sourceforge.net/mpileup.shtml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BCF is the binary version of Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BCF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_2921" + } + ] + }, + { + "@id": "http://edamontology.org/format_1342", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of results of a search of the InterPro database showing matches of query protein sequence(s) to InterPro entries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The report includes a classification of regions in a query protein sequence which are assigned to a known InterPro protein family or group." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InterPro protein view report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1341" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0444", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify matrix/scaffold attachment regions (MARs/SARs) in DNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MAR/SAR prediction" + }, + { + "@value": "Matrix/scaffold attachment site prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "MAR/SAR sites often flank a gene or gene cluster and are found nearby cis-regulatory sequences. They might contribute to transcription regulation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "S/MAR prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0438" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3090", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_3092" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict, recognise and identify positional features in proteins from analysing protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein feature prediction (from structure)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1956", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1998" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PHYLIP non-interleaved sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "phylipnon sequence format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0378", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate amino acid frequency or word composition of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0236" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence composition calculation (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2983", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2600" + }, + { + "@id": "http://edamontology.org/data_2984" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning a specific biological pathway or network." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway or network data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3192", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cut (remove) the end from a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Trimming" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Trim ends" + }, + { + "@value": "Trim to reference" + }, + { + "@value": "Barcode sequence removal" + }, + { + "@value": "Trim vector" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes end trimming, -- Trim sequences (typically from an automated DNA sequencer) to remove misleading ends. For example trim polyA tails, introns and primer sequence flanking the sequence of amplified exons, or other unwanted sequence.-- trimming to a reference sequence, --Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence. -- vector trimming -- Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence trimming" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0369" + } + ] + }, + { + "@id": "http://edamontology.org/format_1196", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://en.wikipedia.org/wiki/Simplified_molecular_input_line_entry_specification" + }, + { + "@id": "http://www.daylight.com/dayhtml/doc/theory/theory.smiles.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.daylight.com/dayhtml/doc/theory/theory.smiles.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Chemical structure specified in Simplified Molecular Input Line Entry System (SMILES) line notation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SMILES" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "http://en.wikipedia.org/wiki/Simplified_molecular_input_line_entry_specification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2035" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0166", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Structural features or common 3D motifs within protein structures, including the surface of a protein structure, such as biological interfaces with other molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein 3D motifs" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_structural_motifs_and_surfaces" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein surfaces" + }, + { + "@value": "Structural motifs" + }, + { + "@value": "Protein structural motifs" + }, + { + "@value": "Protein structural features" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes conformation of conserved substructures, conserved geometry (spatial arrangement) of secondary structure or protein backbone, solvent-exposed surfaces, internal cavities, the analysis of shape, hydropathy, electrostatic patches, role and functions etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structural motifs and surfaces" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_structure#Domains,_motifs,_and_folds_in_protein_structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_2814" + } + ] + }, + { + "@id": "http://edamontology.org/format_1761", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of CATH domain classification information for a protein PDB file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The report (for example http://www.cathdb.info/pdb/1cuk) includes chain identifiers, domain identifiers and CATH codes for domains in a given PDB file." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH PDB report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2452", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0291" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a sequence cluster." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2462", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the solvent accessibility of a structure as a whole." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0387" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein surface calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2748", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0957" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a subdivision of the Osteogenesis database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database name (Osteogenesis)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3432", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Group together some data entities on the basis of similarities such that entities in the same group (cluster) are more similar to each other than to those in other groups (clusters)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Clustering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/format_2322", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from the BioCyc enzyme database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioCyc enzyme report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3012", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format10" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format10" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Personal Genome SNP (pgSnp) format for sequence variation tracks (indels and polymorphisms), supported by the UCSC Genome Browser." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pgSnp" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2919" + } + ] + }, + { + "@id": "http://edamontology.org/data_1426", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Continuous quantitative data that may be read during phylogenetic tree calculation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic continuous quantitative characters" + }, + { + "@value": "Quantitative traits" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic continuous quantitative data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0871" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3945", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of the process and mechanism of change of biomolecules such as DNA, RNA, and proteins across generations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Molecular_evolution" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular evolution" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Molecular_evolution" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3299" + }, + { + "@id": "http://edamontology.org/topic_0625" + }, + { + "@id": "http://edamontology.org/topic_3391" + } + ] + }, + { + "@id": "http://edamontology.org/data_2042", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Typically a human-readable summary of body of facts or information indicating why a statement is true or valid. This may include a computational prediction, laboratory experiment, literature reference etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Evidence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/data_2579", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2872" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A simple summary of expressed genes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Expressed gene list" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1665", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of Taverna workflows." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Taverna workflow format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2032" + } + ] + }, + { + "@id": "http://edamontology.org/data_1130", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "EBI\\-[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry from the IntAct database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "IntAct accession number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1074" + } + ] + }, + { + "@id": "http://edamontology.org/data_1055", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A Life Science Identifier (LSID) - a unique identifier of some data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Life Science Identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "LSIDs provide a standard way to locate and describe data. An LSID is represented as a Uniform Resource Name (URN) with the following format: URN:LSID:::[:]" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "LSID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1053" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3519", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PCR experiments, e.g. quantitative real-time PCR." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Polymerase chain reaction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "PCR_experiment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "RT-qPCR" + }, + { + "@value": "Quantitative PCR" + }, + { + "@value": "Real Time Quantitative PCR" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PCR experiment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Polymerase_chain_reaction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3361" + } + ] + }, + { + "@id": "http://edamontology.org/data_1303", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3128" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on quadruplex-forming motifs in a nucleotide sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid features (quadruplexes)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3531", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Super-secondary structure of protein sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3542" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein super-secondary structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3285", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://pngu.mgh.harvard.edu/~purcell/plink/data.shtml#ped" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The MAP file describes SNPs and is used by the Plink package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Plink MAP" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MAP" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3288" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2574", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse the hydrophobic, hydrophilic or charge properties of a protein (from analysis of sequence or structural information)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein hydropathy calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N3c104e18fdd24024ad995a12382233e4" + }, + { + "@id": "_:Nc43dc1457aba4274b859ce09864fdfa8" + }, + { + "@id": "http://edamontology.org/operation_0250" + } + ] + }, + { + "@id": "_:N3c104e18fdd24024ad995a12382233e4", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0123" + } + ] + }, + { + "@id": "_:Nc43dc1457aba4274b859ce09864fdfa8", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2970" + } + ] + }, + { + "@id": "http://edamontology.org/data_2213", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on the prevalence of mutation(s), including data on samples and mutation prevalence (e.g. by tumour type).." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mutation annotation (prevalence)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3306", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.9 Biophysics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The use of physics to study biological system." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Biophysics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Medical physics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biophysics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Biophysics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3318" + }, + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/data_1192", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a BLAST tool." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "BLAST name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This include 'blastn', 'blastp', 'blastx', 'tblastn' and 'tblastx'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tool name (BLAST)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1190" + } + ] + }, + { + "@id": "http://edamontology.org/data_0923", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PCR experiments, e.g. quantitative real-time PCR." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PCR experiment report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2163", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An image of peptide sequence sequence in a simple 3,4,3,4 repeating pattern that emulates at a simple level the arrangement of residues around an alpha helix." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Useful for highlighting amphipathicity and other properties." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Helical net" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1709" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3307", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.12 Computational biology" + }, + { + "@value": "VT 1.5.26 Theoretical biology" + }, + { + "@value": "VT 1.5.19 Mathematical biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The development and application of theory, analytical methods, mathematical models and computational simulation of biological systems." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Computational_biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Mathematical biology" + }, + { + "@value": "Biomathematics" + }, + { + "@value": "Theoretical biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes the modeling and treatment of biological processes and systems in mathematical terms (theoretical biology)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Computational biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Computational_biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_4019" + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/topic_0195", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0077" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Simulated polymerase chain reaction (PCR)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Virtual PCR" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0286", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse codon usage in molecular sequences or process codon usage data (e.g. a codon usage table)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Codon usage data analysis" + }, + { + "@value": "Codon usage table analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N0019b142c5f24b458ba5fa801e40b27c" + }, + { + "@id": "_:Nde2fa16a2e2c4222b4de4f1880a843d3" + }, + { + "@id": "_:Naf1348f97e7246ee876b24e7e9de6da1" + }, + { + "@id": "http://edamontology.org/operation_2478" + }, + { + "@id": "_:N63a50d6ea5f14cfe9aea65194837f7c2" + }, + { + "@id": "_:Ndecc618d766d4816882a8739e5cbc93a" + } + ] + }, + { + "@id": "_:N0019b142c5f24b458ba5fa801e40b27c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1597" + } + ] + }, + { + "@id": "_:Nde2fa16a2e2c4222b4de4f1880a843d3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2977" + } + ] + }, + { + "@id": "_:Naf1348f97e7246ee876b24e7e9de6da1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ] + }, + { + "@id": "_:N63a50d6ea5f14cfe9aea65194837f7c2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0914" + } + ] + }, + { + "@id": "_:Ndecc618d766d4816882a8739e5cbc93a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1597" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0571", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise microarray or other expression data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Expression data rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Microarray data rendering" + }, + { + "@value": "Gene expression data visualisation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Expression data visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2495" + }, + { + "@id": "_:Nb0497c2457de49be8fdd2d24e0dc4063" + }, + { + "@id": "http://edamontology.org/operation_0337" + } + ] + }, + { + "@id": "_:Nb0497c2457de49be8fdd2d24e0dc4063", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3117" + } + ] + }, + { + "@id": "http://edamontology.org/format_1208", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a protein sequence with possible ambiguity, unknown positions and non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Non-sequence characters may be used for gaps and translation stop." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "protein" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Amino_acid_sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2571" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1827", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate for each cysteine (bridge) all its torsion angles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0249" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cysteine torsion angle calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3892", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study and simulation of molecular conformations using a computational model and computer simulations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes methods such as Molecular Dynamics, Coarse-grained dynamics, metadynamics, Quantum Mechanics, QM/MM, Markov State Models, etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biomolecular simulation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3307" + } + ] + }, + { + "@id": "http://edamontology.org/format_3309", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://rna.urmc.rochester.edu/Text/File_Formats.html" + }, + { + "@id": "http://www.ibi.vu.nl/programs/k2nwww/static/data_formats.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "File format of a CT (Connectivity Table) file from the RNAstructure package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Connectivity Table file format" + }, + { + "@value": "Connect format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CT" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2076" + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/topic_3673", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Laboratory technique to sequence the complete DNA sequence of an organism's genome at a single time." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Genome sequencing" + }, + { + "@value": "WGS" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Whole_genome_sequencing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "De novo genome sequencing" + }, + { + "@value": "Whole genome resequencing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Whole genome sequencing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Whole_genome_sequencing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3168" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0464", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict tRNA genes in genomic sequences (tRNA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "tRNA gene prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2454" + }, + { + "@id": "_:N0eecf17ce05f459ea49fa7ebcb1fb855" + } + ] + }, + { + "@id": "_:N0eecf17ce05f459ea49fa7ebcb1fb855", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0659" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1847", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0319" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Determine for residue the DSSP determined secondary structure in three-state (HSC)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DSSP secondary structure assignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3145", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a 'protein' node from the SCOP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SCOP protein" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1409", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1399" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A simple floating point number defining the penalty for gaps that are close together in an alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gap separation penalty (float)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2993", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2949" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) molecular interaction data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular interaction data processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1140", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier (number) of a hidden Markov model from the Superfamily database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Superfamily hidden Markov model number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2910" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0569", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.15" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Render and visualise protein secondary structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0570" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2563", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Single letter amino acid identifier, e.g. G." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid name (single letter)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1006" + } + ] + }, + { + "@id": "http://edamontology.org/format_3993", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "stl" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "STL is a file format native to the stereolithography CAD software created by 3D Systems. The format is used to save and share surface-rendered 3D images and also for 3D printing." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "stl" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Stereolithography format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/format_1393", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBASSY 'domain alignment file' (DAF) format, containing a sequence alignment of protein domains belonging to the same SCOP or CATH family." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The format is clustal-like and includes annotation of domain family classification information." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "daf" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1189", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Medline UI (unique identifier) of an article." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Medline unique identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The use of Medline UI has been replaced by the PubMed unique identifier." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Medline UI" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1088" + } + ] + }, + { + "@id": "http://edamontology.org/data_0950", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A biological model represented in mathematical terms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biological model" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mathematical model" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + }, + { + "@id": "_:N54597663761f4c5192af22a62f052db1" + } + ] + }, + { + "@id": "_:N54597663761f4c5192af22a62f052db1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3307" + } + ] + }, + { + "@id": "http://edamontology.org/format_1968", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DAS sequence (XML) format (nucleotide-only)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The use of this format is deprecated." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "dasdna" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2552" + } + ] + }, + { + "@id": "http://edamontology.org/data_1893", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique name or other identifier of a genetic locus, typically conforming to a scheme that names loci (such as predicted genes) depending on their position in a molecular sequence, for example a completely sequenced genome or chromosome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Locus identifier" + }, + { + "@value": "Locus name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N40ac438ac38440e0b1471a6643e09a1a" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N40ac438ac38440e0b1471a6643e09a1a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2012" + } + ] + }, + { + "@id": "http://edamontology.org/data_2675", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona intestinalis' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Ciona intestinalis')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2706", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a chromosome as used in the BioCyc database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chromosome name (BioCyc)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0987" + } + ] + }, + { + "@id": "http://edamontology.org/data_1486", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1481" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of protein tertiary (3D) structures (typically C-alpha atoms only considered)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "C-beta atoms from amino acid side-chains may be considered." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment (protein C-alpha atoms)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0976", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier that identifies a particular type of data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Identifier (typed)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept exists only to assist EDAM maintenance and navigation in graphical browsers. It does not add semantic information. This branch provides an alternative organisation of the concepts nested under 'Accession' and 'Name'. All concepts under here are already included under 'Accession' or 'Name'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Identifier (by type of entity)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0842" + } + ] + }, + { + "@id": "http://edamontology.org/data_0906", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning the interactions (predicted or known) within or between a protein, structural domain or part of a protein. This includes intra- and inter-residue contacts and distances, as well as interactions with other proteins and non-protein entities such as nucleic acid, metal atoms, water, ions etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein interaction record" + }, + { + "@value": "Protein-protein interaction data" + }, + { + "@value": "Protein report (interaction)" + }, + { + "@value": "Protein interaction report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein non-covalent interactions report" + }, + { + "@value": "Atom interaction data" + }, + { + "@value": "Residue interaction data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + }, + { + "@id": "_:Na59bc49b312b4e489c7a6ff9c900c93d" + } + ] + }, + { + "@id": "_:Na59bc49b312b4e489c7a6ff9c900c93d", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3933", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Assigning sequence reads to separate groups / files based on their index tag (sample origin)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence demultiplexing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "NGS sequence runs are often performed with multiple samples pooled together. In such cases, an index tag (or \"barcode\") - a unique sequence of between 6 and 12bp - is ligated to each sample's genetic material so that the sequence reads from different samples can be identified. The process of demultiplexing (dividing sequence reads into separate files for each index tag/sample) may be performed automatically by the sequencing hardware. Alternatively the reads may be lumped together in one file with barcodes still attached, requiring you to do the splitting using software. In such cases, a \"mapping\" file is used which indicates which barcodes correspond to which samples." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Demultiplexing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3921" + } + ] + }, + { + "@id": "http://edamontology.org/data_2745", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a locus from the UTR database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID (UTR)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1893" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2636", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "([A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9])_.*|([OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9]_.*)|(GAG_.*)|(MULT_.*)|(PFRAG_.*)|(LIP_.*)|(CAT_.*)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of an interaction from the MatrixDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MatrixDB interaction ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1074" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2365", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A persistent, unique identifier of a biological pathway or network (typically a database entry)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway or network accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1082" + } + ] + }, + { + "@id": "http://edamontology.org/data_2235", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Raw SCOP domain classification data files." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "These are the parsable data files provided by SCOP." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Raw SCOP domain classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2102", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A three-letter code used in the KEGG databases to uniquely identify organisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KEGG organism code" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2909" + }, + { + "@id": "http://edamontology.org/data_1154" + } + ] + }, + { + "@id": "http://edamontology.org/data_2384", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "IPI[0-9]{8}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a protein entry catalogued in the International Protein Index (IPI) database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "IPI protein ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1096" + } + ] + }, + { + "@id": "http://edamontology.org/format_3003", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Browser Extensible Data (BED) format of sequence annotation track, typically to be displayed in a genome browser." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "BED detail format includes 2 additional columns (http://genome.ucsc.edu/FAQ/FAQformat#format1.7) and BED 15 includes 3 additional columns for experiment scores (http://genomewiki.ucsc.edu/index.php/Microarray_track)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BED" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2919" + } + ] + }, + { + "@id": "http://edamontology.org/data_2692", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryzias latipes' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Oryzias latipes')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3810", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Agronomy" + }, + { + "@value": "Agriculture" + }, + { + "@value": "Agroecology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Multidisciplinary study, research and development within the field of agriculture." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Agricultural_science" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Plant nutrition" + }, + { + "@value": "Plant pathology" + }, + { + "@value": "Plant cultivation" + }, + { + "@value": "Plant breeding" + }, + { + "@value": "Soil science" + }, + { + "@value": "Animal nutrition" + }, + { + "@value": "Animal breeding" + }, + { + "@value": "Agricultural economics" + }, + { + "@value": "Farming systems research" + }, + { + "@value": "Phytomedicine" + }, + { + "@value": "Food security" + }, + { + "@value": "Food process engineering" + }, + { + "@value": "Animal husbandry" + }, + { + "@value": "Horticulture" + }, + { + "@value": "Agricultural biotechnology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Agricultural science" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Agricultural_science" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/data_1024", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "String of one or more ASCII characters representing a codon." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3335", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.4 Cardiac and Cardiovascular systems" + }, + { + "@value": "VT 3.2.22 Peripheral vascular disease" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The diseases and abnormalities of the heart and circulatory system." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Cardiovascular medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Cardiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Cardiovascular disease" + }, + { + "@value": "Heart disease" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cardiology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Cardiology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_1405", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1397" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A simple floating point number defining the penalty for opening a gap in an alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gap opening penalty (float)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0483", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict or optimise RNA sequences (sequence pools) with likely secondary and tertiary structure for in vitro selection." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid folding family identification" + }, + { + "@value": "Structured RNA prediction and optimisation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA inverse folding" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3095" + }, + { + "@id": "_:Nf0729434b8c24718accfcf2235c6f0fd" + } + ] + }, + { + "@id": "_:Nf0729434b8c24718accfcf2235c6f0fd", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1234" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3958", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A DNA structural variation, specifically a duplication or deletion event, resulting in sections of the genome to be repeated, or the number of repeats in the genome to vary between individuals." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Copy_number_variation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "CNV duplication" + }, + { + "@value": "Copy number variant" + }, + { + "@value": "CNV deletion" + }, + { + "@value": "Complex CNV" + }, + { + "@value": "CNV insertion / amplification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Copy number variation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Copy-number_variation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3175" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2928", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more entities, typically the sequence or structure (or derivatives) of macromolecules, to identify equivalent subunits." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Alignment construction" + }, + { + "@value": "Alignment generation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Alignment#Biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3429" + }, + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0248", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:ListSideChainContactsRelaxed" + }, + { + "@value": "WHATIF: SymShellFiveXML" + }, + { + "@value": "WHATIF:ListContactsRelaxed" + }, + { + "@value": "WHATIF:ListContactsNormal" + }, + { + "@value": "WHATIF: SymShellTwoXML" + }, + { + "@value": "WHATIF: SymShellTenXML" + }, + { + "@value": "WHATIF: SymShellOneXML" + }, + { + "@value": "WHATIF:ListSideChainContactsNormal" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate or extract inter-atomic, inter-residue or residue-atom contacts, distances and interactions in protein structure(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Residue interaction calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N4be2c868863e4a17a244cf93eb463f1e" + }, + { + "@id": "http://edamontology.org/operation_0250" + } + ] + }, + { + "@id": "_:N4be2c868863e4a17a244cf93eb463f1e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0130" + } + ] + }, + { + "@id": "http://edamontology.org/data_2085", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about one or more molecular tertiary (3D) structures. It might include annotation on the structure, a computer-generated report of analysis of structural data, and metadata (data about primary data) or any other free (essentially unformatted) text, as distinct from the primary data itself." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure-derived report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/format_3240", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.cellml.org" + } + ], + "http://edamontology.org/media_type": [ + { + "@id": "http://www.iana.org/assignments/media-types/application/cellml+xml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.iana.org/assignments/media-types/application/cellml+xml" + }, + { + "@id": "http://www.cellml.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "CellML, the format for mathematical models of biological and other networks." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CellML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2013" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_1718", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0966" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term from the HGNC controlled vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HGNC" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2234", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Perform basic (non-analytical) operations on a file of molecular tertiary structural data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure file processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3876", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Trajectory Next Generation (TNG) is a format for storage of molecular simulation data. It is designed and implemented by the GROMACS development group, and it is called to be the substitute of the XTC format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Trajectory Next Generation format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Fully architecture-independent format, regarding both endianness and the ability to mix single/double precision trajectories and I/O libraries. Self-sufficient, it should not require any other files for reading, and all the data should be contained in a single file for easy transport. Temporal compression of data, improving the compression rate of the previous XTC format. Possibility to store meta-data with information about the simulation. Direct access to a particular frame. Efficient parallel I/O." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TNG" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3867" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_3026", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2339" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a concept for a biological process from the GO ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GO concept name (biological process)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1646", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Standard protonated molecular masses from trypsin (modified porcine trypsin, Promega) and keratin peptides, used in EMBOSS." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0944" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular weights standard fingerprint" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1729", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2858" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term definition for a cellular component from the Gene Ontology (GO)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Data Type is an enumerated string." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GO (cellular component)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1600", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A plot of the synonymous codon usage calculated for windows over a nucleotide sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Synonymous codon usage statistic plot" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage bias plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0914" + } + ] + }, + { + "@id": "http://edamontology.org/data_2764", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Official name of a protein as used in the UniProt database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein name (UniProt)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1009" + } + ] + }, + { + "@id": "http://edamontology.org/data_2374", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a spot from a two-dimensional (protein) gel in the SWISS-2DPAGE database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Spot serial number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2373" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2615", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "MINT\\-[0-9]{1,5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the MINT database of protein-protein interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MINT ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1074" + } + ] + }, + { + "@id": "http://edamontology.org/data_2116", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a trinucleotide sequence that encodes an amino acid including the triplet sequence, the encoded amino acid or whether it is a start or stop codon." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid features (codon)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1608", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of FlyBase genome database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FlyBase gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3904", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict intrinsically disordered regions in proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein disorder prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Intrinsically_disordered_proteins" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3092" + }, + { + "@id": "_:Ndf6d9ab27c304022b67a27b439d0dd49" + }, + { + "@id": "http://edamontology.org/operation_2423" + } + ] + }, + { + "@id": "_:Ndf6d9ab27c304022b67a27b439d0dd49", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3301" + } + ] + }, + { + "@id": "http://edamontology.org/data_2176", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The number of a certain thing." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cardinality" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0122", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The elucidation of the three dimensional structure for all (available) proteins in a given organism." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Structural_genomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural genomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Structural_genomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0622" + }, + { + "@id": "http://edamontology.org/topic_1317" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0635", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0623" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A particular protein, protein family or other group of proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Specific protein resources" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0629", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene expression e.g. microarray data, northern blots, gene-indexed expression profiles etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene expression and microarray" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0099", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "RNA sequences and structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "RNA" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Small RNA" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/RNA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0077" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0350", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0346" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a sequence database and retrieve sequences that are similar to a query sequence using a word-based method." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Word-based methods (for example BLAST, gapped BLAST, MEGABLAST, WU-BLAST etc.) are usually quicker than alignment-based methods. They may or may not handle gaps." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database search (by sequence using word-based methods)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3212", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate an index of a genome sequence using the Burrows-Wheeler algorithm." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3211" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The Burrows-Wheeler Transform (BWT) is a permutation of the genome based on a suffix array algorithm." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome indexing (Burrows-Wheeler)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "_:Na67b4ab78165490fac6f55c1d2b1ef0d", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "In very unusual cases." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#isCyclic" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0850", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A collection of one or typically multiple molecular sequences (which can include derived data or metadata) that do not (typically) correspond to molecular sequence database records or entries and which (typically) are derived from some analytical method." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Alignment reference" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "SO:0001260" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept may be used for arbitrary sequence sets and associated data arising from processing." + }, + { + "@value": "An example is an alignment reference; one or a set of reference molecular sequences, structures, or profiles used for alignment of genomic, transcriptomic, or proteomic experimental data." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence set" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0411", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison)Too fine-grained." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0418" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect or predict signal peptides (and typically predict subcellular localisation) of eukaryotic proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0418" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein signal peptide detection (eukaryotes)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0518", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict primers for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0308" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PCR primer design (for genotyping polymorphisms)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1519", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "List of molecular weight(s) of one or more proteins or peptides, for example cut by proteolytic enzymes or reagents." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The report might include associated data such as frequency of peptide fragment molecular weights." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptide molecular weights" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0154", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Small molecules of biological significance, typically archival, curation, processing and analysis of structural information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Small_molecules" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Amino acids" + }, + { + "@value": "Toxins and targets" + }, + { + "@value": "Target structures" + }, + { + "@value": "Chemical structures" + }, + { + "@value": "Drugs and target structures" + }, + { + "@value": "Peptides" + }, + { + "@value": "Metabolite structures" + }, + { + "@value": "Drug targets" + }, + { + "@value": "Drug structures" + }, + { + "@value": "Toxins" + }, + { + "@value": "Peptides and amino acids" + }, + { + "@value": "Targets" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "CHEBI:23367" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Small molecules include organic molecules, metal-organic compounds, small polypeptides, small polysaccharides and oligonucleotides. Structural data is usually included." + }, + { + "@value": "This concept excludes macromolecules such as proteins and nucleic acids." + }, + { + "@value": "This includes the structures of drugs, drug target, their interactions and binding affinities. Also the structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids. Also the physicochemical, biochemical or structural properties of amino acids or peptides. Also structural and associated data for toxic chemical substances." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Small molecules" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Metabolite" + }, + { + "@id": "https://en.wikipedia.org/wiki/Small_molecule" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ] + }, + { + "@id": "http://edamontology.org/data_1125", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A label (text token) describing the type of a comparison matrix." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example 'blosum', 'pam', 'gonnet', 'id' etc. Comparison matrix type may be required where a series of matrices of a certain type are used." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Comparison matrix type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3924", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of DNA tertiary (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure alignment (DNA)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1482" + } + ] + }, + { + "@id": "http://edamontology.org/data_2215", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on the functional properties of mutant proteins including transcriptional activities, promotion of cell growth and tumorigenicity, dominant negative effects, capacity to induce apoptosis, cell-cycle arrest or checkpoints in human cells and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mutation annotation (functional)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1215", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a DNA sequence with possible ambiguity and unknown positions but without non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pure dna" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1210" + }, + { + "@id": "http://edamontology.org/format_1212" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0554", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse a phylogenetic tree to identify allele frequency distribution and change that is subject to evolutionary pressures (natural selection, genetic drift, mutation and gene flow). Identify type of natural selection (such as stabilizing, balancing or disruptive)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree analysis (natural selection)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Stabilizing/purifying (directional) selection favors a single phenotype and tends to decrease genetic diversity as a population stabilizes on a particular trait, selecting out trait extremes or deleterious mutations. In contrast, balancing selection maintain genetic polymorphisms (or multiple alleles), whereas disruptive (or diversifying) selection favors individuals at both extremes of a trait." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Allele frequency distribution analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0324" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0419", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict catalytic residues, active sites or other ligand-binding sites in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2575" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein binding site prediction (from sequence)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0432", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict nucleosome exclusion sequences (nucleosome free regions) in DNA." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Nucleosome exclusion sequence prediction" + }, + { + "@value": "Nucleosome formation sequence prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleosome position prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0415" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3919", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The determination of cytosine methylation status of specific positions in a nucleic acid sequences (usually reads from a bisulfite sequencing experiment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Methylation calling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3204" + } + ] + }, + { + "@id": "http://edamontology.org/data_1416", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0867" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on correlations between sites in a molecular sequence alignment, typically to identify possible covarying positions and predict contacts or structural constraints in protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment report (site correlation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0358", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Query a tertiary structure database and retrieve entries containing a given keyword." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure retrieval (by keyword)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0529", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) massively parallel signature sequencing (MPSS) data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MPSS data processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0349", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a sequence database and retrieve sequences with a specified property, typically a physicochemical or compositional property." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database search (by property)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0338" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0241", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0438" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse the sequence, conformational or physicochemical properties of transcription regulatory elements in DNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example transcription factor binding sites (TFBS) analysis to predict accessibility of DNA to binding factors." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcription regulatory sequence analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2583", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]{7}|GO:[0-9]{7}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a 'molecular function' concept from the the Gene Ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GO concept ID (molecular function)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1176" + } + ] + }, + { + "@id": "http://edamontology.org/data_1691", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:Email" + }, + { + "@value": "Moby:EmailAddress" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A valid email address of an end-user." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Email address" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2101" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0414", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_3092" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict, recognise and identify positional features in protein sequences such as functional sites or regions and secondary structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods typically involve scanning for known motifs, patterns and regular expressions." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein feature prediction (from sequence)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0450", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detects chimeric sequences (chimeras) from a sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Chimeric sequence detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A chimera includes regions from two or more phylogenetically distinct sequences. They are usually artifacts of PCR and are thought to occur when a prematurely terminated amplicon reanneals to another DNA strand and is subsequently copied to completion in later PCR cycles." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chimera detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3704", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Label-free quantification by integration of ion current (ion counting)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Ion current integration" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ion counting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3634" + } + ] + }, + { + "@id": "http://edamontology.org/data_2127", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a genetic code." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic code identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N148d328a9c3e41a7947f5a8287fc60ad" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N148d328a9c3e41a7947f5a8287fc60ad", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1598" + } + ] + }, + { + "@id": "http://edamontology.org/data_1012", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of an enzyme." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enzyme name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1009" + }, + { + "@id": "http://edamontology.org/data_1010" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3352", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more ontologies, e.g. identify differences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2424" + } + ] + }, + { + "@id": "http://edamontology.org/data_1388", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1385" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of exactly two molecular sequences of different types." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hybrid sequence alignment (pair)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2147", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0896" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a transcription factor protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This might include conformational or physicochemical properties, as well as sequence information for transcription factor(s) binding sites." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein report (transcription factor)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3108", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Raw data such as measurements or other results from laboratory experiments, as generated from laboratory hardware." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Measurement data" + }, + { + "@value": "Measured data" + }, + { + "@value": "Experimental measurement data" + }, + { + "@value": "Experimentally measured data" + }, + { + "@value": "Measurement" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Measurement metadata" + }, + { + "@value": "Raw experimental data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Experimental measurement" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0318", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2406" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify and select targets for protein structural determination." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods will typically navigate a graph of protein families of known structure." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural genomics target selection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0222", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0622" + }, + { + "@id": "http://edamontology.org/topic_0621" + }, + { + "@id": "http://edamontology.org/topic_0219" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation of a genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_1770", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The comparison of two or more molecular structures, for example structure alignment and clustering." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This might involve comparison of secondary or tertiary (3D) structural information." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1948", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "pir" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "NBRF/PIR entry sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "nbrf" + }, + { + "@value": "pir" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "nbrf/pir" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3763", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An operation supporting the calling (invocation) of other tools and services." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Service invocation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3760" + } + ] + }, + { + "@id": "http://edamontology.org/data_3757", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a protein modification catalogued in the Unimod database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Unimod ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2618" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3325", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of rare diseases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Rare_diseases" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Rare diseases" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Rare_disease" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0634" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0537", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Assign a protein tertiary structure (3D coordinates) from raw NMR spectroscopy data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0320" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure assignment (from NMR data)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1377", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2071" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein conserved site signature (sequence classifier) from the InterPro database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A protein conserved site signature is any short sequence pattern that may contain one or more unique residues and is cannot be described as a active site, binding site or post-translational modification." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein conserved site signature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3171", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DNA methylation including bisulfite sequencing, methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3295" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA methylation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3687", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.isa-tools.org/format/specification" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.isa-tools.org/format/specification" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The Investigation / Study / Assay (ISA) tab-delimited (TAB) format incorporates metadata from experiments employing a combination of technologies." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "ISA-TAB is based on MAGE-TAB. Other than tabular, the ISA model can also be represented in RDF, and in JSON (compliable with a set of defined JSON Schemata)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ISA-TAB" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2058" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3167" + } + ] + }, + { + "@id": "http://edamontology.org/format_3249", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://psidev.info/gelml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://psidev.info/gelml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GelML is the format for describing the process of gel electrophoresis, standardised by HUPO PSI PS." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GelML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3167" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_2625", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "LM(FA|GL|GP|SP|ST|PR|SL|PK)[0-9]{4}([0-9a-zA-Z]{4})?" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the LIPID MAPS database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "LM ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "LIPID MAPS ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2905" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0167", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The processing, analysis or use of some type of structural (3D) profile or template; a computational entity (typically a numerical matrix) that is derived from and represents a structure or structure alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural (3D) profiles" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3706", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for biodiversity data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biodiversity data format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N83c98769fd38457da961f3539c21febf" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N83c98769fd38457da961f3539c21febf", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3707" + } + ] + }, + { + "@id": "http://edamontology.org/data_3029", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBL/GENBANK/DDBJ coding feature protein identifier, issued by International collaborators." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This qualifier consists of a stable ID portion (3+5 format with 3 position letters and 5 numbers) plus a version number after the decimal point. When the protein sequence encoded by the CDS changes, only the version number of the /protein_id value is incremented; the stable part of the /protein_id remains unchanged and as a result will permanently be associated with a given protein; this qualifier is valid only on CDS features which translate into a valid protein." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein ID (EMBL/GenBank/DDBJ)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2224", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Query an ontology and retrieve concepts or relations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (ontology concept)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/comment_handle", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://purl.org/dc/elements/1.1/creator", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/operation_4031", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The estimation of the power of a test; that is the probability of correctly rejecting the null hypothesis when it is false." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Power analysis" + }, + { + "@value": "Estimation of statistical power" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Power test" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Power_of_a_test" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nda332c5e79884349a71b8f5adb6dc7b5" + }, + { + "@id": "http://edamontology.org/operation_2238" + }, + { + "@id": "_:Ne2c969dccce742c9bcb019148dfe8457" + }, + { + "@id": "_:Nc86be5f8d3274111a0f29d44d1f25ad3" + }, + { + "@id": "_:Nf2322200a63e400a934f406eda4549f1" + }, + { + "@id": "_:Ned384ea4c8184c5ea1eaa768df719c2e" + } + ] + }, + { + "@id": "_:Nda332c5e79884349a71b8f5adb6dc7b5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3365" + } + ] + }, + { + "@id": "_:Ne2c969dccce742c9bcb019148dfe8457", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2042" + } + ] + }, + { + "@id": "_:Nc86be5f8d3274111a0f29d44d1f25ad3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0951" + } + ] + }, + { + "@id": "_:Nf2322200a63e400a934f406eda4549f1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3572" + } + ] + }, + { + "@id": "_:Ned384ea4c8184c5ea1eaa768df719c2e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2269" + } + ] + }, + { + "@id": "http://edamontology.org/format_2331", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "HTML format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Hypertext Markup Language" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HTML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://filext.com/file-extension/HTML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N58a282dbc04a49f4a1f2851d748e957e" + }, + { + "@id": "http://edamontology.org/format_1915" + } + ], + "http://www.w3.org/2002/07/owl#disjointWith": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "_:N58a282dbc04a49f4a1f2851d748e957e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/data_2672", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Bos taurus' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Bos taurus')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1019", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1015" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name or other identifier of a protein feature." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein feature identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1183", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a concept from the EMAP mouse ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMAP concept ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1087" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ] + }, + { + "@id": "http://edamontology.org/data_1126", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique name or identifier of a comparison matrix." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Substitution matrix name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "See for example http://www.ebi.ac.uk/Tools/webservices/help/matrix." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Comparison matrix name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + }, + { + "@id": "_:N43eb581b722a4415a651ca3773303b75" + }, + { + "@id": "http://edamontology.org/data_1069" + } + ] + }, + { + "@id": "_:N43eb581b722a4415a651ca3773303b75", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0874" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0357", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Query a tertiary structure database and retrieve entries with a given entry code or accession number." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure retrieval (by code)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1332", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of results of a sequence database search using FASTA." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes (typically) score data, alignment data and a histogram (of observed and expected distribution of E values.)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FASTA search results format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2066" + } + ] + }, + { + "@id": "http://edamontology.org/format_3980", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "rpkm" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Tab-delimited format for gene expression levels table, calculated as Reads Per Kilobase per Million (RPKM) mapped reads." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene expression levels table format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example a 1kb transcript with 1000 alignments in a sample of 10 million reads (out of which 8 million reads can be mapped) will have RPKM = 1000/(1 * 8) = 125" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RPKM" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3475" + }, + { + "@id": "http://edamontology.org/format_2058" + } + ] + }, + { + "@id": "http://edamontology.org/format_2057", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for sequence trace data (i.e. including base call information)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence trace format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N37836ceb21334f3fa8db0e66a6ed651a" + }, + { + "@id": "http://edamontology.org/format_1919" + } + ] + }, + { + "@id": "_:N37836ceb21334f3fa8db0e66a6ed651a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0924" + } + ] + }, + { + "@id": "http://edamontology.org/data_2879", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about one or more specific lipid 3D structure(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Lipid report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2085" + } + ] + }, + { + "@id": "http://edamontology.org/data_1713", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A fate map is a plan of early stage of an embryo such as a blastula, showing areas that are significance to development." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Fate map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2968" + }, + { + "@id": "_:N1a4c064606cf487cb6112dd6f06b8a4b" + } + ] + }, + { + "@id": "_:N1a4c064606cf487cb6112dd6f06b8a4b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3065" + } + ] + }, + { + "@id": "http://edamontology.org/format_2170", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used for clusters of molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Naa3be179199e4d09beb7e72b66a79fab" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Naa3be179199e4d09beb7e72b66a79fab", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1235" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3075", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_2259" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Topic for modelling biological systems in mathematical terms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biological system modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/bio", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty" + } + ] + }, + { + "@id": "http://edamontology.org/format_3626", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://uk.mathworks.com/help/matlab/import_export/mat-file-versions.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Binary format used by MATLAB files to store workspace variables." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MAT file format" + }, + { + "@value": ".mat file format" + }, + { + "@value": "MATLAB file format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MAT" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3033" + }, + { + "@id": "_:N36728f97a28f401e9fe34f8d17904386" + } + ] + }, + { + "@id": "_:N36728f97a28f401e9fe34f8d17904386", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1499" + } + ] + }, + { + "@id": "http://edamontology.org/data_1505", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Molecular weights of amino acids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Molecular weight (amino acids)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid index (molecular weight)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1501" + } + ] + }, + { + "@id": "http://edamontology.org/format_1217", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for an RNA sequence with possible ambiguity and unknown positions but without non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pure rna" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1213" + }, + { + "@id": "http://edamontology.org/format_1210" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3539", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Structural domains or 3D folds in a protein or polypeptide chain." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0736" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein domains" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0593", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Spectroscopy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An analytical technique that exploits the magenetic properties of certain atomic nuclei to provide information on the structure, dynamics, reaction state and chemical environment of molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "NMR spectroscopy" + }, + { + "@value": "Nuclear magnetic resonance spectroscopy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "NMR" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Heteronuclear Overhauser Effect Spectroscopy" + }, + { + "@value": "HOESY" + }, + { + "@value": "ROESY" + }, + { + "@value": "NOESY" + }, + { + "@value": "Rotational Frame Nuclear Overhauser Effect Spectroscopy" + }, + { + "@value": "Nuclear Overhauser Effect Spectroscopy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NMR" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Nuclear_magnetic_resonance_spectroscopy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_1317" + }, + { + "@id": "http://edamontology.org/topic_3382" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3965", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify amplification events causing the number of repeats in the genome to vary between individuals." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amplification detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3961" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3634", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Quantification without the use of chemical tags." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Label-free quantification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3630" + } + ] + }, + { + "@id": "http://edamontology.org/format_1933", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTQ Solexa/Illumina 1.0 short read format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FASTQ-solexa" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2182" + } + ] + }, + { + "@id": "http://edamontology.org/data_2800", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a disease from the Orpha database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Orpha number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "_:N31dee900707645369cb4710093ab7f33" + }, + { + "@id": "http://edamontology.org/data_1150" + } + ] + }, + { + "@id": "_:N31dee900707645369cb4710093ab7f33", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1622" + } + ] + }, + { + "@id": "http://edamontology.org/data_4022", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://registry.identifiers.org/registry/orcid" + }, + { + "@id": "https://orcid.org/" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "\\d{4}-\\d{4}-\\d{4}-\\d{3}(\\d|X)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a researcher registered with the ORCID database. Used to identify author IDs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ORCID Identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/ORCID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1881" + } + ] + }, + { + "@id": "http://edamontology.org/data_2048", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information including annotation on a biological entity or phenomena, computer-generated reports of analysis of primary data (e.g. sequence or structural), and metadata (data about primary data) or any other free (essentially unformatted) text, as distinct from the primary data itself." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Record" + }, + { + "@value": "Document" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "You can use this term by default for any textual report, in case you can't find another, more specific term. Reports may be generated automatically or collated by hand and can include metadata on the origin, source, history, ownership or location of some thing." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://semanticscience.org/resource/SIO_000148" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/data_1643", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2717" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Affymetrix library file of information about the probe sets such as the gene name with which the probe set is associated." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "GIN file" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Affymetrix probe sets information library file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1372", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1355" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein family signature (sequence classifier) from the InterPro database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Protein family signatures cover all domains in the matching proteins and span >80% of the protein length and with no adjacent protein domain signatures or protein region signatures." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein family signature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2561", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Text format for sequence assembly data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence assembly format (text)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2055" + } + ] + }, + { + "@id": "http://edamontology.org/data_2209", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of a specific mutation catalogued in a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mutation ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2538" + } + ] + }, + { + "@id": "http://edamontology.org/has_format", + "@type": [ + "http://www.w3.org/2002/07/owl#ObjectProperty" + ], + "http://purl.obolibrary.org/obo/is_anti_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_reflexive": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/transitive_over": [ + { + "@value": "OBO_REL:is_a" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'A has_format B' defines for the subject A, that it has the object B as its data format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#isCyclic": [ + { + "@value": "false" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is (or is in a role of) 'Data', or an input, output, input or output argument of an 'Operation'. Object B can either be a concept that is a 'Format', or in unexpected cases an entity outside of an ontology that is a 'Format' or is in the role of a 'Format'. In EDAM, 'has_format' is not explicitly defined between EDAM concepts, only the inverse 'is_format_of'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#domain": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "has format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#range": [ + { + "@id": "http://edamontology.org/format_1915" + } + ], + "http://www.w3.org/2002/07/owl#inverseOf": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2004/02/skos/core#broadMatch": [ + { + "@id": "http://purl.obolibrary.org/obo/OBI_0000298" + }, + { + "@id": "http://www.loa.istc.cnr.it/ontologies/DOLCE-Lite.owl#has-quality" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3474", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Artificial Intelligence" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.2.2 Artificial Intelligence (expert systems, machine learning, robotics)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A topic concerning the application of artificial intelligence methods to algorithms, in order to create methods that can learn from data in order to generate an output, rather than relying on explicitly encoded information only." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Machine_learning" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Recommender system" + }, + { + "@value": "Unsupervised learning" + }, + { + "@value": "Reinforcement learning" + }, + { + "@value": "Ensembl learning" + }, + { + "@value": "Active learning" + }, + { + "@value": "Knowledge representation" + }, + { + "@value": "Supervised learning" + }, + { + "@value": "Kernel methods" + }, + { + "@value": "Neural networks" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Machine learning" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Machine_learning" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3316" + } + ] + }, + { + "@id": "http://edamontology.org/notRecommendedForAnnotation", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Whether terms associated with this concept are recommended for use in annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "notRecommendedForAnnotation" + } + ] + }, + { + "@id": "http://edamontology.org/format_1198", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Chemical structure specified by Molecular Formula (MF), including a count of each element in a compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The general MF query format consists of a series of valid atomic symbols, with an optional number or range." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mf" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2035" + } + ] + }, + { + "@id": "http://edamontology.org/format_3853", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.uniprot.org/uniparc/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML format for the UniParc database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniParc XML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_1920" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3926", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Render (visualise) a biological pathway." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Pathway rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0337" + }, + { + "@id": "_:N840dbcdfb6c2457096ac8ac76c543920" + }, + { + "@id": "http://edamontology.org/operation_3928" + } + ] + }, + { + "@id": "_:N840dbcdfb6c2457096ac8ac76c543920", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2600" + } + ] + }, + { + "@id": "http://edamontology.org/data_1345", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0950" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "MEME background frequencies file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MEME background frequencies file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0989", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0982" + }, + { + "@id": "_:Nd4f7421104c24c488b3cc41f9605b7f2" + } + ] + }, + { + "@id": "_:Nd4f7421104c24c488b3cc41f9605b7f2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0896" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3081", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Edit, convert or otherwise change a molecular sequence alignment, either randomly or specifically." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment editing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3096" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2441", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict RNA tertiary structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0475" + }, + { + "@id": "_:Ncca192b4e0244691abc307588330f349" + } + ] + }, + { + "@id": "_:Ncca192b4e0244691abc307588330f349", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1465" + } + ] + }, + { + "@id": "http://edamontology.org/format_2206", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Text format for a sequence feature table." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature table format (text)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2548" + } + ] + }, + { + "@id": "http://edamontology.org/format_3100", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of summary of domain classification information for a CATH domain." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The report (for example http://www.cathdb.info/domain/1cukA01) includes CATH codes for levels in the hierarchy for the domain, level descriptions and relevant data and links." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH domain report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3097" + } + ] + }, + { + "@id": "http://edamontology.org/data_0968", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:QueryString" + }, + { + "@value": "Moby:BooleanQueryString" + }, + { + "@value": "Moby:Wildcard_Query" + }, + { + "@value": "Moby:Global_Keyword" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Keyword(s) or phrase(s) used (typically) for text-searching purposes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Term" + }, + { + "@value": "Phrases" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Boolean operators (AND, OR and NOT) and wildcard characters may be allowed." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Keyword" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3893", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Obtain force field parameters (charge, bonds, dihedrals, etc.) from a molecule, to be used in molecular simulations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Molecule parameterization" + }, + { + "@value": "Ligand parameterization" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Forcefield parameterisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N1fc98af48b1d4bfaa9b6515ada709b14" + }, + { + "@id": "_:Nbc1f8201c0754b64984b95520eb48f93" + }, + { + "@id": "http://edamontology.org/operation_2426" + } + ] + }, + { + "@id": "_:N1fc98af48b1d4bfaa9b6515ada709b14", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1439" + } + ] + }, + { + "@id": "_:Nbc1f8201c0754b64984b95520eb48f93", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0084" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0235", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate sequence ambiguity, for example identity regions in protein or nucleotide sequences with many ambiguity codes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence ambiguity calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Na8b4e0ae41b8498499f43e0bf7bb9b18" + }, + { + "@id": "http://edamontology.org/operation_0236" + }, + { + "@id": "_:Ne50dc273d7a3411daf26bf3545388a23" + } + ] + }, + { + "@id": "_:Na8b4e0ae41b8498499f43e0bf7bb9b18", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0157" + } + ] + }, + { + "@id": "_:Ne50dc273d7a3411daf26bf3545388a23", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1260" + } + ] + }, + { + "@id": "http://edamontology.org/data_1257", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0897" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report of general sequence properties derived from protein sequence data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence property (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3791", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A method whereby data on several variants are \"collapsed\" into a single covariate based on regions such as genes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Genome-wide association studies (GWAS) analyse a genome-wide set of genetic variants in different individuals to see if any variant is associated with a trait. Traditional association techniques can lack the power to detect the significance of rare variants individually, or measure their compound effect (rare variant burden). \"Collapsing methods\" were developed to overcome these problems." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Collapsing methods" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3197" + } + ] + }, + { + "@id": "http://edamontology.org/data_2100", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A label (text token) describing the type of a thing, typically an enumerated string (a string with one of a limited set of values)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.org/dc/elements/1.1/type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1548", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report on clusters of contacting residues in protein structures such as a key structural residue network." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein residue 3D cluster" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0906" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0475", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict structure of DNA or RNA." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might identify thermodynamically stable or evolutionarily conserved structures." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Nucleic_acid_structure_prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2481" + }, + { + "@id": "_:Ne3f0d1b6c993429c9fd9ac64610b4e38" + }, + { + "@id": "http://edamontology.org/operation_2423" + } + ] + }, + { + "@id": "_:Ne3f0d1b6c993429c9fd9ac64610b4e38", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1459" + } + ] + }, + { + "@id": "http://edamontology.org/data_0897", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a protein molecule or model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein physicochemical property" + }, + { + "@value": "Protein properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein sequence statistics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. Data may be based on analysis of nucleic acid sequence or structural data, for example reports on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure, protein flexibility or motion, and protein architecture (spatial arrangement of secondary structure)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein property" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2087" + } + ] + }, + { + "@id": "http://edamontology.org/data_3732", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning a sequencing experiment, that may be specified as an input to some tool." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequencing metadata name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0509", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Locally align (superimpose) two or more molecular tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure alignment (local)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Local protein structure alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Local alignment methods identify regions of local similarity, common substructures etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Local structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0295" + } + ] + }, + { + "@id": "http://edamontology.org/data_1676", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3106" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The (typically numeric) unique identifier of a submitted job." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Job ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0622", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Whole genomes of one or more organisms, or genomes in general, such as meta-information on genomes, genome projects, gene names etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Genomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Whole genomes" + }, + { + "@value": "Genome annotation" + }, + { + "@value": "Exomes" + }, + { + "@value": "Synthetic genomics" + }, + { + "@value": "Personal genomics" + }, + { + "@value": "Genomes" + }, + { + "@value": "Viral genomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Genomics" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D023281" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3391" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3410", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of the biological and physiological differences between males and females and how they effect differences in disease presentation and management." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Gender_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gender medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sex_differences_in_medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/format_1356", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a regular expression pattern from the Prosite database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "prosite-pattern" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2068" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2807", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A topic concerning primarily bioinformatics software tools, typically the broad function or purpose of a tool." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tool topic" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3938", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Virtual screening is used in drug discovery to identify potential drug compounds. It involves searching libraries of small molecules in order to identify those molecules which are most likely to bind to a drug target (typically a protein receptor or enzyme)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Structured-based virtual screening" + }, + { + "@value": "Virtual ligand screening" + }, + { + "@value": "Structure-based screening" + }, + { + "@value": "Ligand-based screening" + }, + { + "@value": "Ligand-based virtual screening" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Virtual screening is widely used for lead identification, lead optimization, and scaffold hopping during drug design and discovery." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Virtual screening" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_4009" + }, + { + "@id": "http://edamontology.org/operation_0482" + }, + { + "@id": "_:Nfe5c069342fc45bab575f9533a8f8616" + }, + { + "@id": "_:N12ad615f991d40879b2a5781be0a9f78" + } + ] + }, + { + "@id": "_:Nfe5c069342fc45bab575f9533a8f8616", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1461" + } + ] + }, + { + "@id": "_:N12ad615f991d40879b2a5781be0a9f78", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ] + }, + { + "@id": "http://edamontology.org/format_1337", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of EMBASSY ligand hits file (LHF) of database hits (sequences) with ligand classification information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The hits are putative ligand-binding sequences and are found from a search of a sequence database." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "lhf" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2066" + } + ] + }, + { + "@id": "http://edamontology.org/format_2921", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of sequence variation annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence variation annotation format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Na2cf92d336bd4a7a934441f07e50c6cb" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Na2cf92d336bd4a7a934441f07e50c6cb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3498" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3742", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2424" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The analysis, using any of diverse techniques, to identify genes that are differentially expressed under a given experimental setup." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3223" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Differential gene expression analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2902", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of a data definition (catalogued in a database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data resource definition accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1084" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3023", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2423" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict, recognise, detect or identify some properties of proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2423" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Prediction and recognition (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1421", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used by the HMMER package for an alignment of a sequence against a hidden Markov model database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HMMER profile alignment (sequences versus HMMs)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2014" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2111", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a codon usage table, for example a genetic code." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Codon usage table identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage table ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N691f322324824d9e8efd37d6a6f67f74" + }, + { + "@id": "_:N5c3a1aab672c47618f1bb114616288d7" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N691f322324824d9e8efd37d6a6f67f74", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1598" + } + ] + }, + { + "@id": "_:N5c3a1aab672c47618f1bb114616288d7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1597" + } + ] + }, + { + "@id": "http://edamontology.org/data_1070", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique and persistent identifier of a molecular tertiary structure, typically an entry from a structure database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3035" + } + ] + }, + { + "@id": "http://edamontology.org/data_1134", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Secondary accession number of an InterPro entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "InterPro secondary accession number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InterPro secondary accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nd7851d71035a400dbb1201a180ac26b9" + }, + { + "@id": "http://edamontology.org/data_1133" + } + ] + }, + { + "@id": "_:Nd7851d71035a400dbb1201a180ac26b9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1355" + } + ] + }, + { + "@id": "http://edamontology.org/data_1730", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0967" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A relation type defined in an ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology relation type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0394", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:HasHydrogenBonds" + }, + { + "@value": "WHATIF:ShowHydrogenBonds" + }, + { + "@value": "WHATIF:ShowHydrogenBondsM" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify potential hydrogen bonds between amino acids and other groups." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The output might include the atoms involved in the bond, bond geometric parameters and bond enthalpy." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hydrogen bond calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0248" + }, + { + "@id": "_:N86f4f8f3fb324ec79371e6b6a7aa7c08" + } + ] + }, + { + "@id": "_:N86f4f8f3fb324ec79371e6b6a7aa7c08", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1549" + } + ] + }, + { + "@id": "http://edamontology.org/data_2717", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "General annotation on an oligonucleotide probe, or a set of probes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Oligonucleotide probe sets annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Oligonucleotide probe annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3115" + }, + { + "@id": "_:N71486c13988b460999346f46369f0812" + } + ] + }, + { + "@id": "_:N71486c13988b460999346f46369f0812", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0632" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3536", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cleavage sites (for a proteolytic enzyme or agent) in a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3510" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein cleavage sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2009", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1893" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A name for a genetic locus conforming to a scheme that names loci (such as predicted genes) depending on their position in a molecular sequence, for example a completely sequenced genome or chromosome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ordered locus name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3507", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of documents including word processor, spreadsheet and presentation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Document format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "http://edamontology.org/data_1497", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Root-mean-square deviation (RMSD) is calculated to measure the average distance between superimposed macromolecular coordinates." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "RMSD" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Root-mean-square deviation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0888" + } + ] + }, + { + "@id": "http://edamontology.org/data_1592", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Structure constraints used by the Vienna package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Vienna RNA structure constraints" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2211", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for a report of strain data as used for CIP database entries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CIP strain data format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3909", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://raw.githubusercontent.com/KarrLab/bpforms/master/bpforms/grammar.lark" + }, + { + "@id": "https://arxiv.org/abs/1903.10042" + } + ], + "http://edamontology.org/ontology_used": [ + { + "@id": "http://edamontology.org/data_2301" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "https://www.karrlab.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BpForms is a string format for concretely representing the primary structures of biopolymers, including DNA, RNA, and proteins that include non-canonical nucleic and amino acids. See https://www.bpforms.org for more information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BpForms" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2035" + }, + { + "@id": "_:Nab83b555abe74cbeb782420c9ce652d6" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2571" + } + ] + }, + { + "@id": "_:Nab83b555abe74cbeb782420c9ce652d6", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "http://edamontology.org/format_3858", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Proprietary file format for mass spectrometry data from Waters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Proprietary format for which documentation is not available, but used by multiple tools." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Waters RAW" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/data_2113", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an object from the WormBase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "WormBase identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2109" + } + ] + }, + { + "@id": "http://edamontology.org/data_2400", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0962" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a specific toxin." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Toxin annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1515", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from the proto section of the REBASE enzyme database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "REBASE proto enzyme report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3679", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The design of an experiment involving non-human animals." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Animal_study" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Challenge study" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Animal study" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Animal_testing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3678" + }, + { + "@id": "http://edamontology.org/topic_3386" + } + ] + }, + { + "@id": "http://edamontology.org/data_2686", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Macaca mulatta' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Macaca mulatta')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1015", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of molecular sequence feature, for example an ID of a feature that is unique within the scope of the GFF file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3034" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1835", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate ion contacts in a structure (all ions for all side chain atoms)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2950" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Residue contact calculation (residue-negative ion)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3209", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare the sequence or features of two or more genomes, for example, to find matching regions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Genomic region matching" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3918" + }, + { + "@id": "http://edamontology.org/operation_2451" + } + ] + }, + { + "@id": "http://edamontology.org/data_3667", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from a database of disease." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Disease identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:Nadcb3fc3748e4f849138edecad1eb126" + } + ] + }, + { + "@id": "_:Nadcb3fc3748e4f849138edecad1eb126", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1622" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3258", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Infer a transcriptome sequence by analysis of short sequence reads." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcriptome assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N2a7032b048374a92a8707595d2a45936" + }, + { + "@id": "_:N87426ead21fd4b59801fd8a5de574a22" + }, + { + "@id": "http://edamontology.org/operation_0310" + } + ] + }, + { + "@id": "_:N2a7032b048374a92a8707595d2a45936", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0925" + } + ] + }, + { + "@id": "_:N87426ead21fd4b59801fd8a5de574a22", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0196" + } + ] + }, + { + "@id": "http://edamontology.org/data_1174", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "CHEBI:[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the ChEBI database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ChEBI IDs" + }, + { + "@value": "ChEBI identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ChEBI ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2894" + } + ] + }, + { + "@id": "http://edamontology.org/format_2045", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2350" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation format for electron microscopy models." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Electron microscopy model format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3486", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Some format based on the GCG format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GCG format variant" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_1424", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Dendrogram (tree file) format generated by ClustalW." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ClustalW dendrogram" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2556" + } + ] + }, + { + "@id": "http://edamontology.org/format_3985", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "ga" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An emerging format for high-level Galaxy workflow description." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ga" + }, + { + "@value": "Galaxy workflow format" + }, + { + "@value": "GalaxyWF" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "gxformat2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "https://github.com/galaxyproject/gxformat2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2032" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3195", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect errors in DNA sequences generated from sequencing projects)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Short read error correction" + }, + { + "@value": "Short-read error correction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequencing error detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N5fbfe7c2a01740f3bfb5bd8e300beaf4" + }, + { + "@id": "http://edamontology.org/operation_2451" + } + ] + }, + { + "@id": "_:N5fbfe7c2a01740f3bfb5bd8e300beaf4", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3168" + } + ] + }, + { + "@id": "http://edamontology.org/data_1664", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1883" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An entry (data type) from the Minimal Information Requested in the Annotation of Biochemical Models (MIRIAM) database of data resources." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A MIRIAM entry describes a MIRIAM data type including the official name, synonyms, root URI, identifier pattern (regular expression applied to a unique identifier of the data type) and documentation. Each data type can be associated with several resources. Each resource is a physical location of a service (typically a database) providing information on the elements of a data type. Several resources may exist for each data type, provided the same (mirrors) or different information. MIRIAM provides a stable and persistent reference to its data types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MIRIAM datatype" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2434", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Retrieve a codon usage table and / or associated annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (codon usage table)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1436", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the TreeBASE database of phylogenetic data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TreeBASE format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2556" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3944", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The biological classification of organisms by categorizing them in groups (\"clades\") based on their most recent common ancestor." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Cladistics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Tree of life" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cladistics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Cladistics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0080" + }, + { + "@id": "http://edamontology.org/topic_0084" + } + ] + }, + { + "@id": "http://edamontology.org/format_3684", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.ebi.ac.uk/pride/help/archive/submission/pridexml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.ebi.ac.uk/pride/help/archive/submission/pridexml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PRIDE XML is an XML format for mass spectra, peptide and protein identifications, and metadata about a corresponding measurement, sample, experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PRIDE XML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_3167" + }, + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/format_1957", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Raw sequence format with no non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "raw" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2571" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3311", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www-lbit.iro.umontreal.ca/rnaml/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "RNA Markup Language." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNAML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2076" + }, + { + "@id": "http://edamontology.org/format_1921" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0556", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more phylogenetic trees to detect subtrees or supertrees." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic sub/super tree detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Supertree construction" + }, + { + "@value": "Subtree construction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic sub/super tree construction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0325" + } + ] + }, + { + "@id": "http://edamontology.org/data_1004", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gmelin registry number of a chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gmelin chemical registry number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical registry number (Gmelin)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_0991" + } + ] + }, + { + "@id": "http://edamontology.org/data_1148", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the GermOnline database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GermOnline ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1080" + } + ] + }, + { + "@id": "http://edamontology.org/data_0864", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Some simple value controlling a sequence alignment (or similar 'match') operation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment parameter" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0319", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Assign secondary structure from protein coordinate or experimental data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Includes secondary structure assignment from circular dichroism (CD) spectroscopic data, and from protein coordinate data." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure assignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nd2beda116fb3457f8f2af18fd7359859" + }, + { + "@id": "_:N85493b294733497b927ac57406248915" + }, + { + "@id": "http://edamontology.org/operation_0320" + } + ] + }, + { + "@id": "_:Nd2beda116fb3457f8f2af18fd7359859", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2814" + } + ] + }, + { + "@id": "_:N85493b294733497b927ac57406248915", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1317" + } + ] + }, + { + "@id": "http://edamontology.org/format_3256", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "nt" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A plain text serialisation format for RDF (Resource Description Framework) graphs, and a subset of the Turtle (Terse RDF Triple Language) format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "N-Triples should not be confused with Notation 3 which is a superset of Turtle." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "N-Triples" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2376" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1072", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from a database of tertiary structure alignments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N7ec40f8fe9a64afd90e5c859e892780f" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N7ec40f8fe9a64afd90e5c859e892780f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0886" + } + ] + }, + { + "@id": "http://edamontology.org/data_1852", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0925" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A component of a larger sequence assembly." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence assembly component" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0949", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Basic information, annotation or documentation concerning a workflow (but not the workflow itself)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Workflow metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2337" + } + ] + }, + { + "@id": "http://edamontology.org/data_3490", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_1712" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A sketch of a small molecule made with some specialised drawing package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1712" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Chemical structure sketches are used for presentational purposes but also as inputs to various analysis software." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical structure sketch" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://usefulinc.com/ns/doap#Version", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/topic_3175", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Variation in chromosome structure including microscopic and submicroscopic types of variation such as deletions, duplications, copy-number variants, insertions, inversions and translocations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "DNA structural variation" + }, + { + "@value": "Genomic structural variation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "DNA_structural_variation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Deletion" + }, + { + "@value": "Inversion" + }, + { + "@value": "Insertion" + }, + { + "@value": "Duplication" + }, + { + "@value": "Translocation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural variation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Structural_variation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0199" + }, + { + "@id": "http://edamontology.org/topic_0654" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2945", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Apply analytical methods to existing data of a specific type." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This excludes non-analytical methods that read and write the same basic type of data (for that, see 'Data handling')." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/format_1219", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for any protein sequence with possible ambiguity and unknown positions but without non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pure protein" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2094" + }, + { + "@id": "http://edamontology.org/format_1208" + } + ] + }, + { + "@id": "http://edamontology.org/data_0867", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report of molecular sequence alignment-derived data or metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence alignment metadata" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Use this for any computer-generated reports on sequence alignments, and for general information (metadata) on a sequence alignment, such as a description, sequence identifiers and alignment score." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3401", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The prevention of pain and the evaluation, treatment and rehabilitation of persons in pain." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Pain management" + }, + { + "@value": "Algiatry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Pain_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pain medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Pain_management" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_1324", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "post-translation modifications in a protein sequence, typically describing the specific sites involved." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features (post-translation modifications)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2385", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of a protein from the RefSeq database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "RefSeq protein ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RefSeq accession (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1098" + } + ] + }, + { + "@id": "http://edamontology.org/data_3949", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A profile HMM is a variant of a Hidden Markov model that is derived specifically from a set of (aligned) biological sequences. Profile HMMs provide the basis for a position-specific scoring system, which can be used to align sequences and search databases for related sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Profile HMM" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/HMMER#Profile_HMMs" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1354" + }, + { + "@id": "http://edamontology.org/data_1364" + } + ] + }, + { + "@id": "http://edamontology.org/data_1251", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1249" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Size of a sequence window." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A window is a region of fixed size but not fixed position over a molecular sequence. It is typically moved (computationally) over a sequence during scoring." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Window size" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0229", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Retrieve basic information about a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Annotation retrieval (sequence)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2033", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a molecular tertiary structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tertiary structure format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "http://edamontology.org/data_1587", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_1583" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1583" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid stitch profile" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3809", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.19" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify and assess specific genes or regulatory regions of interest that are differentially methylated." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Differentially-methylated region identification" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DMR identification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3204" + } + ] + }, + { + "@id": "http://edamontology.org/data_1526", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on the stability, intrinsic disorder or globularity of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein globularity data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein globularity" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2970" + } + ] + }, + { + "@id": "http://edamontology.org/data_2362", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of a nucleotide or protein sequence database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence accession (hybrid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1093" + }, + { + "@id": "_:N2535889b15c547819a74c7ba70731e15" + } + ] + }, + { + "@id": "_:N2535889b15c547819a74c7ba70731e15", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0849" + } + ] + }, + { + "@id": "http://edamontology.org/data_1771", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on an molecular sequence version." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence version information" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence version" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2534" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3229", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse sequencing data from experiments aiming to selectively sequence the coding regions of the genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Exome sequence analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Exome assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0310" + } + ] + }, + { + "@id": "http://edamontology.org", + "@type": [ + "http://www.w3.org/2002/07/owl#Ontology" + ], + "http://edamontology.org/citation": [ + { + "@id": "https://doi.org/10.7490/f1000research.1118900.1" + } + ], + "http://edamontology.org/has_format": [ + { + "@id": "http://edamontology.org/format_2197" + }, + { + "@id": "http://edamontology.org/format_3261" + } + ], + "http://edamontology.org/next_id": [ + { + "@value": "4040" + } + ], + "http://edamontology.org/repository": [ + { + "@id": "https://github.com/edamontology/edamontology" + } + ], + "http://purl.obolibrary.org/obo/date": [ + { + "@value": "03.10.2023 11:14 UTC" + } + ], + "http://purl.obolibrary.org/obo/idspace": [ + { + "@value": "EDAM_operation http://edamontology.org/operation_ \"EDAM operations\"" + }, + { + "@value": "EDAM_format http://edamontology.org/format_ \"EDAM data formats\"" + }, + { + "@value": "EDAM_data http://edamontology.org/data_ \"EDAM types of data\"" + }, + { + "@value": "EDAM http://edamontology.org/ \"EDAM relations, concept properties, and subsets\"" + }, + { + "@value": "EDAM_topic http://edamontology.org/topic_ \"EDAM topics\"" + } + ], + "http://purl.obolibrary.org/obo/remark": [ + { + "@value": "EDAM is particularly suitable for semantic annotations and categorisation of diverse resources related to data analysis and management: e.g. tools, workflows, learning materials, or standards. EDAM is also useful in data management itself, for recording provenance metadata of processed data." + }, + { + "@value": "EDAM is a community project and its development can be followed and contributed to at https://github.com/edamontology/edamontology." + } + ], + "http://purl.org/dc/elements/1.1/contributor": [ + { + "@value": "https://github.com/edamontology/edamontology/graphs/contributors and many more!" + } + ], + "http://purl.org/dc/elements/1.1/creator": [ + { + "@value": "Hervé Ménager" + }, + { + "@value": "Matúš Kalaš" + }, + { + "@value": "Jon Ison" + } + ], + "http://purl.org/dc/elements/1.1/description": [ + { + "@value": "EDAM is a domain ontology of data analysis and data management in bio- and other sciences, and science-based applications. It comprises concepts related to analysis, modelling, optimisation, and data life-cycle. Targetting usability by diverse users, the structure of EDAM is relatively simple, divided into 4 main sections: Topic, Operation, Data (incl. Identifier), and Format." + } + ], + "http://purl.org/dc/elements/1.1/format": [ + { + "@value": "application/rdf+xml" + } + ], + "http://purl.org/dc/elements/1.1/title": [ + { + "@value": "EDAM - The ontology of data analysis and management" + } + ], + "http://purl.org/dc/terms/format": [ + { + "@id": "http://www.iana.org/assignments/media-types/application/rdf+xml" + } + ], + "http://purl.org/dc/terms/license": [ + { + "@id": "https://creativecommons.org/licenses/by-sa/4.0" + } + ], + "http://usefulinc.com/ns/doap#Version": [ + { + "@value": "1.26_dev" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/properties" + }, + { + "@id": "http://edamontology.org/obsolete" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#savedBy": [ + { + "@value": "Matúš Kalaš" + } + ], + "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [ + { + "@id": "http://edamontology.org/EDAM.owl" + } + ], + "http://xmlns.com/foaf/0.1/logo": [ + { + "@id": "https://raw.githubusercontent.com/edamontology/edamontology/main/EDAM-logo-square.svg" + } + ], + "http://xmlns.com/foaf/0.1/page": [ + { + "@id": "http://edamontology.org/page" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3360", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Objective indicators of biological state often used to assess health, and determinate treatment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Diagnostic markers" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Biomarkers" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biomarkers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Biomarker" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/data_2309", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a biological reaction from the SABIO-RK reactions database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reaction ID (SABIO-RK)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2108" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0510", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Globally align (superimpose) two or more molecular tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure alignment (global)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Global protein structure alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Global alignment methods identify similarity across the entire structures." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Global structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0295" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2485", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Render a helical wheel representation of protein secondary structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Helical wheel rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Helical wheel drawing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Helical_wheel" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0570" + }, + { + "@id": "_:Ndb6ca5c2d53f4899b44a3c4c4f79b2be" + } + ] + }, + { + "@id": "_:Ndb6ca5c2d53f4899b44a3c4c4f79b2be", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2162" + } + ] + }, + { + "@id": "http://edamontology.org/data_2132", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2538" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A type of point or block mutation, including insertion, deletion, change, duplication and moves." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mutation type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0148", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein-ligand (small molecule) interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-ligand interactions" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3540", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Key residues involved in protein folding." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3510" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein key folding sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1675", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3106" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Metadata on the status of a submitted job." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Values for EBI services are 'DONE' (job has finished and the results can then be retrieved), 'ERROR' (the job failed or no results where found), 'NOT_FOUND' (the job id is no longer available; job results might be deleted, 'PENDING' (the job is in a queue waiting processing), 'RUNNING' (the job is currently being processed)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Job status" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2567", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a molecular sequence without unknown positions, ambiguity or non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "completely unambiguous pure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2566" + }, + { + "@id": "http://edamontology.org/format_2094" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2488", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare protein secondary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein secondary structure" + }, + { + "@value": "Secondary structure comparison (protein)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein secondary structure alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2997" + }, + { + "@id": "http://edamontology.org/operation_2416" + } + ] + }, + { + "@id": "http://edamontology.org/data_2383", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the EGA database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EGA accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2382" + } + ] + }, + { + "@id": "http://edamontology.org/format_3765", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data table formatted such that it can be passed/streamed within the KNIME platform." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KNIME datatable format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2032" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0476", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict tertiary structure of protein sequence(s) without homologs of known structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "de novo structure prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ab initio structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/De_novo_protein_structure_prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0474" + } + ] + }, + { + "@id": "http://edamontology.org/data_1595", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Dotplot of RNA base pairing probability matrix." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Such as generated by the Vienna package." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Base pairing probability matrix dotplot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2088" + }, + { + "@id": "http://edamontology.org/data_2884" + } + ] + }, + { + "@id": "http://edamontology.org/format_2194", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Abstract format used by MedLine database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "medline" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2020" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2121", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Perform basic (non-analytical) operations on a report or file of sequences (which might include features), such as file concatenation, removal or ordering of sequences, creation of subset or a new file of sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence file editing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0231" + }, + { + "@id": "http://edamontology.org/operation_2403" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0210", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a specific fish genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Fish" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2716", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a predicted transcription factor from the DBD database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DBD ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2911" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1846", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify HET groups in PDB files." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2950" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A HET group usually corresponds to ligands, lipids, but might also (not consistently) include groups that are attached to amino acids. Each HET group is supposed to have a unique three letter code and a unique name which might be given in the output." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HET group detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1326", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features report (binding sites)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://purl.obolibrary.org/obo/is_reflexive", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/data_2693", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Otolemur garnettii' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Otolemur garnettii')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2656", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of a neuron from the NeuronDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NeuronDB ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2893" + } + ] + }, + { + "@id": "http://edamontology.org/data_2292", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry from the GenBank sequence database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GenBank accession number" + }, + { + "@value": "GenBank ID" + }, + { + "@value": "GenBank identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GenBank accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1103" + } + ] + }, + { + "@id": "http://edamontology.org/format_2020", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a full-text scientific article." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Literature format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Article format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:Nc3990276870f4693a5d47388ae616ba8" + } + ] + }, + { + "@id": "_:Nc3990276870f4693a5d47388ae616ba8", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0971" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3761", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An operation supporting the browsing or discovery of other tools and services." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Service discovery" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3760" + } + ] + }, + { + "@id": "http://edamontology.org/topic_1312", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in a DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0749" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Promoters" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1583", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on the dissociation characteristics of a double-stranded nucleic acid molecule (DNA or a DNA/RNA hybrid) during heating." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid stability profile" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Melting map" + }, + { + "@value": "Nucleic acid melting curve" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Nucleic acid probability profile: a probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Shows the probability of a base pair not being melted (i.e. remaining as double-stranded DNA) at a specified temperature" + }, + { + "@value": "Nucleic acid stitch profile: stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA). A stitch profile diagram shows partly melted DNA conformations (with probabilities) at a range of temperatures. For example, a stitch profile might show possible loop openings with their location, size, probability and fluctuations at a given temperature." + }, + { + "@value": "A melting (stability) profile calculated the free energy required to unwind and separate the nucleic acid strands, plotted for sliding windows over a sequence." + }, + { + "@value": "Nucleic acid temperature profile: a temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Plots melting temperature versus base position." + }, + { + "@value": "Nucleic acid melting curve: a melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Shows the proportion of nucleic acid which are double-stranded versus temperature." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid melting profile" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2985" + } + ] + }, + { + "@id": "http://edamontology.org/data_1044", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a biological kingdom (Bacteria, Archaea, or Eukaryotes)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Kingdom name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1868" + } + ] + }, + { + "@id": "http://edamontology.org/format_1963", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "UniProtKB entry sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "UniProt format" + }, + { + "@value": "SwissProt format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniProtKB format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2187" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2412", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0227" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) an index of (typically a file of) biological data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data index processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3623", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Duplicate of http://edamontology.org/format_3326" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a data index of some type." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/format_3326" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Index format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2791", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a reference map gel from the SWISS-2DPAGE database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reference map name (SWISS-2DPAGE)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2790" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/data_2887", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A nucleic acid sequence and associated metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence record (nucleic acid)" + }, + { + "@value": "Nucleotide sequence record" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "DNA sequence record" + }, + { + "@value": "RNA sequence record" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence record" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2977" + }, + { + "@id": "http://edamontology.org/data_0849" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2498", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse SAGE, MPSS or SBS experimental data, typically to identify or quantify mRNA transcripts." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequencing-based expression profile data analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_4035", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format derived from the standard PDB format, which enables user to incorporate parameters for charge and radius to the existing PDB data file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PQR" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://userguide.mdanalysis.org/stable/formats/reference/pqr.html#pqr-specification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_1475" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2416", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse protein secondary structure data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Secondary structure analysis (protein)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Naceb558006624bb794d2bb5f4aae7780" + }, + { + "@id": "_:Nff6c91d2573442d9a57ace1e7366f361" + }, + { + "@id": "http://edamontology.org/operation_2406" + } + ] + }, + { + "@id": "_:Naceb558006624bb794d2bb5f4aae7780", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2814" + } + ] + }, + { + "@id": "_:Nff6c91d2573442d9a57ace1e7366f361", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2956" + } + ] + }, + { + "@id": "http://edamontology.org/data_2161", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A plot of sequence similarities identified from word-matching or character comparison." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "Sequence conservation report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Use this concept for calculated substitution rates, relative site variability, data on sites with biased properties, highly conserved or very poorly conserved sites, regions, blocks etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence similarity plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0867" + }, + { + "@id": "http://edamontology.org/data_2884" + } + ] + }, + { + "@id": "http://edamontology.org/data_1087", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique (typically numerical) identifier of a concept in an ontology of biological or bioinformatics concepts and relations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology concept ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3025" + } + ] + }, + { + "@id": "http://edamontology.org/data_1534", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An report on allergenicity / immunogenicity of peptides and proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Peptide immunogenicity report" + }, + { + "@value": "Peptide immunogenicity" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes data on peptide ligands that elicit an immune response (immunogens), allergic cross-reactivity, predicted antigenicity (Hopp and Woods plot) etc. These data are useful in the development of peptide-specific antibodies or multi-epitope vaccines. Methods might use sequence data (for example motifs) and / or structural data." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptide immunogenicity data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0632", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Molecular probes (e.g. a peptide probe or DNA microarray probe) or PCR primers and hybridisation oligos in a nucleic acid sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Probes_and_primers" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Primer quality" + }, + { + "@value": "Primers" + }, + { + "@value": "Probes" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes the design of primers for PCR and DNA amplification or the design of molecular probes." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Probes and primers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D015335" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0749", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Proteins that bind to DNA and control transcription of DNA to mRNA (transcription factors) and also transcriptional regulatory sites, elements and regions (such as promoters, enhancers, silencers and boundary elements / insulators) in nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Transcription_factors_and_regulatory_sites" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Terminators" + }, + { + "@value": "CpG islands" + }, + { + "@value": "TATA signals" + }, + { + "@value": "Promoters" + }, + { + "@value": "Transcription factor binding sites" + }, + { + "@value": "CAAT signals" + }, + { + "@value": "-35 signals" + }, + { + "@value": "TFBS" + }, + { + "@value": "CAT box" + }, + { + "@value": "Isochores" + }, + { + "@value": "CCAAT box" + }, + { + "@value": "-10 signals" + }, + { + "@value": "Transcriptional regulatory sites" + }, + { + "@value": "Attenuators" + }, + { + "@value": "Transcription factors" + }, + { + "@value": "GC signals" + }, + { + "@value": "Enhancers" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes CpG rich regions (isochores) in a nucleotide sequence." + }, + { + "@value": "Transcription factor proteins either promote (as an activator) or block (as a repressor) the binding to DNA of RNA polymerase. Regulatory sites including transcription factor binding site as well as promoters, enhancers, silencers and boundary elements / insulators." + }, + { + "@value": "This includes promoters, CAAT signals, TATA signals, -35 signals, -10 signals, GC signals, primer binding sites for initiation of transcription or reverse transcription, enhancer, attenuator, terminators and ribosome binding sites." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcription factors and regulatory sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Transcriptional_regulation" + }, + { + "@id": "https://en.wikipedia.org/wiki/Transcription_factor" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0203" + }, + { + "@id": "http://edamontology.org/topic_0078" + }, + { + "@id": "http://edamontology.org/topic_3125" + } + ] + }, + { + "@id": "http://edamontology.org/data_0941", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_0883" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation on a structural 3D model (volume map) from electron microscopy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_3806" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Electron microscopy model" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2594", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a taxon using the controlled vocabulary of the UniGene database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "UniGene organism abbreviation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniGene taxon" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1868" + } + ] + }, + { + "@id": "http://edamontology.org/format_1740", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of iHOP (Information Hyperlinked over Proteins) text-mining result." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "iHOP format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Information_Hyperlinked_over_Proteins" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2021" + }, + { + "@id": "http://edamontology.org/format_2331" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0361", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotate a molecular sequence record with terms from a controlled vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N023220d3c07c401abd5f06aa8a94068a" + }, + { + "@id": "_:N45ab8c66bb4b4116a234288d16cc0250" + }, + { + "@id": "http://edamontology.org/operation_0226" + } + ] + }, + { + "@id": "_:N023220d3c07c401abd5f06aa8a94068a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0849" + } + ] + }, + { + "@id": "_:N45ab8c66bb4b4116a234288d16cc0250", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0849" + } + ] + }, + { + "@id": "http://edamontology.org/data_1255", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation of positional features of molecular sequence(s), i.e. that can be mapped to position(s) in the sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "General sequence features" + }, + { + "@value": "Sequence features report" + }, + { + "@value": "Feature record" + }, + { + "@value": "Features" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "SO:0000110" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes annotation of positional sequence features, organised into a standard feature table, or any other report of sequence features. General feature reports are a source of sequence feature table information although internal conversion would be required." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence features" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D058977" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3461", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The prediction of the degree of pathogenicity of a microorganism from analysis of molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Pathogenicity prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Virulence prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2423" + }, + { + "@id": "_:N64d42feb178342b49baeb73f9cacb67b" + }, + { + "@id": "http://edamontology.org/operation_2403" + } + ] + }, + { + "@id": "_:N64d42feb178342b49baeb73f9cacb67b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3301" + } + ] + }, + { + "@id": "http://edamontology.org/data_2710", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of (typically a list of) gene expression experiments catalogued in the CleanEx database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CleanEx dataset code" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1078" + } + ] + }, + { + "@id": "http://edamontology.org/data_1071", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier or name of a structural (3D) profile or template (representing a structure or structure alignment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structural profile identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural (3D) profile ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:N4610e1ce4ebe4347b326f864491414c3" + } + ] + }, + { + "@id": "_:N4610e1ce4ebe4347b326f864491414c3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0889" + } + ] + }, + { + "@id": "http://edamontology.org/data_1069", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a comparison matrix." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Substitution matrix identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Comparison matrix identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nd95df69af8f84418b4c7b4c6479ef1dd" + }, + { + "@id": "http://edamontology.org/data_3036" + } + ] + }, + { + "@id": "_:Nd95df69af8f84418b4c7b4c6479ef1dd", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0874" + } + ] + }, + { + "@id": "http://edamontology.org/format_2569", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a DNA sequence (characters ACGT only) without unknown positions, ambiguity or non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "completely unambiguous pure dna" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2567" + }, + { + "@id": "http://edamontology.org/format_1212" + } + ] + }, + { + "@id": "http://edamontology.org/data_2146", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1772" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A value that serves as a threshold for a tool (usually to control scoring or output)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Threshold" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0442", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0438" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify, predict or analyse cis-regulatory elements (for example riboswitches) in RNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0441" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcriptional regulatory element prediction (RNA-cis)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3632", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the isotope distribution of a given chemical species." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Isotopic distributions calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N9b289a6967c34f68b967c6702a277fef" + }, + { + "@id": "http://edamontology.org/operation_3438" + }, + { + "@id": "_:N061e26af72c84542a2a68fa4dfcae50c" + } + ] + }, + { + "@id": "_:N9b289a6967c34f68b967c6702a277fef", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0943" + } + ] + }, + { + "@id": "_:N061e26af72c84542a2a68fa4dfcae50c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2414", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2945" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse protein function, typically by processing protein sequence and/or structural data, and generate an informative report." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_1777" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein function analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1706", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the KEGG DRUG database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KEGG DRUG entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3979", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "wego" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "WEGO native format used by the Web Gene Ontology Annotation Plot application. Tab-delimited format with gene names and others GO IDs (columns) with one annotation record per line." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "WEGO" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2031" + }, + { + "@id": "http://edamontology.org/format_3475" + } + ] + }, + { + "@id": "http://edamontology.org/data_2129", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a file format such as HTML, PNG, PDF, EMBL, GenBank and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "File format name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3358" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#consider", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/operation_0275", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict protein-protein interactions, interfaces, binding sites etc in protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2464" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-protein interaction prediction (from protein structure)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0861", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0863" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of exact matches between subsequences (words) within two or more molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment (words)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3962", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify deletion events causing the number of repeats in the genome to vary between individuals." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Deletion detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3961" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3203", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise, format or render an image of a Chromatogram." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Chromatogram viewing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chromatogram visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0337" + } + ] + }, + { + "@id": "http://edamontology.org/data_2728", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an EST sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EST accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1855" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3927", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate, process or analyse a biological network." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biological network analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Network comparison" + }, + { + "@value": "Network simulation" + }, + { + "@value": "Network modelling" + }, + { + "@value": "Network topology simulation" + }, + { + "@value": "Biological network modelling" + }, + { + "@value": "Biological network prediction" + }, + { + "@value": "Network prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Network analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Network_theory#Biological_network_analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N78b51f9f16334a5a9914b808bdc0c01e" + }, + { + "@id": "_:Nb060460f90c942118f80f0fc28a1c265" + }, + { + "@id": "http://edamontology.org/operation_2945" + } + ] + }, + { + "@id": "_:N78b51f9f16334a5a9914b808bdc0c01e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0602" + } + ] + }, + { + "@id": "_:Nb060460f90c942118f80f0fc28a1c265", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2259" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2443", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate, process or analyse phylogenetic tree or trees." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0324" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3571", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The control of data entry and maintenance to ensure the data meets defined standards, qualities or constraints." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Data_governance" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Data stewardship" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data governance" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Data_governance" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D030541" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3071" + } + ] + }, + { + "@id": "http://edamontology.org/data_1156", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1082" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the aMAZE database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (aMAZE)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2079", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Some simple value controlling a search operation, typically a search of a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Search parameter" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2156", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A temporal date." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Date" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2192", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3106" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on an error generated by computer system or tool." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Error" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2204", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An XML format for EMBL entries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a placeholder for other more specific concepts. It should not normally be used for annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBL format (XML)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2558" + } + ] + }, + { + "@id": "http://edamontology.org/format_1320", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report format for restriction enzyme recognition sites used by REBASE database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "REBASE restriction sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2158" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_1476", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of PDB database in PDB format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PDB format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PDB" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_1475" + } + ] + }, + { + "@id": "http://edamontology.org/format_1982", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "ClustalW format for (aligned) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "clustal" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ClustalW format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2467", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Retrieve information on a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (protein annotation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3907", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Extract structured information from unstructured (\"free\") or semi-structured textual documents." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "IE" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Information extraction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Information_extraction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0306" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3633", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Prediction of retention time in a mass spectrometry experiment based on compositional and structural properties of the separated species." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Retention time calculation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Retention time prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3438" + } + ] + }, + { + "@id": "http://edamontology.org/data_1293", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2969" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "SMART protein schematic in PNG format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SMART protein schematic" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1396", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Controls the order of sequences in an output sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Aligned sequence order" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1884", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0582" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A controlled vocabulary for words and phrases that can appear in the keywords field (KW line) of entries from the UniProt database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniProt keywords" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3841", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format used in Natural Language Processing." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Natural Language Processing format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NLP format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "http://edamontology.org/data_2729", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an EST sequence from the COGEME database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "COGEME EST ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2728" + } + ] + }, + { + "@id": "http://edamontology.org/format_2330", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Textual format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Plain text format" + }, + { + "@value": "txt" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Data in text format can be compressed into binary format, or can be a value of an XML element or attribute. Markup formats are not considered textual (or more precisely, not plain-textual)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Textual format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://www.iana.org/assignments/media-types/media-types.xhtml#text" + }, + { + "@value": "http://www.iana.org/assignments/media-types/text/plain" + }, + { + "@value": "http://filext.com/file-extension/TXT" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1915" + } + ], + "http://www.w3.org/2002/07/owl#disjointWith": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2754", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Introns in a nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3512" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Introns" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1384", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of multiple protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence alignment (protein)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0863" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3918", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Study of genomic feature structure, variation, function and evolution at a genomic scale." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Genomic analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ne856e4cec8e045fa98d7ca13473d4e9a" + }, + { + "@id": "http://edamontology.org/operation_2478" + } + ] + }, + { + "@id": "_:Ne856e4cec8e045fa98d7ca13473d4e9a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0622" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0566", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise, format or render sequence clusters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence cluster rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0337" + }, + { + "@id": "_:N80287df5cf86481dbf8f8e82c1cbbdf6" + } + ] + }, + { + "@id": "_:N80287df5cf86481dbf8f8e82c1cbbdf6", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1235" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3048", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mammals, e.g. information on a specific mammal genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mammals" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3614", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Human ENCODE broad peak format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ENCODE broad peak format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3612" + } + ] + }, + { + "@id": "http://edamontology.org/format_1625", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a record from the HIVDB database of genotypes and phenotypes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HIVDB entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3780", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format of an annotated text, e.g. with recognised entities, concepts, and relations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Annotated text format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:N9b2500cc10684028b41d0257f71cdef5" + } + ] + }, + { + "@id": "_:N9b2500cc10684028b41d0257f71cdef5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3779" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0079", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0154" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metabolites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0309", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict and/or optimize oligonucleotide probes for DNA microarrays, for example for transcription profiling of genes, or for genomes and gene families." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Microarray probe prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microarray probe design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N2b912053d7244e9c92666871eddb3c39" + }, + { + "@id": "_:N74d1dfbf39fe417eb942aca3314e082b" + }, + { + "@id": "http://edamontology.org/operation_2419" + }, + { + "@id": "_:N05162f2f84f349129c443896b3b764ed" + }, + { + "@id": "_:N70abe8a956094564a804fe2aaae614c8" + }, + { + "@id": "http://edamontology.org/operation_2430" + } + ] + }, + { + "@id": "_:N2b912053d7244e9c92666871eddb3c39", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2717" + } + ] + }, + { + "@id": "_:N74d1dfbf39fe417eb942aca3314e082b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0632" + } + ] + }, + { + "@id": "_:N05162f2f84f349129c443896b3b764ed", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ] + }, + { + "@id": "_:N70abe8a956094564a804fe2aaae614c8", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2977" + } + ] + }, + { + "@id": "http://edamontology.org/data_3266", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of sequence assembly." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Sequence assembly version" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence assembly ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1064" + } + ] + }, + { + "@id": "http://edamontology.org/data_1805", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "WBGene[0-9]{8}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: WormBase" + }, + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: WB" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene identifier used by WormBase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (WormBase)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2113" + }, + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3837", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Approach which samples, in parallel, all genes in all organisms present in a given sample, e.g. to provide insight into biodiversity and function." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Shotgun metagenomic sequencing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Metagenomic_sequencing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metagenomic sequencing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Metagenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3168" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3948", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Immunoinformatics is the field of computational biology that deals with the study of immunoloogical questions. Immunoinformatics is at the interface between immunology and computer science. It takes advantage of computational, statistical, mathematical approaches and enhances the understanding of immunological knowledge." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Computational immunology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Immunoinformatics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This involves the study of often complex genetic traits underlying diseases involving defects in the immune system. For example, identifying target genes for therapeutic approaches, or genetic variations involved in immunological pathology." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Immunoinformatics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Computational_immunology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0605" + }, + { + "@id": "http://edamontology.org/topic_0804" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0488", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Linkage disequilibrium is identified where a combination of alleles (or genetic markers) occurs more or less frequently in a population than expected by chance formation of haplotypes." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Linkage disequilibrium calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0283" + }, + { + "@id": "_:Nfdab316613be4c21a5e5c040ef130872" + } + ] + }, + { + "@id": "_:Nfdab316613be4c21a5e5c040ef130872", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0927" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3388", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The identification of molecular and genetic causes of disease and the development of interventions to correct them." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Molecular_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Molecular_medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3342" + } + ] + }, + { + "@id": "http://edamontology.org/data_1465", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for an RNA tertiary (3D) structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1459" + }, + { + "@id": "_:Nc5175da05a2b49749ed96e04a56f1088" + } + ] + }, + { + "@id": "_:Nc5175da05a2b49749ed96e04a56f1088", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0097" + } + ] + }, + { + "@id": "http://edamontology.org/data_1314", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0916" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on selenocysteine insertion sequence (SECIS) element in a DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene features (SECIS element)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0887", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report of molecular tertiary structure alignment-derived data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/topic_4020", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Biogeochemical cycle" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The carbon cycle is the biogeochemical pathway of carbon moving through the different parts of the Earth (such as ocean, atmosphere, soil), or eventually another planet." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Note that the carbon-nitrogen-oxygen (CNO) cycle (https://en.wikipedia.org/wiki/CNO_cycle) is a completely different, thermonuclear reaction in stars." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Carbon cycle" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Carbon_cycle" + }, + { + "@id": "https://en.wikipedia.org/wiki/Biogeochemical_cycle" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3314" + }, + { + "@id": "http://edamontology.org/topic_3318" + }, + { + "@id": "http://edamontology.org/topic_0610" + }, + { + "@id": "http://edamontology.org/topic_3855" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0332", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Design molecules that elicit an immune response (immunogens)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0252" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Immunogen design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2995", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Assign molecular sequence(s) to a group or category." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2403" + }, + { + "@id": "http://edamontology.org/operation_2990" + } + ] + }, + { + "@id": "http://edamontology.org/data_1427", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Character data with discrete states that may be read during phylogenetic tree calculation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic discrete states" + }, + { + "@value": "Discrete characters" + }, + { + "@value": "Discretely coded characters" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic discrete data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0871" + } + ] + }, + { + "@id": "http://edamontology.org/data_1656", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report typically including a map (diagram) of a metabolic pathway." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2984" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes carbohydrate, energy, lipid, nucleotide, amino acid, glycan, PK/NRP, cofactor/vitamin, secondary metabolite, xenobiotics etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metabolic pathway report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1931", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTQ Illumina 1.3 short read format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FASTQ-illumina" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2182" + } + ] + }, + { + "@id": "http://edamontology.org/data_3086", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report (typically a table) on character or word composition / frequency of nucleic acid sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1261" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence composition (report)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3569", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.1.1 Applied mathematics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The application of mathematics to specific problems in science, typically by the formulation and analysis of mathematical models." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Applied_mathematics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Applied mathematics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Applied_mathematics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3315" + } + ] + }, + { + "@id": "http://edamontology.org/data_1241", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0850" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "File of sequence vectors used by EMBOSS vectorstrip application, or any file in same format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "vectorstrip cloning vector definition file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3308", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The analysis of transcriptomes, or a set of all the RNA molecules in a specific cell, tissue etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Transcriptomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Comparative transcriptomics" + }, + { + "@value": "Transcriptome" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcriptomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Transcriptomics_technologies" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0622" + }, + { + "@id": "http://edamontology.org/topic_0203" + } + ] + }, + { + "@id": "http://edamontology.org/format_1318", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report format for restriction enzyme recognition sites used by EMBOSS restrict program." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "restrict format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2158" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2366", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of the (1D representations of) secondary structure of two or more molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Secondary structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1916" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3627", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Re-adjust the output of mass spectrometry experiments with shifted ppm values." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mass spectra calibration" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N614c43151b1b4927b30f405e1d9139c0" + }, + { + "@id": "http://edamontology.org/operation_3214" + } + ] + }, + { + "@id": "_:N614c43151b1b4927b30f405e1d9139c0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0943" + } + ] + }, + { + "@id": "http://edamontology.org/format_2922", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Some variant of Pearson MARKX alignment format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "markx0 variant" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3440", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The process of assembling many short DNA sequences together such that they represent the original chromosomes from which the DNA originated." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0525" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0435", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Find operons (operators, promoters and genes) in bacteria genes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Operon prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2454" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1768", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0483" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify folding families of related RNAs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid folding family identification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_4037", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Genomic imprinting is a gene regulation mechanism by which a subset of genes are expressed from one of the two parental chromosomes only. Imprinted genes are organized in clusters, their silencing/activation of the imprinted loci involves epigenetic marks (DNA methylation, etc) and so-called imprinting control regions (ICR). It has been described in mammals, but also plants and insects." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene imprinting" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genomic imprinting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Genomic_imprinting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3295" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3062", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0114" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The structural and functional organisation of genes and other genetic elements." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic organisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3031", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A type of data that (typically) corresponds to entries from the primary biological databases and which is (typically) the primary input or output of a tool, i.e. the data the tool processes or generates, as distinct from metadata and identifiers which describe and identify such core data, parameters that control the behaviour of tools, reports of derivative data generated by tools and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Core data entities typically have a format and may be identified by an accession number." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Core data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3635", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Quantification based on the use of chemical tags." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Labeled quantification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3630" + } + ] + }, + { + "@id": "http://edamontology.org/data_3275", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a phenotype." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phenotype" + }, + { + "@value": "Phenotypes" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phenotype name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/data_1448", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Matrix of integer or floating point numbers for nucleotide comparison." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleotide comparison matrix" + }, + { + "@value": "Nucleotide substitution matrix" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Comparison matrix (nucleotide)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0874" + } + ] + }, + { + "@id": "http://edamontology.org/data_1091", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of an object from the WormBase database, usually a human-readable name." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "WormBase name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + }, + { + "@id": "http://edamontology.org/data_2113" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3056", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The distribution of allele frequencies in a population of organisms and its change subject to evolutionary processes including natural selection, genetic drift, mutation and gene flow." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Population_genetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Population genetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Population_genetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3053" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3935", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A process used in statistics, machine learning, and information theory that reduces the number of random variables by obtaining a set of principal variables." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Dimension reduction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Dimensionality reduction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Dimensionality_reduction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N274a9d6e0e154bfe8170d23bac9f217b" + }, + { + "@id": "http://edamontology.org/operation_3438" + }, + { + "@id": "_:N5ce01b3aad874b2585e944daa1f9f1d1" + } + ] + }, + { + "@id": "_:N274a9d6e0e154bfe8170d23bac9f217b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0943" + } + ] + }, + { + "@id": "_:N5ce01b3aad874b2585e944daa1f9f1d1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3053", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of genes, genetic variation and heredity in living organisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Genetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Genes" + }, + { + "@value": "Heredity" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D005823" + }, + { + "@id": "https://en.wikipedia.org/wiki/Genetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3436", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.6" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Combine multiple files or data items into a single file or object." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Aggregation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ] + }, + { + "@id": "http://edamontology.org/data_2911", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of an entry from a database of transcription factors or binding sites." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcription factor accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2907" + }, + { + "@id": "http://edamontology.org/data_1077" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3222", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify putative protein-binding regions in a genome sequence from analysis of Chip-sequencing data or ChIP-on-chip data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein binding peak detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Peak-pair calling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Chip-sequencing combines chromatin immunoprecipitation (ChIP) with massively parallel DNA sequencing to generate a set of reads, which are aligned to a genome sequence. The enriched areas contain the binding sites of DNA-associated proteins. For example, a transcription factor binding site. ChIP-on-chip in contrast combines chromatin immunoprecipitation ('ChIP') with microarray ('chip'). \"Peak-pair calling\" is similar to \"Peak calling\" in the context of ChIP-exo." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peak calling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0415" + } + ] + }, + { + "@id": "_:Ncff1719e8f1144fcbdf6b38cd912b188", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "'OBO_REL:participates_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'continuant' (snap:Continuant) with ontological categories that are a 'process' (span:Process), and broader in the sense that it relates any participating subjects not just inputs or input arguments." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/is_input_of" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "OBO_REL:participates_in" + } + ] + }, + { + "@id": "http://edamontology.org/data_2598", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0867" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on protein secondary structure alignment-derived data or metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Secondary structure alignment metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1501", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A table of 20 numerical values which quantify a property (e.g. physicochemical or biochemical) of the common amino acids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid index" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + }, + { + "@id": "http://edamontology.org/data_2016" + } + ] + }, + { + "@id": "http://edamontology.org/format_3750", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://yaml.org" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "yml" + }, + { + "@value": "yaml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://filext.com/file-extension/YML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "YAML (YAML Ain't Markup Language) is a human-readable tree-structured data serialisation language." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "YAML Ain't Markup Language" + }, + { + "@value": "yml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Data in YAML format can be serialised into text, or binary format." + }, + { + "@value": "YAML version 1.2 is a superset of JSON; prior versions were \"not strictly compatible\"." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "YAML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/YAML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1915" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3340", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Collections of cells grown under laboratory conditions, specifically, cells from multi-cellular eukaryotes and especially animal cells." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Cell_culture_collection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell culture collection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Microbiological_culture#Culture_collections" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3277" + } + ] + }, + { + "@id": "http://edamontology.org/data_2621", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "AASequence:[0-9]{10}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a protein sequence from the TAIR database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TAIR accession (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2387" + }, + { + "@id": "http://edamontology.org/data_1096" + } + ] + }, + { + "@id": "_:Ncf32c0994b094edba0363356ccd2261f", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "File format denotes only formats of a computer file, but the same formats apply also to data blobs or exchanged messages." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/format_1915" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "File format" + } + ] + }, + { + "@id": "http://edamontology.org/data_2982", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1354" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning models representing a (typically multiple) sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence profile data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3001", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://bozeman.mbt.washington.edu/consed/distributions/README.14.0.txt" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://bozeman.mbt.washington.edu/consed/distributions/README.14.0.txt" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "ACE sequence assembly format including contigs, base-call qualities, and other metadata (version Aug 1998 and onwards)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ACE" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2055" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3638", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Quantification analysis using stable isotope labeling by amino acids in cell culture." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SILAC" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3635" + } + ] + }, + { + "@id": "http://edamontology.org/data_2236", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Raw CATH domain classification data files." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "These are the parsable data files provided by CATH." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Raw CATH domain classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1605", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of Candida Genome database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CGD gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0736", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein tertiary structural domains and folds in a protein or polypeptide chain." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_folds_and_structural_domains" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein topological domains" + }, + { + "@value": "Intramembrane regions" + }, + { + "@value": "Transmembrane regions" + }, + { + "@value": "Protein transmembrane regions" + }, + { + "@value": "Protein folds" + }, + { + "@value": "Protein membrane regions" + }, + { + "@value": "Protein structural domains" + }, + { + "@value": "Protein domains" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements. For example, the location and size of the membrane spanning segments and intervening loop regions, transmembrane region IN/OUT orientation relative to the membrane, plus the following data for each amino acid: A Z-coordinate (the distance to the membrane center), the free energy of membrane insertion (calculated in a sliding window over the sequence) and a reliability score. The z-coordinate implies information about re-entrant helices, interfacial helices, the tilt of a transmembrane helix and loop lengths." + }, + { + "@value": "This includes topological domains such as cytoplasmic regions in a protein." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein folds and structural domains" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_superfamily" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_2814" + } + ] + }, + { + "@id": "http://edamontology.org/data_1492", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1482" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of more than two nucleic acid tertiary (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Multiple nucleic acid tertiary structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2867", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Variable number of tandem repeat (VNTR) polymorphism in a DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_2885" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "VNTR" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2200", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A text format resembling FASTA format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept may also be used for the many non-standard FASTA-like formats." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FASTA-like (text)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://filext.com/file-extension/FASTA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2546" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3999", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "r" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for scripts written in the R language - an open source programming language and software environment for statistical computing and graphics that is supported by the R Foundation for Statistical Computing." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "R program" + }, + { + "@value": "R" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "R script" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2032" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1395", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Whether end gaps are scored or not." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Score end gaps control" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3489", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/related_term": [ + { + "@value": "Information systems" + }, + { + "@value": "Database administration" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Databases" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The general handling of data stored in digital archives such as databases, databanks, web portals, and other data resources." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Database_management" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Document management" + }, + { + "@value": "File management" + }, + { + "@value": "Record management" + }, + { + "@value": "Content management" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes databases for the results of scientific experiments, the application of high-throughput technology, computational analysis and the scientific literature. It covers the management and manipulation of digital documents, including database records, files, and reports." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database management" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Database" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0605" + } + ] + }, + { + "@id": "http://edamontology.org/data_0852", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A label (text token) describing the type of sequence masking to perform." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Sequence masking is where specific characters or positions in a molecular sequence are masked (replaced) with an another (mask character). The mask type indicates what is masked, for example regions that are not of interest or which are information-poor including acidic protein regions, basic protein regions, proline-rich regions, low compositional complexity regions, short-periodicity internal repeats, simple repeats and low complexity regions. Masked sequences are used in database search to eliminate statistically significant but biologically uninteresting hits." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence mask type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2350", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A placeholder concept for visual navigation by dividing data formats by the content of the data that is represented." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Format (typed)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept exists only to assist EDAM maintenance and navigation in graphical browsers. It does not add semantic information. The concept branch under 'Format (typed)' provides an alternative organisation of the concepts nested under the other top-level branches ('Binary', 'HTML', 'RDF', 'Text' and 'XML'. All concepts under here are already included under those branches." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Format (by type of data)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1915" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3301", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.20 Microbiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The biology of microorganisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Microbiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Microbial genetics" + }, + { + "@value": "Microbiological surveillance" + }, + { + "@value": "Microbial physiology" + }, + { + "@value": "Microbial surveillance" + }, + { + "@value": "Antimicrobial stewardship" + }, + { + "@value": "Medical microbiology" + }, + { + "@value": "Molecular microbiology" + }, + { + "@value": "Molecular infection biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microbiology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Microbiology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/data_1453", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1449" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Matrix of floating point numbers for amino acid comparison." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid comparison matrix (floats)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0283", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse genetic linkage." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example, estimate how close two genes are on a chromosome by calculating how often they are transmitted together to an offspring, ascertain whether two genes are linked and parental linkage, calculate linkage map distance etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Linkage analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + }, + { + "@id": "_:Nafea724d74c94de684e315c62696539a" + }, + { + "@id": "_:N6476a6b3e24948938d006bae94fee5e9" + } + ] + }, + { + "@id": "_:Nafea724d74c94de684e315c62696539a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0102" + } + ] + }, + { + "@id": "_:N6476a6b3e24948938d006bae94fee5e9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0927" + } + ] + }, + { + "@id": "http://edamontology.org/next_id", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/data_2119", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name or other identifier of a nucleic acid molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nf52a32df337349b9b6d82a8426ff4b2e" + }, + { + "@id": "http://edamontology.org/data_0982" + } + ] + }, + { + "@id": "_:Nf52a32df337349b9b6d82a8426ff4b2e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2084" + } + ] + }, + { + "@id": "http://edamontology.org/data_0832", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0582" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Controlled vocabulary for gene names (symbols) from HUGO Gene Nomenclature Committee." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HGNC vocabulary" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2208", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a plasmid in a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Plasmid identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2119" + } + ] + }, + { + "@id": "http://edamontology.org/data_1240", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Oligonucleotide primer(s) for PCR and DNA amplification, for example a minimal primer set." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PCR primers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1234" + } + ] + }, + { + "@id": "http://edamontology.org/format_3854", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.uniprot.org/uniref" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML format for the UniRef reference clusters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniRef XML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_1920" + } + ] + }, + { + "@id": "http://edamontology.org/format_2205", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A text format resembling GenBank entry (plain text) format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept may be used for the non-standard GenBank-like text formats." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GenBank-like format (text)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2559" + } + ] + }, + { + "@id": "http://edamontology.org/data_1266", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A table of word composition of a nucleotide sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Base word frequencies table" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + }, + { + "@id": "http://edamontology.org/data_1261" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0188", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence profiles; typically a positional, numerical matrix representing a sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Sequence profiles include position-specific scoring matrix (position weight matrix), hidden Markov models etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence profiles and HMMs" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0610", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.15 Ecology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The ecological and environmental sciences and especially the application of information technology (ecoinformatics)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Ecology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Ecoinformatics" + }, + { + "@value": "Ecological informatics" + }, + { + "@value": "Ecosystem science" + }, + { + "@value": "Computational ecology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ecology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Ecology" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D004777" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_4019" + }, + { + "@id": "http://edamontology.org/topic_3855" + } + ] + }, + { + "@id": "http://edamontology.org/data_1368", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1354" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein signature of the type used in the EMBASSY Signature package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Domainatrix signature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2640", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.16 Oncology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of cancer, for example, genes and proteins implicated in cancer." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Cancer biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Oncology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Cancer" + }, + { + "@value": "Neoplasm" + }, + { + "@value": "Neoplasms" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Oncology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Oncology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_1473", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1468" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a protein domain tertiary (3D) structure (all atoms)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein domain (all atoms)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0966", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term (name) from an ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Ontology class name" + }, + { + "@value": "Ontology terms" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology term" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0967" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3447", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Processing of diffraction data into a corrected, ordered, and simplified form." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Diffraction data reduction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3445" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0303", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Recognize (predict and identify) known protein structural domains or folds in protein sequence(s) which (typically) are not accompanied by any significant sequence similarity to know structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein fold prediction" + }, + { + "@value": "Fold prediction" + }, + { + "@value": "Domain prediction" + }, + { + "@value": "Protein fold recognition" + }, + { + "@value": "Protein domain prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods use some type of mapping between sequence and fold, for example secondary structure prediction and alignment, profile comparison, sequence properties, homologous sequence search, kernel machines etc. Domains and folds might be taken from SCOP or CATH." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Fold recognition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2997" + }, + { + "@id": "http://edamontology.org/operation_2928" + }, + { + "@id": "http://edamontology.org/operation_2479" + }, + { + "@id": "http://edamontology.org/operation_3092" + }, + { + "@id": "http://edamontology.org/operation_2406" + } + ] + }, + { + "@id": "http://edamontology.org/data_2917", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of an entity from the ConsensusPathDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ConsensusPathDB identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2109" + } + ] + }, + { + "@id": "http://edamontology.org/data", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty" + } + ] + }, + { + "@id": "http://edamontology.org/format_3329", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "ftp://selab.janelia.org/pub/software/hmmer/CURRENT/Userguide.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "HMMER profile HMM file for HMMER versions 3.x." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HMMER3" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1370" + } + ] + }, + { + "@id": "http://edamontology.org/operation_4033", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The analysis and simulation of disease transmission using, for example, statistical methods such as the SIR-model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Disease transmission analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2426" + }, + { + "@id": "_:N5db551286ff94ce9b78d3ec35348d7d7" + }, + { + "@id": "http://edamontology.org/operation_2945" + }, + { + "@id": "_:N0d6c9d8cd5c64ce298614b8ca02e6ab0" + }, + { + "@id": "_:N37994a992b8c4f85820d2ff8a47a7a53" + }, + { + "@id": "http://edamontology.org/operation_3664" + } + ] + }, + { + "@id": "_:N5db551286ff94ce9b78d3ec35348d7d7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3324" + } + ] + }, + { + "@id": "_:N0d6c9d8cd5c64ce298614b8ca02e6ab0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "_:N37994a992b8c4f85820d2ff8a47a7a53", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3305" + } + ] + }, + { + "@id": "http://edamontology.org/data_1715", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0966" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term from the BioPax ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioPax term" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1289", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image of the restriction enzyme cleavage sites (restriction sites) in a nucleic acid sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Restriction map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2969" + }, + { + "@id": "http://edamontology.org/data_1279" + } + ] + }, + { + "@id": "http://edamontology.org/data_0916", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:GeneInfo" + }, + { + "@value": "Moby_namespace:Human_Readable_Description" + }, + { + "@value": "Moby:gene" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on predicted or actual gene structure, regions which make an RNA product and features such as promoters, coding regions, splice sites etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene features report" + }, + { + "@value": "Gene function (report)" + }, + { + "@value": "Gene annotation" + }, + { + "@value": "Nucleic acid features (gene and transcript structure)" + }, + { + "@value": "Gene structure (repot)" + }, + { + "@value": "Gene and transcript structure (report)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes any report on a particular locus or gene. This might include the gene name, description, summary and so on. It can include details about the function of a gene, such as its encoded protein or a functional classification of the gene sequence along according to the encoded protein(s)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2084" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2430", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Design a biological entity (typically a molecular sequence or structure) with specific properties." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/format_2060", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a map of (typically one) molecular sequence annotated with features." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Map format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:N0a4074d1550d48a684d8a1903cf8f3f1" + } + ] + }, + { + "@id": "_:N0a4074d1550d48a684d8a1903cf8f3f1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1274" + } + ] + }, + { + "@id": "http://edamontology.org/format_3160", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.nexml.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.nexml.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "NeXML is a standardised XML format for rich phyloinformatic data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NeXML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2557" + } + ] + }, + { + "@id": "http://edamontology.org/format_3834", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://www.psidev.info/mzdata-1_0_5-docs" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Now deprecated data format of the HUPO Proteomics Standards Initiative. Replaced by mzML (format_3244)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mzData" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/format_3005", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/goldenPath/help/wiggle.html" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "wig" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/goldenPath/help/wiggle.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Wiggle format (WIG) of a sequence annotation track that consists of a value for each sequence position. Typically to be displayed in a genome browser." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "WIG" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2919" + } + ] + }, + { + "@id": "http://edamontology.org/data_1382", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0863" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of more than two molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment (multiple)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0316", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Interpret (in functional terms) and annotate gene expression data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Functional profiling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1325", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "catalytic residues (active site) of an enzyme." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features report (active sites)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2120", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process an EMBOSS listfile (list of EMBOSS Uniform Sequence Addresses)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Listfile processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2783", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry (family) from the PANTHER database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Panther family ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein family ID (PANTHER)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2910" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_3851", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://matra.sourceforge.net/dtdtree/bio/psdml_dtdtree.php" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Tree structure of Protein Sequence Database Markup Language generated using Matra software." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PSDML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1920" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_0891", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0893" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An alignment of a sequence to a 3D profile (representing structures or a structure alignment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence-3D profile alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3793", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Counting and summarising the number of short sequence reads that map to genomic features." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Read summarisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3921" + } + ] + }, + { + "@id": "http://edamontology.org/data_2961", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report typically including a map (diagram) of a gene regulatory network." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2984" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene regulatory network report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1042", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/example": [ + { + "@value": "33229" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier (number) of an entry in the SCOP hierarchy, for example 33229." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "SCOP unique identifier" + }, + { + "@value": "sunid" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A sunid uniquely identifies an entry in the SCOP hierarchy, including leaves (the SCOP domains) and higher level nodes including entries corresponding to the protein level." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SCOP sunid" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1039" + } + ] + }, + { + "@id": "http://edamontology.org/data_2587", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a blot from a Northern Blot." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Blot ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/format_1211", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a nucleotide sequence (characters ACGTU only) with possible unknown positions but without ambiguity or non-sequence characters ." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "unambiguous pure nucleotide" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1207" + }, + { + "@id": "http://edamontology.org/format_1206" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0380", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse repeat sequence organisation such as periodicity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Repeat sequence organisation analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0236" + }, + { + "@id": "http://edamontology.org/operation_0237" + } + ] + }, + { + "@id": "http://edamontology.org/data_2601", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0962" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning one or more small molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Small molecule data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0266", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect vector sequences in nucleotide sequence, typically by comparison to a set of known vector sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Vector sequence detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0415" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3645", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identification of post-translational modifications (PTMs) of peptides/proteins in mass spectrum." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PTM identification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3631" + } + ] + }, + { + "@id": "http://edamontology.org/data_1744", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_1743" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cartesian x coordinate of an atom (in a molecular structure)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1743" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Atomic x coordinate" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "_:Nad52d0c80a4b4d83b7f1d13091e4b12f", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "'OBO_REL:has_participant' is narrower in the sense that it only relates ontological categories (concepts) that are a 'process' (span:Process) with ontological categories that are a 'continuant' (snap:Continuant), and broader in the sense that it relates with any participating objects not just outputs or output arguments of the subject. It is also not clear whether an output (result) actually participates in the process that generates it." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "OBO_REL:has_participant" + } + ] + }, + { + "@id": "http://edamontology.org/data_1412", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence identity is the number (%) of matches (identical characters) in positions from an alignment of two molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence identity" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0865" + } + ] + }, + { + "@id": "http://edamontology.org/data_2903", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An accession of a particular genome (in a database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2749" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3543", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Short repetitive subsequences (repeat sequences) in a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0157" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence repeats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3688", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://arxiv.org/abs/1502.01463" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://sbtab.net" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://sbtab.net" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "SBtab is a tabular format for biochemical network models." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SBtab" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2013" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_1633", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.bioperl.org/wiki/PHD_sequence_format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.bioperl.org/wiki/PHD_sequence_format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PHD sequence trace format to store serialised chromatogram data (reads)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PHD" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2057" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2699", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Xenopus tropicalis' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Xenopus tropicalis')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2212", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information describing the mutation itself, the organ site, tissue and type of lesion where the mutation has been identified, description of the patient origin and life-style." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mutation annotation (basic)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2865", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A numerical measure of differences in the frequency of occurrence of synonymous codons in DNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage bias" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0914" + } + ] + }, + { + "@id": "http://edamontology.org/data_3743", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A plot in which community data (e.g. species abundance data) is summarised. Similar species and samples are plotted close together, and dissimilar species and samples are plotted placed far apart." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ordination plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + }, + { + "@id": "http://edamontology.org/data_2884" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2811", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0089" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Biological nomenclature (naming), symbols and terminology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nomenclature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3843", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://beast.bio.ed.ac.uk/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML input file format for BEAST Software (Bayesian Evolutionary Analysis Sampling Trees)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BEAST" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2552" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_1179", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/example": [ + { + "@value": "9662|3483|182682" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[1-9][0-9]{0,8}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A stable unique identifier for each taxon (for a species, a family, an order, or any other group in the NCBI taxonomy database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "NCBI taxonomy identifier" + }, + { + "@value": "NCBI tax ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NCBI taxonomy ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1087" + }, + { + "@id": "http://edamontology.org/data_2908" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/formats", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0232", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Merge two or more (typically overlapping) molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence splicing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Paired-end merging" + }, + { + "@value": "Paired-end stitching" + }, + { + "@value": "Read merging" + }, + { + "@value": "Read stitching" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence merging" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0231" + } + ] + }, + { + "@id": "http://edamontology.org/data_1162", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/example": [ + { + "@value": "MIR:00100005" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "MIR:[0-9]{8}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a MIRIAM data resource." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is the identifier used internally by MIRIAM for a data type." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MIRIAM identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "_:N0537b26bf1494e00bb0a054d728ea4b5" + }, + { + "@id": "http://edamontology.org/data_2902" + } + ] + }, + { + "@id": "_:N0537b26bf1494e00bb0a054d728ea4b5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0957" + } + ] + }, + { + "@id": "http://edamontology.org/format_3584", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Browser Extensible Data (BED) format of sequence annotation track that strictly does not contain non-standard fields beyond the first 3 columns." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Galaxy allows BED files to contain non-standard fields beyond the first 3 columns, some other implementations do not." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "bedstrict" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3003" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0612", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_2229" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The cell cycle including key genes and proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell cycle" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2389", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the UniSTS database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniSTS accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1097" + } + ] + }, + { + "@id": "http://edamontology.org/format_2304", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format (XML) for the STRING database of protein interaction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "STRING entry format (XML)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2054" + } + ] + }, + { + "@id": "http://purl.obolibrary.org/obo/is_metadata_tag", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/format_3287", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a metadata on an individual and their genetic data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Individual genetic data format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "http://edamontology.org/data_3102", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Duplicates http://edamontology.org/data_1002, hence deprecated." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.23" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_2895" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1002" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CAS number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0637", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.25 Taxonomy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Organism classification, identification and naming." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Taxonomy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Taxonomy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Taxonomy_(biology)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3299" + } + ] + }, + { + "@id": "http://edamontology.org/format_1941", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Hennig86 output sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "hennig86" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0078", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Archival, processing and analysis of protein data, typically molecular sequence and structural data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein informatics" + }, + { + "@value": "Protein bioinformatics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Proteins" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein databases" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Proteins" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D020539" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3307" + } + ] + }, + { + "@id": "http://edamontology.org/data_0993", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a drug." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drug identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1086" + }, + { + "@id": "_:N82b57870d47c416dbf8cc2cfa85f6fd5" + } + ] + }, + { + "@id": "_:N82b57870d47c416dbf8cc2cfa85f6fd5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2851" + } + ] + }, + { + "@id": "http://edamontology.org/data_1669", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The P-value is the probability of obtaining by random chance a result that is at least as extreme as an observed result, assuming a NULL hypothesis is true." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A z-value might be specified as a threshold for reporting hits from database searches." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "P-value" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0951" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0767", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein and peptide identification." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein and peptide identification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/format_1985", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Pearson MARKX0 alignment format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "markx0" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2922" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0547", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construct a phylogenetic tree by relating sequence data to a hypothetical tree topology using a model of sequence evolution." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree construction (maximum likelihood and Bayesian methods)" + }, + { + "@value": "Phylogenetic tree generation (maximum likelihood and Bayesian methods)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Maximum likelihood methods search for a tree that maximizes a likelihood function, i.e. that is most likely given the data and model. Bayesian analysis estimate the probability of tree for branch lengths and topology, typically using a Monte Carlo algorithm." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic inference (maximum likelihood and Bayesian methods)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0539" + } + ] + }, + { + "@id": "http://edamontology.org/format_3554", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "File format used for scripts written in the R programming language for execution within the R software environment, typically for statistical computation and graphics." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "R file format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_1317", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.24 Structural biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The molecular structure of biological molecules, particularly macromolecules such as proteins and nucleic acids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Structural_biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Structural assignment" + }, + { + "@value": "Structure determination" + }, + { + "@value": "Structural determination" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes experimental methods for biomolecular structure determination, such as X-ray crystallography, nuclear magnetic resonance (NMR), circular dichroism (CD) spectroscopy, microscopy etc., including the assignment or modelling of molecular structure from such data." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Structural_biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/data_3264", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a COSMIC database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "COSMIC identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "COSMIC ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2294" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2403", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse one or more known molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence analysis (general)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequence_analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2945" + }, + { + "@id": "_:N4529c7eee39b40e3a39764bca78cb8c5" + } + ] + }, + { + "@id": "_:N4529c7eee39b40e3a39764bca78cb8c5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ] + }, + { + "@id": "http://edamontology.org/format_1932", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTQ short read format with phred quality." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FASTQ-sanger" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2182" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2844", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Build clusters of similar structures, typically using scores from structural alignment methods." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structural clustering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure clustering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3432" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2496", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a network of gene regulation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_1781" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene regulatory network processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0135", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein microarray data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein microarrays" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2804", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier for a cone snail toxin protein from the ConoServer database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein ID (ConoServer)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + } + ] + }, + { + "@id": "http://edamontology.org/data_2643", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "ZDB\\-GENE\\-[0-9]+\\-[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for a gene from the Zebrafish information network genome (ZFIN) database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (ZFIN)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_3505", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A list of publications such as scientic papers or books." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Bibliography" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2526" + } + ] + }, + { + "@id": "http://edamontology.org/format_1457", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of RNA secondary structure in dot-bracket notation, originally generated by the Vienna RNA package/server." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Vienna RNA format" + }, + { + "@value": "Vienna RNA secondary structure format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Dot-bracket format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2076" + } + ] + }, + { + "@id": "http://edamontology.org/format_3312", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://home.cc.umanitoba.ca/~psgendb/birchhomedir/local/pkg/gde/doc/GDE2.2_manual.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for the Genetic Data Environment (GDE)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GDE" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/data_1285", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence map of a single gene annotated with genetic features such as introns, exons, untranslated regions, polyA signals, promoters, enhancers and (possibly) mutations defining alleles of a gene." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1279" + } + ] + }, + { + "@id": "http://edamontology.org/is_format_of", + "@type": [ + "http://www.w3.org/2002/07/owl#ObjectProperty" + ], + "http://purl.obolibrary.org/obo/is_anti_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_reflexive": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/transitive_over": [ + { + "@value": "OBO_REL:is_a" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'A is_format_of B' defines for the subject A, that it is a data format of the object B." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "OBO_REL:quality_of" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#isCyclic": [ + { + "@value": "false" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subject A can either be a concept that is a 'Format', or in unexpected cases an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is a 'Format' or is in the role of a 'Format'. Object B can be any concept or entity outside of an ontology that is (or is in a role of) 'Data', or an input, output, input or output argument of an 'Operation'. In EDAM, only 'is_format_of' is explicitly defined between EDAM concepts ('Format' 'is_format_of' 'Data'). The inverse, 'has_format', is not explicitly defined." + } + ], + "http://www.w3.org/2000/01/rdf-schema#domain": [ + { + "@id": "http://edamontology.org/format_1915" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "is format of" + } + ], + "http://www.w3.org/2000/01/rdf-schema#range": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.w3.org/2004/02/skos/core#broadMatch": [ + { + "@id": "http://www.loa.istc.cnr.it/ontologies/DOLCE-Lite.owl#inherent-in" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2429", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Map properties to positions on an biological entity (typically a molecular sequence or structure), or assemble such an entity from constituent parts." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Cartography" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/data_1173", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the ChemSpider database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ChemSpider ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2894" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1058", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a file (of any type) with restricted possible values." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enumerated file name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1050" + } + ] + }, + { + "@id": "http://edamontology.org/data_1707", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An image (for viewing or printing) of a phylogenetic tree including (typically) a plot of rooted or unrooted phylogenies, cladograms, circular trees or phenograms and associated information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "See also 'Phylogenetic tree'" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2968" + } + ] + }, + { + "@id": "http://edamontology.org/format_1632", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://staden.sourceforge.net/manual/formats_unix_2.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://staden.sourceforge.net/manual/formats_unix_2.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Staden Chromatogram Files format (SCF) of base-called sequence reads, qualities, and other metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SCF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2057" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/events", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1841", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:ShowLikelyRotamers200" + }, + { + "@value": "WHATIF:ShowLikelyRotamers900" + }, + { + "@value": "WHATIF:ShowLikelyRotamers500" + }, + { + "@value": "WHATIF:ShowLikelyRotamers300" + }, + { + "@value": "WHATIF:ShowLikelyRotamers100" + }, + { + "@value": "WHATIF:ShowLikelyRotamers600" + }, + { + "@value": "WHATIF:ShowLikelyRotamers700" + }, + { + "@value": "WHATIF:ShowLikelyRotamers800" + }, + { + "@value": "WHATIF:ShowLikelyRotamers" + }, + { + "@value": "WHATIF:ShowLikelyRotamers400" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict rotamer likelihoods for all 20 amino acid types at each position in a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0480" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Output typically includes, for each residue position, the likelihoods for the 20 amino acid types with estimated reliability of the 20 likelihoods." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Rotamer likelihood prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0082", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The prediction of molecular structure, including the prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features, and the folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Structure_prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Nucleic acid design" + }, + { + "@value": "Nucleic acid folding" + }, + { + "@value": "Protein fold recognition" + }, + { + "@value": "RNA structure prediction" + }, + { + "@value": "Protein structure prediction" + }, + { + "@value": "Nucleic acid structure prediction" + }, + { + "@value": "DNA structure prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes the recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s), for example by threading, or the alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Nucleic_acid_structure_prediction" + }, + { + "@id": "https://en.wikipedia.org/wiki/Protein_structure_prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ] + }, + { + "@id": "http://edamontology.org/format_1653", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the aMAZE biological pathways and molecular interactions database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "aMAZE entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3103", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a drug conforming to the Anatomical Therapeutic Chemical (ATC) Classification System, a drug classification system controlled by the WHO Collaborating Centre for Drug Statistics Methodology (WHOCC)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ATC code" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2895" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0253", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict, recognise and identify positional features in molecular sequences such as key functional sites or regions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence feature prediction" + }, + { + "@value": "Sequence feature recognition" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Motif database search" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "SO:0000110" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Look at \"Protein feature detection\" (http://edamontology.org/operation_3092) and \"Nucleic acid feature detection\" (http://edamontology.org/operation_0415) in case more specific terms are needed." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2423" + }, + { + "@id": "_:N3521053692774be49ab4d67e1815af83" + }, + { + "@id": "http://edamontology.org/operation_2403" + }, + { + "@id": "_:N2b58b97781fe4fca8c86bfee7d989be8" + } + ] + }, + { + "@id": "_:N3521053692774be49ab4d67e1815af83", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "_:N2b58b97781fe4fca8c86bfee7d989be8", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "http://edamontology.org/data_1529", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The pKa value of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein pKa value" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0493", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0495" + }, + { + "@id": "http://edamontology.org/operation_0491" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Locally align exactly two molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Local alignment methods identify regions of local similarity." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pairwise sequence alignment generation (local)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0393", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate clusters of contacting residues in protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes for example clusters of hydrophobic or charged residues, or clusters of contacting residues which have a key structural or functional role." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Residue cluster calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N1ad27d24422c42a78d93a08b987419d3" + }, + { + "@id": "http://edamontology.org/operation_2950" + } + ] + }, + { + "@id": "_:N1ad27d24422c42a78d93a08b987419d3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1548" + } + ] + }, + { + "@id": "http://edamontology.org/format_3820", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://biopython.org/DIST/docs/api/Bio.AlignIO.PhylipIO-module.html" + }, + { + "@id": "http://www.phylo.org/index.php/help/relaxed_phylip" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylip multiple alignment sequence format, less stringent than PHYLIP sequential format (format_1998)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Relaxed PHYLIP sequential format" + }, + { + "@value": "Relaxed PHYLIP non-interleaved" + }, + { + "@value": "Relaxed PHYLIP non-interleaved format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "It differs from Phylip sequential format (format_1997) on length of the ID sequence. There no length restrictions on the ID, but whitespaces aren't allowed in the sequence ID/Name because one space separates the longest ID and the beginning of the sequence. Sequences IDs must be padded to the longest ID length." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Relaxed PHYLIP Sequential" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2924" + } + ] + }, + { + "@id": "http://edamontology.org/data_1866", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A designation of the type of map (genetic map, physical map, sequence map etc) or map set." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Map types may be based on Gramene's notion of a map type; see http://www.gramene.org/db/cmap/map_type_info." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Map type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2939", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualize the results of a principal component analysis (orthogonal data transformation). For example, visualization of the principal components (essential subspace) coming from a Principal Component Analysis (PCA) on the trajectory atomistic coordinates of a molecular structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PCA plotting" + }, + { + "@value": "Principal component plotting" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Microarray principal component rendering" + }, + { + "@value": "PCA visualization" + }, + { + "@value": "ED visualization" + }, + { + "@value": "Principal modes visualization" + }, + { + "@value": "Microarray principal component plotting" + }, + { + "@value": "Essential Dynamics visualization" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Examples for visualization are the distribution of variance over the components, loading and score plots." + }, + { + "@value": "The use of Principal Component Analysis (PCA), a multivariate statistical analysis to obtain collective variables on the atomic positional fluctuations, helps to separate the configurational space in two subspaces: an essential subspace containing relevant motions, and another one containing irrelevant local fluctuations." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Principal component visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0337" + } + ] + }, + { + "@id": "http://edamontology.org/data_1874", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Common name for an organism as used in the GenBank database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genbank common name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2909" + } + ] + }, + { + "@id": "http://edamontology.org/format_3849", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://xml.coverpages.org/msaml-desc-dec.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A set of XML compliant markup components for describing multiple sequence alignments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MSAML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_1921" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0383", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse the hydrophobic, hydrophilic or charge properties of a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2574" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein hydropathy calculation (from structure)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1661", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "disease pathways, typically of human disease." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0906" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Disease pathway or network report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3550", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.itk.org/Wiki/ITK/MetaIO/Documentation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Text-based tagged file format for medical images generated using the MetaImage software package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Metalmage format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mhd" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3547" + } + ] + }, + { + "@id": "http://edamontology.org/format_3915", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.23" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://pangeo.io/data.html" + }, + { + "@id": "https://zarr.readthedocs.io/en/stable/spec.html" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://zarr.readthedocs.io/en/stable/spec/v2.html#examples" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "zgroup" + }, + { + "@value": "zarray" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The Zarr format is an implementation of chunked, compressed, N-dimensional arrays for storing data." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Zarr" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "_:N5ea80498e26d4a489ba8c64d5ea8e2c4" + }, + { + "@id": "http://edamontology.org/format_2058" + }, + { + "@id": "http://edamontology.org/format_3033" + }, + { + "@id": "_:N759317dd095c4775927c73c5a6768b64" + } + ] + }, + { + "@id": "_:N5ea80498e26d4a489ba8c64d5ea8e2c4", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2535" + } + ] + }, + { + "@id": "_:N759317dd095c4775927c73c5a6768b64", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3112" + } + ] + }, + { + "@id": "_:N3c4aad183b464fe2b1d94ec89a4016c0", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "In very unusual cases." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#isCyclic" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0754", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Signaling pathways." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0602" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Signaling pathways" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3007", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format2" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format2" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PSL format of alignments, typically generated by BLAT or psLayout. Can be displayed in a genome browser like a sequence annotation track." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PSL" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2920" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2919" + } + ] + }, + { + "@id": "http://edamontology.org/data_2855", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A matrix of distances between molecular entities, where a value (distance) is (typically) derived from comparison of two entities and reflects their similarity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Distance matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasSubset", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/operation_3648", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2428" + }, + { + "@id": "http://edamontology.org/operation_3646" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3649" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Validation of peptide-spectrum matches" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3159", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.phyloxml.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.phyloxml.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "phyloXML is a standardised XML format for phylogenetic trees, networks, and associated data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "phyloXML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2557" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0292", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align (identify equivalent sites within) molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence alignment construction" + }, + { + "@value": "Sequence alignment generation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Constrained sequence alignment" + }, + { + "@value": "Multiple sequence alignment (constrained)" + }, + { + "@value": "Consensus-based sequence alignment" + }, + { + "@value": "Sequence alignment (constrained)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "See also \"Read mapping\"" + }, + { + "@value": "Includes methods that align sequence profiles (representing sequence alignments): ethods might perform one-to-one, one-to-many or many-to-many comparisons. See also 'Sequence alignment comparison'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequence_alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2451" + }, + { + "@id": "http://edamontology.org/operation_2928" + }, + { + "@id": "_:N902f75b7e8334a6c9a864fa00b05810b" + }, + { + "@id": "http://edamontology.org/operation_2403" + } + ] + }, + { + "@id": "_:N902f75b7e8334a6c9a864fa00b05810b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0863" + } + ] + }, + { + "@id": "http://edamontology.org/data_2915", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a Gramene database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gramene identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1096" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2821", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/topic_2818" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unicellular eukaryotes, e.g. information on a unicellular eukaryote genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The resource may be specific to a unicellular eukaryote, a group of unicellular eukaryotes or all unicellular eukaryotes." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Unicellular eukaryotes" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0986", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1086" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2605", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "C[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a chemical compound from the KEGG database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "KEGG compound identifier" + }, + { + "@value": "KEGG compound ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Compound ID (KEGG)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2894" + }, + { + "@id": "http://edamontology.org/data_1154" + } + ] + }, + { + "@id": "http://edamontology.org/data_1203", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A QSAR geometrical descriptor." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "QSAR geometrical descriptor" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "QSAR descriptor (geometrical)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0847" + } + ] + }, + { + "@id": "http://edamontology.org/data_1122", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A label (text token) describing the type of a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example 'nj', 'upgmp' etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0617", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_2229" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Ribosomes, typically of ribosome-related genes and proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ribosomes" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/refactor_comment", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A comment explaining the proposed refactoring, including name of person commenting (jison, mkalas etc.)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "refactor_comment" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0449", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse correlations between sites in a molecular sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is typically done to identify possible covarying positions and predict contacts or structural constraints in protein structures." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment analysis (site correlation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0258" + }, + { + "@id": "http://edamontology.org/operation_3465" + } + ] + }, + { + "@id": "http://edamontology.org/data_2326", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "DB[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a drug from the DrugBank database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DrugBank ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2895" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3189", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Trim sequences (typically from an automated DNA sequencer) to remove misleading ends." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3192" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example trim polyA tails, introns and primer sequence flanking the sequence of amplified exons, or other unwanted sequence." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Trim ends" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1804", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: SGN" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene identifier from Sol Genomics Network." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (SGN)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_3728", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.bioinf.uni-freiburg.de/Software/LocARNA/PP/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The LocARNA PP format combines sequence or alignment information and (respectively, single or consensus) ensemble probabilities into an PP 2.0 record." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Format for multiple aligned or single sequences together with the probabilistic description of the (consensus) RNA secondary structure ensemble by probabilities of base pairs, base pair stackings, and base pairs and unpaired bases in the loop of base pairs." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "LocARNA PP" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1264", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1261" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A table of character or word composition / frequency of a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence composition table" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1103", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a (nucleic acid) entry from the EMBL/GenBank/DDBJ databases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBL/GenBank/DDBJ ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1097" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_0994", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an amino acid." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Residue identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nfe15a9f2ffa646c999c43889e319de3e" + }, + { + "@id": "http://edamontology.org/data_1086" + } + ] + }, + { + "@id": "_:Nfe15a9f2ffa646c999c43889e319de3e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2016" + } + ] + }, + { + "@id": "http://edamontology.org/data_0854", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1249" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A specification of sequence length(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence length specification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0496", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Globally align two or more molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Global sequence alignment" + }, + { + "@value": "Sequence alignment (global)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Global alignment methods identify similarity across the entire length of the sequences." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Global alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequence_alignment#Global_and_local_alignments" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0292" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2453", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2403" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a sequence feature table." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Feature table processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0123", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of the physical and biochemical properties of peptides and proteins, for example the hydrophobic, hydrophilic and charge properties of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein physicochemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein hydropathy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0078" + } + ] + }, + { + "@id": "http://edamontology.org/data_3355", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A HMM emission matrix holds the probabilities of choosing the four nucleotides (A, C, G and T) in each of the states of a HMM." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "HMM emission matrix" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Consider for example an HMM with two states (AT-rich and GC-rich). The emission matrix holds the probabilities of choosing each of the four nucleotides (A, C, G and T) in the AT-rich state and in the GC-rich state." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Emission matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + } + ] + }, + { + "@id": "http://edamontology.org/format_3822", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://gephi.org/users/supported-graph-formats/gml-format/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GML (Graph Modeling Language) is a text file format supporting network data with a very easy syntax. It is used by Graphlet, Pajek, yEd, LEDA and NetworkX." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GML format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2013" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1104", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of an entry (gene cluster) from the NCBI UniGene database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "UniGene ID" + }, + { + "@value": "UniGene cluster ID" + }, + { + "@value": "UniGene identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster ID (UniGene)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1112" + } + ] + }, + { + "@id": "http://edamontology.org/data_2893", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of a type or group of cells (catalogued in a database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Cell type ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell type accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2655" + } + ] + }, + { + "@id": "http://edamontology.org/data_1878", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0968" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A common misspelling of a word." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Misspelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0220", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The management and manipulation of digital documents, including database records, files and reports." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3489" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Document, record and content management" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3812", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.stats.ox.ac.uk/~marchini/software/gwas/file_format.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The GEN file format contains genetic data and describes SNPs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Genotype file format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GEN" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2919" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0595", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0623" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2914", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Metadata on sequence features." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence features metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3408", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.11 Hematology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with the blood, blood-forming organs and blood diseases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Haematology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Haematological disorders" + }, + { + "@value": "Blood disorders" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Haematology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Hematology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0134", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3520" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mass spectrometry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1011", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+\\.-\\.-\\.-|[0-9]+\\.[0-9]+\\.-\\.-|[0-9]+\\.[0-9]+\\.[0-9]+\\.-|[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:Annotated_EC_Number" + }, + { + "@value": "Moby:EC_Number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An Enzyme Commission (EC) number of an enzyme." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "EC" + }, + { + "@value": "Enzyme Commission number" + }, + { + "@value": "EC code" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EC number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2321" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1709", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image of protein secondary structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3153" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0570", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise or render molecular 3D structure, for example a high-quality static picture or animation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "RNA secondary structure visualisation" + }, + { + "@value": "Protein secondary structure visualisation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes visualisation of protein secondary structure such as knots, pseudoknots etc. as well as tertiary and quaternary structure." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2480" + }, + { + "@id": "http://edamontology.org/operation_0337" + }, + { + "@id": "_:N4dad24a2c2714b62ba1b2109345c54a3" + }, + { + "@id": "_:N11f11ce6658a421d9f430f1504ab360d" + } + ] + }, + { + "@id": "_:N4dad24a2c2714b62ba1b2109345c54a3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0883" + } + ] + }, + { + "@id": "_:N11f11ce6658a421d9f430f1504ab360d", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1710" + } + ] + }, + { + "@id": "http://edamontology.org/data_1672", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2337" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a version of the CATH database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH version information" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2075", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for the emission and transition counts of a hidden Markov model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HMM emission and transition counts format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:N1290d0bc24ce432cba204532693b3089" + }, + { + "@id": "_:N87b05dbdc0854b208b28c46a727235a7" + } + ] + }, + { + "@id": "_:N1290d0bc24ce432cba204532693b3089", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3354" + } + ] + }, + { + "@id": "_:N87b05dbdc0854b208b28c46a727235a7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3355" + } + ] + }, + { + "@id": "http://edamontology.org/data_2774", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of gene assigned by the J. Craig Venter Institute (JCVI)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (JCVI)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2839", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_3047" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Specific molecules, including large molecules built from repeating subunits (macromolecules) and small molecules of biological significance." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "CHEBI:23367" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecules" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasDefinition", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/data_2970", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on protein properties concerning hydropathy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein hydropathy report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein hydropathy data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/data_1559", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a protein 'homologous superfamily' node from the CATH database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH homologous superfamily" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0300", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align molecular sequence(s) to sequence profile(s), or profiles to other profiles. A profile typically represents a sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Profile-to-profile alignment" + }, + { + "@value": "Profile-profile alignment" + }, + { + "@value": "Sequence-profile alignment" + }, + { + "@value": "Sequence-to-profile alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A sequence profile typically represents a sequence alignment. Methods might perform one-to-one, one-to-many or many-to-many comparisons." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence profile alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N2f536eb1740946b0ab70ded887f4d9ea" + }, + { + "@id": "_:N2d609dd01be04856a9c0d82202de8f98" + }, + { + "@id": "http://edamontology.org/operation_0292" + } + ] + }, + { + "@id": "_:N2f536eb1740946b0ab70ded887f4d9ea", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "_:N2d609dd01be04856a9c0d82202de8f98", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1354" + } + ] + }, + { + "@id": "http://edamontology.org/data_3546", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Any data concerning a specific biological or biomedical image." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Image-associated data" + }, + { + "@value": "Image-related data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This can include basic provenance and technical information about the image, scientific annotation and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Image metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/format_3247", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://psidev.info/mzidentml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://psidev.info/mzidentml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "mzIdentML is the exchange format for peptides and proteins identified from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of proteomics search engines." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mzIdentML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_1097", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of a nucleotide sequence database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleotide sequence accession number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence accession (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1093" + }, + { + "@id": "_:Nfe57900a321c45298673a55d271eef3b" + } + ] + }, + { + "@id": "_:Nfe57900a321c45298673a55d271eef3b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2977" + } + ] + }, + { + "@id": "http://edamontology.org/data_1328", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "RNA and DNA-binding proteins and binding sites in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features report (nucleic acid binding sites)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2536", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning a mass spectrometry measurement." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mass spectrometry data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3108" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2413", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0296" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) some type of sequence profile." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence profile processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2271", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search for and retrieve molecular structures that are similar to a structure-based query (typically another structure or part of a structure)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The query is a structure-based entity such as another structure, a 3D (structural) motif, 3D profile or template." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure database search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0574", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0564" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Render a sequence with motifs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif rendering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3963", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify duplication events causing the number of repeats in the genome to vary between individuals." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Duplication detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3961" + } + ] + }, + { + "@id": "http://edamontology.org/data_2959", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_1583" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1583" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid probability profile" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3227", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect, identify and map mutations, such as single nucleotide polymorphisms, short indels and structural variants, in multiple DNA sequences. Typically the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware, to study genomic alterations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Variant mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Allele calling" + }, + { + "@value": "Germ line variant calling" + }, + { + "@value": "Somatic variant calling" + }, + { + "@value": "de novo mutation detection" + }, + { + "@value": "Genome variant detection" + }, + { + "@value": "Mutation detection" + }, + { + "@value": "Exome variant detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods often utilise a database of aligned reads." + }, + { + "@value": "Somatic variant calling is the detection of variations established in somatic cells and hence not inherited as a germ line variant." + }, + { + "@value": "Variant detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Variant calling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + }, + { + "@id": "http://edamontology.org/operation_3197" + } + ] + }, + { + "@id": "http://edamontology.org/data_1413", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence similarity is the similarity (expressed as a percentage) of two molecular sequences calculated from their alignment, a scoring matrix for scoring characters substitutions and penalties for gap insertion and extension." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Data Type is float probably." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence similarity" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0865" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3678", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://en.wikipedia.org/wiki/Design_of_experiments" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The design of an experiment intended to test a hypothesis, and describe or explain empirical data obtained under various experimental conditions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Design of experiments" + }, + { + "@value": "Experimental design" + }, + { + "@value": "Studies" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Experimental_design_and_studies" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Experimental design and studies" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Design_of_experiments" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0128", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein-protein, protein-DNA/RNA and protein-ligand interactions, including analysis of known interactions and prediction of putative interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_interactions" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein-ligand interactions" + }, + { + "@value": "Protein interactome" + }, + { + "@value": "Protein-DNA interactions" + }, + { + "@value": "Protein-DNA interaction" + }, + { + "@value": "Protein interaction map" + }, + { + "@value": "Protein-protein interactions" + }, + { + "@value": "Protein-RNA interactions" + }, + { + "@value": "Protein interaction networks" + }, + { + "@value": "Protein-RNA interaction" + }, + { + "@value": "Protein-nucleic acid interactions" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes experimental (e.g. yeast two-hybrid) and computational analysis techniques." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interactions" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein%E2%80%93protein_interaction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0078" + }, + { + "@id": "http://edamontology.org/topic_0602" + } + ] + }, + { + "@id": "http://edamontology.org/data_3028", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning the classification, identification and naming of organisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Taxonomic data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Taxonomy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N22f7cd0cbda64066bd4c1a2680e0e3a4" + }, + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "_:N22f7cd0cbda64066bd4c1a2680e0e3a4", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0084" + } + ] + }, + { + "@id": "http://edamontology.org/data_2173", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0850" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A collection of multiple molecular sequences and (typically) associated metadata that is intended for sequential processing." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept may be used for sequence sets that are expected to be read and processed a single sequence at a time." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence set (stream)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3652", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Spectral data format file where each spectrum is written to a separate file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Each file contains one header line for the known or assumed charge and the mass of the precursor peptide ion, calculated from the measured *m*/*z* and the charge. This one line was then followed by all the *m*/*z*, intensity pairs that represent the spectrum." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "dta" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/data_2832", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A web site providing data (web pages) on a common theme to a HTTP client." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0958" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Web portal" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2773", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a human major histocompatibility complex (HLA) or other protein from the IMGT/HLA database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "IMGT/HLA ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + } + ] + }, + { + "@id": "http://edamontology.org/data_2785", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An accession of annotation on a (group of) viruses (catalogued in a database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Virus ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Virus identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2239", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate a 3D-1D scoring matrix from analysis of protein sequence and structural data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "3D-1D scoring matrix construction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A 3D-1D scoring matrix scores the probability of amino acids occurring in different structural environments." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "3D-1D scoring matrix generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0250" + }, + { + "@id": "_:N8edd89ca02fc4770a37439f53aaad1c3" + }, + { + "@id": "_:Nc76a5128c4df407a8a8ba34435284794" + }, + { + "@id": "http://edamontology.org/operation_3429" + } + ] + }, + { + "@id": "_:N8edd89ca02fc4770a37439f53aaad1c3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ] + }, + { + "@id": "_:Nc76a5128c4df407a8a8ba34435284794", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1499" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3044", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein interaction networks." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction networks" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2537", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Raw data from experimental methods for determining protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure raw data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3108" + } + ] + }, + { + "@id": "http://edamontology.org/format_3692", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.sbgn.org/LibSBGN#The_SBGN-ML_format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.sbgn.org/LibSBGN#The_SBGN-ML_format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "SBGN-ML is an XML format for Systems Biology Graphical Notation (SBGN) diagrams of biological pathways or networks." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SBGN-ML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2013" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3400", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.1 Allergy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Health issues related to the immune system and their prevention, diagnosis and management." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Allergy_clinical_immunology_and_immunotherapeutics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Immune disorders" + }, + { + "@value": "Clinical immunology" + }, + { + "@value": "Immunomodulators" + }, + { + "@value": "Immunotherapeutics" + }, + { + "@value": "Allergy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Allergy, clinical immunology and immunotherapeutics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Immunology#Clinical_immunology" + }, + { + "@id": "https://en.wikipedia.org/wiki/Immunotherapy" + }, + { + "@id": "https://en.wikipedia.org/wiki/Allergy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3901", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict RNA-binding proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein-RNA interaction prediction" + }, + { + "@value": "RNA-binding protein detection" + }, + { + "@value": "RNA-protein interaction prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA-binding protein prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0389" + }, + { + "@id": "_:Nef8be90e4381440393057e5f423b23fe" + }, + { + "@id": "_:Nbd203967849049569472acf6ba56a00a" + } + ] + }, + { + "@id": "_:Nef8be90e4381440393057e5f423b23fe", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0906" + } + ] + }, + { + "@id": "_:Nbd203967849049569472acf6ba56a00a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2406", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse protein structural data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure analysis (protein)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2480" + }, + { + "@id": "_:N9eeacab2ab3f4b7891fa3e45add66f7f" + }, + { + "@id": "_:N94653c9a0b3a40738a6df9856dcaf46b" + } + ] + }, + { + "@id": "_:N9eeacab2ab3f4b7891fa3e45add66f7f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1460" + } + ] + }, + { + "@id": "_:N94653c9a0b3a40738a6df9856dcaf46b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2814" + } + ] + }, + { + "@id": "http://edamontology.org/data_1310", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on microRNA sequence (miRNA) or precursor, microRNA targets, miRNA binding sites in an RNA sequence etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid features (microRNA)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3262", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "OWL ontology XML serialisation format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "OWL" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "OWL/XML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2197" + } + ] + }, + { + "@id": "http://edamontology.org/data_2898", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of a monosaccharide (catalogued in a database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Monosaccharide accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0996" + } + ] + }, + { + "@id": "http://edamontology.org/format_1962", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DNA strider output sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "strider format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_1423", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of PHYLIP phylogenetic distance matrix data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Data Type must include the distance matrix, probably as pairs of sequence identifiers with a distance (integer or float)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylip distance matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2067" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_0860", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning concerning specific or conserved pattern in molecular sequences and the classifiers used for their identification, including sequence motifs, profiles or other diagnostic element." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This can include metadata about a motif or sequence profile such as its name, length, technical details about the profile construction, and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence signature data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nf303ddd7b16f4aedacc19c6343ba424f" + }, + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "_:Nf303ddd7b16f4aedacc19c6343ba424f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3560", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A method for making numerical assessments about the maximum percent of time that a conformer of a flexible macromolecule can exist and still be compatible with the experimental data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Maximum occurrence analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0321" + } + ] + }, + { + "@id": "http://edamontology.org/format_1210", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a nucleotide sequence with possible ambiguity and unknown positions but without non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pure nucleotide" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2094" + }, + { + "@id": "http://edamontology.org/format_1207" + } + ] + }, + { + "@id": "http://edamontology.org/data_3786", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A structured query, in form of a script, that defines a database search task." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Query script" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/data_2658", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a chemical from the ChemIDplus database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ChemIDplus ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Compound ID (ChemIDplus)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2894" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1845", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF: PDB_sequence" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Extract a molecular sequence from a PDB file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PDB file sequence retrieval" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3339", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Collections of microbial cells including bacteria, yeasts and moulds." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Microbial_collection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microbial collection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Microbiological_culture#Culture_collections" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3277" + } + ] + }, + { + "@id": "http://edamontology.org/data_3133", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3128" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on stem loops in a DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A stem loop is a hairpin structure; a double-helical structure formed when two complementary regions of a single strand of RNA or DNA molecule form base-pairs." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid features (stem loop)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1528", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The isoelectric point of one proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein isoelectric point" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0004", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Function" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A function that processes a set of inputs and results in a set of outputs, or associates arguments (inputs) with values (outputs)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Lambda abstraction" + }, + { + "@value": "Computational operation" + }, + { + "@value": "Function (programming)" + }, + { + "@value": "Mathematical function" + }, + { + "@value": "Computational subroutine" + }, + { + "@value": "Mathematical operation" + }, + { + "@value": "Computational method" + }, + { + "@value": "Computational procedure" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "sumo:Function" + }, + { + "@value": "Process" + }, + { + "@value": "Computational tool" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Special cases are: a) An operation that consumes no input (has no input arguments). Such operation is either a constant function, or an operation depending only on the underlying state. b) An operation that may modify the underlying state but has no output. c) The singular-case operation with no input or output, that still may modify the underlying state." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Operation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "http://en.wikipedia.org/wiki/Subroutine" + }, + { + "@id": "http://en.wikipedia.org/wiki/Function_(computer_science)" + }, + { + "@id": "http://en.wikipedia.org/wiki/Function_(mathematics)" + } + ], + "http://www.w3.org/2002/07/owl#disjointWith": [ + { + "@id": "http://edamontology.org/topic_0003" + }, + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2004/02/skos/core#broadMatch": [ + { + "@id": "http://www.onto-med.de/ontologies/gfo.owl#Function" + }, + { + "@id": "http://semanticscience.org/resource/SIO_000017" + }, + { + "@id": "http://purl.org/biotop/biotop.owl#Function" + }, + { + "@id": "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Method" + }, + { + "@id": "http://purl.obolibrary.org/obo/BFO_0000002" + }, + { + "@id": "http://www.onto-med.de/ontologies/gfo.owl#Perpetuant" + } + ], + "http://www.w3.org/2004/02/skos/core#closeMatch": [ + { + "@id": "http://www.ebi.ac.uk/swo/SWO_0000003" + }, + { + "@id": "http://semanticscience.org/resource/SIO_000649" + } + ], + "http://www.w3.org/2004/02/skos/core#exactMatch": [ + { + "@id": "http://wsio.org/operation_001" + } + ], + "http://www.w3.org/2004/02/skos/core#relatedMatch": [ + { + "@id": "http://www.loa.istc.cnr.it/ontologies/DOLCE-Lite.owl#quality" + }, + { + "@id": "http://purl.obolibrary.org/obo/BFO_0000015" + }, + { + "@id": "http://purl.obolibrary.org/obo/BFO_0000034" + }, + { + "@id": "http://www.loa.istc.cnr.it/ontologies/DOLCE-Lite.owl#process" + }, + { + "@id": "http://purl.obolibrary.org/obo/BFO_0000019" + }, + { + "@id": "http://www.onto-med.de/ontologies/gfo.owl#Process" + } + ] + }, + { + "@id": "http://edamontology.org/data_0871", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Basic character data from which a phylogenetic tree may be generated." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "As defined, this concept would also include molecular sequences, microsatellites, polymorphisms (RAPDs, RFLPs, or AFLPs), restriction sites and fragments" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic character data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://www.evolutionaryontology.org/cdao.owl#Character" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2523" + } + ] + }, + { + "@id": "http://edamontology.org/data_2715", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier for a protein from the CuticleDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CuticleDB ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein ID (CuticleDB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + } + ] + }, + { + "@id": "http://edamontology.org/data_1249", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The size (length) of a sequence, subsequence or region in a sequence, or range(s) of lengths." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence length" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2534" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2947", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0306" + }, + { + "@id": "http://edamontology.org/operation_3778" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse a body of scientific text (typically a full text article from a scientific journal)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Article analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/is_topic_of", + "@type": [ + "http://www.w3.org/2002/07/owl#ObjectProperty" + ], + "http://purl.obolibrary.org/obo/is_anti_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_reflexive": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/transitive_over": [ + { + "@value": "OBO_REL:is_a" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'A is_topic_of B' defines for the subject A, that it is a topic of the object B (a topic A is the scope of B)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "OBO_REL:quality_of" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#isCyclic": [ + { + "@value": true + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subject A can either be a concept that is a 'Topic', or in unexpected cases an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is a 'Topic' or is in the role of a 'Topic'. Object B can be any concept or entity outside of an ontology. In EDAM, 'is_topic_of' is not explicitly defined between EDAM concepts, only the inverse 'has_topic'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#domain": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "is topic of" + } + ], + "http://www.w3.org/2000/01/rdf-schema#range": [ + { + "@id": "_:N4863b0a9e5d8498da5ae1b7913362f43" + } + ], + "http://www.w3.org/2004/02/skos/core#broadMatch": [ + { + "@id": "http://www.loa.istc.cnr.it/ontologies/DOLCE-Lite.owl#inherent-in" + } + ] + }, + { + "@id": "_:N4863b0a9e5d8498da5ae1b7913362f43", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://www.w3.org/2002/07/owl#unionOf": [ + { + "@list": [ + { + "@id": "http://edamontology.org/data_0006" + }, + { + "@id": "http://edamontology.org/operation_0004" + } + ] + } + ] + }, + { + "@id": "http://edamontology.org/format_1973", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Nexus/paup non-interleaved sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "nexusnon" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2700", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a protein domain (or other node) from the CATH database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1038" + } + ] + }, + { + "@id": "http://edamontology.org/data_0924", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Fluorescence trace data generated by an automated DNA sequencer, which can be interpreted as a molecular sequence (reads), given associated sequencing metadata such as base-call quality scores." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is the raw data produced by a DNA sequencing machine." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence trace" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3108" + }, + { + "@id": "http://edamontology.org/data_1234" + } + ] + }, + { + "@id": "http://edamontology.org/format_2310", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTA format wrapped in HTML elements." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FASTA-HTML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2546" + }, + { + "@id": "http://edamontology.org/format_2331" + } + ] + }, + { + "@id": "http://edamontology.org/data_0981", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name or other identifier of a physical, observable biological occurrence or event." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phenomenon identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0258", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse a molecular sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ne8f9103bd9834a028d2d85aa3f93d54b" + }, + { + "@id": "http://edamontology.org/operation_2403" + } + ] + }, + { + "@id": "_:Ne8f9103bd9834a028d2d85aa3f93d54b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0863" + } + ] + }, + { + "@id": "http://edamontology.org/data_1794", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: ApiDB_PlasmoDB" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a gene from PlasmoDB Plasmodium Genome Resource." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (PlasmoDB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_0869", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "\"Sequence-profile alignment\" and \"Profile-profile alignment\" are synonymous with \"Sequence signature matches\" which was already stated as including matches (alignment) and other data." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.24" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_1916" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0858" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence-profile alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2191", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "chemical modification of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features report (chemical modifications)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0572", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_3083" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify and analyse networks of protein interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3925" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction network visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0339", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a tertiary structure database, typically by sequence and/or structure comparison, or some other means, and retrieve structures and associated data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure database search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2421" + }, + { + "@id": "_:N48ac97742e2348448d8921195358432e" + } + ] + }, + { + "@id": "_:N48ac97742e2348448d8921195358432e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ] + }, + { + "@id": "http://edamontology.org/data_2955", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report of information about molecular sequence(s), including basic information (metadata), and reports generated from molecular sequence analysis, including positional features and non-positional properties." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence-derived report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/data_2022", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1465" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data used by the Vienna RNA analysis package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Vienna RNA structural data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1641", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Affymetrix data file format for information about experimental conditions and protocols." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Affymetrix experimental conditions data file format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "affymetrix-exp" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2056" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0227", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate an index of (typically a file of) biological data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Database indexing" + }, + { + "@value": "Data indexing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Indexing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + }, + { + "@id": "_:Nd08784e643c445379f29647b1037826a" + } + ] + }, + { + "@id": "_:Nd08784e643c445379f29647b1037826a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0955" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2469", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Retrieve information on a protein interaction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (protein interaction annotation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3573", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Freshwater science" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.18 Marine and Freshwater biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of organisms in freshwater ecosystems." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Freshwater_biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Freshwater biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Freshwater_biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/format_1511", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from IntEnz (The Integrated Relational Enzyme Database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "IntEnz is the master copy of the Enzyme Nomenclature, the recommendations of the NC-IUBMB on the Nomenclature and Classification of Enzyme-Catalysed Reactions." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "IntEnz enzyme report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3200", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse DNA sequences in order to identify a DNA 'barcode'; marker genes or any short fragment(s) of DNA that are useful to diagnose the taxa of biological organisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sample barcoding" + }, + { + "@value": "Community profiling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA barcoding" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/DNA_barcoding" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + } + ] + }, + { + "@id": "http://edamontology.org/data_1353", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Any specific or conserved pattern (typically expressed as a regular expression) in a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nc09aa37353e44020ae066fb971e1b2e5" + }, + { + "@id": "http://edamontology.org/data_0860" + } + ] + }, + { + "@id": "_:Nc09aa37353e44020ae066fb971e1b2e5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0407", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the hydrophobic moment of a peptide sequence and recognize amphiphilicity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein hydrophobic moment plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N40afac9bb68d45f6ae803538fd60855c" + }, + { + "@id": "http://edamontology.org/operation_0564" + }, + { + "@id": "http://edamontology.org/operation_2574" + } + ] + }, + { + "@id": "_:N40afac9bb68d45f6ae803538fd60855c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1520" + } + ] + }, + { + "@id": "http://edamontology.org/format_3973", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://github.com/moby/moby/blob/master/image/spec/v1.2.md" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://dockerhub.com" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "https://www.docker.com/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A Docker image is a file, comprised of multiple layers, that is used to execute code in a Docker container. An image is essentially built from the instructions for a complete and executable version of an application, which relies on the host OS kernel." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Docker image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Docker_(software)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_0960", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Textual metadata on a software author or end-user, for example a person or other software." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "User metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2337" + } + ] + }, + { + "@id": "http://edamontology.org/data_3716", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information concerning biosafety data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biosafety information" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biosafety report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/format_3865", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A \"placeholder\" concept for formats of annotated RNA data, including e.g. microRNA and RNA-Seq data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "microRNA data format" + }, + { + "@value": "miRNA data format" + }, + { + "@value": "RNA data format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA annotation format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "http://edamontology.org/format_1514", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from the KEGG ENZYME database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KEGG ENZYME enzyme report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0868", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "\"Sequence-profile alignment\" and \"Profile-profile alignment\" are synonymous with \"Sequence signature matches\" which was already stated as including matches (alignment) and other data." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.25 or earlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_1916" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A profile-profile alignment (each profile typically representing a sequence alignment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0858" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Profile-profile alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1939", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GFF3 feature file format with sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GFF3-seq" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1975" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/data_1767", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0850" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTA sequence database for all CATH domains (based on COMBS sequence data)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH domain sequences (COMBS)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3699", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.ncbi.nlm.nih.gov/books/NBK242622/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "VDB ('vertical database') is the native format used for export from the NCBI Sequence Read Archive." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "SRA native format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "VDB" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2424", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more things to identify similarities." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/data_2642", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "MI[0-9]{7}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for a gene from the miRBase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "miRNA ID" + }, + { + "@value": "miRNA identifier" + }, + { + "@value": "miRNA name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (miRBase)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_0984", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a specific molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecule name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + }, + { + "@id": "http://edamontology.org/data_0982" + } + ] + }, + { + "@id": "http://edamontology.org/format_1924", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1982" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Clustalw output format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "clustal sequence format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1504", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Amino acid index format used by the AAindex database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "aaindex" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2017" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3126", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Repetitive elements within a nucleic acid sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0157" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes long terminal repeats (LTRs); sequences (typically retroviral) directly repeated at both ends of a defined sequence and other types of repeating unit." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid repeats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0249", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:ShowTauAngle" + }, + { + "@value": "WHATIF:ResidueTorsions" + }, + { + "@value": "WHATIF:ResidueTorsionsBB" + }, + { + "@value": "WHATIF:CysteineTorsions" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate, visualise or analyse phi/psi angles of a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Tau angle calculation" + }, + { + "@value": "Torsion angle calculation" + }, + { + "@value": "Cysteine torsion angle calculation" + }, + { + "@value": "Backbone torsion angle calculation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein geometry calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0250" + }, + { + "@id": "_:N9cef9a4cb2884ea484bc75c731c0fbb0" + } + ] + }, + { + "@id": "_:N9cef9a4cb2884ea484bc75c731c0fbb0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2991" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0506", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0295" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align RNA tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment (RNA)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1895", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "AT[1-5]G[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs:AGI_LocusCode" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Locus identifier for Arabidopsis Genome Initiative (TAIR, TIGR and MIPS databases)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "AGI ID" + }, + { + "@value": "AGI locus code" + }, + { + "@value": "AGI identifier" + }, + { + "@value": "Arabidopsis gene loci number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID (AGI)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1893" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2948", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2949" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse the interactions of two or more molecules (or parts of molecules) that are known to interact." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular interaction analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3248", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://psidev.info/mzquantml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://psidev.info/mzquantml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "mzQuantML is the format for quantitation values associated with peptides, proteins and small molecules from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of quantitation software for proteomics." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mzQuantML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3071", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://edamontology.org/related_term": [ + { + "@value": "Data stewardship" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.3.1 Data management" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data management comprises the practices and principles of taking care of data, other than analysing them. This includes for example taking care of the associated metadata, formatting, storage, archiving, or access." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Metadata management" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data management" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Data_management" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D000079803" + }, + { + "@id": "https://en.wikipedia.org/wiki/Metadata_management" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ] + }, + { + "@id": "http://edamontology.org/data_3806", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.19" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation on a structural 3D EM Map from electron microscopy. This might include one or several locations in the map of the known features of a particular macromolecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "3D EM Mask" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0883" + }, + { + "@id": "_:N08053ed5c04b4b7381c5b472084dcaec" + } + ] + }, + { + "@id": "_:N08053ed5c04b4b7381c5b472084dcaec", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1317" + } + ] + }, + { + "@id": "http://edamontology.org/data_1484", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1481" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of more than two protein tertiary (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Multiple protein tertiary structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3676", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Laboratory technique to sequence all the protein-coding regions in a genome, i.e., the exome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Exome capture" + }, + { + "@value": "Targeted exome capture" + }, + { + "@value": "Exome" + }, + { + "@value": "Whole exome sequencing" + }, + { + "@value": "WES" + }, + { + "@value": "Exome analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Exome_sequencing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Exome sequencing is considered a cheap alternative to whole genome sequencing." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Exome sequencing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Exome_sequencing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3168" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3368", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Any matter, surface or construct that interacts with a biological system." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Biomaterials" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biomaterials" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Biomaterial" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3297" + } + ] + }, + { + "@id": "http://edamontology.org/data_1530", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The hydrogen exchange rate of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein hydrogen exchange rate" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/data_2655", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of a type or group of cells." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell type identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/data_2781", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the RNA editing database (REDIdb)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "REDIdb ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1097" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3386", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The use of animals and alternatives in experimental research." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Animal research" + }, + { + "@value": "Animal testing" + }, + { + "@value": "Animal experimentation" + }, + { + "@value": "In vivo testing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Laboratory_animal_science" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Laboratory animal science" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Animal_testing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3344" + } + ] + }, + { + "@id": "http://edamontology.org/data_0006", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information, represented in an information artefact (data record) that is 'understandable' by dedicated computational tools that can use the data as input or produce it as output." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Data record" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Datum" + }, + { + "@value": "Data set" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data" + } + ], + "http://www.w3.org/2002/07/owl#disjointWith": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + }, + { + "@id": "http://edamontology.org/format_1915" + }, + { + "@id": "http://edamontology.org/operation_0004" + }, + { + "@id": "http://edamontology.org/topic_0003" + } + ], + "http://www.w3.org/2004/02/skos/core#broadMatch": [ + { + "@id": "http://purl.obolibrary.org/obo/IAO_0000030" + }, + { + "@id": "http://purl.obolibrary.org/obo/BFO_0000002" + }, + { + "@id": "http://www.onto-med.de/ontologies/gfo.owl#Perpetuant" + } + ], + "http://www.w3.org/2004/02/skos/core#closeMatch": [ + { + "@id": "http://semanticscience.org/resource/SIO_000069" + }, + { + "@id": "http://purl.org/biotop/biotop.owl#DigitalEntity" + } + ], + "http://www.w3.org/2004/02/skos/core#exactMatch": [ + { + "@id": "http://wsio.org/data_002" + } + ], + "http://www.w3.org/2004/02/skos/core#narrowMatch": [ + { + "@id": "http://purl.obolibrary.org/obo/IAO_0000027" + } + ], + "http://www.w3.org/2004/02/skos/core#relatedMatch": [ + { + "@id": "http://semanticscience.org/resource/SIO_000088" + } + ] + }, + { + "@id": "http://edamontology.org/format_1703", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from Chemical Entities of Biological Interest (ChEBI)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "ChEBI includes an ontological classification defining relations between entities or classes of entities." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ChEBI entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2490", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate contacts between residues in a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2950" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Residue contact calculation (residue-residue)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2097", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a molecular sequence with possible unknown positions and possible ambiguity characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ambiguous" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2571" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3500", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.29 Zoology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Animals, e.g. information on a specific animal genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Animal biology" + }, + { + "@value": "Animal" + }, + { + "@value": "Metazoa" + }, + { + "@value": "Animals" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Zoology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Entomology" + }, + { + "@value": "Animal physiology" + }, + { + "@value": "Animal genetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The study of the animal kingdom." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Zoology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Zoology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/data_1036", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the TIGR database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TIGR identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1660", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Topic concernning cellular process pathways." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2984" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cellular process pathways report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1086", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from a database of chemicals." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Compound ID" + }, + { + "@value": "Chemical compound identifier" + }, + { + "@value": "Small molecule identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Compound identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0982" + }, + { + "@id": "_:Na5fe4b2f57cc48ca9f88f2a66e792aba" + } + ] + }, + { + "@id": "_:Na5fe4b2f57cc48ca9f88f2a66e792aba", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0962" + } + ] + }, + { + "@id": "http://edamontology.org/data_2766", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a protein family from the HAMAP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HAMAP ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2910" + } + ] + }, + { + "@id": "http://edamontology.org/data_2318", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The truncated name of a cell line." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell line name (truncated)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2316" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0455", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate a thermodynamic property of DNA or DNA/RNA, such as melting temperature, enthalpy and entropy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid thermodynamic property calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ne9b692f111324d0fbbe5957d90e6c7eb" + }, + { + "@id": "http://edamontology.org/operation_0262" + } + ] + }, + { + "@id": "_:Ne9b692f111324d0fbbe5957d90e6c7eb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2985" + } + ] + }, + { + "@id": "http://edamontology.org/data_2673", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Canis familiaris' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Canis familiaris')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0354", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0346" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a DNA database (for example a database of conserved sequence tags) for matches to Sequence-Tagged Site (STS) primer sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "STSs are genetic markers that are easily detected by the polymerase chain reaction (PCR) using specific primers." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database search (by sequence for primer sequences)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3235", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.broadinstitute.org/software/igv/Cytoband" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.broadinstitute.org/software/igv/Cytoband" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cytoband format for chromosome cytobands." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Reflects a UCSC Browser DB table." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cytoband format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "_:N6bb1e937a8374dad9eb2c7c4c93e6c81" + }, + { + "@id": "http://edamontology.org/format_2078" + } + ] + }, + { + "@id": "_:N6bb1e937a8374dad9eb2c7c4c93e6c81", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3236" + } + ] + }, + { + "@id": "_:Nc8728b75ad4a4e6aa276ababb62930b8", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Almost exact but limited to identifying resources, and being unambiguous." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.w3.org/2004/02/skos/core#narrowMatch" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@id": "http://purl.org/dc/elements/1.1/identifier" + } + ] + }, + { + "@id": "http://edamontology.org/data_2135", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A simple parameter that is a toggle (boolean value), typically a control for a modal tool." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Toggle" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2897", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of a toxin (catalogued in a database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Toxin accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2576" + } + ] + }, + { + "@id": "http://edamontology.org/data_1048", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a biological or bioinformatics database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Database identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:N377d85cccf124a42a65f1b3ff8f17a9f" + } + ] + }, + { + "@id": "_:N377d85cccf124a42a65f1b3ff8f17a9f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0957" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0467", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0267" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict secondary structure of protein sequence(s) using multiple methods to achieve better predictions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0267" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure prediction (integrated)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2720", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Physicochemical property data for one or more dinucleotides." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Dinucleotide property" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2088" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0568", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.15" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise RNA secondary structure, knots, pseudoknots etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0570" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA secondary structure visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2220", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a sequence cluster from the SYSTERS database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "SYSTERS cluster ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster ID (SYSTERS)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1112" + } + ] + }, + { + "@id": "http://edamontology.org/data_3428", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Simulation experiment report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0490", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Render a representation of a distribution that consists of group of data points plotted on a simple scale." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Categorical plot plotting" + }, + { + "@value": "Dotplot plotting" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Dot plots are useful when having not too many (e.g. 20) data points for each category. Example: draw a dotplot of sequence similarities identified from word-matching or character comparison." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Dot plot plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Dot_plot_(bioinformatics)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0288" + }, + { + "@id": "http://edamontology.org/operation_0564" + }, + { + "@id": "_:Ne6b13fd9171d4389839ca2b0859ede4b" + } + ] + }, + { + "@id": "_:Ne6b13fd9171d4389839ca2b0859ede4b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0862" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3855", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/related_term": [ + { + "@value": "Environment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Study of the environment, the interactions between its physical, chemical, and biological components and it's effect on life. Also how humans impact upon the environment, and how we can manage and utilise natural resources." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Environmental_science" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Environmental sciences" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Environmental_science" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ] + }, + { + "@id": "http://edamontology.org/data_2371", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a transcription start site from the ASTD database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ASTD ID (tss)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2367" + } + ] + }, + { + "@id": "http://edamontology.org/data_2969", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image of a molecular sequence, possibly with sequence features or properties shown." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2955" + }, + { + "@id": "http://edamontology.org/data_2968" + } + ] + }, + { + "@id": "http://edamontology.org/format_1334", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of results of a sequence database search using some variant of MSPCrunch." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mspcrunch" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2066" + } + ] + }, + { + "@id": "http://edamontology.org/data_1261", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report (typically a table) on character or word composition / frequency of a molecular sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence composition" + }, + { + "@value": "Sequence property (composition)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence composition report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1254" + } + ] + }, + { + "@id": "http://edamontology.org/data_2364", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "two-dimensional gel electrophoresis experiments, gels or spots in a gel." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "2D PAGE report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2087", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on the physical (e.g. structural) or chemical properties of molecules, or parts of a molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Physicochemical property" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "SO:0000400" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular property" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/format_3603", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.w3.org/TR/PNG/" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "png" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PNG is a file format for image compression." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "It iis expected to replace the Graphics Interchange Format (GIF)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PNG" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_3547" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0519", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict primers for gene transcription profiling." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0308" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PCR primer design (for gene transcription profiling)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_4001", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "This duplicates an existing concept (http://edamontology.org/format_3549)." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#decimal", + "@value": "1.26" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/format_3547" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An open file format from the Neuroimaging Informatics Technology Initiative (NIfTI) commonly used to store brain imaging data obtained using Magnetic Resonance Imaging (MRI) methods." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/format_3549" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NIFTI format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2049", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for phylogenetic tree distance data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree report (tree distances) format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N77050c3ac5ba48b3ae27b84c50b8923a" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N77050c3ac5ba48b3ae27b84c50b8923a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1442" + } + ] + }, + { + "@id": "http://edamontology.org/format_3549", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://nifti.nimh.nih.gov/nifti-1" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "nii" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An open file format from the Neuroimaging Informatics Technology Initiative (NIfTI) commonly used to store brain imaging data obtained using Magnetic Resonance Imaging (MRI) methods." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "NIFTI format" + }, + { + "@value": "NIfTI-1 format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "nii" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_1720", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0966" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term from the Plant Ontology (PO)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Plant ontology term" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2030", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report on a chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Small molecule structure format" + }, + { + "@value": "Chemical structure format" + }, + { + "@value": "Chemical compound annotation format" + }, + { + "@value": "Small molecule report format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical data format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:Nd93e72dfd2f84aff9e5696c1d290e395" + } + ] + }, + { + "@id": "_:Nd93e72dfd2f84aff9e5696c1d290e395", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0962" + } + ] + }, + { + "@id": "http://edamontology.org/format_3650", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.astm.org/Standards/E1947.htm" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used by netCDF software library for writing and reading chromatography-MS data files. Also used to store trajectory atom coordinates information, such as the ones obtained by Molecular Dynamics simulations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ANDI-MS" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Network Common Data Form (NetCDF) library is supported by AMBER MD package from version 9." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "netCDF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3867" + }, + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3127", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DNA replication or recombination." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "DNA_replication_and_recombination" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA replication and recombination" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/DNA_replication" + }, + { + "@id": "https://en.wikipedia.org/wiki/DNA_recombination" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0654" + } + ] + }, + { + "@id": "http://edamontology.org/format_1333", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of results of a sequence database search using some variant of BLAST." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes score data, alignment data and summary table." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BLAST results" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2066" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0639", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Archival, processing and analysis of protein sequences and sequence-based entities such as alignments, motifs and profiles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3105", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Basic information concerning geographical location or time." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Geotemporal metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1301", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "regions of a nucleic acid sequence containing mobile genetic elements." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mobile genetic elements" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0463", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict microRNA sequences (miRNA) and precursors or microRNA targets / binding sites in a DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "microRNA target detection" + }, + { + "@value": "microRNA detection" + }, + { + "@value": "miRNA prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "miRNA target prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0443" + } + ] + }, + { + "@id": "http://edamontology.org/data_2626", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "PAp[0-9]{8}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "PDBML:pdbx_PDB_strand_id" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a peptide from the PeptideAtlas peptide databases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PeptideAtlas ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2906" + } + ] + }, + { + "@id": "http://edamontology.org/data_0985", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A label (text token) describing the type a molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example, 'Protein', 'DNA', 'RNA' etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecule type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1788", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a gene from Saccharomyces Genome Database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (SGD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3978", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "contig" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The CONTIG format used for output of the SOAPdenovo alignment program. It contains contig sequences generated without using mate pair information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CONTIG" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/data_1001", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Synonymous name of a chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Synonymous chemical name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical name (synonymous)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0990" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0399", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict extinction coefficients or optical density of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein extinction coefficient calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N7db3ea97c5f24ddebea63b24579d7059" + }, + { + "@id": "http://edamontology.org/operation_0250" + } + ] + }, + { + "@id": "_:N7db3ea97c5f24ddebea63b24579d7059", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1531" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3215", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify peaks in a spectrum from a mass spectrometry, NMR, or some other spectrum-generating experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Peak finding" + }, + { + "@value": "Peak assignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peak detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N187808d181db459b86890448e6652e06" + }, + { + "@id": "http://edamontology.org/operation_3214" + } + ] + }, + { + "@id": "_:N187808d181db459b86890448e6652e06", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0943" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0264", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict splicing alternatives or transcript isoforms from analysis of sequence data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Differential splicing analysis" + }, + { + "@value": "Alternative splicing detection" + }, + { + "@value": "Alternative splicing analysis" + }, + { + "@value": "Splice transcript prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alternative splicing prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2499" + }, + { + "@id": "_:Nde3f9d40f3954c71a3a16db874310a71" + } + ] + }, + { + "@id": "_:Nde3f9d40f3954c71a3a16db874310a71", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0114" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0080", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The archival, processing and analysis of molecular sequences (monomer composition of polymers) including molecular sequence data resources, sequence sites, alignments, motifs and profiles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Sequence_analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Biological sequences" + }, + { + "@value": "Sequence databases" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequence_analysis" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D017421" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3307" + } + ] + }, + { + "@id": "http://edamontology.org/format_1964", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "txt" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Plain text sequence format (essentially unformatted)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "plain text format (unformatted)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2828", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of matter and their structure by means of the diffraction of X-rays, typically the diffraction pattern caused by the regularly spaced atoms of a crystalline sample." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Crystallography" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "X-ray_diffraction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "X-ray microscopy" + }, + { + "@value": "X-ray crystallography" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "X-ray diffraction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/X-ray_diffraction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_1317" + }, + { + "@id": "http://edamontology.org/topic_3382" + } + ] + }, + { + "@id": "http://edamontology.org/format_2035", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Text format of a chemical formula." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical formula format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:Ncdce7191d5af4265b4b80671ce982632" + } + ] + }, + { + "@id": "_:Ncdce7191d5af4265b4b80671ce982632", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0846" + } + ] + }, + { + "@id": "http://edamontology.org/data_2112", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Primary identifier of an object from the FlyBase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FlyBase primary identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1089" + } + ] + }, + { + "@id": "http://edamontology.org/format_3033", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a matrix (array) of numerical values." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Matrix format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:Nd1f02a95dbdc42e3a5fdea570cac0599" + } + ] + }, + { + "@id": "_:Nd1f02a95dbdc42e3a5fdea570cac0599", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2082" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3377", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The safety (or lack) of drugs and other medical interventions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Patient safety" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Safety_sciences" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Drug safety" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Safety sciences" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Patient_safety" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3376" + } + ] + }, + { + "@id": "http://edamontology.org/format_1500", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a matrix of 3D-1D scores used by the EMBOSS Domainatrix applications." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/format_2064" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Domainatrix 3D-1D scoring matrix format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2793", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the SISYPHUS database of tertiary structure alignments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SISYPHUS ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1072" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2952", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0295" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a molecular tertiary (3D) structure alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1045", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a species (typically a taxonomic group) of organism." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Organism species" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Species name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1868" + } + ] + }, + { + "@id": "http://edamontology.org/data_1013", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a restriction enzyme." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Restriction enzyme name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1012" + } + ] + }, + { + "@id": "http://edamontology.org/data_2782", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a domain from the SMART database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SMART domain name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1131" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0797", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study (typically comparison) of the sequence, structure or function of multiple genomes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Comparative_genomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Comparative genomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Comparative_genomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0622" + } + ] + }, + { + "@id": "http://edamontology.org/data_1429", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylogenetic invariants data for testing alternative tree topologies." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic report (invariants)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic invariants" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2523" + }, + { + "@id": "_:N3e149b54b5ae41aea48bac3d28fad9e3" + } + ] + }, + { + "@id": "_:N3e149b54b5ae41aea48bac3d28fad9e3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0199" + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#comment", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/data_2687", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Monodelphis domestica' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Monodelphis domestica')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3525", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein-DNA/RNA interaction(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-nucleic acid interactions" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0516", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search and retrieve names of or documentation on bioinformatics databases or query terms, for example by keyword." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (database metadata)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3789", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.w3.org/XML/Query/" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "xquery" + }, + { + "@value": "xq" + }, + { + "@value": "xqy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "https://www.w3.org/XML/Query/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XQuery (XML Query) is a query language (format of queries) for querying and manipulating structured and unstructured data, usually in the form of XML, text, and with vendor-specific extensions for other data formats (JSON, binary, etc.)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "xq" + }, + { + "@value": "xqy" + }, + { + "@value": "XML Query" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "XQuery" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/XQuery" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1116", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the ELMdb database of protein functional sites." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ELM ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1114" + } + ] + }, + { + "@id": "http://edamontology.org/format_3839", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.1016/j.jprot.2012.07.026" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.imzml.org/index.php?option=com_content&view=article&id=188&Itemid=63" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "ibd" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.imzml.org/index.php?option=com_content&view=article&id=188&Itemid=63" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "ibd is a data format for mass spectrometry imaging data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "imzML data is recorded in 2 files: '.imzXML' is a metadata XML file based on mzML by HUPO-PSI, and '.ibd' is a binary file containing the mass spectra." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ibd" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/data_0975", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a data resource." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data resource identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2936", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0571" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a dendrograph of raw, preprocessed or clustered expression (e.g. microarray) data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2938" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Dendrograph plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2149", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0957" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a category of biological or bioinformatics database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database category name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3714", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://doi.org/10.1021/pr101065j" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of peak list files from Andromeda search engine (MaxQuant) that consist of arbitrarily many spectra." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MaxQuant APL" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MaxQuant APL peaklist format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0641", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0157" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The repetitive nature of molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Repeat sequences" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2314", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A series of digits that are assigned consecutively to each sequence record processed by NCBI. The GI number bears no resemblance to the Accession number of the sequence record." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "NCBI GI number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Nucleotide sequence GI number is shown in the VERSION field of the database record. Protein sequence GI number is shown in the CDS/db_xref field of a nucleotide database record, and the VERSION field of a protein database record." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GI number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2362" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1727", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2858" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term definition for a biological process from the Gene Ontology (GO)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Data Type is an enumerated string." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GO (biological process)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3473", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Knowledge discovery in databases" + }, + { + "@value": "KDD" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.3.2 Data mining" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The discovery of patterns in large data sets and the extraction and trasnsformation of those patterns into a useful format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Data_mining" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Pattern recognition" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data mining" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Data_mining" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3316" + } + ] + }, + { + "@id": "http://edamontology.org/format_3594", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.coolutils.com/Formats/PCD" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "pcd" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Photo CD format, which is the highest resolution format for images on a CD." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "PCD was developed by Kodak. A PCD file contains five different resolution (ranging from low to high) of a slide or film negative. Due to it PCD is often used by many photographers and graphics professionals for high-end printed applications." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pcd" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/format_2074", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format of a dirichlet distribution." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Dirichlet distribution format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:N34337f1635a1417a90692531eb288a8a" + } + ] + }, + { + "@id": "_:N34337f1635a1417a90692531eb288a8a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1347" + } + ] + }, + { + "@id": "http://edamontology.org/data_2742", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a transcription factor from the AraC-XylS database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "AraC-XylS ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2911" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3480", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate some data from a chosen probibalistic model, possibly to evaluate algorithms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Probabilistic data generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3429" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2423", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict, recognise, detect or identify some properties of a biomolecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Recognition" + }, + { + "@value": "Detection" + }, + { + "@value": "Prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Prediction and recognition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/data_1246", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A cluster of nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleotide sequence cluster" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The sequences are typically related, for example a family of sequences." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1234" + }, + { + "@id": "http://edamontology.org/data_1235" + } + ] + }, + { + "@id": "http://edamontology.org/data_1673", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0954" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cross-mapping of Swiss-Prot codes to PDB identifiers." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Swiss-Prot to PDB mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/related_term", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'Related term' concept property ('related_term'; supposedly a synonym modifier in OBO format) states a related term - not necessarily closely semantically related - that users (also non-specialists) may use when searching." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Related term" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2238", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Perform a statistical data operation of some type, e.g. calibration or validation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Statistical test" + }, + { + "@value": "Statistical testing" + }, + { + "@value": "Significance testing" + }, + { + "@value": "Statistical analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Expectation maximisation" + }, + { + "@value": "Gibbs sampling" + }, + { + "@value": "Hypothesis testing" + }, + { + "@value": "Omnibus test" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Statistical calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3438" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3404", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.7 Dermatology and venereal diseases" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with prevention, diagnosis and treatment of disorders of the skin, scalp, hair and nails." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Dermatology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Dermatological disorders" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Dermatology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Dermatology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_3856", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the RNA central database of annotated human miRNAs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "There are canonical and taxon-specific forms of RNAcentral ID. Canonical form e.g. urs_9or10digits identifies an RNA sequence (within the RNA central database) which may appear in multiple sequences. Taxon-specific form identifies a sequence in the specific taxon (e.g. urs_9or10digits_taxonID)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA central ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1097" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2495", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and/or write) expression data from experiments measuring molecules (e.g. omics data), including analysis of one or more expression profiles, typically to interpret them in functional terms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Expression data analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Gene expression regulation analysis" + }, + { + "@value": "Gene expression data analysis" + }, + { + "@value": "Microarray data analysis" + }, + { + "@value": "Gene expression analysis" + }, + { + "@value": "Metagenomic inference" + }, + { + "@value": "Protein expression analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Metagenomic inference is the profiling of phylogenetic marker genes in order to predict metagenome function." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Expression analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gene_expression_profiling" + }, + { + "@id": "https://en.wikipedia.org/w/index.php?title=Gene_expression_analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2945" + }, + { + "@id": "_:N91e6cb57cd0249c586116bfac547bd37" + } + ] + }, + { + "@id": "_:N91e6cb57cd0249c586116bfac547bd37", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ] + }, + { + "@id": "http://edamontology.org/data_1872", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:TaxonScientificName" + }, + { + "@value": "Moby:TaxonName" + }, + { + "@value": "Moby:TaxonTCS" + }, + { + "@value": "Moby:iANT_organism-xml" + }, + { + "@value": "Moby:GCP_Taxon" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The full name for a group of organisms, reflecting their biological classification and (usually) conforming to a standard nomenclature." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Taxonomic name" + }, + { + "@value": "Taxonomic information" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Name components correspond to levels in a taxonomic hierarchy (e.g. 'Genus', 'Species', etc.) Meta information such as a reference where the name was defined and a date might be included." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Taxonomic classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2909" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0310", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Combine (align and merge) overlapping fragments of a DNA sequence to reconstruct the original sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Sequence assembly editing" + }, + { + "@value": "Metagenomic assembly" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example, assemble overlapping reads from paired-end sequencers into contigs (a contiguous sequence corresponding to read overlaps). Or assemble contigs, for example ESTs and genomic DNA fragments, depending on the detected fragment overlaps." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequence_assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2478" + }, + { + "@id": "_:Ne10c2a9ab39d46f48e175458be3133c7" + }, + { + "@id": "_:N0afaf3f6fa1d49c6b8b7e6067f34e9d2" + } + ] + }, + { + "@id": "_:Ne10c2a9ab39d46f48e175458be3133c7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0196" + } + ] + }, + { + "@id": "_:N0afaf3f6fa1d49c6b8b7e6067f34e9d2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0925" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0406", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate aliphatic index (relative volume occupied by aliphatic side chains) of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein aliphatic index calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N26ece16ed1c14f59ad262fbbc1b68146" + }, + { + "@id": "http://edamontology.org/operation_2574" + } + ] + }, + { + "@id": "_:N26ece16ed1c14f59ad262fbbc1b68146", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1521" + } + ] + }, + { + "@id": "http://edamontology.org/data_2154", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Any arbitrary name of a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + }, + { + "@id": "http://edamontology.org/data_1063" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0196", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The assembly of fragments of a DNA sequence to reconstruct the original sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Sequence_assembly" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Assembly" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Assembly has two broad types, de-novo and re-sequencing. Re-sequencing is a specialised case of assembly, where an assembled (typically de-novo assembled) reference genome is available and is about 95% identical to the re-sequenced genome. All other cases of assembly are 'de-novo'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequence_assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ] + }, + { + "@id": "http://edamontology.org/data_3137", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "features of non-coding or functional RNA molecules, including tRNA and rRNA." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Non-coding RNA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0845", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "PDBML:pdbx_formal_charge" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Net charge of a molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular charge" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2050" + } + ] + }, + { + "@id": "http://edamontology.org/data_2565", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Full name of an amino acid, e.g. Glycine." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid name (full name)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1006" + } + ] + }, + { + "@id": "http://edamontology.org/format_3622", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://gemini.readthedocs.org/en/latest/content/quick_start.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format used by the SQLite database conformant to the Gemini schema." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gemini SQLite format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2921" + }, + { + "@id": "http://edamontology.org/format_3621" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0477", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Build a three-dimensional protein model based on known (for example homologs) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Comparative modelling" + }, + { + "@value": "Homology structure modelling" + }, + { + "@value": "Homology modelling" + }, + { + "@value": "Protein structure comparative modelling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The model might be of a whole, part or aspect of protein structure. Molecular modelling methods might use sequence-structure alignment, structural templates, molecular dynamics, energy minimisation etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Homology_modeling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N4cda79b055b8429d944cd32dbf06c582" + }, + { + "@id": "http://edamontology.org/operation_0474" + }, + { + "@id": "http://edamontology.org/operation_2426" + } + ] + }, + { + "@id": "_:N4cda79b055b8429d944cd32dbf06c582", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2275" + } + ] + }, + { + "@id": "http://edamontology.org/format_3621", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.sqlite.org/fileformat2.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format used by the SQLite database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SQLite format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_1165", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/example": [ + { + "@value": "UniProt|Enzyme Nomenclature" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The primary name of a data type from the MIRIAM database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The primary name of a MIRIAM data type is taken from a controlled vocabulary." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MIRIAM data type primary name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1163" + } + ] + }, + { + "@id": "http://edamontology.org/data_3231", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report concerning genome-wide association study experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GWAS report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3454", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phase a macromolecular crystal structure, for example by using molecular replacement or experimental phasing methods." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phasing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3445" + } + ] + }, + { + "@id": "http://edamontology.org/data_2838", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning a proteomics experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Experimental data (proteomics)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3478", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Reconstructing the inner node labels of a phylogenetic tree from its leafes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree reconstruction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Gene tree reconstruction" + }, + { + "@value": "Species tree reconstruction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Note that this is somewhat different from simply analysing an existing tree or constructing a completely new one." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic reconstruction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N7b4e0a6868ab43c5a1ff9dbe0484147e" + }, + { + "@id": "http://edamontology.org/operation_0323" + } + ] + }, + { + "@id": "_:N7b4e0a6868ab43c5a1ff9dbe0484147e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0084" + } + ] + }, + { + "@id": "http://edamontology.org/format_4024", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "https://doi.org/10.1107/S010876739101067X" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.iucr.org/resources/cif/documentation" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://iucrdata.iucr.org/x/services/examples.html" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "cif" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "https://www.iucr.org/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Crystallographic Information File (CIF) is a data exchange standard file format for Crystallographic Information and related Structural Science data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "cif" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://www.iucr.org/resources/cif/spec/version1.1" + }, + { + "@id": "https://en.wikipedia.org/wiki/Crystallographic_Information_File" + }, + { + "@id": "http://www.ontobee.org/ontology/NCIT?iri=http://purl.obolibrary.org/obo/NCIT_C133997" + }, + { + "@id": "https://www.iucr.org/resources/cif" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nc446d7f179834ed4a79f9f5d469eb37e" + }, + { + "@id": "http://edamontology.org/format_2030" + } + ] + }, + { + "@id": "_:Nc446d7f179834ed4a79f9f5d469eb37e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0883" + } + ] + }, + { + "@id": "http://edamontology.org/data_0893", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An alignment of molecular sequence to structure (from threading sequence(s) through 3D structure or representation of structure(s))." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence-structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1916" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0484", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Find single nucleotide polymorphisms (SNPs) - single nucleotide change in base positions - between sequences. Typically done for sequences from a high-throughput sequencing experiment that differ from a reference genome and which might, especially by reference to population frequency or functional data, indicate a polymorphism." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "SNP discovery" + }, + { + "@value": "Single nucleotide polymorphism detection" + }, + { + "@value": "SNP calling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes functional SNPs for large-scale genotyping purposes, disease-associated non-synonymous SNPs etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SNP detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3227" + } + ] + }, + { + "@id": "http://edamontology.org/format_3913", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.23" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://linnarssonlab.org/loompy/format/index.html" + }, + { + "@id": "https://linnarssonlab.org/loompy/semantics/index.html" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://linnarssonlab.org/loompy/semantics/index.html" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "loom" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The Loom file format is based on HDF5, a standard for storing large numerical datasets. The Loom format is designed to efficiently hold large omics datasets. Typically, such data takes the form of a large matrix of numbers, along with metadata for the rows and columns." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Loom" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3590" + }, + { + "@id": "_:Nb2e631cab0114610bd0882779a326567" + }, + { + "@id": "http://edamontology.org/format_2058" + }, + { + "@id": "_:N436534801d8b4dc68e22d2783d8ab865" + } + ] + }, + { + "@id": "_:Nb2e631cab0114610bd0882779a326567", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2535" + } + ] + }, + { + "@id": "_:N436534801d8b4dc68e22d2783d8ab865", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3112" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3730", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construction of a single sequence assembly of all reads from different samples, typically as part of a comparative metagenomic analysis." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence assembly (cross-assembly)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cross-assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0310" + } + ] + }, + { + "@id": "http://edamontology.org/data_1554", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a node from the SCOP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SCOP node" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3767", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identification of protein, for example from one or more peptide identifications by tandem mass spectrometry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein inference" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein identification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3214" + }, + { + "@id": "_:N7f17572589ff40a8aabc4387df9e5aa4" + }, + { + "@id": "http://edamontology.org/operation_2423" + } + ] + }, + { + "@id": "_:N7f17572589ff40a8aabc4387df9e5aa4", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0943" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2463", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0292" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a molecular sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3736", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning ecology; for example measurements and reports from the study of interactions among organisms and their environment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ecological data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3542", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Secondary structure (predicted or real) of a protein, including super-secondary structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein features (secondary structure)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_secondary_structure" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein super-secondary structure" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The location and size of the secondary structure elements and intervening loop regions is typically given. The report can include disulphide bonds and post-translationally formed peptide bonds (crosslinks)." + }, + { + "@value": "Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_secondary_structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_2814" + } + ] + }, + { + "@id": "http://edamontology.org/data_2671", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database (Homo sapiens division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID (Homo sapiens)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1742", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF: pdb_number" + }, + { + "@value": "PDBML:PDB_residue_no" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A residue identifier (a string) from a PDB file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PDB residue number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1016" + } + ] + }, + { + "@id": "http://edamontology.org/format_3878", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://ambermd.org/formats.html#trajectory" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "AMBER trajectory (also called mdcrd), with 10 coordinates per line and format F8.3 (fixed point notation with field width 8 and 3 decimal places)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "AMBER trajectory format" + }, + { + "@value": "inpcrd" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mdcrd" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2033" + }, + { + "@id": "http://edamontology.org/format_3868" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1076", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique name of a codon usage table." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage table name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N9588f583942f49dd8edb701a45668938" + }, + { + "@id": "_:N4e8680dd210648cda28223608bcb96c6" + }, + { + "@id": "http://edamontology.org/data_2111" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "_:N9588f583942f49dd8edb701a45668938", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1597" + } + ] + }, + { + "@id": "_:N4e8680dd210648cda28223608bcb96c6", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1598" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0417", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict post-translation modification sites in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PTM analysis" + }, + { + "@value": "PTM prediction" + }, + { + "@value": "PTM site analysis" + }, + { + "@value": "Post-translation modification site prediction" + }, + { + "@value": "PTM site prediction" + }, + { + "@value": "Post-translational modification analysis" + }, + { + "@value": "Protein post-translation modification site prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Hydroxylation site prediction" + }, + { + "@value": "Ubiquitination prediction" + }, + { + "@value": "GPI modification site prediction" + }, + { + "@value": "N-terminal acetylation site prediction" + }, + { + "@value": "Dephosphorylation site prediction" + }, + { + "@value": "Phosphoglycerylation site prediction" + }, + { + "@value": "Ubiquitination site prediction" + }, + { + "@value": "Prenylation site prediction" + }, + { + "@value": "Pupylation site prediction" + }, + { + "@value": "Tyrosine nitration site prediction" + }, + { + "@value": "GPI anchor prediction" + }, + { + "@value": "Palmitoylation prediction" + }, + { + "@value": "Dephosphorylation prediction" + }, + { + "@value": "N-terminal myristoylation site prediction" + }, + { + "@value": "S-sulfenylation prediction" + }, + { + "@value": "GPI anchor site prediction" + }, + { + "@value": "Tyrosine nitration prediction" + }, + { + "@value": "Pupylation prediction" + }, + { + "@value": "Prenylation prediction" + }, + { + "@value": "Hydroxylation prediction" + }, + { + "@value": "S-nitrosylation prediction" + }, + { + "@value": "Acetylation site prediction" + }, + { + "@value": "Glycosylation prediction" + }, + { + "@value": "Methylation site prediction" + }, + { + "@value": "Palmitoylation site prediction" + }, + { + "@value": "Sumoylation prediction" + }, + { + "@value": "Phosphorylation prediction" + }, + { + "@value": "Phosphosite localization" + }, + { + "@value": "Sumoylation site prediction" + }, + { + "@value": "Succinylation site prediction" + }, + { + "@value": "Sulfation site prediction" + }, + { + "@value": "N-myristoylation site prediction" + }, + { + "@value": "S-nitrosylation site prediction" + }, + { + "@value": "Glycosylation site prediction" + }, + { + "@value": "N-terminal acetylation prediction" + }, + { + "@value": "GPI modification prediction" + }, + { + "@value": "Methylation prediction" + }, + { + "@value": "Sulfation prediction" + }, + { + "@value": "N-terminal myristoylation prediction" + }, + { + "@value": "S-sulfenylation site prediction" + }, + { + "@value": "Succinylation prediction" + }, + { + "@value": "Phosphorylation site prediction" + }, + { + "@value": "Acetylation prediction" + }, + { + "@value": "Phosphoglycerylation prediction" + }, + { + "@value": "N-myristoylation prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might predict sites of methylation, N-terminal myristoylation, N-terminal acetylation, sumoylation, palmitoylation, phosphorylation, sulfation, glycosylation, glycosylphosphatidylinositol (GPI) modification sites (GPI lipid anchor signals) etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Post-translational modification site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3092" + }, + { + "@id": "_:N78bd3f0a87f0450885e26a6d8b7ec1f3" + } + ] + }, + { + "@id": "_:N78bd3f0a87f0450885e26a6d8b7ec1f3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0601" + } + ] + }, + { + "@id": "http://edamontology.org/data_2288", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1096" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of protein sequence(s) or protein sequence database entries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence identifier (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2694", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Pan troglodytes' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Pan troglodytes')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3832", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1ConsensusXMLFile.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "OpenMS format for grouping features in one map or across several maps." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "consensusXML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3697", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The ecology of microorganisms including their relationship with one another and their environment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Environmental microbiology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Microbial_ecology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Molecular community analysis" + }, + { + "@value": "Microbiome" + }, + { + "@value": "Community analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microbial ecology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Microbial_ecology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3301" + }, + { + "@id": "http://edamontology.org/topic_0610" + } + ] + }, + { + "@id": "http://edamontology.org/data_2588", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a blot from a Northern Blot from the BlotBase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BlotBase blot ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2587" + } + ] + }, + { + "@id": "http://edamontology.org/data_1121", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The type of a BLAST sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BLAST sequence alignment type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3214", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse one or more spectra from mass spectrometry (or other) experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Mass spectrum analysis" + }, + { + "@value": "Spectrum analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Spectral analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Spectral_analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2945" + }, + { + "@id": "_:N8ef04c05eea24c2a9307802b100276dc" + } + ] + }, + { + "@id": "_:N8ef04c05eea24c2a9307802b100276dc", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0194", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The integrated study of evolutionary relationships and whole genome data, for example, in the analysis of species trees, horizontal gene transfer and evolutionary reconstruction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Phylogenomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Phylogenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0080" + }, + { + "@id": "http://edamontology.org/topic_0622" + } + ] + }, + { + "@id": "http://edamontology.org/data_0890", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A 3D profile-3D profile alignment (each profile representing structures or a structure alignment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structural profile alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural (3D) profile alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1916" + } + ] + }, + { + "@id": "http://edamontology.org/format_3838", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://msdn.microsoft.com/en-us/library/dd926741(v=office.12).aspx" + } + ], + "http://edamontology.org/media_type": [ + { + "@id": "https://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presentation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Microsoft Powerpoint format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pptx" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0314", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The measurement of the activity (expression) of multiple genes in a cell, tissue, sample etc., in order to get an impression of biological function." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene transcription profiling" + }, + { + "@value": "Gene expression profile construction" + }, + { + "@value": "Feature expression analysis" + }, + { + "@value": "Gene expression quantification" + }, + { + "@value": "Functional profiling" + }, + { + "@value": "Gene expression profile generation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "mRNA profiling" + }, + { + "@value": "Protein profiling" + }, + { + "@value": "Non-coding RNA profiling" + }, + { + "@value": "RNA profiling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Gene expression profiling generates some sort of gene expression profile, for example from microarray data." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene expression profiling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gene_expression_profiling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ] + }, + { + "@id": "http://edamontology.org/data_2593", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier for an organism used in the BRENDA database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BRENDA organism ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2908" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2780", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A stock number from The Arabidopsis information resource (TAIR)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Stock number (TAIR)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2779" + } + ] + }, + { + "@id": "http://edamontology.org/data_2899", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Common name of a drug." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drug name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0993" + }, + { + "@id": "http://edamontology.org/data_0990" + } + ] + }, + { + "@id": "http://edamontology.org/data_2133", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A logical operator such as OR, AND, XOR, and NOT." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Logical operator" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/format_2031", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report on a particular locus, gene, gene system or groups of genes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene features format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene annotation format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:N305b2e88e9dd4c83b70a9c80a12d9c3a" + } + ] + }, + { + "@id": "_:N305b2e88e9dd4c83b70a9c80a12d9c3a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0916" + } + ] + }, + { + "@id": "http://edamontology.org/data_1063", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of molecular sequence(s) or entries from a molecular sequence database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N1c70eaf043364270b7df53fde20ff223" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N1c70eaf043364270b7df53fde20ff223", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2044" + } + ] + }, + { + "@id": "http://edamontology.org/data_1278", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:GeneticMap" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A map showing the relative positions of genetic markers in a nucleic acid sequence, based on estimation of non-physical distance such as recombination frequencies." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Linkage map" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A genetic (linkage) map indicates the proximity of two genes on a chromosome, whether two genes are linked and the frequency they are transmitted together to an offspring. They are limited to genetic markers of traits observable only in whole organisms." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1274" + } + ] + }, + { + "@id": "http://edamontology.org/data_1461", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The structure of a protein in complex with a ligand, typically a small molecule such as an enzyme substrate or cofactor, but possibly another macromolecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes interactions of proteins with atoms, ions and small molecules or macromolecules such as nucleic acids or other polypeptides. For stable inter-polypeptide interactions use 'Protein complex' instead." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-ligand complex" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1460" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3093", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2421" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Screen a molecular sequence(s) against a database (of some type) to identify similarities between the sequence and database entries." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database search (by sequence)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1863", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:Haplotyping_Study_obj" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A map of haplotypes in a genome or other sequence, describing common patterns of genetic variation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Haplotype map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1278" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2259", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The holistic modelling and analysis of complex biological systems and the interactions therein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Systems_biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Biological system modelling" + }, + { + "@value": "Systems modelling" + }, + { + "@value": "Biological modelling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes databases of models and methods to construct or analyse a model." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Systems biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D049490" + }, + { + "@id": "http://en.wikipedia.org/wiki/Systems_biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2830", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Immunity-related proteins and their ligands." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Immunoproteins_and_antigens" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Immunopeptides" + }, + { + "@value": "Immunoproteins" + }, + { + "@value": "Therapeutic antibodies" + }, + { + "@value": "Antigens" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes T cell receptors (TR), major histocompatibility complex (MHC), immunoglobulin superfamily (IgSF) / antibodies, major histocompatibility complex superfamily (MhcSF), etc.\"" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Immunoproteins and antigens" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Antigen" + }, + { + "@id": "https://en.wikipedia.org/wiki/Immunoproteins" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0804" + }, + { + "@id": "http://edamontology.org/topic_0623" + } + ] + }, + { + "@id": "http://edamontology.org/format_4003", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "npy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The standard binary file format used by NumPy - a fundamental package for scientific computing with Python - for persisting a single arbitrary NumPy array on disk. The format stores all of the shape and dtype information necessary to reconstruct the array correctly." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "NumPy" + }, + { + "@value": "npy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NumPy format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_0005", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2337" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A type of computational resource used in bioinformatics." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Resource type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2386", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (promoter) from the EPD database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "EPD identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EPD ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2727" + } + ] + }, + { + "@id": "http://edamontology.org/topic_1311", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Operons (operators, promoters and genes) from a bacterial genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0114" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Operon" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2078", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used to specify range(s) of sequence positions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence range format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N3f0973441d8c4d099a3321c304c864c9" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:N3f0973441d8c4d099a3321c304c864c9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1017" + } + ] + }, + { + "@id": "http://edamontology.org/data_2387", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the TAIR database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TAIR accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2109" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2809", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A general area of bioinformatics study, typically the broad scope or category of content of a bioinformatics journal or conference proceeding." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Study topic" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3190", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3192" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Trim vector" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3322", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.25 Respiratory systems" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of respiratory system." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Pulmonary medicine" + }, + { + "@value": "Pulmonology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Respiratory_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Pulmonary disorders" + }, + { + "@value": "Respiratory disease" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Respiratory medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Pulmonology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3418", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.21 Paediatrics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with the medical care of infants, children and adolescents." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Child health" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Paediatrics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Paediatrics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Pediatrics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/format_3588", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://genome.ucsc.edu/goldenPath/help/customTrack.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "https://genome.ucsc.edu/goldenPath/help/customTrack.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Custom Sequence annotation track format used by Galaxy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Used for tracks/track views within galaxy." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "customtrack" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2919" + } + ] + }, + { + "@id": "http://edamontology.org/data_1361", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A profile (typically representing a sequence alignment) that is a simple matrix of nucleotide (or amino acid) counts per position." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PFM" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Position frequency matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2854" + } + ] + }, + { + "@id": "http://edamontology.org/data_1352", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Regular expression pattern." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Regular expression" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/data_2908", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An accession of annotation on a (group of) organisms (catalogued in a database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Organism accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1869" + } + ] + }, + { + "@id": "http://edamontology.org/data_1379", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2071" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein binding site signature (sequence classifier) from the InterPro database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A protein binding site signature corresponds to a site that reversibly binds chemical compounds, which are not themselves substrates of the enzymatic reaction. This includes enzyme cofactors and residues involved in electron transport or protein structure modification." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein binding site signature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2557", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML format for a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree format (XML)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2006" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3221", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Estimate the frequencies of different species from analysis of the molecular sequences, typically of DNA recovered from environmental samples." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Species frequency estimation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N720e09424e264789acaca3ed6ad8d517" + }, + { + "@id": "http://edamontology.org/operation_2478" + } + ] + }, + { + "@id": "_:N720e09424e264789acaca3ed6ad8d517", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3174" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0480", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Model, analyse or edit amino acid side chain conformation in protein structure, optimize side-chain packing, hydrogen bonding etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein modelling (side chains)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Antigen resurfacing" + }, + { + "@value": "Rotamer likelihood prediction" + }, + { + "@value": "Antigen optimisation" + }, + { + "@value": "Antibody optimisation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Antibody optimisation is to optimize the antibody-interacting surface of the antigen (epitope). Antigen optimisation is to optimize the antigen-interacting surface of the antibody (paratope). Antigen resurfacing is to resurface the antigen by varying the sequence of non-epitope regions." + }, + { + "@value": "This includes rotamer likelihood prediction: the prediction of rotamer likelihoods for all 20 amino acid types at each position in a protein structure, where output typically includes, for each residue position, the likelihoods for the 20 amino acid types with estimated reliability of the 20 likelihoods." + }, + { + "@value": "Methods might use a residue rotamer library." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Side chain modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0477" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0003", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A category denoting a rather broad domain or field of interest, of study, application, work, data, or technology. Topics have no clearly defined borders between each other." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "sumo:FieldOfStudy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Topic" + } + ], + "http://www.w3.org/2002/07/owl#disjointWith": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2004/02/skos/core#broadMatch": [ + { + "@id": "http://www.onto-med.de/ontologies/gfo.owl#Category" + }, + { + "@id": "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Method" + }, + { + "@id": "http://purl.obolibrary.org/obo/BFO_0000002" + }, + { + "@id": "http://www.onto-med.de/ontologies/gfo.owl#Perpetuant" + } + ], + "http://www.w3.org/2004/02/skos/core#closeMatch": [ + { + "@id": "http://bioontology.org/ontologies/ResearchArea.owl#Area_of_Research" + } + ], + "http://www.w3.org/2004/02/skos/core#relatedMatch": [ + { + "@id": "http://purl.obolibrary.org/obo/BFO_0000019" + }, + { + "@id": "http://www.loa.istc.cnr.it/ontologies/DOLCE-Lite.owl#quality" + }, + { + "@id": "http://purl.org/biotop/biotop.owl#Quality" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0398", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the molecular weight of a protein sequence or fragments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Peptide mass calculation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein molecular weight calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ndb2a85a05fc94ed78ab6ff3ebe72ddaf" + }, + { + "@id": "_:N35bff6d7583a4c6480c9203d29567114" + }, + { + "@id": "http://edamontology.org/operation_0250" + } + ] + }, + { + "@id": "_:Ndb2a85a05fc94ed78ab6ff3ebe72ddaf", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1519" + } + ] + }, + { + "@id": "_:N35bff6d7583a4c6480c9203d29567114", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2264", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Query a biological pathways database and retrieve annotation on one or more pathways." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (pathway or network)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2847", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0634" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Informatics resources dedicated to one or more specific diseases (not diseases in general)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Disease (specific)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1482", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of nucleic acid tertiary (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure alignment (nucleic acid)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0886" + } + ] + }, + { + "@id": "http://edamontology.org/format_4025", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://biosimulators.org/conventions/simulator-specs" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://biosimulators.org/conventions/simulator-specs" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "json" + } + ], + "http://edamontology.org/media_type": [ + { + "@id": "https://www.iana.org/assignments/media-types/application/json" + } + ], + "http://edamontology.org/ontology_used": [ + { + "@id": "https://www.crossref.org/services/funder-registry/" + }, + { + "@id": "http://www.ebi.ac.uk/sbo/" + }, + { + "@id": "https://github.com/github/linguist/blob/master/lib/linguist/languages.yml" + }, + { + "@id": "http://edamontology.org/" + }, + { + "@id": "http://co.mbine.org/standards/kisao" + }, + { + "@id": "https://github.com/MaastrichtU-IDS/semanticscience" + }, + { + "@id": "https://spdx.dev/" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "https://reproduciblebiomodels.org/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for describing the capabilities of a biosimulation tool including the modeling frameworks, simulation algorithms, and modeling formats that it supports, as well as metadata such as a list of the interfaces, programming languages, and operating systems supported by the tool; a link to download the tool; a list of the authors of the tool; and the license to the tool." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioSimulators format for the specifications of biosimulation tools" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://api.biosimulators.org/openapi.json" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3464" + } + ] + }, + { + "@id": "http://edamontology.org/data_2789", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier for a membrane protein from the TopDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "TopDB ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein ID (TopDB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2907" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2164", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0897" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A plot of general physicochemical properties of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence properties plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2901", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of a specific molecule (catalogued in a database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecule accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0982" + } + ] + }, + { + "@id": "http://edamontology.org/format_3752", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "csv" + } + ], + "http://edamontology.org/media_type": [ + { + "@id": "http://www.iana.org/assignments/media-types/text/csv" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.iana.org/assignments/media-types/text/csv" + }, + { + "@id": "http://filext.com/file-extension/CSV" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Tabular data represented as comma-separated values in a text file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Comma-separated values" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CSV" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3751" + } + ] + }, + { + "@id": "http://purl.obolibrary.org/obo/namespace", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/data_1904", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby_namespace:EntrezGene_ID" + }, + { + "@value": "Moby_namespace:EntrezGene_EntrezGeneID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a locus from EntrezGene database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID (EntrezGene)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1893" + } + ] + }, + { + "@id": "http://edamontology.org/data_3872", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Static information of a structure molecular system that is needed for a molecular simulation: the list of atoms, their non-bonded parameters for Van der Waals and electrostatic interactions, and the complete connectivity in terms of bonds, angles and dihedrals." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Topology data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3869" + } + ] + }, + { + "@id": "http://edamontology.org/data_2103", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of an entry (gene) from the KEGG GENES database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (KEGG GENES)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3598", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.fileformat.info/format/xbm/egff.htm" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "X BitMap is a plain text binary image format used by the X Window System used for storing cursor and icon bitmaps used in the X GUI." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The XBM format was replaced by XPM for X11 in 1989." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "xbm" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_2251", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A relax-NG schema." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Relax-NG schema" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1434", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of PHYLIP cliques data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylip cliques format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2039" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2471", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Retrieve information on an RNA family." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (RNA family annotation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1914", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:MovedWaterPDB" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Query a tertiary structure database and retrieve water molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure retrieval (water)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1047", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A string of characters that name or otherwise identify a resource on the Internet." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "URIs" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "URI" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0842" + } + ] + }, + { + "@id": "_:N14d910e23e2646c6ae4629909d1856e1", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Process can have a function (as its quality/attribute), and can also perform an operation with inputs and outputs." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "Process" + } + ] + }, + { + "@id": "http://edamontology.org/format_2072", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a hidden Markov model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hidden Markov model format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N307c891b88414dfeb32085a2425466e7" + }, + { + "@id": "http://edamontology.org/format_2069" + } + ] + }, + { + "@id": "_:N307c891b88414dfeb32085a2425466e7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1364" + } + ] + }, + { + "@id": "http://edamontology.org/data_2972", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0949" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A computational workflow." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Workflow" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2547", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A sequence format resembling uniprotkb entry format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "uniprotkb-like format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2548" + }, + { + "@id": "http://edamontology.org/format_1919" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3533", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Catalytic residues (active site) of an enzyme." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3510" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein active sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3263", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The protection of data, such as patient health data, from damage or unwanted access from unauthorised users." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Data privacy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Data_security" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data security" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Data_security" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3071" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0326", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Edit a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree editing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3096" + }, + { + "@id": "_:N4b93291119bd4882806eb2b8c15954bf" + }, + { + "@id": "_:N0c7d663e071a48bb93d2abbfdafe1797" + }, + { + "@id": "http://edamontology.org/operation_0324" + } + ] + }, + { + "@id": "_:N4b93291119bd4882806eb2b8c15954bf", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0872" + } + ] + }, + { + "@id": "_:N0c7d663e071a48bb93d2abbfdafe1797", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0872" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2474", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare the architecture of two or more protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein architecture comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2997" + }, + { + "@id": "http://edamontology.org/operation_0247" + } + ] + }, + { + "@id": "http://edamontology.org/format_1628", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A format of raw sequence read data from an Applied Biosystems sequencing machine." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ABI" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_2057" + } + ] + }, + { + "@id": "http://edamontology.org/data_2802", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier for a protein from the EcID database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein ID (EcID)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + } + ] + }, + { + "@id": "http://edamontology.org/data_2337", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning or describing some core computational resource, as distinct from primary data. This includes metadata on the origin, source, history, ownership or location of some thing." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Provenance metadata" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Resource metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#ObsoleteClass", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An obsolete concept (redefined in EDAM)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Needed for conversion to the OBO format." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Obsolete concept (EDAM)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2582", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]{7}|GO:[0-9]{7}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a 'biological process' concept from the the Gene Ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GO concept ID (biological process)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1176" + } + ] + }, + { + "@id": "http://edamontology.org/format_3836", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://www.ncbi.nlm.nih.gov/data_specs/schema/NCBI_BlastOutput2.mod.xsd" + }, + { + "@value": "ftp://ftp.ncbi.nlm.nih.gov/blast/documents/NEWXML/xml2.pdf" + }, + { + "@value": "ftp://ftp.ncbi.nlm.nih.gov/blast/documents/NEWXML/ProposedBLASTXMLChanges.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML format as produced by the NCBI Blast package v2." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BLAST XML v2 results format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_1333" + } + ] + }, + { + "@id": "http://edamontology.org/data_2617", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "A[0-9]{6}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a protein listed in the UCSD-Nature Signaling Gateway Molecule Pages database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Signaling Gateway protein ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0486", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0282" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Map the genetic architecture of dynamic complex traits." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This can involve characterisation of the underlying quantitative trait loci (QTLs) or nucleotides (QTNs)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Functional mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2307", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2530" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a specific virus." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Virus annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1802", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: GR_gene" + }, + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: GR_GENE" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene identifier from Gramene database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (Gramene)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1202", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A QSAR electronic descriptor." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "QSAR electronic descriptor" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "QSAR descriptor (electronic)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0847" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2519", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2481" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) nucleic acid tertiary structure data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure processing (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0886", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of molecular tertiary (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A tertiary structure alignment will include the untransformed coordinates of one macromolecule, followed by the second (or subsequent) structure(s) with all the coordinates transformed (by rotation / translation) to give a superposition." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N59b58b1b471e4833a9968e184d44ce6f" + }, + { + "@id": "http://edamontology.org/data_1916" + } + ] + }, + { + "@id": "_:N59b58b1b471e4833a9968e184d44ce6f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ] + }, + { + "@id": "http://edamontology.org/format_1697", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the KEGG LIGAND chemical database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KEGG LIGAND entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3966", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The design of vaccines to protect against a particular pathogen, including antigens, delivery systems, and adjuvants to elicit a predictable immune response against specific epitopes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Vaccinology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Reverse vaccinology" + }, + { + "@value": "Structural vaccinology" + }, + { + "@value": "Rational vaccine design" + }, + { + "@value": "Structure-based immunogen design" + }, + { + "@value": "Vaccine design" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Vaccinology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Vaccine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3376" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3323", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_3407" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of metabolic diseases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metabolic disease" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3228", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect large regions in a genome subject to copy-number variation, or other structural variations in genome(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structural variation discovery" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might involve analysis of whole-genome array comparative genome hybridisation or single-nucleotide polymorphism arrays, paired-end mapping of sequencing data, or from analysis of short reads from new sequencing technologies." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural variation detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3197" + } + ] + }, + { + "@id": "http://edamontology.org/data_2971", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0949" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning a computational workflow." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Workflow data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2599", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0906" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on the physical, chemical or other information concerning the interaction of two or more molecules (or parts of molecules)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecule interaction report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0085", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of gene or protein functions and their interactions in totality in a given organism, tissue, cell etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Functional_genomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Functional genomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Functional_genomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0622" + }, + { + "@id": "http://edamontology.org/topic_1775" + } + ] + }, + { + "@id": "http://edamontology.org/data_3107", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.15" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1022" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1812", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:UploadPDB" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Parse, prepare or load a user-specified data file so that it is available for use." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Data loading" + }, + { + "@value": "Loading" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Parsing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3074", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The detection, identification and analysis of positional protein sequence features, such as functional sites." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein feature detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_4012", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://edamontology.org/related_term": [ + { + "@value": "FAIR data principles" + }, + { + "@value": "FAIRification" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FAIR data is data that meets the principles of being findable, accessible, interoperable, and reusable." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Findable, accessible, interoperable, reusable data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "Open data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A substantially overlapping term is 'open data', i.e. publicly available data that is free to use, distribute, and create derivative work from, without restrictions. Open data does not automatically have to be FAIR (e.g. findable or interoperable), while FAIR data does in some cases not have to be publicly available without restrictions (especially sensitive personal data)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FAIR data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/FAIR_data" + }, + { + "@id": "https://en.wikipedia.org/wiki/Open_data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_4010" + }, + { + "@id": "http://edamontology.org/topic_3071" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3198", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align short oligonucleotide sequences (reads) to a larger (genomic) sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Short read alignment" + }, + { + "@value": "Oligonucleotide alignment construction" + }, + { + "@value": "Short oligonucleotide alignment" + }, + { + "@value": "Oligonucleotide alignment" + }, + { + "@value": "Oligonucleotide mapping" + }, + { + "@value": "Short sequence read mapping" + }, + { + "@value": "Read alignment" + }, + { + "@value": "Short read mapping" + }, + { + "@value": "Oligonucleotide alignment generation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The purpose of read mapping is to identify the location of sequenced fragments within a reference genome and assumes that there is, in fact, at least local similarity between the fragment and reference sequences." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Read mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3921" + }, + { + "@id": "http://edamontology.org/operation_2944" + } + ] + }, + { + "@id": "http://edamontology.org/data_0866", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0867" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report of general information on a sequence alignment, typically include a description, sequence identifiers and alignment score." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3511", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The biology, archival, detection, prediction and analysis of positional features such as functional and other key sites, in nucleic acid sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Nucleic_acid_sites_features_and_motifs" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Sequence tagged sites" + }, + { + "@value": "Nucleic acid functional sites" + }, + { + "@value": "Primer binding sites" + }, + { + "@value": "Nucleic acid sequence features" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Sequence tagged sites are short DNA sequences that are unique within a genome and serve as a mapping landmark, detectable by PCR they allow a genome to be mapped via an ordering of STSs." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sites, features and motifs" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0160" + }, + { + "@id": "http://edamontology.org/topic_0077" + } + ] + }, + { + "@id": "http://edamontology.org/identifiers", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty" + } + ] + }, + { + "@id": "http://edamontology.org/data_2143", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An application report generated by the EMBOSS suite." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1967", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DAS sequence (XML) format (any type)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "das sequence format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DAS format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2552" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0141", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Enzyme or chemical cleavage sites and proteolytic or mass calculations on a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein cleavage sites and proteolysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1248", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for sequence positions (feature location) as used in DDBJ/EMBL/GenBank database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Feature location" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBL feature location" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2078" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1194", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of an EMBOSS application." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tool name (EMBOSS)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1190" + } + ] + }, + { + "@id": "http://edamontology.org/format_3777", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.bioversityinternational.org/e-library/publications/detail/faoipgri-multi-crop-passport-descriptors-mcpd/" + }, + { + "@id": "https://www.bioversityinternational.org/fileadmin/user_upload/online_library/publications/pdfs/FAO-Bioversity_multi_crop_passport_descriptors_V_2_Final_rev_1526.pdf" + }, + { + "@id": "https://www.bioversityinternational.org/e-library/publications/detail/faobioversity-multi-crop-passport-descriptors-v2-mcpd-v2/" + }, + { + "@id": "https://www.bioversityinternational.org/fileadmin/_migrated/uploads/tx_news/FAO_IPGRI_Multi-Crop_Passport_Descriptors__MCPD__124_01.pdf" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "http://www.fao.org" + }, + { + "@id": "https://www.bioversityinternational.org/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "https://www.bioversityinternational.org/e-library/publications/detail/faobioversity-multi-crop-passport-descriptors-v2-mcpd-v2/" + }, + { + "@id": "https://www.bioversityinternational.org/fileadmin/_migrated/uploads/tx_news/FAO_IPGRI_Multi-Crop_Passport_Descriptors__MCPD__124_01.pdf" + }, + { + "@id": "https://www.bioversityinternational.org/e-library/publications/detail/faoipgri-multi-crop-passport-descriptors-mcpd/" + }, + { + "@id": "https://www.bioversityinternational.org/fileadmin/user_upload/online_library/publications/pdfs/FAO-Bioversity_multi_crop_passport_descriptors_V_2_Final_rev_1526.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The FAO/Bioversity/IPGRI Multi-Crop Passport Descriptors (MCPD) is an international standard format for exchange of germplasm information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Bioversity MCPD" + }, + { + "@value": "MCPD V.2" + }, + { + "@value": "MCPD V.1" + }, + { + "@value": "FAO MCPD" + }, + { + "@value": "MCPD format" + }, + { + "@value": "IPGRI MCPD" + }, + { + "@value": "Multi-Crop Passport Descriptors format" + }, + { + "@value": "Multi-Crop Passport Descriptors" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Multi-Crop Passport Descriptors is a format available in 2 successive versions, V.1 (FAO/IPGRI 2001) and V.2 (FAO/Bioversity 2012)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MCPD" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Multi-Crop_Passport_Descriptor" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N27bf139d43ed4073a22885207e5abbfe" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "_:N396687d9097d4453be0cbfb7aab92efe" + }, + { + "@id": "http://edamontology.org/format_3706" + }, + { + "@id": "_:N23667366e03c49789f9913a182d5e0c4" + } + ] + }, + { + "@id": "_:N27bf139d43ed4073a22885207e5abbfe", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3113" + } + ] + }, + { + "@id": "_:N396687d9097d4453be0cbfb7aab92efe", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2530" + } + ] + }, + { + "@id": "_:N23667366e03c49789f9913a182d5e0c4", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3567" + } + ] + }, + { + "@id": "http://edamontology.org/format_1943", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Intelligenetics sequence format (strict version)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "igstrict" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3604", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.w3.org/Graphics/SVG/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Scalable Vector Graphics (SVG) is an XML-based vector image format for two-dimensional graphics with support for interactivity and animation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Scalable Vector Graphics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SVG" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_3547" + } + ] + }, + { + "@id": "http://edamontology.org/format_4000", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "rmd" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A file format for making dynamic documents (R Markdown scripts) with the R language." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "R markdown" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "https://rmarkdown.rstudio.com/articles_intro.html" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2032" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_1735", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for abstracts of scientific articles from the Medline database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Bibliographic reference information including citation information is included" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Medline Display Format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2848" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1050", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name (or part of a name) of a file (of any type)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "File name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/format_1579", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the TIGRFam protein secondary database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TIGRFam entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1837", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:SymmetryContact" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the number of symmetry contacts made by residues in a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2950" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A symmetry contact is a contact between two atoms in different asymmetric unit." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Residue symmetry contact calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2142", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2968" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An image of a graph generated by the EMBOSS suite." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS graph" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3288", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://pngu.mgh.harvard.edu/~purcell/plink/data.shtml#ped" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The PED/MAP file describes data used by the Plink package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Plink PED/MAP" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PED/MAP" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3287" + } + ] + }, + { + "@id": "http://edamontology.org/data_1298", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0858" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif matches" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2759", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for a gene from the VectorBase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "VectorBase ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (VectorBase)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2295" + } + ] + }, + { + "@id": "http://edamontology.org/format_3970", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://vega.github.io/vega-lite/docs/#spec" + }, + { + "@id": "https://vega.github.io/vega-lite/docs/" + }, + { + "@id": "https://doi.org/10.1109/TVCG.2016.2599030" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://vega.github.io/vega-lite/examples/" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "json" + } + ], + "http://edamontology.org/media_type": [ + { + "@value": "application/json" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "http://idl.cs.washington.edu/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Vega-Lite is a high-level grammar of interactive graphics. It provides a concise JSON syntax for rapidly generating visualizations to support analysis. Vega-Lite specifications can be compiled to Vega specifications." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Vega-lite" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_3464" + } + ] + }, + { + "@id": "http://edamontology.org/format_1437", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the TreeFam database of phylogenetic data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TreeFam format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2556" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3551", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://teem.sourceforge.net/nrrd/format.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Nearly Raw Rasta Data format designed to support scientific visualisation and image processing involving N-dimensional raster data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "nrrd" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3547" + } + ] + }, + { + "@id": "http://edamontology.org/data_2140", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The concentration of a chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Concentration" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2050" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0403", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate isoelectric point of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein isoelectric point calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N868bbeed78ca4271b5a95ed1a6fd5d16" + }, + { + "@id": "http://edamontology.org/operation_0400" + } + ] + }, + { + "@id": "_:N868bbeed78ca4271b5a95ed1a6fd5d16", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1528" + } + ] + }, + { + "@id": "http://edamontology.org/data_1491", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1479" + }, + { + "@id": "http://edamontology.org/data_1482" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of exactly two nucleic acid tertiary (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment (nucleic acid pair)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0144", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0130" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The processing and analysis of inter-atomic or inter-residue interactions in protein (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein residue interactions" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1533", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0896" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on protein subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or destination (exported / extracellular proteins)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein subcellular localisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0831", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0582" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Controlled vocabulary from National Library of Medicine. The MeSH thesaurus is used to index articles in biomedical journals for the Medline/PubMED databases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MeSH vocabulary" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2481", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse nucleic acid tertiary structural data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid structure analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N2e1bae01d69c4a78b4b439388ea34d0a" + }, + { + "@id": "http://edamontology.org/operation_2480" + }, + { + "@id": "_:Ne6306614ed814ca7aba55a4f27ed93b8" + } + ] + }, + { + "@id": "_:N2e1bae01d69c4a78b4b439388ea34d0a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0097" + } + ] + }, + { + "@id": "_:Ne6306614ed814ca7aba55a4f27ed93b8", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1459" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2950", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:HasMetalContactsPlus" + }, + { + "@value": "WHATIF:ShowDrugContactsShort" + }, + { + "@value": "WHATIF:HasNegativeIonContactsPlus" + }, + { + "@value": "WHATIF:HasNegativeIonContacts" + }, + { + "@value": "WHATIF:HasMetalContacts" + }, + { + "@value": "WHATIF:ShowDrugContacts" + }, + { + "@value": "WHATIF:HasNucleicContacts" + }, + { + "@value": "WHATIF: HETGroupNames" + }, + { + "@value": "WHATIF:ShowProteiNucleicContacts" + }, + { + "@value": "WHATIF:ShowLigandContacts" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate contacts between residues, or between residues and other groups, in a protein structure, on the basis of distance calculations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "HET group detection" + }, + { + "@value": "Residue contact calculation (residue-metal)" + }, + { + "@value": "Residue contact calculation (residue-ligand)" + }, + { + "@value": "Residue contact calculation (residue-negative ion)" + }, + { + "@value": "Residue contact calculation (residue-nucleic acid)" + }, + { + "@value": "WHATIF:SymmetryContact" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes identifying HET groups, which usually correspond to ligands, lipids, but might also (not consistently) include groups that are attached to amino acids. Each HET group is supposed to have a unique three letter code and a unique name which might be given in the output. It can also include calculation of symmetry contacts, i.e. a contact between two atoms in different asymmetric unit." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Residue distance calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0248" + } + ] + }, + { + "@id": "http://edamontology.org/data_1027", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs:NCBI_Gene" + }, + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs:LocusID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An NCBI unique identifier of a gene." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "NCBI geneid" + }, + { + "@value": "Gene identifier (Entrez)" + }, + { + "@value": "Gene identifier (NCBI)" + }, + { + "@value": "NCBI gene ID" + }, + { + "@value": "Entrez gene ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (NCBI)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1098" + }, + { + "@id": "http://edamontology.org/data_2295" + } + ] + }, + { + "@id": "http://edamontology.org/format_1335", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of results of a sequence database search using some variant of Smith Waterman." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Smith-Waterman format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2066" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0724", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc., curation of a particular protein or protein family, or any other proteins that have been classified as members of a common group." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0623" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein families" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_1308", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Matrix/scaffold attachment regions (MARs/SARs) in a DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3125" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Matrix/scaffold attachment sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0783", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). Definition is wrong anyway." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Pathogens, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The resource may be specific to a pathogen, a group of pathogens or all pathogens." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathogens" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2674", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Cavia porcellus' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Cavia porcellus')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1719", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0966" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term from the NCBI taxonomy vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NCBI taxonomy vocabulary" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0644", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A specific proteome including protein sequences and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Proteome" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3383", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The use of imaging techniques to understand biology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biological imaging" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Biological_imaging" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Bioimaging" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Biological_imaging" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3382" + } + ] + }, + { + "@id": "http://edamontology.org/data_1890", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier for an Arabidopsis gene, which is an acronym or abbreviation of the gene name." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (Arabidopsis)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0007", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A bioinformatics package or tool, e.g. a standalone application or web service." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0958" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tool" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3405", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study, diagnosis, prevention and treatments of disorders of the oral cavity, maxillofacial area and adjacent structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Dentistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Dentistry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Dentistry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2411", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0297" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) one or more structural (3D) profile(s) or template(s) of some type." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural profile processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1869", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of a (group of) organisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Organism identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:N4b6119dbac9c421a8e6c0fe31538eafc" + } + ] + }, + { + "@id": "_:N4b6119dbac9c421a8e6c0fe31538eafc", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2530" + } + ] + }, + { + "@id": "http://edamontology.org/data_1371", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1364" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "NULL hidden Markov model representation used by the HMMER package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HMMER NULL hidden Markov model" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1269", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1978" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation of a molecular sequence in DAS format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DAS sequence feature annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1463", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for the (3D) structure of a small molecule, such as any common chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "CHEBI:23367" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Small molecule structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N12a512e9b5f544a9a39b3e3cc1ef3940" + }, + { + "@id": "http://edamontology.org/data_0883" + } + ] + }, + { + "@id": "_:N12a512e9b5f544a9a39b3e3cc1ef3940", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0154" + } + ] + }, + { + "@id": "http://edamontology.org/data_2301", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A specification of a chemical structure in SMILES format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SMILES string" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0846" + } + ] + }, + { + "@id": "http://edamontology.org/data_3483", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The spectrum of frequencies of electromagnetic radiation emitted from a molecule as a result of some spectroscopy experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Spectra" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Spectrum" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2497", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.24" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_3927" + }, + { + "@id": "http://edamontology.org/operation_3928" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate, process or analyse a biological pathway or network." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway or network analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1247", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from the COG database of clusters of (related) protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "COG sequence cluster format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3078", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0623" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Specific genes and/or their encoded proteins or a family or other grouping of related genes and proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genes and proteins resources" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1364", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states. For example, a hidden Markov model representation of a set or alignment of sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "HMM" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hidden Markov model" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0950" + } + ] + }, + { + "@id": "_:N56ac24df2dc04c068b8aee4d3f0e1d57", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "In very unusual cases." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#isCyclic" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/is_function_of" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3558", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information concerning a clinical trial." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Clinical trial information" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Clinical trial report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/data_1711", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Image of two or more aligned molecular sequences possibly annotated with alignment features." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2968" + } + ] + }, + { + "@id": "http://edamontology.org/format_3331", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML format as produced by the NCBI Blast package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BLAST XML results format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1333" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0616", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_2229" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A specific organelle, or organelles in general, typically the genes and proteins (or genome and proteome)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Organelles" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0501", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2488" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align protein secondary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2488" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure alignment generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2543", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A format resembling EMBL entry (plain text) format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept may be used for the many non-standard EMBL-like formats." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBL-like format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1919" + } + ] + }, + { + "@id": "http://edamontology.org/data_2733", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1870" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a genus of viruses." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genus name (virus)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1591", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "RNA parameters used by the Vienna package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Vienna RNA parameters" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0199", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Stable, naturally occurring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "DNA variation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Genetic_variation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Mutation" + }, + { + "@value": "Somatic mutations" + }, + { + "@value": "Genomic variation" + }, + { + "@value": "Polymorphism" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic variation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Genetic_variation" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D014644" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0622" + }, + { + "@id": "http://edamontology.org/topic_3321" + } + ] + }, + { + "@id": "http://edamontology.org/format_1951", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PDB nucleotide sequence format (ATOM lines)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "pdbnuc format in EMBOSS." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pdbatomnuc" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_1475" + } + ] + }, + { + "@id": "http://edamontology.org/data_3117", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning the hybridisations measured during a microarray experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microarray hybridisation data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2603" + } + ] + }, + { + "@id": "http://edamontology.org/data_2670", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a signaling pathway from the Database of Quantitative Cellular Signaling (DQCS)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (DQCS)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2365" + } + ] + }, + { + "@id": "http://edamontology.org/format_1953", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PDB sequence format (SEQRES lines)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "pdbseq format in EMBOSS." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pdbseqres" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_1475" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1823", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the solvent accessibility ('accessible molecular surface') for a structure as a whole." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0387" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein surface calculation (accessible molecular)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3284", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.ncbi.nlm.nih.gov/Traces/trace.cgi?cmd=show&f=formats&m=doc&s=format#sff" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.ncbi.nlm.nih.gov/Traces/trace.cgi?cmd=show&f=formats&m=doc&s=format#sff" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Standard flowgram format (SFF) is a binary file format used to encode results of pyrosequencing from the 454 Life Sciences platform for high-throughput sequencing." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Standard flowgram format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SFF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_2057" + } + ] + }, + { + "@id": "http://edamontology.org/data_1859", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A cytogenetic map showing chromosome banding patterns in mutant cell lines relative to the wild type." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Deletion-based cytogenetic map" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A cytogenetic map is built from a set of mutant cell lines with sub-chromosomal deletions and a reference wild-type line ('genome deletion panel'). The panel is used to map markers onto the genome by comparing mutant to wild-type banding patterns. Markers are linked (occur in the same deleted region) if they share the same banding pattern (presence or absence) as the deletion panel." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Deletion map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1283" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0642", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0157" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The (character) complexity of molecular sequences, particularly regions of low complexity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Low complexity sequences" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3162", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.mged.org/mage-tab" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.mged.org/mage-tab" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "MAGE-TAB textual format for microarray expression data, standardised by MGED (now FGED)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MAGE-TAB" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N135e0d93b7fa48d3985d46cf43258362" + }, + { + "@id": "http://edamontology.org/format_3475" + }, + { + "@id": "http://edamontology.org/format_2058" + } + ] + }, + { + "@id": "_:N135e0d93b7fa48d3985d46cf43258362", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3111" + } + ] + }, + { + "@id": "http://edamontology.org/data_1801", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1035" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Tbrucei" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene identifier from Trypanosoma brucei GeneDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (GeneDB Trypanosoma brucei)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "_:N680cd4b7541d4fb3811a6807ded6fdbb", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A protein entity has the MIRIAM data type 'UniProt', and an enzyme has the MIRIAM data type 'Enzyme Nomenclature'." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://edamontology.org/example" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/data_1165" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "UniProt|Enzyme Nomenclature" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3523", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "RNAi experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "RNAi_experiment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNAi experiment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/RNA_interference" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3361" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0697", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0097" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "RNA secondary or tertiary structure and alignments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2422", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Retrieve an entry (or part of an entry) from a data resource that matches a supplied query. This might include some primary data and annotation. The query is a data identifier or other indexed term. For example, retrieve a sequence record with the specified accession number, or matching supplied keywords." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Retrieval" + }, + { + "@value": "Data extraction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Metadata retrieval" + }, + { + "@value": "Data retrieval (metadata)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ndd563b41384949e2b2448befe2b4a2a8" + }, + { + "@id": "http://edamontology.org/operation_0224" + }, + { + "@id": "http://edamontology.org/operation_3908" + } + ] + }, + { + "@id": "_:Ndd563b41384949e2b2448befe2b4a2a8", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0842" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0090", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_3071" + }, + { + "@id": "http://edamontology.org/topic_3489" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The search and query of data sources (typically databases or ontologies) in order to retrieve entries or other information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Information retrieval" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2155", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used for map of repeats in molecular (typically nucleotide) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence features (repeats) format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0421", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2415" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict protein sites that are key to protein folding, such as possible sites of nucleation or stabilisation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2415" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein folding site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3063", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The application of information technology to health, disease and biomedicine." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Healthcare informatics" + }, + { + "@value": "Health informatics" + }, + { + "@value": "Health and disease" + }, + { + "@value": "Clinical informatics" + }, + { + "@value": "Biomedical informatics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Medical_informatics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Medical informatics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Health_informatics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0605" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2949", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse the interactions of proteins with other proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein interaction analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein interaction raw data analysis" + }, + { + "@value": "Protein interaction simulation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Includes analysis of raw experimental protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-protein interaction analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N1bfc7894995a4cbc9125aa287eeedfc9" + }, + { + "@id": "_:N5f1aea3a1b034468881030dfe19b639c" + }, + { + "@id": "http://edamontology.org/operation_1777" + } + ] + }, + { + "@id": "_:N1bfc7894995a4cbc9125aa287eeedfc9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ] + }, + { + "@id": "_:N5f1aea3a1b034468881030dfe19b639c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0906" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0269", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict and/or classify transmembrane proteins or transmembrane (helical) domains or regions in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transmembrane protein prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0270" + }, + { + "@id": "http://edamontology.org/operation_0267" + } + ] + }, + { + "@id": "http://edamontology.org/data_0849", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "SO:2000061" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A molecular sequence and associated metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence record" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D058977" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2044" + } + ] + }, + { + "@id": "http://edamontology.org/data_2354", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about a specific RNA family or other group of classified RNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "RNA family annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA family report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3148" + } + ] + }, + { + "@id": "http://edamontology.org/data_1092", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Class of an object from the WormBase database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A WormBase class describes the type of object such as 'sequence' or 'protein'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "WormBase class" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2113" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0694", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein secondary structure or secondary structure alignments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_2814" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes assignment, analysis, comparison, prediction, rendering etc. of secondary structure data." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1323", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "cleavage sites (for a proteolytic enzyme or agent) in a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features report (cleavage sites)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2566", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a molecular sequence without any unknown positions or ambiguity characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "completely unambiguous" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2571" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/data_1025", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:GeneAccessionList" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a gene, such as a name/symbol or a unique identifier of a gene in a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:Nf2a0e0c084b14c758670a3af83f7d548" + } + ] + }, + { + "@id": "_:Nf2a0e0c084b14c758670a3af83f7d548", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0916" + } + ] + }, + { + "@id": "http://edamontology.org/data_1414", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0867" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on molecular sequence alignment quality (estimated accuracy)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment metadata (quality report)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1979", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBOSS debugging trace feature format of full internal data content." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "debug-feat" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1920" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3504", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify and map patterns of genomic variations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods often utilise a database of aligned reads." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Variant pattern analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3197" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3336", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The discovery and design of drugs or potential drug compounds." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Drug_discovery" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes methods that search compound collections, generate or analyse drug 3D conformations, identify drug targets with structural docking etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drug discovery" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Drug_discovery" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3314" + }, + { + "@id": "http://edamontology.org/topic_3376" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0250", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Extract, calculate or predict non-positional (physical or chemical) properties of a protein, including any non-positional properties of the molecular sequence, from processing a protein sequence or 3D structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein property rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein structural property calculation" + }, + { + "@value": "Structural property calculation" + }, + { + "@value": "Protein property calculation (from sequence)" + }, + { + "@value": "Protein property calculation (from structure)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes methods to render and visualise the properties of a protein sequence, and a residue-level search for properties such as solvent accessibility, hydropathy, secondary structure, ligand-binding etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein property calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2423" + }, + { + "@id": "http://edamontology.org/operation_3438" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2815", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of human beings in general, including the human genome and proteome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Humans" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Human_biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Human biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Human_biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/data_1906", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2012" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:SO_QTL" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A stretch of DNA that is closely linked to the genes underlying a quantitative trait (a phenotype that varies in degree and depends upon the interactions between multiple genes and their environment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A QTL sometimes but does not necessarily correspond to a gene." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Quantitative trait locus" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1942", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Intelligenetics sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ig" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/format_1571", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the textual abstract of signatures in an InterPro entry and its protein matches." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "References are included and a functional inference is made where possible." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InterPro entry abstract format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0581", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A digital data archive typically based around a relational model but sometimes using an object-oriented, tree or graph-based model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0957" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0988", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a peptide chain." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptide identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0982" + } + ] + }, + { + "@id": "http://edamontology.org/data_3754", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "GO-term report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A ranked list of Gene Ontology concepts, each associated with a p-value, concerning or derived from the analysis of e.g. a set of genes or proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene ontology concept over-representation report" + }, + { + "@value": "GO-term enrichment report" + }, + { + "@value": "Gene ontology enrichment report" + }, + { + "@value": "Gene ontology term enrichment report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GO-term enrichment data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3753" + }, + { + "@id": "_:Ne8943b3b55e742069a0547bcf803e2ce" + } + ] + }, + { + "@id": "_:Ne8943b3b55e742069a0547bcf803e2ce", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1775" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1828", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "For each amino acid in a protein structure calculate the backbone angle tau." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0249" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Tau is the backbone angle N-Calpha-C (angle over the C-alpha)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tau angle calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1402", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The score (penalty) for a 'mismatch' used in various alignment and sequence database search applications with simple scoring schemes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mismatch penalty score" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1394" + } + ] + }, + { + "@id": "http://edamontology.org/is_refactor_candidate", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "When 'true', the concept has been proposed to be refactored." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "refactor_candidate" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0654", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DNA sequences and structure, including processes such as methylation and replication." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "DNA analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "DNA" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Ancient DNA" + }, + { + "@value": "Chromosomes" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The DNA sequences might be coding or non-coding sequences." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/DNA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0077" + } + ] + }, + { + "@id": "http://edamontology.org/data_1451", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1448" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Matrix of floating point numbers for nucleotide comparison." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleotide comparison matrix (floats)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1095", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a sequence-based entity adhering to the standard sequence naming scheme used by all EMBOSS applications." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "EMBOSS USA" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS Uniform Sequence Address" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1063" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/data_1085", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a mathematical model, typically an entry from a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biological model identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biological model ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:N8629647b0c11463386adce11eee46219" + } + ] + }, + { + "@id": "_:N8629647b0c11463386adce11eee46219", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0950" + } + ] + }, + { + "@id": "_:N8d95461fd84c45fe8ee504bfd17b4398", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "In very unusual cases." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#isCyclic" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/is_input_of" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3713", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://github.com/compomics/mascotdatfile" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "\"Raw\" result file from Mascot database search." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mascot .dat file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2278", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0082" + }, + { + "@id": "http://edamontology.org/topic_0820" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict transmembrane domains and topology in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transmembrane protein prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0151", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0820" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "G-protein coupled receptors (GPCRs)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "G protein-coupled receptors (GPCR)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0333", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0420" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0420" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Zinc finger prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3670", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A training course available for use on the Web." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "On-line course" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "MOOC" + }, + { + "@value": "Massive open online course" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Online course" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3669" + } + ] + }, + { + "@id": "http://edamontology.org/data_2313", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about one or more specific carbohydrate 3D structure(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Carbohydrate report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2085" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3534", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Binding sites in proteins, including cleavage sites (for a proteolytic enzyme or agent), key residues involved in protein folding, catalytic residues (active site) of an enzyme, ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids, RNA and DNA-binding proteins and binding sites etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_binding_sites" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Enzyme active site" + }, + { + "@value": "Protein functional sites" + }, + { + "@value": "Protein-nucleic acid binding sites" + }, + { + "@value": "Protein cleavage sites" + }, + { + "@value": "Protein key folding sites" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein binding sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Binding_site" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3510" + } + ] + }, + { + "@id": "http://edamontology.org/data_1154", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an object from one of the KEGG databases (excluding the GENES division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KEGG object identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3662", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Prediction of genes or gene components from first principles, i.e. without reference to existing genes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene prediction (ab-initio)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ab-initio gene prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gene_prediction#Ab_initio_methods" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2454" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3552", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise images resulting from various types of microscopy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microscope image visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N256f838630604db49dc3e2c47f594358" + }, + { + "@id": "http://edamontology.org/operation_0337" + } + ] + }, + { + "@id": "_:N256f838630604db49dc3e2c47f594358", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3382" + } + ] + }, + { + "@id": "http://edamontology.org/data_2976", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_primary_structure" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "One or more protein sequences, possibly with associated annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein sequences" + }, + { + "@value": "Amino acid sequences" + }, + { + "@value": "Amino acid sequence" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.org/biotop/biotop.owl#AminoAcidSequenceInformation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2044" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0329", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0474" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict the folding pathway(s) or non-native structural intermediates of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0474" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein folding pathway prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2489", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict the subcellular localisation of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein cellular localization prediction" + }, + { + "@value": "Protein targeting prediction" + }, + { + "@value": "Protein subcellular localisation prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The prediction might include subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or export (extracellular proteins) of a protein." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Subcellular localisation prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Subcellular_localization" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N3730abbb25ef4878998e6222db7acf5e" + }, + { + "@id": "http://edamontology.org/operation_1777" + } + ] + }, + { + "@id": "_:N3730abbb25ef4878998e6222db7acf5e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0140" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3052", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The comparison, grouping together and classification of macromolecules on the basis of sequence similarity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes the results of sequence clustering, ortholog identification, assignment to families, annotation etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence clusters and classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2531", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about about how a scientific experiment or analysis was carried out that results in a specific set of data or results used for further analysis or to test a specific hypothesis." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Experiment report" + }, + { + "@value": "Experiment annotation" + }, + { + "@value": "Experiment metadata" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protocol" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3929", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict a metabolic pathway." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metabolic pathway prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3928" + }, + { + "@id": "http://edamontology.org/operation_2423" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2476", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Molecular dynamics simulation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein dynamics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular dynamics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Molecular_dynamics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N2599fb3333974a8391259d10b7bed534" + }, + { + "@id": "_:N9ad032d0bc0e4098bab8f8fb81b88a9e" + }, + { + "@id": "http://edamontology.org/operation_2426" + }, + { + "@id": "_:Nb0859f09e6a54720a99cf517e47ee0e7" + }, + { + "@id": "http://edamontology.org/operation_2480" + }, + { + "@id": "http://edamontology.org/operation_2423" + } + ] + }, + { + "@id": "_:N2599fb3333974a8391259d10b7bed534", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0176" + } + ] + }, + { + "@id": "_:N9ad032d0bc0e4098bab8f8fb81b88a9e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0082" + } + ] + }, + { + "@id": "_:Nb0859f09e6a54720a99cf517e47ee0e7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0883" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0533", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Map an expression profile to known biological pathways, for example, to identify or reconstruct a pathway." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Pathway mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Gene to pathway mapping" + }, + { + "@value": "Gene-to-pathway mapping" + }, + { + "@value": "Gene expression profile pathway mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Expression profile pathway mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nf8fdaede6f9e470ab70590f6858350f6" + }, + { + "@id": "http://edamontology.org/operation_2495" + }, + { + "@id": "http://edamontology.org/operation_3928" + }, + { + "@id": "http://edamontology.org/operation_2429" + } + ] + }, + { + "@id": "_:Nf8fdaede6f9e470ab70590f6858350f6", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2984" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3349", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construct a bibliography from the scientific literature." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Bibliography construction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Bibliography generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ned73e3fc82134110a785c7d9ab3dbd47" + }, + { + "@id": "http://edamontology.org/operation_3429" + } + ] + }, + { + "@id": "_:Ned73e3fc82134110a785c7d9ab3dbd47", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3505" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3282", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Map data identifiers to one another for example to establish a link between two biological databases for the purposes of data integration." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Identifier mapping" + }, + { + "@value": "Accession mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The mapping can be achieved by comparing identifier values or some other means, e.g. exact matches to a provided sequence." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ID mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2424" + }, + { + "@id": "http://edamontology.org/operation_2429" + } + ] + }, + { + "@id": "http://edamontology.org/data_1313", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Coding region" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3646", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Determination of best matches between MS/MS spectrum and a database of protein or nucleic acid sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptide database search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2421" + }, + { + "@id": "http://edamontology.org/operation_3631" + } + ] + }, + { + "@id": "http://edamontology.org/data_1399", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A penalty for gaps that are close together in an alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gap separation penalty" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2137" + } + ] + }, + { + "@id": "http://edamontology.org/data_1694", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Number of entities (for example database hits, sequences, alignments etc) to write to an output file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Number of output entities" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2884", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Biological data that has been plotted as a graph of some type, or plotting instructions for rendering such a graph." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Graph data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3042", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Nucleotide sequences and associated concepts such as sequence sites, alignments, motifs and profiles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequences" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3889", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://ambermd.org/doc/OFF_file_format.txt" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "AMBER Object File Format library files (OFF library files) store residue libraries (forcefield residue parameters)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "AMBER Object File Format" + }, + { + "@value": "AMBER lib" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "AMBER off" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3884" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1507", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Experimental free energy values for the water-interface and water-octanol transitions for the amino acids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "White-Wimley data (amino acids)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid index (White-Wimley data)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1501" + } + ] + }, + { + "@id": "http://edamontology.org/data_3035", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a molecular tertiary structure, typically an entry from a structure database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:N61793b5ebd1e465dbf158fda62676876" + } + ] + }, + { + "@id": "_:N61793b5ebd1e465dbf158fda62676876", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0883" + } + ] + }, + { + "@id": "http://edamontology.org/data_2296", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of an entry (gene) from the AceView genes database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (AceView)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2276", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_1775" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The prediction of functional properties of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein function prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3417", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Optometry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.18 Optometry" + }, + { + "@value": "VT 3.2.17 Ophthalmology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with disorders of the eye, including eyelid, optic nerve/visual pathways and occular muscles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Ophthalmology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Eye disoders" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ophthalmology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Ophthalmology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_3496", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - \"raw\" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata)." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.23" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_2975" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A raw RNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_3495" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA sequence (raw)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0420", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict or detect RNA and DNA-binding binding sites in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein-nucleic acid binding detection" + }, + { + "@value": "Protein-nucleic acid binding site prediction" + }, + { + "@value": "Protein-nucleic acid binding site detection" + }, + { + "@value": "Protein-nucleic acid binding prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Zinc finger prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes methods that predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acids-binding site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2575" + } + ] + }, + { + "@id": "http://edamontology.org/format_2077", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for secondary structure (predicted or real) of a protein molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "http://edamontology.org/data_1309", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on exonic splicing enhancers (ESE) in an exon." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene features (exonic splicing enhancer)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3568", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry from the Gene Expression Atlas." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene Expression Atlas Experiment ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1078" + } + ] + }, + { + "@id": "http://edamontology.org/data_2053", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2085" + }, + { + "@id": "http://edamontology.org/data_0883" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning molecular structural data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3237", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Adapter removal" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Remove forward and/or reverse primers from nucleic acid sequences (typically PCR products)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Primer removal" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0369" + } + ] + }, + { + "@id": "http://edamontology.org/data_2584", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2339" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a concept for a cellular component from the GO ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GO concept name (cellular component)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3975", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://gfa-spec.github.io/GFA-spec/" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://raw.githubusercontent.com/sjackman/gfalint/master/examples/big1.gfa" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "gfa" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "https://github.com/GFA-spec" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Graphical Fragment Assembly (GFA) 1.0" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GFA 1" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://gfa-spec.github.io/GFA-spec/GFA2.html#backward-compatibility-with-gfa-1" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2561" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1479", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of exactly two molecular tertiary (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Pair structure alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment (pair)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0886" + } + ] + }, + { + "@id": "http://edamontology.org/format_2096", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alphabet for a molecular sequence with possible unknown positions but without ambiguity characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "unambiguous sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2571" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0391", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate a matrix of distance between residues (for example the C-alpha atoms) in a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein distance matrix calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N95f7bd807fe04f2ba628338f5bf91803" + }, + { + "@id": "http://edamontology.org/operation_2950" + } + ] + }, + { + "@id": "_:N95f7bd807fe04f2ba628338f5bf91803", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1546" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2487", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare protein tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure comparison (protein)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might identify structural neighbors, find structural similarities or define a structural core." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_structure_comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2997" + }, + { + "@id": "_:N4bda6e7c767f405892953eb0a8ae9d98" + }, + { + "@id": "http://edamontology.org/operation_2483" + }, + { + "@id": "http://edamontology.org/operation_2406" + } + ] + }, + { + "@id": "_:N4bda6e7c767f405892953eb0a8ae9d98", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1460" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0097", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The archival, curation, processing and analysis of nucleic acid structural information, such as whole structures, structural features and alignments, and associated annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid structure" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Nucleic_acid_structure_analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "RNA alignment" + }, + { + "@value": "RNA structure" + }, + { + "@value": "Nucleic acid denaturation" + }, + { + "@value": "Nucleic acid thermodynamics" + }, + { + "@value": "DNA structure" + }, + { + "@value": "DNA melting" + }, + { + "@value": "RNA structure alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Includes secondary and tertiary nucleic acid structural data, nucleic acid thermodynamic, thermal and conformational properties including DNA or DNA/RNA denaturation (melting) etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid structure analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Nucleic_acid_structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0081" + }, + { + "@id": "http://edamontology.org/topic_0077" + } + ] + }, + { + "@id": "http://edamontology.org/format_2000", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "SELEX format for (aligned) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "selex" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/data_3154", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.24" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2928" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1481" + }, + { + "@id": "http://edamontology.org/data_1384" + }, + { + "@id": "http://edamontology.org/data_0878" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An alignment of protein sequences and/or structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1380", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2071" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein post-translational modification signature (sequence classifier) from the InterPro database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A protein post-translational modification signature corresponds to sites that undergo modification of the primary structure, typically to activate or de-activate a function. For example, methylation, sumoylation, glycosylation etc. The modification might be permanent or reversible." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein post-translational modification signature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0272", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict contacts, non-covalent interactions and distance (constraints) between amino acids in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Residue interaction prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Contact map prediction" + }, + { + "@value": "Protein contact map prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods usually involve multiple sequence alignment analysis." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Residue contact prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0250" + }, + { + "@id": "http://edamontology.org/operation_2479" + }, + { + "@id": "_:Nf171767590a84f27a191c58bcee9d490" + } + ] + }, + { + "@id": "_:Nf171767590a84f27a191c58bcee9d490", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0130" + } + ] + }, + { + "@id": "http://edamontology.org/format_3579", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.fileformat.info/format/jpeg/egff.htm" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Joint Picture Group file format for lossy graphics file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "JPEG" + }, + { + "@value": "jpeg" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "JPG" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/format_2040", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of phylogenetic invariants data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree report (invariants) format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N41820aeae335454a9f3a2fc7a3712fe5" + }, + { + "@id": "http://edamontology.org/format_2036" + } + ] + }, + { + "@id": "_:N41820aeae335454a9f3a2fc7a3712fe5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1429" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3470", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0278" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict RNA secondary structure by analysis, e.g. probabilistic analysis, of the shape of RNA folds." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0278" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA secondary structure prediction (shape-based)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2109", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier that is re-used for data objects of fundamentally different types (typically served from a single database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This branch provides an alternative organisation of the concepts nested under 'Accession' and 'Name'. All concepts under here are already included under 'Accession' or 'Name'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Identifier (hybrid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0842" + } + ] + }, + { + "@id": "http://edamontology.org/data_2084", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about one or more specific nucleic acid molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/format_1228", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from UniGene." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A UniGene entry includes a set of transcript sequences assigned to the same transcription locus (gene or expressed pseudogene), with information on protein similarities, gene expression, cDNA clone reagents, and genomic location." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniGene entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3846", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://github.com/ebi-pf-team/interproscan/wiki/OutputFormats" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Output xml file from the InterProScan sequence analysis application." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InterProScan XML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_3097" + } + ] + }, + { + "@id": "http://edamontology.org/format_3911", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://mash.readthedocs.io/en/latest/sketches.html" + }, + { + "@id": "https://en.wikipedia.org/wiki/MinHash" + }, + { + "@id": "https://doi.org/10.1186/s13059-016-0997-x" + }, + { + "@id": "https://raw.githubusercontent.com/marbl/Mash/master/src/mash/capnp/MinHash.capnp" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://mash.readthedocs.io/en/latest/tutorials.html#querying-read-sets-against-an-existing-refseq-sketch" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "msh" + } + ], + "http://edamontology.org/information_standard": [ + { + "@id": "https://capnproto.org/cxx.html" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "http://bnbi.org" + }, + { + "@id": "https://www.genome.gov/27562809/phillippy-group/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mash sketch is a format for sequence / sequence checksum information. To make a sketch, each k-mer in a sequence is hashed, which creates a pseudo-random identifier. By sorting these hashes, a small subset from the top of the sorted list can represent the entire sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "min-hash sketch" + }, + { + "@value": "Mash sketch" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "msh" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_2571" + }, + { + "@id": "_:Naeacb15a4e564c228a98c3f9c128f0c9" + } + ] + }, + { + "@id": "_:Naeacb15a4e564c228a98c3f9c128f0c9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2190" + } + ] + }, + { + "@id": "http://edamontology.org/data_1118", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier or name of a HMMER hidden Markov model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HMMER hidden Markov model ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "_:N8f49945ae14c4ec4bf5776e3e75d60e9" + }, + { + "@id": "http://edamontology.org/data_1115" + } + ] + }, + { + "@id": "_:N8f49945ae14c4ec4bf5776e3e75d60e9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1364" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0425", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect, predict and identify whole gene structure in DNA sequences. This includes protein coding regions, exon-intron structure, regulatory regions etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2454" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Whole gene prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3299", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.16 Evolutionary biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The evolutionary processes, from the genetic to environmental scale, that produced life in all its diversity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Evolution" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Evolutionary_biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Evolutionary biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Evolutionary_biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/data_1695", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Controls the order of hits (reported matches) in an output file from a database search." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hit sort order" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0441", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify, predict or analyse cis-regulatory elements in DNA sequences (TATA box, Pribnow box, SOS box, CAAT box, CCAAT box, operator etc.) or in RNA sequences (e.g. riboswitches)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Transcriptional regulatory element prediction (DNA-cis)" + }, + { + "@value": "Transcriptional regulatory element prediction (RNA-cis)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Cis-regulatory elements (cis-elements) regulate the expression of genes located on the same strand from which the element was transcribed. Cis-elements are found in the 5' promoter region of the gene, in an intron, or in the 3' untranslated region. Cis-elements are often binding sites of one or more trans-acting factors. They also occur in RNA sequences, e.g. a riboswitch is a region of an mRNA molecule that bind a small target molecule that regulates the gene's activity." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "cis-regulatory element prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0438" + } + ] + }, + { + "@id": "http://edamontology.org/data_1417", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0858" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of molecular sequences to a Domainatrix signature (representing a sequence alignment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence-profile alignment (Domainatrix signature)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1604", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of DictyBase genome database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DictyBase gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0270", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse transmembrane protein(s), typically by processing sequence and / or structural data, and write an informative report for example about the protein and its transmembrane domains / regions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Use this (or child) concept for analysis of transmembrane domains (buried and exposed faces), transmembrane helices, helix topology, orientation, inter-helical contacts, membrane dipping (re-entrant) loops and other secondary structure etc. Methods might use pattern discovery, hidden Markov models, sequence alignment, structural profiles, amino acid property analysis, comparison to known domains or some combination (hybrid methods)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transmembrane protein analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2945" + }, + { + "@id": "_:N4a1cc22b1b0c4186b809f6a8dc0b5988" + } + ] + }, + { + "@id": "_:N4a1cc22b1b0c4186b809f6a8dc0b5988", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0820" + } + ] + }, + { + "@id": "http://edamontology.org/format_2196", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A serialisation format conforming to the Open Biomedical Ontologies (OBO) model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "OBO format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2195" + } + ] + }, + { + "@id": "http://edamontology.org/format_3746", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.1186/2047-217X-1-7" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://biom-format.org" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "biom" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The BIological Observation Matrix (BIOM) is a format for representing biological sample by observation contingency tables in broad areas of comparative omics. The primary use of this format is to represent OTU tables and metagenome tables." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "BIological Observation Matrix format" + }, + { + "@value": "biom" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "BIOM is a recognised standard for the Earth Microbiome Project, and is a project supported by Genomics Standards Consortium. Supported in QIIME, Mothur, MEGAN, etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BIOM format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3706" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3694", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise, format or render a mass spectrum." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mass spectrum visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0337" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3630", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Technique for determining the amount of proteins in a sample." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein quantitation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein quantification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3799" + }, + { + "@id": "_:Nbfdc9e7f9c8c42138d3903b2d6644def" + }, + { + "@id": "http://edamontology.org/operation_3214" + } + ] + }, + { + "@id": "_:Nbfdc9e7f9c8c42138d3903b2d6644def", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0943" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0747", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0640" + }, + { + "@id": "http://edamontology.org/topic_0160" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The archival, detection, prediction and analysis ofpositional features such as functional sites in nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sites and features" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3065", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The development of organisms between the one-cell stage (typically the zygote) and the end of the embryonic stage." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Embryology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Embryology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Embryology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3064" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0342", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0239" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a database of sequence profiles with a query sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence profile database search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0957", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Basic information on bioinformatics database(s) or other data sources such as name, type, description, URL etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2337" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0273", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2949" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse experimental protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2949" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction raw data analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2355", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an RNA family, typically an entry from a RNA sequence classification database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA family identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:Neae9c058f8254d1493e1b3b473813d71" + } + ] + }, + { + "@id": "_:Neae9c058f8254d1493e1b3b473813d71", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2354" + } + ] + }, + { + "@id": "http://edamontology.org/format_3508", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Portable Document Format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PDF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3507" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_1541", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1537" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Informative report on flexibility or motion of a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein flexibility or motion report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_1456", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0736" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein membrane regions" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2408", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0253" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse features in molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3585", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://bedtools.readthedocs.org/en/latest/content/general-usage.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://bedtools.readthedocs.org/en/latest/content/general-usage.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BED file format where each feature is described by chromosome, start, end, name, score, and strand." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 6" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "bed6" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3584" + } + ] + }, + { + "@id": "http://edamontology.org/topic_1811", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Specific bacteria or archaea, e.g. information on a specific prokaryote genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The resource may be specific to a prokaryote, a group of prokaryotes or all prokaryotes." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Prokaryotes and Archaea" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3968", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict adhesins in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "An adhesin is a cell-surface component that facilitate the adherence of a microorganism to a cell or surface. They are important virulence factors during establishment of infection and thus are targeted during vaccine development approaches that seek to block adhesin function and prevent adherence to host cell." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Adhesin prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Na346477a37db41578f183ce0722893c6" + }, + { + "@id": "http://edamontology.org/operation_3092" + }, + { + "@id": "http://edamontology.org/operation_2429" + } + ] + }, + { + "@id": "_:Na346477a37db41578f183ce0722893c6", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0804" + } + ] + }, + { + "@id": "http://edamontology.org/data_3034", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name or other identifier of molecular sequence feature(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N4ed4cc590a9b490bbb0c25cfc34df752" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N4ed4cc590a9b490bbb0c25cfc34df752", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3292", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.4 Biochemistry and molecular biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Chemical substances and physico-chemical processes and that occur within living organisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biological chemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Biochemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Glycomics" + }, + { + "@value": "Pathobiochemistry" + }, + { + "@value": "Phytochemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biochemistry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Biochemistry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3314" + }, + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3715", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Labeling all proteins and (possibly) all amino acids using C-13 or N-15 enriched grown medium or feed." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "N-15 metabolic labeling" + }, + { + "@value": "C-13 metabolic labeling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes N-15 metabolic labeling (labeling all proteins and (possibly) all amino acids using N-15 enriched grown medium or feed) and C-13 metabolic labeling (labeling all proteins and (possibly) all amino acids using C-13 enriched grown medium or feed)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metabolic labeling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3635" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3660", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Model a metabolic network. This can include 1) reconstruction to break down a metabolic pathways into reactions, enzymes, and other relevant information, and compilation of this into a mathematical model and 2) simulations of metabolism based on the model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@id": "http://edamontology.org/Metabolic%20pathway%20modelling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Metabolic network reconstruction" + }, + { + "@value": "Metabolic network simulation" + }, + { + "@value": "Metabolic reconstruction" + }, + { + "@value": "Metabolic pathway simulation" + }, + { + "@id": "http://edamontology.org/Metabolic%20pathway%20reconstruction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The terms and synyonyms here reflect that for practical intents and purposes, \"pathway\" and \"network\" can be treated the same." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metabolic network modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Metabolic_network_modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N5dd7c76b81c64823991868475e617e30" + }, + { + "@id": "http://edamontology.org/operation_3927" + }, + { + "@id": "http://edamontology.org/operation_3928" + } + ] + }, + { + "@id": "_:N5dd7c76b81c64823991868475e617e30", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2259" + } + ] + }, + { + "@id": "http://edamontology.org/data_1506", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Hydrophobic, hydrophilic or charge properties of amino acids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Hydropathy (amino acids)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid index (hydropathy)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1501" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2938", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise clustered expression data using a tree diagram." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Dendrograph plotting" + }, + { + "@value": "Dendrograph visualisation" + }, + { + "@value": "Expression data tree visualisation" + }, + { + "@value": "Dendrogram plotting" + }, + { + "@value": "Expression data tree or dendrogram rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Microarray matrix tree plot rendering" + }, + { + "@value": "Microarray tree or dendrogram rendering" + }, + { + "@value": "Microarray checks view rendering" + }, + { + "@value": "Microarray 2-way dendrogram rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Dendrogram visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Dendrogram" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0571" + } + ] + }, + { + "@id": "http://edamontology.org/data_1786", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Primary name of a gene from EcoGene Database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (EcoGene primary)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0355", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search sequence(s) or a sequence database for sequences which match a set of peptide masses, for example a peptide mass fingerprint from mass spectrometry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2929" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database search (by molecular weight)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1523", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A plot of the mean charge of the amino acids within a window of specified length as the window is moved along a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein charge plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/data_3442", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An imaging technique that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MRT image" + }, + { + "@value": "NMRI image" + }, + { + "@value": "Nuclear magnetic resonance imaging image" + }, + { + "@value": "Magnetic resonance imaging image" + }, + { + "@value": "Magnetic resonance tomography image" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MRI image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3424" + }, + { + "@id": "_:Nc881fb7d80b0435cbdc4c13be1d1a7c3" + } + ] + }, + { + "@id": "_:Nc881fb7d80b0435cbdc4c13be1d1a7c3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3384" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3631", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Determination of peptide sequence from mass spectrum." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Peptide-spectrum-matching" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptide identification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nb00f24d99f7e40618e85ebfb05311b1b" + }, + { + "@id": "http://edamontology.org/operation_3214" + } + ] + }, + { + "@id": "_:Nb00f24d99f7e40618e85ebfb05311b1b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0943" + } + ] + }, + { + "@id": "http://edamontology.org/data_2905", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of an entry from a database of lipids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Lipid accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2812" + }, + { + "@id": "http://edamontology.org/data_2901" + } + ] + }, + { + "@id": "http://edamontology.org/data_1597", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Table of codon usage data calculated from one or more nucleic acid sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A codon usage table might include the codon usage table name, optional comments and a table with columns for codons and corresponding codon usage data. A genetic code can be extracted from or represented by a codon usage table." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage table" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0914" + }, + { + "@id": "_:N3874f6336d024c1dbb074658fb058b05" + } + ] + }, + { + "@id": "_:N3874f6336d024c1dbb074658fb058b05", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3528", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Disease pathways, typically of human disease." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0602" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Disease pathways" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3128", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about regions within a nucleic acid sequence which form secondary or tertiary (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid features (structure)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Stem loop (report)" + }, + { + "@value": "d-loop (report)" + }, + { + "@value": "Quadruplexes (report)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The report may be based on analysis of nucleic acid sequence or structural data, or any annotation or information about specific nucleic acid 3D structure(s) or such structures in general." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid structure report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2084" + }, + { + "@id": "http://edamontology.org/data_2085" + } + ] + }, + { + "@id": "http://edamontology.org/format_1993", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1947" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "MSF format for (aligned) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "msf alignment format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1374", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1355" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein region signature (sequence classifier) from the InterPro database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A protein region signature defines a region which cannot be described as a protein family or domain signature." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein region signature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0858", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report on the location of matches (\"hits\") between sequences, sequence profiles, motifs (conserved or functional patterns) and other types of sequence signatures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Sequence profile matches" + }, + { + "@value": "Sequence motif hits" + }, + { + "@value": "Sequence motif matches" + }, + { + "@value": "Sequence profile hits" + }, + { + "@value": "Search results (protein secondary database)" + }, + { + "@value": "Profile-profile alignment" + }, + { + "@value": "Sequence-profile alignment" + }, + { + "@value": "Protein secondary database search results" + }, + { + "@value": "Sequence profile alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes reports of hits from a search of a protein secondary or domain database. Data associated with the search or alignment might also be included, e.g. ranked list of best-scoring sequences, a graphical representation of scores etc." + }, + { + "@value": "A \"sequence-profile alignment\" is an alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment)." + }, + { + "@value": "A \"profile-profile alignment\" is an alignment of two sequence profiles, each profile typically representing a sequence alignment." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence signature matches" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0860" + }, + { + "@id": "http://edamontology.org/data_1916" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0605", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.3.3 Information retrieval" + }, + { + "@value": "VT 1.3.4 Information management" + }, + { + "@value": "VT 1.3.99 Other" + }, + { + "@value": "VT 1.3 Information sciences" + }, + { + "@value": "VT 1.3.5 Knowledge management" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study and practice of information processing and use of computer information systems." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Information management" + }, + { + "@value": "Information science" + }, + { + "@value": "Knowledge management" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Informatics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Informatics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Informatics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3576", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.4.2 Health-related biotechnology" + }, + { + "@value": "VT 3.4 Medical biotechnology" + }, + { + "@value": "VT 3.4.1 Biomedical devices" + }, + { + "@value": "VT 3.3.14 Tropical medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Biotechnology applied to the medical sciences and the development of medicines." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Medical_biotechnology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Pharmaceutical biotechnology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Medical biotechnology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Biotechnology#Medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3297" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0611", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Electron diffraction experiment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of matter by studying the interference pattern from firing electrons at a sample, to analyse structures at resolutions higher than can be achieved using light." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Electron_microscopy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "SEM" + }, + { + "@value": "Scanning electron microscopy" + }, + { + "@value": "TEM" + }, + { + "@value": "Transmission electron microscopy" + }, + { + "@value": "Electron crystallography" + }, + { + "@value": "Single particle electron microscopy" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Electron microscopy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Electron_microscope" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_1317" + }, + { + "@id": "http://edamontology.org/topic_3382" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3433", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construct some entity (typically a molecule sequence) from component pieces." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0310" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Assembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1339", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0857" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignments from a sequence database search (for example a BLAST search)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database hits alignments list" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1161", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "PTHR[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a biological pathway from the Panther Pathways database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Panther Pathways ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (Panther)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2365" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_4005", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "cfg" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A configuration file used by various programs to store settings that are specific to their respective software." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Configuration file format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_0882", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0867" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report of RNA secondary structure alignment-derived data or metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Secondary structure alignment metadata (RNA)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0313", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Perform cluster analysis of expression data to identify groups with similar expression profiles, for example by clustering." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Gene expression clustering" + }, + { + "@value": "Gene expression profile clustering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Expression profile clustering" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N8a7fe58523ca489baa9049c80a11d1c7" + }, + { + "@id": "http://edamontology.org/operation_3432" + }, + { + "@id": "http://edamontology.org/operation_0315" + } + ] + }, + { + "@id": "_:N8a7fe58523ca489baa9049c80a11d1c7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3111" + } + ] + }, + { + "@id": "http://edamontology.org/format_3862", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An NLP format used for annotated textual documents." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NLP annotation format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3841" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0530", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) sequencing by synthesis (SBS) data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SBS data processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2392", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "UPI[A-F0-9]{10}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of a UniParc (protein sequence) database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "UPI" + }, + { + "@value": "UniParc ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniParc accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1096" + } + ] + }, + { + "@id": "http://edamontology.org/data_2654", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "TTDS[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a target protein from the Therapeutic Target Database (TTD)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Target ID (TTD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0495", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Locally align two or more molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence alignment (local)" + }, + { + "@value": "Local sequence alignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Smith-Waterman" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Local alignment methods identify regions of local similarity." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Local alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Sequence_alignment#Global_and_local_alignments" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0292" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3216", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Link together a non-contiguous series of genomic sequences into a scaffold, consisting of sequences separated by gaps of known length. The sequences that are linked are typically typically contigs; contiguous sequences corresponding to read overlaps." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Scaffold construction" + }, + { + "@value": "Scaffold generation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Scaffold may be positioned along a chromosome physical map to create a \"golden path\"." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Scaffolding" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3429" + }, + { + "@id": "_:N0febe2ad77464bf1a9622e10a8d282ef" + }, + { + "@id": "http://edamontology.org/operation_0310" + } + ] + }, + { + "@id": "_:N0febe2ad77464bf1a9622e10a8d282ef", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0077" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0230", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a molecular sequence by some means." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Sequence generation (nucleic acid)" + }, + { + "@value": "Sequence generation (protein)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3429" + }, + { + "@id": "http://edamontology.org/operation_2403" + } + ] + }, + { + "@id": "http://edamontology.org/format_1572", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the Gene3D protein secondary database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene3D entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3492", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report about a specific or conserved nucleic acid sequence pattern." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid signature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2762" + } + ] + }, + { + "@id": "http://edamontology.org/data_1041", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A SCOP concise classification string (sccs) is a compact representation of a SCOP domain classification." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "An scss includes the class (alphabetical), fold, superfamily and family (all numerical) to which a given domain belongs." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SCOP concise classification string (sccs)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1039" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0527", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Make sequence tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Tag to gene assignment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Sequence tag mapping assigns experimentally obtained sequence tags to known transcripts or annotate potential virtual sequence tags in a genome." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence tag mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0226" + }, + { + "@id": "http://edamontology.org/operation_2520" + } + ] + }, + { + "@id": "http://edamontology.org/data_3769", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a concept from the BRENDA ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BRENDA ontology concept ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1087" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2151", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Specification of one or more colors." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Color" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1611", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of the Maize genetics and genomics database (MaizeGDB)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MaizeGDB gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1702", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from a database of chemical structures and property predictions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ChemSpider entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3457", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An image processing technique that combines and analyze multiple images of a particulate sample, in order to produce an image with clearer features that are more easily interpreted." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Single particle analysis is used to improve the information that can be obtained by relatively low resolution techniques, , e.g. an image of a protein or virus from transmission electron microscopy (TEM)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Single particle analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Single_particle_analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2480" + }, + { + "@id": "http://edamontology.org/operation_3443" + }, + { + "@id": "_:Na446bebe220b4452a4ee045d183a3e81" + } + ] + }, + { + "@id": "_:Na446bebe220b4452a4ee045d183a3e81", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1317" + } + ] + }, + { + "@id": "_:Ne92780c096544a1f853924e7caf142fd", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:bearer_of' is narrower in the sense that it only relates ontological categories (concepts) that are an 'independent_continuant' (snap:IndependentContinuant) with ontological categories that are a 'specifically_dependent_continuant' (snap:SpecificallyDependentContinuant), and broader in the sense that it relates with any borne objects not just functions of the subject." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/has_function" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "OBO_REL:bearer_of" + } + ] + }, + { + "@id": "http://edamontology.org/data_2252", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An XSLT stylesheet." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "XSLT stylesheet" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3210", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An index of a genome sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Many sequence alignment tasks involving many or very large sequences rely on a precomputed index of the sequence to accelerate the alignment." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome index" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0955" + } + ] + }, + { + "@id": "http://edamontology.org/format_1319", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report format for restriction enzyme recognition sites used by EMBOSS restover program." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "restover format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2158" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0177", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The modelling the structure of proteins in complex with small molecules or other macromolecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_2275" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular docking" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2327", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier assigned to NCBI protein sequence records." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "protein gi" + }, + { + "@value": "protein gi number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Nucleotide sequence GI number is shown in the VERSION field of the database record. Protein sequence GI number is shown in the CDS/db_xref field of a nucleotide database record, and the VERSION field of a protein database record." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GI number (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2314" + } + ] + }, + { + "@id": "http://edamontology.org/format_3826", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.psidev.info/probam" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": ". proBAM is an adaptation of BAM (format_2572), which was extended to meet specific requirements entailed by proteomics data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "proBAM" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_2920" + }, + { + "@id": "http://edamontology.org/format_2057" + } + ] + }, + { + "@id": "http://edamontology.org/data_1897", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: Broad_MGG" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for loci from Magnaporthe grisea Database at the Broad Institute." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID (MGG)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1893" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2405", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2949" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) protein interaction data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction data processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2437", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict a network of gene regulation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene regulatory network prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3927" + }, + { + "@id": "http://edamontology.org/operation_2495" + }, + { + "@id": "http://edamontology.org/operation_2423" + } + ] + }, + { + "@id": "http://edamontology.org/data_1560", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a protein 'structurally similar group' node from the CATH database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH structurally similar group" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0900", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning the classification of the sequences and/or structures of protein structural domain(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein domain classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2019", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data describing a molecular map (genetic or physical) or a set of such maps, including various attributes of, data extracted from or derived from the analysis of them, but excluding the map(s) themselves. This includes metadata for map sets that share a common set of features which are mapped." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Map set data" + }, + { + "@value": "Map attribute" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Map data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nb315f5648fe5443fb1be6013a2ad1186" + }, + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "_:Nb315f5648fe5443fb1be6013a2ad1186", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0102" + } + ] + }, + { + "@id": "http://edamontology.org/format_3098", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of raw SCOP domain classification data files." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "These are the parsable data files provided by SCOP." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Raw SCOP domain classification format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3097" + } + ] + }, + { + "@id": "http://edamontology.org/format_3587", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://rohsdb.cmb.usc.edu/GBshape/cgi-bin/hgTables?hgsid=43553_onGgm5PMjz4VDV1NySxolABvN978&hgta_doSchemaDb=mm10&hgta_doSchemaTable=chromInfo" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://rohsdb.cmb.usc.edu/GBshape/cgi-bin/hgTables?hgsid=43553_onGgm5PMjz4VDV1NySxolABvN978&hgta_doSchemaDb=mm10&hgta_doSchemaTable=chromInfo" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Tabular format of chromosome names and sizes used by Galaxy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Galaxy allows BED files to contain non-standard fields beyond the first 3 columns, some other implementations do not." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "chrominfo" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3003" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_3842", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data coming from molecular simulations, computer \"experiments\" on model molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Typically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular simulation data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + }, + { + "@id": "_:N26e17cff75e348b0aef27ad70045ffca" + } + ] + }, + { + "@id": "_:N26e17cff75e348b0aef27ad70045ffca", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3437", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.6" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more scientific articles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Article comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N7cbbfeb7d231445ab9f362e2944d830a" + }, + { + "@id": "http://edamontology.org/operation_2424" + } + ] + }, + { + "@id": "_:N7cbbfeb7d231445ab9f362e2944d830a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3068" + } + ] + }, + { + "@id": "http://edamontology.org/format_3651", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "mgf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mascot Generic Format. Encodes multiple MS/MS spectra in a single file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Files includes *m*/*z*, intensity pairs separated by headers; headers can contain a bit more information, including search engine instructions." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MGF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2826", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_2814" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein secondary or tertiary structure alignments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2996", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Assign molecular structure(s) to a group or category." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2990" + }, + { + "@id": "http://edamontology.org/operation_2480" + } + ] + }, + { + "@id": "http://edamontology.org/data_2620", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]{4,7}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the RGD database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RGD ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_3155", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.comp-sys-bio.org/tiki-index.php?page=SBRML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.comp-sys-bio.org/tiki-index.php?page=SBRML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Systems Biology Result Markup Language (SBRML), the standard XML format for simulated or calculated results (e.g. trajectories) of systems biology models." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SBRML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3166" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_3759", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for mass spectrometry proteomics data in the proteomexchange.org repository." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ProteomeXchange ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1078" + } + ] + }, + { + "@id": "http://edamontology.org/format_3701", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A five-column, tab-delimited table of feature locations and qualifiers for importing annotation into an existing Sequin submission (an NCBI tool for submitting and updating GenBank entries)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequin format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2206" + } + ] + }, + { + "@id": "http://edamontology.org/data_1120", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A label (text token) describing the type of a sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Possible values include for example the EMBOSS alignment types, BLAST alignment types and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2600", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Primary data about a specific biological pathway or network (the nodes and connections within the pathway or network)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Network" + }, + { + "@value": "Pathway" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway or network" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + }, + { + "@id": "_:Neecda6ba7f724dc0853e7bf82dee95ea" + } + ] + }, + { + "@id": "_:Neecda6ba7f724dc0853e7bf82dee95ea", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0602" + } + ] + }, + { + "@id": "http://edamontology.org/data_2250", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An XML Schema." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "XML Schema" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1175", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a concept from the BioPax ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioPax concept ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1087" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3431", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.6" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Deposit some data in a database or some other type of repository or software system." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Data deposition" + }, + { + "@value": "Data submission" + }, + { + "@value": "Database deposition" + }, + { + "@value": "Submission" + }, + { + "@value": "Database submission" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For non-analytical operations, see the 'Processing' branch." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Deposition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ] + }, + { + "@id": "http://edamontology.org/format_3773", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.7490/f1000research.1113048.1" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://bioxsd.org" + } + ], + "http://edamontology.org/example": [ + { + "@id": "http://bioxsd.org/sequenceRecord.yaml" + }, + { + "@id": "http://bioxsd.org/sequenceRecord.xml+json+yaml.xml" + } + ], + "http://edamontology.org/repository": [ + { + "@id": "https://github.com/bioxsd/bioxsd" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://bioxsd.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BioYAML is a BioXSD-schema-based YAML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web APIs, human readability and editing, and object-oriented programming." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "BioXSD YAML" + }, + { + "@value": "BioXSD+YAML" + }, + { + "@value": "BioYAML format (BioXSD)" + }, + { + "@value": "BioXSD YAML format" + }, + { + "@value": "BioXSD in YAML format" + }, + { + "@value": "BioXSD/GTrack BioYAML" + }, + { + "@value": "BioYAML (BioXSD data model)" + }, + { + "@value": "BioXSD in YAML" + }, + { + "@value": "BioYAML (BioXSD)" + }, + { + "@value": "BioXSD|GTrack BioYAML" + }, + { + "@value": "BioXSD|BioJSON|BioYAML BioYAML" + }, + { + "@value": "BioYAML format" + }, + { + "@value": "BioXSD BioYAML" + }, + { + "@value": "BioXSD BioYAML format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Work in progress. 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioYAML' is the YAML format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioYAML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2571" + }, + { + "@id": "http://edamontology.org/format_1921" + }, + { + "@id": "_:N4963e6f3dd3d4ebf8a3c9645d507df4f" + }, + { + "@id": "_:N43d5f1bfe7be4c53b2083ecc49359504" + }, + { + "@id": "_:N54aa3dd28fe147168fbd94227100923a" + }, + { + "@id": "http://edamontology.org/format_1920" + }, + { + "@id": "http://edamontology.org/format_3750" + }, + { + "@id": "_:N28c127d3e91e4a49a24a833d9688132e" + }, + { + "@id": "_:Nace64017b5364b549bbc97790923b6e0" + }, + { + "@id": "http://edamontology.org/format_1919" + } + ] + }, + { + "@id": "_:N4963e6f3dd3d4ebf8a3c9645d507df4f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "_:N43d5f1bfe7be4c53b2083ecc49359504", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1772" + } + ] + }, + { + "@id": "_:N54aa3dd28fe147168fbd94227100923a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3108" + } + ] + }, + { + "@id": "_:N28c127d3e91e4a49a24a833d9688132e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0863" + } + ] + }, + { + "@id": "_:Nace64017b5364b549bbc97790923b6e0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2044" + } + ] + }, + { + "@id": "http://edamontology.org/data_2357", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A label (text token) describing a type of protein family signature (sequence classifier) from the InterPro database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein signature type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3619", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://galaxy.readthedocs.org/en/latest/lib/galaxy.datatypes.html?highlight=datatypes%20graph#module-galaxy.datatypes.graph" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "SIF (simple interaction file) Format - a network/pathway format used for instance in cytoscape." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "sif" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2013" + } + ] + }, + { + "@id": "http://edamontology.org/data_1902", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby_namespace:MMP_Locus" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of loci from Maize Mapping Project." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID (MMP)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1893" + } + ] + }, + { + "@id": "http://edamontology.org/data_1659", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report typically including a map (diagram) of a signal transduction pathway." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2984" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Signal transduction pathway report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1569", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the IntAct database of protein interaction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "IntAct entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1803", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: VMD" + }, + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: PAMGO_VMD" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene identifier from Virginia Bioinformatics Institute microbial database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (Virginia microbial)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2295" + } + ] + }, + { + "@id": "http://edamontology.org/data_3272", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A phylogenetic tree that reflects phylogeny of the taxa from which the characters (used in calculating the tree) were sampled." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Species tree" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0872" + } + ] + }, + { + "@id": "http://edamontology.org/format_1760", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of CATH domain classification information for a polypeptide chain." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The report (for example http://www.cathdb.info/chain/1cukA) includes chain identifiers, domain identifiers and CATH codes for domains in a given protein chain." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH chain report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0299", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0295" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align structural (3D) profiles or templates (representing structures or structure alignments)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0295" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "3D profile-to-3D profile alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3183", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Reconstruction of a sequence assembly in a localised area." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Localised reassembly" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0310" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3562", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.24" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2426" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_3927" + }, + { + "@id": "http://edamontology.org/operation_3928" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Simulate the bevaviour of a biological pathway or network." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Network simulation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1315", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "transcription factor binding sites (TFBS) in a DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcription factor binding sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0296", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate some type of sequence profile (for example a hidden Markov model) from a sequence alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence profile construction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence profile generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0258" + }, + { + "@id": "_:N5c339128da91454ba1b6ec54fbe069ba" + }, + { + "@id": "_:N0471379afeed4943951e52e8f009c2c5" + }, + { + "@id": "http://edamontology.org/operation_3429" + }, + { + "@id": "_:N76975a4c477a416ebf646a94a145de41" + } + ] + }, + { + "@id": "_:N5c339128da91454ba1b6ec54fbe069ba", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "_:N0471379afeed4943951e52e8f009c2c5", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1354" + } + ] + }, + { + "@id": "_:N76975a4c477a416ebf646a94a145de41", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0863" + } + ] + }, + { + "@id": "http://edamontology.org/data_1494", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Matrix to transform (rotate/translate) 3D coordinates, typically the transformation necessary to superimpose two molecular structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural transformation matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3055", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The genes and genetic mechanisms such as Mendelian inheritance that underly continuous phenotypic traits (such as height or weight)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Quantitative_genetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Quantitative genetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Quantitative_genetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0625" + } + ] + }, + { + "@id": "http://edamontology.org/data_1757", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of an atom." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Atom name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + }, + { + "@id": "http://edamontology.org/data_0983" + } + ] + }, + { + "@id": "http://edamontology.org/format_1575", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the Panther library of protein families and subfamilies." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Panther Families and HMMs entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1883", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:DescribedLink" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A URI along with annotation describing the data found at the address." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Annotated URI" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2093" + } + ] + }, + { + "@id": "http://edamontology.org/data_1634", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0927" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Linkage disequilibrium (report)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/thematic_editor", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of thematic editor (http://biotools.readthedocs.io/en/latest/governance.html#registry-editors) responsible for this concept and its children." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "thematic_editor" + } + ] + }, + { + "@id": "http://edamontology.org/data_1460", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a protein tertiary (3D) structure, or part of a structure, possibly in complex with other molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein structures" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0883" + }, + { + "@id": "_:Nf7a0e1a58b6b4721beb370aa4b49a588" + } + ] + }, + { + "@id": "_:Nf7a0e1a58b6b4721beb370aa4b49a588", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2814" + } + ] + }, + { + "@id": "http://edamontology.org/format_3751", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Tabular data represented as values in a text file delimited by some character." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Tabular format" + }, + { + "@value": "Delimiter-separated values" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DSV" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Delimiter-separated_values" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_2076", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for secondary structure (predicted or real) of an RNA molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA secondary structure format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Na61b46aa6aea42f2ab15d7c02b9b0c49" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Na61b46aa6aea42f2ab15d7c02b9b0c49", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0880" + } + ] + }, + { + "@id": "http://edamontology.org/data_1532", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The optical density of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein optical density" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/format_3099", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of raw CATH domain classification data files." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "These are the parsable data files provided by CATH." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Raw CATH domain classification format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3097" + } + ] + }, + { + "@id": "http://edamontology.org/format_1296", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report format for inverted repeats in a nucleotide sequence (format generated by the Sanger Centre inverted program)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sanger inverted repeats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2155" + } + ] + }, + { + "@id": "http://edamontology.org/data_1117", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "PS[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry from the Prosite database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Prosite ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Prosite accession number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1114" + } + ] + }, + { + "@id": "http://edamontology.org/data_1401", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The score for a 'match' used in various sequence database search applications with simple scoring schemes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Match reward score" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1394" + } + ] + }, + { + "@id": "http://edamontology.org/data_0876", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Secondary structure (predicted or real) of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features report (secondary structure)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2480", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse known molecular tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2945" + }, + { + "@id": "_:N0cdddae152f4482dbb8c6b292ecb8331" + } + ] + }, + { + "@id": "_:N0cdddae152f4482dbb8c6b292ecb8331", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ] + }, + { + "@id": "http://edamontology.org/data_2681", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Felis catus' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Felis catus')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1366", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence profile (sequence classifier) format used in the PROSITE database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "prosite-profile" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2069" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3967", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of immune system as a whole, its regulation and response to pathogens using genome-wide approaches." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Immunomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Immunomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3391" + } + ] + }, + { + "@id": "http://edamontology.org/format_1349", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Dirichlet distribution HMMER format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HMMER Dirichlet prior" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2074" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_1483", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1481" + }, + { + "@id": "http://edamontology.org/data_1479" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of exactly two protein tertiary (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment (protein pair)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2131", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of a computer operating system such as Linux, PC or Mac." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Operating system name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/format_3873", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "HDF is the name of a set of file formats and libraries designed to store and organize large amounts of numerical data, originally developed at the National Center for Supercomputing Applications at the University of Illinois." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "HDF is currently supported by many commercial and non-commercial software platforms such as Java, MATLAB/Scilab, Octave, Python and R." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HDF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3867" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3482", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict causes for antibiotic resistance from molecular sequence analysis." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Antimicrobial resistance prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2423" + }, + { + "@id": "http://edamontology.org/operation_2403" + }, + { + "@id": "_:Nb3a15e97915b4110824f94401f89ec33" + } + ] + }, + { + "@id": "_:Nb3a15e97915b4110824f94401f89ec33", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3301" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3370", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.7.1 Analytical chemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of the separation, identification, and quantification of the chemical components of natural and artificial materials." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Analytical_chemistry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Analytical chemistry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Analytical_chemistry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3314" + } + ] + }, + { + "@id": "http://edamontology.org/format_2546", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A format resembling FASTA format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This concept may be used for the many non-standard FASTA-like formats." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "FASTA-like" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1919" + } + ] + }, + { + "@id": "http://edamontology.org/format_1699", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the KEGG PLANT database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KEGG PLANT entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "_:N37ff764de2cf48aba807428c42274630", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Operation is a function that is computational. It typically has input(s) and output(s), which are always data." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "Function" + } + ] + }, + { + "@id": "http://edamontology.org/data_2981", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning specific or conserved pattern in molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0860" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1276", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on intrinsic positional features of a nucleotide sequence, formatted to be machine-readable." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid feature table" + }, + { + "@value": "Feature table (nucleic acid)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Genomic features" + }, + { + "@value": "Genome features" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes nucleotide sequence feature annotation in any known sequence feature table format and any other report of nucleic acid features." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid features" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "http://edamontology.org/data_3104", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique, unambiguous, alphanumeric identifier of a chemical substance as catalogued by the Substance Registration System of the Food and Drug Administration (FDA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Unique Ingredient Identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UNII" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1086" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0782", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/topic_2818" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Fungi and molds, e.g. information on a specific fungal genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The resource may be specific to a fungus, a group of fungi or all fungi." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Fungi" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0434", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2454" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict whole gene structure using a combination of multiple methods to achieve better predictions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2454" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Integrated gene prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2678", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Dasypus novemcinctus' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Dasypus novemcinctus')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0538", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construct a phylogenetic tree from a specific type of data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree construction (data centric)" + }, + { + "@value": "Phylogenetic tree generation (data centric)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subconcepts of this concept reflect different types of data used to generate a tree, and provide an alternate axis for curation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic inference (data centric)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0323" + } + ] + }, + { + "@id": "http://edamontology.org/data_1440", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2523" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data about the shape of a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree report (tree shape)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1404", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1397" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A simple floating point number defining the penalty for opening a gap in an alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gap opening penalty (integer)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0881", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/is_deprecation_candidate": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:RNAStructAlignmentML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of the (1D representations of) secondary structure of two or more RNA molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Secondary structure alignment (RNA)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA secondary structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2366" + } + ] + }, + { + "@id": "http://edamontology.org/data_1540", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on inter-atomic or inter-residue contacts, distances and interactions in protein structure(s) or on the interactions of protein atoms or residues with non-protein groups." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0906" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein non-covalent interactions report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3964", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify copy number variations which are complex, e.g. multi-allelic variations that have many structural alleles and have rearranged multiple times in the ancestral genomes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Complex CNV detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3961" + } + ] + }, + { + "@id": "http://edamontology.org/format_3790", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.w3.org/TR/sparql11-query/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "https://www.w3.org/TR/sparql11-query/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "SPARQL (SPARQL Protocol and RDF Query Language) is a semantic query language for querying and manipulating data stored in Resource Description Framework (RDF) format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "SPARQL Protocol and RDF Query Language" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SPARQL" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/SPARQL" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "_:N7f4d8f3ff6b44e4e8583c1544df20144", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "EDAM does not distinguish the multiplicity of data, such as one data item (datum) versus a collection of data (data set)." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "Datum" + } + ] + }, + { + "@id": "http://edamontology.org/format_2068", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a sequence motif." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nc9be5b76264f49e9920b8261517105d2" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Nc9be5b76264f49e9920b8261517105d2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1353" + } + ] + }, + { + "@id": "http://edamontology.org/data_2966", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "General annotation on a set of oligonucleotide probes, such as the gene name with which the probe set is associated and which probes belong to the set." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2717" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Oligonucleotide probe sets annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3785", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://2011.bionlp-st.org/home/file-formats" + }, + { + "@id": "http://brat.nlplab.org/standoff.html" + }, + { + "@id": "https://github.com/nlplab/brat/wiki/Annotation-Data-Format" + }, + { + "@id": "http://2013.bionlp-st.org/file-formats" + }, + { + "@id": "http://www.nactem.ac.uk/tsujii/GENIA/SharedTask/detail.shtml#format" + } + ], + "http://edamontology.org/example": [ + { + "@id": "http://www.nactem.ac.uk/tsujii/GENIA/SharedTask/detail.shtml#format" + }, + { + "@id": "http://brat.nlplab.org/examples.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://2013.bionlp-st.org/file-formats" + }, + { + "@id": "http://www.nactem.ac.uk/tsujii/GENIA/SharedTask/detail.shtml#format" + }, + { + "@id": "http://2011.bionlp-st.org/home/file-formats" + }, + { + "@id": "http://brat.nlplab.org/standoff.html" + }, + { + "@id": "https://github.com/nlplab/brat/wiki/Annotation-Data-Format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A family of similar formats of text annotation, used by BRAT and other tools, known as BioNLP Shared Task format (BioNLP 2009 Shared Task on Event Extraction, BioNLP Shared Task 2011, BioNLP Shared Task 2013), BRAT format, BRAT standoff format, and similar." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "BRAT format" + }, + { + "@value": "BRAT standoff format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioNLP Shared Task format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3780" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0428", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect polyA signals in nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PolyA prediction" + }, + { + "@value": "Polyadenylation signal prediction" + }, + { + "@value": "PolyA detection" + }, + { + "@value": "Polyadenylation signal detection" + }, + { + "@value": "PolyA signal prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PolyA signal detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0415" + } + ] + }, + { + "@id": "http://edamontology.org/data_1905", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby_namespace:MaizeGDB_Locus" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of locus from MaizeGDB (Maize genome database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID (MaizeGDB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1893" + } + ] + }, + { + "@id": "http://edamontology.org/data_1791", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Symbol of a gene approved by the HUGO Gene Nomenclature Committee." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (HGNC)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0453", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0432" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict nucleosome formation potential of DNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleosome formation potential prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/organisation", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'Organisation' trailing modifier (qualifier, 'organisation') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to an organisation that developed, standardised, and maintains the given data format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Organization" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Organisation" + } + ] + }, + { + "@id": "http://edamontology.org/data_1916", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An alignment of molecular sequences, structures or profiles derived from them." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/data_0974", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a biological entity or phenomenon." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Entity identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1819", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the solvent accessibility ('accessible surface') for each residue in a structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0387" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein residue surface calculation (accessible)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0436", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict protein-coding regions (CDS or exon) or open reading frames in nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ORF prediction" + }, + { + "@value": "ORF finding" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Coding region prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2454" + } + ] + }, + { + "@id": "http://edamontology.org/data_1028", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1027" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An NCBI RefSeq unique identifier of a gene." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene identifier (NCBI RefSeq)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2940", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Render a graph in which the values of two variables are plotted along two axes; the pattern of the points reveals any correlation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Scatter chart plotting" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Microarray scatter plot plotting" + }, + { + "@value": "Microarray scatter plot rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Comparison of two sets of quantitative data such as two samples of gene expression values." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Scatter plot plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0337" + } + ] + }, + { + "@id": "http://edamontology.org/format_3772", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.7490/f1000research.1113048.1" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://bioxsd.org" + } + ], + "http://edamontology.org/example": [ + { + "@id": "http://bioxsd.org/sequenceRecord.xml+json+yaml.xml" + }, + { + "@id": "http://bioxsd.org/sequenceRecord.json" + } + ], + "http://edamontology.org/repository": [ + { + "@id": "https://github.com/bioxsd/bioxsd" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://bioxsd.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BioJSON is a BioXSD-schema-based JSON format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web applications and APIs, and object-oriented programming." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "BioXSD BioJSON format" + }, + { + "@value": "BioJSON format (BioXSD)" + }, + { + "@value": "BioXSD/GTrack BioJSON" + }, + { + "@value": "BioXSD|GTrack BioJSON" + }, + { + "@value": "BioXSD in JSON" + }, + { + "@value": "BioXSD JSON format" + }, + { + "@value": "BioJSON (BioXSD data model)" + }, + { + "@value": "BioXSD|BioJSON|BioYAML BioJSON" + }, + { + "@value": "BioXSD in JSON format" + }, + { + "@value": "BioXSD JSON" + }, + { + "@value": "BioXSD BioJSON" + }, + { + "@value": "BioXSD+JSON" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Work in progress. 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioJSON' is the JSON format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioJSON (BioXSD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1919" + }, + { + "@id": "http://edamontology.org/format_2571" + }, + { + "@id": "_:Nf85f24d314c143488ae46bb7fc47e7d1" + }, + { + "@id": "http://edamontology.org/format_1921" + }, + { + "@id": "_:N80fdd2268e984d46b3e27ee9a61c63e0" + }, + { + "@id": "_:Ndc30d48e3de145f086eb2fb307bd6eb9" + }, + { + "@id": "_:N2a6e747b1eeb45ddbe4558c470063eec" + }, + { + "@id": "http://edamontology.org/format_1920" + }, + { + "@id": "_:N3d26bba00a894c4093e9c1192bec6126" + }, + { + "@id": "http://edamontology.org/format_3464" + } + ] + }, + { + "@id": "_:Nf85f24d314c143488ae46bb7fc47e7d1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2044" + } + ] + }, + { + "@id": "_:N80fdd2268e984d46b3e27ee9a61c63e0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3108" + } + ] + }, + { + "@id": "_:Ndc30d48e3de145f086eb2fb307bd6eb9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1772" + } + ] + }, + { + "@id": "_:N2a6e747b1eeb45ddbe4558c470063eec", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0863" + } + ] + }, + { + "@id": "_:N3d26bba00a894c4093e9c1192bec6126", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "http://edamontology.org/format_2013", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for a biological pathway or network." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biological pathway or network format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nd4d67371eff94694bd0fb782bb2d6e32" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Nd4d67371eff94694bd0fb782bb2d6e32", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2600" + } + ] + }, + { + "@id": "http://edamontology.org/data_1149", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the EMAGE database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMAGE ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1080" + } + ] + }, + { + "@id": "http://purl.org/dc/elements/1.1/format", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/data_1602", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The differences in codon usage fractions between two codon usage tables." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage fraction difference" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0914" + } + ] + }, + { + "@id": "http://edamontology.org/format_1627", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report format on PCR primers and hybridisation oligos as generated by Whitehead primer3 program." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Primer3 primer" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2061" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3253", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A syntax for writing OWL class expressions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This format was influenced by the OWL Abstract Syntax and the DL style syntax." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Manchester OWL Syntax" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2197" + } + ] + }, + { + "@id": "http://edamontology.org/data_1111", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2872" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "List of EMBOSS Uniform Sequence Addresses (EMBOSS listfile)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS listfile" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2758", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "CL[0-9]{4}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of a Pfam clan." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pfam clan ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2910" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_3861", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable systematic collection of patient (or population) health information in a digital format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "EMR" + }, + { + "@value": "EHR" + }, + { + "@value": "Electronic medical record" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Electronic health record" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3947", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mapping between gene tree nodes and species tree nodes or branches, to analyse and account for possible differences between gene histories and species histories, explaining this in terms of gene-scale events such as duplication, loss, transfer etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene tree / species tree reconciliation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods typically test for topological similarity between trees using for example a congruence index." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree reconciliation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0325" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0226", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotate an entity (typically a biological or biomedical database entity) with terms from a controlled vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad concept and is used a placeholder for other, more specific concepts." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N9cade24afdae46149fa7f5b90656b898" + }, + { + "@id": "http://edamontology.org/operation_0004" + }, + { + "@id": "_:Nb0cd03f6e24c4faaa8ddd13d1b162914" + } + ] + }, + { + "@id": "_:N9cade24afdae46149fa7f5b90656b898", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0582" + } + ] + }, + { + "@id": "_:Nb0cd03f6e24c4faaa8ddd13d1b162914", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0089" + } + ] + }, + { + "@id": "http://edamontology.org/format_1808", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:GI_Gene" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report format for biological functions associated with a gene name and its alternative names (synonyms, homonyms), as generated by the GeneIlluminator service." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes a gene name and abbreviation of the name which may be in a name space indicating the gene status and relevant organisation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GeneIlluminator gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1035", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[a-zA-Z_0-9\\.-]*" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby_namespace:GeneDB" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a gene from the GeneDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GeneDB identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (GeneDB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2730", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a unisequence from the COGEME database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A unisequence is a single sequence assembled from ESTs." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "COGEME unisequence ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2728" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1002", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "CAS registry number of a chemical compound; a unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CAS chemical registry number" + }, + { + "@value": "Chemical registry number (CAS)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CAS number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2895" + }, + { + "@id": "http://edamontology.org/data_0991" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1901", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: SGDID" + }, + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: SGD" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier for loci from SGD (Saccharomyces Genome Database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "SGDID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Locus ID (SGD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1893" + }, + { + "@id": "http://edamontology.org/data_2632" + } + ] + }, + { + "@id": "http://edamontology.org/data_1696", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about a specific drug." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Drug annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Drug structure relationship map" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A drug structure relationship map is report (typically a map diagram) of drug structure relationships." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drug report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ne8940f31ed18464fbf2315c1fc6ba2b3" + }, + { + "@id": "http://edamontology.org/data_0962" + } + ] + }, + { + "@id": "_:Ne8940f31ed18464fbf2315c1fc6ba2b3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0154" + } + ] + }, + { + "@id": "http://edamontology.org/data_2889", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A nucleic acid sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0849" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence record (full)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2348", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the UniRef90 database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "UniRef90 cluster id" + }, + { + "@value": "UniRef90 entry accession" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster ID (UniRef90)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2346" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3084", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_1777" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict general (non-positional) functional properties of a protein from analysing its sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For functional properties that are positional, use 'Protein site detection' instead." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein function prediction (from sequence)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0945", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein or peptide identifications with evidence supporting the identifications, for example from comparing a peptide mass fingerprint (from mass spectrometry) to a sequence database, or the set of typical spectra one obtains when running a protein through a mass spectrometer." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "'Protein identification'" + }, + { + "@value": "Peptide spectrum match" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptide identification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0897" + }, + { + "@id": "http://edamontology.org/data_2979" + }, + { + "@id": "_:Ne26ee143256441db91795d5df0b223a7" + } + ] + }, + { + "@id": "_:Ne26ee143256441db91795d5df0b223a7", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2511", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Edit or change a nucleic acid sequence, either randomly or specifically." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0231" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence editing (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0511", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0298" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0300" + }, + { + "@id": "http://edamontology.org/operation_0292" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align exactly two molecular profiles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might perform one-to-one, one-to-many or many-to-many comparisons." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Profile-profile alignment (pairwise)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0368", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mask characters in a molecular sequence (replacing those characters with a mask character)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example, SNPs or repeats in a DNA sequence might be masked." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence masking" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0231" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0317", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2403" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse EST or cDNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example, identify full-length cDNAs from EST sequences or detect potential EST antisense transcripts." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EST and cDNA sequence analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1522", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein sequence with annotation on hydrophobic or hydrophilic / charged regions, hydrophobicity plot etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence hydropathy plot" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2970" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0327", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Comparison of a DNA sequence to orthologous sequences in different species and inference of a phylogenetic tree, in order to identify regulatory elements such as transcription factor binding sites (TFBS)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Phylogenetic shadowing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Phylogenetic shadowing is a type of footprinting where many closely related species are used. A phylogenetic 'shadow' represents the additive differences between individual sequences. By masking or 'shadowing' variable positions a conserved sequence is produced with few or none of the variations, which is then compared to the sequences of interest to identify significant regions of conservation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic footprinting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Phylogenetic_footprinting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0323" + }, + { + "@id": "_:N439d584294b94b89ab8c794e08fd1450" + } + ] + }, + { + "@id": "_:N439d584294b94b89ab8c794e08fd1450", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0194" + } + ] + }, + { + "@id": "http://edamontology.org/format_1971", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1992" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mega non-interleaved output sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "meganon sequence format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3452", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Imaging in sections (sectioning), through the use of a wave-generating device (tomograph) that generates an image (a tomogram)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CT" + }, + { + "@value": "TDM" + }, + { + "@value": "Computed tomography" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Tomography" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Positron emission tomography" + }, + { + "@value": "Electron tomography" + }, + { + "@value": "X-ray tomography" + }, + { + "@value": "PET" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tomography" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Tomography" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3382" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0388", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict catalytic residues, active sites or other ligand-binding sites in protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2575" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein binding site prediction (from structure)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2515", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise, format or render a nucleic acid sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0564" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Various nucleic acid sequence analysis methods might generate a sequence rendering but are not (for brevity) listed under here." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0753", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Metabolic pathways." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0602" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metabolic pathways" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2184", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://ftp.ebi.ac.uk/pub/databases/ena/doc/xsd/sra_1_5/ENA.embl.xsd" + } + ], + "http://edamontology.org/is_deprecation_candidate": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Specific XML format for EMBL entries (only uses certain sections)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "cdsxml" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "https://fairsharing.org/bsg-s001452/" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2204" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0402", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Plot a protein titration curve." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein titration curve plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Titration_curve" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nbe77d337fb414faba972f8b9a5dbe4de" + }, + { + "@id": "http://edamontology.org/operation_0337" + }, + { + "@id": "http://edamontology.org/operation_0400" + } + ] + }, + { + "@id": "_:Nbe77d337fb414faba972f8b9a5dbe4de", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1527" + } + ] + }, + { + "@id": "http://edamontology.org/data_2589", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Raw data on a biological hierarchy, describing the hierarchy proper, hierarchy components and possibly associated annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Hierarchy annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hierarchy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/data_2608", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "R[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a biological reaction from the KEGG reactions database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reaction ID (KEGG)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2108" + }, + { + "@id": "http://edamontology.org/data_1154" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3934", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cytometry is the measurement of the characteristics of cells." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Cytometry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Flow cytometry" + }, + { + "@value": "Mass cytometry" + }, + { + "@value": "Image cytometry" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cytometry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Cytometry" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3361" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3564", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify and remove redundancy from a set of small molecule structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical redundancy removal" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2483" + } + ] + }, + { + "@id": "http://edamontology.org/data_2682", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gallus gallus' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Gallus gallus')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3164", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.1186/1471-2105-12-494" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://hyperbrowser.uio.no/test/static/hyperbrowser/gtrack/GTrack_specification.txt" + }, + { + "@id": "https://hyperbrowser.uio.no/test/static/hyperbrowser/gtrack/GTrack_specification.html" + }, + { + "@id": "http://www.gtrack.no" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://github.com/gtrack/gtrack/tree/master/gtrack/examples" + }, + { + "@id": "https://hyperbrowser.uio.no/hb/u/hb-superuser/h/gtrack-examples-from-the-specification" + } + ], + "http://edamontology.org/repository": [ + { + "@id": "https://github.com/gtrack/gtrack" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "https://hyperbrowser.uio.no/test/static/hyperbrowser/gtrack/GTrack_specification.txt" + }, + { + "@id": "https://hyperbrowser.uio.no/test/static/hyperbrowser/gtrack/GTrack_specification.html" + }, + { + "@id": "http://www.gtrack.no" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GTrack is a generic and optimised tabular format for genome or sequence feature tracks. GTrack unifies the power of other track formats (e.g. GFF3, BED, WIG), and while optimised in size, adds more flexibility, customisation, and automation (\"machine understandability\")." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GTrack|GSuite|BTrack GTrack" + }, + { + "@value": "GTrack|BTrack|GSuite GTrack" + }, + { + "@value": "GTrack ecosystem of formats" + }, + { + "@value": "BioXSD/GTrack GTrack" + }, + { + "@value": "GTrack format" + }, + { + "@value": "BioXSD|GTrack GTrack" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "'GTrack' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'GTrack' is the tabular format for representing features of sequences and genomes." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GTrack" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2206" + }, + { + "@id": "http://edamontology.org/format_2919" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2500", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse raw microarray data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microarray raw data analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2883", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0916" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Features concerning RNA or regions of DNA that encode an RNA molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA features report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1065", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1115" + }, + { + "@id": "http://edamontology.org/data_1114" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a sequence signature (motif or profile) for example from a database of sequence patterns." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence signature identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3120", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId": [ + { + "@id": "http://edamontology.org/data_3120" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein sequence variants produced e.g. from alternative splicing, alternative promoter usage, alternative initiation and ribosomal frameshifting." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_variants" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein variants" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Mutation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0108" + } + ] + }, + { + "@id": "http://edamontology.org/information_standard", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'Information standard' trailing modifier (qualifier, 'information_standard') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to an information standard supported by the given data format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Minimum information standard" + }, + { + "@value": "Minimum information checklist" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "\"Supported by the given data format\" here means, that the given format enables representation of data that satisfies the information standard." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Information standard" + } + ] + }, + { + "@id": "http://edamontology.org/data_2110", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a molecular property." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular property identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:N82b04503b5444c2395a67490a5096506" + } + ] + }, + { + "@id": "_:N82b04503b5444c2395a67490a5096506", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2087" + } + ] + }, + { + "@id": "http://edamontology.org/data_2391", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the UTR database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UTR accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1097" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3374", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Drug delivery" + }, + { + "@value": "Drug formulation and delivery" + }, + { + "@value": "Drug formulation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The process of formulating and administering a pharmaceutical compound to achieve a therapeutic effect." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Biotherapeutics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biotherapeutics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3376" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2229", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.11 Cell biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cells, such as key genes and proteins involved in the cell cycle." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Cell_biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Cells" + }, + { + "@value": "Protein subcellular localization" + }, + { + "@value": "Cellular processes" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Cell_biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/data_2338", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Any arbitrary identifier of an ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N36d2057029234fc4b40d595fe39d4883" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N36d2057029234fc4b40d595fe39d4883", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0582" + } + ] + }, + { + "@id": "http://edamontology.org/format_1981", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_1936" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Genbank feature format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GenBank feature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2688", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Mus musculus' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Mus musculus')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2930", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare the physicochemical properties of two or more proteins (or reference data)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein property comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2997" + }, + { + "@id": "_:Na79b90856f4a448897cca2d939948d5f" + } + ] + }, + { + "@id": "_:Na79b90856f4a448897cca2d939948d5f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0367", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mutate a molecular sequence a specified amount or shuffle it to produce a randomised sequence with the same overall composition." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence mutation and randomisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0231" + } + ] + }, + { + "@id": "http://edamontology.org/data_0940", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Volume map data from electron microscopy." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "EM volume map" + }, + { + "@value": "3D volume map" + }, + { + "@value": "Electron microscopy volume map" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Volume map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3108" + }, + { + "@id": "_:Nbdce7ffaf5754db3800f55921aaee210" + } + ] + }, + { + "@id": "_:Nbdce7ffaf5754db3800f55921aaee210", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1317" + } + ] + }, + { + "@id": "http://edamontology.org/format_3261", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "rdf" + } + ], + "http://edamontology.org/media_type": [ + { + "@id": "http://www.iana.org/assignments/media-types/application/rdf+xml" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Resource Description Framework (RDF) XML format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "RDF/XML can be used as a standard serialisation syntax for OWL DL, but not for OWL Full." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RDF/XML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://www.ebi.ac.uk/SWO/data/SWO_3000006" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2376" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_2719", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an oligonucleotide probe from the dbProbe database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "dbProbe ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2718" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0219", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Deposition and curation of database accessions, including annotation, typically with terms from a controlled vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Data_submission_annotation_and_curation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Data provenance" + }, + { + "@value": "Database curation" + }, + { + "@value": "Data curation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data submission, annotation, and curation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3071" + } + ] + }, + { + "@id": "http://edamontology.org/data_2746", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a monosaccharide from the MonosaccharideDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MonosaccharideDB ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2898" + } + ] + }, + { + "@id": "http://edamontology.org/data_3756", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Score for localization of one or more post-translational modifications in peptide sequence measured by mass spectrometry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "PTM localisation" + }, + { + "@value": "PTM score" + }, + { + "@value": "False localisation rate" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Localisation score" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1772" + } + ] + }, + { + "@id": "http://edamontology.org/data_1889", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of an Antirrhinum Gene from the DragonDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (DragonDB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3342", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'translating' the output of basic and biomedical research into better diagnostic tools, medicines, medical procedures, policies and advice." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Translational_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Translational medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Translational_medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_2401", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a membrane protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein report (membrane protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0359", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a tertiary structure database and retrieve structures with a sequence similar to a query sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0346" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure database search (by sequence)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2535", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Output from a serial analysis of gene expression (SAGE), massively parallel signature sequencing (MPSS) or sequencing by synthesis (SBS) experiment. In all cases this is a list of short sequence tags and the number of times it is observed." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequencing-based expression profile" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Sequence tag profile (with gene assignment)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "SAGE, MPSS and SBS experiments are usually performed to study gene expression. The sequence tags are typically subsequently annotated (after a database search) with the mRNA (and therefore gene) the tag was extracted from." + }, + { + "@value": "This includes tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. Typically this is the sequencing-based expression profile annotated with gene identifiers." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence tag profile" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0928" + } + ] + }, + { + "@id": "http://edamontology.org/format_1618", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of the Zebrafish Information Network (ZFIN) genome database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ZFIN gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0948", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1883" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A definition of a data resource serving one or more types of data, including metadata and links to the resource or data proper." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data resource definition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0952", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0957" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Resource definition for an EMBOSS database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS database resource definition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_4029", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of mechanical waves in liquids, solids, and gases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Acoustics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Acoustics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3318" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3196", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse DNA sequence data to identify differences between the genetic composition (genotype) of an individual compared to other individual's or a reference sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might consider cytogenetic analyses, copy number polymorphism (and calculate copy number calls for copy-number variation(CNV) regions), single nucleotide polymorphism (SNP), , rare copy number variation (CNV) identification, loss of heterozygosity data and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genotyping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3197" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0293", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0292" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align two or more molecular sequences of different types (for example genomic DNA to EST, cDNA or mRNA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Hybrid sequence alignment construction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2987", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on a classification of molecular sequences, structures or other entities." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This can include an entire classification, components such as classifiers, assignments of entities to a classification and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Classification report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3776", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/repository": [ + { + "@id": "https://github.com/gtrack/gtrack" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BTrack is an HDF5-based binary format for genome or sequence feature tracks and their collections, suitable for integrative multi-track analysis. BTrack is a binary, compressed alternative to the GTrack and GSuite formats." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "GTrack|GSuite|BTrack BTrack" + }, + { + "@value": "BioXSD|GTrack BTrack" + }, + { + "@value": "BTrack format" + }, + { + "@value": "GTrack|BTrack|GSuite BTrack" + }, + { + "@value": "BioXSD/GTrack BTrack" + }, + { + "@value": "BTrack (GTrack ecosystem of formats)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "'BTrack' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'BTrack' is the binary, optionally compressed HDF5-based version of the GTrack and GSuite formats." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BTrack" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2548" + }, + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_1920" + }, + { + "@id": "http://edamontology.org/format_2919" + } + ] + }, + { + "@id": "http://edamontology.org/data_1865", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2019" + }, + { + "@id": "http://edamontology.org/data_1255" + }, + { + "@id": "http://edamontology.org/data_1276" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A feature which may mapped (positioned) on a genetic or other type of map." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Mappable features may be based on Gramene's notion of map features; see http://www.gramene.org/db/cmap/feature_type_info." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Map feature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3320", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "RNA splicing; post-transcription RNA modification involving the removal of introns and joining of exons." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Alternative splicing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "RNA_splicing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Splice sites" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes the study of splice sites, splicing patterns, alternative splicing events and variants, isoforms, etc.." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA splicing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/RNA_splicing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0099" + }, + { + "@id": "http://edamontology.org/topic_0203" + } + ] + }, + { + "@id": "http://edamontology.org/data_1509", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0896" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a specific enzyme." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enzyme report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/citation", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Publication reference" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'Citation' concept property ('citation' metadata tag) contains a dereferenceable URI, preferably including a DOI, pointing to a citeable publication of the given data format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "Publication" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Citation" + } + ] + }, + { + "@id": "http://edamontology.org/data_2652", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "PA[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a drug from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drug ID (PharmGKB)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2649" + }, + { + "@id": "http://edamontology.org/data_2895" + } + ] + }, + { + "@id": "http://edamontology.org/data_2668", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the iRefIndex database of protein-protein interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "iRefIndex ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1074" + } + ] + }, + { + "@id": "http://edamontology.org/data_1877", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0968" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An alternative for a word." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Synonym" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "_:N47903cb4b2c94e2aaec121d03f285493", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A defined data format has its implicit or explicit data model, and EDAM does not distinguish the two. Some data models, however, do not have any standard way of serialisation into an exchange format, and those are thus not considered formats in EDAM. (Remark: even broader - or closely related - term to 'Data model' would be an 'Information model'.)" + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/format_1915" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "Data model" + } + ] + }, + { + "@id": "http://edamontology.org/data_2666", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "cd[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a conserved domain from the Conserved Domain Database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CDD ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1038" + } + ] + }, + { + "@id": "http://edamontology.org/data_3738", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The ratio between regional and local species diversity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "True beta diversity" + }, + { + "@value": "β-diversity" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Beta diversity data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3707" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2479", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse a protein sequence (using methods that are only applicable to protein sequences)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence analysis (protein)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Sequence alignment analysis (protein)" + }, + { + "@value": "Protein sequence alignment analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N7a1e1498bb4a4091addcfb23ccb2e730" + }, + { + "@id": "http://edamontology.org/operation_2403" + }, + { + "@id": "_:N5e30b0772ab64b1b87457b5fba9a8180" + } + ] + }, + { + "@id": "_:N7a1e1498bb4a4091addcfb23ccb2e730", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2976" + } + ] + }, + { + "@id": "_:N5e30b0772ab64b1b87457b5fba9a8180", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0078" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0544", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construct a phylogenetic species tree, for example, from a genome-wide sequence comparison." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic species tree generation" + }, + { + "@value": "Phylogenetic species tree construction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Species tree construction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0323" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0176", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Molecular flexibility" + }, + { + "@value": "Molecular motions" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study and simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Molecular_dynamics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein dynamics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes methods such as Molecular Dynamics, Coarse-grained dynamics, metadynamics, Quantum Mechanics, QM/MM, Markov State Models, etc. This includes resources concerning flexibility and motion in protein and other molecular structures." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular dynamics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Molecular_dynamics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3892" + }, + { + "@id": "http://edamontology.org/topic_0082" + } + ] + }, + { + "@id": "http://edamontology.org/data_1546", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A matrix of distances between amino acid residues (for example the C-alpha atoms) in a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein distance matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0906" + }, + { + "@id": "http://edamontology.org/data_2855" + } + ] + }, + { + "@id": "http://edamontology.org/data_2645", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "UPA[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a biological pathway from the Unipathway database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "upaid" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (Unipathway)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2365" + } + ] + }, + { + "@id": "http://edamontology.org/format_1911", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylogenetic tree TreeCon (text) format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TreeCon format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2556" + } + ] + }, + { + "@id": "http://edamontology.org/data_1799", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1035" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Pfalciparum" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene identifier from Plasmodium falciparum GeneDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (GeneDB Plasmodium falciparum)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1555", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An EMBASSY domain classification file (DCF) of classification and other data for domains from SCOP or CATH, in EMBL-like format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBASSY domain classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2507", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0258" + }, + { + "@id": "http://edamontology.org/operation_2501" + }, + { + "@id": "http://edamontology.org/operation_3024" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse a protein sequence alignment, typically to detect features or make predictions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2478" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence alignment analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0111", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0749" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Promoters in DNA sequences (region of DNA that facilitates the transcription of a particular gene by binding RNA polymerase and transcription factor proteins)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Promoters" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1136", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "PIRSF[0-9]{6}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the PIRSF database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PIRSF ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2910" + } + ] + }, + { + "@id": "http://edamontology.org/format_1370", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a hidden Markov model representation used by the HMMER package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HMMER format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2072" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2368", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an exon from the ASTD database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ASTD ID (exon)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2367" + } + ] + }, + { + "@id": "http://edamontology.org/format_1638", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of Affymetrix data file of information about (raw) expression levels of the individual probes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Affymetrix probe raw data format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "cel" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N3294a5eaa9214b28b606d567abb8101c" + }, + { + "@id": "http://edamontology.org/format_2058" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "_:N3294a5eaa9214b28b606d567abb8101c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3110" + } + ] + }, + { + "@id": "http://edamontology.org/format_1937", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Genpept protein entry format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Currently identical to refseqp format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "genpept" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2205" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1850", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Assign cysteine bonding state and disulfide bond partners in protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein cysteine and disulfide bond assignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N3d0b929d415e4c29a88a4ab7c88d7aa0" + }, + { + "@id": "http://edamontology.org/operation_0320" + } + ] + }, + { + "@id": "_:N3d0b929d415e4c29a88a4ab7c88d7aa0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0130" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2504", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2480" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) molecular structural data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structural data processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2851", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for the (3D) structure of a drug." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drug structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1463" + } + ] + }, + { + "@id": "http://edamontology.org/format_1652", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the reactome biological pathways database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reactome entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2596", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a catalogue of biological resources." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Catalogue identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Catalogue ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2460", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the solvent accessibility for each atom in a structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0387" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Waters are not considered." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein atom surface calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2602", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0920" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning a particular genotype, phenotype or a genotype / phenotype relation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genotype and phenotype data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3617", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for graph data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Graph format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0575", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Draw or visualise restriction maps in DNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Restriction map drawing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "http://edamontology.org/operation_0431" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0573" + }, + { + "@id": "_:Nee91a94a72c7458a85b00212aeb06f20" + } + ] + }, + { + "@id": "_:Nee91a94a72c7458a85b00212aeb06f20", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1289" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2829", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0089" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Conceptualisation, categorisation and naming of entities or phenomena within biology or bioinformatics." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontologies, nomenclature and classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D002965" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1940", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "FASTA sequence format including NCBI-style GIs." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "giFASTA format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2200" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3298", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phenomes, or the study of the change in phenotype (the physical and biochemical traits of organisms) in response to genetic and environmental factors." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Phenomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Phenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3299" + }, + { + "@id": "http://edamontology.org/topic_3391" + }, + { + "@id": "http://edamontology.org/topic_0625" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3072", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The detection of the positional features, such as functional and other key sites, in molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D058977" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1891", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby_namespace:iHOPsymbol" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of a protein or gene used in the iHOP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "iHOP symbol" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2907" + }, + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/format_1961", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://en.wikipedia.org/wiki/Stockholm_format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Stockholm multiple sequence alignment format (used by Pfam and Rfam)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Stockholm format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "http://en.wikipedia.org/wiki/Stockholm_format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_4011", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data rescue denotes digitalisation, formatting, archival, and publication of data that were not available in accessible or usable form. Examples are data from private archives, data inside publications, or in paper records stored privately or publicly." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data rescue" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Data_rescue" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3071" + } + ] + }, + { + "@id": "http://edamontology.org/data_1418", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0858" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment of molecular sequence(s) to a hidden Markov model(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence-profile alignment (HMM)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2349", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the UniRef50 database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "UniRef50 cluster id" + }, + { + "@value": "UniRef50 entry accession" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster ID (UniRef50)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2346" + } + ] + }, + { + "@id": "http://edamontology.org/data_1060", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The base name of a file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A file base name is the file name stripped of its directory specification and extension." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "File base name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1050" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2935", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise clustered quantitative data as set of different profiles, where each profile is plotted versus different entities or samples on the X-axis." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Clustered quantitative data plotting" + }, + { + "@value": "Wave graph plotting" + }, + { + "@value": "Clustered quantitative data rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Microarray wave graph plotting" + }, + { + "@value": "Microarray wave graph rendering" + }, + { + "@value": "Microarray cluster temporal graph rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "In the case of microarray data, visualise clustered gene expression data as a set of profiles, where each profile shows the gene expression values of a cluster across samples on the X-axis." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Clustering profile plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0571" + } + ] + }, + { + "@id": "http://edamontology.org/data_1907", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby_namespace:GeneId" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a gene from the KOME database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (KOME)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasDbXref", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/operation_0387", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:AtomAccessibilityMolecularPlus" + }, + { + "@value": "WHATIF:TotAccessibilitySolvent" + }, + { + "@value": "WHATIF:AtomAccessibilityMolecular" + }, + { + "@value": "WHATIF:ResidueAccessibilityMolecular" + }, + { + "@value": "WHATIF:ResidueAccessibilitySolvent" + }, + { + "@value": "WHATIF:ResidueAccessibilityVacuumMolecular" + }, + { + "@value": "WHATIF:ResidueAccessibilityVacuum" + }, + { + "@value": "WHATIF:TotAccessibilityMolecular" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the molecular surface area in proteins and other macromolecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein surface calculation" + }, + { + "@value": "Protein atom surface calculation" + }, + { + "@value": "Protein surface and interior calculation" + }, + { + "@value": "Protein residue surface calculation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular surface calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3351" + } + ] + }, + { + "@id": "http://edamontology.org/format_1513", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from the KEGG REACTION database of biochemical reactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KEGG REACTION enzyme report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3157", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.ebi.ac.uk/Tools/common/schema/ApplicationResult.xsd" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.ebi.ac.uk/Tools/common/schema/ApplicationResult.xsd" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EBI Application Result XML is a format returned by sequence similarity search Web services at EBI." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EBI Application Result XML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2920" + }, + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2066" + } + ] + }, + { + "@id": "http://edamontology.org/format_1970", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Jackknifer output sequence non-interleaved format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "jackknifernon" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/data_2242", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0871" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylogenetic property values data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic property values" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0894", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0962" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report about a specific amino acid." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0943", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Spectra from mass spectrometry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Mass spectrometry spectra" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mass spectrum" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2536" + }, + { + "@id": "_:Na703e5296ca042548b690ae8b83c5b79" + } + ] + }, + { + "@id": "_:Na703e5296ca042548b690ae8b83c5b79", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://edamontology.org/format_3655", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "http://sashimi.sourceforge.net/schema_revision/pepXML/pepXML_v118.xsd" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Open data format for the storage, exchange, and processing of peptide sequence assignments of MS/MS scans, intended to provide a common data output format for many different MS/MS search engines and subsequent peptide-level analyses." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pepXML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0107", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of codon usage in nucleotide sequence(s), genetic codes and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genetic codes and codon usage" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1624", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a record from the HGVbase database of genotypes and phenotypes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HGVbase entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2989", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "key residues involved in protein folding." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features report (key folding sites)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3293", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of evolutionary relationships amongst organisms from analysis of genetic information (typically gene or protein sequences)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Phylogenetics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D010802" + }, + { + "@id": "https://en.wikipedia.org/wiki/Phylogenetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0084" + }, + { + "@id": "http://edamontology.org/topic_0080" + } + ] + }, + { + "@id": "http://edamontology.org/format_3330", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://sourceforge.net/projects/poamsa/files/latest/download?source=files" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PO is the output format of Partial Order Alignment program (POA) performing Multiple Sequence Alignment (MSA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PO" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + } + ] + }, + { + "@id": "http://edamontology.org/data_1186", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a concept from the myGrid ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The ontology is provided as two components, the service ontology and the domain ontology. The domain ontology acts provides concepts for core bioinformatics data types and their relations. The service ontology describes the physical and operational features of web services." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "myGrid concept ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1087" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0218", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The processing and analysis of natural language, such as scientific literature in English, in order to extract data and information, or to enable human-computer interaction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "NLP" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Natural_language_processing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Text analytics" + }, + { + "@value": "Literature mining" + }, + { + "@value": "BioNLP" + }, + { + "@value": "Text mining" + }, + { + "@value": "Text data mining" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Natural language processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Natural_language_processing" + }, + { + "@id": "https://en.wikipedia.org/wiki/Biomedical_text_mining" + }, + { + "@id": "https://en.wikipedia.org/wiki/Text_mining" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3316" + }, + { + "@id": "http://edamontology.org/topic_3068" + } + ] + }, + { + "@id": "http://edamontology.org/data_1129", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of an entry from the BIND database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BIND accession number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1074" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1834", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate protein residue contacts with metal in a structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Residue-metal contact calculation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-metal contact calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0248" + } + ] + }, + { + "@id": "http://edamontology.org/data_2906", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of a peptide deposited in a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Peptide ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2901" + }, + { + "@id": "http://edamontology.org/data_0988" + } + ] + }, + { + "@id": "http://edamontology.org/data_2104", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an object from one of the BioCyc databases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioCyc ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2007", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "http://www.geneontology.org/doc/GO.xrf_abbs: SP_KW" + }, + { + "@value": "Moby_namespace:SP_KW" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A word or phrase that can appear in the keywords field (KW line) of entries from the UniProt database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UniProt keyword" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0968" + } + ] + }, + { + "@id": "http://edamontology.org/data_2689", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Myotis lucifugus' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Myotis lucifugus')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0870", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:phylogenetic_distance_matrix" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A matrix of estimated evolutionary distance between molecular sequences, such as is suitable for phylogenetic tree calculation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic distance matrix" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods might perform character compatibility analysis or identify patterns of similarity in an alignment or data matrix." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence distance matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2855" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3080", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Edit, convert or otherwise change a molecular tertiary structure, either randomly or specifically." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure editing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3096" + }, + { + "@id": "_:N15fb3ae1fc1a41b5b9776a3ee2d45167" + } + ] + }, + { + "@id": "_:N15fb3ae1fc1a41b5b9776a3ee2d45167", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0883" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3208", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Visualise, format or render a nucleic acid sequence that is part of (and in context of) a complete genome sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Genome viewing" + }, + { + "@value": "Genome browser" + }, + { + "@value": "Genome browsing" + }, + { + "@value": "Genome rendering" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3918" + }, + { + "@id": "http://edamontology.org/operation_0564" + } + ] + }, + { + "@id": "http://edamontology.org/format_3580", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.10" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Reporter Code Count-A data file (.csv) output by the Nanostring nCounter Digital Analyzer, which contains gene sample information, probe information and probe counts." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "rcc" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2058" + } + ] + }, + { + "@id": "http://edamontology.org/format_3850", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://orthoxml.org/xml/Documentation.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "OrthoXML is designed broadly to allow the storage and comparison of orthology data from any ortholog database. It establishes a structure for describing orthology relationships while still allowing flexibility for database-specific information to be encapsulated in the same format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "OrthoXML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2552" + }, + { + "@id": "http://edamontology.org/format_2031" + } + ] + }, + { + "@id": "http://edamontology.org/data_2900", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession of an entry from a database of carbohydrates." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Carbohydrate accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2901" + }, + { + "@id": "http://edamontology.org/data_2663" + } + ] + }, + { + "@id": "http://edamontology.org/format_2352", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.1093/bioinformatics/btq391" + }, + { + "@id": "http://doi.org/10.7490/f1000research.1113048.1" + }, + { + "@id": "http://doi.org/10.1186/1471-2105-12-494" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://bioxsd.org" + }, + { + "@id": "http://bioxsd.org/BioXSD-1.1.xsd" + } + ], + "http://edamontology.org/example": [ + { + "@id": "http://bioxsd.org/sequenceRecord.xml+json+yaml.xml" + }, + { + "@id": "http://bioxsd.org/accession.xml" + }, + { + "@id": "http://bioxsd.org/sequenceRecord.xml" + }, + { + "@id": "http://bioxsd.org/exampleFeatureRecords.html" + } + ], + "http://edamontology.org/ontology_used": [ + { + "@value": "Any ontology allowed, none mandatory. Preferably with URIs but URIs are not mandatory. Non-ontology terms are also allowed as the last resort in case of a lack of suitable ontology." + } + ], + "http://edamontology.org/repository": [ + { + "@id": "https://github.com/bioxsd/bioxsd" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://bioxsd.org" + }, + { + "@id": "http://bioxsd.org/BioXSD-1.1.xsd" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BioXSD-schema-based XML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, Web services, and object-oriented programming." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "BioXSD XML format" + }, + { + "@value": "BioXSD XML" + }, + { + "@value": "BioXSD" + }, + { + "@value": "BioJSON" + }, + { + "@value": "BioXSD data model" + }, + { + "@value": "BioYAML" + }, + { + "@value": "BioXSD+XML" + }, + { + "@value": "BioXSD/GTrack" + }, + { + "@value": "BioXSD in XML format" + }, + { + "@value": "BioXSD in XML" + }, + { + "@value": "BioXSD|GTrack" + }, + { + "@value": "BioXSD format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioXSD in XML' is the XML format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioXSD (XML)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2555" + }, + { + "@id": "http://edamontology.org/format_1920" + }, + { + "@id": "_:N3812e1baf5904327ab76a6a4ca84e9bb" + }, + { + "@id": "_:N5835644b6b144286a677f3de31020ccf" + }, + { + "@id": "http://edamontology.org/format_1919" + }, + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "_:N2e9786952fe645978ec5008a3f058e75" + }, + { + "@id": "_:N63335853f18d41d795f638ab16f3b04b" + }, + { + "@id": "http://edamontology.org/format_2571" + }, + { + "@id": "_:N8326216c3d1d4a5ab79f60ad4b99127a" + } + ] + }, + { + "@id": "_:N3812e1baf5904327ab76a6a4ca84e9bb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3108" + } + ] + }, + { + "@id": "_:N5835644b6b144286a677f3de31020ccf", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "_:N2e9786952fe645978ec5008a3f058e75", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2044" + } + ] + }, + { + "@id": "_:N63335853f18d41d795f638ab16f3b04b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0863" + } + ] + }, + { + "@id": "_:N8326216c3d1d4a5ab79f60ad4b99127a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1772" + } + ] + }, + { + "@id": "http://edamontology.org/format_3547", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used for images and image metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Image format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:Nd3346004398349989909468dae5e1cb9" + } + ] + }, + { + "@id": "_:Nd3346004398349989909468dae5e1cb9", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2968" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0655", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3512" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Coding RNA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1201", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A QSAR constitutional descriptor." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "QSAR constitutional descriptor" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "QSAR descriptor (constitutional)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0847" + } + ] + }, + { + "@id": "http://edamontology.org/topic_4014", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The monitoring method for measuring electrical activity in the brain." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "EEG" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Electroencephalography" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Electroencephalography" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3382" + }, + { + "@id": "http://edamontology.org/topic_3300" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3535", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "RNA and DNA-binding proteins and binding sites in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3534" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-nucleic acid binding sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3527", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cellular process pathways." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0602" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cellular process pathways" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2872", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A simple list of data identifiers (such as database accessions), possibly with additional basic information on the addressed data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ID list" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2093" + } + ] + }, + { + "@id": "http://edamontology.org/data_1365", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "One or more fingerprints (sequence classifiers) as used in the PRINTS database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Fingerprint" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2854" + } + ] + }, + { + "@id": "http://edamontology.org/data_0958", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Basic information about one or more bioinformatics applications or packages, such as name, type, description, or other documentation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tool metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2337" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1848", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF: PDBasXML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Reformat (a file or other report of) tertiary structure data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0335" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure formatting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1330", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on predicted epitopes that bind to MHC class II molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MHC Class II epitopes report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3981", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "tar" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "TAR archive file format generated by the Unix-based utility tar." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "tar" + }, + { + "@value": "TAR" + }, + { + "@value": "Tarball" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example a 1kb transcript with 1000 alignments in a sample of 10 million reads (out of which 8 million reads can be mapped) will have RPKM = 1000/(1 * 8) = 125" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TAR format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Tar_(computing)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3637", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate number of identified MS2 spectra as approximation of peptide / protein quantity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Spectral counting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3634" + } + ] + }, + { + "@id": "http://edamontology.org/data_1550", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1537" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Non-canonical atomic interactions in protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein non-canonical interactions" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3413", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that deals with the infectious diseases of the tropics." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3324" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Infectious tropical disease" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0203", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId": [ + { + "@value": "http://edamontology.org/topic_0197" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The analysis of levels and patterns of synthesis of gene products (proteins and functional RNA) including interpretation in functional terms of gene expression data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Expression" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Gene_expression" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Gene transcription" + }, + { + "@value": "Gene translation" + }, + { + "@value": "DNA chips" + }, + { + "@value": "Transcription" + }, + { + "@value": "DNA microarrays" + }, + { + "@value": "Codon usage" + }, + { + "@value": "Gene expression profiling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes the study of codon usage in nucleotide sequence(s), genetic codes and so on." + }, + { + "@value": "Gene expression levels are analysed by identifying, quantifying or comparing mRNA transcripts, for example using microarrays, RNA-seq, northern blots, gene-indexed expression profiles etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene expression" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D015870" + }, + { + "@id": "https://en.wikipedia.org/wiki/Gene_expression" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3321" + } + ] + }, + { + "@id": "http://edamontology.org/data_1601", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2865" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The effective number of codons used in a gene sequence. This reflects how far codon usage of a gene departs from equal usage of synonymous codons." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nc statistic" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0996", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a monosaccharide." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Monosaccharide identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1086" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2575", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict catalytic residues, active sites or other ligand-binding sites in protein sequences or structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein binding site prediction" + }, + { + "@value": "Protein binding site detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Binding site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Binding_site" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_1777" + }, + { + "@id": "http://edamontology.org/operation_3092" + }, + { + "@id": "_:Nd3f99103b6904a6da4d18c86e9122133" + } + ] + }, + { + "@id": "_:Nd3f99103b6904a6da4d18c86e9122133", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0152", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Carbohydrates, typically including structural information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Carbohydrates" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Carbohydrates" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Carbohydrate" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ] + }, + { + "@id": "http://edamontology.org/format_1603", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of Ensembl genome database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1870", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a genus of organism." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genus name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1868" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0481", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Model loop conformation in protein structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein loop modelling" + }, + { + "@value": "Protein modelling (loops)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Loop modelling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Loop_modeling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0477" + } + ] + }, + { + "@id": "http://edamontology.org/format_2063", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2350" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a report of general information about a specific enzyme." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein report (enzyme) format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2247", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0872" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A consensus phylogenetic tree derived from comparison of multiple trees." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic consensus tree" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3313", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.compbio.dundee.ac.uk/manuals/amps/subsubsection3_18_2_5.html#SECTION00018250000000000000" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A multiple alignment in vertical format, as used in the AMPS (Alignment of Multiple Protein Sequences) package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Block file format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BLC" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0660", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0659" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "One or more ribosomal RNA (rRNA) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "rRNA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3870", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Dynamic information of a structure molecular system coming from a molecular simulation: XYZ 3D coordinates (sometimes with their associated velocities) for every atom along time." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Trajectory data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3869" + } + ] + }, + { + "@id": "http://edamontology.org/data_1250", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1249" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Size of a sequence word." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Word size is used for example in word-based sequence database search methods." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Word size" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1477", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of PDB database in mmCIF format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mmCIF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_1475" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3745", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The extrapolation of empirical characteristics of individuals or populations, backwards in time, to their common ancestors." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Ancestral sequence reconstruction" + }, + { + "@value": "Character optimisation" + }, + { + "@value": "Character mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Ancestral reconstruction is often used to recover possible ancestral character states of ancient, extinct organisms." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ancestral reconstruction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0324" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0091", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.6 Bioinformatics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The archival, curation, processing and analysis of complex biological data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Bioinformatics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes data processing in general, including basic handling of files and databases, datatypes, workflows and annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Bioinformatics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Bioinformatics" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D016247" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0605" + } + ] + }, + { + "@id": "http://edamontology.org/data_1016", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF: number" + }, + { + "@value": "WHATIF: PDBx_atom_site" + }, + { + "@value": "PDBML:_atom_site.id" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A position of one or more points (base or residue) in a sequence, or part of such a specification." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "SO:0000735" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence position" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2534" + } + ] + }, + { + "@id": "http://edamontology.org/data_0848", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - \"raw\" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata)." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.23" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_2044" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A raw molecular sequence (string of characters) which might include ambiguity, unknown positions and non-sequence characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2044" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Non-sequence characters may be used for example for gaps and translation stop." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Raw sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3818", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://ccg.vital-it.ch/chipseq/elandformat.php" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Tab-delimited text file format used by Eland - the read-mapping program distributed by Illumina with its sequencing analysis pipeline - which maps short Solexa sequence reads to the human reference genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ELAND" + }, + { + "@value": "eland" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ELAND format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2561" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2529", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2084" + }, + { + "@id": "http://edamontology.org/data_0896" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on a specific molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecule report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3803", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mass spectra identification of compounds that are produced by living systems. Including polyketides, terpenoids, phenylpropanoids, alkaloids and antibiotics." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Fragmenation tree generation" + }, + { + "@value": "Metabolite identification" + }, + { + "@value": "De novo metabolite identification" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Natural product identification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3214" + } + ] + }, + { + "@id": "http://edamontology.org/data_3273", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name or other identifier of an entry from a biosample database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sample accession" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sample ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:N10a9e47736bf4d768e454c9639861330" + } + ] + }, + { + "@id": "_:N10a9e47736bf4d768e454c9639861330", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3113" + } + ] + }, + { + "@id": "http://edamontology.org/format_3605", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://en.wikipedia.org/wiki/Sun_Raster" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sun Raster is a raster graphics file format used on SunOS by Sun Microsystems." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "rast" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/format_3827", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.psidev.info/probed" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": ". proBED is an adaptation of BED (format_3003), which was extended to meet specific requirements entailed by proteomics data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "proBED" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2919" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_2311", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBL entry format wrapped in HTML elements." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBL-HTML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2331" + }, + { + "@id": "http://edamontology.org/format_2543" + } + ] + }, + { + "@id": "http://edamontology.org/format_2069", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a sequence profile." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence profile format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nd5f4ada629fe42769fee6d44cdf7a71f" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Nd5f4ada629fe42769fee6d44cdf7a71f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1354" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0173", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0097" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid structure prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2751", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.26" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_2903" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a particular genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2749" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GenomeReviews ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1781", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse a known network of gene regulation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Gene regulatory network modelling" + }, + { + "@value": "Regulatory network comparison" + }, + { + "@value": "Gene regulatory network comparison" + }, + { + "@value": "Regulatory network modelling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene regulatory network analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N8757d556dbd6410baf1a5d8b62ece839" + }, + { + "@id": "http://edamontology.org/operation_3927" + }, + { + "@id": "http://edamontology.org/operation_2495" + } + ] + }, + { + "@id": "_:N8757d556dbd6410baf1a5d8b62ece839", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0602" + } + ] + }, + { + "@id": "http://edamontology.org/format_4007", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "m" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The file format for MATLAB scripts or functions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "m" + }, + { + "@value": "MATLAB" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MATLAB script" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2032" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0542", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Phylogenetic tree construction from gene frequency data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree construction (from gene frequencies)" + }, + { + "@value": "Phylogenetic tree generation (from gene frequencies)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic inference (from gene frequencies)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0538" + }, + { + "@id": "_:N44ba10fc1cc942b9a2eeabff8e149152" + }, + { + "@id": "_:N3464240692c44de883fe7cbdfa0aa7fa" + } + ] + }, + { + "@id": "_:N44ba10fc1cc942b9a2eeabff8e149152", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2873" + } + ] + }, + { + "@id": "_:N3464240692c44de883fe7cbdfa0aa7fa", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0203" + } + ] + }, + { + "@id": "http://edamontology.org/data_1585", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entropy of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid entropy" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2985" + } + ] + }, + { + "@id": "http://edamontology.org/format_1666", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of mathematical models from the BioModel database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Models are annotated and linked to relevant data resources, such as publications, databases of compounds and pathways, controlled vocabularies, etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioModel mathematical model format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3669", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Some material that is used for educational (training) purposes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Open educational resource" + }, + { + "@value": "OER" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Training material" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3180", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Evaluate a DNA sequence assembly, typically for purposes of quality control." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence assembly quality evaluation" + }, + { + "@value": "Sequence assembly QC" + }, + { + "@value": "Assembly QC" + }, + { + "@value": "Assembly quality evaluation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence assembly validation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N0083a0dc6b1f49369679396345e96d06" + }, + { + "@id": "http://edamontology.org/operation_2428" + }, + { + "@id": "_:N1117cd47516a4def91c1e0944915a35e" + }, + { + "@id": "http://edamontology.org/operation_3218" + }, + { + "@id": "_:N2eff09a94bad48feb6c586d7e7ff267b" + } + ] + }, + { + "@id": "_:N0083a0dc6b1f49369679396345e96d06", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0925" + } + ] + }, + { + "@id": "_:N1117cd47516a4def91c1e0944915a35e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0196" + } + ] + }, + { + "@id": "_:N2eff09a94bad48feb6c586d7e7ff267b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3181" + } + ] + }, + { + "@id": "http://edamontology.org/format_1606", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of DragonDB genome database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DragonDB gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2295", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique (and typically persistent) identifier of a gene in a database, that is (typically) different to the gene name/symbol." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene code" + }, + { + "@value": "Gene accession" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1893" + }, + { + "@id": "http://edamontology.org/data_1025" + } + ] + }, + { + "@id": "http://edamontology.org/data_2335", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A score derived from the alignment of two sequences, which is then normalised with respect to the scoring system." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Bit scores are normalised with respect to the scoring system and therefore can be used to compare alignment scores from different searches." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Bit score" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1413" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3760", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Operations concerning the handling and use of other tools." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Endpoint management" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Service management" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3438", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mathematical determination of the value of something, typically a properly of a molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3068", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The scientific literature, language processing, reference information, and documentation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Literature" + }, + { + "@value": "Language" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Literature_and_language" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Documentation" + }, + { + "@value": "References" + }, + { + "@value": "Scientific literature" + }, + { + "@value": "Citations" + }, + { + "@value": "Bibliography" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes the documentation of resources such as tools, services and databases, user support, how to get help etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Literature and language" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D011642" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ] + }, + { + "@id": "http://edamontology.org/format_1615", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of the Sanger GeneDB genome database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GeneDB gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3344", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.3 Health sciences" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Topic concerning biological science that is (typically) performed in the context of medicine." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biomedical sciences" + }, + { + "@value": "Health science" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Biomedical_science" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biomedical science" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Biomedical_sciences" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_4019" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0640", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The archival, processing and analysis of nucleotide sequences and and sequence-based entities such as alignments, motifs and profiles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2347", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the UniRef100 database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "UniRef100 cluster id" + }, + { + "@value": "UniRef100 entry accession" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster ID (UniRef100)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2346" + } + ] + }, + { + "@id": "http://edamontology.org/format_1419", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format for alignment of molecular sequences to MEME profiles (position-dependent scoring matrices) as generated by the MAST tool from the MEME package." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence-MEME profile alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2014" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_0917", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0916" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on the classification of nucleic acid / gene sequences according to the functional classification of their gene products." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene classification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3488", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Spectral information for a molecule from a nuclear magnetic resonance experiment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "NMR spectra" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NMR spectrum" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3483" + }, + { + "@id": "_:N03fa56471fe6493e9547be19e2cd9249" + } + ] + }, + { + "@id": "_:N03fa56471fe6493e9547be19e2cd9249", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1317" + } + ] + }, + { + "@id": "http://edamontology.org/data_2382", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from a database of genotype experiment metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genotype experiment ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:Nea7ba0b6a84741059d644df49e4f8b72" + } + ] + }, + { + "@id": "_:Nea7ba0b6a84741059d644df49e4f8b72", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2531" + } + ] + }, + { + "@id": "http://edamontology.org/data_1503", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Statistical protein contact potentials." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Contact potentials (amino acid pair-wise)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid pair-wise contact potentials" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2016" + } + ] + }, + { + "@id": "http://edamontology.org/format_3467", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Graphics Interchange Format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GIF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_1376", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1355" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A protein site signature (sequence classifier) from the InterPro database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A protein site signature is a classifier for a specific site in a protein." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein site signature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1056", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a biological or bioinformatics database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + }, + { + "@id": "http://edamontology.org/data_1048" + } + ] + }, + { + "@id": "http://edamontology.org/data_0998", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "IUPAC recommended name of a chemical compound." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "IUPAC chemical name" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical name (IUPAC)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0990" + } + ] + }, + { + "@id": "http://edamontology.org/data_3238", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "CL_[0-9]{7}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cell type ontology concept ID." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CL ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell type ontology ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1087" + }, + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2893" + } + ] + }, + { + "@id": "http://edamontology.org/data_2992", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An image of protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure image (protein)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure image" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3153" + }, + { + "@id": "http://edamontology.org/data_1710" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0621", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A specific organism, or group of organisms, used to study a particular aspect of biology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Organisms" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Model_organisms" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This may include information on the genome (including molecular sequences and map, genes and annotation), proteome, as well as more general information about an organism." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Model organisms" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Model_organism" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/format_2005", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Treecon format for (aligned) sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TreeCon-seq" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3243", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.psidev.info/psi-par" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.psidev.info/psi-par" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein affinity format (PSI-PAR), standardised by HUPO PSI MI. It is compatible with PSI MI XML (MIF) and uses the same XML Schema." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PSI-PAR" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3158" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0231", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Edit or change a molecular sequence, either randomly or specifically." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence editing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2403" + }, + { + "@id": "http://edamontology.org/operation_3096" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0508", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0295" + }, + { + "@id": "http://edamontology.org/operation_0510" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Globally align (superimpose) exactly two molecular tertiary structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Global alignment methods identify similarity across the entire structures." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pairwise structure alignment generation (global)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1873", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby_namespace:iHOPorganism" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier for an organism used in the iHOP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "iHOP organism ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2908" + } + ] + }, + { + "@id": "http://edamontology.org/data_0835", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0582" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compendium of controlled vocabularies for the biomedical domain (Unified Medical Language System)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "UMLS vocabulary" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2817", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Yeast, e.g. information on a specific yeast genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Yeast" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3733", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.15" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a flow cell of a sequencing machine." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A flow cell is used to immobilise, amplify and sequence millions of molecules at once. In Illumina machines, a flowcell is composed of 8 \"lanes\" which allows 8 experiments in a single analysis." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Flow cell identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3732" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0294", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align molecular sequences using sequence and structural information." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence alignment (structure-based)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure-based sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0292" + } + ] + }, + { + "@id": "http://edamontology.org/data_1449", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Matrix of integer or floating point numbers for amino acid comparison." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Amino acid comparison matrix" + }, + { + "@value": "Amino acid substitution matrix" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Comparison matrix (amino acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2016" + }, + { + "@id": "http://edamontology.org/data_0874" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3423", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Holistic medicine" + }, + { + "@value": "Alternative medicine" + }, + { + "@value": "Integrative medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.12 Integrative and Complementary medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Medical therapies that fall beyond the scope of conventional medicine but may be used alongside it in the treatment of disease and ill health." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Complementary_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Complementary medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Alternative_medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_2679", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Echinops telfairi' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Echinops telfairi')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3989", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "gz" + }, + { + "@value": "gzip" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "GNU zip compressed file format common to Unix-based operating systems." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "gzip" + }, + { + "@value": "GNU Zip" + }, + { + "@value": "gz" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GZIP format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gzip" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_1152", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the HIVDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HIVDB identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2218", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3106" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Basic information about a server on the web, such as an SRS server." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Server metadata" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3316", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.2.99 Other" + }, + { + "@value": "VT 1.2 Computer sciences" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The theory and practical use of computer systems." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Computer_science" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "HPC" + }, + { + "@value": "High-performance computing" + }, + { + "@value": "Cloud computing" + }, + { + "@value": "High performance computing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Computer science" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Computer_science" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0458", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate and plot a DNA or DNA/RNA melting curve." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid melting curve plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0456" + } + ] + }, + { + "@id": "http://edamontology.org/data_2984", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report concerning or derived from the analysis of a biological pathway or network, such as a map (diagram) or annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway or network report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + }, + { + "@id": "_:N2b138d8ca67c449385568f3208100374" + } + ] + }, + { + "@id": "_:N2b138d8ca67c449385568f3208100374", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0602" + } + ] + }, + { + "@id": "http://edamontology.org/format_3845", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.ebi.ac.uk/goldman-srv/hsaml/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An alignment format generated by PRANK/PRANKSTER consisting of four elements: newick, nodes, selection and model." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HSAML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2555" + } + ] + }, + { + "@id": "http://edamontology.org/data_0846", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A specification of a chemical structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Chemical structure specification" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chemical formula" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2050" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2265", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Query a database and retrieve one or more data identifiers." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (identifier)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1163", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a data type from the MIRIAM database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MIRIAM data type name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2253" + }, + { + "@id": "_:N85eb3c7c7cca408db5f6a8f3fc2d7654" + } + ] + }, + { + "@id": "_:N85eb3c7c7cca408db5f6a8f3fc2d7654", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0957" + } + ] + }, + { + "@id": "http://edamontology.org/format_3586", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://bedtools.readthedocs.org/en/latest/content/general-usage.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://bedtools.readthedocs.org/en/latest/content/general-usage.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A BED file where each feature is described by all twelve columns." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 12" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "bed12" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3584" + } + ] + }, + { + "@id": "http://edamontology.org/format_1626", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry from the KEGG DISEASE database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KEGG DISEASE entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2739", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of gene in the Genolist database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (Genolist)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1495", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0887" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "DaliLite hit table of protein chain tertiary structure alignment data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The significant and top-scoring hits for regions of the compared structures is shown. Data such as Z-Scores, number of aligned residues, root-mean-square deviation (RMSD) of atoms and sequence identity are given." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DaliLite hit table" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_2813", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0634" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The genes, gene variations and proteins involved in one or more specific diseases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Disease genes and proteins" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3158", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.psidev.info/mif" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.psidev.info/mif" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML Molecular Interaction Format (MIF), standardised by HUPO PSI MI." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MIF" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PSI MI XML (MIF)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_2054" + } + ] + }, + { + "@id": "http://edamontology.org/format_1927", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBL entry format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "EMBL sequence format" + }, + { + "@value": "EMBL" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBL format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2206" + }, + { + "@id": "http://edamontology.org/format_2181" + } + ] + }, + { + "@id": "http://edamontology.org/data_0859", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0950" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data files used by motif or profile methods." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence signature model" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0100", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0821" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Topic for the study of restriction enzymes, their cleavage sites and the restriction of nucleic acids." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid restriction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3499", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.ensembl.org/info/website/upload/var.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Ensembl standard format for variation data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl variation file format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2921" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#savedBy", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/operation_3184", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Render and visualise a DNA sequence assembly." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence assembly rendering" + }, + { + "@value": "Assembly rendering" + }, + { + "@value": "Assembly visualisation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence assembly visualisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0564" + } + ] + }, + { + "@id": "http://edamontology.org/format_1741", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.1186/1758-2946-3-41" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "OSCAR format of annotated chemical text." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "OSCAR (Open-Source Chemistry Analysis Routines) software performs chemistry-specific parsing of chemical documents. It attempts to identify chemical names, ontology concepts, and chemical data from a document." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "OSCAR format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2332" + }, + { + "@id": "http://edamontology.org/format_3780" + } + ] + }, + { + "@id": "http://purl.obolibrary.org/obo/transitive_over", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/data_2913", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.26" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_1869" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An accession of annotation on a (group of) viruses (catalogued in a database)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2785" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Virus identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3672", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotate one or more sequences with functional information, such as cellular processes or metaobolic pathways, by reference to a controlled vocabulary - invariably the Gene Ontology (GO)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence functional annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene functional annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0361" + } + ] + }, + { + "@id": "http://edamontology.org/format_1946", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Mega interleaved and non-interleaved sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mega-seq" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2551" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0238", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Discover new motifs or conserved patterns in sequences or sequence alignments (de-novo discovery)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Motif discovery" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Motifs and patterns might be conserved or over-represented (occur with improbable frequency)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence motif discovery" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0253" + }, + { + "@id": "http://edamontology.org/operation_2404" + }, + { + "@id": "_:Nf371b119577140ff8d8a1a344c0ac276" + }, + { + "@id": "_:N9a1bdf9ca4984a87bf4c4867f78503ad" + } + ] + }, + { + "@id": "_:Nf371b119577140ff8d8a1a344c0ac276", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "_:N9a1bdf9ca4984a87bf4c4867f78503ad", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0858" + } + ] + }, + { + "@id": "http://edamontology.org/format_2585", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://sbml.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://sbml.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Systems Biology Markup Language (SBML), the standard XML format for models of biological processes such as for example metabolism, cell signaling, and gene regulation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SBML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2013" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3643", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Peptide sequence tags are used as piece of information about a peptide obtained by tandem mass spectrometry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Tag-based peptide identification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3631" + } + ] + }, + { + "@id": "_:N88fb3f7b8f0e43c38c59caa98e81db80", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "In very unusual cases." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#isCyclic" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/is_output_of" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1565", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "protein-protein interaction(s), including interactions between protein domains." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0906" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-protein interaction report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3236", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The position of a cytogenetic band in a genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Information might include start and end position in a chromosome sequence, chromosome identifier, name of band and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cytoband position" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2012" + } + ] + }, + { + "@id": "http://edamontology.org/data_0892", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Matrix of values used for scoring sequence-structure compatibility." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sequence-structure scoring matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + } + ] + }, + { + "@id": "http://edamontology.org/format_3097", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of data concerning the classification of the sequences and/or structures of protein structural domain(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein domain classification format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Ndb90ab836e34490687d152612660329a" + }, + { + "@id": "http://edamontology.org/format_2350" + } + ] + }, + { + "@id": "_:Ndb90ab836e34490687d152612660329a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0907" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3974", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Epistasis can be defined as the ability of the genotype at one locus to supersede the phenotypic effect of a mutation at another locus. This interaction between genes can occur at different level: gene expression, protein levels, etc..." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Epistatic interactions" + }, + { + "@value": "Epistatic genetic interaction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Epistasis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "http://purl.bioontology.org/ontology/MSH/D004843" + }, + { + "@id": "https://en.wikipedia.org/wiki/Epistasis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0625" + } + ] + }, + { + "@id": "http://edamontology.org/format_3476", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.10" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a file of gene expression data, e.g. a gene expression matrix or profile." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/format_2058" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene expression data format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2082", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An array of numerical values." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Array" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Matrix" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/topic_4010", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Open science encompasses the practices of making scientific research transparent and participatory, and its outputs publicly accessible." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Open science" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Open_science" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3341", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Collections of DNA, including both collections of cloned molecules, and populations of micro-organisms that store and propagate cloned DNA." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Clone_library" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Clone library" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Library_(biology)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3277" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0515", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search and retrieve names of or documentation on bioinformatics tools, for example by keyword or which perform a particular function." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (tool metadata)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1410", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A number defining the penalty for opening gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Terminal gap opening penalty" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1397" + } + ] + }, + { + "@id": "http://edamontology.org/format_1360", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A motif in the format generated by the MEME program." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "meme-motif" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2068" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://www.geneontology.org/formats/oboInOwl#replacedBy", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/format_3008", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format5" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://genome.ucsc.edu/FAQ/FAQformat#format5" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Multiple Alignment Format (MAF) supporting alignments of whole genomes with rearrangements, directions, multiple pieces to the alignment, and so forth." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Typically generated by Multiz and TBA aligners; can be displayed in a genome browser like a sequence annotation track. This should not be confused with MIRA Assembly Format or Mutation Annotation Format." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MAF" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2919" + }, + { + "@id": "http://edamontology.org/format_2554" + } + ] + }, + { + "@id": "http://purl.obolibrary.org/obo/date", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/format_2549", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "OBO ontology text format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "OBO" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2196" + } + ] + }, + { + "@id": "_:N118525b44e6f4957b2659f46bd797385", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Perhaps surprisingly, the definition of 'SO:assembly' is narrower than the 'SO:sequence_assembly'." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/data_0925" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "SO:0001248" + } + ] + }, + { + "@id": "http://edamontology.org/format_4026", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://biosimulators.org/conventions/simulator-interfaces" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://biosimulators.org/conventions/simulator-interfaces" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "https://reproduciblebiomodels.org/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Outlines the syntax and semantics of the input and output arguments for command-line interfaces for biosimulation tools." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioSimulators standard for command-line interfaces for biosimulation tools" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_3113", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation on a biological sample, for example experimental factors and their values." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This might include compound and dose in a dose response experiment." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sample annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2337" + } + ] + }, + { + "@id": "http://edamontology.org/data_2916", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of an entry from the DDBJ sequence database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "DDBJ accession number" + }, + { + "@value": "DDBJ identifier" + }, + { + "@value": "DDBJ ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DDBJ accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1103" + } + ] + }, + { + "@id": "http://edamontology.org/data_2539", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2083" + }, + { + "@id": "http://edamontology.org/data_1916" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning an alignment of two or more molecular sequences, structures or derived data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. This includes entities derived from sequences and structures such as motifs and profiles." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alignment data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3254", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.2" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A superset of the \"Description-Logic Knowledge Representation System Specification from the KRSS Group of the ARPA Knowledge Sharing Effort\"." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This format is used in Protege 4." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KRSS2 Syntax" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2195" + } + ] + }, + { + "@id": "http://edamontology.org/format_3847", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.genome.jp/kegg/xml/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The KEGG Markup Language (KGML) is an exchange format of the KEGG pathway maps, which is converted from internally used KGML+ (KGML+SVG) format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "KEGG Markup Language" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "KGML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2013" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/data_2755", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a transcription factor." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcription factor name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1077" + }, + { + "@id": "http://edamontology.org/data_1009" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0534", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0319" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Assign secondary structure from protein coordinate data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0319" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure assignment (from coordinate data)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "_:Nc8fe69bd5c86458b8113b80f58aa3517", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:inheres_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'specifically_dependent_continuant' (snap:SpecificallyDependentContinuant) with ontological categories that are an 'independent_continuant' (snap:IndependentContinuant), and broader in the sense that it relates any borne subjects not just functions." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/is_function_of" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "OBO_REL:inheres_in" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3041", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Molecular sequence data resources, including sequence sites, alignments, motifs and profiles." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence databases" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3094", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict a network of protein interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction network prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2949" + }, + { + "@id": "http://edamontology.org/operation_3927" + } + ] + }, + { + "@id": "http://edamontology.org/data_1566", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on protein-ligand (small molecule) interaction(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein-drug interaction report" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein-ligand interaction report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0906" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0457", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate and plot a DNA or DNA/RNA stitch profile." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A stitch profile represents the alternative conformations that partly melted DNA can adopt in a temperature range." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid stitch profile plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0456" + } + ] + }, + { + "@id": "http://edamontology.org/data_1717", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0966" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term from the MeSH vocabulary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MeSH" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0121", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein and peptide identification, especially in the study of whole proteomes of organisms." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Proteomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "MS-based untargeted proteomics" + }, + { + "@value": "Metaproteomics" + }, + { + "@value": "Discovery proteomics" + }, + { + "@value": "Quantitative proteomics" + }, + { + "@value": "Targeted proteomics" + }, + { + "@value": "MS-based targeted proteomics" + }, + { + "@value": "Peptide identification" + }, + { + "@value": "Protein and peptide identification" + }, + { + "@value": "Bottom-up proteomics" + }, + { + "@value": "Top-down proteomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Includes metaproteomics: proteomics analysis of an environmental sample." + }, + { + "@value": "Proteomics includes any methods (especially high-throughput) that separate, characterize and identify expressed proteins such as mass spectrometry, two-dimensional gel electrophoresis and protein microarrays, as well as in-silico methods that perform proteolytic or mass calculations on a protein sequence and other analyses of protein production data, for example in different cells or tissues." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Proteomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Proteomics" + }, + { + "@value": "http://purl.bioontology.org/ontology/MSH/D040901" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3391" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0422", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect or predict cleavage sites (enzymatic or chemical) in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein cleavage site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Na75c7470ebb840ca95ea8e82e793ce78" + }, + { + "@id": "http://edamontology.org/operation_3092" + } + ] + }, + { + "@id": "_:Na75c7470ebb840ca95ea8e82e793ce78", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0121" + } + ] + }, + { + "@id": "http://edamontology.org/data_2771", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of gene cluster in the H-InvDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HIX ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3463", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse the correlation patterns among features/molecules across across a variety of experiments, samples etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Co-expression analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Gene expression correlation" + }, + { + "@value": "Gene co-expression network analysis" + }, + { + "@value": "Gene expression correlation analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Expression correlation analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0315" + }, + { + "@id": "http://edamontology.org/operation_3465" + } + ] + }, + { + "@id": "http://edamontology.org/format_3156", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.biopax.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.biopax.org" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BioPAX is an exchange format for pathway data, with its data model defined in OWL." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioPAX" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2013" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3446", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analysis of cell migration images in order to study cell migration, typically in order to study the processes that play a role in the disease progression." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell migration analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Cell_migration" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N93dbb8d5ed6c4996bc5dd6b78ec36856" + }, + { + "@id": "http://edamontology.org/operation_3443" + } + ] + }, + { + "@id": "_:N93dbb8d5ed6c4996bc5dd6b78ec36856", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_2229" + } + ] + }, + { + "@id": "http://edamontology.org/ontology_used", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'Ontology used' concept property ('ontology_used' metadata tag) of format concepts links to a domain ontology that is used inside the given data format, or contains a note about ontology use within the format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology used" + } + ] + }, + { + "@id": "http://edamontology.org/data_1411", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A number defining the penalty for extending gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Terminal gap extension penalty" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1398" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2953", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0097" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Topic for the design of nucleic acid sequences with specific conformations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3326", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a data index of some type." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data index format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:N86fafddb6f9d482899f2f5acbf628065" + } + ] + }, + { + "@id": "_:N86fafddb6f9d482899f2f5acbf628065", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0955" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3798", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.17" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An operation which groups reads or contigs and assigns them to operational taxonomic units." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Binning" + }, + { + "@value": "Binning shotgun reads" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Binning methods use one or a combination of compositional features or sequence similarity." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Read binning" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Binning_(metagenomics)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3921" + } + ] + }, + { + "@id": "http://edamontology.org/data_2523", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning phylogeny, typically of molecular sequences, including reports of information concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/data_2308", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2530" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on the taxonomy of a specific virus." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Virus annotation (taxonomy)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3811", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://darlinglab.org/mauve/user-guide/files.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XMFA format stands for eXtended Multi-FastA format and is used to store collinear sub-alignments that constitute a single genome alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "eXtended Multi-FastA format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "XMFA" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "http://darlinglab.org/mauve/user-guide/files.html#the-alignment-file-and-the-xmfa-file-format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2200" + }, + { + "@id": "http://edamontology.org/format_2554" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3430", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison)This is a distinction made on basis of input; all features exist can be mapped to a sequence so this isn't needed." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0253" + }, + { + "@id": "http://edamontology.org/operation_0415" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict, recognise and identify functional or other key sites within nucleic acid sequences, typically by scanning for known motifs, patterns and regular expressions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0415" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid sequence feature detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3874", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PCAZip format is a binary compressed file to store atom coordinates based on Essential Dynamics (ED) and Principal Component Analysis (PCA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The compression is made projecting the Cartesian snapshots collected along the trajectory into an orthogonal space defined by the most relevant eigenvectors obtained by diagonalization of the covariance matrix (PCA). In the compression/decompression process, part of the original information is lost, depending on the final number of eigenvectors chosen. However, with a reasonable choice of the set of eigenvectors the compression typically reduces the trajectory file to less than one tenth of their original size with very acceptable loss of information. Compression with PCAZip can only be applied to unsolvated structures." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PCAzip" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3867" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_1082", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from a database of biological pathways or networks." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway or network identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:N12f387c4f7f9480c9e860dd7556c24b0" + } + ] + }, + { + "@id": "_:N12f387c4f7f9480c9e860dd7556c24b0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2600" + } + ] + }, + { + "@id": "http://edamontology.org/is_function_of", + "@type": [ + "http://www.w3.org/2002/07/owl#ObjectProperty" + ], + "http://purl.obolibrary.org/obo/is_anti_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_reflexive": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/transitive_over": [ + { + "@value": "OBO_REL:is_a" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'A is_function_of B' defines for the subject A, that it is a function of the object B." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "OBO_REL:function_of" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "OBO_REL:inheres_in" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#isCyclic": [ + { + "@value": true + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subject A can either be concept that is (or is in a role of) a function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is (or is in a role of) a function specification. Object B can be any concept or entity. Within EDAM itself, 'is_function_of' is not used." + } + ], + "http://www.w3.org/2000/01/rdf-schema#domain": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "is function of" + } + ], + "http://www.w3.org/2004/02/skos/core#broadMatch": [ + { + "@id": "http://www.loa.istc.cnr.it/ontologies/DOLCE-Lite.owl#inherent-in" + } + ], + "http://www.w3.org/2004/02/skos/core#exactMatch": [ + { + "@id": "http://wsio.org/is_function_of" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2868", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId": [ + { + "@id": "http://edamontology.org/data_2868" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Microsatellite polymorphism in a DNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_2885" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microsatellites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1861", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Map of a plasmid (circular DNA) in PlasMapper TextMap format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PlasMapper TextMap" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2060" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2372", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An informative report on individual spot(s) from a two-dimensional (2D PAGE) gel." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "2D PAGE spot report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2036", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of raw (unplotted) phylogenetic data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic character data format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:N37ddf02eb7f4428fa6095a517baedec1" + } + ] + }, + { + "@id": "_:N37ddf02eb7f4428fa6095a517baedec1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0871" + } + ] + }, + { + "@id": "http://edamontology.org/format_3881", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://ambermd.org/formats.html#topology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "AMBER Prmtop file (version 7) is a structure topology text file divided in several sections designed to be parsed easily using simple Fortran code. Each section contains particular topology information, such as atom name, charge, mass, angles, dihedrals, etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "AMBER Parm" + }, + { + "@value": "Prmtop" + }, + { + "@value": "Parm7" + }, + { + "@value": "Prmtop7" + }, + { + "@value": "AMBER Parm7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "version 7 is written to distinguish it from old versions of AMBER Prmtop. Similarly to HDF5, it is a completely different format, according to AMBER group: a drastic change to the file format occurred with the 2004 release of Amber 7 (http://ambermd.org/prmtop.pdf)" + }, + { + "@value": "It can be modified manually, but as the size of the system increases, the hand-editing becomes increasingly complex. AMBER Parameter-Topology file format is used extensively by the AMBER software suite and is referred to as the Prmtop file for short." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "AMBER top" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2033" + }, + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3879" + } + ] + }, + { + "@id": "http://edamontology.org/data_1284", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A gene map showing distances between loci based on relative cotransduction frequencies." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA transduction map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1278" + } + ] + }, + { + "@id": "http://purl.obolibrary.org/obo/is_anti_symmetric", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/format_1915", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A defined way or layout of representing and structuring data in a computer file, blob, string, message, or elsewhere." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Exchange format" + }, + { + "@value": "File format" + }, + { + "@value": "Data format" + }, + { + "@value": "Data model" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The main focus in EDAM lies on formats as means of structuring data exchanged between different tools or resources. The serialisation, compression, or encoding of concrete data formats/models is not in scope of EDAM. Format 'is format of' Data." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "http://en.wikipedia.org/wiki/List_of_file_formats" + }, + { + "@id": "http://en.wikipedia.org/wiki/File_format" + } + ], + "http://www.w3.org/2002/07/owl#disjointWith": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + }, + { + "@id": "http://edamontology.org/operation_0004" + }, + { + "@id": "http://edamontology.org/topic_0003" + } + ], + "http://www.w3.org/2004/02/skos/core#broadMatch": [ + { + "@id": "http://purl.org/dc/elements/1.1/format" + }, + { + "@id": "http://semanticscience.org/resource/SIO_000612" + }, + { + "@id": "http://www.onto-med.de/ontologies/gfo.owl#Perpetuant" + }, + { + "@id": "http://www.onto-med.de/ontologies/gfo.owl#Symbol_structure" + }, + { + "@id": "http://purl.org/biotop/biotop.owl#Quality" + }, + { + "@id": "http://purl.obolibrary.org/obo/BFO_0000002" + } + ], + "http://www.w3.org/2004/02/skos/core#relatedMatch": [ + { + "@id": "http://purl.org/biotop/biotop.owl#MachineLanguage" + }, + { + "@id": "http://purl.obolibrary.org/obo/BFO_0000019" + }, + { + "@id": "http://wsio.org/compression_004" + }, + { + "@id": "http://purl.obolibrary.org/obo/IAO_0000098" + }, + { + "@id": "http://www.loa.istc.cnr.it/ontologies/DOLCE-Lite.owl#quality" + }, + { + "@id": "http://semanticscience.org/resource/SIO_000618" + } + ] + }, + { + "@id": "http://edamontology.org/format_1629", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of MIRA sequence trace information file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mira" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2057" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/format_3782", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "http://doi.org/10.1093/database/bat064" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://bioc.sourceforge.net/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://bioc.sourceforge.net/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "BioC is a standardised XML format for sharing and integrating text data and annotations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BioC" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3780" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3666", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more molecular surfaces." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular surface comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3351" + }, + { + "@id": "http://edamontology.org/operation_2483" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2409", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Basic (non-analytical) operations of some data, either a file or equivalent entity in memory, such that the same basic type of data is consumed as input and generated as output." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "File handling" + }, + { + "@value": "File processing" + }, + { + "@value": "Report handling" + }, + { + "@value": "Utility operation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Processing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data handling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Na7bdb90b2b6942489a135fec3925d540" + }, + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "_:Na7bdb90b2b6942489a135fec3925d540", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3489" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3429", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construct some data entity." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Construction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For non-analytical operations, see the 'Processing' branch." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/data_2836", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier for a virus from the DPVweb database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "DPVweb virus ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DPVweb ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2785" + } + ] + }, + { + "@id": "http://edamontology.org/data_2540", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0955" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning an index of data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data index data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3479", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Multiple gene identifiers in a specific order." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Such data are often used for genome rearrangement tools and phylogenetic tree labeling." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene order" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + } + ] + }, + { + "@id": "http://edamontology.org/data_1083", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a biological or biomedical workflow, typically from a database of workflows." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Workflow ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/data_3498", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on gene sequence variations resulting large-scale genotyping and DNA sequencing projects." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene sequence variations" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Variations are stored along with a reference genome." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence variations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N6e2de8d32569492ba556e63422634de1" + }, + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "_:N6e2de8d32569492ba556e63422634de1", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0199" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0634", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.1.6 Pathology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Diseases, including diseases in general and the genes, gene variations and proteins involved in one or more specific diseases." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Disease" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Pathology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Pathology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_3002", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Annotation of one particular positional feature on a biomolecular (typically genome) sequence, suitable for import and display in a genome browser." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence annotation track" + }, + { + "@value": "Genomic track" + }, + { + "@value": "Genome annotation track" + }, + { + "@value": "Genome-browser track" + }, + { + "@value": "Genome track" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Annotation track" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1255" + } + ] + }, + { + "@id": "http://edamontology.org/data_3808", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.19" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Raw acquisition from electron microscopy or average of an aligned DDD movie." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EM Micrograph" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N6b814d98e4ac4441bd2645e05a81f2bf" + }, + { + "@id": "http://edamontology.org/data_3424" + } + ] + }, + { + "@id": "_:N6b814d98e4ac4441bd2645e05a81f2bf", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1317" + } + ] + }, + { + "@id": "http://edamontology.org/format_3711", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.thegpm.org/docs/X_series_output_form.pdf" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Output format used by X! series search engines that is based on the XML language BIOML." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "X!Tandem XML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3245" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/format_3864", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "https://doi.org/10.7490/f1000research.1115724.1" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://github.com/miRTop/mirGFF3/blob/master/definition.md" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://github.com/miRTop/mirGFF3/blob/master/example.gff" + } + ], + "http://edamontology.org/repository": [ + { + "@id": "https://github.com/miRTop/mirGFF3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "mirGFF3 is a common format for microRNA data resulting from small-RNA RNA-Seq workflows." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "miRTop format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "mirGFF3 is a specialisation of GFF3; produced by small-RNA-Seq analysis workflows, usable and convertible with the miRTop API (https://mirtop.readthedocs.io/en/latest/), and consumable by tools for downstream analysis." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "mirGFF3" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3865" + }, + { + "@id": "http://edamontology.org/format_1975" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0400", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate pH-dependent properties from pKa calculations of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein pH-dependent property calculation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein pKa calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_pKa_calculations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0250" + }, + { + "@id": "_:N1802b2ced56b44b4941830a9cd93acb0" + }, + { + "@id": "_:Nf35b840f64ce4cf786e6ecc94005e744" + } + ] + }, + { + "@id": "_:N1802b2ced56b44b4941830a9cd93acb0", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0123" + } + ] + }, + { + "@id": "_:Nf35b840f64ce4cf786e6ecc94005e744", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0897" + } + ] + }, + { + "@id": "http://edamontology.org/format_3816", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://docs.chemaxon.com/display/docs/Tripos+Mol2+format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Complete, portable representation of a SYBYL molecule. ASCII file which contains all the information needed to reconstruct a SYBYL molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mol2" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2030" + } + ] + }, + { + "@id": "http://edamontology.org/data_2136", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1249" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The width of an output sequence or alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence width" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1683", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBOSS (EMBASSY) domainatrix application log file." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS domainatrix log file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2646", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a small molecular from the ChEMBL database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ChEMBL ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Compound ID (ChEMBL)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2894" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_2245", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0850" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A collection of sequences output from a bootstrapping (resampling) procedure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Bootstrapping is often performed in phylogenetic analysis." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence set (bootstrapped)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1987", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Pearson MARKX10 alignment format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "markx10" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2922" + } + ] + }, + { + "@id": "http://edamontology.org/data_2653", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "DAP[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a drug from the Therapeutic Target Database (TTD)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Drug ID (TTD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2895" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0553", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construct a \"gene tree\" which represents the evolutionary history of the genes included in the study. This can be used to predict families of genes and gene function based on their position in a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree analysis (gene family prediction)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Gene trees can provide evidence for gene duplication events, as well as speciation events. Where sequences from different homologs are included in a gene tree, subsequent clustering of the orthologs can demonstrate evolutionary history of the orthologs." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene tree construction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N078128ebc75e474fa2b6fe5b667430ae" + }, + { + "@id": "http://edamontology.org/operation_0323" + }, + { + "@id": "_:N1c38ff2900584dfea380c8dc71917227" + } + ] + }, + { + "@id": "_:N078128ebc75e474fa2b6fe5b667430ae", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0194" + } + ] + }, + { + "@id": "_:N1c38ff2900584dfea380c8dc71917227", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0916" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0445", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify or predict transcription factor binding sites in DNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Transcription factor binding site prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0440" + } + ] + }, + { + "@id": "http://edamontology.org/data_2317", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The exact name of a cell line." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell line name (exact)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2316" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0548", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Construct a phylogenetic tree by computing four-taxon trees (4-trees) and searching for the phylogeny that matches most closely." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree generation (quartet methods)" + }, + { + "@value": "Phylogenetic tree construction (quartet methods)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic inference (quartet methods)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0539" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3353", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.9" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Compare two or more ontologies, e.g. identify differences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_3352" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology comparison" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3943", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The reconstruction and analysis of genomic information in extinct species." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Paleogenomics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Ancestral genomes" + }, + { + "@value": "Paleogenetics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Paleogenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Paleogenomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0622" + } + ] + }, + { + "@id": "http://edamontology.org/data_1481", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of protein tertiary (3D) structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Structure alignment (protein)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0886" + } + ] + }, + { + "@id": "http://edamontology.org/data_2680", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2610" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Erinaceus europaeus' division)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ensembl ID ('Erinaceus europaeus')" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1917", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data for an atom (in a molecular structure)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "General atomic property" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Atomic property" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2087" + } + ] + }, + { + "@id": "http://edamontology.org/has_topic", + "@type": [ + "http://www.w3.org/2002/07/owl#ObjectProperty" + ], + "http://purl.obolibrary.org/obo/is_anti_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_reflexive": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/is_symmetric": [ + { + "@value": "false" + } + ], + "http://purl.obolibrary.org/obo/transitive_over": [ + { + "@value": "OBO_REL:is_a" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'A has_topic B' defines for the subject A, that it has the object B as its topic (A is in the scope of a topic B)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.geneontology.org/formats/oboInOwl#isCyclic": [ + { + "@value": true + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is a 'Topic', or in unexpected cases an entity outside of an ontology that is a 'Topic' or is in the role of a 'Topic'. In EDAM, only 'has_topic' is explicitly defined between EDAM concepts ('Operation' or 'Data' 'has_topic' 'Topic'). The inverse, 'is_topic_of', is not explicitly defined." + } + ], + "http://www.w3.org/2000/01/rdf-schema#domain": [ + { + "@id": "_:N55590ffd9b88495fbb139b6f69ef9168" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "has topic" + } + ], + "http://www.w3.org/2000/01/rdf-schema#range": [ + { + "@id": "http://edamontology.org/topic_0003" + } + ], + "http://www.w3.org/2002/07/owl#inverseOf": [ + { + "@id": "http://edamontology.org/is_topic_of" + } + ], + "http://www.w3.org/2004/02/skos/core#broadMatch": [ + { + "@id": "http://purl.obolibrary.org/obo/OBI_0000298" + }, + { + "@id": "http://purl.obolibrary.org/obo/IAO_0000136" + }, + { + "@id": "http://www.loa.istc.cnr.it/ontologies/DOLCE-Lite.owl#has-quality" + } + ], + "http://www.w3.org/2004/02/skos/core#exactMatch": [ + { + "@id": "http://annotation-ontology.googlecode.com/svn/trunk/annotation-core.owl#hasTopic" + } + ] + }, + { + "@id": "_:N55590ffd9b88495fbb139b6f69ef9168", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://www.w3.org/2002/07/owl#unionOf": [ + { + "@list": [ + { + "@id": "http://edamontology.org/data_0006" + }, + { + "@id": "http://edamontology.org/operation_0004" + } + ] + } + ] + }, + { + "@id": "http://edamontology.org/format_2553", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "XML format for a sequence feature table." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence feature table format (XML)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2548" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3337", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Repositories of biological samples, typically human, for basic biological and clinical research." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Tissue collection" + }, + { + "@value": "biobanking" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Biobank" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biobank" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Biobank" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3277" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0217", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The processing and analysis of the bioinformatics literature and bibliographic data, such as literature search and query." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0218" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Literature analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3092", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict, recognise and identify positional features in proteins from analysing protein sequences or structures." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein feature recognition" + }, + { + "@value": "Protein feature prediction" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Sequence profile database search" + }, + { + "@value": "Protein site prediction" + }, + { + "@value": "Protein secondary database search" + }, + { + "@value": "Protein site recognition" + }, + { + "@value": "Sequence feature detection (protein)" + }, + { + "@value": "Protein site detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Features includes functional sites or regions, secondary structure, structural domains and so on. Methods might use fingerprints, motifs, profiles, hidden Markov models, sequence alignment etc to provide a mapping of a query protein sequence to a discriminatory element. This includes methods that search a secondary protein database (Prosite, Blocks, ProDom, Prints, Pfam etc.) to assign a protein sequence(s) to a known protein family or group." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein feature detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nb75367c0899e4eb3b7553ea651add716" + }, + { + "@id": "http://edamontology.org/operation_2479" + }, + { + "@id": "_:Nbd3a9b520b9a4486a0d9465e11bd3d9f" + }, + { + "@id": "http://edamontology.org/operation_2423" + }, + { + "@id": "_:N2ed3a436fbd8401ea622ed6d49d5ba39" + } + ] + }, + { + "@id": "_:Nb75367c0899e4eb3b7553ea651add716", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "_:Nbd3a9b520b9a4486a0d9465e11bd3d9f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1277" + } + ] + }, + { + "@id": "_:N2ed3a436fbd8401ea622ed6d49d5ba39", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0078" + } + ] + }, + { + "@id": "http://edamontology.org/data_2749", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a particular genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/format_2002", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Simple multiple sequence (alignment) format for SRS." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "srs format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/topic_4038", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://edamontology.org/related_term": [ + { + "@value": "Environmental sequencing" + }, + { + "@value": "Environmental RNA (eRNA)" + }, + { + "@value": "Taxonomic profiling" + }, + { + "@value": "Environmental DNA (eDNA)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Metabarcoding is the barcoding of (environmental) DNA or RNA to identify multiple taxa from the same sample." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "DNA metabarcoding" + }, + { + "@value": "Environmental metabarcoding" + }, + { + "@value": "eRNA metabarcoding" + }, + { + "@value": "eDNA metabarcoding" + }, + { + "@value": "RNA metabarcoding" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Typically, high-throughput sequencing is performed and the resulting sequence reads are matched to DNA barcodes in a reference database." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metabarcoding" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Environmental_DNA" + }, + { + "@id": "https://en.wikipedia.org/wiki/Metabarcoding" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0080" + }, + { + "@id": "_:N2209e6c6c0164d15a007ad4abf229f70" + }, + { + "@id": "http://edamontology.org/topic_3697" + } + ], + "http://www.w3.org/2004/02/skos/core#exactMatch": [ + { + "@id": "https://www.wikidata.org/wiki/Q51237016" + } + ], + "http://www.w3.org/2004/02/skos/core#relatedMatch": [ + { + "@id": "https://www.wikidata.org/wiki/Q25098939" + } + ] + }, + { + "@id": "_:N2209e6c6c0164d15a007ad4abf229f70", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://www.w3.org/2004/02/skos/core#related" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3923" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0234", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate sequence complexity, for example to find low-complexity regions in sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence complexity calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0236" + }, + { + "@id": "_:N1c013ba87c944bdaa5d9bd3eb4717c14" + }, + { + "@id": "_:N5e1fb4ed4e3c45b68a2d028a30131c1f" + } + ] + }, + { + "@id": "_:N1c013ba87c944bdaa5d9bd3eb4717c14", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0157" + } + ] + }, + { + "@id": "_:N5e1fb4ed4e3c45b68a2d028a30131c1f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1259" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3414", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine that treats body wounds or shock produced by sudden physical injury, as from violence or accident." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Traumatology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Trauma_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Trauma medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Traumatology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/data_2770", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an RNA transcript from the H-InvDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HIT ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2769" + } + ] + }, + { + "@id": "http://edamontology.org/data_3495", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An RNA sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "RNA sequences" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA sequence" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2977" + } + ] + }, + { + "@id": "http://edamontology.org/data_1464", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a DNA tertiary (3D) structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1459" + } + ] + }, + { + "@id": "http://edamontology.org/format_2067", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of a matrix of genetic distances between molecular sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence distance matrix format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2350" + }, + { + "@id": "_:N62ff867c3d6d46e698734652965d2a87" + } + ] + }, + { + "@id": "_:N62ff867c3d6d46e698734652965d2a87", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0870" + } + ] + }, + { + "@id": "http://edamontology.org/data_0982", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name or other identifier of a molecule." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecule identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/format_1949", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Nexus/paup interleaved sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "nexus-seq" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_3147", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "mass spectrometry experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_2531" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mass spectrometry experiment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2107", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an enzyme from the BioCyc enzymes database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "BioCyc enzyme ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Enzyme ID (BioCyc)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2104" + }, + { + "@id": "http://edamontology.org/data_2321" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3178", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0196" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The alignment of sequences of (typically millions) of short reads to a reference genome. This is a specialised topic within sequence alignment, especially because of complications arising from RNA splicing." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RNA-Seq alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1570", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the InterPro database of protein signatures (sequence classifiers) and classified sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes signature metadata, sequence references and a reference to the signature itself. There is normally a header (entry accession numbers and name), abstract, taxonomy information, example proteins etc. Each entry also includes a match list which give a number of different views of the signature matches for the sequences in each InterPro entry." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "InterPro entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0623", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Particular gene(s), gene family or other gene group or system and their encoded proteins.Primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc., curation of a particular protein or protein family, or any other proteins that have been classified as members of a common group." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Genes, gene family or system" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Gene_and protein_families" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein sequence classification" + }, + { + "@value": "Gene system" + }, + { + "@value": "Protein families" + }, + { + "@value": "Gene families" + }, + { + "@value": "Gene family" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A protein families database might include the classifier (e.g. a sequence profile) used to build the classification." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene and protein families" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gene_family" + }, + { + "@id": "https://en.wikipedia.org/wiki/Protein_family" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0078" + }, + { + "@id": "http://edamontology.org/topic_3321" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2818", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison) Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Eukaryotes or data concerning eukaryotes, e.g. information on a specific eukaryote genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The resource may be specific to a eukaryote, a group of eukaryotes or all eukaryotes." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Eukaryotes" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0255", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Query the features (in a feature table) of molecular sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Feature table query" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0607", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Laboratory management and resources, for example, catalogues of biological resources for use in the lab including cell lines, viruses, plasmids, phages, DNA probes and primers and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Laboratory_Information_management" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Laboratory resources" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Laboratory information management" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Laboratory_information_management_system" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0605" + } + ] + }, + { + "@id": "http://edamontology.org/data_1049", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a directory." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Directory name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/data_1113", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of an entry from the COG database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "COG ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster ID (COG)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1112" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1838", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate contacts between residues and ligands in a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2950" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Residue contact calculation (residue-ligand)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0363", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate the reverse and / or complement of a nucleotide sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Nucleic acid sequence reverse and complement" + }, + { + "@value": "Reverse and complement" + }, + { + "@value": "Reverse / complement" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reverse complement" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Complementarity_(molecular_biology)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0230" + } + ] + }, + { + "@id": "http://edamontology.org/format_3693", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.ncbi.nlm.nih.gov/assembly/agp/AGP_Specification" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "agp" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.ncbi.nlm.nih.gov/assembly/agp/AGP_Specification" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "AGP is a tabular format for a sequence assembly (a contig, a scaffold/supercontig, or a chromosome)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "AGP" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2055" + } + ] + }, + { + "@id": "http://edamontology.org/format_1367", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A profile (sequence classifier) in the format used in the JASPAR database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "JASPAR format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2069" + } + ] + }, + { + "@id": "http://edamontology.org/data_2137", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A penalty for introducing or extending a gap in an alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gap penalty" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1394" + } + ] + }, + { + "@id": "http://edamontology.org/data_2130", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0842" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A label (text token) describing a type of sequence profile such as frequency matrix, Gribskov profile, hidden Markov model etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence profile type" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0183", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The superimposition of molecular tertiary structures or structural (3D) profiles (representing a structure or structure alignment)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_0081" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes the generation, storage, analysis, rendering etc. of structure alignments." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Structure alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1619", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format of the TIGR genome database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TIGR gene report format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0328", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2415" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Simulate the folding of a protein." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2415" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein folding simulation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1442", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Distances, such as Branch Score distance, between two or more phylogenetic trees." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Phylogenetic tree report (tree distances)" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree distances" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2523" + } + ] + }, + { + "@id": "http://edamontology.org/data_2367", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an object from the ASTD database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ASTD ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2109" + }, + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_1097" + } + ] + }, + { + "@id": "http://edamontology.org/data_1489", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1481" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Multiple protein tertiary structure alignment (all atoms)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3399", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Aging" + }, + { + "@value": "Gerontology" + }, + { + "@value": "Ageing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.10 Geriatrics and gerontology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The branch of medicine dealing with the diagnosis, treatment and prevention of disease in older people, and the problems specific to aging." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Geriatrics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Geriatric_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Geriatric medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Geriatrics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3185", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify base (nucleobase) sequence from a fluorescence 'trace' data generated by an automated DNA sequencer." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Base calling" + }, + { + "@value": "Phred base-calling" + }, + { + "@value": "Phred base calling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Base-calling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Na5a9c0a409d34324adbe30aefc2883bb" + }, + { + "@id": "http://edamontology.org/operation_0230" + } + ] + }, + { + "@id": "_:Na5a9c0a409d34324adbe30aefc2883bb", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3168" + } + ] + }, + { + "@id": "http://edamontology.org/format_3758", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "out" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "\"Raw\" result file from SEQUEST database search." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SEQUEST .out file" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3245" + } + ] + }, + { + "@id": "http://edamontology.org/data_2294", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of an entry from a database of molecular sequence variation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence variation ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/data_2088", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Structural data for DNA base pairs or runs of bases, such as energy or angle data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA base structural data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0912" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0606", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data resources for the biological or biomedical literature, either a primary source of literature or some derivative." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3068" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Literature data resources" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0404", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Estimate hydrogen exchange rate of a protein sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein hydrogen exchange rate calculation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0400" + }, + { + "@id": "_:N8764d12ff5354321b9c2d49e65aca0e8" + } + ] + }, + { + "@id": "_:N8764d12ff5354321b9c2d49e65aca0e8", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1530" + } + ] + }, + { + "@id": "http://edamontology.org/data_3425", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.5" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all carbohydrates." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Carbohydrate data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Carbohydrate property" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2087" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2447", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) a protein sequence and associated annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2479" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence processing (protein)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0926", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Radiation hybrid scores (RH) scores for one or more markers." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Radiation Hybrid (RH) scores" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Radiation Hybrid (RH) scores are used in Radiation Hybrid mapping." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "RH scores" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3108" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3766", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A data mining method typically used for studying biological networks based on pairwise correlations between variables." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Weighted gene co-expression network analysis" + }, + { + "@value": "WGCNA" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Weighted correlation network analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nc2eb4ac919d849b39ab8454d73eb3488" + }, + { + "@id": "http://edamontology.org/operation_3927" + } + ] + }, + { + "@id": "_:Nc2eb4ac919d849b39ab8454d73eb3488", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0602" + } + ] + }, + { + "@id": "http://edamontology.org/format_2341", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the NCI-Nature pathways database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NCI-Nature pathway entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "_:N51bab0281e4544d2b4ad67ecb7ebecf7", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "'OBO_REL:has_participant' is narrower in the sense that it only relates ontological categories (concepts) that are a 'process' (span:Process) with ontological categories that are a 'continuant' (snap:Continuant), and broader in the sense that it relates with any participating objects not just inputs or input arguments of the subject." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "OBO_REL:has_participant" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0408", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict the stability or globularity of a protein sequence, whether it is intrinsically unfolded etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein globularity prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2574" + }, + { + "@id": "_:Nc06cd33817e645c58164ca1bc77aa429" + } + ] + }, + { + "@id": "_:Nc06cd33817e645c58164ca1bc77aa429", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1526" + } + ] + }, + { + "@id": "http://edamontology.org/data_1776", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0896" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report on general functional properties of specific protein(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For properties that can be mapped to a sequence, use 'Sequence report' instead." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein report (function)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1023", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a sequence feature-containing entity adhering to the standard feature naming scheme used by all EMBOSS applications." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "UFO" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS Uniform Feature Object" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3034" + }, + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/data_1797", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1035" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Gene identifier from Glossina morsitans GeneDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (GeneDB Glossina morsitans)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1137", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "PR[0-9]{5}" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The unique identifier of an entry in the PRINTS database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PRINTS code" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2910" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3039", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.2" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0097" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Nucleic acid (secondary or tertiary) structure, such as whole structures, structural features and associated annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2432", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) microarray data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Microarray data processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0356", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0338" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search sequence(s) or a sequence database for sequences of a given isoelectric point." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence database search (by isoelectric point)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0904", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0896" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data on the effect of (typically point) mutation on protein folding, stability, structure and function." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features (mutation)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3141", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a 'class' node from the SCOP database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SCOP class" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3982", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "chain" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The CHAIN format describes a pairwise alignment that allow gaps in both sequences simultaneously and is used by the UCSC Genome Browser." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CHAIN" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@value": "https://genome.ucsc.edu/goldenPath/help/chain.html" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2920" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://purl.obolibrary.org/obo/remark", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ] + }, + { + "@id": "http://edamontology.org/operation_0276", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse a network of protein interactions." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein interaction network comparison" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein interaction network analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N008217385d074803b4954a0a46a5ced2" + }, + { + "@id": "http://edamontology.org/operation_2949" + }, + { + "@id": "http://edamontology.org/operation_3927" + }, + { + "@id": "_:N801678810fb24a2b8778caece5630ef3" + } + ] + }, + { + "@id": "_:N008217385d074803b4954a0a46a5ced2", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ] + }, + { + "@id": "_:N801678810fb24a2b8778caece5630ef3", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2984" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3077", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The acquisition of data, typically measurements of physical systems using any type of sampling system, or by another other means." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Data collection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data acquisition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Data_acquisition" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3071" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0228", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_0227" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Analyse an index of biological data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data index analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0851", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A character used to replace (mask) other characters in a molecular sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence mask character" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1704", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The format of an entry from the MSDchem ligand dictionary." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MSDchem ligand dictionary entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3987", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "zip" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "ZIP is an archive file format that supports lossless data compression." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ZIP" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A ZIP file may contain one or more files or directories that may have been compressed." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ZIP format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Zip_(file_format)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/format_2017", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for an amino acid index." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Amino acid index format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N9d31d0668ad3489ba1c6088d490fcd6b" + }, + { + "@id": "http://edamontology.org/format_3033" + } + ] + }, + { + "@id": "_:N9d31d0668ad3489ba1c6088d490fcd6b", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1501" + } + ] + }, + { + "@id": "http://edamontology.org/data_2852", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for the (3D) structure of a toxin." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Toxin structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1463" + } + ] + }, + { + "@id": "http://edamontology.org/data_1014", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1016" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A specification (partial or complete) of one or more positions or regions of a molecular sequence or map." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence position specification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2436", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Gene set testing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify classes of genes or proteins that are over or under-represented in a large set of genes or proteins. For example analysis of a set of genes corresponding to a gene expression profile, annotated with Gene Ontology (GO) concepts, where eventual over-/under-representation of certain GO concept within the studied set of genes is revealed." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Functional enrichment analysis" + }, + { + "@value": "GSEA" + }, + { + "@value": "Gene-set over-represenation analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Gene set analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "Gene Ontology concept enrichment" + }, + { + "@value": "GO-term enrichment" + }, + { + "@value": "Gene Ontology term enrichment" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The Gene Ontology (GO) is typically used, the input is a set of Gene IDs, and the output of the analysis is typically a ranked list of GO concepts, each associated with a p-value." + }, + { + "@value": "Gene sets can be defined beforehand by biological function, chromosome locations and so on." + }, + { + "@value": "\"Gene set analysis\" (often used interchangeably or in an overlapping sense with \"gene-set enrichment analysis\") refers to the functional analysis (term enrichment) of a differentially expressed set of genes, rather than all genes analysed." + }, + { + "@value": "Analyse gene expression patterns to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene-set enrichment analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gene_Ontology_Term_Enrichment" + }, + { + "@id": "https://en.wikipedia.org/wiki/Gene_set_enrichment_analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N7dfcb4a77c714757a06cc8e113a591ec" + }, + { + "@id": "http://edamontology.org/operation_2495" + }, + { + "@id": "_:N82cb0096f186479fb5e208776d33a2c6" + }, + { + "@id": "http://edamontology.org/operation_3501" + } + ] + }, + { + "@id": "_:N7dfcb4a77c714757a06cc8e113a591ec", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3754" + } + ] + }, + { + "@id": "_:N82cb0096f186479fb5e208776d33a2c6", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1775" + } + ] + }, + { + "@id": "http://edamontology.org/data_2108", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a biological reaction from a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Reaction ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N3c8bfd7a2f8243cbaa1cb7f75fd981c6" + }, + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "_:N3c8bfd7a2f8243cbaa1cb7f75fd981c6", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2978" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3359", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Split a file containing multiple data items into many files, each containing one item." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "File splitting" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Splitting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3900", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict DNA-binding proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein-DNA interaction prediction" + }, + { + "@value": "DNA-protein interaction prediction" + }, + { + "@value": "DNA-binding protein detection" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA-binding protein prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nbb1827ecc7da46b39ce7c4d391b66ded" + }, + { + "@id": "_:N6ed9cdaf13844e88a77a0b0fe6304f3e" + }, + { + "@id": "http://edamontology.org/operation_0389" + } + ] + }, + { + "@id": "_:Nbb1827ecc7da46b39ce7c4d391b66ded", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0128" + } + ] + }, + { + "@id": "_:N6ed9cdaf13844e88a77a0b0fe6304f3e", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0906" + } + ] + }, + { + "@id": "http://edamontology.org/data_2788", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning, extracted from, or derived from the analysis of a sequence profile, such as its name, length, technical details about the profile or it's construction, the biological role or annotation, and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0860" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence profile data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2786", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a genome project assigned by NCBI." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "NCBI Genome Project ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2903" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/data_1723", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0966" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A term from the EMAP mouse ontology." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMAP" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2560", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the STRING database of protein interaction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "STRING entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1960", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.compbio.ox.ac.uk/bioinformatics_faq/format_examples.shtml#staden" + }, + { + "@id": "http://www.bio.net/bionet/mm/bio-soft/1991-October/003063.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://www.bio.net/bionet/mm/bio-soft/1991-October/003063.html" + }, + { + "@id": "http://www.compbio.ox.ac.uk/bioinformatics_faq/format_examples.shtml#staden" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Staden suite sequence format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Staden format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2551" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_3025", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a concept in an ontology of biological or bioinformatics concepts and relations." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Ontology concept identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + }, + { + "@id": "_:Nb83fad508928474da0a04dfd219dbc52" + } + ] + }, + { + "@id": "_:Nb83fad508928474da0a04dfd219dbc52", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2858" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0625", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of genetic constitution of a living entity, such as an individual, and organism, a cell and so on, typically with respect to a particular observable phenotypic traits, or resources concerning such traits, which might be an aspect of biochemistry, physiology, morphology, anatomy, development and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Genotype-phenotype analysis" + }, + { + "@value": "Genotype and phenotype resources" + }, + { + "@value": "Genotype-phenotype" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Genotype_and_phenotype" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Genotyping" + }, + { + "@value": "Phenotyping" + }, + { + "@value": "Phenotype" + }, + { + "@value": "Genotype" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genotype and phenotype" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Genotype%E2%80%93phenotype_distinction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3053" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0552", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Apply bootstrapping or other measures to estimate confidence of a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree bootstrapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0324" + }, + { + "@id": "http://edamontology.org/operation_2428" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3233", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Estimate the number of copies of loci of particular gene(s) in DNA sequences typically from gene-expression profiling technology based on microarray hybridisation-based experiments. For example, estimate copy number (or marker dosage) of a dominant marker in samples from polyploid plant cells or tissues, or chromosomal gains and losses in tumors." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Transcript copy number estimation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods typically implement some statistical model for hypothesis testing, and methods estimate total copy number, i.e. do not distinguish the two inherited chromosomes quantities (specific copy number)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Copy number estimation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3961" + } + ] + }, + { + "@id": "http://edamontology.org/format_3868", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Textual file format to store trajectory information for a 3D structure ." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Trajectory format (text)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3866" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2421", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search a database (or other data resource) with a supplied query and retrieve entries (or parts of entries) that are similar to the query." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Search" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Typically the query is compared to each entry and high scoring matches (hits) are returned. For example, a BLAST search of a sequence database." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database search" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0224" + }, + { + "@id": "_:Na1102a3caac74a98a1667329146339ff" + } + ] + }, + { + "@id": "_:Na1102a3caac74a98a1667329146339ff", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2080" + } + ] + }, + { + "@id": "http://edamontology.org/data_1561", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on a protein 'functional category' node from the CATH database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH functional category" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2524", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0896" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data concerning one or more protein molecules." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This is a broad data type and is used a placeholder for other, more specific types." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2145", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2534" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An offset for a single-point sequence position." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence offset" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0225", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Search database to retrieve all relevant references to a particular entity or entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data retrieval (database cross-reference)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1475", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format of an entry (or part of an entry) from the PDB database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PDB entry format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PDB database entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N70ec278546cd43f4930d885cb83b5d00" + }, + { + "@id": "_:N807ed66a86f44702b4e29b0b9dae7043" + }, + { + "@id": "http://edamontology.org/format_2033" + } + ] + }, + { + "@id": "_:N70ec278546cd43f4930d885cb83b5d00", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3870" + } + ] + }, + { + "@id": "_:N807ed66a86f44702b4e29b0b9dae7043", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0883" + } + ] + }, + { + "@id": "http://edamontology.org/data_2727", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:GeneAccessionList" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "An identifier of a promoter of a gene that is catalogued in a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Promoter ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0976" + } + ] + }, + { + "@id": "http://edamontology.org/data_1102", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Primary identifier of a Gramene database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gramene primary ID" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gramene primary identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2915" + } + ] + }, + { + "@id": "http://edamontology.org/topic_0109", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0114" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Methods that aims to identify, predict, model or analyse genes or gene structure in DNA sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes the study of promoters, coding regions, splice sites, etc. Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene finding" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1881", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "Moby:Author" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Information on the authors of a published work." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Author ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2118" + } + ] + }, + { + "@id": "http://edamontology.org/data_2954", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_3779" + }, + { + "@id": "http://edamontology.org/data_0972" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data derived from the analysis of a scientific text such as a full text article from a scientific journal." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Article report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1172", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Chemical structure specified in PubChem Compound Identification (CID), a non-zero integer identifier for a unique chemical structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "PubChem compound accession identifier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PubChem CID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2639" + }, + { + "@id": "http://edamontology.org/data_2894" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3481", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate sequences from some probabilistic model, e.g. a model that simulates evolution." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Probabilistic sequence generation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0230" + }, + { + "@id": "http://edamontology.org/operation_3480" + } + ] + }, + { + "@id": "http://edamontology.org/data_2874", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1234" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A set of sub-sequences displaying some type of polymorphism, typically indicating the sequence in which they occur, their position and other metadata." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence set (polymorphic)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0573", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Draw or visualise a DNA map." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Map rendering" + }, + { + "@value": "DNA map drawing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Map drawing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N87efaa46763d40dcb0eec952e04d4cbf" + }, + { + "@id": "http://edamontology.org/operation_0337" + } + ] + }, + { + "@id": "_:N87efaa46763d40dcb0eec952e04d4cbf", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1274" + } + ] + }, + { + "@id": "http://edamontology.org/data_2248", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2048" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A data schema for organising or transforming data of some type." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Schema" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_1954", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Plain old FASTA sequence format (unspecified format for IDs)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pearson format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2200" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3471", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.18" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0279" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Prediction of nucleic-acid folding using sequence alignments as a source of data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0279" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid folding prediction (alignment-based)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1459", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "3D coordinate and associated data for a nucleic acid tertiary (3D) structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid structure" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N0f5eee58e2a747ff9bc5b0f308fbe2d6" + }, + { + "@id": "http://edamontology.org/data_0883" + } + ] + }, + { + "@id": "_:N0f5eee58e2a747ff9bc5b0f308fbe2d6", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0097" + } + ] + }, + { + "@id": "http://edamontology.org/data_1093", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A persistent, unique identifier of a molecular sequence database entry." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence accession number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1063" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2513", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0230" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a nucleic acid sequence by some means." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0230" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence generation (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2920", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Data format for molecular sequence alignment information that can hold sequence alignment(s) of only 2 sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Alignment format (pair only)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N882056b038e64712bf278415148141cc" + }, + { + "@id": "http://edamontology.org/format_1921" + } + ] + }, + { + "@id": "_:N882056b038e64712bf278415148141cc", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1381" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2963", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.22" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2962" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a codon usage bias plot." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2962" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Codon usage bias plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2614", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+\\.[A-Z]\\.[0-9]+\\.[0-9]+\\.[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of a family from the transport classification database (TCDB) of membrane transport proteins." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "TC number" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "OBO file for regular expression." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "TCDB ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2910" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3441", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0337" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a graph, or other visual representation, of data, showing the relationship between two or more variables." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0337" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2556", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Text format for a phylogenetic tree." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phylogenetic tree format (text)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2006" + } + ] + }, + { + "@id": "http://edamontology.org/data_2740", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.3" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1026" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Name of an entry (gene) from the Genolist genes database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene name (Genolist)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_0390", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Decompose a structure into compact or globular fragments (protein peeling)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein peeling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0246" + } + ] + }, + { + "@id": "http://edamontology.org/format_3830", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Binary format used by the ARB software suite." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "ARB binary format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ARB" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1921" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0560", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict or optimise DNA to elicit (via DNA vaccination) an immunological response." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "DNA vaccine design" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3095" + }, + { + "@id": "_:N87ccd27408a34d6685515b3d13b23a1c" + } + ] + }, + { + "@id": "_:N87ccd27408a34d6685515b3d13b23a1c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0804" + } + ] + }, + { + "@id": "http://edamontology.org/data_1265", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A table of base frequencies of a nucleotide sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Base frequencies table" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2082" + }, + { + "@id": "http://edamontology.org/data_1261" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3277", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Biological samples and specimens." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Specimen collections" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Sample_collections" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "biosamples" + }, + { + "@value": "samples" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sample collections" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Biological_specimen" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3344" + } + ] + }, + { + "@id": "http://edamontology.org/topic_2820", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.17" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/topic_3500" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0621" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Vertebrates, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The resource may be specific to a vertebrate, a group of vertebrates or all vertebrates." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Vertebrates" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0102", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The mapping of complete (typically nucleotide) sequences. Mapping (in the sense of short read alignment, or more generally, just alignment) has application in RNA-Seq analysis (mapping of transcriptomics reads), variant discovery (e.g. mapping of exome capture), and re-sequencing (mapping of WGS reads)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Synteny" + }, + { + "@value": "Linkage mapping" + }, + { + "@value": "Genetic linkage" + }, + { + "@value": "Linkage" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "This includes resources that aim to identify, map or analyse genetic markers in DNA sequences, for example to produce a genetic (linkage) map of a chromosome or genome or to analyse genetic linkage and synteny. It also includes resources for physical (sequence) maps of a DNA sequence showing the physical distance (base pairs) between features or landmarks such as restriction sites, cloned DNA fragments, genes and other genetic markers. It also covers for example the alignment of sequences of (typically millions) of short reads to a reference genome." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Gene_mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0080" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2871", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Generate a physical DNA map (sequence map) from analysis of sequence tagged sites (STS)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence mapping" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "An STS is a short subsequence of known sequence and location that occurs only once in the chromosome or genome that is being mapped. Sources of STSs include 1. expressed sequence tags (ESTs), simple sequence length polymorphisms (SSLPs), and random genomic sequences from cloned genomic DNA or database sequences." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence tagged site (STS) mapping" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2944" + }, + { + "@id": "_:N2fe1e9d26f384f60b6558a66b9cfb686" + } + ] + }, + { + "@id": "_:N2fe1e9d26f384f60b6558a66b9cfb686", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1279" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3778", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.16" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Text annotation is the operation of adding notes, data and metadata, recognised entities and concepts, and their relations to a text (such as a scientific article)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Literature annotation" + }, + { + "@value": "Article annotation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Text annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Text_annotation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0226" + }, + { + "@id": "_:Ned0baaa6d55a495ab61636e35d2d271a" + }, + { + "@id": "_:N3e1becbdf3e4419b97e755d8cdf8887f" + }, + { + "@id": "_:Nd2be898824134e0fb208901f3b1e2a81" + } + ] + }, + { + "@id": "_:Ned0baaa6d55a495ab61636e35d2d271a", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3671" + } + ] + }, + { + "@id": "_:N3e1becbdf3e4419b97e755d8cdf8887f", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3779" + } + ] + }, + { + "@id": "_:Nd2be898824134e0fb208901f3b1e2a81", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_3068" + } + ] + }, + { + "@id": "http://edamontology.org/format_1989", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Pearson MARKX3 alignment format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "markx3" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2922" + } + ] + }, + { + "@id": "http://edamontology.org/format_3484", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/documentation": [ + { + "@value": "https://github.com/BenLangmead/bowtie/blob/master/MANUAL" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Bowtie format for indexed reference genome for \"small\" genomes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Bowtie index format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ebwt" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:N4ffbf8317c694b609d4fa86b104bf935" + }, + { + "@id": "http://edamontology.org/format_3326" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "_:N4ffbf8317c694b609d4fa86b104bf935", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_format_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3210" + } + ] + }, + { + "@id": "http://edamontology.org/format_3997", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "mp4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A digital multimedia container format most commonly used to store video and audio." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "MP4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "MPEG-4" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Moving_Picture_Experts_Group" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3283", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.3" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process data in such a way that makes it hard to trace to the person which the data concerns." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Data anonymisation" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Anonymisation" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ] + }, + { + "@id": "http://edamontology.org/format_1568", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/format_2331" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Entry format for the BIND database of protein interaction." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "BIND entry format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "_:N1e9b2434b0ff4e36948ff5cad3abbd17", + "@type": [ + "http://www.w3.org/2002/07/owl#Axiom" + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "EDAM does not distinguish the multiplicity of data, such as one data item (datum) versus a collection of data (data set)." + } + ], + "http://www.w3.org/2002/07/owl#annotatedProperty": [ + { + "@id": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym" + } + ], + "http://www.w3.org/2002/07/owl#annotatedSource": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.w3.org/2002/07/owl#annotatedTarget": [ + { + "@value": "Data set" + } + ] + }, + { + "@id": "http://edamontology.org/format_2172", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Format used for clusters of nucleotide sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence cluster format (nucleic acid)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2170" + } + ] + }, + { + "@id": "http://edamontology.org/data_1667", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A simple floating point number defining the lower or upper limit of an expectation value (E-value)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Expectation value" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "An expectation value (E-Value) is the expected number of observations which are at least as extreme as observations expected to occur by random chance. The E-value describes the number of hits with a given score or better that are expected to occur at random when searching a database of a particular size. It decreases exponentially with the score (S) of a hit. A low E value indicates a more significant score." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "E-value" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0951" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0345", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2422" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Query a database and retrieve sequences containing a given keyword." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence retrieval (by keyword)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3914", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.23" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Report of the quality control review that was made of factors involved in a procedure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "QC report" + }, + { + "@value": "QC metrics" + }, + { + "@value": "Quality control metrics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Quality control report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2048" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3940", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Molecular biology methods used to analyze the spatial organization of chromatin in a cell." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "3C-based methods" + }, + { + "@value": "Chromosome conformation analysis" + }, + { + "@value": "3C technologies" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Chromosome_conformation_capture" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Chromatin accessibility assay" + }, + { + "@value": "Chromatin accessibility" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chromosome conformation capture" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Chromosome_conformation_capture" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3361" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0287", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify and plot third base position variability in a nucleotide sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Base position variability plotting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0286" + }, + { + "@id": "http://edamontology.org/operation_0564" + }, + { + "@id": "_:N67e8ea879a05430d9b2f4cf07488c730" + }, + { + "@id": "_:Nc56794abaace448795b822c8c97e6d21" + } + ] + }, + { + "@id": "_:N67e8ea879a05430d9b2f4cf07488c730", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_1263" + } + ] + }, + { + "@id": "_:Nc56794abaace448795b822c8c97e6d21", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0114" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0497", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0292" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align two or more molecular sequences with user-defined constraints." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0292" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Constrained sequence alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_3403", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 3.2.5 Critical care/Emergency medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The multidisciplinary that cares for patients with acute, life-threatening illness or injury." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Emergency medicine" + }, + { + "@value": "Intensive care medicine" + }, + { + "@value": "Acute medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Critical_care_medicine" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Critical care medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Intensive_care_medicine" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3303" + } + ] + }, + { + "@id": "http://edamontology.org/format_2003", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Simple sequence pair (alignment) format for SRS." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "srspair" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_2920" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1824", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Calculate the solvent accessibility ('accessible surface') for a structure as a whole." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0387" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein surface calculation (accessible)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3857", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/citation": [ + { + "@id": "https://doi.org/10.6084/m9.figshare.3115156.v2" + } + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.commonwl.org/user_guide/" + }, + { + "@id": "https://www.commonwl.org/v1.0/Workflow.html" + }, + { + "@id": "https://www.commonwl.org/v1.0/CommandLineTool.html" + } + ], + "http://edamontology.org/example": [ + { + "@id": "https://github.com/common-workflow-language/common-workflow-language/tree/master/v1.0/examples" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "cwl" + } + ], + "http://edamontology.org/organisation": [ + { + "@id": "https://sfconservancy.org/" + }, + { + "@id": "https://www.commonwl.org/" + } + ], + "http://edamontology.org/repository": [ + { + "@id": "https://github.com/common-workflow-language/common-workflow-language" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Common Workflow Language (CWL) format for description of command-line tools and workflows." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Common Workflow Language" + }, + { + "@value": "CommonWL" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CWL" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3750" + }, + { + "@id": "http://edamontology.org/format_2032" + } + ] + }, + { + "@id": "http://edamontology.org/data_2837", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a pathway from the BioSystems pathway database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway ID (BioSystems)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2365" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3219", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Pre-process sequence reads to ensure (or improve) quality and reliability." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Sequence read pre-processing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For example process paired end reads to trim low quality ends remove short sequences, identify sequence inserts, detect chimeric reads, or remove low quality sequences including vector, adaptor, low complexity and contaminant sequences. Sequences might come from genomic DNA library, EST libraries, SSH library and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Read pre-processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3921" + }, + { + "@id": "http://edamontology.org/operation_3218" + } + ] + }, + { + "@id": "http://edamontology.org/data_1204", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A QSAR topological descriptor." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "QSAR topological descriptor" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "QSAR descriptor (topological)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0847" + } + ] + }, + { + "@id": "http://edamontology.org/data_2201", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.8" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A molecular sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_0849" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence record full" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3439", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/deprecation_comment": [ + { + "@value": "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.24" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_2497" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2437" + }, + { + "@id": "http://edamontology.org/operation_3929" + }, + { + "@id": "http://edamontology.org/operation_3094" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict a molecular pathway or network." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pathway or network prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_3018", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://staden.sourceforge.net/manual/formats_unix_12.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@id": "http://staden.sourceforge.net/manual/formats_unix_12.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "ZTR format for storing chromatogram data from DNA sequencing instruments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "ZTR" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2333" + }, + { + "@id": "http://edamontology.org/format_2057" + } + ] + }, + { + "@id": "http://edamontology.org/format_1200", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "SMILES ARbitrary Target Specification (SMARTS) format for chemical structure specification, which is a subset of the SMILES line notation." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "smarts" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_1196" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3510", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.8" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The biology, archival, detection, prediction and analysis of positional features such as functional and other key sites, in protein sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Protein_sites_features_and_motifs" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein sequence features" + }, + { + "@value": "Signal peptide cleavage sites" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "A signal peptide coding sequence encodes an N-terminal domain of a secreted protein, which is involved in attaching the polypeptide to a membrane leader sequence. A transit peptide coding sequence encodes an N-terminal domain of a nuclear-encoded organellar protein; which is involved in import of the protein into the organelle." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein sites, features and motifs" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_0078" + }, + { + "@id": "http://edamontology.org/topic_0160" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0322", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF: CorrectedPDBasXML" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Refine (after evaluation) a model of a molecular structure (typically a protein structure) to reduce steric clashes, volume irregularities etc." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Protein model refinement" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular model refinement" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2480" + }, + { + "@id": "http://edamontology.org/operation_2425" + } + ] + }, + { + "@id": "http://edamontology.org/format_1996", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBOSS simple sequence pairwise alignment format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/formats" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "pair" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + } + ] + }, + { + "@id": "http://edamontology.org/format_3657", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://www.pathvisio.org/gpml/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Graphical Pathway Markup Language (GPML) is an XML format used for exchanging biological pathways." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GPML" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2013" + }, + { + "@id": "http://edamontology.org/format_2332" + } + ] + }, + { + "@id": "http://edamontology.org/topic_1304", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "CpG rich regions (isochores) in a nucleotide sequence." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/topic_3512" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CpG island and isochores" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/obsolete_since", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Version in which a concept was made obsolete." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Obsolete since" + } + ] + }, + { + "@id": "http://edamontology.org/topic_4021", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.26" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Multiomics concerns integration of data from multiple omics (e.g. transcriptomics, proteomics, epigenomics)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Pan-omics" + }, + { + "@value": "Panomics" + }, + { + "@value": "Multi-omics" + }, + { + "@value": "Integrative omics" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Multiomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "http://edamontology.org/topic_3366" + }, + { + "@id": "https://en.wikipedia.org/wiki/Multiomics" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3391" + } + ] + }, + { + "@id": "http://edamontology.org/data_2662", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "T3D[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Unique identifier of a toxin from the Toxin and Toxin Target Database (T3DB) database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "T3DB ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2897" + } + ] + }, + { + "@id": "http://edamontology.org/format_3817", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.20" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "https://www.latex-project.org/help/documentation/" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "format for the LaTeX document preparation system." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "LaTeX format" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "uses the TeX typesetting program format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "latex" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + }, + { + "@id": "http://edamontology.org/format_3507" + } + ] + }, + { + "@id": "http://edamontology.org/operation_2427", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Perform basic operations on some data or a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_2409" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Data handling" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_2444", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/operation_2416" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process (read and / or write) protein secondary structure data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein secondary structure processing" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2752", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of an entry from the GlycoMapsDB (Glycosciences.de) database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "GlycoMap ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2900" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3217", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Fill the gaps in a sequence assembly (scaffold) by merging in additional sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Different techniques are used to generate gap sequences to connect contigs, depending on the size of the gap. For small (5-20kb) gaps, PCR amplification and sequencing is used. For large (>20kb) gaps, fragments are cloned (e.g. in BAC (Bacterial artificial chromosomes) vectors) and then sequenced." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Scaffold gap completion" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3216" + } + ] + }, + { + "@id": "http://edamontology.org/format_3593", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.11" + } + ], + "http://edamontology.org/documentation": [ + { + "@id": "http://pillow.readthedocs.org/en/latest/handbook/image-file-formats.html" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "IM is a format used by LabEye and other applications based on the IFUNC image processing library." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "IFUNC library reads and writes most uncompressed interchange versions of this format." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "im" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/data_0935", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2535" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequencing by synthesis (SBS) data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SBS experimental data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/format_2001", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "EMBOSS simple multiple alignment format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "EMBOSS simple format" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2554" + }, + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_2799", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A unique identifier of gene in the MfunGD database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene ID (MfunGD)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2295" + }, + { + "@id": "http://edamontology.org/data_2091" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3628", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Align multiple data sets using information from chromatography and/or peptide identification, from mass spectrometry experiments." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Chromatographic alignment" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3214" + }, + { + "@id": "_:N7b1b66b28db04ec7ad142557bffcba70" + } + ] + }, + { + "@id": "_:N7b1b66b28db04ec7ad142557bffcba70", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0943" + } + ] + }, + { + "@id": "http://edamontology.org/data_2912", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Accession number of a strain of an organism variant, typically a plant, virus or bacterium." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Strain accession" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "_:Nf52c5d5b560142b29aa2a7e06a988e5c" + }, + { + "@id": "http://edamontology.org/data_2908" + }, + { + "@id": "http://edamontology.org/data_2379" + } + ] + }, + { + "@id": "_:Nf52c5d5b560142b29aa2a7e06a988e5c", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0963" + } + ] + }, + { + "@id": "http://edamontology.org/data_1745", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.21" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/data_1743" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Cartesian y coordinate of an atom (in a molecular structure)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1743" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Atomic y coordinate" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3119", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1261" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report of regions in a molecular sequence that are biased to certain characters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence features (compositionally-biased regions)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1762", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0907" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Summary of domain classification information for a CATH domain." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "The report (for example http://www.cathdb.info/domain/1cukA01) includes CATH codes for levels in the hierarchy for the domain, level descriptions and relevant data and links." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CATH domain report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2772", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a antibody from the HPA database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "HPA antibody id" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2091" + }, + { + "@id": "http://edamontology.org/data_2907" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3434", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.6" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Convert a data set from one form to another." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Conversion" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0004" + } + ] + }, + { + "@id": "http://edamontology.org/format_3555", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.9" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "File format used for scripts for the Statistical Package for the Social Sciences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "SPSS" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2330" + } + ] + }, + { + "@id": "http://edamontology.org/data_3932", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.24" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A score derived from the P-value to ensure correction for multiple tests. The Q-value provides an estimate of the positive False Discovery Rate (pFDR), i.e. the rate of false positives among all the cases reported positive: pFDR = FP / (FP + TP)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "pFDR" + }, + { + "@value": "FDR" + }, + { + "@value": "Adjusted P-value" + }, + { + "@value": "Padj" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Q-values are widely used in high-throughput data analysis (e.g. detection of differentially expressed genes from transcriptome data)." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Q-value" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Q-value_(statistics)%20" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_0951" + } + ] + }, + { + "@id": "http://edamontology.org/format_3988", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.25" + } + ], + "http://edamontology.org/file_extension": [ + { + "@value": "lsm" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Zeiss' proprietary image format based on TIFF." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "LSM files are the default data export for the Zeiss LSM series confocal microscopes (e.g. LSM 510, LSM 710). In addition to the image data, LSM files contain most imaging settings." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "LSM" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_3547" + }, + { + "@id": "http://edamontology.org/format_2333" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1831", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:ShowCysteineMetal" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect cysteines that are bound to metal in a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Metal-bound cysteine detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_0248" + }, + { + "@id": "http://edamontology.org/operation_1850" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0242", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.19" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://edamontology.org/operation_0438" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identify common, conserved (homologous) or synonymous transcriptional regulatory motifs (transcription factor binding sites)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0438" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Conserved transcription regulatory sequence identification" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1564", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on known protein structural domains or folds that are recognised (identified) in protein sequence(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Methods use some type of mapping between sequence and fold, for example secondary structure prediction and alignment, profile comparison, sequence properties, homologous sequence search, kernel machines etc. Domains and folds might be taken from SCOP or CATH." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein fold recognition report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1488", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1481" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "C-beta atoms from amino acid side-chains may be included." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pairwise protein tertiary structure alignment (C-alpha atoms)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/topic_0751", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.0" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/topic_0601" + }, + { + "@id": "http://edamontology.org/topic_0748" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein phosphorylation and phosphorylation sites in protein sequences." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Phosphorylation sites" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_1829", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "WHATIF:ShowCysteineBridge" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Detect cysteine bridges (from coordinate data) in a protein structure." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cysteine bridge detection" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_1850" + } + ] + }, + { + "@id": "http://edamontology.org/data_3707", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.14" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Machine-readable biodiversity data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Biodiversity information" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "OTU table" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Biodiversity data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_3736" + }, + { + "@id": "http://edamontology.org/data_0006" + } + ] + }, + { + "@id": "http://edamontology.org/data_2627", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.7" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a report of molecular interactions from a database (typically)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1074" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Molecular interaction ID" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_0963", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A human-readable collection of information about a particular strain of organism cell line including plants, virus, fungi and bacteria. The data typically includes strain number, organism type, growth conditions, source and so on." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Cell line annotation" + }, + { + "@value": "Organism strain data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Cell line report" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2530" + } + ] + }, + { + "@id": "http://edamontology.org/data_1327", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta13" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A report on antigenic determinant sites (epitopes) in proteins, from sequence and / or structural data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/data_1277" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Epitope mapping is commonly done during vaccine design." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein features (epitopes)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_1586", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_2139" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Melting temperature of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Nucleic acid melting temperature" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2134", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.5" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_0006" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "A control of the order of data that is output, for example the order of sequences in an alignment." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "Possible options including sorting by score, rank, by increasing P-value (probability, i.e. most statistically significant hits given first) and so on." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Results sort order" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_3671", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.12" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Any free or plain text, typically for human consumption and in English. Can instantiate also as a textual search query." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Free text" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "Plain text" + }, + { + "@value": "Textual search query" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Text" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2526" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3376", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Health care research" + }, + { + "@value": "Health care science" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The discovery, development and approval of medicines." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Drug discovery and development" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Medicines_research_and_development" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/events" + }, + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Medicines research and development" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Drug_development" + }, + { + "@id": "https://en.wikipedia.org/wiki/Drug_discovery" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3344" + } + ] + }, + { + "@id": "http://edamontology.org/data_2576", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a toxin." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Toxin identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1086" + }, + { + "@id": "_:Ncfbee08e40fe4ab3ae9b049c61d2c760" + } + ] + }, + { + "@id": "_:Ncfbee08e40fe4ab3ae9b049c61d2c760", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/is_identifier_of" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_2852" + } + ] + }, + { + "@id": "http://edamontology.org/topic_3387", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.4" + } + ], + "http://edamontology.org/isdebtag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": [ + { + "@value": "VT 1.5.18 Marine and Freshwater biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The study of organisms in the ocean or brackish waters." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId": [ + { + "@value": "Marine_biology" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/topics" + }, + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/events" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Marine biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Marine_biology" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/topic_3070" + } + ] + }, + { + "@id": "http://edamontology.org/data_2379", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/notRecommendedForAnnotation": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Identifier of a strain of an organism variant, typically a plant, virus or bacterium." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Strain identifier" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1869" + } + ] + }, + { + "@id": "http://edamontology.org/media_type", + "@type": [ + "http://www.w3.org/2002/07/owl#AnnotationProperty" + ], + "http://purl.obolibrary.org/obo/is_metadata_tag": [ + { + "@value": true + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "'Media type' trailing modifier (qualifier, 'media_type') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to a page specifying a media type of the given data format." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "@value": "MIME type" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/properties" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Media type" + } + ] + }, + { + "@id": "http://edamontology.org/data_1487", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#consider": [ + { + "@id": "http://edamontology.org/data_1481" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Pairwise protein tertiary structure alignment (all atoms)" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/data_2219", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "The name of a field in a database." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + }, + { + "@id": "http://edamontology.org/identifiers" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Database field name" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2099" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0562", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/obsolete_since": [ + { + "@value": "1.12" + } + ], + "http://edamontology.org/oldParent": [ + { + "@id": "http://www.w3.org/2002/07/owl#Thing" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Reformat (a file or other report of) molecular sequence alignment(s)." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/obsolete" + } + ], + "http://www.geneontology.org/formats/oboInOwl#replacedBy": [ + { + "@id": "http://edamontology.org/operation_0335" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Sequence alignment formatting" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://www.w3.org/2002/07/owl#DeprecatedClass" + } + ], + "http://www.w3.org/2002/07/owl#deprecated": [ + { + "@value": true + } + ] + }, + { + "@id": "http://edamontology.org/operation_3206", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Measure the overall level of methyl cytosines in a genome from analysis of experimental data, typically from chromatographic methods and methyl accepting capacity assay." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Global methylation analysis" + }, + { + "@value": "Methylation level analysis (global)" + }, + { + "@value": "Genome methylation analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Whole genome methylation analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_3918" + }, + { + "@id": "http://edamontology.org/operation_3204" + } + ] + }, + { + "@id": "http://edamontology.org/data_0939", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Protein secondary structure from protein coordinate or circular dichroism (CD) spectroscopic data." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "CD spectrum" + }, + { + "@value": "Protein circular dichroism (CD) spectroscopic data" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "CD spectra" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_2537" + } + ] + }, + { + "@id": "http://edamontology.org/operation_1777", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Predict the biological or biochemical role of a protein, or other aspects of a protein function." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Protein function analysis" + }, + { + "@value": "Protein functional analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "@value": "For functional properties that can be mapped to a sequence, use 'Sequence feature detection (protein)' instead." + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Protein function prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Protein_function_prediction" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2423" + }, + { + "@id": "_:N1fafc5ffa17b452da328b564b7a5e3dd" + }, + { + "@id": "http://edamontology.org/operation_2945" + } + ] + }, + { + "@id": "_:N1fafc5ffa17b452da328b564b7a5e3dd", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_1775" + } + ] + }, + { + "@id": "http://edamontology.org/operation_3232", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "1.1" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Combine classical quantitative trait loci (QTL) analysis with gene expression profiling, for example, to describe describe cis- and trans-controlling elements for the expression of phenotype associated genes." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Gene expression quantitative trait loci profiling" + }, + { + "@value": "Gene expression QTL profiling" + }, + { + "@value": "eQTL profiling" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/operations" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Gene expression QTL analysis" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2495" + } + ] + }, + { + "@id": "http://edamontology.org/data_1288", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Sequence map of a whole genome." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Genome map" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1279" + } + ] + }, + { + "@id": "http://edamontology.org/data_1145", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://edamontology.org/regex": [ + { + "@value": "[0-9]+" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "PRIDE experiment accession number." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/identifiers" + }, + { + "@id": "http://edamontology.org/data" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "PRIDE experiment accession number" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/data_1078" + } + ] + }, + { + "@id": "http://edamontology.org/operation_0306", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": [ + { + "@value": "Text analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Process and analyse text (typically scientific literature) to extract information from it." + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": [ + { + "@value": "Text data mining" + }, + { + "@value": "Text analytics" + }, + { + "@value": "Literature mining" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "@value": "Literature analysis" + }, + { + "@value": "Article analysis" + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/operations" + }, + { + "@id": "http://edamontology.org/bio" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "Text mining" + } + ], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": [ + { + "@id": "https://en.wikipedia.org/wiki/Text_mining" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/operation_2945" + }, + { + "@id": "_:N2397eaa45cdc49a19dbfee2c38385a59" + }, + { + "@id": "http://edamontology.org/operation_2423" + }, + { + "@id": "_:N73f01afde7214da6b190ea4fbf366387" + }, + { + "@id": "_:N9a211bd94e4a481491b01ae60f5d27df" + } + ] + }, + { + "@id": "_:N2397eaa45cdc49a19dbfee2c38385a59", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_input" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_3671" + } + ] + }, + { + "@id": "_:N73f01afde7214da6b190ea4fbf366387", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_output" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/data_0972" + } + ] + }, + { + "@id": "_:N9a211bd94e4a481491b01ae60f5d27df", + "@type": [ + "http://www.w3.org/2002/07/owl#Restriction" + ], + "http://www.w3.org/2002/07/owl#onProperty": [ + { + "@id": "http://edamontology.org/has_topic" + } + ], + "http://www.w3.org/2002/07/owl#someValuesFrom": [ + { + "@id": "http://edamontology.org/topic_0218" + } + ] + }, + { + "@id": "http://edamontology.org/format_1926", + "@type": [ + "http://www.w3.org/2002/07/owl#Class" + ], + "http://edamontology.org/created_in": [ + { + "@value": "beta12orEarlier" + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": [ + { + "@value": "Fasta format variant with database name before ID." + } + ], + "http://www.geneontology.org/formats/oboInOwl#inSubset": [ + { + "@id": "http://edamontology.org/bio" + }, + { + "@id": "http://edamontology.org/formats" + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": [ + { + "@value": "dbid" + } + ], + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + { + "@id": "http://edamontology.org/format_2200" + } + ] + } +] \ No newline at end of file diff --git a/src/webapp/test_queries/edam.ttl b/src/webapp/test_queries/edam.ttl new file mode 100644 index 0000000..48b13d2 --- /dev/null +++ b/src/webapp/test_queries/edam.ttl @@ -0,0 +1,41297 @@ +@prefix : . +@prefix dc: . +@prefix dcterms: . +@prefix doap: . +@prefix foaf: . +@prefix oboInOwl: . +@prefix oboLegacy: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix skos: . +@prefix xsd: . + + a owl:Ontology ; + :citation ; + :has_format :format_2197, + :format_3261 ; + :next_id "4040" ; + :repository ; + oboLegacy:date "03.10.2023 11:14 UTC" ; + oboLegacy:idspace "EDAM http://edamontology.org/ \"EDAM relations, concept properties, and subsets\"", + "EDAM_data http://edamontology.org/data_ \"EDAM types of data\"", + "EDAM_format http://edamontology.org/format_ \"EDAM data formats\"", + "EDAM_operation http://edamontology.org/operation_ \"EDAM operations\"", + "EDAM_topic http://edamontology.org/topic_ \"EDAM topics\"" ; + oboLegacy:remark "EDAM is a community project and its development can be followed and contributed to at https://github.com/edamontology/edamontology.", + "EDAM is particularly suitable for semantic annotations and categorisation of diverse resources related to data analysis and management: e.g. tools, workflows, learning materials, or standards. EDAM is also useful in data management itself, for recording provenance metadata of processed data." ; + dc:contributor "https://github.com/edamontology/edamontology/graphs/contributors and many more!" ; + dc:creator "Hervé Ménager", + "Jon Ison", + "Matúš Kalaš" ; + dc:description "EDAM is a domain ontology of data analysis and data management in bio- and other sciences, and science-based applications. It comprises concepts related to analysis, modelling, optimisation, and data life-cycle. Targetting usability by diverse users, the structure of EDAM is relatively simple, divided into 4 main sections: Topic, Operation, Data (incl. Identifier), and Format." ; + dc:format "application/rdf+xml" ; + dc:title "EDAM - The ontology of data analysis and management" ; + dcterms:format ; + dcterms:license ; + doap:Version "1.26_dev" ; + oboInOwl:hasSubset :bio, + :data, + :events, + :formats, + :identifiers, + :obsolete, + :operations, + :properties, + :topics ; + oboInOwl:savedBy "Matúš Kalaš" ; + rdfs:isDefinedBy :EDAM.owl ; + foaf:logo ; + foaf:page :page . + +:citation a owl:AnnotationProperty ; + rdfs:label "Citation" ; + :created_in "1.13" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasBroadSynonym "Publication reference" ; + oboInOwl:hasDefinition "'Citation' concept property ('citation' metadata tag) contains a dereferenceable URI, preferably including a DOI, pointing to a citeable publication of the given data format." ; + oboInOwl:hasRelatedSynonym "Publication" ; + oboInOwl:inSubset :properties . + +:created_in a owl:AnnotationProperty ; + rdfs:label "Created in" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "Version in which a concept was created." ; + oboInOwl:inSubset :properties . + +:data_0005 a owl:Class ; + rdfs:label "Resource type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2337 ; + oboInOwl:hasDefinition "A type of computational resource used in bioinformatics." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0007 a owl:Class ; + rdfs:label "Tool" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A bioinformatics package or tool, e.g. a standalone application or web service." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0958 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0581 a owl:Class ; + rdfs:label "Database" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A digital data archive typically based around a relational model but sometimes using an object-oriented, tree or graph-based model." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0957 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0583 a owl:Class ; + rdfs:label "Directory metadata" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3106 ; + oboInOwl:hasDefinition "A directory on disk from which files are read." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0831 a owl:Class ; + rdfs:label "MeSH vocabulary" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0582 ; + oboInOwl:hasDefinition "Controlled vocabulary from National Library of Medicine. The MeSH thesaurus is used to index articles in biomedical journals for the Medline/PubMED databases." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0832 a owl:Class ; + rdfs:label "HGNC vocabulary" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0582 ; + oboInOwl:hasDefinition "Controlled vocabulary for gene names (symbols) from HUGO Gene Nomenclature Committee." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0835 a owl:Class ; + rdfs:label "UMLS vocabulary" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0582 ; + oboInOwl:hasDefinition "Compendium of controlled vocabularies for the biomedical domain (Unified Medical Language System)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0843 a owl:Class ; + rdfs:label "Database entry" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "An entry (retrievable via URL) from a biological database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0844 a owl:Class ; + rdfs:label "Molecular mass" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Mass of a molecule." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2050 . + +:data_0845 a owl:Class ; + rdfs:label "Molecular charge" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "PDBML:pdbx_formal_charge" ; + oboInOwl:hasDefinition "Net charge of a molecule." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2050 . + +:data_0851 a owl:Class ; + rdfs:label "Sequence mask character" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2534 ; + oboInOwl:hasDefinition "A character used to replace (mask) other characters in a molecular sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0852 a owl:Class ; + rdfs:label "Sequence mask type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "A label (text token) describing the type of sequence masking to perform." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Sequence masking is where specific characters or positions in a molecular sequence are masked (replaced) with an another (mask character). The mask type indicates what is masked, for example regions that are not of interest or which are information-poor including acidic protein regions, basic protein regions, proline-rich regions, low compositional complexity regions, short-periodicity internal repeats, simple repeats and low complexity regions. Masked sequences are used in database search to eliminate statistically significant but biologically uninteresting hits." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0853 a owl:Class ; + rdfs:label "DNA sense specification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.20" ; + :oldParent :data_2534 ; + oboInOwl:consider :data_2534 ; + oboInOwl:hasDefinition "The strand of a DNA sequence (forward or reverse)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The forward or 'top' strand might specify a sequence is to be used as given, the reverse or 'bottom' strand specifying the reverse complement of the sequence is to be used." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0854 a owl:Class ; + rdfs:label "Sequence length specification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1249 ; + oboInOwl:hasDefinition "A specification of sequence length(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0855 a owl:Class ; + rdfs:label "Sequence metadata" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2955 ; + oboInOwl:hasDefinition "Basic or general information concerning molecular sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is used for such things as a report including the sequence identifier, type and length." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0856 a owl:Class ; + rdfs:label "Sequence feature source" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "How the annotation of a sequence feature (for example in EMBL or Swiss-Prot) was derived." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This might be the name and version of a software tool, the name of a database, or 'curated' to indicate a manual annotation (made by a human)." ; + rdfs:subClassOf :data_2914 . + +:data_0859 a owl:Class ; + rdfs:label "Sequence signature model" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0950 ; + oboInOwl:hasDefinition "Data files used by motif or profile methods." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0861 a owl:Class ; + rdfs:label "Sequence alignment (words)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0863 ; + oboInOwl:hasDefinition "Alignment of exact matches between subsequences (words) within two or more molecular sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0864 a owl:Class ; + rdfs:label "Sequence alignment parameter" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2534 ; + oboInOwl:hasDefinition "Some simple value controlling a sequence alignment (or similar 'match') operation." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0866 a owl:Class ; + rdfs:label "Sequence alignment metadata" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0867 ; + oboInOwl:hasDefinition "Report of general information on a sequence alignment, typically include a description, sequence identifiers and alignment score." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0868 a owl:Class ; + rdfs:label "Profile-profile alignment" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "\"Sequence-profile alignment\" and \"Profile-profile alignment\" are synonymous with \"Sequence signature matches\" which was already stated as including matches (alignment) and other data." ; + :obsolete_since "1.25 or earlier" ; + :oldParent :data_1916 ; + oboInOwl:hasDefinition "A profile-profile alignment (each profile typically representing a sequence alignment)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0858 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0869 a owl:Class ; + rdfs:label "Sequence-profile alignment" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "\"Sequence-profile alignment\" and \"Profile-profile alignment\" are synonymous with \"Sequence signature matches\" which was already stated as including matches (alignment) and other data." ; + :obsolete_since "1.24" ; + :oldParent :data_1916 ; + oboInOwl:hasDefinition "Alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0858 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0875 a owl:Class ; + rdfs:label "Protein topology" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Predicted or actual protein topology represented as a string of protein secondary structure elements." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:comment "The location and size of the secondary structure elements and intervening loop regions is usually indicated." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0876 a owl:Class ; + rdfs:label "Protein features report (secondary structure)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Secondary structure (predicted or real) of a protein." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0877 a owl:Class ; + rdfs:label "Protein features report (super-secondary)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Super-secondary structure of protein sequence(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:comment "Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0879 a owl:Class ; + rdfs:label "Secondary structure alignment metadata (protein)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0867 ; + oboInOwl:hasDefinition "An informative report on protein secondary structure alignment-derived data or metadata." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0882 a owl:Class ; + rdfs:label "Secondary structure alignment metadata (RNA)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0867 ; + oboInOwl:hasDefinition "An informative report of RNA secondary structure alignment-derived data or metadata." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0884 a owl:Class ; + rdfs:label "Tertiary structure record" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0883 ; + oboInOwl:hasDefinition "An entry from a molecular tertiary (3D) structure database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0885 a owl:Class ; + rdfs:label "Structure database search results" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2080 ; + oboInOwl:hasDefinition "Results (hits) from searching a database of tertiary structure." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0890 a owl:Class ; + rdfs:label "Structural (3D) profile alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A 3D profile-3D profile alignment (each profile representing structures or a structure alignment)." ; + oboInOwl:hasExactSynonym "Structural profile alignment" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1916 . + +:data_0891 a owl:Class ; + rdfs:label "Sequence-3D profile alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0893 ; + oboInOwl:hasDefinition "An alignment of a sequence to a 3D profile (representing structures or a structure alignment)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0894 a owl:Class ; + rdfs:label "Amino acid annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0962 ; + oboInOwl:hasDefinition "An informative report about a specific amino acid." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0895 a owl:Class ; + rdfs:label "Peptide annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0962 ; + oboInOwl:hasDefinition "An informative report about a specific peptide." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0899 a owl:Class ; + rdfs:label "Protein structural motifs and surfaces" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "3D structural motifs in a protein." ; + oboInOwl:replacedBy :data_1277 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0900 a owl:Class ; + rdfs:label "Protein domain classification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Data concerning the classification of the sequences and/or structures of protein structural domain(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0901 a owl:Class ; + rdfs:label "Protein features report (domains)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "structural domains or 3D folds in a protein or polypeptide chain." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0902 a owl:Class ; + rdfs:label "Protein architecture report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1537 ; + oboInOwl:hasDefinition "An informative report on architecture (spatial arrangement of secondary structure) of a protein structure." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0903 a owl:Class ; + rdfs:label "Protein folding report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A report on an analysis or model of protein folding properties, folding pathways, residues or sites that are key to protein folding, nucleation or stabilisation centers etc." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1537 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0904 a owl:Class ; + rdfs:label "Protein features (mutation)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0896 ; + oboInOwl:hasDefinition "Data on the effect of (typically point) mutation on protein folding, stability, structure and function." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0905 a owl:Class ; + rdfs:label "Protein interaction raw data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." ; + rdfs:subClassOf :data_3108 . + +:data_0909 a owl:Class ; + rdfs:label "Vmax" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The maximum initial velocity or rate of a reaction. It is the limiting velocity as substrate concentrations get very large." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2024 . + +:data_0910 a owl:Class ; + rdfs:label "Km" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Km is the concentration (usually in Molar units) of substrate that leads to half-maximal velocity of an enzyme-catalysed reaction." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2024 . + +:data_0911 a owl:Class ; + rdfs:label "Nucleotide base annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0962 ; + oboInOwl:hasDefinition "An informative report about a specific nucleotide base." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0917 a owl:Class ; + rdfs:label "Gene classification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0916 ; + oboInOwl:hasDefinition "A report on the classification of nucleic acid / gene sequences according to the functional classification of their gene products." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0918 a owl:Class ; + rdfs:label "DNA variation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "stable, naturally occurring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1276 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0923 a owl:Class ; + rdfs:label "PCR experiment report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "PCR experiments, e.g. quantitative real-time PCR." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0926 a owl:Class ; + rdfs:label "RH scores" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Radiation hybrid scores (RH) scores for one or more markers." ; + oboInOwl:hasExactSynonym "Radiation Hybrid (RH) scores" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Radiation Hybrid (RH) scores are used in Radiation Hybrid mapping." ; + rdfs:subClassOf :data_3108 . + +:data_0931 a owl:Class ; + rdfs:label "Microarray experiment report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "microarray experiments including conditions, protocol, sample:data relationships etc." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0932 a owl:Class ; + rdfs:label "Oligonucleotide probe data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2717 ; + oboInOwl:hasDefinition "Data on oligonucleotide probes (typically for use with DNA microarrays)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0933 a owl:Class ; + rdfs:label "SAGE experimental data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2535 ; + oboInOwl:hasDefinition "Output from a serial analysis of gene expression (SAGE) experiment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0934 a owl:Class ; + rdfs:label "MPSS experimental data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2535 ; + oboInOwl:hasDefinition "Massively parallel signature sequencing (MPSS) data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0935 a owl:Class ; + rdfs:label "SBS experimental data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2535 ; + oboInOwl:hasDefinition "Sequencing by synthesis (SBS) data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0936 a owl:Class ; + rdfs:label "Sequence tag profile (with gene assignment)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.14" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. Typically this is the sequencing-based expression profile annotated with gene identifiers." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2535 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0937 a owl:Class ; + rdfs:label "Electron density map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasBroadSynonym "Protein X-ray crystallographic data" ; + oboInOwl:hasDefinition "X-ray crystallography data." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2537 . + +:data_0938 a owl:Class ; + rdfs:label "Raw NMR data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Nuclear magnetic resonance (NMR) raw data, typically for a protein." ; + oboInOwl:hasNarrowSynonym "Protein NMR data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2537 . + +:data_0939 a owl:Class ; + rdfs:label "CD spectra" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Protein secondary structure from protein coordinate or circular dichroism (CD) spectroscopic data." ; + oboInOwl:hasExactSynonym "CD spectrum", + "Protein circular dichroism (CD) spectroscopic data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2537 . + +:data_0940 a owl:Class ; + rdfs:label "Volume map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Volume map data from electron microscopy." ; + oboInOwl:hasExactSynonym "3D volume map", + "EM volume map", + "Electron microscopy volume map" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1317 ], + :data_3108 . + +:data_0941 a owl:Class ; + rdfs:label "Electron microscopy model" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :data_0883 ; + oboInOwl:hasDefinition "Annotation on a structural 3D model (volume map) from electron microscopy." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_3806 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0942 a owl:Class ; + rdfs:label "2D PAGE image" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Two-dimensional gel electrophoresis image." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + :data_3424 . + +:data_0945 a owl:Class ; + rdfs:label "Peptide identification" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Protein or peptide identifications with evidence supporting the identifications, for example from comparing a peptide mass fingerprint (from mass spectrometry) to a sequence database, or the set of typical spectra one obtains when running a protein through a mass spectrometer." ; + oboInOwl:hasExactSynonym "'Protein identification'", + "Peptide spectrum match" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + :data_0897, + :data_2979 . + +:data_0946 a owl:Class ; + rdfs:label "Pathway or network annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2984 ; + oboInOwl:hasDefinition "An informative report about a specific biological pathway or network, typically including a map (diagram) of the pathway." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0947 a owl:Class ; + rdfs:label "Biological pathway map" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2600 ; + oboInOwl:hasDefinition "A map (typically a diagram) of a biological pathway." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0948 a owl:Class ; + rdfs:label "Data resource definition" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1883 ; + oboInOwl:hasDefinition "A definition of a data resource serving one or more types of data, including metadata and links to the resource or data proper." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0952 a owl:Class ; + rdfs:label "EMBOSS database resource definition" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0957 ; + oboInOwl:hasDefinition "Resource definition for an EMBOSS database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0953 a owl:Class ; + rdfs:label "Version information" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2337 ; + oboInOwl:hasDefinition "Information on a version of software or data, for example name, version number and release date." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Development status / maturity may be part of the version information, for example in case of tools, standards, or some data records." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0956 a owl:Class ; + rdfs:label "Data index report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information concerning an analysis of an index of biological data." ; + oboInOwl:hasExactSynonym "Database index annotation" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3489 ], + :data_2048 . + +:data_0959 a owl:Class ; + rdfs:label "Job metadata" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3106 ; + oboInOwl:hasDefinition "Textual metadata on a submitted or completed job." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0960 a owl:Class ; + rdfs:label "User metadata" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Textual metadata on a software author or end-user, for example a person or other software." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2337 . + +:data_0964 a owl:Class ; + rdfs:label "Scent annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0962 ; + oboInOwl:hasDefinition "An informative report about a specific scent." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0974 a owl:Class ; + rdfs:label "Entity identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "An identifier of a biological entity or phenomenon." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0975 a owl:Class ; + rdfs:label "Data resource identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "An identifier of a data resource." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0978 a owl:Class ; + rdfs:label "Discrete entity identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "Name or other identifier of a discrete entity (any biological thing with a distinct, discrete physical existence)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0979 a owl:Class ; + rdfs:label "Entity feature identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "Name or other identifier of an entity feature (a physical part or region of a discrete biological entity, or a feature that can be mapped to such a thing)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0980 a owl:Class ; + rdfs:label "Entity collection identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "Name or other identifier of a collection of discrete biological entities." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0981 a owl:Class ; + rdfs:label "Phenomenon identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "Name or other identifier of a physical, observable biological occurrence or event." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0985 a owl:Class ; + rdfs:label "Molecule type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "A label (text token) describing the type a molecule." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "For example, 'Protein', 'DNA', 'RNA' etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0986 a owl:Class ; + rdfs:label "Chemical identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1086 ; + oboInOwl:hasDefinition "Unique identifier of a chemical compound." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0992 a owl:Class ; + rdfs:label "Ligand identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1086 ; + oboInOwl:hasDefinition "Code word for a ligand, for example from a PDB file." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0997 a owl:Class ; + rdfs:label "Chemical name (ChEBI)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique name from Chemical Entities of Biological Interest (ChEBI) of a chemical compound." ; + oboInOwl:hasExactSynonym "ChEBI chemical name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "This is the recommended chemical name for use for example in database annotation." ; + rdfs:subClassOf :data_0990 . + +:data_0998 a owl:Class ; + rdfs:label "Chemical name (IUPAC)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "IUPAC recommended name of a chemical compound." ; + oboInOwl:hasExactSynonym "IUPAC chemical name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0990 . + +:data_0999 a owl:Class ; + rdfs:label "Chemical name (INN)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "International Non-proprietary Name (INN or 'generic name') of a chemical compound, assigned by the World Health Organisation (WHO)." ; + oboInOwl:hasExactSynonym "INN chemical name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0990 . + +:data_1000 a owl:Class ; + rdfs:label "Chemical name (brand)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Brand name of a chemical compound." ; + oboInOwl:hasExactSynonym "Brand chemical name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0990 . + +:data_1001 a owl:Class ; + rdfs:label "Chemical name (synonymous)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Synonymous name of a chemical compound." ; + oboInOwl:hasExactSynonym "Synonymous chemical name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0990 . + +:data_1003 a owl:Class ; + rdfs:label "Chemical registry number (Beilstein)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Beilstein registry number of a chemical compound." ; + oboInOwl:hasExactSynonym "Beilstein chemical registry number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0991, + :data_2091 . + +:data_1004 a owl:Class ; + rdfs:label "Chemical registry number (Gmelin)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Gmelin registry number of a chemical compound." ; + oboInOwl:hasExactSynonym "Gmelin chemical registry number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0991, + :data_2091 . + +:data_1005 a owl:Class ; + rdfs:label "HET group name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3-letter code word for a ligand (HET group) from a PDB file, for example ATP." ; + oboInOwl:hasExactSynonym "Component identifier code", + "Short ligand name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0990 . + +:data_1007 a owl:Class ; + rdfs:label "Nucleotide code" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "String of one or more ASCII characters representing a nucleotide." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0990, + :data_0995 . + +:data_1008 a owl:Class ; + rdfs:label "Polypeptide chain ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "PDBML:pdbx_PDB_strand_id", + "WHATIF: chain" ; + oboInOwl:hasDefinition "Identifier of a polypeptide chain from a protein." ; + oboInOwl:hasExactSynonym "Chain identifier", + "PDB chain identifier", + "PDB strand id", + "Polypeptide chain identifier", + "Protein chain identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "This is typically a character (for the chain) appended to a PDB identifier, e.g. 1cukA" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1467 ], + :data_0988 . + +:data_1011 a owl:Class ; + rdfs:label "EC number" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+\\.-\\.-\\.-|[0-9]+\\.[0-9]+\\.-\\.-|[0-9]+\\.[0-9]+\\.[0-9]+\\.-|[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+" ; + oboInOwl:hasDbXref "Moby:Annotated_EC_Number", + "Moby:EC_Number" ; + oboInOwl:hasDefinition "An Enzyme Commission (EC) number of an enzyme." ; + oboInOwl:hasExactSynonym "EC", + "EC code", + "Enzyme Commission number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2321 . + +:data_1013 a owl:Class ; + rdfs:label "Restriction enzyme name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a restriction enzyme." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1012 . + +:data_1014 a owl:Class ; + rdfs:label "Sequence position specification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1016 ; + oboInOwl:hasDefinition "A specification (partial or complete) of one or more positions or regions of a molecular sequence or map." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1018 a owl:Class ; + rdfs:label "Nucleic acid feature identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1015 ; + oboInOwl:hasDefinition "Name or other identifier of an nucleic acid feature." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1019 a owl:Class ; + rdfs:label "Protein feature identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1015 ; + oboInOwl:hasDefinition "Name or other identifier of a protein feature." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1020 a owl:Class ; + rdfs:label "Sequence feature key" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The type of a sequence feature, typically a term or accession from the Sequence Ontology, for example an EMBL or Swiss-Prot sequence feature key." ; + oboInOwl:hasExactSynonym "Sequence feature method", + "Sequence feature type" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A feature key indicates the biological nature of the feature or information about changes to or versions of the sequence." ; + rdfs:subClassOf :data_2914 . + +:data_1021 a owl:Class ; + rdfs:label "Sequence feature qualifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Typically one of the EMBL or Swiss-Prot feature qualifiers." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Feature qualifiers hold information about a feature beyond that provided by the feature key and location." ; + rdfs:subClassOf :data_2914 . + +:data_1023 a owl:Class ; + rdfs:label "EMBOSS Uniform Feature Object" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a sequence feature-containing entity adhering to the standard feature naming scheme used by all EMBOSS applications." ; + oboInOwl:hasExactSynonym "UFO" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2099, + :data_3034 . + +:data_1024 a owl:Class ; + rdfs:label "Codon name" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1276 ; + oboInOwl:hasDefinition "String of one or more ASCII characters representing a codon." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1028 a owl:Class ; + rdfs:label "Gene identifier (NCBI RefSeq)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1027 ; + oboInOwl:hasDefinition "An NCBI RefSeq unique identifier of a gene." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1029 a owl:Class ; + rdfs:label "Gene identifier (NCBI UniGene)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1104 ; + oboInOwl:hasDefinition "An NCBI UniGene unique identifier of a gene." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1030 a owl:Class ; + rdfs:label "Gene identifier (Entrez)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1027 ; + oboInOwl:hasDefinition "An Entrez unique identifier of a gene." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1031 a owl:Class ; + rdfs:label "Gene ID (CGD)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a gene or feature from the CGD database." ; + oboInOwl:hasExactSynonym "CGD ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_1032 a owl:Class ; + rdfs:label "Gene ID (DictyBase)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a gene from DictyBase." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_1033 a owl:Class ; + rdfs:label "Ensembl gene ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier for a gene (or other feature) from the Ensembl database." ; + oboInOwl:hasExactSynonym "Gene ID (Ensembl)" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295, + :data_2610 . + +:data_1034 a owl:Class ; + rdfs:label "Gene ID (SGD)" ; + :created_in "beta12orEarlier" ; + :regex "S[0-9]+" ; + oboInOwl:hasDefinition "Identifier of an entry from the SGD database." ; + oboInOwl:hasExactSynonym "SGD identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295, + :data_2632 . + +:data_1036 a owl:Class ; + rdfs:label "TIGR identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the TIGR database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109, + :data_2295 . + +:data_1040 a owl:Class ; + rdfs:label "CATH domain ID" ; + :created_in "beta12orEarlier" ; + :example "1nr3A00" ; + oboInOwl:hasDefinition "Identifier of a protein domain from CATH." ; + oboInOwl:hasExactSynonym "CATH domain identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2700 . + +:data_1041 a owl:Class ; + rdfs:label "SCOP concise classification string (sccs)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A SCOP concise classification string (sccs) is a compact representation of a SCOP domain classification." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "An scss includes the class (alphabetical), fold, superfamily and family (all numerical) to which a given domain belongs." ; + rdfs:subClassOf :data_1039 . + +:data_1042 a owl:Class ; + rdfs:label "SCOP sunid" ; + :created_in "beta12orEarlier" ; + :example "33229" ; + oboInOwl:hasDefinition "Unique identifier (number) of an entry in the SCOP hierarchy, for example 33229." ; + oboInOwl:hasExactSynonym "SCOP unique identifier", + "sunid" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "A sunid uniquely identifies an entry in the SCOP hierarchy, including leaves (the SCOP domains) and higher level nodes including entries corresponding to the protein level." ; + rdfs:subClassOf :data_1039 . + +:data_1044 a owl:Class ; + rdfs:label "Kingdom name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a biological kingdom (Bacteria, Archaea, or Eukaryotes)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1868 . + +:data_1045 a owl:Class ; + rdfs:label "Species name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a species (typically a taxonomic group) of organism." ; + oboInOwl:hasExactSynonym "Organism species" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1868 . + +:data_1049 a owl:Class ; + rdfs:label "Directory name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a directory." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099 . + +:data_1051 a owl:Class ; + rdfs:label "Ontology name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of an ontology of biological or bioinformatics concepts and relations." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0582 ], + :data_2099, + :data_2338 . + +:data_1052 a owl:Class ; + rdfs:label "URL" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:Link", + "Moby:URL" ; + oboInOwl:hasDefinition "A Uniform Resource Locator (URL)." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1047 . + +:data_1055 a owl:Class ; + rdfs:label "LSID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A Life Science Identifier (LSID) - a unique identifier of some data." ; + oboInOwl:hasExactSynonym "Life Science Identifier" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "LSIDs provide a standard way to locate and describe data. An LSID is represented as a Uniform Resource Name (URN) with the following format: URN:LSID:::[:]" ; + rdfs:subClassOf :data_1053 . + +:data_1057 a owl:Class ; + rdfs:label "Sequence database name" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1056 ; + oboInOwl:hasDefinition "The name of a molecular sequence database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1058 a owl:Class ; + rdfs:label "Enumerated file name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a file (of any type) with restricted possible values." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1050 . + +:data_1059 a owl:Class ; + rdfs:label "File name extension" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The extension of a file name." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "A file extension is the characters appearing after the final '.' in the file name." ; + rdfs:subClassOf :data_1050 . + +:data_1060 a owl:Class ; + rdfs:label "File base name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The base name of a file." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "A file base name is the file name stripped of its directory specification and extension." ; + rdfs:subClassOf :data_1050 . + +:data_1061 a owl:Class ; + rdfs:label "QSAR descriptor name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a QSAR descriptor." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0847 ], + :data_2099, + :data_2110 . + +:data_1062 a owl:Class ; + rdfs:label "Database entry identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "An identifier of an entry from a database where the same type of identifier is used for objects (data) of different semantic type." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This concept is required for completeness. It should never have child concepts." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1065 a owl:Class ; + rdfs:label "Sequence signature identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1114, + :data_1115 ; + oboInOwl:hasDefinition "Identifier of a sequence signature (motif or profile) for example from a database of sequence patterns." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1066 a owl:Class ; + rdfs:label "Sequence alignment ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a molecular sequence alignment, for example a record from an alignment database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0863 ], + :data_0976, + :data_2091 . + +:data_1067 a owl:Class ; + rdfs:label "Phylogenetic distance matrix identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0976 ; + oboInOwl:hasDefinition "Identifier of a phylogenetic distance matrix." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1071 a owl:Class ; + rdfs:label "Structural (3D) profile ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier or name of a structural (3D) profile or template (representing a structure or structure alignment)." ; + oboInOwl:hasExactSynonym "Structural profile identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0889 ], + :data_0976 . + +:data_1076 a owl:Class ; + rdfs:label "Codon usage table name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique name of a codon usage table." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1598 ], + [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1597 ], + :data_2099, + :data_2111 . + +:data_1091 a owl:Class ; + rdfs:label "WormBase name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of an object from the WormBase database, usually a human-readable name." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099, + :data_2113 . + +:data_1092 a owl:Class ; + rdfs:label "WormBase class" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Class of an object from the WormBase database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "A WormBase class describes the type of object such as 'sequence' or 'protein'." ; + rdfs:subClassOf :data_2113 . + +:data_1094 a owl:Class ; + rdfs:label "Sequence type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "A label (text token) describing a type of molecular sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Sequence type might reflect the molecule (protein, nucleic acid etc) or the sequence itself (gapped, ambiguous etc)." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1095 a owl:Class ; + rdfs:label "EMBOSS Uniform Sequence Address" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a sequence-based entity adhering to the standard sequence naming scheme used by all EMBOSS applications." ; + oboInOwl:hasExactSynonym "EMBOSS USA" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1063, + :data_2099 . + +:data_1099 a owl:Class ; + rdfs:label "UniProt accession (extended)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.0" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3021 ; + oboInOwl:hasDefinition "Accession number of a UniProt (protein sequence) database entry. May contain version or isoform number." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1100 a owl:Class ; + rdfs:label "PIR identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of PIR sequence database entry." ; + oboInOwl:hasExactSynonym "PIR ID", + "PIR accession number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1096, + :data_2091 . + +:data_1101 a owl:Class ; + rdfs:label "TREMBL accession" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.2" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Identifier of a TREMBL sequence database entry." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_3021 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1102 a owl:Class ; + rdfs:label "Gramene primary identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Primary identifier of a Gramene database entry." ; + oboInOwl:hasExactSynonym "Gramene primary ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2915 . + +:data_1105 a owl:Class ; + rdfs:label "dbEST accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a dbEST database entry." ; + oboInOwl:hasExactSynonym "dbEST ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2292, + :data_2728 . + +:data_1106 a owl:Class ; + rdfs:label "dbSNP ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a dbSNP database entry." ; + oboInOwl:hasExactSynonym "dbSNP identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2294 . + +:data_1110 a owl:Class ; + rdfs:label "EMBOSS sequence type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2534 ; + oboInOwl:hasDefinition "The EMBOSS type of a molecular sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "See the EMBOSS documentation (http://emboss.sourceforge.net/) for a definition of what this includes." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1111 a owl:Class ; + rdfs:label "EMBOSS listfile" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2872 ; + oboInOwl:hasDefinition "List of EMBOSS Uniform Sequence Addresses (EMBOSS listfile)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1113 a owl:Class ; + rdfs:label "Sequence cluster ID (COG)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the COG database." ; + oboInOwl:hasExactSynonym "COG ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1112, + :data_2091 . + +:data_1116 a owl:Class ; + rdfs:label "ELM ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the ELMdb database of protein functional sites." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1114 . + +:data_1117 a owl:Class ; + rdfs:label "Prosite accession number" ; + :created_in "beta12orEarlier" ; + :regex "PS[0-9]{5}" ; + oboInOwl:hasDefinition "Accession number of an entry from the Prosite database." ; + oboInOwl:hasExactSynonym "Prosite ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1114 . + +:data_1118 a owl:Class ; + rdfs:label "HMMER hidden Markov model ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier or name of a HMMER hidden Markov model." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1364 ], + :data_1115, + :data_2091 . + +:data_1119 a owl:Class ; + rdfs:label "JASPAR profile ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier or name of a profile from the JASPAR database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1115, + :data_2091 . + +:data_1120 a owl:Class ; + rdfs:label "Sequence alignment type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "A label (text token) describing the type of a sequence alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Possible values include for example the EMBOSS alignment types, BLAST alignment types and so on." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1121 a owl:Class ; + rdfs:label "BLAST sequence alignment type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2534 ; + oboInOwl:hasDefinition "The type of a BLAST sequence alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1122 a owl:Class ; + rdfs:label "Phylogenetic tree type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "A label (text token) describing the type of a phylogenetic tree." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "For example 'nj', 'upgmp' etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1123 a owl:Class ; + rdfs:label "TreeBASE study accession number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Accession number of an entry from the TreeBASE database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1068, + :data_2091 . + +:data_1124 a owl:Class ; + rdfs:label "TreeFam accession number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Accession number of an entry from the TreeFam database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1068, + :data_2091 . + +:data_1125 a owl:Class ; + rdfs:label "Comparison matrix type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "A label (text token) describing the type of a comparison matrix." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "For example 'blosum', 'pam', 'gonnet', 'id' etc. Comparison matrix type may be required where a series of matrices of a certain type are used." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1126 a owl:Class ; + rdfs:label "Comparison matrix name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique name or identifier of a comparison matrix." ; + oboInOwl:hasExactSynonym "Substitution matrix name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "See for example http://www.ebi.ac.uk/Tools/webservices/help/matrix." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0874 ], + :data_1069, + :data_2099 . + +:data_1127 a owl:Class ; + rdfs:label "PDB ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9][a-zA-Z_0-9]{3}" ; + oboInOwl:hasDefinition "An identifier of an entry from the PDB database." ; + oboInOwl:hasExactSynonym "PDB identifier", + "PDBID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "A PDB identification code which consists of 4 characters, the first of which is a digit in the range 0 - 9; the remaining 3 are alphanumeric, and letters are upper case only. (source: https://cdn.rcsb.org/wwpdb/docs/documentation/file-format/PDB_format_1996.pdf)" ; + rdfs:subClassOf :data_1070, + :data_2091 . + +:data_1128 a owl:Class ; + rdfs:label "AAindex ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the AAindex database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1073, + :data_2091 . + +:data_1129 a owl:Class ; + rdfs:label "BIND accession number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Accession number of an entry from the BIND database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1074, + :data_2091 . + +:data_1130 a owl:Class ; + rdfs:label "IntAct accession number" ; + :created_in "beta12orEarlier" ; + :regex "EBI\\-[0-9]+" ; + oboInOwl:hasDefinition "Accession number of an entry from the IntAct database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1074, + :data_2091 . + +:data_1132 a owl:Class ; + rdfs:label "InterPro entry name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of an InterPro entry, usually indicating the type of protein matches for that entry." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1355 ], + :data_1131 . + +:data_1134 a owl:Class ; + rdfs:label "InterPro secondary accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Secondary accession number of an InterPro entry." ; + oboInOwl:hasExactSynonym "InterPro secondary accession number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1355 ], + :data_1133 . + +:data_1135 a owl:Class ; + rdfs:label "Gene3D ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the Gene3D database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2910 . + +:data_1136 a owl:Class ; + rdfs:label "PIRSF ID" ; + :created_in "beta12orEarlier" ; + :regex "PIRSF[0-9]{6}" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the PIRSF database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2910 . + +:data_1137 a owl:Class ; + rdfs:label "PRINTS code" ; + :created_in "beta12orEarlier" ; + :regex "PR[0-9]{5}" ; + oboInOwl:hasDefinition "The unique identifier of an entry in the PRINTS database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2910 . + +:data_1138 a owl:Class ; + rdfs:label "Pfam accession number" ; + :created_in "beta12orEarlier" ; + :regex "PF[0-9]{5}" ; + oboInOwl:hasDefinition "Accession number of a Pfam entry." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2910 . + +:data_1139 a owl:Class ; + rdfs:label "SMART accession number" ; + :created_in "beta12orEarlier" ; + :regex "SM[0-9]{5}" ; + oboInOwl:hasDefinition "Accession number of an entry from the SMART database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2910 . + +:data_1140 a owl:Class ; + rdfs:label "Superfamily hidden Markov model number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier (number) of a hidden Markov model from the Superfamily database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2910 . + +:data_1141 a owl:Class ; + rdfs:label "TIGRFam ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Accession number of an entry (family) from the TIGRFam database." ; + oboInOwl:hasExactSynonym "TIGRFam accession number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2910 . + +:data_1142 a owl:Class ; + rdfs:label "ProDom accession number" ; + :created_in "beta12orEarlier" ; + :regex "PD[0-9]+" ; + oboInOwl:hasDefinition "A ProDom domain family accession number." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "ProDom is a protein domain family database." ; + rdfs:subClassOf :data_2091, + :data_2910 . + +:data_1143 a owl:Class ; + rdfs:label "TRANSFAC accession number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the TRANSFAC database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2911 . + +:data_1144 a owl:Class ; + rdfs:label "ArrayExpress accession number" ; + :created_in "beta12orEarlier" ; + :regex "[AEP]-[a-zA-Z_0-9]{4}-[0-9]+" ; + oboInOwl:hasDefinition "Accession number of an entry from the ArrayExpress database." ; + oboInOwl:hasExactSynonym "ArrayExpress experiment ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1078 . + +:data_1145 a owl:Class ; + rdfs:label "PRIDE experiment accession number" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "PRIDE experiment accession number." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1078 . + +:data_1146 a owl:Class ; + rdfs:label "EMDB ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the EMDB electron microscopy database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1079, + :data_2091 . + +:data_1147 a owl:Class ; + rdfs:label "GEO accession number" ; + :created_in "beta12orEarlier" ; + :regex "[GDS|GPL|GSE|GSM][0-9]+" ; + oboInOwl:hasDefinition "Accession number of an entry from the GEO database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1080, + :data_2091 . + +:data_1148 a owl:Class ; + rdfs:label "GermOnline ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the GermOnline database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1080, + :data_2091 . + +:data_1149 a owl:Class ; + rdfs:label "EMAGE ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the EMAGE database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1080, + :data_2091 . + +:data_1151 a owl:Class ; + rdfs:label "HGVbase ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the HGVbase database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1081, + :data_2091 . + +:data_1152 a owl:Class ; + rdfs:label "HIVDB identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "Identifier of an entry from the HIVDB database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1153 a owl:Class ; + rdfs:label "OMIM ID" ; + :created_in "beta12orEarlier" ; + :regex "[*#+%^]?[0-9]{6}" ; + oboInOwl:hasDefinition "Identifier of an entry from the OMIM database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:seeAlso ; + rdfs:subClassOf :data_1081, + :data_2091 . + +:data_1155 a owl:Class ; + rdfs:label "Pathway ID (reactome)" ; + :created_in "beta12orEarlier" ; + :regex "REACT_[0-9]+(\\.[0-9]+)?" ; + oboInOwl:hasDefinition "Identifier of an entry from the Reactome database." ; + oboInOwl:hasExactSynonym "Reactome ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2365 . + +:data_1156 a owl:Class ; + rdfs:label "Pathway ID (aMAZE)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1082 ; + oboInOwl:hasDefinition "Identifier of an entry from the aMAZE database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1157 a owl:Class ; + rdfs:label "Pathway ID (BioCyc)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an pathway from the BioCyc biological pathways database." ; + oboInOwl:hasExactSynonym "BioCyc pathway ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2104, + :data_2365 . + +:data_1158 a owl:Class ; + rdfs:label "Pathway ID (INOH)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the INOH database." ; + oboInOwl:hasExactSynonym "INOH identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2365 . + +:data_1159 a owl:Class ; + rdfs:label "Pathway ID (PATIKA)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the PATIKA database." ; + oboInOwl:hasExactSynonym "PATIKA ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2365 . + +:data_1160 a owl:Class ; + rdfs:label "Pathway ID (CPDB)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the CPDB (ConsensusPathDB) biological pathways database, which is an identifier from an external database integrated into CPDB." ; + oboInOwl:hasExactSynonym "CPDB ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "This concept refers to identifiers used by the databases collated in CPDB; CPDB identifiers are not independently defined." ; + rdfs:subClassOf :data_2091, + :data_2365 . + +:data_1161 a owl:Class ; + rdfs:label "Pathway ID (Panther)" ; + :created_in "beta12orEarlier" ; + :regex "PTHR[0-9]{5}" ; + oboInOwl:hasDefinition "Identifier of a biological pathway from the Panther Pathways database." ; + oboInOwl:hasExactSynonym "Panther Pathways ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2365 . + +:data_1162 a owl:Class ; + rdfs:label "MIRIAM identifier" ; + :created_in "beta12orEarlier" ; + :example "MIR:00100005" ; + :regex "MIR:[0-9]{8}" ; + oboInOwl:hasDefinition "Unique identifier of a MIRIAM data resource." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "This is the identifier used internally by MIRIAM for a data type." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0957 ], + :data_2091, + :data_2902 . + +:data_1164 a owl:Class ; + rdfs:label "MIRIAM URI" ; + :created_in "beta12orEarlier" ; + :example "urn:miriam:pubmed:16333295|urn:miriam:obo.go:GO%3A0045202" ; + oboInOwl:hasDefinition "The URI (URL or URN) of a data entity from the MIRIAM database." ; + oboInOwl:hasExactSynonym "identifiers.org synonym" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "A MIRIAM URI consists of the URI of the MIRIAM data type (PubMed, UniProt etc) followed by the identifier of an element of that data type, for example PMID for a publication or an accession number for a GO term." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0957 ], + :data_1047, + :data_2091, + :data_2902 . + +:data_1166 a owl:Class ; + rdfs:label "MIRIAM data type synonymous name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A synonymous name of a data type from the MIRIAM database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "A synonymous name for a MIRIAM data type taken from a controlled vocabulary." ; + rdfs:subClassOf :data_1163 . + +:data_1167 a owl:Class ; + rdfs:label "Taverna workflow ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of a Taverna workflow." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1083, + :data_2091 . + +:data_1170 a owl:Class ; + rdfs:label "Biological model name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a biological (mathematical) model." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1085, + :data_2099 . + +:data_1171 a owl:Class ; + rdfs:label "BioModel ID" ; + :created_in "beta12orEarlier" ; + :regex "(BIOMD|MODEL)[0-9]{10}" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the BioModel database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2891 . + +:data_1172 a owl:Class ; + rdfs:label "PubChem CID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Chemical structure specified in PubChem Compound Identification (CID), a non-zero integer identifier for a unique chemical structure." ; + oboInOwl:hasExactSynonym "PubChem compound accession identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2639, + :data_2894 . + +:data_1173 a owl:Class ; + rdfs:label "ChemSpider ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Identifier of an entry from the ChemSpider database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2894 . + +:data_1174 a owl:Class ; + rdfs:label "ChEBI ID" ; + :created_in "beta12orEarlier" ; + :regex "CHEBI:[0-9]+" ; + oboInOwl:hasDefinition "Identifier of an entry from the ChEBI database." ; + oboInOwl:hasExactSynonym "ChEBI IDs", + "ChEBI identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2894 . + +:data_1175 a owl:Class ; + rdfs:label "BioPax concept ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a concept from the BioPax ontology." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1087, + :data_2091 . + +:data_1177 a owl:Class ; + rdfs:label "MeSH concept ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a concept from the MeSH vocabulary." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1087, + :data_2091 . + +:data_1178 a owl:Class ; + rdfs:label "HGNC concept ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a concept from the HGNC controlled vocabulary." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1087, + :data_2091 . + +:data_1179 a owl:Class ; + rdfs:label "NCBI taxonomy ID" ; + :created_in "beta12orEarlier" ; + :example "9662|3483|182682" ; + :regex "[1-9][0-9]{0,8}" ; + oboInOwl:hasDefinition "A stable unique identifier for each taxon (for a species, a family, an order, or any other group in the NCBI taxonomy database." ; + oboInOwl:hasExactSynonym "NCBI tax ID", + "NCBI taxonomy identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1087, + :data_2091, + :data_2908 . + +:data_1180 a owl:Class ; + rdfs:label "Plant Ontology concept ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a concept from the Plant Ontology (PO)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1087, + :data_2091 . + +:data_1181 a owl:Class ; + rdfs:label "UMLS concept ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a concept from the UMLS vocabulary." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1087, + :data_2091 . + +:data_1182 a owl:Class ; + rdfs:label "FMA concept ID" ; + :created_in "beta12orEarlier" ; + :regex "FMA:[0-9]+" ; + oboInOwl:hasDefinition "An identifier of a concept from Foundational Model of Anatomy." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "Classifies anatomical entities according to their shared characteristics (genus) and distinguishing characteristics (differentia). Specifies the part-whole and spatial relationships of the entities, morphological transformation of the entities during prenatal development and the postnatal life cycle and principles, rules and definitions according to which classes and relationships in the other three components of FMA are represented." ; + rdfs:subClassOf :data_1087, + :data_2091 . + +:data_1183 a owl:Class ; + rdfs:label "EMAP concept ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a concept from the EMAP mouse ontology." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1087, + :data_2091 . + +:data_1184 a owl:Class ; + rdfs:label "ChEBI concept ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a concept from the ChEBI ontology." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1087, + :data_2091 . + +:data_1185 a owl:Class ; + rdfs:label "MGED concept ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a concept from the MGED ontology." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1087, + :data_2091 . + +:data_1186 a owl:Class ; + rdfs:label "myGrid concept ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a concept from the myGrid ontology." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "The ontology is provided as two components, the service ontology and the domain ontology. The domain ontology acts provides concepts for core bioinformatics data types and their relations. The service ontology describes the physical and operational features of web services." ; + rdfs:subClassOf :data_1087, + :data_2091 . + +:data_1187 a owl:Class ; + rdfs:label "PubMed ID" ; + :created_in "beta12orEarlier" ; + :example "4963447" ; + :regex "[1-9][0-9]{0,8}" ; + oboInOwl:hasDefinition "PubMed unique identifier of an article." ; + oboInOwl:hasExactSynonym "PMID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1088, + :data_2091 . + +:data_1188 a owl:Class ; + rdfs:label "DOI" ; + :created_in "beta12orEarlier" ; + :regex "(doi\\:)?[0-9]{2}\\.[0-9]{4}/.*" ; + oboInOwl:hasDefinition "Digital Object Identifier (DOI) of a published article." ; + oboInOwl:hasExactSynonym "Digital Object Identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1088, + :data_2091 . + +:data_1189 a owl:Class ; + rdfs:label "Medline UI" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Medline UI (unique identifier) of an article." ; + oboInOwl:hasExactSynonym "Medline unique identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "The use of Medline UI has been replaced by the PubMed unique identifier." ; + rdfs:subClassOf :data_1088, + :data_2091 . + +:data_1191 a owl:Class ; + rdfs:label "Tool name (signature)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The unique name of a signature (sequence classifier) method." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "Signature methods from http://www.ebi.ac.uk/Tools/InterProScan/help.html#results include BlastProDom, FPrintScan, HMMPIR, HMMPfam, HMMSmart, HMMTigr, ProfileScan, ScanRegExp, SuperFamily and HAMAP." ; + rdfs:subClassOf :data_1190 . + +:data_1192 a owl:Class ; + rdfs:label "Tool name (BLAST)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a BLAST tool." ; + oboInOwl:hasExactSynonym "BLAST name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "This include 'blastn', 'blastp', 'blastx', 'tblastn' and 'tblastx'." ; + rdfs:subClassOf :data_1190 . + +:data_1193 a owl:Class ; + rdfs:label "Tool name (FASTA)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a FASTA tool." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "This includes 'fasta3', 'fastx3', 'fasty3', 'fastf3', 'fasts3' and 'ssearch'." ; + rdfs:subClassOf :data_1190 . + +:data_1194 a owl:Class ; + rdfs:label "Tool name (EMBOSS)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of an EMBOSS application." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1190 . + +:data_1195 a owl:Class ; + rdfs:label "Tool name (EMBASSY package)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of an EMBASSY package." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1190 . + +:data_1201 a owl:Class ; + rdfs:label "QSAR descriptor (constitutional)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A QSAR constitutional descriptor." ; + oboInOwl:hasExactSynonym "QSAR constitutional descriptor" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0847 . + +:data_1202 a owl:Class ; + rdfs:label "QSAR descriptor (electronic)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A QSAR electronic descriptor." ; + oboInOwl:hasExactSynonym "QSAR electronic descriptor" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0847 . + +:data_1203 a owl:Class ; + rdfs:label "QSAR descriptor (geometrical)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A QSAR geometrical descriptor." ; + oboInOwl:hasExactSynonym "QSAR geometrical descriptor" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0847 . + +:data_1204 a owl:Class ; + rdfs:label "QSAR descriptor (topological)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A QSAR topological descriptor." ; + oboInOwl:hasExactSynonym "QSAR topological descriptor" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0847 . + +:data_1205 a owl:Class ; + rdfs:label "QSAR descriptor (molecular)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A QSAR molecular descriptor." ; + oboInOwl:hasExactSynonym "QSAR molecular descriptor" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0847 . + +:data_1236 a owl:Class ; + rdfs:label "Psiblast checkpoint file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0850 ; + oboInOwl:hasDefinition "A file of intermediate results from a PSIBLAST search that is used for priming the search in the next PSIBLAST iteration." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A Psiblast checkpoint file uses ASN.1 Binary Format and usually has the extension '.asn'." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1237 a owl:Class ; + rdfs:label "HMMER synthetic sequences set" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0850 ; + oboInOwl:hasDefinition "Sequences generated by HMMER package in FASTA-style format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1241 a owl:Class ; + rdfs:label "vectorstrip cloning vector definition file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0850 ; + oboInOwl:hasDefinition "File of sequence vectors used by EMBOSS vectorstrip application, or any file in same format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1242 a owl:Class ; + rdfs:label "Primer3 internal oligo mishybridizing library" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0850 ; + oboInOwl:hasDefinition "A library of nucleotide sequences to avoid during hybridisation events. Hybridisation of the internal oligo to sequences in this library is avoided, rather than priming from them. The file is in a restricted FASTA format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1243 a owl:Class ; + rdfs:label "Primer3 mispriming library file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0850 ; + oboInOwl:hasDefinition "A nucleotide sequence library of sequences to avoid during amplification (for example repetitive sequences, or possibly the sequences of genes in a gene family that should not be amplified. The file must is in a restricted FASTA format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1244 a owl:Class ; + rdfs:label "primersearch primer pairs sequence record" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0850 ; + oboInOwl:hasDefinition "File of one or more pairs of primer sequences, as used by EMBOSS primersearch application." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1245 a owl:Class ; + rdfs:label "Sequence cluster (protein)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A cluster of protein sequences." ; + oboInOwl:hasExactSynonym "Protein sequence cluster" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The sequences are typically related, for example a family of sequences." ; + rdfs:subClassOf :data_1233, + :data_1235 . + +:data_1250 a owl:Class ; + rdfs:label "Word size" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1249 ; + oboInOwl:hasDefinition "Size of a sequence word." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Word size is used for example in word-based sequence database search methods." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1251 a owl:Class ; + rdfs:label "Window size" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1249 ; + oboInOwl:hasDefinition "Size of a sequence window." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A window is a region of fixed size but not fixed position over a molecular sequence. It is typically moved (computationally) over a sequence during scoring." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1252 a owl:Class ; + rdfs:label "Sequence length range" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1249 ; + oboInOwl:hasDefinition "Specification of range(s) of length of sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1253 a owl:Class ; + rdfs:label "Sequence information report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Report on basic information about a molecular sequence such as name, accession number, type (nucleic or protein), length, description etc." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2955 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1256 a owl:Class ; + rdfs:label "Sequence features (comparative)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1255 ; + oboInOwl:hasDefinition "Comparative data on sequence features such as statistics, intersections (and data on intersections), differences etc." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1257 a owl:Class ; + rdfs:label "Sequence property (protein)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0897 ; + oboInOwl:hasDefinition "A report of general sequence properties derived from protein sequence data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1258 a owl:Class ; + rdfs:label "Sequence property (nucleic acid)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0912 ; + oboInOwl:hasDefinition "A report of general sequence properties derived from nucleotide sequence data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1262 a owl:Class ; + rdfs:label "Peptide molecular weight hits" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A report on peptide fragments of certain molecular weight(s) in one or more protein sequences." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1233 . + +:data_1264 a owl:Class ; + rdfs:label "Sequence composition table" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1261 ; + oboInOwl:hasDefinition "A table of character or word composition / frequency of a molecular sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1265 a owl:Class ; + rdfs:label "Base frequencies table" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A table of base frequencies of a nucleotide sequence." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1261, + :data_2082 . + +:data_1267 a owl:Class ; + rdfs:label "Amino acid frequencies table" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A table of amino acid frequencies of a protein sequence." ; + oboInOwl:hasExactSynonym "Sequence composition (amino acid frequencies)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1261, + :data_2082 . + +:data_1269 a owl:Class ; + rdfs:label "DAS sequence feature annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1978 ; + oboInOwl:hasDefinition "Annotation of a molecular sequence in DAS format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1270 a owl:Class ; + rdfs:label "Feature table" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Annotation of positional sequence features, organised into a standard feature table." ; + oboInOwl:hasExactSynonym "Sequence feature table" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1255 . + +:data_1281 a owl:Class ; + rdfs:label "Sequence signature map" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Image of a sequence with matches to signatures, motifs or profiles." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2969 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1284 a owl:Class ; + rdfs:label "DNA transduction map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A gene map showing distances between loci based on relative cotransduction frequencies." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1278 . + +:data_1285 a owl:Class ; + rdfs:label "Gene map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Sequence map of a single gene annotated with genetic features such as introns, exons, untranslated regions, polyA signals, promoters, enhancers and (possibly) mutations defining alleles of a gene." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1279 . + +:data_1286 a owl:Class ; + rdfs:label "Plasmid map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Sequence map of a plasmid (circular DNA)." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1279 . + +:data_1288 a owl:Class ; + rdfs:label "Genome map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Sequence map of a whole genome." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1279 . + +:data_1290 a owl:Class ; + rdfs:label "InterPro compact match image" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Image showing matches between protein sequence(s) and InterPro Entries." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2969 ; + rdfs:comment "The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. Each protein is represented as a scaled horizontal line with colored bars indicating the position of the matches." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1291 a owl:Class ; + rdfs:label "InterPro detailed match image" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Image showing detailed information on matches between protein sequence(s) and InterPro Entries." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2969 ; + rdfs:comment "The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1292 a owl:Class ; + rdfs:label "InterPro architecture image" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Image showing the architecture of InterPro domains in a protein sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2969 ; + rdfs:comment "The sequence(s) might be screened against InterPro, or be the sequences from the InterPro entry itself. Domain architecture is shown as a series of non-overlapping domains in the protein." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1293 a owl:Class ; + rdfs:label "SMART protein schematic" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2969 ; + oboInOwl:hasDefinition "SMART protein schematic in PNG format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1294 a owl:Class ; + rdfs:label "GlobPlot domain image" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Images based on GlobPlot prediction of intrinsic disordered regions and globular domains in protein sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2969 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1298 a owl:Class ; + rdfs:label "Sequence motif matches" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0858 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1299 a owl:Class ; + rdfs:label "Sequence features (repeats)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1255 ; + oboInOwl:hasDefinition "Location of short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The report might include derived data map such as classification, annotation, organisation, periodicity etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1300 a owl:Class ; + rdfs:label "Gene and transcript structure (report)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0916 ; + oboInOwl:hasDefinition "A report on predicted or actual gene structure, regions which make an RNA product and features such as promoters, coding regions, splice sites etc." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1301 a owl:Class ; + rdfs:label "Mobile genetic elements" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "regions of a nucleic acid sequence containing mobile genetic elements." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1276 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1303 a owl:Class ; + rdfs:label "Nucleic acid features (quadruplexes)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3128 ; + oboInOwl:hasDefinition "A report on quadruplex-forming motifs in a nucleotide sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1306 a owl:Class ; + rdfs:label "Nucleosome exclusion sequences" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Report on nucleosome formation potential or exclusion sequence(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1276 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1309 a owl:Class ; + rdfs:label "Gene features (exonic splicing enhancer)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A report on exonic splicing enhancers (ESE) in an exon." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1276 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1310 a owl:Class ; + rdfs:label "Nucleic acid features (microRNA)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1276 ; + oboInOwl:hasDefinition "A report on microRNA sequence (miRNA) or precursor, microRNA targets, miRNA binding sites in an RNA sequence etc." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1313 a owl:Class ; + rdfs:label "Coding region" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1276 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1314 a owl:Class ; + rdfs:label "Gene features (SECIS element)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0916 ; + oboInOwl:hasDefinition "A report on selenocysteine insertion sequence (SECIS) element in a DNA sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1315 a owl:Class ; + rdfs:label "Transcription factor binding sites" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "transcription factor binding sites (TFBS) in a DNA sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1276 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1321 a owl:Class ; + rdfs:label "Protein features (sites)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1277 ; + oboInOwl:hasDefinition "A report on predicted or known key residue positions (sites) in a protein sequence, such as binding or functional sites." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Use this concept for collections of specific sites which are not necessarily contiguous, rather than contiguous stretches of amino acids." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1322 a owl:Class ; + rdfs:label "Protein features report (signal peptides)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "signal peptides or signal peptide cleavage sites in protein sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1323 a owl:Class ; + rdfs:label "Protein features report (cleavage sites)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "cleavage sites (for a proteolytic enzyme or agent) in a protein sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1324 a owl:Class ; + rdfs:label "Protein features (post-translation modifications)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "post-translation modifications in a protein sequence, typically describing the specific sites involved." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1325 a owl:Class ; + rdfs:label "Protein features report (active sites)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "catalytic residues (active site) of an enzyme." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1326 a owl:Class ; + rdfs:label "Protein features report (binding sites)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1327 a owl:Class ; + rdfs:label "Protein features (epitopes)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A report on antigenic determinant sites (epitopes) in proteins, from sequence and / or structural data." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:comment "Epitope mapping is commonly done during vaccine design." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1328 a owl:Class ; + rdfs:label "Protein features report (nucleic acid binding sites)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "RNA and DNA-binding proteins and binding sites in protein sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1329 a owl:Class ; + rdfs:label "MHC Class I epitopes report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1277 ; + oboInOwl:hasDefinition "A report on epitopes that bind to MHC class I molecules." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1330 a owl:Class ; + rdfs:label "MHC Class II epitopes report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1277 ; + oboInOwl:hasDefinition "A report on predicted epitopes that bind to MHC class II molecules." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1331 a owl:Class ; + rdfs:label "Protein features (PEST sites)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A report or plot of PEST sites in a protein sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:comment "'PEST' motifs target proteins for proteolytic degradation and reduce the half-lives of proteins dramatically." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1338 a owl:Class ; + rdfs:label "Sequence database hits scores list" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0857 ; + oboInOwl:hasDefinition "Scores from a sequence database search (for example a BLAST search)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1339 a owl:Class ; + rdfs:label "Sequence database hits alignments list" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0857 ; + oboInOwl:hasDefinition "Alignments from a sequence database search (for example a BLAST search)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1340 a owl:Class ; + rdfs:label "Sequence database hits evaluation data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0857 ; + oboInOwl:hasDefinition "A report on the evaluation of the significance of sequence similarity scores from a sequence database search (for example a BLAST search)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1344 a owl:Class ; + rdfs:label "MEME motif alphabet" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0950 ; + oboInOwl:hasDefinition "Alphabet for the motifs (patterns) that MEME will search for." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1345 a owl:Class ; + rdfs:label "MEME background frequencies file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0950 ; + oboInOwl:hasDefinition "MEME background frequencies file." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1346 a owl:Class ; + rdfs:label "MEME motifs directive file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0950 ; + oboInOwl:hasDefinition "File of directives for ordering and spacing of MEME motifs." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1348 a owl:Class ; + rdfs:label "HMM emission and transition counts" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3354, + :data_3355 ; + oboInOwl:hasDefinition "Emission and transition counts of a hidden Markov model, generated once HMM has been determined, for example after residues/gaps have been assigned to match, delete and insert states." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1352 a owl:Class ; + rdfs:label "Regular expression" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Regular expression pattern." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:data_1358 a owl:Class ; + rdfs:label "Prosite nucleotide pattern" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1353 ; + oboInOwl:hasDefinition "A nucleotide regular expression pattern from the Prosite database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1359 a owl:Class ; + rdfs:label "Prosite protein pattern" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1353 ; + oboInOwl:hasDefinition "A protein regular expression pattern from the Prosite database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1361 a owl:Class ; + rdfs:label "Position frequency matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A profile (typically representing a sequence alignment) that is a simple matrix of nucleotide (or amino acid) counts per position." ; + oboInOwl:hasExactSynonym "PFM" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2854 . + +:data_1362 a owl:Class ; + rdfs:label "Position weight matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A profile (typically representing a sequence alignment) that is weighted matrix of nucleotide (or amino acid) counts per position." ; + oboInOwl:hasExactSynonym "PWM" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Contributions of individual sequences to the matrix might be uneven (weighted)." ; + rdfs:subClassOf :data_2854 . + +:data_1363 a owl:Class ; + rdfs:label "Information content matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A profile (typically representing a sequence alignment) derived from a matrix of nucleotide (or amino acid) counts per position that reflects information content at each position." ; + oboInOwl:hasExactSynonym "ICM" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2854 . + +:data_1365 a owl:Class ; + rdfs:label "Fingerprint" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "One or more fingerprints (sequence classifiers) as used in the PRINTS database." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2854 . + +:data_1368 a owl:Class ; + rdfs:label "Domainatrix signature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1354 ; + oboInOwl:hasDefinition "A protein signature of the type used in the EMBASSY Signature package." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1371 a owl:Class ; + rdfs:label "HMMER NULL hidden Markov model" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1364 ; + oboInOwl:hasDefinition "NULL hidden Markov model representation used by the HMMER package." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1372 a owl:Class ; + rdfs:label "Protein family signature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1355 ; + oboInOwl:hasDefinition "A protein family signature (sequence classifier) from the InterPro database." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Protein family signatures cover all domains in the matching proteins and span >80% of the protein length and with no adjacent protein domain signatures or protein region signatures." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1373 a owl:Class ; + rdfs:label "Protein domain signature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1355 ; + oboInOwl:hasDefinition "A protein domain signature (sequence classifier) from the InterPro database." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Protein domain signatures identify structural or functional domains or other units with defined boundaries." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1374 a owl:Class ; + rdfs:label "Protein region signature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1355 ; + oboInOwl:hasDefinition "A protein region signature (sequence classifier) from the InterPro database." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A protein region signature defines a region which cannot be described as a protein family or domain signature." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1375 a owl:Class ; + rdfs:label "Protein repeat signature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1355 ; + oboInOwl:hasDefinition "A protein repeat signature (sequence classifier) from the InterPro database." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A protein repeat signature is a repeated protein motif, that is not in single copy expected to independently fold into a globular domain." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1376 a owl:Class ; + rdfs:label "Protein site signature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1355 ; + oboInOwl:hasDefinition "A protein site signature (sequence classifier) from the InterPro database." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A protein site signature is a classifier for a specific site in a protein." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1377 a owl:Class ; + rdfs:label "Protein conserved site signature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2071 ; + oboInOwl:hasDefinition "A protein conserved site signature (sequence classifier) from the InterPro database." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A protein conserved site signature is any short sequence pattern that may contain one or more unique residues and is cannot be described as a active site, binding site or post-translational modification." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1378 a owl:Class ; + rdfs:label "Protein active site signature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2071 ; + oboInOwl:hasDefinition "A protein active site signature (sequence classifier) from the InterPro database." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A protein active site signature corresponds to an enzyme catalytic pocket. An active site typically includes non-contiguous residues, therefore multiple signatures may be required to describe an active site. ; residues involved in enzymatic reactions for which mutational data is typically available." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1379 a owl:Class ; + rdfs:label "Protein binding site signature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2071 ; + oboInOwl:hasDefinition "A protein binding site signature (sequence classifier) from the InterPro database." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A protein binding site signature corresponds to a site that reversibly binds chemical compounds, which are not themselves substrates of the enzymatic reaction. This includes enzyme cofactors and residues involved in electron transport or protein structure modification." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1380 a owl:Class ; + rdfs:label "Protein post-translational modification signature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2071 ; + oboInOwl:hasDefinition "A protein post-translational modification signature (sequence classifier) from the InterPro database." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A protein post-translational modification signature corresponds to sites that undergo modification of the primary structure, typically to activate or de-activate a function. For example, methylation, sumoylation, glycosylation etc. The modification might be permanent or reversible." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1382 a owl:Class ; + rdfs:label "Sequence alignment (multiple)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0863 ; + oboInOwl:hasDefinition "Alignment of more than two molecular sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1386 a owl:Class ; + rdfs:label "Sequence alignment (nucleic acid pair)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1381, + :data_1383 ; + oboInOwl:hasDefinition "Alignment of exactly two nucleotide sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1387 a owl:Class ; + rdfs:label "Sequence alignment (protein pair)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1381, + :data_1384 ; + oboInOwl:hasDefinition "Alignment of exactly two protein sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1388 a owl:Class ; + rdfs:label "Hybrid sequence alignment (pair)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1385 ; + oboInOwl:hasDefinition "Alignment of exactly two molecular sequences of different types." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1389 a owl:Class ; + rdfs:label "Multiple nucleotide sequence alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0863 ; + oboInOwl:hasDefinition "Alignment of more than two nucleotide sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1390 a owl:Class ; + rdfs:label "Multiple protein sequence alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0863 ; + oboInOwl:hasDefinition "Alignment of more than two protein sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1395 a owl:Class ; + rdfs:label "Score end gaps control" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2534 ; + oboInOwl:hasDefinition "Whether end gaps are scored or not." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1396 a owl:Class ; + rdfs:label "Aligned sequence order" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2534 ; + oboInOwl:hasDefinition "Controls the order of sequences in an output sequence alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1400 a owl:Class ; + rdfs:label "Terminal gap penalty" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1410, + :data_1411 ; + oboInOwl:hasDefinition "A penalty for gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1401 a owl:Class ; + rdfs:label "Match reward score" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The score for a 'match' used in various sequence database search applications with simple scoring schemes." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1394 . + +:data_1402 a owl:Class ; + rdfs:label "Mismatch penalty score" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The score (penalty) for a 'mismatch' used in various alignment and sequence database search applications with simple scoring schemes." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1394 . + +:data_1403 a owl:Class ; + rdfs:label "Drop off score" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "This is the threshold drop in score at which extension of word alignment is halted." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1394 . + +:data_1404 a owl:Class ; + rdfs:label "Gap opening penalty (integer)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1397 ; + oboInOwl:hasDefinition "A simple floating point number defining the penalty for opening a gap in an alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1405 a owl:Class ; + rdfs:label "Gap opening penalty (float)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1397 ; + oboInOwl:hasDefinition "A simple floating point number defining the penalty for opening a gap in an alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1406 a owl:Class ; + rdfs:label "Gap extension penalty (integer)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1398 ; + oboInOwl:hasDefinition "A simple floating point number defining the penalty for extending a gap in an alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1407 a owl:Class ; + rdfs:label "Gap extension penalty (float)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1398 ; + oboInOwl:hasDefinition "A simple floating point number defining the penalty for extending a gap in an alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1408 a owl:Class ; + rdfs:label "Gap separation penalty (integer)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1399 ; + oboInOwl:hasDefinition "A simple floating point number defining the penalty for gaps that are close together in an alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1409 a owl:Class ; + rdfs:label "Gap separation penalty (float)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1399 ; + oboInOwl:hasDefinition "A simple floating point number defining the penalty for gaps that are close together in an alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1412 a owl:Class ; + rdfs:label "Sequence identity" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Sequence identity is the number (%) of matches (identical characters) in positions from an alignment of two molecular sequences." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0865 . + +:data_1414 a owl:Class ; + rdfs:label "Sequence alignment metadata (quality report)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0867 ; + oboInOwl:hasDefinition "Data on molecular sequence alignment quality (estimated accuracy)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1415 a owl:Class ; + rdfs:label "Sequence alignment report (site conservation)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2161 ; + oboInOwl:hasDefinition "Data on character conservation in a molecular sequence alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. Use this concept for calculated substitution rates, relative site variability, data on sites with biased properties, highly conserved or very poorly conserved sites, regions, blocks etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1416 a owl:Class ; + rdfs:label "Sequence alignment report (site correlation)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0867 ; + oboInOwl:hasDefinition "Data on correlations between sites in a molecular sequence alignment, typically to identify possible covarying positions and predict contacts or structural constraints in protein structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1417 a owl:Class ; + rdfs:label "Sequence-profile alignment (Domainatrix signature)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0858 ; + oboInOwl:hasDefinition "Alignment of molecular sequences to a Domainatrix signature (representing a sequence alignment)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1418 a owl:Class ; + rdfs:label "Sequence-profile alignment (HMM)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0858 ; + oboInOwl:hasDefinition "Alignment of molecular sequence(s) to a hidden Markov model(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1420 a owl:Class ; + rdfs:label "Sequence-profile alignment (fingerprint)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0858 ; + oboInOwl:hasDefinition "Alignment of molecular sequences to a protein fingerprint from the PRINTS database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1438 a owl:Class ; + rdfs:label "Phylogenetic report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2523 ; + oboInOwl:hasDefinition "A report of data concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used for example for reports on confidence, shape or stratigraphic (age) data derived from phylogenetic tree analysis." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1440 a owl:Class ; + rdfs:label "Phylogenetic tree report (tree shape)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2523 ; + oboInOwl:hasDefinition "Data about the shape of a phylogenetic tree." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1441 a owl:Class ; + rdfs:label "Phylogenetic tree report (tree evaluation)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2523 ; + oboInOwl:hasDefinition "Data on the confidence of a phylogenetic tree." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1443 a owl:Class ; + rdfs:label "Phylogenetic tree report (tree stratigraphic)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2523 ; + oboInOwl:hasDefinition "Molecular clock and stratigraphic (age) data derived from phylogenetic tree analysis." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1444 a owl:Class ; + rdfs:label "Phylogenetic character contrasts" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Independent contrasts for characters used in a phylogenetic tree, or covariances, regressions and correlations between characters for those contrasts." ; + oboInOwl:hasExactSynonym "Phylogenetic report (character contrasts)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2523 . + +:data_1446 a owl:Class ; + rdfs:label "Comparison matrix (integers)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0874 ; + oboInOwl:hasDefinition "Matrix of integer numbers for sequence comparison." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1447 a owl:Class ; + rdfs:label "Comparison matrix (floats)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0874 ; + oboInOwl:hasDefinition "Matrix of floating point numbers for sequence comparison." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1450 a owl:Class ; + rdfs:label "Nucleotide comparison matrix (integers)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1448 ; + oboInOwl:hasDefinition "Matrix of integer numbers for nucleotide comparison." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1451 a owl:Class ; + rdfs:label "Nucleotide comparison matrix (floats)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1448 ; + oboInOwl:hasDefinition "Matrix of floating point numbers for nucleotide comparison." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1452 a owl:Class ; + rdfs:label "Amino acid comparison matrix (integers)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1449 ; + oboInOwl:hasDefinition "Matrix of integer numbers for amino acid comparison." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1453 a owl:Class ; + rdfs:label "Amino acid comparison matrix (floats)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1449 ; + oboInOwl:hasDefinition "Matrix of floating point numbers for amino acid comparison." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1466 a owl:Class ; + rdfs:label "tRNA structure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for a tRNA tertiary (3D) structure, including tmRNA, snoRNAs etc." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1465 . + +:data_1469 a owl:Class ; + rdfs:label "Protein structure (all atoms)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1460 ; + oboInOwl:hasDefinition "3D coordinate and associated data for a protein tertiary (3D) structure (all atoms)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1470 a owl:Class ; + rdfs:label "C-alpha trace" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for a protein tertiary (3D) structure (typically C-alpha atoms only)." ; + oboInOwl:hasExactSynonym "Protein structure (C-alpha atoms)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "C-beta atoms from amino acid side-chains may be included." ; + rdfs:subClassOf :data_1460 . + +:data_1471 a owl:Class ; + rdfs:label "Protein chain (all atoms)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1467 ; + oboInOwl:hasDefinition "3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (all atoms)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1472 a owl:Class ; + rdfs:label "Protein chain (C-alpha atoms)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1467 ; + oboInOwl:hasDefinition "3D coordinate and associated data for a polypeptide chain tertiary (3D) structure (typically C-alpha atoms only)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "C-beta atoms from amino acid side-chains may be included." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1473 a owl:Class ; + rdfs:label "Protein domain (all atoms)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1468 ; + oboInOwl:hasDefinition "3D coordinate and associated data for a protein domain tertiary (3D) structure (all atoms)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1474 a owl:Class ; + rdfs:label "Protein domain (C-alpha atoms)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1468 ; + oboInOwl:hasDefinition "3D coordinate and associated data for a protein domain tertiary (3D) structure (typically C-alpha atoms only)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "C-beta atoms from amino acid side-chains may be included." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1480 a owl:Class ; + rdfs:label "Structure alignment (multiple)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0886 ; + oboInOwl:hasDefinition "Alignment (superimposition) of more than two molecular tertiary (3D) structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1483 a owl:Class ; + rdfs:label "Structure alignment (protein pair)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1479, + :data_1481 ; + oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1484 a owl:Class ; + rdfs:label "Multiple protein tertiary structure alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1481 ; + oboInOwl:hasDefinition "Alignment (superimposition) of more than two protein tertiary (3D) structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1485 a owl:Class ; + rdfs:label "Structure alignment (protein all atoms)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1481 ; + oboInOwl:hasDefinition "Alignment (superimposition) of protein tertiary (3D) structures (all atoms considered)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1486 a owl:Class ; + rdfs:label "Structure alignment (protein C-alpha atoms)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1481 ; + oboInOwl:hasDefinition "Alignment (superimposition) of protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "C-beta atoms from amino acid side-chains may be considered." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1487 a owl:Class ; + rdfs:label "Pairwise protein tertiary structure alignment (all atoms)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1481 ; + oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1488 a owl:Class ; + rdfs:label "Pairwise protein tertiary structure alignment (C-alpha atoms)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1481 ; + oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "C-beta atoms from amino acid side-chains may be included." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1489 a owl:Class ; + rdfs:label "Multiple protein tertiary structure alignment (all atoms)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1481 ; + oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (all atoms considered)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1490 a owl:Class ; + rdfs:label "Multiple protein tertiary structure alignment (C-alpha atoms)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1481 ; + oboInOwl:hasDefinition "Alignment (superimposition) of exactly two protein tertiary (3D) structures (typically C-alpha atoms only considered)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "C-beta atoms from amino acid side-chains may be included." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1491 a owl:Class ; + rdfs:label "Structure alignment (nucleic acid pair)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1479, + :data_1482 ; + oboInOwl:hasDefinition "Alignment (superimposition) of exactly two nucleic acid tertiary (3D) structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1492 a owl:Class ; + rdfs:label "Multiple nucleic acid tertiary structure alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1482 ; + oboInOwl:hasDefinition "Alignment (superimposition) of more than two nucleic acid tertiary (3D) structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1493 a owl:Class ; + rdfs:label "RNA structure alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alignment (superimposition) of RNA tertiary (3D) structures." ; + oboInOwl:hasExactSynonym "Structure alignment (RNA)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1482 . + +:data_1494 a owl:Class ; + rdfs:label "Structural transformation matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Matrix to transform (rotate/translate) 3D coordinates, typically the transformation necessary to superimpose two molecular structures." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2082 . + +:data_1495 a owl:Class ; + rdfs:label "DaliLite hit table" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0887 ; + oboInOwl:hasDefinition "DaliLite hit table of protein chain tertiary structure alignment data." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The significant and top-scoring hits for regions of the compared structures is shown. Data such as Z-Scores, number of aligned residues, root-mean-square deviation (RMSD) of atoms and sequence identity are given." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1496 a owl:Class ; + rdfs:label "Molecular similarity score" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0888 ; + oboInOwl:hasDefinition "A score reflecting structural similarities of two molecules." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1497 a owl:Class ; + rdfs:label "Root-mean-square deviation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Root-mean-square deviation (RMSD) is calculated to measure the average distance between superimposed macromolecular coordinates." ; + oboInOwl:hasExactSynonym "RMSD" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0888 . + +:data_1498 a owl:Class ; + rdfs:label "Tanimoto similarity score" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A measure of the similarity between two ligand fingerprints." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A ligand fingerprint is derived from ligand structural data from a Protein DataBank file. It reflects the elements or groups present or absent, covalent bonds and bond orders and the bonded environment in terms of SATIS codes and BLEEP atom types." ; + rdfs:subClassOf :data_0888 . + +:data_1502 a owl:Class ; + rdfs:label "Amino acid index (chemical classes)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Chemical classification (small, aliphatic, aromatic, polar, charged etc) of amino acids." ; + oboInOwl:hasExactSynonym "Chemical classes (amino acids)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1501 . + +:data_1503 a owl:Class ; + rdfs:label "Amino acid pair-wise contact potentials" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Statistical protein contact potentials." ; + oboInOwl:hasExactSynonym "Contact potentials (amino acid pair-wise)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2016 . + +:data_1505 a owl:Class ; + rdfs:label "Amino acid index (molecular weight)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Molecular weights of amino acids." ; + oboInOwl:hasExactSynonym "Molecular weight (amino acids)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1501 . + +:data_1506 a owl:Class ; + rdfs:label "Amino acid index (hydropathy)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Hydrophobic, hydrophilic or charge properties of amino acids." ; + oboInOwl:hasExactSynonym "Hydropathy (amino acids)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1501 . + +:data_1507 a owl:Class ; + rdfs:label "Amino acid index (White-Wimley data)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Experimental free energy values for the water-interface and water-octanol transitions for the amino acids." ; + oboInOwl:hasExactSynonym "White-Wimley data (amino acids)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1501 . + +:data_1508 a owl:Class ; + rdfs:label "Amino acid index (van der Waals radii)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Van der Waals radii of atoms for different amino acid residues." ; + oboInOwl:hasExactSynonym "van der Waals radii (amino acids)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1501 . + +:data_1509 a owl:Class ; + rdfs:label "Enzyme report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0896 ; + oboInOwl:hasDefinition "An informative report on a specific enzyme." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1517 a owl:Class ; + rdfs:label "Restriction enzyme report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0896 ; + oboInOwl:hasDefinition "An informative report on a specific restriction enzyme such as enzyme reference data." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This might include name of enzyme, organism, isoschizomers, methylation, source, suppliers, literature references, or data on restriction enzyme patterns such as name of enzyme, recognition site, length of pattern, number of cuts made by enzyme, details of blunt or sticky end cut etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1522 a owl:Class ; + rdfs:label "Protein sequence hydropathy plot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A protein sequence with annotation on hydrophobic or hydrophilic / charged regions, hydrophobicity plot etc." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation." ; + rdfs:subClassOf :data_2970 . + +:data_1523 a owl:Class ; + rdfs:label "Protein charge plot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A plot of the mean charge of the amino acids within a window of specified length as the window is moved along a protein sequence." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897 . + +:data_1529 a owl:Class ; + rdfs:label "Protein pKa value" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The pKa value of a protein." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897 . + +:data_1532 a owl:Class ; + rdfs:label "Protein optical density" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The optical density of a protein." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897 . + +:data_1533 a owl:Class ; + rdfs:label "Protein subcellular localisation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0896 ; + oboInOwl:hasDefinition "An informative report on protein subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or destination (exported / extracellular proteins)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1536 a owl:Class ; + rdfs:label "MHC peptide immunogenicity report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1534 ; + oboInOwl:hasDefinition "A report on the immunogenicity of MHC class I or class II binding peptides." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1540 a owl:Class ; + rdfs:label "Protein non-covalent interactions report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Data on inter-atomic or inter-residue contacts, distances and interactions in protein structure(s) or on the interactions of protein atoms or residues with non-protein groups." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0906 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1541 a owl:Class ; + rdfs:label "Protein flexibility or motion report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1537 ; + oboInOwl:hasDefinition "Informative report on flexibility or motion of a protein structure." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1543 a owl:Class ; + rdfs:label "Protein surface report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1537 ; + oboInOwl:hasDefinition "Data on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1550 a owl:Class ; + rdfs:label "Protein non-canonical interactions" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1537 ; + oboInOwl:hasDefinition "Non-canonical atomic interactions in protein structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1553 a owl:Class ; + rdfs:label "CATH node" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a node from the CATH database." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The report (for example http://www.cathdb.info/cathnode/1.10.10.10) includes CATH code (of the node and upper levels in the hierarchy), classification text (of appropriate levels in hierarchy), list of child nodes, representative domain and other relevant data and links." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1554 a owl:Class ; + rdfs:label "SCOP node" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a node from the SCOP database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1555 a owl:Class ; + rdfs:label "EMBASSY domain classification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "An EMBASSY domain classification file (DCF) of classification and other data for domains from SCOP or CATH, in EMBL-like format." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0907 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1556 a owl:Class ; + rdfs:label "CATH class" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a protein 'class' node from the CATH database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1557 a owl:Class ; + rdfs:label "CATH architecture" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a protein 'architecture' node from the CATH database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1558 a owl:Class ; + rdfs:label "CATH topology" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a protein 'topology' node from the CATH database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1559 a owl:Class ; + rdfs:label "CATH homologous superfamily" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a protein 'homologous superfamily' node from the CATH database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1560 a owl:Class ; + rdfs:label "CATH structurally similar group" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a protein 'structurally similar group' node from the CATH database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1561 a owl:Class ; + rdfs:label "CATH functional category" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a protein 'functional category' node from the CATH database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1564 a owl:Class ; + rdfs:label "Protein fold recognition report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1277 ; + oboInOwl:hasDefinition "A report on known protein structural domains or folds that are recognised (identified) in protein sequence(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Methods use some type of mapping between sequence and fold, for example secondary structure prediction and alignment, profile comparison, sequence properties, homologous sequence search, kernel machines etc. Domains and folds might be taken from SCOP or CATH." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1565 a owl:Class ; + rdfs:label "Protein-protein interaction report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "protein-protein interaction(s), including interactions between protein domains." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0906 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1567 a owl:Class ; + rdfs:label "Protein-nucleic acid interactions report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "protein-DNA/RNA interaction(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0906 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1585 a owl:Class ; + rdfs:label "Nucleic acid entropy" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Entropy of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2985 . + +:data_1586 a owl:Class ; + rdfs:label "Nucleic acid melting temperature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2139 ; + oboInOwl:hasDefinition "Melting temperature of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1587 a owl:Class ; + rdfs:label "Nucleic acid stitch profile" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.21" ; + :oldParent :data_1583 ; + oboInOwl:hasDefinition "Stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1583 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1588 a owl:Class ; + rdfs:label "DNA base pair stacking energies data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "DNA base pair stacking energies data." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2088 . + +:data_1589 a owl:Class ; + rdfs:label "DNA base pair twist angle data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "DNA base pair twist angle data." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2088 . + +:data_1590 a owl:Class ; + rdfs:label "DNA base trimer roll angles data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "DNA base trimer roll angles data." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2088 . + +:data_1591 a owl:Class ; + rdfs:label "Vienna RNA parameters" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "RNA parameters used by the Vienna package." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1592 a owl:Class ; + rdfs:label "Vienna RNA structure constraints" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "Structure constraints used by the Vienna package." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1593 a owl:Class ; + rdfs:label "Vienna RNA concentration data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "RNA concentration data used by the Vienna package." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1594 a owl:Class ; + rdfs:label "Vienna RNA calculated energy" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1584 ; + oboInOwl:hasDefinition "RNA calculated energy data generated by the Vienna package." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1595 a owl:Class ; + rdfs:label "Base pairing probability matrix dotplot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Dotplot of RNA base pairing probability matrix." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Such as generated by the Vienna package." ; + rdfs:subClassOf :data_2088, + :data_2884 . + +:data_1599 a owl:Class ; + rdfs:label "Codon adaptation index" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2865 ; + oboInOwl:hasDefinition "A simple measure of synonymous codon usage bias often used to predict gene expression levels." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1600 a owl:Class ; + rdfs:label "Codon usage bias plot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A plot of the synonymous codon usage calculated for windows over a nucleotide sequence." ; + oboInOwl:hasExactSynonym "Synonymous codon usage statistic plot" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0914 . + +:data_1601 a owl:Class ; + rdfs:label "Nc statistic" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2865 ; + oboInOwl:hasDefinition "The effective number of codons used in a gene sequence. This reflects how far codon usage of a gene departs from equal usage of synonymous codons." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1621 a owl:Class ; + rdfs:label "Pharmacogenomic test report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about the influence of genotype on drug response." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The report might correlate gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity." ; + rdfs:subClassOf :data_0920 . + +:data_1634 a owl:Class ; + rdfs:label "Linkage disequilibrium (report)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A report on linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0927 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1642 a owl:Class ; + rdfs:label "Affymetrix probe sets library file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2717 ; + oboInOwl:hasDefinition "Affymetrix library file of information about which probes belong to which probe set." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1643 a owl:Class ; + rdfs:label "Affymetrix probe sets information library file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2717 ; + oboInOwl:hasDefinition "Affymetrix library file of information about the probe sets such as the gene name with which the probe set is associated." ; + oboInOwl:hasRelatedSynonym "GIN file" ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1646 a owl:Class ; + rdfs:label "Molecular weights standard fingerprint" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Standard protonated molecular masses from trypsin (modified porcine trypsin, Promega) and keratin peptides, used in EMBOSS." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0944 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1656 a owl:Class ; + rdfs:label "Metabolic pathway report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A report typically including a map (diagram) of a metabolic pathway." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2984 ; + rdfs:comment "This includes carbohydrate, energy, lipid, nucleotide, amino acid, glycan, PK/NRP, cofactor/vitamin, secondary metabolite, xenobiotics etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1657 a owl:Class ; + rdfs:label "Genetic information processing pathway report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "genetic information processing pathways." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2984 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1658 a owl:Class ; + rdfs:label "Environmental information processing pathway report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "environmental information processing pathways." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2984 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1659 a owl:Class ; + rdfs:label "Signal transduction pathway report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A report typically including a map (diagram) of a signal transduction pathway." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2984 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1660 a owl:Class ; + rdfs:label "Cellular process pathways report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Topic concernning cellular process pathways." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2984 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1661 a owl:Class ; + rdfs:label "Disease pathway or network report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "disease pathways, typically of human disease." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0906 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1662 a owl:Class ; + rdfs:label "Drug structure relationship map" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.21" ; + :oldParent :data_1696 ; + oboInOwl:hasDefinition "A report typically including a map (diagram) of drug structure relationships." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1696 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1663 a owl:Class ; + rdfs:label "Protein interaction networks" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2600 ; + oboInOwl:hasDefinition "networks of protein interactions." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1664 a owl:Class ; + rdfs:label "MIRIAM datatype" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1883 ; + oboInOwl:hasDefinition "An entry (data type) from the Minimal Information Requested in the Annotation of Biochemical Models (MIRIAM) database of data resources." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A MIRIAM entry describes a MIRIAM data type including the official name, synonyms, root URI, identifier pattern (regular expression applied to a unique identifier of the data type) and documentation. Each data type can be associated with several resources. Each resource is a physical location of a service (typically a database) providing information on the elements of a data type. Several resources may exist for each data type, provided the same (mirrors) or different information. MIRIAM provides a stable and persistent reference to its data types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1667 a owl:Class ; + rdfs:label "E-value" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A simple floating point number defining the lower or upper limit of an expectation value (E-value)." ; + oboInOwl:hasExactSynonym "Expectation value" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "An expectation value (E-Value) is the expected number of observations which are at least as extreme as observations expected to occur by random chance. The E-value describes the number of hits with a given score or better that are expected to occur at random when searching a database of a particular size. It decreases exponentially with the score (S) of a hit. A low E value indicates a more significant score." ; + rdfs:subClassOf :data_0951 . + +:data_1668 a owl:Class ; + rdfs:label "Z-value" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The z-value is the number of standard deviations a data value is above or below a mean value." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A z-value might be specified as a threshold for reporting hits from database searches." ; + rdfs:subClassOf :data_0951 . + +:data_1670 a owl:Class ; + rdfs:label "Database version information" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0957 ; + oboInOwl:hasDefinition "Information on a database (or ontology) version, for example name, version number and release date." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1671 a owl:Class ; + rdfs:label "Tool version information" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0958 ; + oboInOwl:hasDefinition "Information on an application version, for example name, version number and release date." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1672 a owl:Class ; + rdfs:label "CATH version information" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2337 ; + oboInOwl:hasDefinition "Information on a version of the CATH database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1673 a owl:Class ; + rdfs:label "Swiss-Prot to PDB mapping" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0954 ; + oboInOwl:hasDefinition "Cross-mapping of Swiss-Prot codes to PDB identifiers." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1674 a owl:Class ; + rdfs:label "Sequence database cross-references" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2093 ; + oboInOwl:hasDefinition "Cross-references from a sequence record to other databases." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1675 a owl:Class ; + rdfs:label "Job status" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3106 ; + oboInOwl:hasDefinition "Metadata on the status of a submitted job." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Values for EBI services are 'DONE' (job has finished and the results can then be retrieved), 'ERROR' (the job failed or no results where found), 'NOT_FOUND' (the job id is no longer available; job results might be deleted, 'PENDING' (the job is in a queue waiting processing), 'RUNNING' (the job is currently being processed)." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1676 a owl:Class ; + rdfs:label "Job ID" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.0" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3106 ; + oboInOwl:hasDefinition "The (typically numeric) unique identifier of a submitted job." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1677 a owl:Class ; + rdfs:label "Job type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "A label (text token) describing the type of job, for example interactive or non-interactive." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1678 a owl:Class ; + rdfs:label "Tool log" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3106 ; + oboInOwl:hasDefinition "A report of tool-specific metadata on some analysis or process performed, for example a log of diagnostic or error messages." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1679 a owl:Class ; + rdfs:label "DaliLite log file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "DaliLite log file describing all the steps taken by a DaliLite alignment of two protein structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1680 a owl:Class ; + rdfs:label "STRIDE log file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "STRIDE log file." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1681 a owl:Class ; + rdfs:label "NACCESS log file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "NACCESS log file." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1682 a owl:Class ; + rdfs:label "EMBOSS wordfinder log file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "EMBOSS wordfinder log file." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1683 a owl:Class ; + rdfs:label "EMBOSS domainatrix log file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "EMBOSS (EMBASSY) domainatrix application log file." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1684 a owl:Class ; + rdfs:label "EMBOSS sites log file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "EMBOSS (EMBASSY) sites application log file." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1685 a owl:Class ; + rdfs:label "EMBOSS supermatcher error file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "EMBOSS (EMBASSY) supermatcher error file." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1686 a owl:Class ; + rdfs:label "EMBOSS megamerger log file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "EMBOSS megamerger log file." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1687 a owl:Class ; + rdfs:label "EMBOSS whichdb log file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "EMBOSS megamerger log file." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1688 a owl:Class ; + rdfs:label "EMBOSS vectorstrip log file" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "EMBOSS vectorstrip log file." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1689 a owl:Class ; + rdfs:label "Username" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A username on a computer system or a website." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2101 . + +:data_1690 a owl:Class ; + rdfs:label "Password" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A password on a computer system, or a website." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2101 . + +:data_1691 a owl:Class ; + rdfs:label "Email address" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:Email", + "Moby:EmailAddress" ; + oboInOwl:hasDefinition "A valid email address of an end-user." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2101 . + +:data_1692 a owl:Class ; + rdfs:label "Person name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a person." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2118 . + +:data_1693 a owl:Class ; + rdfs:label "Number of iterations" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "Number of iterations of an algorithm." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1694 a owl:Class ; + rdfs:label "Number of output entities" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "Number of entities (for example database hits, sequences, alignments etc) to write to an output file." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1695 a owl:Class ; + rdfs:label "Hit sort order" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "Controls the order of hits (reported matches) in an output file from a database search." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1707 a owl:Class ; + rdfs:label "Phylogenetic tree image" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An image (for viewing or printing) of a phylogenetic tree including (typically) a plot of rooted or unrooted phylogenies, cladograms, circular trees or phenograms and associated information." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "See also 'Phylogenetic tree'" ; + rdfs:subClassOf :data_2968 . + +:data_1708 a owl:Class ; + rdfs:label "RNA secondary structure image" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Image of RNA secondary structure, knots, pseudoknots etc." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2968 . + +:data_1711 a owl:Class ; + rdfs:label "Sequence alignment image" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Image of two or more aligned molecular sequences possibly annotated with alignment features." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2968 . + +:data_1715 a owl:Class ; + rdfs:label "BioPax term" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0966 ; + oboInOwl:hasDefinition "A term from the BioPax ontology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1716 a owl:Class ; + rdfs:label "GO" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0966 ; + oboInOwl:hasDefinition "A term definition from The Gene Ontology (GO)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1717 a owl:Class ; + rdfs:label "MeSH" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0966 ; + oboInOwl:hasDefinition "A term from the MeSH vocabulary." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1718 a owl:Class ; + rdfs:label "HGNC" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0966 ; + oboInOwl:hasDefinition "A term from the HGNC controlled vocabulary." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1719 a owl:Class ; + rdfs:label "NCBI taxonomy vocabulary" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0966 ; + oboInOwl:hasDefinition "A term from the NCBI taxonomy vocabulary." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1720 a owl:Class ; + rdfs:label "Plant ontology term" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0966 ; + oboInOwl:hasDefinition "A term from the Plant Ontology (PO)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1721 a owl:Class ; + rdfs:label "UMLS" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0966 ; + oboInOwl:hasDefinition "A term from the UMLS vocabulary." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1722 a owl:Class ; + rdfs:label "FMA" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0966 ; + oboInOwl:hasDefinition "A term from Foundational Model of Anatomy." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Classifies anatomical entities according to their shared characteristics (genus) and distinguishing characteristics (differentia). Specifies the part-whole and spatial relationships of the entities, morphological transformation of the entities during prenatal development and the postnatal life cycle and principles, rules and definitions according to which classes and relationships in the other three components of FMA are represented." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1723 a owl:Class ; + rdfs:label "EMAP" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0966 ; + oboInOwl:hasDefinition "A term from the EMAP mouse ontology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1724 a owl:Class ; + rdfs:label "ChEBI" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0966 ; + oboInOwl:hasDefinition "A term from the ChEBI ontology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1725 a owl:Class ; + rdfs:label "MGED" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0966 ; + oboInOwl:hasDefinition "A term from the MGED ontology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1726 a owl:Class ; + rdfs:label "myGrid" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0966 ; + oboInOwl:hasDefinition "A term from the myGrid ontology." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The ontology is provided as two components, the service ontology and the domain ontology. The domain ontology acts provides concepts for core bioinformatics data types and their relations. The service ontology describes the physical and operational features of web services." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1727 a owl:Class ; + rdfs:label "GO (biological process)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2858 ; + oboInOwl:hasDefinition "A term definition for a biological process from the Gene Ontology (GO)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Data Type is an enumerated string." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1728 a owl:Class ; + rdfs:label "GO (molecular function)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2858 ; + oboInOwl:hasDefinition "A term definition for a molecular function from the Gene Ontology (GO)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Data Type is an enumerated string." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1729 a owl:Class ; + rdfs:label "GO (cellular component)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2858 ; + oboInOwl:hasDefinition "A term definition for a cellular component from the Gene Ontology (GO)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Data Type is an enumerated string." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1730 a owl:Class ; + rdfs:label "Ontology relation type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0967 ; + oboInOwl:hasDefinition "A relation type defined in an ontology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1731 a owl:Class ; + rdfs:label "Ontology concept definition" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The definition of a concept from an ontology." ; + oboInOwl:hasExactSynonym "Ontology class definition" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0967 . + +:data_1732 a owl:Class ; + rdfs:label "Ontology concept comment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0967 ; + oboInOwl:hasDefinition "A comment on a concept from an ontology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1733 a owl:Class ; + rdfs:label "Ontology concept reference" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2093 ; + oboInOwl:hasDefinition "Reference for a concept from an ontology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1738 a owl:Class ; + rdfs:label "doc2loc document information" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0970 ; + oboInOwl:hasDefinition "Information on a published article provided by the doc2loc program." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The doc2loc output includes the url, format, type and availability code of a document for every service provider." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1742 a owl:Class ; + rdfs:label "PDB residue number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "PDBML:PDB_residue_no", + "WHATIF: pdb_number" ; + oboInOwl:hasDefinition "A residue identifier (a string) from a PDB file." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1016 . + +:data_1744 a owl:Class ; + rdfs:label "Atomic x coordinate" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.21" ; + :oldParent :data_1743 ; + oboInOwl:hasDefinition "Cartesian x coordinate of an atom (in a molecular structure)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1743 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1745 a owl:Class ; + rdfs:label "Atomic y coordinate" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.21" ; + :oldParent :data_1743 ; + oboInOwl:hasDefinition "Cartesian y coordinate of an atom (in a molecular structure)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1743 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1746 a owl:Class ; + rdfs:label "Atomic z coordinate" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.21" ; + :oldParent :data_1743 ; + oboInOwl:hasDefinition "Cartesian z coordinate of an atom (in a molecular structure)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1743 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1748 a owl:Class ; + rdfs:label "PDB atom name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "PDBML:pdbx_PDB_atom_name", + "WHATIF: PDBx_auth_atom_id", + "WHATIF: PDBx_type_symbol", + "WHATIF: alternate_atom", + "WHATIF: atom_type" ; + oboInOwl:hasDefinition "Identifier (a string) of a specific atom from a PDB file for a molecular structure." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1757 . + +:data_1755 a owl:Class ; + rdfs:label "Protein atom" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data on a single atom from a protein structure." ; + oboInOwl:hasExactSynonym "Atom data" ; + oboInOwl:hasRelatedSynonym "CHEBI:33250" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." ; + rdfs:subClassOf :data_1460 . + +:data_1756 a owl:Class ; + rdfs:label "Protein residue" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data on a single amino acid residue position in a protein structure." ; + oboInOwl:hasExactSynonym "Residue" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." ; + rdfs:subClassOf :data_1460 . + +:data_1758 a owl:Class ; + rdfs:label "PDB residue name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF: type" ; + oboInOwl:hasDefinition "Three-letter amino acid residue names as used in PDB files." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2564 . + +:data_1759 a owl:Class ; + rdfs:label "PDB model number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "PDBML:pdbx_PDB_model_num", + "WHATIF: model_number" ; + oboInOwl:hasDefinition "Identifier of a model structure from a PDB file." ; + oboInOwl:hasExactSynonym "Model number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_3035 . + +:data_1762 a owl:Class ; + rdfs:label "CATH domain report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Summary of domain classification information for a CATH domain." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The report (for example http://www.cathdb.info/domain/1cukA01) includes CATH codes for levels in the hierarchy for the domain, level descriptions and relevant data and links." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1764 a owl:Class ; + rdfs:label "CATH representative domain sequences (ATOM)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1235 ; + oboInOwl:hasDefinition "FASTA sequence database (based on ATOM records in PDB) for CATH domains (clustered at different levels of sequence identity)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1765 a owl:Class ; + rdfs:label "CATH representative domain sequences (COMBS)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1235 ; + oboInOwl:hasDefinition "FASTA sequence database (based on COMBS sequence data) for CATH domains (clustered at different levels of sequence identity)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1766 a owl:Class ; + rdfs:label "CATH domain sequences (ATOM)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0850 ; + oboInOwl:hasDefinition "FASTA sequence database for all CATH domains (based on PDB ATOM records)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1767 a owl:Class ; + rdfs:label "CATH domain sequences (COMBS)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0850 ; + oboInOwl:hasDefinition "FASTA sequence database for all CATH domains (based on COMBS sequence data)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1771 a owl:Class ; + rdfs:label "Sequence version" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Information on an molecular sequence version." ; + oboInOwl:hasExactSynonym "Sequence version information" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2534 . + +:data_1776 a owl:Class ; + rdfs:label "Protein report (function)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0896 ; + oboInOwl:hasDefinition "Report on general functional properties of specific protein(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "For properties that can be mapped to a sequence, use 'Sequence report' instead." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1783 a owl:Class ; + rdfs:label "Gene name (ASPGD)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Name of a gene from Aspergillus Genome Database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1784 a owl:Class ; + rdfs:label "Gene name (CGD)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Name of a gene from Candida Genome Database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1785 a owl:Class ; + rdfs:label "Gene name (dictyBase)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Name of a gene from dictyBase database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1786 a owl:Class ; + rdfs:label "Gene name (EcoGene primary)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Primary name of a gene from EcoGene Database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1787 a owl:Class ; + rdfs:label "Gene name (MaizeGDB)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Name of a gene from MaizeGDB (maize genes) database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1788 a owl:Class ; + rdfs:label "Gene name (SGD)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Name of a gene from Saccharomyces Genome Database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1789 a owl:Class ; + rdfs:label "Gene name (TGD)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Name of a gene from Tetrahymena Genome Database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1790 a owl:Class ; + rdfs:label "Gene name (CGSC)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Symbol of a gene from E.coli Genetic Stock Center." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1791 a owl:Class ; + rdfs:label "Gene name (HGNC)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Symbol of a gene approved by the HUGO Gene Nomenclature Committee." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1792 a owl:Class ; + rdfs:label "Gene name (MGD)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Symbol of a gene from the Mouse Genome Database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1793 a owl:Class ; + rdfs:label "Gene name (Bacillus subtilis)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Symbol of a gene from Bacillus subtilis Genome Sequence Project." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1794 a owl:Class ; + rdfs:label "Gene ID (PlasmoDB)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: ApiDB_PlasmoDB" ; + oboInOwl:hasDefinition "Identifier of a gene from PlasmoDB Plasmodium Genome Resource." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_1796 a owl:Class ; + rdfs:label "Gene ID (FlyBase)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: FB", + "http://www.geneontology.org/doc/GO.xrf_abbs: FlyBase" ; + oboInOwl:hasDefinition "Gene identifier from FlyBase database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_1797 a owl:Class ; + rdfs:label "Gene ID (GeneDB Glossina morsitans)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1035 ; + oboInOwl:hasDefinition "Gene identifier from Glossina morsitans GeneDB database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1798 a owl:Class ; + rdfs:label "Gene ID (GeneDB Leishmania major)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1035 ; + oboInOwl:hasDefinition "Gene identifier from Leishmania major GeneDB database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1799 a owl:Class ; + rdfs:label "Gene ID (GeneDB Plasmodium falciparum)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1035 ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Pfalciparum" ; + oboInOwl:hasDefinition "Gene identifier from Plasmodium falciparum GeneDB database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1800 a owl:Class ; + rdfs:label "Gene ID (GeneDB Schizosaccharomyces pombe)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1035 ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Spombe" ; + oboInOwl:hasDefinition "Gene identifier from Schizosaccharomyces pombe GeneDB database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1801 a owl:Class ; + rdfs:label "Gene ID (GeneDB Trypanosoma brucei)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1035 ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: GeneDB_Tbrucei" ; + oboInOwl:hasDefinition "Gene identifier from Trypanosoma brucei GeneDB database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1802 a owl:Class ; + rdfs:label "Gene ID (Gramene)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: GR_GENE", + "http://www.geneontology.org/doc/GO.xrf_abbs: GR_gene" ; + oboInOwl:hasDefinition "Gene identifier from Gramene database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_1803 a owl:Class ; + rdfs:label "Gene ID (Virginia microbial)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: PAMGO_VMD", + "http://www.geneontology.org/doc/GO.xrf_abbs: VMD" ; + oboInOwl:hasDefinition "Gene identifier from Virginia Bioinformatics Institute microbial database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_1804 a owl:Class ; + rdfs:label "Gene ID (SGN)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: SGN" ; + oboInOwl:hasDefinition "Gene identifier from Sol Genomics Network." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_1805 a owl:Class ; + rdfs:label "Gene ID (WormBase)" ; + :created_in "beta12orEarlier" ; + :regex "WBGene[0-9]{8}" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: WB", + "http://www.geneontology.org/doc/GO.xrf_abbs: WormBase" ; + oboInOwl:hasDefinition "Gene identifier used by WormBase database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2113, + :data_2295 . + +:data_1806 a owl:Class ; + rdfs:label "Gene synonym" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Any name (other than the recommended one) for a gene." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1807 a owl:Class ; + rdfs:label "ORF name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of an open reading frame attributed by a sequencing project." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099, + :data_2795 . + +:data_1852 a owl:Class ; + rdfs:label "Sequence assembly component" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0925 ; + oboInOwl:hasDefinition "A component of a larger sequence assembly." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1853 a owl:Class ; + rdfs:label "Chromosome annotation (aberration)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0919 ; + oboInOwl:hasDefinition "A report on a chromosome aberration such as abnormalities in chromosome structure." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1856 a owl:Class ; + rdfs:label "PDB insertion code" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "PDBML:pdbx_PDB_ins_code", + "WHATIF: insertion_code" ; + oboInOwl:hasDefinition "An insertion code (part of the residue number) for an amino acid residue from a PDB file." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1016 . + +:data_1857 a owl:Class ; + rdfs:label "Atomic occupancy" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF: PDBx_occupancy" ; + oboInOwl:hasDefinition "The fraction of an atom type present at a site in a molecular structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The sum of the occupancies of all the atom types at a site should not normally significantly exceed 1.0." ; + rdfs:subClassOf :data_1917 . + +:data_1858 a owl:Class ; + rdfs:label "Isotropic B factor" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF: PDBx_B_iso_or_equiv" ; + oboInOwl:hasDefinition "Isotropic B factor (atomic displacement parameter) for an atom from a PDB file." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1917 . + +:data_1859 a owl:Class ; + rdfs:label "Deletion map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A cytogenetic map showing chromosome banding patterns in mutant cell lines relative to the wild type." ; + oboInOwl:hasExactSynonym "Deletion-based cytogenetic map" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A cytogenetic map is built from a set of mutant cell lines with sub-chromosomal deletions and a reference wild-type line ('genome deletion panel'). The panel is used to map markers onto the genome by comparing mutant to wild-type banding patterns. Markers are linked (occur in the same deleted region) if they share the same banding pattern (presence or absence) as the deletion panel." ; + rdfs:subClassOf :data_1283 . + +:data_1860 a owl:Class ; + rdfs:label "QTL map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A genetic map which shows the approximate location of quantitative trait loci (QTL) between two or more markers." ; + oboInOwl:hasExactSynonym "Quantitative trait locus map" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1278 . + +:data_1864 a owl:Class ; + rdfs:label "Map set data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.21" ; + :oldParent :data_2019 ; + oboInOwl:hasDefinition "Data describing a set of multiple genetic or physical maps, typically sharing a common set of features which are mapped." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2019 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1865 a owl:Class ; + rdfs:label "Map feature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1255, + :data_1276, + :data_2019 ; + oboInOwl:hasDefinition "A feature which may mapped (positioned) on a genetic or other type of map." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Mappable features may be based on Gramene's notion of map features; see http://www.gramene.org/db/cmap/feature_type_info." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1866 a owl:Class ; + rdfs:label "Map type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "A designation of the type of map (genetic map, physical map, sequence map etc) or map set." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Map types may be based on Gramene's notion of a map type; see http://www.gramene.org/db/cmap/map_type_info." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1867 a owl:Class ; + rdfs:label "Protein fold name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a protein fold." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099 . + +:data_1872 a owl:Class ; + rdfs:label "Taxonomic classification" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:GCP_Taxon", + "Moby:TaxonName", + "Moby:TaxonScientificName", + "Moby:TaxonTCS", + "Moby:iANT_organism-xml" ; + oboInOwl:hasDefinition "The full name for a group of organisms, reflecting their biological classification and (usually) conforming to a standard nomenclature." ; + oboInOwl:hasExactSynonym "Taxonomic information", + "Taxonomic name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "Name components correspond to levels in a taxonomic hierarchy (e.g. 'Genus', 'Species', etc.) Meta information such as a reference where the name was defined and a date might be included." ; + rdfs:subClassOf :data_2909 . + +:data_1873 a owl:Class ; + rdfs:label "iHOP organism ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby_namespace:iHOPorganism" ; + oboInOwl:hasDefinition "A unique identifier for an organism used in the iHOP database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2908 . + +:data_1874 a owl:Class ; + rdfs:label "Genbank common name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Common name for an organism as used in the GenBank database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2909 . + +:data_1875 a owl:Class ; + rdfs:label "NCBI taxon" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a taxon from the NCBI taxonomy database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1868 . + +:data_1877 a owl:Class ; + rdfs:label "Synonym" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0968 ; + oboInOwl:hasDefinition "An alternative for a word." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1878 a owl:Class ; + rdfs:label "Misspelling" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0968 ; + oboInOwl:hasDefinition "A common misspelling of a word." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1879 a owl:Class ; + rdfs:label "Acronym" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0968 ; + oboInOwl:hasDefinition "An abbreviation of a phrase or word." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1880 a owl:Class ; + rdfs:label "Misnomer" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0968 ; + oboInOwl:hasDefinition "A term which is likely to be misleading of its meaning." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1882 a owl:Class ; + rdfs:label "DragonDB author identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier representing an author in the DragonDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1881 . + +:data_1884 a owl:Class ; + rdfs:label "UniProt keywords" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0582 ; + oboInOwl:hasDefinition "A controlled vocabulary for words and phrases that can appear in the keywords field (KW line) of entries from the UniProt database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1885 a owl:Class ; + rdfs:label "Gene ID (GeneFarm)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby_namespace:GENEFARM_GeneID" ; + oboInOwl:hasDefinition "Identifier of a gene from the GeneFarm database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_1886 a owl:Class ; + rdfs:label "Blattner number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby_namespace:Blattner_number" ; + oboInOwl:hasDefinition "The blattner identifier for a gene." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_1887 a owl:Class ; + rdfs:label "Gene ID (MIPS Maize)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2285 ; + oboInOwl:hasDbXref "Moby_namespace:MIPS_GE_Maize" ; + oboInOwl:hasDefinition "Identifier for genetic elements in MIPS Maize database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1888 a owl:Class ; + rdfs:label "Gene ID (MIPS Medicago)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2285 ; + oboInOwl:hasDbXref "Moby_namespace:MIPS_GE_Medicago" ; + oboInOwl:hasDefinition "Identifier for genetic elements in MIPS Medicago database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1889 a owl:Class ; + rdfs:label "Gene name (DragonDB)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "The name of an Antirrhinum Gene from the DragonDB database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1890 a owl:Class ; + rdfs:label "Gene name (Arabidopsis)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "A unique identifier for an Arabidopsis gene, which is an acronym or abbreviation of the gene name." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1891 a owl:Class ; + rdfs:label "iHOP symbol" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby_namespace:iHOPsymbol" ; + oboInOwl:hasDefinition "A unique identifier of a protein or gene used in the iHOP database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109, + :data_2295, + :data_2907 . + +:data_1892 a owl:Class ; + rdfs:label "Gene name (GeneFarm)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Name of a gene from the GeneFarm database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1895 a owl:Class ; + rdfs:label "Locus ID (AGI)" ; + :created_in "beta12orEarlier" ; + :regex "AT[1-5]G[0-9]{5}" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:AGI_LocusCode" ; + oboInOwl:hasDefinition "Locus identifier for Arabidopsis Genome Initiative (TAIR, TIGR and MIPS databases)." ; + oboInOwl:hasExactSynonym "AGI ID", + "AGI identifier", + "AGI locus code", + "Arabidopsis gene loci number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091 . + +:data_1896 a owl:Class ; + rdfs:label "Locus ID (ASPGD)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: ASPGD", + "http://www.geneontology.org/doc/GO.xrf_abbs: ASPGDID" ; + oboInOwl:hasDefinition "Identifier for loci from ASPGD (Aspergillus Genome Database)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091 . + +:data_1897 a owl:Class ; + rdfs:label "Locus ID (MGG)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: Broad_MGG" ; + oboInOwl:hasDefinition "Identifier for loci from Magnaporthe grisea Database at the Broad Institute." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091 . + +:data_1898 a owl:Class ; + rdfs:label "Locus ID (CGD)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: CGD", + "http://www.geneontology.org/doc/GO.xrf_abbs: CGDID" ; + oboInOwl:hasDefinition "Identifier for loci from CGD (Candida Genome Database)." ; + oboInOwl:hasExactSynonym "CGD locus identifier", + "CGDID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091 . + +:data_1899 a owl:Class ; + rdfs:label "Locus ID (CMR)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: JCVI_CMR", + "http://www.geneontology.org/doc/GO.xrf_abbs: TIGR_CMR" ; + oboInOwl:hasDefinition "Locus identifier for Comprehensive Microbial Resource at the J. Craig Venter Institute." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091 . + +:data_1900 a owl:Class ; + rdfs:label "NCBI locus tag" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby_namespace:LocusID", + "http://www.geneontology.org/doc/GO.xrf_abbs: NCBI_locus_tag" ; + oboInOwl:hasDefinition "Identifier for loci from NCBI database." ; + oboInOwl:hasExactSynonym "Locus ID (NCBI)" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091 . + +:data_1901 a owl:Class ; + rdfs:label "Locus ID (SGD)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: SGD", + "http://www.geneontology.org/doc/GO.xrf_abbs: SGDID" ; + oboInOwl:hasDefinition "Identifier for loci from SGD (Saccharomyces Genome Database)." ; + oboInOwl:hasExactSynonym "SGDID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091, + :data_2632 . + +:data_1902 a owl:Class ; + rdfs:label "Locus ID (MMP)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby_namespace:MMP_Locus" ; + oboInOwl:hasDefinition "Identifier of loci from Maize Mapping Project." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091 . + +:data_1903 a owl:Class ; + rdfs:label "Locus ID (DictyBase)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby_namespace:DDB_gene" ; + oboInOwl:hasDefinition "Identifier of locus from DictyBase (Dictyostelium discoideum)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091 . + +:data_1904 a owl:Class ; + rdfs:label "Locus ID (EntrezGene)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby_namespace:EntrezGene_EntrezGeneID", + "Moby_namespace:EntrezGene_ID" ; + oboInOwl:hasDefinition "Identifier of a locus from EntrezGene database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091 . + +:data_1905 a owl:Class ; + rdfs:label "Locus ID (MaizeGDB)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby_namespace:MaizeGDB_Locus" ; + oboInOwl:hasDefinition "Identifier of locus from MaizeGDB (Maize genome database)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091 . + +:data_1906 a owl:Class ; + rdfs:label "Quantitative trait locus" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2012 ; + oboInOwl:hasDbXref "Moby:SO_QTL" ; + oboInOwl:hasDefinition "A stretch of DNA that is closely linked to the genes underlying a quantitative trait (a phenotype that varies in degree and depends upon the interactions between multiple genes and their environment)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A QTL sometimes but does not necessarily correspond to a gene." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_1907 a owl:Class ; + rdfs:label "Gene ID (KOME)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby_namespace:GeneId" ; + oboInOwl:hasDefinition "Identifier of a gene from the KOME database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_1908 a owl:Class ; + rdfs:label "Locus ID (Tropgene)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:Tropgene_locus" ; + oboInOwl:hasDefinition "Identifier of a locus from the Tropgene database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091 . + +:data_2007 a owl:Class ; + rdfs:label "UniProt keyword" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby_namespace:SP_KW", + "http://www.geneontology.org/doc/GO.xrf_abbs: SP_KW" ; + oboInOwl:hasDefinition "A word or phrase that can appear in the keywords field (KW line) of entries from the UniProt database." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0968 . + +:data_2009 a owl:Class ; + rdfs:label "Ordered locus name" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1893 ; + oboInOwl:hasDefinition "A name for a genetic locus conforming to a scheme that names loci (such as predicted genes) depending on their position in a molecular sequence, for example a completely sequenced genome or chromosome." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2018 a owl:Class ; + rdfs:label "Annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "A human-readable collection of information which (typically) is generated or collated by hand and which describes a biological entity, phenomena or associated primary (e.g. sequence or structural) data, as distinct from the primary data itself and computer-generated reports derived from it." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2022 a owl:Class ; + rdfs:label "Vienna RNA structural data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1465 ; + oboInOwl:hasDefinition "Data used by the Vienna RNA analysis package." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2023 a owl:Class ; + rdfs:label "Sequence mask parameter" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2534 ; + oboInOwl:hasDefinition "Data used to replace (mask) characters in a molecular sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2025 a owl:Class ; + rdfs:label "Michaelis Menten plot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A plot giving an approximation of the kinetics of an enzyme-catalysed reaction, assuming simple kinetics (i.e. no intermediate or product inhibition, allostericity or cooperativity). It plots initial reaction rate to the substrate concentration (S) from which the maximum rate (vmax) is apparent." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2024 . + +:data_2026 a owl:Class ; + rdfs:label "Hanes Woolf plot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A plot based on the Michaelis Menten equation of enzyme kinetics plotting the ratio of the initial substrate concentration (S) against the reaction velocity (v)." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2024 . + +:data_2028 a owl:Class ; + rdfs:label "Experimental data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2531, + :data_3108 ; + oboInOwl:hasDefinition "Raw data from or annotation on laboratory experiments." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2041 a owl:Class ; + rdfs:label "Genome version information" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2711 ; + oboInOwl:hasDefinition "Information on a genome version." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2043 a owl:Class ; + rdfs:label "Sequence record lite" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A molecular sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0849 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2046 a owl:Class ; + rdfs:label "Nucleic acid sequence record (lite)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A nucleic acid sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0849 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2047 a owl:Class ; + rdfs:label "Protein sequence record (lite)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A protein sequence and minimal metadata, typically an identifier of the sequence and/or a comment." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0849 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2053 a owl:Class ; + rdfs:label "Structural data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0883, + :data_2085 ; + oboInOwl:hasDefinition "Data concerning molecular structural data." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2070 a owl:Class ; + rdfs:label "Sequence motif (nucleic acid)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A nucleotide sequence motif." ; + oboInOwl:hasExactSynonym "Nucleic acid sequence motif" ; + oboInOwl:hasNarrowSynonym "DNA sequence motif", + "RNA sequence motif" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1353 . + +:data_2079 a owl:Class ; + rdfs:label "Search parameter" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "Some simple value controlling a search operation, typically a search of a database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2081 a owl:Class ; + rdfs:label "Secondary structure" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0883 ; + oboInOwl:hasDefinition "The secondary structure assignment (predicted or real) of a nucleic acid or protein." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2086 a owl:Class ; + rdfs:label "Nucleic acid structure data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.21" ; + :oldParent :operation_0912 ; + oboInOwl:consider :data_0912, + :data_3128 ; + oboInOwl:hasDefinition "A report on nucleic acid structure-derived data, describing structural properties of a DNA molecule, or any other annotation or information about specific nucleic acid 3D structure(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2090 a owl:Class ; + rdfs:label "Database entry version information" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0957 ; + oboInOwl:hasDefinition "Information on a database (or ontology) entry version, such as name (or other identifier) or parent database, unique identifier of entry, data, author and so on." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2092 a owl:Class ; + rdfs:label "SNP" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "single nucleotide polymorphism (SNP) in a DNA sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1276 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2098 a owl:Class ; + rdfs:label "Job identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a submitted job." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:seeAlso "http://wsio.org/data_009" ; + rdfs:subClassOf :data_0976 . + +:data_2100 a owl:Class ; + rdfs:label "Type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "A label (text token) describing the type of a thing, typically an enumerated string (a string with one of a limited set of values)." ; + oboInOwl:inSubset :obsolete ; + rdfs:seeAlso "http://purl.org/dc/elements/1.1/type" ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2102 a owl:Class ; + rdfs:label "KEGG organism code" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A three-letter code used in the KEGG databases to uniquely identify organisms." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1154, + :data_2909 . + +:data_2103 a owl:Class ; + rdfs:label "Gene name (KEGG GENES)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Name of an entry (gene) from the KEGG GENES database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2105 a owl:Class ; + rdfs:label "Compound ID (BioCyc)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a compound from the BioCyc chemical compounds database." ; + oboInOwl:hasExactSynonym "BioCyc compound ID", + "BioCyc compound identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2104, + :data_2894 . + +:data_2106 a owl:Class ; + rdfs:label "Reaction ID (BioCyc)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a biological reaction from the BioCyc reactions database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2104, + :data_2108 . + +:data_2107 a owl:Class ; + rdfs:label "Enzyme ID (BioCyc)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an enzyme from the BioCyc enzymes database." ; + oboInOwl:hasExactSynonym "BioCyc enzyme ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2104, + :data_2321 . + +:data_2112 a owl:Class ; + rdfs:label "FlyBase primary identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Primary identifier of an object from the FlyBase database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1089 . + +:data_2114 a owl:Class ; + rdfs:label "WormBase wormpep ID" ; + :created_in "beta12orEarlier" ; + :regex "CE[0-9]{5}" ; + oboInOwl:hasDefinition "Protein identifier used by WormBase database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2113, + :data_2907 . + +:data_2116 a owl:Class ; + rdfs:label "Nucleic acid features (codon)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1276 ; + oboInOwl:hasDefinition "An informative report on a trinucleotide sequence that encodes an amino acid including the triplet sequence, the encoded amino acid or whether it is a start or stop codon." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2126 a owl:Class ; + rdfs:label "Translation frame specification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.20" ; + :oldParent :data_2534 ; + oboInOwl:consider :data_2534 ; + oboInOwl:hasDefinition "Frame for translation of DNA (3 forward and 3 reverse frames relative to a chromosome)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2128 a owl:Class ; + rdfs:label "Genetic code name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Informal name for a genetic code, typically an organism name." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099, + :data_2127 . + +:data_2130 a owl:Class ; + rdfs:label "Sequence profile type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "A label (text token) describing a type of sequence profile such as frequency matrix, Gribskov profile, hidden Markov model etc." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2131 a owl:Class ; + rdfs:label "Operating system name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a computer operating system such as Linux, PC or Mac." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099 . + +:data_2132 a owl:Class ; + rdfs:label "Mutation type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2538 ; + oboInOwl:hasDefinition "A type of point or block mutation, including insertion, deletion, change, duplication and moves." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2133 a owl:Class ; + rdfs:label "Logical operator" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A logical operator such as OR, AND, XOR, and NOT." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099 . + +:data_2134 a owl:Class ; + rdfs:label "Results sort order" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "A control of the order of data that is output, for example the order of sequences in an alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Possible options including sorting by score, rank, by increasing P-value (probability, i.e. most statistically significant hits given first) and so on." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2135 a owl:Class ; + rdfs:label "Toggle" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "A simple parameter that is a toggle (boolean value), typically a control for a modal tool." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2136 a owl:Class ; + rdfs:label "Sequence width" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1249 ; + oboInOwl:hasDefinition "The width of an output sequence or alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2140 a owl:Class ; + rdfs:label "Concentration" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The concentration of a chemical compound." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2050 . + +:data_2141 a owl:Class ; + rdfs:label "Window step size" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1249 ; + oboInOwl:hasDefinition "Size of the incremental 'step' a sequence window is moved over a sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2142 a owl:Class ; + rdfs:label "EMBOSS graph" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2968 ; + oboInOwl:hasDefinition "An image of a graph generated by the EMBOSS suite." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2143 a owl:Class ; + rdfs:label "EMBOSS report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "An application report generated by the EMBOSS suite." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2145 a owl:Class ; + rdfs:label "Sequence offset" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2534 ; + oboInOwl:hasDefinition "An offset for a single-point sequence position." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2146 a owl:Class ; + rdfs:label "Threshold" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1772 ; + oboInOwl:hasDefinition "A value that serves as a threshold for a tool (usually to control scoring or output)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2147 a owl:Class ; + rdfs:label "Protein report (transcription factor)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0896 ; + oboInOwl:hasDefinition "An informative report on a transcription factor protein." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This might include conformational or physicochemical properties, as well as sequence information for transcription factor(s) binding sites." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2149 a owl:Class ; + rdfs:label "Database category name" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0957 ; + oboInOwl:hasDefinition "The name of a category of biological or bioinformatics database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2150 a owl:Class ; + rdfs:label "Sequence profile name" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1115 ; + oboInOwl:hasDefinition "Name of a sequence profile." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2151 a owl:Class ; + rdfs:label "Color" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "Specification of one or more colors." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2152 a owl:Class ; + rdfs:label "Rendering parameter" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "A parameter that is used to control rendering (drawing) to a device or image." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2156 a owl:Class ; + rdfs:label "Date" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "A temporal date." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2157 a owl:Class ; + rdfs:label "Word composition" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1266, + :data_1268 ; + oboInOwl:hasDefinition "Word composition data for a molecular sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2160 a owl:Class ; + rdfs:label "Fickett testcode plot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A plot of Fickett testcode statistic (identifying protein coding regions) in a nucleotide sequences." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2884 . + +:data_2163 a owl:Class ; + rdfs:label "Helical net" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An image of peptide sequence sequence in a simple 3,4,3,4 repeating pattern that emulates at a simple level the arrangement of residues around an alpha helix." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Useful for highlighting amphipathicity and other properties." ; + rdfs:subClassOf :data_1709 . + +:data_2164 a owl:Class ; + rdfs:label "Protein sequence properties plot" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0897 ; + oboInOwl:hasDefinition "A plot of general physicochemical properties of a protein sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2165 a owl:Class ; + rdfs:label "Protein ionisation curve" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A plot of pK versus pH for a protein." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897, + :data_2884 . + +:data_2166 a owl:Class ; + rdfs:label "Sequence composition plot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A plot of character or word composition / frequency of a molecular sequence." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1261, + :data_2884 . + +:data_2167 a owl:Class ; + rdfs:label "Nucleic acid density plot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Density plot (of base composition) for a nucleotide sequence." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1261, + :data_2884 . + +:data_2168 a owl:Class ; + rdfs:label "Sequence trace image" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Image of a sequence trace (nucleotide sequence versus probabilities of each of the 4 bases)." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2969 . + +:data_2169 a owl:Class ; + rdfs:label "Nucleic acid features (siRNA)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1276 ; + oboInOwl:hasDefinition "A report on siRNA duplexes in mRNA." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2173 a owl:Class ; + rdfs:label "Sequence set (stream)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0850 ; + oboInOwl:hasDefinition "A collection of multiple molecular sequences and (typically) associated metadata that is intended for sequential processing." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This concept may be used for sequence sets that are expected to be read and processed a single sequence at a time." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2174 a owl:Class ; + rdfs:label "FlyBase secondary identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Secondary identifier of an object from the FlyBase database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "Secondary identifier are used to handle entries that were merged with or split from other entries in the database." ; + rdfs:subClassOf :data_1089 . + +:data_2176 a owl:Class ; + rdfs:label "Cardinality" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "The number of a certain thing." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2177 a owl:Class ; + rdfs:label "Exactly 1" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2337 ; + oboInOwl:hasDefinition "A single thing." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2178 a owl:Class ; + rdfs:label "1 or more" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2337 ; + oboInOwl:hasDefinition "One or more things." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2179 a owl:Class ; + rdfs:label "Exactly 2" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2337 ; + oboInOwl:hasDefinition "Exactly two things." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2180 a owl:Class ; + rdfs:label "2 or more" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2337 ; + oboInOwl:hasDefinition "Two or more things." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2191 a owl:Class ; + rdfs:label "Protein features report (chemical modifications)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "chemical modification of a protein." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2192 a owl:Class ; + rdfs:label "Error" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3106 ; + oboInOwl:hasDefinition "Data on an error generated by computer system or tool." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2193 a owl:Class ; + rdfs:label "Database entry metadata" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Basic information on any arbitrary database entry." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2337 . + +:data_2198 a owl:Class ; + rdfs:label "Gene cluster" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1246 ; + oboInOwl:hasDefinition "A cluster of similar genes." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2201 a owl:Class ; + rdfs:label "Sequence record full" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A molecular sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0849 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2208 a owl:Class ; + rdfs:label "Plasmid identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a plasmid in a database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2119 . + +:data_2209 a owl:Class ; + rdfs:label "Mutation ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A unique identifier of a specific mutation catalogued in a database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2538 . + +:data_2212 a owl:Class ; + rdfs:label "Mutation annotation (basic)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1276 ; + oboInOwl:hasDefinition "Information describing the mutation itself, the organ site, tissue and type of lesion where the mutation has been identified, description of the patient origin and life-style." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2213 a owl:Class ; + rdfs:label "Mutation annotation (prevalence)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1276 ; + oboInOwl:hasDefinition "An informative report on the prevalence of mutation(s), including data on samples and mutation prevalence (e.g. by tumour type).." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2214 a owl:Class ; + rdfs:label "Mutation annotation (prognostic)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1276 ; + oboInOwl:hasDefinition "An informative report on mutation prognostic data, such as information on patient cohort, the study settings and the results of the study." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2215 a owl:Class ; + rdfs:label "Mutation annotation (functional)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1276 ; + oboInOwl:hasDefinition "An informative report on the functional properties of mutant proteins including transcriptional activities, promotion of cell growth and tumorigenicity, dominant negative effects, capacity to induce apoptosis, cell-cycle arrest or checkpoints in human cells and so on." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2216 a owl:Class ; + rdfs:label "Codon number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The number of a codon, for instance, at which a mutation is located." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1016 . + +:data_2217 a owl:Class ; + rdfs:label "Tumor annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1622 ; + oboInOwl:hasDefinition "An informative report on a specific tumor including nature and origin of the sample, anatomic site, organ or tissue, tumor type, including morphology and/or histologic type, and so on." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2218 a owl:Class ; + rdfs:label "Server metadata" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3106 ; + oboInOwl:hasDefinition "Basic information about a server on the web, such as an SRS server." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2219 a owl:Class ; + rdfs:label "Database field name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a field in a database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099 . + +:data_2220 a owl:Class ; + rdfs:label "Sequence cluster ID (SYSTERS)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of a sequence cluster from the SYSTERS database." ; + oboInOwl:hasExactSynonym "SYSTERS cluster ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1112, + :data_2091 . + +:data_2223 a owl:Class ; + rdfs:label "Ontology metadata" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning a biological ontology." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0089 ], + :data_2337 . + +:data_2235 a owl:Class ; + rdfs:label "Raw SCOP domain classification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Raw SCOP domain classification data files." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "These are the parsable data files provided by SCOP." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2236 a owl:Class ; + rdfs:label "Raw CATH domain classification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Raw CATH domain classification data files." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "These are the parsable data files provided by CATH." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2240 a owl:Class ; + rdfs:label "Heterogen annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0962 ; + oboInOwl:hasDefinition "An informative report on the types of small molecules or 'heterogens' (non-protein groups) that are represented in PDB files." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2242 a owl:Class ; + rdfs:label "Phylogenetic property values" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0871 ; + oboInOwl:hasDefinition "Phylogenetic property values data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2245 a owl:Class ; + rdfs:label "Sequence set (bootstrapped)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0850 ; + oboInOwl:hasDefinition "A collection of sequences output from a bootstrapping (resampling) procedure." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Bootstrapping is often performed in phylogenetic analysis." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2247 a owl:Class ; + rdfs:label "Phylogenetic consensus tree" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0872 ; + oboInOwl:hasDefinition "A consensus phylogenetic tree derived from comparison of multiple trees." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2248 a owl:Class ; + rdfs:label "Schema" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "A data schema for organising or transforming data of some type." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2249 a owl:Class ; + rdfs:label "DTD" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "A DTD (document type definition)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2250 a owl:Class ; + rdfs:label "XML Schema" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "An XML Schema." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2251 a owl:Class ; + rdfs:label "Relax-NG schema" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "A relax-NG schema." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2252 a owl:Class ; + rdfs:label "XSLT stylesheet" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "An XSLT stylesheet." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2254 a owl:Class ; + rdfs:label "OBO file format name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of an OBO file format such as OBO-XML, plain and so on." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2129 . + +:data_2288 a owl:Class ; + rdfs:label "Sequence identifier (protein)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1096 ; + oboInOwl:hasDefinition "An identifier of protein sequence(s) or protein sequence database entries." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2289 a owl:Class ; + rdfs:label "Sequence identifier (nucleic acid)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1097 ; + oboInOwl:hasDefinition "An identifier of nucleotide sequence(s) or nucleotide sequence database entries." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2290 a owl:Class ; + rdfs:label "EMBL accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An accession number of an entry from the EMBL sequence database." ; + oboInOwl:hasExactSynonym "EMBL ID", + "EMBL accession number", + "EMBL identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1103 . + +:data_2291 a owl:Class ; + rdfs:label "UniProt ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a polypeptide in the UniProt database." ; + oboInOwl:hasExactSynonym "UniProt entry name", + "UniProt identifier", + "UniProtKB entry name", + "UniProtKB identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0849 ], + :data_2154 . + +:data_2293 a owl:Class ; + rdfs:label "Gramene secondary identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Secondary (internal) identifier of a Gramene database entry." ; + oboInOwl:hasExactSynonym "Gramene internal ID", + "Gramene internal identifier", + "Gramene secondary ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2915 . + +:data_2296 a owl:Class ; + rdfs:label "Gene name (AceView)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Name of an entry (gene) from the AceView genes database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2297 a owl:Class ; + rdfs:label "Gene ID (ECK)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs: ECK" ; + oboInOwl:hasDefinition "Identifier of an E. coli K-12 gene from EcoGene Database." ; + oboInOwl:hasExactSynonym "E. coli K-12 gene identifier", + "ECK accession" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1795 . + +:data_2298 a owl:Class ; + rdfs:label "Gene ID (HGNC)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier for a gene approved by the HUGO Gene Nomenclature Committee." ; + oboInOwl:hasExactSynonym "HGNC ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_2300 a owl:Class ; + rdfs:label "Gene name (NCBI)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Name of an entry (gene) from the NCBI genes database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2302 a owl:Class ; + rdfs:label "STRING ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the STRING database of protein-protein interactions." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1074, + :data_2091 . + +:data_2307 a owl:Class ; + rdfs:label "Virus annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2530 ; + oboInOwl:hasDefinition "An informative report on a specific virus." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2308 a owl:Class ; + rdfs:label "Virus annotation (taxonomy)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2530 ; + oboInOwl:hasDefinition "An informative report on the taxonomy of a specific virus." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2315 a owl:Class ; + rdfs:label "NCBI version" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier assigned to sequence records processed by NCBI, made of the accession number of the database record followed by a dot and a version number." ; + oboInOwl:hasExactSynonym "NCBI accession.version", + "accession.version" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "Nucleotide sequence version contains two letters followed by six digits, a dot, and a version number (or for older nucleotide sequence records, the format is one letter followed by five digits, a dot, and a version number). Protein sequence version contains three letters followed by five digits, a dot, and a version number." ; + rdfs:subClassOf :data_2091, + :data_2362 . + +:data_2317 a owl:Class ; + rdfs:label "Cell line name (exact)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The exact name of a cell line." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2316 . + +:data_2318 a owl:Class ; + rdfs:label "Cell line name (truncated)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The truncated name of a cell line." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2316 . + +:data_2319 a owl:Class ; + rdfs:label "Cell line name (no punctuation)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a cell line without any punctuation." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2316 . + +:data_2320 a owl:Class ; + rdfs:label "Cell line name (assonant)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The assonant name of a cell line." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2316 . + +:data_2325 a owl:Class ; + rdfs:label "REBASE enzyme number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an enzyme from the REBASE enzymes database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2321 . + +:data_2326 a owl:Class ; + rdfs:label "DrugBank ID" ; + :created_in "beta12orEarlier" ; + :regex "DB[0-9]{5}" ; + oboInOwl:hasDefinition "Unique identifier of a drug from the DrugBank database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2895 . + +:data_2327 a owl:Class ; + rdfs:label "GI number (protein)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier assigned to NCBI protein sequence records." ; + oboInOwl:hasExactSynonym "protein gi", + "protein gi number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "Nucleotide sequence GI number is shown in the VERSION field of the database record. Protein sequence GI number is shown in the CDS/db_xref field of a nucleotide database record, and the VERSION field of a protein database record." ; + rdfs:subClassOf :data_2314 . + +:data_2335 a owl:Class ; + rdfs:label "Bit score" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A score derived from the alignment of two sequences, which is then normalised with respect to the scoring system." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Bit scores are normalised with respect to the scoring system and therefore can be used to compare alignment scores from different searches." ; + rdfs:subClassOf :data_1413 . + +:data_2336 a owl:Class ; + rdfs:label "Translation phase specification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.20" ; + :oldParent :data_2534 ; + oboInOwl:consider :data_2534 ; + oboInOwl:hasDefinition "Phase for translation of DNA (0, 1 or 2) relative to a fragment of the coding sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2340 a owl:Class ; + rdfs:label "Genome build identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a build of a particular genome." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2749 . + +:data_2342 a owl:Class ; + rdfs:label "Pathway or network name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a biological pathway or network." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1082 . + +:data_2343 a owl:Class ; + rdfs:label "Pathway ID (KEGG)" ; + :created_in "beta12orEarlier" ; + :regex "[a-zA-Z_0-9]{2,3}[0-9]{5}" ; + oboInOwl:hasDefinition "Identifier of a pathway from the KEGG pathway database." ; + oboInOwl:hasExactSynonym "KEGG pathway ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1154, + :data_2091, + :data_2365 . + +:data_2344 a owl:Class ; + rdfs:label "Pathway ID (NCI-Nature)" ; + :created_in "beta12orEarlier" ; + :regex "[a-zA-Z_0-9]+" ; + oboInOwl:hasDefinition "Identifier of a pathway from the NCI-Nature pathway database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2365 . + +:data_2345 a owl:Class ; + rdfs:label "Pathway ID (ConsensusPathDB)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a pathway from the ConsensusPathDB pathway database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2365, + :data_2917 . + +:data_2347 a owl:Class ; + rdfs:label "Sequence cluster ID (UniRef100)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the UniRef100 database." ; + oboInOwl:hasExactSynonym "UniRef100 cluster id", + "UniRef100 entry accession" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2346 . + +:data_2348 a owl:Class ; + rdfs:label "Sequence cluster ID (UniRef90)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the UniRef90 database." ; + oboInOwl:hasExactSynonym "UniRef90 cluster id", + "UniRef90 entry accession" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2346 . + +:data_2349 a owl:Class ; + rdfs:label "Sequence cluster ID (UniRef50)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the UniRef50 database." ; + oboInOwl:hasExactSynonym "UniRef50 cluster id", + "UniRef50 entry accession" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2346 . + +:data_2356 a owl:Class ; + rdfs:label "RFAM accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Stable accession number of an entry (RNA family) from the RFAM database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2355 . + +:data_2357 a owl:Class ; + rdfs:label "Protein signature type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "A label (text token) describing a type of protein family signature (sequence classifier) from the InterPro database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2358 a owl:Class ; + rdfs:label "Domain-nucleic acid interaction report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0906 ; + oboInOwl:hasDefinition "An informative report on protein domain-DNA/RNA interaction(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2359 a owl:Class ; + rdfs:label "Domain-domain interactions" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0906 ; + oboInOwl:hasDefinition "An informative report on protein domain-protein domain interaction(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2360 a owl:Class ; + rdfs:label "Domain-domain interaction (indirect)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0906 ; + oboInOwl:hasDefinition "Data on indirect protein domain-protein domain interaction(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2363 a owl:Class ; + rdfs:label "2D PAGE data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Data concerning two-dimensional polygel electrophoresis." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2364 a owl:Class ; + rdfs:label "2D PAGE report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "two-dimensional gel electrophoresis experiments, gels or spots in a gel." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2368 a owl:Class ; + rdfs:label "ASTD ID (exon)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an exon from the ASTD database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2367 . + +:data_2369 a owl:Class ; + rdfs:label "ASTD ID (intron)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an intron from the ASTD database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2367 . + +:data_2370 a owl:Class ; + rdfs:label "ASTD ID (polya)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a polyA signal from the ASTD database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2367 . + +:data_2371 a owl:Class ; + rdfs:label "ASTD ID (tss)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a transcription start site from the ASTD database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2367 . + +:data_2372 a owl:Class ; + rdfs:label "2D PAGE spot report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "An informative report on individual spot(s) from a two-dimensional (2D PAGE) gel." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2374 a owl:Class ; + rdfs:label "Spot serial number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of a spot from a two-dimensional (protein) gel in the SWISS-2DPAGE database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2373 . + +:data_2375 a owl:Class ; + rdfs:label "Spot ID (HSC-2DPAGE)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of a spot from a two-dimensional (protein) gel from a HSC-2DPAGE database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2373 . + +:data_2378 a owl:Class ; + rdfs:label "Protein-motif interaction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0906 ; + oboInOwl:hasDefinition "Data on the interaction of a protein (or protein domain) with specific structural (3D) and/or sequence motifs." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2380 a owl:Class ; + rdfs:label "CABRI accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier of an item from the CABRI database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109 . + +:data_2381 a owl:Class ; + rdfs:label "Experiment report (genotyping)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Report of genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2383 a owl:Class ; + rdfs:label "EGA accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the EGA database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2382 . + +:data_2384 a owl:Class ; + rdfs:label "IPI protein ID" ; + :created_in "beta12orEarlier" ; + :regex "IPI[0-9]{8}" ; + oboInOwl:hasDefinition "Identifier of a protein entry catalogued in the International Protein Index (IPI) database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1096, + :data_2091 . + +:data_2385 a owl:Class ; + rdfs:label "RefSeq accession (protein)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Accession number of a protein from the RefSeq database." ; + oboInOwl:hasExactSynonym "RefSeq protein ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1098 . + +:data_2386 a owl:Class ; + rdfs:label "EPD ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry (promoter) from the EPD database." ; + oboInOwl:hasExactSynonym "EPD identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2727 . + +:data_2388 a owl:Class ; + rdfs:label "TAIR accession (At gene)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an Arabidopsis thaliana gene from the TAIR database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1037 . + +:data_2389 a owl:Class ; + rdfs:label "UniSTS accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the UniSTS database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1097, + :data_2091 . + +:data_2390 a owl:Class ; + rdfs:label "UNITE accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the UNITE database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1097, + :data_2091 . + +:data_2391 a owl:Class ; + rdfs:label "UTR accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the UTR database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1097, + :data_2091 . + +:data_2392 a owl:Class ; + rdfs:label "UniParc accession" ; + :created_in "beta12orEarlier" ; + :regex "UPI[A-F0-9]{10}" ; + oboInOwl:hasDefinition "Accession number of a UniParc (protein sequence) database entry." ; + oboInOwl:hasExactSynonym "UPI", + "UniParc ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1096, + :data_2091 . + +:data_2393 a owl:Class ; + rdfs:label "mFLJ/mKIAA number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the Rouge or HUGE databases." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_2395 a owl:Class ; + rdfs:label "Fungi annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2530 ; + oboInOwl:hasDefinition "An informative report on a specific fungus." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2396 a owl:Class ; + rdfs:label "Fungi annotation (anamorph)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2530 ; + oboInOwl:hasDefinition "An informative report on a specific fungus anamorph." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2398 a owl:Class ; + rdfs:label "Ensembl protein ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier for a protein from the Ensembl database." ; + oboInOwl:hasExactSynonym "Ensembl ID (protein)", + "Protein ID (Ensembl)" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2610, + :data_2907 . + +:data_2400 a owl:Class ; + rdfs:label "Toxin annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0962 ; + oboInOwl:hasDefinition "An informative report on a specific toxin." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2401 a owl:Class ; + rdfs:label "Protein report (membrane protein)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1277 ; + oboInOwl:hasDefinition "An informative report on a membrane protein." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2402 a owl:Class ; + rdfs:label "Protein-drug interaction report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "An informative report on tentative or known protein-drug interaction(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1566 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2522 a owl:Class ; + rdfs:label "Map data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1274, + :data_2019 ; + oboInOwl:hasDefinition "Data concerning a map of molecular sequence(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2524 a owl:Class ; + rdfs:label "Protein data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0896 ; + oboInOwl:hasDefinition "Data concerning one or more protein molecules." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2525 a owl:Class ; + rdfs:label "Nucleic acid data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2084 ; + oboInOwl:hasDefinition "Data concerning one or more nucleic acid molecules." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2527 a owl:Class ; + rdfs:label "Parameter" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.16" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "Typically a simple numerical or string value that controls the operation of a tool." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2528 a owl:Class ; + rdfs:label "Molecular data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2087 ; + oboInOwl:hasDefinition "Data concerning a specific type of molecule." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2529 a owl:Class ; + rdfs:label "Molecule report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0896, + :data_2084 ; + oboInOwl:hasDefinition "An informative report on a specific molecule." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2539 a owl:Class ; + rdfs:label "Alignment data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1916, + :data_2083 ; + oboInOwl:hasDefinition "Data concerning an alignment of two or more molecular sequences, structures or derived data." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. This includes entities derived from sequences and structures such as motifs and profiles." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2540 a owl:Class ; + rdfs:label "Data index data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0955 ; + oboInOwl:hasDefinition "Data concerning an index of data." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2563 a owl:Class ; + rdfs:label "Amino acid name (single letter)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Single letter amino acid identifier, e.g. G." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1006 . + +:data_2565 a owl:Class ; + rdfs:label "Amino acid name (full name)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Full name of an amino acid, e.g. Glycine." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1006 . + +:data_2578 a owl:Class ; + rdfs:label "ArachnoServer ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of a toxin from the ArachnoServer database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2897 . + +:data_2579 a owl:Class ; + rdfs:label "Expressed gene list" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2872 ; + oboInOwl:hasDefinition "A simple summary of expressed genes." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2580 a owl:Class ; + rdfs:label "BindingDB Monomer ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of a monomer from the BindingDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2894 . + +:data_2581 a owl:Class ; + rdfs:label "GO concept name" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2339 ; + oboInOwl:hasDefinition "The name of a concept from the GO ontology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2582 a owl:Class ; + rdfs:label "GO concept ID (biological process)" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]{7}|GO:[0-9]{7}" ; + oboInOwl:hasDefinition "An identifier of a 'biological process' concept from the the Gene Ontology." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1176 . + +:data_2583 a owl:Class ; + rdfs:label "GO concept ID (molecular function)" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]{7}|GO:[0-9]{7}" ; + oboInOwl:hasDefinition "An identifier of a 'molecular function' concept from the the Gene Ontology." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1176 . + +:data_2584 a owl:Class ; + rdfs:label "GO concept name (cellular component)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2339 ; + oboInOwl:hasDefinition "The name of a concept for a cellular component from the GO ontology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2586 a owl:Class ; + rdfs:label "Northern blot image" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An image arising from a Northern Blot experiment." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3424 . + +:data_2588 a owl:Class ; + rdfs:label "BlotBase blot ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of a blot from a Northern Blot from the BlotBase database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2587 . + +:data_2589 a owl:Class ; + rdfs:label "Hierarchy" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Raw data on a biological hierarchy, describing the hierarchy proper, hierarchy components and possibly associated annotation." ; + oboInOwl:hasExactSynonym "Hierarchy annotation" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:data_2590 a owl:Class ; + rdfs:label "Hierarchy identifier" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2891 ; + oboInOwl:hasDefinition "Identifier of an entry from a database of biological hierarchies." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2591 a owl:Class ; + rdfs:label "Brite hierarchy ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the Brite database of biological hierarchies." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2891 . + +:data_2592 a owl:Class ; + rdfs:label "Cancer type" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2099 ; + oboInOwl:hasDefinition "A type (represented as a string) of cancer." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2593 a owl:Class ; + rdfs:label "BRENDA organism ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier for an organism used in the BRENDA database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2908 . + +:data_2594 a owl:Class ; + rdfs:label "UniGene taxon" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a taxon using the controlled vocabulary of the UniGene database." ; + oboInOwl:hasExactSynonym "UniGene organism abbreviation" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1868 . + +:data_2595 a owl:Class ; + rdfs:label "UTRdb taxon" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a taxon using the controlled vocabulary of the UTRdb database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1868 . + +:data_2597 a owl:Class ; + rdfs:label "CABRI catalogue name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a catalogue of biological resources from the CABRI database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099, + :data_2596 . + +:data_2598 a owl:Class ; + rdfs:label "Secondary structure alignment metadata" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0867 ; + oboInOwl:hasDefinition "An informative report on protein secondary structure alignment-derived data or metadata." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2599 a owl:Class ; + rdfs:label "Molecule interaction report" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19." ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0906 ; + oboInOwl:hasDefinition "An informative report on the physical, chemical or other information concerning the interaction of two or more molecules (or parts of molecules)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2601 a owl:Class ; + rdfs:label "Small molecule data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0962 ; + oboInOwl:hasDefinition "Data concerning one or more small molecules." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2602 a owl:Class ; + rdfs:label "Genotype and phenotype data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0920 ; + oboInOwl:hasDefinition "Data concerning a particular genotype, phenotype or a genotype / phenotype relation." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2605 a owl:Class ; + rdfs:label "Compound ID (KEGG)" ; + :created_in "beta12orEarlier" ; + :regex "C[0-9]+" ; + oboInOwl:hasDefinition "Unique identifier of a chemical compound from the KEGG database." ; + oboInOwl:hasExactSynonym "KEGG compound ID", + "KEGG compound identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1154, + :data_2894 . + +:data_2606 a owl:Class ; + rdfs:label "RFAM name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name (not necessarily stable) an entry (RNA family) from the RFAM database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099, + :data_2355 . + +:data_2608 a owl:Class ; + rdfs:label "Reaction ID (KEGG)" ; + :created_in "beta12orEarlier" ; + :regex "R[0-9]+" ; + oboInOwl:hasDefinition "Identifier of a biological reaction from the KEGG reactions database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1154, + :data_2108 . + +:data_2609 a owl:Class ; + rdfs:label "Drug ID (KEGG)" ; + :created_in "beta12orEarlier" ; + :regex "D[0-9]+" ; + oboInOwl:hasDefinition "Unique identifier of a drug from the KEGG Drug database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1154, + :data_2091, + :data_2895 . + +:data_2611 a owl:Class ; + rdfs:label "ICD identifier" ; + :created_in "beta12orEarlier" ; + :regex "[A-Z][0-9]+(\\.[-[0-9]+])?" ; + oboInOwl:hasDefinition "An identifier of a disease from the International Classification of Diseases (ICD) database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1622 ], + :data_1150, + :data_2091 . + +:data_2612 a owl:Class ; + rdfs:label "Sequence cluster ID (CluSTr)" ; + :created_in "beta12orEarlier" ; + :regex "[0-9A-Za-z]+:[0-9]+:[0-9]{1,5}(\\.[0-9])?" ; + oboInOwl:hasDefinition "Unique identifier of a sequence cluster from the CluSTr database." ; + oboInOwl:hasExactSynonym "CluSTr ID", + "CluSTr cluster ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1112, + :data_2091 . + +:data_2613 a owl:Class ; + rdfs:label "KEGG Glycan ID" ; + :created_in "beta12orEarlier" ; + :regex "G[0-9]+" ; + oboInOwl:hasDefinition "Unique identifier of a glycan ligand from the KEGG GLYCAN database (a subset of KEGG LIGAND)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1154, + :data_2091, + :data_2900 . + +:data_2614 a owl:Class ; + rdfs:label "TCDB ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+\\.[A-Z]\\.[0-9]+\\.[0-9]+\\.[0-9]+" ; + oboInOwl:hasDefinition "A unique identifier of a family from the transport classification database (TCDB) of membrane transport proteins." ; + oboInOwl:hasExactSynonym "TC number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "OBO file for regular expression." ; + rdfs:subClassOf :data_2091, + :data_2910 . + +:data_2615 a owl:Class ; + rdfs:label "MINT ID" ; + :created_in "beta12orEarlier" ; + :regex "MINT\\-[0-9]{1,5}" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the MINT database of protein-protein interactions." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1074, + :data_2091 . + +:data_2616 a owl:Class ; + rdfs:label "DIP ID" ; + :created_in "beta12orEarlier" ; + :regex "DIP[\\:\\-][0-9]{3}[EN]" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the DIP database of protein-protein interactions." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1074, + :data_2091 . + +:data_2617 a owl:Class ; + rdfs:label "Signaling Gateway protein ID" ; + :created_in "beta12orEarlier" ; + :regex "A[0-9]{6}" ; + oboInOwl:hasDefinition "Unique identifier of a protein listed in the UCSD-Nature Signaling Gateway Molecule Pages database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2619 a owl:Class ; + rdfs:label "RESID ID" ; + :created_in "beta12orEarlier" ; + :regex "AA[0-9]{4}" ; + oboInOwl:hasDefinition "Identifier of a protein modification catalogued in the RESID database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2618 . + +:data_2620 a owl:Class ; + rdfs:label "RGD ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]{4,7}" ; + oboInOwl:hasDefinition "Identifier of an entry from the RGD database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109 . + +:data_2621 a owl:Class ; + rdfs:label "TAIR accession (protein)" ; + :created_in "beta12orEarlier" ; + :regex "AASequence:[0-9]{10}" ; + oboInOwl:hasDefinition "Identifier of a protein sequence from the TAIR database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1096, + :data_2387 . + +:data_2622 a owl:Class ; + rdfs:label "Compound ID (HMDB)" ; + :created_in "beta12orEarlier" ; + :regex "HMDB[0-9]{5}" ; + oboInOwl:hasDefinition "Identifier of a small molecule metabolite from the Human Metabolome Database (HMDB)." ; + oboInOwl:hasExactSynonym "HMDB ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2894 . + +:data_2625 a owl:Class ; + rdfs:label "LIPID MAPS ID" ; + :created_in "beta12orEarlier" ; + :regex "LM(FA|GL|GP|SP|ST|PR|SL|PK)[0-9]{4}([0-9a-zA-Z]{4})?" ; + oboInOwl:hasDefinition "Identifier of an entry from the LIPID MAPS database." ; + oboInOwl:hasExactSynonym "LM ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2905 . + +:data_2626 a owl:Class ; + rdfs:label "PeptideAtlas ID" ; + :created_in "beta12orEarlier" ; + :regex "PAp[0-9]{8}" ; + oboInOwl:hasDbXref "PDBML:pdbx_PDB_strand_id" ; + oboInOwl:hasDefinition "Identifier of a peptide from the PeptideAtlas peptide databases." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2906 . + +:data_2627 a owl:Class ; + rdfs:label "Molecular interaction ID" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.7" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Identifier of a report of molecular interactions from a database (typically)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1074 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2628 a owl:Class ; + rdfs:label "BioGRID interaction ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "A unique identifier of an interaction from the BioGRID database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1074, + :data_2091 . + +:data_2629 a owl:Class ; + rdfs:label "Enzyme ID (MEROPS)" ; + :created_in "beta12orEarlier" ; + :regex "S[0-9]{2}\\.[0-9]{3}" ; + oboInOwl:hasDefinition "Unique identifier of a peptidase enzyme from the MEROPS database." ; + oboInOwl:hasExactSynonym "MEROPS ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2321 . + +:data_2631 a owl:Class ; + rdfs:label "ACLAME ID" ; + :created_in "beta12orEarlier" ; + :regex "mge:[0-9]+" ; + oboInOwl:hasDefinition "An identifier of a mobile genetic element from the Aclame database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2630 . + +:data_2634 a owl:Class ; + rdfs:label "ISBN" ; + :created_in "beta12orEarlier" ; + :regex "(ISBN)?(-13|-10)?[:]?[ ]?([0-9]{2,3}[ -]?)?[0-9]{1,5}[ -]?[0-9]{1,7}[ -]?[0-9]{1,6}[ -]?([0-9]|X)" ; + oboInOwl:hasDefinition "The International Standard Book Number (ISBN) is for identifying printed books." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2633 . + +:data_2635 a owl:Class ; + rdfs:label "Compound ID (3DMET)" ; + :created_in "beta12orEarlier" ; + :regex "B[0-9]{5}" ; + oboInOwl:hasDefinition "Identifier of a metabolite from the 3DMET database." ; + oboInOwl:hasExactSynonym "3DMET ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2894 . + +:data_2636 a owl:Class ; + rdfs:label "MatrixDB interaction ID" ; + :created_in "beta12orEarlier" ; + :regex "([A-NR-Z][0-9][A-Z][A-Z0-9][A-Z0-9][0-9])_.*|([OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9]_.*)|(GAG_.*)|(MULT_.*)|(PFRAG_.*)|(LIP_.*)|(CAT_.*)" ; + oboInOwl:hasDefinition "A unique identifier of an interaction from the MatrixDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1074, + :data_2091 . + +:data_2637 a owl:Class ; + rdfs:label "cPath ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "A unique identifier for pathways, reactions, complexes and small molecules from the cPath (Pathway Commons) database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "These identifiers are unique within the cPath database, however, they are not stable between releases." ; + rdfs:subClassOf :data_2091, + :data_2109, + :data_2365 . + +:data_2638 a owl:Class ; + rdfs:label "PubChem bioassay ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Identifier of an assay from the PubChem database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976, + :data_2639 . + +:data_2641 a owl:Class ; + rdfs:label "Reaction ID (MACie)" ; + :created_in "beta12orEarlier" ; + :regex "M[0-9]{4}" ; + oboInOwl:hasDefinition "Identifier of an enzyme reaction mechanism from the MACie database." ; + oboInOwl:hasExactSynonym "MACie entry number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2108 . + +:data_2642 a owl:Class ; + rdfs:label "Gene ID (miRBase)" ; + :created_in "beta12orEarlier" ; + :regex "MI[0-9]{7}" ; + oboInOwl:hasDefinition "Identifier for a gene from the miRBase database." ; + oboInOwl:hasExactSynonym "miRNA ID", + "miRNA identifier", + "miRNA name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_2643 a owl:Class ; + rdfs:label "Gene ID (ZFIN)" ; + :created_in "beta12orEarlier" ; + :regex "ZDB\\-GENE\\-[0-9]+\\-[0-9]+" ; + oboInOwl:hasDefinition "Identifier for a gene from the Zebrafish information network genome (ZFIN) database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_2644 a owl:Class ; + rdfs:label "Reaction ID (Rhea)" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]{5}" ; + oboInOwl:hasDefinition "Identifier of an enzyme-catalysed reaction from the Rhea database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2108 . + +:data_2645 a owl:Class ; + rdfs:label "Pathway ID (Unipathway)" ; + :created_in "beta12orEarlier" ; + :regex "UPA[0-9]{5}" ; + oboInOwl:hasDefinition "Identifier of a biological pathway from the Unipathway database." ; + oboInOwl:hasExactSynonym "upaid" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2365 . + +:data_2646 a owl:Class ; + rdfs:label "Compound ID (ChEMBL)" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Identifier of a small molecular from the ChEMBL database." ; + oboInOwl:hasExactSynonym "ChEMBL ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2894 . + +:data_2647 a owl:Class ; + rdfs:label "LGICdb identifier" ; + :created_in "beta12orEarlier" ; + :regex "[a-zA-Z_0-9]+" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the Ligand-gated ion channel (LGICdb) database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2648 a owl:Class ; + rdfs:label "Reaction kinetics ID (SABIO-RK)" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Identifier of a biological reaction (kinetics entry) from the SABIO-RK reactions database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2309 . + +:data_2650 a owl:Class ; + rdfs:label "Pathway ID (PharmGKB)" ; + :created_in "beta12orEarlier" ; + :regex "PA[0-9]+" ; + oboInOwl:hasDefinition "Identifier of a pathway from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2365, + :data_2649 . + +:data_2651 a owl:Class ; + rdfs:label "Disease ID (PharmGKB)" ; + :created_in "beta12orEarlier" ; + :regex "PA[0-9]+" ; + oboInOwl:hasDefinition "Identifier of a disease from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1150, + :data_2091, + :data_2649 . + +:data_2652 a owl:Class ; + rdfs:label "Drug ID (PharmGKB)" ; + :created_in "beta12orEarlier" ; + :regex "PA[0-9]+" ; + oboInOwl:hasDefinition "Identifier of a drug from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2649, + :data_2895 . + +:data_2653 a owl:Class ; + rdfs:label "Drug ID (TTD)" ; + :created_in "beta12orEarlier" ; + :regex "DAP[0-9]+" ; + oboInOwl:hasDefinition "Identifier of a drug from the Therapeutic Target Database (TTD)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2895 . + +:data_2654 a owl:Class ; + rdfs:label "Target ID (TTD)" ; + :created_in "beta12orEarlier" ; + :regex "TTDS[0-9]+" ; + oboInOwl:hasDefinition "Identifier of a target protein from the Therapeutic Target Database (TTD)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2656 a owl:Class ; + rdfs:label "NeuronDB ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "A unique identifier of a neuron from the NeuronDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2893 . + +:data_2657 a owl:Class ; + rdfs:label "NeuroMorpho ID" ; + :created_in "beta12orEarlier" ; + :regex "[a-zA-Z_0-9]+" ; + oboInOwl:hasDefinition "A unique identifier of a neuron from the NeuroMorpho database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2893 . + +:data_2658 a owl:Class ; + rdfs:label "Compound ID (ChemIDplus)" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Identifier of a chemical from the ChemIDplus database." ; + oboInOwl:hasExactSynonym "ChemIDplus ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2894 . + +:data_2659 a owl:Class ; + rdfs:label "Pathway ID (SMPDB)" ; + :created_in "beta12orEarlier" ; + :regex "SMP[0-9]{5}" ; + oboInOwl:hasDefinition "Identifier of a pathway from the Small Molecule Pathway Database (SMPDB)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2365 . + +:data_2660 a owl:Class ; + rdfs:label "BioNumbers ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Identifier of an entry from the BioNumbers database of key numbers and associated data in molecular biology." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091 . + +:data_2662 a owl:Class ; + rdfs:label "T3DB ID" ; + :created_in "beta12orEarlier" ; + :regex "T3D[0-9]+" ; + oboInOwl:hasDefinition "Unique identifier of a toxin from the Toxin and Toxin Target Database (T3DB) database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2897 . + +:data_2664 a owl:Class ; + rdfs:label "GlycomeDB ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Identifier of an entry from the GlycomeDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2900 . + +:data_2665 a owl:Class ; + rdfs:label "LipidBank ID" ; + :created_in "beta12orEarlier" ; + :regex "[a-zA-Z_0-9]+[0-9]+" ; + oboInOwl:hasDefinition "Identifier of an entry from the LipidBank database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2905 . + +:data_2666 a owl:Class ; + rdfs:label "CDD ID" ; + :created_in "beta12orEarlier" ; + :regex "cd[0-9]{5}" ; + oboInOwl:hasDefinition "Identifier of a conserved domain from the Conserved Domain Database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1038, + :data_2091 . + +:data_2667 a owl:Class ; + rdfs:label "MMDB ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]{1,5}" ; + oboInOwl:hasDefinition "An identifier of an entry from the MMDB database." ; + oboInOwl:hasExactSynonym "MMDB accession" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1070, + :data_2091 . + +:data_2668 a owl:Class ; + rdfs:label "iRefIndex ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the iRefIndex database of protein-protein interactions." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1074, + :data_2091 . + +:data_2669 a owl:Class ; + rdfs:label "ModelDB ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the ModelDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2891 . + +:data_2670 a owl:Class ; + rdfs:label "Pathway ID (DQCS)" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Identifier of a signaling pathway from the Database of Quantitative Cellular Signaling (DQCS)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2365 . + +:data_2671 a owl:Class ; + rdfs:label "Ensembl ID (Homo sapiens)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database (Homo sapiens division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2672 a owl:Class ; + rdfs:label "Ensembl ID ('Bos taurus')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Bos taurus' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2673 a owl:Class ; + rdfs:label "Ensembl ID ('Canis familiaris')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Canis familiaris' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2674 a owl:Class ; + rdfs:label "Ensembl ID ('Cavia porcellus')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Cavia porcellus' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2675 a owl:Class ; + rdfs:label "Ensembl ID ('Ciona intestinalis')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona intestinalis' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2676 a owl:Class ; + rdfs:label "Ensembl ID ('Ciona savignyi')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ciona savignyi' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2677 a owl:Class ; + rdfs:label "Ensembl ID ('Danio rerio')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Danio rerio' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2678 a owl:Class ; + rdfs:label "Ensembl ID ('Dasypus novemcinctus')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Dasypus novemcinctus' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2679 a owl:Class ; + rdfs:label "Ensembl ID ('Echinops telfairi')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Echinops telfairi' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2680 a owl:Class ; + rdfs:label "Ensembl ID ('Erinaceus europaeus')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Erinaceus europaeus' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2681 a owl:Class ; + rdfs:label "Ensembl ID ('Felis catus')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Felis catus' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2682 a owl:Class ; + rdfs:label "Ensembl ID ('Gallus gallus')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gallus gallus' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2683 a owl:Class ; + rdfs:label "Ensembl ID ('Gasterosteus aculeatus')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Gasterosteus aculeatus' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2684 a owl:Class ; + rdfs:label "Ensembl ID ('Homo sapiens')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Homo sapiens' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2685 a owl:Class ; + rdfs:label "Ensembl ID ('Loxodonta africana')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Loxodonta africana' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2686 a owl:Class ; + rdfs:label "Ensembl ID ('Macaca mulatta')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Macaca mulatta' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2687 a owl:Class ; + rdfs:label "Ensembl ID ('Monodelphis domestica')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Monodelphis domestica' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2688 a owl:Class ; + rdfs:label "Ensembl ID ('Mus musculus')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Mus musculus' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2689 a owl:Class ; + rdfs:label "Ensembl ID ('Myotis lucifugus')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Myotis lucifugus' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2690 a owl:Class ; + rdfs:label "Ensembl ID (\"Ornithorhynchus anatinus\")" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Ornithorhynchus anatinus' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2691 a owl:Class ; + rdfs:label "Ensembl ID ('Oryctolagus cuniculus')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryctolagus cuniculus' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2692 a owl:Class ; + rdfs:label "Ensembl ID ('Oryzias latipes')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Oryzias latipes' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2693 a owl:Class ; + rdfs:label "Ensembl ID ('Otolemur garnettii')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Otolemur garnettii' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2694 a owl:Class ; + rdfs:label "Ensembl ID ('Pan troglodytes')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Pan troglodytes' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2695 a owl:Class ; + rdfs:label "Ensembl ID ('Rattus norvegicus')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Rattus norvegicus' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2696 a owl:Class ; + rdfs:label "Ensembl ID ('Spermophilus tridecemlineatus')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Spermophilus tridecemlineatus' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2697 a owl:Class ; + rdfs:label "Ensembl ID ('Takifugu rubripes')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Takifugu rubripes' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2698 a owl:Class ; + rdfs:label "Ensembl ID ('Tupaia belangeri')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Tupaia belangeri' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2699 a owl:Class ; + rdfs:label "Ensembl ID ('Xenopus tropicalis')" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2610 ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl 'core' database ('Xenopus tropicalis' division)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2701 a owl:Class ; + rdfs:label "CATH node ID (family)" ; + :created_in "beta12orEarlier" ; + :example "2.10.10.10" ; + oboInOwl:hasDefinition "A code number identifying a family from the CATH database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1043 . + +:data_2702 a owl:Class ; + rdfs:label "Enzyme ID (CAZy)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an enzyme from the CAZy enzymes database." ; + oboInOwl:hasExactSynonym "CAZy ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2321 . + +:data_2704 a owl:Class ; + rdfs:label "Clone ID (IMAGE)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier assigned by the I.M.A.G.E. consortium to a clone (cloned molecular sequence)." ; + oboInOwl:hasExactSynonym "I.M.A.G.E. cloneID", + "IMAGE cloneID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1855, + :data_2091 . + +:data_2705 a owl:Class ; + rdfs:label "GO concept ID (cellular component)" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]{7}|GO:[0-9]{7}" ; + oboInOwl:hasDefinition "An identifier of a 'cellular component' concept from the Gene Ontology." ; + oboInOwl:hasExactSynonym "GO concept identifier (cellular compartment)" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1176 . + +:data_2706 a owl:Class ; + rdfs:label "Chromosome name (BioCyc)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a chromosome as used in the BioCyc database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0987 . + +:data_2709 a owl:Class ; + rdfs:label "CleanEx entry name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a gene expression profile from the CleanEx database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1080, + :data_2091 . + +:data_2710 a owl:Class ; + rdfs:label "CleanEx dataset code" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of (typically a list of) gene expression experiments catalogued in the CleanEx database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1078 . + +:data_2713 a owl:Class ; + rdfs:label "Protein ID (CORUM)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier for a protein complex from the CORUM database." ; + oboInOwl:hasExactSynonym "CORUM complex ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2714 a owl:Class ; + rdfs:label "CDD PSSM-ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of a position-specific scoring matrix from the CDD database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1115, + :data_2091 . + +:data_2715 a owl:Class ; + rdfs:label "Protein ID (CuticleDB)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier for a protein from the CuticleDB database." ; + oboInOwl:hasExactSynonym "CuticleDB ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2716 a owl:Class ; + rdfs:label "DBD ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a predicted transcription factor from the DBD database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2911 . + +:data_2719 a owl:Class ; + rdfs:label "dbProbe ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an oligonucleotide probe from the dbProbe database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2718 . + +:data_2720 a owl:Class ; + rdfs:label "Dinucleotide property" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Physicochemical property data for one or more dinucleotides." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2088 . + +:data_2721 a owl:Class ; + rdfs:label "DiProDB ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an dinucleotide property from the DiProDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2718 . + +:data_2722 a owl:Class ; + rdfs:label "Protein features report (disordered structure)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "disordered structure in a protein." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2723 a owl:Class ; + rdfs:label "Protein ID (DisProt)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier for a protein from the DisProt database." ; + oboInOwl:hasExactSynonym "DisProt ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2724 a owl:Class ; + rdfs:label "Embryo report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1713 ; + oboInOwl:hasDefinition "Annotation on an embryo or concerning embryological development." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2725 a owl:Class ; + rdfs:label "Ensembl transcript ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier for a gene transcript from the Ensembl database." ; + oboInOwl:hasExactSynonym "Transcript ID (Ensembl)" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2610, + :data_2769 . + +:data_2726 a owl:Class ; + rdfs:label "Inhibitor annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0962 ; + oboInOwl:hasDefinition "An informative report on one or more small molecules that are enzyme inhibitors." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2729 a owl:Class ; + rdfs:label "COGEME EST ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an EST sequence from the COGEME database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2728 . + +:data_2730 a owl:Class ; + rdfs:label "COGEME unisequence ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a unisequence from the COGEME database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "A unisequence is a single sequence assembled from ESTs." ; + rdfs:subClassOf :data_2091, + :data_2728 . + +:data_2731 a owl:Class ; + rdfs:label "Protein family ID (GeneFarm)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Accession number of an entry (protein family) from the GeneFarm database." ; + oboInOwl:hasExactSynonym "GeneFarm family ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2910 . + +:data_2733 a owl:Class ; + rdfs:label "Genus name (virus)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1870 ; + oboInOwl:hasDefinition "The name of a genus of viruses." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2734 a owl:Class ; + rdfs:label "Family name (virus)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2732 ; + oboInOwl:hasDefinition "The name of a family of viruses." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2735 a owl:Class ; + rdfs:label "Database name (SwissRegulon)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0957 ; + oboInOwl:hasDefinition "The name of a SwissRegulon database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2736 a owl:Class ; + rdfs:label "Sequence feature ID (SwissRegulon)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A feature identifier as used in the SwissRegulon database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "This can be name of a gene, the ID of a TFBS, or genomic coordinates in form \"chr:start..end\"." ; + rdfs:subClassOf :data_1015, + :data_2091 . + +:data_2737 a owl:Class ; + rdfs:label "FIG ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier of gene in the NMPDR database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "A FIG ID consists of four parts: a prefix, genome id, locus type and id number." ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_2738 a owl:Class ; + rdfs:label "Gene ID (Xenbase)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier of gene in the Xenbase database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_2739 a owl:Class ; + rdfs:label "Gene ID (Genolist)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier of gene in the Genolist database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_2740 a owl:Class ; + rdfs:label "Gene name (Genolist)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Name of an entry (gene) from the Genolist genes database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2741 a owl:Class ; + rdfs:label "ABS ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry (promoter) from the ABS database." ; + oboInOwl:hasExactSynonym "ABS identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2727 . + +:data_2742 a owl:Class ; + rdfs:label "AraC-XylS ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a transcription factor from the AraC-XylS database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2911 . + +:data_2743 a owl:Class ; + rdfs:label "Gene name (HUGO)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1026 ; + oboInOwl:hasDefinition "Name of an entry (gene) from the HUGO database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2744 a owl:Class ; + rdfs:label "Locus ID (PseudoCAP)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a locus from the PseudoCAP database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091 . + +:data_2745 a owl:Class ; + rdfs:label "Locus ID (UTR)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a locus from the UTR database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091 . + +:data_2746 a owl:Class ; + rdfs:label "MonosaccharideDB ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of a monosaccharide from the MonosaccharideDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2898 . + +:data_2747 a owl:Class ; + rdfs:label "Database name (CMD)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0957 ; + oboInOwl:hasDefinition "The name of a subdivision of the Collagen Mutation Database (CMD) database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2748 a owl:Class ; + rdfs:label "Database name (Osteogenesis)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0957 ; + oboInOwl:hasDefinition "The name of a subdivision of the Osteogenesis database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2751 a owl:Class ; + rdfs:label "GenomeReviews ID" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.26" ; + :oldParent :data_2091, + :data_2903 ; + oboInOwl:hasDefinition "An identifier of a particular genome." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2749 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2752 a owl:Class ; + rdfs:label "GlycoMap ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Identifier of an entry from the GlycoMapsDB (Glycosciences.de) database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2900 . + +:data_2753 a owl:Class ; + rdfs:label "Carbohydrate conformational map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A conformational energy map of the glycosidic linkages in a carbohydrate molecule." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3425 . + +:data_2755 a owl:Class ; + rdfs:label "Transcription factor name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a transcription factor." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1009, + :data_1077 . + +:data_2756 a owl:Class ; + rdfs:label "TCID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a membrane transport proteins from the transport classification database (TCDB)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2757 a owl:Class ; + rdfs:label "Pfam domain name" ; + :created_in "beta12orEarlier" ; + :regex "PF[0-9]{5}" ; + oboInOwl:hasDefinition "Name of a domain from the Pfam database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1131 . + +:data_2758 a owl:Class ; + rdfs:label "Pfam clan ID" ; + :created_in "beta12orEarlier" ; + :regex "CL[0-9]{4}" ; + oboInOwl:hasDefinition "Accession number of a Pfam clan." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2910 . + +:data_2759 a owl:Class ; + rdfs:label "Gene ID (VectorBase)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier for a gene from the VectorBase database." ; + oboInOwl:hasExactSynonym "VectorBase ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_2761 a owl:Class ; + rdfs:label "UTRSite ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the UTRSite database of regulatory motifs in eukaryotic UTRs." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1114 . + +:data_2763 a owl:Class ; + rdfs:label "Locus annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0916 ; + oboInOwl:hasDefinition "An informative report on a particular locus." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2764 a owl:Class ; + rdfs:label "Protein name (UniProt)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Official name of a protein as used in the UniProt database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1009 . + +:data_2765 a owl:Class ; + rdfs:label "Term ID list" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2872 ; + oboInOwl:hasDefinition "One or more terms from one or more controlled vocabularies which are annotations on an entity." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The concepts are typically provided as a persistent identifier or some other link the source ontologies. Evidence of the validity of the annotation might be included." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2766 a owl:Class ; + rdfs:label "HAMAP ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a protein family from the HAMAP database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2910 . + +:data_2767 a owl:Class ; + rdfs:label "Identifier with metadata" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "Basic information concerning an identifier of data (typically including the identifier itself). For example, a gene symbol with information concerning its provenance." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2768 a owl:Class ; + rdfs:label "Gene symbol annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "Annotation about a gene symbol." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2770 a owl:Class ; + rdfs:label "HIT ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an RNA transcript from the H-InvDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2769 . + +:data_2771 a owl:Class ; + rdfs:label "HIX ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier of gene cluster in the H-InvDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_2772 a owl:Class ; + rdfs:label "HPA antibody id" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a antibody from the HPA database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2773 a owl:Class ; + rdfs:label "IMGT/HLA ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a human major histocompatibility complex (HLA) or other protein from the IMGT/HLA database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2774 a owl:Class ; + rdfs:label "Gene ID (JCVI)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier of gene assigned by the J. Craig Venter Institute (JCVI)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_2775 a owl:Class ; + rdfs:label "Kinase name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a kinase protein." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1009 . + +:data_2776 a owl:Class ; + rdfs:label "ConsensusPathDB entity ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a physical entity from the ConsensusPathDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2917 . + +:data_2777 a owl:Class ; + rdfs:label "ConsensusPathDB entity name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a physical entity from the ConsensusPathDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099, + :data_2917 . + +:data_2778 a owl:Class ; + rdfs:label "CCAP strain number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The number of a strain of algae and protozoa from the CCAP database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2912 . + +:data_2780 a owl:Class ; + rdfs:label "Stock number (TAIR)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A stock number from The Arabidopsis information resource (TAIR)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2779 . + +:data_2781 a owl:Class ; + rdfs:label "REDIdb ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the RNA editing database (REDIdb)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1097, + :data_2091 . + +:data_2782 a owl:Class ; + rdfs:label "SMART domain name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a domain from the SMART database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1131 . + +:data_2783 a owl:Class ; + rdfs:label "Protein family ID (PANTHER)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Accession number of an entry (family) from the PANTHER database." ; + oboInOwl:hasExactSynonym "Panther family ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2910 . + +:data_2784 a owl:Class ; + rdfs:label "RNAVirusDB ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier for a virus from the RNAVirusDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "Could list (or reference) other taxa here from https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary." ; + rdfs:subClassOf :data_2091, + :data_2785 . + +:data_2786 a owl:Class ; + rdfs:label "NCBI Genome Project ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a genome project assigned by NCBI." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2903 . + +:data_2787 a owl:Class ; + rdfs:label "NCBI genome accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier of a whole genome assigned by the NCBI." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2903 . + +:data_2788 a owl:Class ; + rdfs:label "Sequence profile data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Data concerning, extracted from, or derived from the analysis of a sequence profile, such as its name, length, technical details about the profile or it's construction, the biological role or annotation, and so on." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0860 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2789 a owl:Class ; + rdfs:label "Protein ID (TopDB)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier for a membrane protein from the TopDB database." ; + oboInOwl:hasExactSynonym "TopDB ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2791 a owl:Class ; + rdfs:label "Reference map name (SWISS-2DPAGE)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a reference map gel from the SWISS-2DPAGE database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099, + :data_2790 . + +:data_2792 a owl:Class ; + rdfs:label "Protein ID (PeroxiBase)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier for a peroxidase protein from the PeroxiBase database." ; + oboInOwl:hasExactSynonym "PeroxiBase ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2793 a owl:Class ; + rdfs:label "SISYPHUS ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the SISYPHUS database of tertiary structure alignments." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1072, + :data_2091 . + +:data_2794 a owl:Class ; + rdfs:label "ORF ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of an open reading frame (catalogued in a database)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1893, + :data_2091, + :data_2795 . + +:data_2796 a owl:Class ; + rdfs:label "LINUCS ID" ; + :created_in "beta12orEarlier" ; + :regex "[1-9][0-9]*" ; + oboInOwl:hasDefinition "Identifier of an entry from the GlycosciencesDB database." ; + oboInOwl:hasExactSynonym "LInear Notation for Unique description of Carbohydrate Sequences ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:seeAlso ; + rdfs:subClassOf :data_2091, + :data_2900 . + +:data_2797 a owl:Class ; + rdfs:label "Protein ID (LGICdb)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier for a ligand-gated ion channel protein from the LGICdb database." ; + oboInOwl:hasExactSynonym "LGICdb ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2798 a owl:Class ; + rdfs:label "MaizeDB ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an EST sequence from the MaizeDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2728 . + +:data_2799 a owl:Class ; + rdfs:label "Gene ID (MfunGD)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier of gene in the MfunGD database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_2800 a owl:Class ; + rdfs:label "Orpha number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of a disease from the Orpha database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1622 ], + :data_1150, + :data_2091 . + +:data_2802 a owl:Class ; + rdfs:label "Protein ID (EcID)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier for a protein from the EcID database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2803 a owl:Class ; + rdfs:label "Clone ID (RefSeq)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier of a cDNA molecule catalogued in the RefSeq database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1098, + :data_1855 . + +:data_2804 a owl:Class ; + rdfs:label "Protein ID (ConoServer)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier for a cone snail toxin protein from the ConoServer database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_2805 a owl:Class ; + rdfs:label "GeneSNP ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a GeneSNP database entry." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2294 . + +:data_2831 a owl:Class ; + rdfs:label "Databank" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A flat-file (textual) data archive." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0957 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2832 a owl:Class ; + rdfs:label "Web portal" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A web site providing data (web pages) on a common theme to a HTTP client." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0958 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2835 a owl:Class ; + rdfs:label "Gene ID (VBASE2)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier for a gene from the VBASE2 database." ; + oboInOwl:hasExactSynonym "VBASE2 ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_2836 a owl:Class ; + rdfs:label "DPVweb ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier for a virus from the DPVweb database." ; + oboInOwl:hasExactSynonym "DPVweb virus ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2785 . + +:data_2837 a owl:Class ; + rdfs:label "Pathway ID (BioSystems)" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Identifier of a pathway from the BioSystems pathway database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2365 . + +:data_2838 a owl:Class ; + rdfs:label "Experimental data (proteomics)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2531 ; + oboInOwl:hasDefinition "Data concerning a proteomics experiment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2856 a owl:Class ; + rdfs:label "Structural distance matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Distances (values representing similarity) between a group of molecular structures." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2855 . + +:data_2857 a owl:Class ; + rdfs:label "Article metadata" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2526 ; + oboInOwl:hasDefinition "Bibliographic data concerning scientific article(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2866 a owl:Class ; + rdfs:label "Northern blot report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Northern Blot experiments." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2874 a owl:Class ; + rdfs:label "Sequence set (polymorphic)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1234 ; + oboInOwl:hasDefinition "A set of sub-sequences displaying some type of polymorphism, typically indicating the sequence in which they occur, their position and other metadata." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2875 a owl:Class ; + rdfs:label "DRCAT resource" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1883 ; + oboInOwl:hasDefinition "An entry (resource) from the DRCAT bioinformatics resource catalogue." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2878 a owl:Class ; + rdfs:label "Protein structural motif" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for a protein (3D) structural motif; any group of contiguous or non-contiguous amino acid residues but typically those forming a feature with a structural or functional role." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1460 . + +:data_2880 a owl:Class ; + rdfs:label "Secondary structure image" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2992 ; + oboInOwl:hasDefinition "Image of one or more molecular secondary structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2881 a owl:Class ; + rdfs:label "Secondary structure report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2085 ; + oboInOwl:hasDefinition "An informative report on general information, properties or features of one or more molecular secondary structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2882 a owl:Class ; + rdfs:label "DNA features" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1276 ; + oboInOwl:hasDefinition "DNA sequence-specific feature annotation (not in a feature table)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2883 a owl:Class ; + rdfs:label "RNA features report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0916 ; + oboInOwl:hasDefinition "Features concerning RNA or regions of DNA that encode an RNA molecule." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2886 a owl:Class ; + rdfs:label "Protein sequence record" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A protein sequence and associated metadata." ; + oboInOwl:hasExactSynonym "Sequence record (protein)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0849, + :data_2976 . + +:data_2887 a owl:Class ; + rdfs:label "Nucleic acid sequence record" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A nucleic acid sequence and associated metadata." ; + oboInOwl:hasExactSynonym "Nucleotide sequence record", + "Sequence record (nucleic acid)" ; + oboInOwl:hasNarrowSynonym "DNA sequence record", + "RNA sequence record" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0849, + :data_2977 . + +:data_2888 a owl:Class ; + rdfs:label "Protein sequence record (full)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A protein sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0849 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2889 a owl:Class ; + rdfs:label "Nucleic acid sequence record (full)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A nucleic acid sequence and comprehensive metadata (such as a feature table), typically corresponding to a full entry from a molecular sequence database." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0849 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2892 a owl:Class ; + rdfs:label "Cell type name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a type or group of cells." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099, + :data_2655 . + +:data_2896 a owl:Class ; + rdfs:label "Toxin name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a toxin." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099, + :data_2576 . + +:data_2899 a owl:Class ; + rdfs:label "Drug name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Common name of a drug." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0990, + :data_0993 . + +:data_2904 a owl:Class ; + rdfs:label "Map accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An accession of a map of a molecular sequence (deposited in a database)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2117 . + +:data_2913 a owl:Class ; + rdfs:label "Virus identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + :obsolete_since "1.26" ; + :oldParent :data_1869 ; + oboInOwl:hasDefinition "An accession of annotation on a (group of) viruses (catalogued in a database)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2785 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2916 a owl:Class ; + rdfs:label "DDBJ accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of an entry from the DDBJ sequence database." ; + oboInOwl:hasExactSynonym "DDBJ ID", + "DDBJ accession number", + "DDBJ identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1103 . + +:data_2925 a owl:Class ; + rdfs:label "Sequence data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2534 ; + oboInOwl:hasDefinition "Data concerning, extracted from, or derived from the analysis of molecular sequence(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2927 a owl:Class ; + rdfs:label "Codon usage" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0914 ; + oboInOwl:hasDefinition "Data concerning codon usage." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2954 a owl:Class ; + rdfs:label "Article report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0972, + :data_3779 ; + oboInOwl:hasDefinition "Data derived from the analysis of a scientific text such as a full text article from a scientific journal." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2957 a owl:Class ; + rdfs:label "Hopp and Woods plot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A Hopp and Woods plot of predicted antigenicity of a peptide or protein." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1534, + :data_2884 . + +:data_2958 a owl:Class ; + rdfs:label "Nucleic acid melting curve" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.21" ; + :oldParent :data_1583, + :data_2884 ; + oboInOwl:hasDefinition "A melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1583 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2959 a owl:Class ; + rdfs:label "Nucleic acid probability profile" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.21" ; + :oldParent :data_1583 ; + oboInOwl:hasDefinition "A probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1583 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2960 a owl:Class ; + rdfs:label "Nucleic acid temperature profile" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.21" ; + :oldParent :data_1583 ; + oboInOwl:hasDefinition "A temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1583 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2961 a owl:Class ; + rdfs:label "Gene regulatory network report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A report typically including a map (diagram) of a gene regulatory network." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2984 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2965 a owl:Class ; + rdfs:label "2D PAGE gel report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "An informative report on a two-dimensional (2D PAGE) gel." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2966 a owl:Class ; + rdfs:label "Oligonucleotide probe sets annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.14" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "General annotation on a set of oligonucleotide probes, such as the gene name with which the probe set is associated and which probes belong to the set." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2717 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2967 a owl:Class ; + rdfs:label "Microarray image" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2968 ; + oboInOwl:hasDefinition "An image from a microarray experiment which (typically) allows a visualisation of probe hybridisation and gene-expression data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2971 a owl:Class ; + rdfs:label "Workflow data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0949 ; + oboInOwl:hasDefinition "Data concerning a computational workflow." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2972 a owl:Class ; + rdfs:label "Workflow" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0949 ; + oboInOwl:hasDefinition "A computational workflow." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2973 a owl:Class ; + rdfs:label "Secondary structure data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2085 ; + oboInOwl:hasDefinition "Data concerning molecular secondary structure data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2974 a owl:Class ; + rdfs:label "Protein sequence (raw)" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - \"raw\" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata)." ; + :obsolete_since "1.23" ; + :oldParent :data_0848 ; + oboInOwl:hasDefinition "A raw protein sequence (string of characters)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2976 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2980 a owl:Class ; + rdfs:label "Protein classification" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19." ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "An informative report concerning the classification of protein sequences or structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2981 a owl:Class ; + rdfs:label "Sequence motif data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Data concerning specific or conserved pattern in molecular sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0860 ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2982 a owl:Class ; + rdfs:label "Sequence profile data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1354 ; + oboInOwl:hasDefinition "Data concerning models representing a (typically multiple) sequence alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2983 a owl:Class ; + rdfs:label "Pathway or network data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2600, + :data_2984 ; + oboInOwl:hasDefinition "Data concerning a specific biological pathway or network." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2986 a owl:Class ; + rdfs:label "Nucleic acid classification" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "Was deprecated since 1.5, but not correctly (fully) obsoleted until 1.19." ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3148 ; + oboInOwl:hasDefinition "Data concerning the classification of nucleic acid sequences or structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2987 a owl:Class ; + rdfs:label "Classification report" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2048 ; + oboInOwl:hasDefinition "A report on a classification of molecular sequences, structures or other entities." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This can include an entire classification, components such as classifiers, assignments of entities to a classification and so on." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2989 a owl:Class ; + rdfs:label "Protein features report (key folding sites)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "key residues involved in protein folding." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2994 a owl:Class ; + rdfs:label "Phylogenetic character weights" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Weights for sequence positions or characters in phylogenetic analysis where zero is defined as unweighted." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2523 . + +:data_3022 a owl:Class ; + rdfs:label "NCBI genetic code ID" ; + :created_in "beta12orEarlier" ; + :example "16" ; + :regex "[1-9][0-9]?" ; + oboInOwl:hasDefinition "Identifier of a genetic code in the NCBI list of genetic codes." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2127 . + +:data_3026 a owl:Class ; + rdfs:label "GO concept name (biological process)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2339 ; + oboInOwl:hasDefinition "The name of a concept for a biological process from the GO ontology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3027 a owl:Class ; + rdfs:label "GO concept name (molecular function)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_2339 ; + oboInOwl:hasDefinition "The name of a concept for a molecular function from the GO ontology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3028 a owl:Class ; + rdfs:label "Taxonomy" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning the classification, identification and naming of organisms." ; + oboInOwl:hasExactSynonym "Taxonomic data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0084 ], + :data_0006 . + +:data_3029 a owl:Class ; + rdfs:label "Protein ID (EMBL/GenBank/DDBJ)" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "EMBL/GENBANK/DDBJ coding feature protein identifier, issued by International collaborators." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "This qualifier consists of a stable ID portion (3+5 format with 3 position letters and 5 numbers) plus a version number after the decimal point. When the protein sequence encoded by the CDS changes, only the version number of the /protein_id value is incremented; the stable part of the /protein_id remains unchanged and as a result will permanently be associated with a given protein; this qualifier is valid only on CDS features which translate into a valid protein." ; + rdfs:subClassOf :data_2091, + :data_2907 . + +:data_3031 a owl:Class ; + rdfs:label "Core data" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A type of data that (typically) corresponds to entries from the primary biological databases and which is (typically) the primary input or output of a tool, i.e. the data the tool processes or generates, as distinct from metadata and identifiers which describe and identify such core data, parameters that control the behaviour of tools, reports of derivative data generated by tools and annotation." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0006 ; + rdfs:comment "Core data entities typically have a format and may be identified by an accession number." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3085 a owl:Class ; + rdfs:label "Protein sequence composition" ; + :created_in "beta13" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A report (typically a table) on character or word composition / frequency of protein sequence(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1261 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3086 a owl:Class ; + rdfs:label "Nucleic acid sequence composition (report)" ; + :created_in "beta13" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A report (typically a table) on character or word composition / frequency of nucleic acid sequence(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1261 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3101 a owl:Class ; + rdfs:label "Protein domain classification node" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "A node from a classification of protein structural domain(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3102 a owl:Class ; + rdfs:label "CAS number" ; + :created_in "beta13" ; + :deprecation_comment "Duplicates http://edamontology.org/data_1002, hence deprecated." ; + :obsolete_since "1.23" ; + :oldParent :data_2895 ; + oboInOwl:hasDefinition "Unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1002 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3103 a owl:Class ; + rdfs:label "ATC code" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Unique identifier of a drug conforming to the Anatomical Therapeutic Chemical (ATC) Classification System, a drug classification system controlled by the WHO Collaborating Centre for Drug Statistics Methodology (WHOCC)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2895 . + +:data_3104 a owl:Class ; + rdfs:label "UNII" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "A unique, unambiguous, alphanumeric identifier of a chemical substance as catalogued by the Substance Registration System of the Food and Drug Administration (FDA)." ; + oboInOwl:hasExactSynonym "Unique Ingredient Identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1086 . + +:data_3105 a owl:Class ; + rdfs:label "Geotemporal metadata" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0006 ; + oboInOwl:hasDefinition "Basic information concerning geographical location or time." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3107 a owl:Class ; + rdfs:label "Sequence feature name" ; + :created_in "beta13" ; + :obsolete_since "1.15" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1022 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3116 a owl:Class ; + rdfs:label "Microarray protocol annotation" ; + :created_in "beta13" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Annotation on laboratory and/or data processing protocols used in an microarray experiment." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:comment "This might describe e.g. the normalisation methods used to process the raw data." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3119 a owl:Class ; + rdfs:label "Sequence features (compositionally-biased regions)" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1261 ; + oboInOwl:hasDefinition "A report of regions in a molecular sequence that are biased to certain characters." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3122 a owl:Class ; + rdfs:label "Nucleic acid features (difference and change)" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A report on features in a nucleic acid sequence that indicate changes to or differences between sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1276 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3129 a owl:Class ; + rdfs:label "Protein features report (repeats)" ; + :created_in "beta13" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "short repetitive subsequences (repeat sequences) in a protein sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1277 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3130 a owl:Class ; + rdfs:label "Sequence motif matches (protein)" ; + :created_in "beta13" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more protein sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0858 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3131 a owl:Class ; + rdfs:label "Sequence motif matches (nucleic acid)" ; + :created_in "beta13" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Report on the location of matches to profiles, motifs (conserved or functional patterns) or other signatures in one or more nucleic acid sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_0858 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3132 a owl:Class ; + rdfs:label "Nucleic acid features (d-loop)" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3128 ; + oboInOwl:hasDefinition "A report on displacement loops in a mitochondrial DNA sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A displacement loop is a region of mitochondrial DNA in which one of the strands is displaced by an RNA molecule." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3133 a owl:Class ; + rdfs:label "Nucleic acid features (stem loop)" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3128 ; + oboInOwl:hasDefinition "A report on stem loops in a DNA sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A stem loop is a hairpin structure; a double-helical structure formed when two complementary regions of a single strand of RNA or DNA molecule form base-pairs." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3137 a owl:Class ; + rdfs:label "Non-coding RNA" ; + :created_in "beta13" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "features of non-coding or functional RNA molecules, including tRNA and rRNA." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1276 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3138 a owl:Class ; + rdfs:label "Transcriptional features (report)" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3134 ; + oboInOwl:hasDefinition "Features concerning transcription of DNA into RNA including the regulation of transcription." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This includes promoters, CAAT signals, TATA signals, -35 signals, -10 signals, GC signals, primer binding sites for initiation of transcription or reverse transcription, enhancer, attenuator, terminators and ribosome binding sites." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3140 a owl:Class ; + rdfs:label "Nucleic acid features (immunoglobulin gene structure)" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0916 ; + oboInOwl:hasDefinition "A report on predicted or actual immunoglobulin gene structure including constant, switch and variable regions and diversity, joining and variable segments." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3141 a owl:Class ; + rdfs:label "SCOP class" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a 'class' node from the SCOP database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3142 a owl:Class ; + rdfs:label "SCOP fold" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a 'fold' node from the SCOP database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3143 a owl:Class ; + rdfs:label "SCOP superfamily" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a 'superfamily' node from the SCOP database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3144 a owl:Class ; + rdfs:label "SCOP family" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a 'family' node from the SCOP database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3145 a owl:Class ; + rdfs:label "SCOP protein" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a 'protein' node from the SCOP database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3146 a owl:Class ; + rdfs:label "SCOP species" ; + :created_in "beta13" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0907 ; + oboInOwl:hasDefinition "Information on a 'species' node from the SCOP database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3147 a owl:Class ; + rdfs:label "Mass spectrometry experiment" ; + :created_in "beta13" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "mass spectrometry experiments." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3154 a owl:Class ; + rdfs:label "Protein alignment" ; + :created_in "beta13" ; + :obsolete_since "1.24" ; + :oldParent :operation_2928 ; + oboInOwl:consider :data_0878, + :data_1384, + :data_1481 ; + oboInOwl:hasDefinition "An alignment of protein sequences and/or structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3165 a owl:Class ; + rdfs:label "NGS experiment" ; + :created_in "1.0" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "sequencing experiment, including samples, sampling, preparation, sequencing, and analysis." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3231 a owl:Class ; + rdfs:label "GWAS report" ; + :created_in "1.1" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Report concerning genome-wide association study experiments." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3238 a owl:Class ; + rdfs:label "Cell type ontology ID" ; + :created_in "1.2" ; + :regex "CL_[0-9]{7}" ; + oboInOwl:hasDefinition "Cell type ontology concept ID." ; + oboInOwl:hasExactSynonym "CL ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1087, + :data_2091, + :data_2893 . + +:data_3264 a owl:Class ; + rdfs:label "COSMIC ID" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Identifier of a COSMIC database entry." ; + oboInOwl:hasExactSynonym "COSMIC identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2294 . + +:data_3265 a owl:Class ; + rdfs:label "HGMD ID" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Identifier of a HGMD database entry." ; + oboInOwl:hasExactSynonym "HGMD identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2294 . + +:data_3266 a owl:Class ; + rdfs:label "Sequence assembly ID" ; + :created_in "1.3" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Unique identifier of sequence assembly." ; + oboInOwl:hasNarrowSynonym "Sequence assembly version" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1064 . + +:data_3268 a owl:Class ; + rdfs:label "Sequence feature type" ; + :created_in "1.3" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0842 ; + oboInOwl:hasDefinition "A label (text token) describing a type of sequence feature such as gene, transcript, cds, exon, repeat, simple, misc, variation, somatic variation, structural variation, somatic structural variation, constrained or regulatory." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3269 a owl:Class ; + rdfs:label "Gene homology (report)" ; + :created_in "1.3" ; + :obsolete_since "1.5" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_3148 ; + oboInOwl:hasDefinition "An informative report on gene homologues between species." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3270 a owl:Class ; + rdfs:label "Ensembl gene tree ID" ; + :created_in "1.3" ; + :example "ENSGT00390000003602" ; + oboInOwl:hasDefinition "Unique identifier for a gene tree from the Ensembl database." ; + oboInOwl:hasExactSynonym "Ensembl ID (gene tree)" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1068, + :data_2091, + :data_2610 . + +:data_3271 a owl:Class ; + rdfs:label "Gene tree" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "A phylogenetic tree that is an estimate of the character's phylogeny." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0872 . + +:data_3272 a owl:Class ; + rdfs:label "Species tree" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "A phylogenetic tree that reflects phylogeny of the taxa from which the characters (used in calculating the tree) were sampled." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0872 . + +:data_3273 a owl:Class ; + rdfs:label "Sample ID" ; + :created_in "1.3" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Name or other identifier of an entry from a biosample database." ; + oboInOwl:hasExactSynonym "Sample accession" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_3113 ], + :data_0976 . + +:data_3274 a owl:Class ; + rdfs:label "MGI accession" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Identifier of an object from the MGI database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109 . + +:data_3275 a owl:Class ; + rdfs:label "Phenotype name" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Name of a phenotype." ; + oboInOwl:hasExactSynonym "Phenotype", + "Phenotypes" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099 . + +:data_3356 a owl:Class ; + rdfs:label "Hidden Markov model"@en ; + :created_in "1.4" ; + :obsolete_since "1.15" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1364 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3426 a owl:Class ; + rdfs:label "Proteomics experiment report" ; + :created_in "1.5" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Report concerning proteomics experiments." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3427 a owl:Class ; + rdfs:label "RNAi report" ; + :created_in "1.5" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "RNAi experiments." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3428 a owl:Class ; + rdfs:label "Simulation experiment report" ; + :created_in "1.5" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2531 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3442 a owl:Class ; + rdfs:label "MRI image" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "An imaging technique that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body." ; + oboInOwl:hasExactSynonym "MRT image", + "Magnetic resonance imaging image", + "Magnetic resonance tomography image", + "NMRI image", + "Nuclear magnetic resonance imaging image" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3384 ], + :data_3424 . + +:data_3449 a owl:Class ; + rdfs:label "Cell migration track image" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "An image from a cell migration track assay." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2229 ], + :data_2968 . + +:data_3451 a owl:Class ; + rdfs:label "Rate of association" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Rate of association of a protein with another protein or some other molecule." ; + oboInOwl:hasExactSynonym "kon" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897 . + +:data_3479 a owl:Class ; + rdfs:label "Gene order" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Multiple gene identifiers in a specific order." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Such data are often used for genome rearrangement tools and phylogenetic tree labeling." ; + rdfs:subClassOf :data_2082 . + +:data_3490 a owl:Class ; + rdfs:label "Chemical structure sketch" ; + :created_in "1.8" ; + :obsolete_since "1.21" ; + :oldParent :data_1712 ; + oboInOwl:hasDefinition "A sketch of a small molecule made with some specialised drawing package." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_1712 ; + rdfs:comment "Chemical structure sketches are used for presentational purposes but also as inputs to various analysis software." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3492 a owl:Class ; + rdfs:label "Nucleic acid signature" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "An informative report about a specific or conserved nucleic acid sequence pattern." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2762 . + +:data_3496 a owl:Class ; + rdfs:label "RNA sequence (raw)" ; + :created_in "1.8" ; + :deprecation_comment "Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - \"raw\" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata)." ; + :obsolete_since "1.23" ; + :oldParent :data_2975 ; + oboInOwl:hasDefinition "A raw RNA sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_3495 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3497 a owl:Class ; + rdfs:label "DNA sequence (raw)" ; + :created_in "1.8" ; + :deprecation_comment "Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - \"raw\" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata)." ; + :obsolete_since "1.23" ; + :oldParent :data_2975 ; + oboInOwl:hasDefinition "A raw DNA sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_3494 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_3509 a owl:Class ; + rdfs:label "Ontology mapping" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "A mapping of supplied textual terms or phrases to ontology concepts (URIs)." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2093 . + +:data_3546 a owl:Class ; + rdfs:label "Image metadata" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "Any data concerning a specific biological or biomedical image." ; + oboInOwl:hasExactSynonym "Image-associated data", + "Image-related data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This can include basic provenance and technical information about the image, scientific annotation and so on." ; + rdfs:subClassOf :data_2048 . + +:data_3558 a owl:Class ; + rdfs:label "Clinical trial report" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "A human-readable collection of information concerning a clinical trial." ; + oboInOwl:hasExactSynonym "Clinical trial information" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2048 . + +:data_3568 a owl:Class ; + rdfs:label "Gene Expression Atlas Experiment ID" ; + :created_in "1.10" ; + oboInOwl:hasDefinition "Accession number of an entry from the Gene Expression Atlas." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1078 . + +:data_3668 a owl:Class ; + rdfs:label "Disease name" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "The name of some disease." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099, + :data_3667 . + +:data_3670 a owl:Class ; + rdfs:label "Online course" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "A training course available for use on the Web." ; + oboInOwl:hasExactSynonym "On-line course" ; + oboInOwl:hasNarrowSynonym "MOOC", + "Massive open online course" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3669 . + +:data_3718 a owl:Class ; + rdfs:label "Pathogenicity report" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "Information about the ability of an organism to cause disease in a corresponding host." ; + oboInOwl:hasExactSynonym "Pathogenicity" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3716 . + +:data_3719 a owl:Class ; + rdfs:label "Biosafety classification" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "Information about the biosafety classification of an organism according to corresponding law." ; + oboInOwl:hasExactSynonym "Biosafety level" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3716 . + +:data_3720 a owl:Class ; + rdfs:label "Geographic location" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "A report about localisation of the isolaton of biological material e.g. country or coordinates." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3717 . + +:data_3721 a owl:Class ; + rdfs:label "Isolation source" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "A report about any kind of isolation source of biological material e.g. blood, water, soil." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3717 . + +:data_3722 a owl:Class ; + rdfs:label "Physiology parameter" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "Experimentally determined parameter of the physiology of an organism, e.g. substrate spectrum." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3108 . + +:data_3723 a owl:Class ; + rdfs:label "Morphology parameter" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "Experimentally determined parameter of the morphology of an organism, e.g. size & shape." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3108 . + +:data_3724 a owl:Class ; + rdfs:label "Cultivation parameter" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "Experimental determined parameter for the cultivation of an organism." ; + oboInOwl:hasExactSynonym "Cultivation conditions" ; + oboInOwl:hasNarrowSynonym "Carbon source", + "Culture media composition", + "Nitrogen source", + "Salinity", + "Temperature", + "pH value" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3108 . + +:data_3733 a owl:Class ; + rdfs:label "Flow cell identifier" ; + :created_in "1.15" ; + oboInOwl:hasDefinition "An identifier of a flow cell of a sequencing machine." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A flow cell is used to immobilise, amplify and sequence millions of molecules at once. In Illumina machines, a flowcell is composed of 8 \"lanes\" which allows 8 experiments in a single analysis." ; + rdfs:subClassOf :data_3732 . + +:data_3734 a owl:Class ; + rdfs:label "Lane identifier" ; + :created_in "1.15" ; + oboInOwl:hasDefinition "An identifier of a lane within a flow cell of a sequencing machine, within which millions of sequences are immobilised, amplified and sequenced." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3732 . + +:data_3735 a owl:Class ; + rdfs:label "Run number" ; + :created_in "1.15" ; + oboInOwl:hasDefinition "A number corresponding to the number of an analysis performed by a sequencing machine. For example, if it's the 13th analysis, the run is 13." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3732 . + +:data_3737 a owl:Class ; + rdfs:label "Alpha diversity data" ; + :created_in "1.15" ; + oboInOwl:hasDefinition "The mean species diversity in sites or habitats at a local scale." ; + oboInOwl:hasExactSynonym "α-diversity" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3707 . + +:data_3738 a owl:Class ; + rdfs:label "Beta diversity data" ; + :created_in "1.15" ; + oboInOwl:hasDefinition "The ratio between regional and local species diversity." ; + oboInOwl:hasExactSynonym "True beta diversity", + "β-diversity" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3707 . + +:data_3739 a owl:Class ; + rdfs:label "Gamma diversity data" ; + :created_in "1.15" ; + oboInOwl:hasDefinition "The total species diversity in a landscape." ; + oboInOwl:hasExactSynonym "ɣ-diversity" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3707 . + +:data_3743 a owl:Class ; + rdfs:label "Ordination plot" ; + :created_in "1.15" ; + oboInOwl:hasDefinition "A plot in which community data (e.g. species abundance data) is summarised. Similar species and samples are plotted close together, and dissimilar species and samples are plotted placed far apart." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897, + :data_2884 . + +:data_3756 a owl:Class ; + rdfs:label "Localisation score" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "Score for localization of one or more post-translational modifications in peptide sequence measured by mass spectrometry." ; + oboInOwl:hasNarrowSynonym "False localisation rate", + "PTM localisation", + "PTM score" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1772 . + +:data_3757 a owl:Class ; + rdfs:label "Unimod ID" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "Identifier of a protein modification catalogued in the Unimod database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2618 . + +:data_3759 a owl:Class ; + rdfs:label "ProteomeXchange ID" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "Identifier for mass spectrometry proteomics data in the proteomexchange.org repository." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1078 . + +:data_3769 a owl:Class ; + rdfs:label "BRENDA ontology concept ID" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "An identifier of a concept from the BRENDA ontology." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1087, + :data_2091 . + +:data_3807 a owl:Class ; + rdfs:label "EM Movie" ; + :created_in "1.19" ; + oboInOwl:hasDefinition "Raw DDD movie acquisition from electron microscopy." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1317 ], + :data_3424 . + +:data_3808 a owl:Class ; + rdfs:label "EM Micrograph" ; + :created_in "1.19" ; + oboInOwl:hasDefinition "Raw acquisition from electron microscopy or average of an aligned DDD movie." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1317 ], + :data_3424 . + +:data_3842 a owl:Class ; + rdfs:label "Molecular simulation data" ; + :created_in "1.21" ; + oboInOwl:hasDefinition "Data coming from molecular simulations, computer \"experiments\" on model molecules." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Typically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic)." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0081 ], + :data_0006 . + +:data_3856 a owl:Class ; + rdfs:label "RNA central ID" ; + :created_in "1.21" ; + oboInOwl:hasDefinition "Identifier of an entry from the RNA central database of annotated human miRNAs." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "There are canonical and taxon-specific forms of RNAcentral ID. Canonical form e.g. urs_9or10digits identifies an RNA sequence (within the RNA central database) which may appear in multiple sequences. Taxon-specific form identifies a sequence in the specific taxon (e.g. urs_9or10digits_taxonID)." ; + rdfs:subClassOf :data_1097, + :data_2091 . + +:data_3861 a owl:Class ; + rdfs:label "Electronic health record" ; + :created_in "1.21" ; + oboInOwl:hasDefinition "A human-readable systematic collection of patient (or population) health information in a digital format." ; + oboInOwl:hasExactSynonym "EHR", + "EMR", + "Electronic medical record" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2048 . + +:data_3871 a owl:Class ; + rdfs:label "Forcefield parameters" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Force field parameters: charges, masses, radii, bond lengths, bond dihedrals, etc. define the structural molecular system, and are essential for the proper description and simulation of a molecular system." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3869 . + +:data_3905 a owl:Class ; + rdfs:label "Histogram" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Visualization of distribution of quantitative data, e.g. expression data, by histograms, violin plots and density plots." ; + oboInOwl:hasExactSynonym "Density plot" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2884 . + +:data_3914 a owl:Class ; + rdfs:label "Quality control report" ; + :created_in "1.23" ; + oboInOwl:hasDefinition "Report of the quality control review that was made of factors involved in a procedure." ; + oboInOwl:hasExactSynonym "QC metrics", + "QC report", + "Quality control metrics" ; + rdfs:subClassOf :data_2048 . + +:data_3917 a owl:Class ; + rdfs:label "Count matrix" ; + :created_in "1.23" ; + oboInOwl:hasDefinition "A table of unnormalized values representing summarised read counts per genomic region (e.g. gene, transcript, peak)." ; + oboInOwl:hasExactSynonym "Read count matrix" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2082 . + +:data_3924 a owl:Class ; + rdfs:label "DNA structure alignment" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Alignment (superimposition) of DNA tertiary (3D) structures." ; + oboInOwl:hasExactSynonym "Structure alignment (DNA)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1482 . + +:data_3949 a owl:Class ; + rdfs:label "Profile HMM" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "A profile HMM is a variant of a Hidden Markov model that is derived specifically from a set of (aligned) biological sequences. Profile HMMs provide the basis for a position-specific scoring system, which can be used to align sequences and search databases for related sequences." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:seeAlso ; + rdfs:subClassOf :data_1354, + :data_1364 . + +:data_3952 a owl:Class ; + rdfs:label "Pathway ID (WikiPathways)" ; + :created_in "1.24" ; + :documentation ; + :regex "WP[0-9]+" ; + oboInOwl:hasDefinition "Identifier of a pathway from the WikiPathways pathway database." ; + oboInOwl:hasExactSynonym "WikiPathways ID", + "WikiPathways pathway ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109, + :data_2365 . + +:data_3953 a owl:Class ; + rdfs:label "Pathway overrepresentation data" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "A ranked list of pathways, each associated with z-score, p-value or similar, concerning or derived from the analysis of e.g. a set of genes or proteins." ; + oboInOwl:hasExactSynonym "Pathway analysis results", + "Pathway enrichment report", + "Pathway over-representation report", + "Pathway report", + "Pathway term enrichment report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1775 ], + :data_3753 . + +:data_4022 a owl:Class ; + rdfs:label "ORCID Identifier" ; + :created_in "1.26" ; + :documentation , + ; + :regex "\\d{4}-\\d{4}-\\d{4}-\\d{3}(\\d|X)" ; + oboInOwl:hasDefinition "Identifier of a researcher registered with the ORCID database. Used to identify author IDs." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:seeAlso ; + rdfs:subClassOf :data_1881 . + +:deprecation_comment a owl:AnnotationProperty ; + rdfs:label "deprecation_comment" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "A comment explaining why the comment should be or was deprecated, including name of person commenting (jison, mkalas etc.)." ; + oboInOwl:inSubset :properties . + +:documentation a owl:AnnotationProperty ; + rdfs:label "Documentation" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "'Documentation' trailing modifier (qualifier, 'documentation') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to a page with explanation, description, documentation, or specification of the given data format." ; + oboInOwl:hasRelatedSynonym "Specification" ; + oboInOwl:inSubset :properties . + +:file_extension a owl:AnnotationProperty ; + rdfs:label "File extension" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "'File extension' concept property ('file_extension' metadata tag) lists examples of usual file extensions of formats." ; + oboInOwl:inSubset :properties ; + rdfs:comment "N.B.: File extensions that are not correspondigly defined at http://filext.com are recorded in EDAM only if not in conflict with http://filext.com, and/or unique and usual within life-science computing.", + "Separated by bar ('|'), without a dot ('.') prefix, preferably not all capital characters." . + +:format_1197 a owl:Class ; + rdfs:label "InChI" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Chemical structure specified in IUPAC International Chemical Identifier (InChI) line notation." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2035, + :format_2330 . + +:format_1198 a owl:Class ; + rdfs:label "mf" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Chemical structure specified by Molecular Formula (MF), including a count of each element in a compound." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The general MF query format consists of a series of valid atomic symbols, with an optional number or range." ; + rdfs:subClassOf :format_2035, + :format_2330 . + +:format_1199 a owl:Class ; + rdfs:label "InChIKey" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The InChIKey (hashed InChI) is a fixed length (25 character) condensed digital representation of an InChI chemical structure specification. It uniquely identifies a chemical compound." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "An InChIKey identifier is not human- nor machine-readable but is more suitable for web searches than an InChI chemical structure specification." ; + rdfs:subClassOf :format_2035, + :format_2330 . + +:format_1200 a owl:Class ; + rdfs:label "smarts" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "SMILES ARbitrary Target Specification (SMARTS) format for chemical structure specification, which is a subset of the SMILES line notation." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1196 . + +:format_1209 a owl:Class ; + rdfs:label "consensus" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for the consensus of two or more molecular sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2095, + :format_2097 . + +:format_1211 a owl:Class ; + rdfs:label "unambiguous pure nucleotide" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a nucleotide sequence (characters ACGTU only) with possible unknown positions but without ambiguity or non-sequence characters ." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1206, + :format_1207 . + +:format_1214 a owl:Class ; + rdfs:label "unambiguous pure dna" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a DNA sequence (characters ACGT only) with possible unknown positions but without ambiguity or non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1206, + :format_1212 . + +:format_1215 a owl:Class ; + rdfs:label "pure dna" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a DNA sequence with possible ambiguity and unknown positions but without non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1210, + :format_1212 . + +:format_1216 a owl:Class ; + rdfs:label "unambiguous pure rna sequence" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for an RNA sequence (characters ACGU only) with possible unknown positions but without ambiguity or non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1206, + :format_1213 . + +:format_1217 a owl:Class ; + rdfs:label "pure rna" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for an RNA sequence with possible ambiguity and unknown positions but without non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1210, + :format_1213 . + +:format_1218 a owl:Class ; + rdfs:label "unambiguous pure protein" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for any protein sequence with possible unknown positions but without ambiguity or non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1206, + :format_1208 . + +:format_1219 a owl:Class ; + rdfs:label "pure protein" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for any protein sequence with possible ambiguity and unknown positions but without non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1208, + :format_2094 . + +:format_1228 a owl:Class ; + rdfs:label "UniGene entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of an entry from UniGene." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A UniGene entry includes a set of transcript sequences assigned to the same transcription locus (gene or expressed pseudogene), with information on protein similarities, gene expression, cDNA clone reagents, and genomic location." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1247 a owl:Class ; + rdfs:label "COG sequence cluster format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of an entry from the COG database of clusters of (related) protein sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1248 a owl:Class ; + rdfs:label "EMBL feature location" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format for sequence positions (feature location) as used in DDBJ/EMBL/GenBank database." ; + oboInOwl:hasExactSynonym "Feature location" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2078, + :format_2330 . + +:format_1295 a owl:Class ; + rdfs:label "quicktandem" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Report format for tandem repeats in a nucleotide sequence (format generated by the Sanger Centre quicktandem program)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2155, + :format_2330 . + +:format_1296 a owl:Class ; + rdfs:label "Sanger inverted repeats" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Report format for inverted repeats in a nucleotide sequence (format generated by the Sanger Centre inverted program)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2155, + :format_2330 . + +:format_1297 a owl:Class ; + rdfs:label "EMBOSS repeat" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Report format for tandem repeats in a sequence (an EMBOSS report format)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2155, + :format_2330 . + +:format_1316 a owl:Class ; + rdfs:label "est2genome format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of a report on exon-intron structure generated by EMBOSS est2genome." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2031, + :format_2330 . + +:format_1318 a owl:Class ; + rdfs:label "restrict format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Report format for restriction enzyme recognition sites used by EMBOSS restrict program." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2158, + :format_2330 . + +:format_1319 a owl:Class ; + rdfs:label "restover format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Report format for restriction enzyme recognition sites used by EMBOSS restover program." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2158, + :format_2330 . + +:format_1320 a owl:Class ; + rdfs:label "REBASE restriction sites" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Report format for restriction enzyme recognition sites used by REBASE database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2158, + :format_2330 . + +:format_1332 a owl:Class ; + rdfs:label "FASTA search results format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of results of a sequence database search using FASTA." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This includes (typically) score data, alignment data and a histogram (of observed and expected distribution of E values.)" ; + rdfs:subClassOf :format_2066, + :format_2330 . + +:format_1334 a owl:Class ; + rdfs:label "mspcrunch" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of results of a sequence database search using some variant of MSPCrunch." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2066, + :format_2330 . + +:format_1335 a owl:Class ; + rdfs:label "Smith-Waterman format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of results of a sequence database search using some variant of Smith Waterman." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2066, + :format_2330 . + +:format_1336 a owl:Class ; + rdfs:label "dhf" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of EMBASSY domain hits file (DHF) of hits (sequences) with domain classification information." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The hits are relatives to a SCOP or CATH family and are found from a search of a sequence database." ; + rdfs:subClassOf :format_2066, + :format_2330 . + +:format_1337 a owl:Class ; + rdfs:label "lhf" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of EMBASSY ligand hits file (LHF) of database hits (sequences) with ligand classification information." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The hits are putative ligand-binding sequences and are found from a search of a sequence database." ; + rdfs:subClassOf :format_2066, + :format_2330 . + +:format_1342 a owl:Class ; + rdfs:label "InterPro protein view report format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of results of a search of the InterPro database showing matches of query protein sequence(s) to InterPro entries." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The report includes a classification of regions in a query protein sequence which are assigned to a known InterPro protein family or group." ; + rdfs:subClassOf :format_1341 . + +:format_1343 a owl:Class ; + rdfs:label "InterPro match table format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of results of a search of the InterPro database showing matches between protein sequence(s) and signatures for an InterPro entry." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The table presents matches between query proteins (rows) and signature methods (columns) for this entry. Alternatively the sequence(s) might be from from the InterPro entry itself. The match position in the protein sequence and match status (true positive, false positive etc) are indicated." ; + rdfs:subClassOf :format_1341 . + +:format_1349 a owl:Class ; + rdfs:label "HMMER Dirichlet prior" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Dirichlet distribution HMMER format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2074, + :format_2330 . + +:format_1350 a owl:Class ; + rdfs:label "MEME Dirichlet prior" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Dirichlet distribution MEME format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2074, + :format_2330 . + +:format_1351 a owl:Class ; + rdfs:label "HMMER emission and transition" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of a report from the HMMER package on the emission and transition counts of a hidden Markov model." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2075, + :format_2330 . + +:format_1356 a owl:Class ; + rdfs:label "prosite-pattern" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of a regular expression pattern from the Prosite database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2068, + :format_2330 . + +:format_1357 a owl:Class ; + rdfs:label "EMBOSS sequence pattern" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of an EMBOSS sequence pattern." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2068, + :format_2330 . + +:format_1360 a owl:Class ; + rdfs:label "meme-motif" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A motif in the format generated by the MEME program." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2068, + :format_2330 . + +:format_1366 a owl:Class ; + rdfs:label "prosite-profile" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Sequence profile (sequence classifier) format used in the PROSITE database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2069, + :format_2330 . + +:format_1367 a owl:Class ; + rdfs:label "JASPAR format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A profile (sequence classifier) in the format used in the JASPAR database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2069, + :format_2330 . + +:format_1369 a owl:Class ; + rdfs:label "MEME background Markov model" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of the model of random sequences used by MEME." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2072, + :format_2330 . + +:format_1391 a owl:Class ; + rdfs:label "HMMER-aln" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "FASTA-style format for multiple sequences aligned by HMMER package to an HMM." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2200, + :format_2330, + :format_2554 . + +:format_1392 a owl:Class ; + rdfs:label "DIALIGN format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of multiple sequences aligned by DIALIGN package." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2554 . + +:format_1393 a owl:Class ; + rdfs:label "daf" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "EMBASSY 'domain alignment file' (DAF) format, containing a sequence alignment of protein domains belonging to the same SCOP or CATH family." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The format is clustal-like and includes annotation of domain family classification information." ; + rdfs:subClassOf :format_2330, + :format_2554 . + +:format_1419 a owl:Class ; + rdfs:label "Sequence-MEME profile alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format for alignment of molecular sequences to MEME profiles (position-dependent scoring matrices) as generated by the MAST tool from the MEME package." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2014, + :format_2330 . + +:format_1421 a owl:Class ; + rdfs:label "HMMER profile alignment (sequences versus HMMs)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format used by the HMMER package for an alignment of a sequence against a hidden Markov model database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2014, + :format_2330 . + +:format_1422 a owl:Class ; + rdfs:label "HMMER profile alignment (HMM versus sequences)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format used by the HMMER package for of an alignment of a hidden Markov model against a sequence database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2014, + :format_2330 . + +:format_1423 a owl:Class ; + rdfs:label "Phylip distance matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of PHYLIP phylogenetic distance matrix data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Data Type must include the distance matrix, probably as pairs of sequence identifiers with a distance (integer or float)." ; + rdfs:subClassOf :format_2067, + :format_2330 . + +:format_1424 a owl:Class ; + rdfs:label "ClustalW dendrogram" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Dendrogram (tree file) format generated by ClustalW." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2556 . + +:format_1425 a owl:Class ; + rdfs:label "Phylip tree raw" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Raw data file format used by Phylip from which a phylogenetic tree is directly generated or plotted." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2556 . + +:format_1430 a owl:Class ; + rdfs:label "Phylip continuous quantitative characters" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "PHYLIP file format for continuous quantitative character data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2037, + :format_2330 . + +:format_1431 a owl:Class ; + rdfs:label "Phylogenetic property values format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2036 ; + oboInOwl:hasDefinition "Format of phylogenetic property data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1432 a owl:Class ; + rdfs:label "Phylip character frequencies format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "PHYLIP file format for phylogenetics character frequency data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2037, + :format_2330 . + +:format_1433 a owl:Class ; + rdfs:label "Phylip discrete states format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of PHYLIP discrete states data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2038, + :format_2330 . + +:format_1434 a owl:Class ; + rdfs:label "Phylip cliques format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of PHYLIP cliques data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2039, + :format_2330 . + +:format_1435 a owl:Class ; + rdfs:label "Phylip tree format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Phylogenetic tree data format used by the PHYLIP program." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2556 . + +:format_1436 a owl:Class ; + rdfs:label "TreeBASE format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The format of an entry from the TreeBASE database of phylogenetic data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2556 . + +:format_1437 a owl:Class ; + rdfs:label "TreeFam format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The format of an entry from the TreeFam database of phylogenetic data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2556 . + +:format_1445 a owl:Class ; + rdfs:label "Phylip tree distance format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format for distances, such as Branch Score distance, between two or more phylogenetic trees as used by the Phylip package." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2049, + :format_2330 . + +:format_1454 a owl:Class ; + rdfs:label "dssp" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of an entry from the DSSP database (Dictionary of Secondary Structure in Proteins)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The DSSP database is built using the DSSP application which defines secondary structure, geometrical features and solvent exposure of proteins, given atomic coordinates in PDB format." ; + rdfs:subClassOf :format_2077, + :format_2330 . + +:format_1455 a owl:Class ; + rdfs:label "hssp" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Entry format of the HSSP database (Homology-derived Secondary Structure in Proteins)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2077, + :format_2330 . + +:format_1458 a owl:Class ; + rdfs:label "Vienna local RNA secondary structure format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of local RNA secondary structure components with free energy values, generated by the Vienna RNA package/server." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1457, + :format_2330 . + +:format_1477 a owl:Class ; + rdfs:label "mmCIF" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Entry format of PDB database in mmCIF format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1475, + :format_2330 . + +:format_1478 a owl:Class ; + rdfs:label "PDBML" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Entry format of PDB database in PDBML (XML) format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1475, + :format_2332 . + +:format_1500 a owl:Class ; + rdfs:label "Domainatrix 3D-1D scoring matrix format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Format of a matrix of 3D-1D scores used by the EMBOSS Domainatrix applications." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :format_2064 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1504 a owl:Class ; + rdfs:label "aaindex" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Amino acid index format used by the AAindex database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2017, + :format_2330 . + +:format_1511 a owl:Class ; + rdfs:label "IntEnz enzyme report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of an entry from IntEnz (The Integrated Relational Enzyme Database)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "IntEnz is the master copy of the Enzyme Nomenclature, the recommendations of the NC-IUBMB on the Nomenclature and Classification of Enzyme-Catalysed Reactions." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1512 a owl:Class ; + rdfs:label "BRENDA enzyme report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of an entry from the BRENDA enzyme database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1513 a owl:Class ; + rdfs:label "KEGG REACTION enzyme report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of an entry from the KEGG REACTION database of biochemical reactions." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1514 a owl:Class ; + rdfs:label "KEGG ENZYME enzyme report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of an entry from the KEGG ENZYME database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1515 a owl:Class ; + rdfs:label "REBASE proto enzyme report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of an entry from the proto section of the REBASE enzyme database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1516 a owl:Class ; + rdfs:label "REBASE withrefm enzyme report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of an entry from the withrefm section of the REBASE enzyme database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1551 a owl:Class ; + rdfs:label "Pcons report format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of output of the Pcons Model Quality Assessment Program (MQAP)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Pcons ranks protein models by assessing their quality based on the occurrence of recurring common three-dimensional structural patterns. Pcons returns a score reflecting the overall global quality and a score for each individual residue in the protein reflecting the local residue quality." ; + rdfs:subClassOf :format_2065, + :format_2330 . + +:format_1552 a owl:Class ; + rdfs:label "ProQ report format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of output of the ProQ protein model quality predictor." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "ProQ is a neural network-based predictor that predicts the quality of a protein model based on the number of structural features." ; + rdfs:subClassOf :format_2065, + :format_2330 . + +:format_1563 a owl:Class ; + rdfs:label "SMART domain assignment report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of SMART domain assignment data." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The SMART output file includes data on genetically mobile domains / analysis of domain architectures, including phyletic distributions, functional class, tertiary structures and functionally important residues." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1568 a owl:Class ; + rdfs:label "BIND entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the BIND database of protein interaction." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1569 a owl:Class ; + rdfs:label "IntAct entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the IntAct database of protein interaction." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1570 a owl:Class ; + rdfs:label "InterPro entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the InterPro database of protein signatures (sequence classifiers) and classified sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This includes signature metadata, sequence references and a reference to the signature itself. There is normally a header (entry accession numbers and name), abstract, taxonomy information, example proteins etc. Each entry also includes a match list which give a number of different views of the signature matches for the sequences in each InterPro entry." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1571 a owl:Class ; + rdfs:label "InterPro entry abstract format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the textual abstract of signatures in an InterPro entry and its protein matches." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "References are included and a functional inference is made where possible." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1572 a owl:Class ; + rdfs:label "Gene3D entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the Gene3D protein secondary database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1573 a owl:Class ; + rdfs:label "PIRSF entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the PIRSF protein secondary database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1574 a owl:Class ; + rdfs:label "PRINTS entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the PRINTS protein secondary database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1575 a owl:Class ; + rdfs:label "Panther Families and HMMs entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the Panther library of protein families and subfamilies." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1576 a owl:Class ; + rdfs:label "Pfam entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the Pfam protein secondary database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1577 a owl:Class ; + rdfs:label "SMART entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the SMART protein secondary database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1578 a owl:Class ; + rdfs:label "Superfamily entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the Superfamily protein secondary database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1579 a owl:Class ; + rdfs:label "TIGRFam entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the TIGRFam protein secondary database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1580 a owl:Class ; + rdfs:label "ProDom entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the ProDom protein domain classification database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1581 a owl:Class ; + rdfs:label "FSSP entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the FSSP database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1582 a owl:Class ; + rdfs:label "findkm" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A report format for the kinetics of enzyme-catalysed reaction(s) in a format generated by EMBOSS findkm. This includes Michaelis Menten plot, Hanes Woolf plot, Michaelis Menten constant (Km) and maximum velocity (Vmax)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2027, + :format_2330 . + +:format_1603 a owl:Class ; + rdfs:label "Ensembl gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of Ensembl genome database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1604 a owl:Class ; + rdfs:label "DictyBase gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of DictyBase genome database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1605 a owl:Class ; + rdfs:label "CGD gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of Candida Genome database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1606 a owl:Class ; + rdfs:label "DragonDB gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of DragonDB genome database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1607 a owl:Class ; + rdfs:label "EcoCyc gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of EcoCyc genome database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1608 a owl:Class ; + rdfs:label "FlyBase gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of FlyBase genome database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1609 a owl:Class ; + rdfs:label "Gramene gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of Gramene genome database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1610 a owl:Class ; + rdfs:label "KEGG GENES gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of KEGG GENES genome database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1611 a owl:Class ; + rdfs:label "MaizeGDB gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of the Maize genetics and genomics database (MaizeGDB)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1612 a owl:Class ; + rdfs:label "MGD gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of the Mouse Genome Database (MGD)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1613 a owl:Class ; + rdfs:label "RGD gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of the Rat Genome Database (RGD)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1614 a owl:Class ; + rdfs:label "SGD gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of the Saccharomyces Genome Database (SGD)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1615 a owl:Class ; + rdfs:label "GeneDB gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of the Sanger GeneDB genome database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1616 a owl:Class ; + rdfs:label "TAIR gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of The Arabidopsis Information Resource (TAIR) genome database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1617 a owl:Class ; + rdfs:label "WormBase gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of the WormBase genomes database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1618 a owl:Class ; + rdfs:label "ZFIN gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of the Zebrafish Information Network (ZFIN) genome database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1619 a owl:Class ; + rdfs:label "TIGR gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format of the TIGR genome database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1620 a owl:Class ; + rdfs:label "dbSNP polymorphism report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the dbSNP database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1623 a owl:Class ; + rdfs:label "OMIM entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of an entry from the OMIM database of genotypes and phenotypes." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1624 a owl:Class ; + rdfs:label "HGVbase entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of a record from the HGVbase database of genotypes and phenotypes." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1625 a owl:Class ; + rdfs:label "HIVDB entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of a record from the HIVDB database of genotypes and phenotypes." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1626 a owl:Class ; + rdfs:label "KEGG DISEASE entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of an entry from the KEGG DISEASE database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1627 a owl:Class ; + rdfs:label "Primer3 primer" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Report format on PCR primers and hybridisation oligos as generated by Whitehead primer3 program." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2061, + :format_2330 . + +:format_1628 a owl:Class ; + rdfs:label "ABI" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A format of raw sequence read data from an Applied Biosystems sequencing machine." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2057, + :format_2333 . + +:format_1629 a owl:Class ; + rdfs:label "mira" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of MIRA sequence trace information file." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2057, + :format_2330 . + +:format_1630 a owl:Class ; + rdfs:label "CAF" ; + :created_in "beta12orEarlier" ; + :documentation ; + :file_extension "caf" ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Common Assembly Format (CAF). A sequence assembly format including contigs, base-call qualities, and other metadata." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2561 . + +:format_1631 a owl:Class ; + rdfs:label "EXP" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDefinition "Sequence assembly project file EXP format." ; + oboInOwl:hasExactSynonym "Affymetrix EXP format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2561 . + +:format_1632 a owl:Class ; + rdfs:label "SCF" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Staden Chromatogram Files format (SCF) of base-called sequence reads, qualities, and other metadata." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2057, + :format_2333 . + +:format_1633 a owl:Class ; + rdfs:label "PHD" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "PHD sequence trace format to store serialised chromatogram data (reads)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2057, + :format_2330 . + +:format_1637 a owl:Class ; + rdfs:label "dat" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of Affymetrix data file of raw image data." ; + oboInOwl:hasExactSynonym "Affymetrix image data file format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1714 ], + :format_2058, + :format_2330 . + +:format_1638 a owl:Class ; + rdfs:label "cel" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of Affymetrix data file of information about (raw) expression levels of the individual probes." ; + oboInOwl:hasExactSynonym "Affymetrix probe raw data format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3110 ], + :format_2058, + :format_2330 . + +:format_1639 a owl:Class ; + rdfs:label "affymetrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of affymetrix gene cluster files (hc-genes.txt, hc-chips.txt) from hierarchical clustering." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2172, + :format_2330 . + +:format_1640 a owl:Class ; + rdfs:label "ArrayExpress entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the ArrayExpress microarrays database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1641 a owl:Class ; + rdfs:label "affymetrix-exp" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Affymetrix data file format for information about experimental conditions and protocols." ; + oboInOwl:hasExactSynonym "Affymetrix experimental conditions data file format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2056, + :format_2330 . + +:format_1644 a owl:Class ; + rdfs:label "CHP" ; + :created_in "beta12orEarlier" ; + :documentation ; + :file_extension "chp" ; + oboInOwl:hasDefinition "Format of Affymetrix data file of information about (normalised) expression levels of the individual probes." ; + oboInOwl:hasExactSynonym "Affymetrix probe normalised data format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3111 ], + :format_2058, + :format_2330 . + +:format_1645 a owl:Class ; + rdfs:label "EMDB entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of an entry from the Electron Microscopy DataBase (EMDB)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1647 a owl:Class ; + rdfs:label "KEGG PATHWAY entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the KEGG PATHWAY database of pathway maps for molecular interactions and reaction networks." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1648 a owl:Class ; + rdfs:label "MetaCyc entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the MetaCyc metabolic pathways database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1649 a owl:Class ; + rdfs:label "HumanCyc entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of a report from the HumanCyc metabolic pathways database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1650 a owl:Class ; + rdfs:label "INOH entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the INOH signal transduction pathways database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1651 a owl:Class ; + rdfs:label "PATIKA entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the PATIKA biological pathways database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1652 a owl:Class ; + rdfs:label "Reactome entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the reactome biological pathways database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1653 a owl:Class ; + rdfs:label "aMAZE entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the aMAZE biological pathways and molecular interactions database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1654 a owl:Class ; + rdfs:label "CPDB entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the CPDB database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1655 a owl:Class ; + rdfs:label "Panther Pathways entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the Panther Pathways database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1665 a owl:Class ; + rdfs:label "Taverna workflow format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of Taverna workflows." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2032, + :format_2332 . + +:format_1666 a owl:Class ; + rdfs:label "BioModel mathematical model format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of mathematical models from the BioModel database." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Models are annotated and linked to relevant data resources, such as publications, databases of compounds and pathways, controlled vocabularies, etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1697 a owl:Class ; + rdfs:label "KEGG LIGAND entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the KEGG LIGAND chemical database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1698 a owl:Class ; + rdfs:label "KEGG COMPOUND entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the KEGG COMPOUND database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1699 a owl:Class ; + rdfs:label "KEGG PLANT entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the KEGG PLANT database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1700 a owl:Class ; + rdfs:label "KEGG GLYCAN entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the KEGG GLYCAN database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1701 a owl:Class ; + rdfs:label "PubChem entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from PubChem." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1702 a owl:Class ; + rdfs:label "ChemSpider entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from a database of chemical structures and property predictions." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1703 a owl:Class ; + rdfs:label "ChEBI entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from Chemical Entities of Biological Interest (ChEBI)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "ChEBI includes an ontological classification defining relations between entities or classes of entities." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1704 a owl:Class ; + rdfs:label "MSDchem ligand dictionary entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the MSDchem ligand dictionary." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1705 a owl:Class ; + rdfs:label "HET group dictionary entry format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The format of an entry from the HET group dictionary (HET groups from PDB files)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2030, + :format_2330 . + +:format_1706 a owl:Class ; + rdfs:label "KEGG DRUG entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the KEGG DRUG database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1734 a owl:Class ; + rdfs:label "PubMed citation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of bibliographic reference as used by the PubMed database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2848 . + +:format_1735 a owl:Class ; + rdfs:label "Medline Display Format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format for abstracts of scientific articles from the Medline database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Bibliographic reference information including citation information is included" ; + rdfs:subClassOf :format_2330, + :format_2848 . + +:format_1736 a owl:Class ; + rdfs:label "CiteXplore-core" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "CiteXplore 'core' citation format including title, journal, authors and abstract." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2848 . + +:format_1737 a owl:Class ; + rdfs:label "CiteXplore-all" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "CiteXplore 'all' citation format includes all known details such as Mesh terms and cross-references." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2848 . + +:format_1739 a owl:Class ; + rdfs:label "pmc" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Article format of the PubMed Central database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2020, + :format_2330 . + +:format_1740 a owl:Class ; + rdfs:label "iHOP format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The format of iHOP (Information Hyperlinked over Proteins) text-mining result." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2021, + :format_2331, + :format_2332 . + +:format_1741 a owl:Class ; + rdfs:label "OSCAR format" ; + :citation ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "OSCAR format of annotated chemical text." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "OSCAR (Open-Source Chemistry Analysis Routines) software performs chemistry-specific parsing of chemical documents. It attempts to identify chemical names, ontology concepts, and chemical data from a document." ; + rdfs:subClassOf :format_2330, + :format_2332, + :format_3780 . + +:format_1747 a owl:Class ; + rdfs:label "PDB atom record format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1476 ; + oboInOwl:hasDefinition "Format of an ATOM record (describing data for an individual atom) from a PDB file." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1760 a owl:Class ; + rdfs:label "CATH chain report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of CATH domain classification information for a polypeptide chain." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The report (for example http://www.cathdb.info/chain/1cukA) includes chain identifiers, domain identifiers and CATH codes for domains in a given protein chain." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1761 a owl:Class ; + rdfs:label "CATH PDB report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of CATH domain classification information for a protein PDB file." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The report (for example http://www.cathdb.info/pdb/1cuk) includes chain identifiers, domain identifiers and CATH codes for domains in a given PDB file." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1782 a owl:Class ; + rdfs:label "NCBI gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry (gene) format of the NCBI database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1808 a owl:Class ; + rdfs:label "GeneIlluminator gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDbXref "Moby:GI_Gene" ; + oboInOwl:hasDefinition "Report format for biological functions associated with a gene name and its alternative names (synonyms, homonyms), as generated by the GeneIlluminator service." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This includes a gene name and abbreviation of the name which may be in a name space indicating the gene status and relevant organisation." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1809 a owl:Class ; + rdfs:label "BacMap gene card format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDbXref "Moby:BacMapGeneCard" ; + oboInOwl:hasDefinition "Format of a report on the DNA and protein sequences for a given gene label from a bacterial chromosome maps from the BacMap database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1810 a owl:Class ; + rdfs:label "ColiCard report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of a report on Escherichia coli genes, proteins and molecules from the CyberCell Database (CCDB)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1861 a owl:Class ; + rdfs:label "PlasMapper TextMap" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Map of a plasmid (circular DNA) in PlasMapper TextMap format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2060, + :format_2330 . + +:format_1910 a owl:Class ; + rdfs:label "newick" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Phylogenetic tree Newick (text) format." ; + oboInOwl:hasExactSynonym "nh" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2556 . + +:format_1911 a owl:Class ; + rdfs:label "TreeCon format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Phylogenetic tree TreeCon (text) format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2556 . + +:format_1912 a owl:Class ; + rdfs:label "Nexus format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Phylogenetic tree Nexus (text) format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2556 . + +:format_1918 a owl:Class ; + rdfs:label "Atomic data format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1475 ; + oboInOwl:hasDefinition "Data format for an individual atom." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1923 a owl:Class ; + rdfs:label "acedb" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "ACEDB sequence format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1924 a owl:Class ; + rdfs:label "clustal sequence format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1982 ; + oboInOwl:hasDefinition "Clustalw output format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1925 a owl:Class ; + rdfs:label "codata" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Codata entry format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1926 a owl:Class ; + rdfs:label "dbid" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Fasta format variant with database name before ID." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2200 . + +:format_1928 a owl:Class ; + rdfs:label "Staden experiment format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Staden experiment file format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1929 a owl:Class ; + rdfs:label "FASTA" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "FASTA format including NCBI-style IDs." ; + oboInOwl:hasExactSynonym "FASTA format", + "FASTA sequence format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2200, + :format_2554 . + +:format_1930 a owl:Class ; + rdfs:label "FASTQ" ; + :created_in "beta12orEarlier" ; + :file_extension "fastq", + "fq" ; + oboInOwl:hasDefinition "FASTQ short read format ignoring quality scores." ; + oboInOwl:hasExactSynonym "FASTAQ", + "fq" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2182 . + +:format_1932 a owl:Class ; + rdfs:label "FASTQ-sanger" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "FASTQ short read format with phred quality." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2182 . + +:format_1934 a owl:Class ; + rdfs:label "fitch program" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Fitch program format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1935 a owl:Class ; + rdfs:label "GCG" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "GCG sequence file format." ; + oboInOwl:hasExactSynonym "GCG SSF" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "GCG SSF (single sequence file) file format." ; + rdfs:subClassOf :format_2330, + :format_3486 . + +:format_1937 a owl:Class ; + rdfs:label "genpept" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Genpept protein entry format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Currently identical to refseqp format" ; + rdfs:subClassOf :format_2205 . + +:format_1938 a owl:Class ; + rdfs:label "GFF2-seq" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "GFF feature file format with sequence in the header." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1974, + :format_2551 . + +:format_1939 a owl:Class ; + rdfs:label "GFF3-seq" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "GFF3 feature file format with sequence." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1975, + :format_2551 . + +:format_1940 a owl:Class ; + rdfs:label "giFASTA format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "FASTA sequence format including NCBI-style GIs." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2200 . + +:format_1941 a owl:Class ; + rdfs:label "hennig86" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Hennig86 output sequence format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1942 a owl:Class ; + rdfs:label "ig" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Intelligenetics sequence format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1943 a owl:Class ; + rdfs:label "igstrict" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Intelligenetics sequence format (strict version)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1944 a owl:Class ; + rdfs:label "jackknifer" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Jackknifer interleaved and non-interleaved sequence format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1945 a owl:Class ; + rdfs:label "mase format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Mase program sequence format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1946 a owl:Class ; + rdfs:label "mega-seq" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Mega interleaved and non-interleaved sequence format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1950 a owl:Class ; + rdfs:label "pdbatom" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "PDB sequence format (ATOM lines)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "pdb format in EMBOSS." ; + rdfs:subClassOf :format_1475, + :format_2330, + :format_2551 . + +:format_1951 a owl:Class ; + rdfs:label "pdbatomnuc" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "PDB nucleotide sequence format (ATOM lines)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "pdbnuc format in EMBOSS." ; + rdfs:subClassOf :format_1475, + :format_2330, + :format_2551 . + +:format_1952 a owl:Class ; + rdfs:label "pdbseqresnuc" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "PDB nucleotide sequence format (SEQRES lines)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "pdbnucseq format in EMBOSS." ; + rdfs:subClassOf :format_1475, + :format_2330, + :format_2551 . + +:format_1953 a owl:Class ; + rdfs:label "pdbseqres" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "PDB sequence format (SEQRES lines)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "pdbseq format in EMBOSS." ; + rdfs:subClassOf :format_1475, + :format_2330, + :format_2551 . + +:format_1954 a owl:Class ; + rdfs:label "Pearson format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Plain old FASTA sequence format (unspecified format for IDs)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2200 . + +:format_1955 a owl:Class ; + rdfs:label "phylip sequence format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1997 ; + oboInOwl:hasDefinition "Phylip interleaved sequence format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1956 a owl:Class ; + rdfs:label "phylipnon sequence format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1998 ; + oboInOwl:hasDefinition "PHYLIP non-interleaved sequence format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1957 a owl:Class ; + rdfs:label "raw" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Raw sequence format with no non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2571 . + +:format_1958 a owl:Class ; + rdfs:label "refseqp" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Refseq protein entry sequence format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Currently identical to genpept format" ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1959 a owl:Class ; + rdfs:label "selex sequence format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2000 ; + oboInOwl:hasDefinition "Selex sequence format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1960 a owl:Class ; + rdfs:label "Staden format" ; + :created_in "beta12orEarlier" ; + :documentation , + ; + oboInOwl:hasDbXref , + ; + oboInOwl:hasDefinition "Staden suite sequence format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1961 a owl:Class ; + rdfs:label "Stockholm format" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDefinition "Stockholm multiple sequence alignment format (used by Pfam and Rfam)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2330, + :format_2554 . + +:format_1962 a owl:Class ; + rdfs:label "strider format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "DNA strider output sequence format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1964 a owl:Class ; + rdfs:label "plain text format (unformatted)" ; + :created_in "beta12orEarlier" ; + :file_extension "txt" ; + oboInOwl:hasDefinition "Plain text sequence format (essentially unformatted)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330 . + +:format_1965 a owl:Class ; + rdfs:label "treecon sequence format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2005 ; + oboInOwl:hasDefinition "Treecon output sequence format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1966 a owl:Class ; + rdfs:label "ASN.1 sequence format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "NCBI ASN.1-based sequence format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1967 a owl:Class ; + rdfs:label "DAS format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "DAS sequence (XML) format (any type)." ; + oboInOwl:hasExactSynonym "das sequence format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_2552 . + +:format_1968 a owl:Class ; + rdfs:label "dasdna" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "DAS sequence (XML) format (nucleotide-only)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The use of this format is deprecated." ; + rdfs:subClassOf :format_2332, + :format_2552 . + +:format_1969 a owl:Class ; + rdfs:label "debug-seq" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "EMBOSS debugging trace sequence format of full internal data content." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1970 a owl:Class ; + rdfs:label "jackknifernon" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Jackknifer output sequence non-interleaved format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_1971 a owl:Class ; + rdfs:label "meganon sequence format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1992 ; + oboInOwl:hasDefinition "Mega non-interleaved output sequence format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1972 a owl:Class ; + rdfs:label "NCBI format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "NCBI FASTA sequence format with NCBI-style IDs." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "There are several variants of this." ; + rdfs:subClassOf :format_2200 . + +:format_1976 a owl:Class ; + rdfs:label "pir" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.7" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "PIR feature format." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :format_1948 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1977 a owl:Class ; + rdfs:label "swiss feature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1963 ; + oboInOwl:hasDefinition "Swiss-Prot feature format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1979 a owl:Class ; + rdfs:label "debug-feat" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "EMBOSS debugging trace feature format of full internal data content." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1920, + :format_2330 . + +:format_1980 a owl:Class ; + rdfs:label "EMBL feature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1927 ; + oboInOwl:hasDefinition "EMBL feature format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1981 a owl:Class ; + rdfs:label "GenBank feature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1936 ; + oboInOwl:hasDefinition "Genbank feature format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1983 a owl:Class ; + rdfs:label "debug" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "EMBOSS alignment format for debugging trace of full internal data content." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2554 . + +:format_1984 a owl:Class ; + rdfs:label "FASTA-aln" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Fasta format for (aligned) sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2200, + :format_2554 . + +:format_1985 a owl:Class ; + rdfs:label "markx0" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Pearson MARKX0 alignment format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2922 . + +:format_1986 a owl:Class ; + rdfs:label "markx1" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Pearson MARKX1 alignment format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2922 . + +:format_1987 a owl:Class ; + rdfs:label "markx10" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Pearson MARKX10 alignment format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2922 . + +:format_1988 a owl:Class ; + rdfs:label "markx2" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Pearson MARKX2 alignment format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2922 . + +:format_1989 a owl:Class ; + rdfs:label "markx3" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Pearson MARKX3 alignment format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2922 . + +:format_1990 a owl:Class ; + rdfs:label "match" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alignment format for start and end of matches between sequence pairs." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2554 . + +:format_1991 a owl:Class ; + rdfs:label "mega" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Mega format for (typically aligned) sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2923 . + +:format_1993 a owl:Class ; + rdfs:label "msf alignment format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1947 ; + oboInOwl:hasDefinition "MSF format for (aligned) sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1994 a owl:Class ; + rdfs:label "nexus alignment format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1949 ; + oboInOwl:hasDefinition "Nexus/paup format for (aligned) sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1995 a owl:Class ; + rdfs:label "nexusnon alignment format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1973 ; + oboInOwl:hasDefinition "Nexus/paup non-interleaved format for (aligned) sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_1996 a owl:Class ; + rdfs:label "pair" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "EMBOSS simple sequence pairwise alignment format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2554 . + +:format_1999 a owl:Class ; + rdfs:label "scores format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alignment format for score values for pairs of sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2554 . + +:format_2001 a owl:Class ; + rdfs:label "EMBOSS simple format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "EMBOSS simple multiple alignment format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2554 . + +:format_2002 a owl:Class ; + rdfs:label "srs format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Simple multiple sequence (alignment) format for SRS." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2554 . + +:format_2003 a owl:Class ; + rdfs:label "srspair" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Simple sequence pair (alignment) format for SRS." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2920 . + +:format_2004 a owl:Class ; + rdfs:label "T-Coffee format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "T-Coffee program alignment format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2554 . + +:format_2015 a owl:Class ; + rdfs:label "Sequence-profile alignment (HMM) format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2014 ; + oboInOwl:hasDefinition "Data format for a sequence-HMM profile alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2034 a owl:Class ; + rdfs:label "Biological model format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.2" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2013 ; + oboInOwl:hasDefinition "Data format for a biological model." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2040 a owl:Class ; + rdfs:label "Phylogenetic tree report (invariants) format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of phylogenetic invariants data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1429 ], + :format_2036 . + +:format_2045 a owl:Class ; + rdfs:label "Electron microscopy model format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2350 ; + oboInOwl:hasDefinition "Annotation format for electron microscopy models." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2051 a owl:Class ; + rdfs:label "Polymorphism report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.0" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2921 ; + oboInOwl:hasDefinition "Format for sequence polymorphism data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2052 a owl:Class ; + rdfs:label "Protein family report format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format for reports on a protein family." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0907 ], + :format_2350 . + +:format_2059 a owl:Class ; + rdfs:label "Genotype and phenotype annotation format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2350 ; + oboInOwl:hasDefinition "Format of a report on genotype / phenotype information." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2063 a owl:Class ; + rdfs:label "Protein report (enzyme) format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2350 ; + oboInOwl:hasDefinition "Format of a report of general information about a specific enzyme." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2159 a owl:Class ; + rdfs:label "Gene features (coding region) format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.10" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Format used for report on coding regions in nucleotide sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :format_2031 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2171 a owl:Class ; + rdfs:label "Sequence cluster format (protein)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format used for clusters of protein sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2170 . + +:format_2175 a owl:Class ; + rdfs:label "Gene cluster format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2172 ; + oboInOwl:hasDefinition "Format used for clusters of genes." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2183 a owl:Class ; + rdfs:label "EMBLXML" ; + :created_in "beta12orEarlier" ; + :documentation ; + :is_deprecation_candidate true ; + oboInOwl:hasDefinition "XML format for EMBL entries." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "https://fairsharing.org/bsg-s001452/" ; + rdfs:subClassOf :format_2204 . + +:format_2184 a owl:Class ; + rdfs:label "cdsxml" ; + :created_in "beta12orEarlier" ; + :documentation ; + :is_deprecation_candidate true ; + oboInOwl:hasDefinition "Specific XML format for EMBL entries (only uses certain sections)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "https://fairsharing.org/bsg-s001452/" ; + rdfs:subClassOf :format_2204 . + +:format_2185 a owl:Class ; + rdfs:label "INSDSeq" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDefinition "INSDSeq provides the elements of a sequence as presented in the GenBank/EMBL/DDBJ-style flatfile formats, with a small amount of additional structure." ; + oboInOwl:hasExactSynonym "INSD XML", + "INSDC XML" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2204 . + +:format_2186 a owl:Class ; + rdfs:label "geneseq" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Geneseq sequence format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2181 . + +:format_2188 a owl:Class ; + rdfs:label "UniProt format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "UniProt entry sequence format." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :format_1963 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2189 a owl:Class ; + rdfs:label "ipi" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1963 ; + oboInOwl:hasDefinition "ipi sequence format." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2194 a owl:Class ; + rdfs:label "medline" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Abstract format used by MedLine database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2020, + :format_2330 . + +:format_2202 a owl:Class ; + rdfs:label "Sequence record full format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Data format for a molecular sequence record, typically corresponding to a full entry from a molecular sequence database." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :format_1919 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2203 a owl:Class ; + rdfs:label "Sequence record lite format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Data format for a molecular sequence record 'lite', typically molecular sequence and minimal metadata, such as an identifier of the sequence and/or a comment." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :format_1919 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2210 a owl:Class ; + rdfs:label "Strain data format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.0" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_1915 ; + oboInOwl:hasDefinition "Format of a report on organism strain data / cell line." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2211 a owl:Class ; + rdfs:label "CIP strain data format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format for a report of strain data as used for CIP database entries." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2243 a owl:Class ; + rdfs:label "phylip property values" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2036 ; + oboInOwl:hasDefinition "PHYLIP file format for phylogenetic property data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2303 a owl:Class ; + rdfs:label "STRING entry format (HTML)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format (HTML) for the STRING database of protein interaction." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2304 a owl:Class ; + rdfs:label "STRING entry format (XML)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Entry format (XML) for the STRING database of protein interaction." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2054, + :format_2332 . + +:format_2306 a owl:Class ; + rdfs:label "GTF" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref , + ; + oboInOwl:hasDefinition "Gene Transfer Format (GTF), a restricted version of GFF." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2305 . + +:format_2310 a owl:Class ; + rdfs:label "FASTA-HTML" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "FASTA format wrapped in HTML elements." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2331, + :format_2546 . + +:format_2311 a owl:Class ; + rdfs:label "EMBL-HTML" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "EMBL entry format wrapped in HTML elements." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2331, + :format_2543 . + +:format_2322 a owl:Class ; + rdfs:label "BioCyc enzyme report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of an entry from the BioCyc enzyme database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2323 a owl:Class ; + rdfs:label "ENZYME enzyme report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of an entry from the Enzyme nomenclature database (ENZYME)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2328 a owl:Class ; + rdfs:label "PseudoCAP gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of a report on a gene from the PseudoCAP database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2329 a owl:Class ; + rdfs:label "GeneCards gene report format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Format of a report on a gene from the GeneCards database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2334 a owl:Class ; + rdfs:label "URI format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1047 ; + oboInOwl:hasDefinition "Typical textual representation of a URI." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2341 a owl:Class ; + rdfs:label "NCI-Nature pathway entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "The format of an entry from the NCI-Nature pathways database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2352 a owl:Class ; + rdfs:label "BioXSD (XML)" ; + :citation , + , + ; + :created_in "beta12orEarlier" ; + :documentation , + ; + :example , + , + , + ; + :ontology_used "Any ontology allowed, none mandatory. Preferably with URIs but URIs are not mandatory. Non-ontology terms are also allowed as the last resort in case of a lack of suitable ontology." ; + :repository ; + oboInOwl:hasDbXref , + ; + oboInOwl:hasDefinition "BioXSD-schema-based XML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, Web services, and object-oriented programming." ; + oboInOwl:hasExactSynonym "BioJSON", + "BioXSD", + "BioXSD XML", + "BioXSD XML format", + "BioXSD data model", + "BioXSD format", + "BioXSD in XML", + "BioXSD in XML format", + "BioXSD+XML", + "BioXSD/GTrack", + "BioXSD|GTrack", + "BioYAML" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioXSD in XML' is the XML format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2044 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3108 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1255 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0863 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1772 ], + :format_1919, + :format_1920, + :format_2332, + :format_2555, + :format_2571 . + +:format_2532 a owl:Class ; + rdfs:label "GenBank-HTML" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Genbank entry format wrapped in HTML elements." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2331, + :format_2559 . + +:format_2542 a owl:Class ; + rdfs:label "Protein features (domains) format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2350 ; + oboInOwl:hasDefinition "Format of a report on protein features (domain composition)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2549 a owl:Class ; + rdfs:label "OBO" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "OBO ontology text format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2196, + :format_2330 . + +:format_2550 a owl:Class ; + rdfs:label "OBO-XML" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "OBO ontology XML format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2196, + :format_2332 . + +:format_2560 a owl:Class ; + rdfs:label "STRING entry format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :format_2331 ; + oboInOwl:hasDefinition "Entry format for the STRING database of protein interaction." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2562 a owl:Class ; + rdfs:label "Amino acid identifier format" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_0994 ; + oboInOwl:hasDefinition "Text format (representation) of amino acid residues." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_2568 a owl:Class ; + rdfs:label "completely unambiguous pure nucleotide" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a nucleotide sequence (characters ACGTU only) without unknown positions, ambiguity or non-sequence characters ." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1207, + :format_2567 . + +:format_2569 a owl:Class ; + rdfs:label "completely unambiguous pure dna" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a DNA sequence (characters ACGT only) without unknown positions, ambiguity or non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1212, + :format_2567 . + +:format_2570 a owl:Class ; + rdfs:label "completely unambiguous pure rna sequence" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for an RNA sequence (characters ACGU only) without unknown positions, ambiguity or non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1213, + :format_2567 . + +:format_2572 a owl:Class ; + rdfs:label "BAM" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "BAM format, the binary, BGZF-formatted compressed version of SAM format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2057, + :format_2333, + :format_2920 . + +:format_2573 a owl:Class ; + rdfs:label "SAM" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Sequence Alignment/Map (SAM) format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The format supports short and long reads (up to 128Mbp) produced by different sequencing platforms and is used to hold mapped data within the GATK and across the Broad Institute, the Sanger Centre, and throughout the 1000 Genomes project." ; + rdfs:subClassOf :format_2057, + :format_2330, + :format_2920 . + +:format_2585 a owl:Class ; + rdfs:label "SBML" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Systems Biology Markup Language (SBML), the standard XML format for models of biological processes such as for example metabolism, cell signaling, and gene regulation." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2013, + :format_2332 . + +:format_2607 a owl:Class ; + rdfs:label "completely unambiguous pure protein" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for any protein sequence without unknown positions, ambiguity or non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1208, + :format_2567 . + +:format_3000 a owl:Class ; + rdfs:label "AB1" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "AB1 binary format of raw DNA sequence reads (output of Applied Biosystems' sequencing analysis software). Contains an electropherogram and the DNA base sequence." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "AB1 uses the generic binary Applied Biosystems, Inc. Format (ABIF)." ; + rdfs:subClassOf :format_2057, + :format_2333 . + +:format_3001 a owl:Class ; + rdfs:label "ACE" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "ACE sequence assembly format including contigs, base-call qualities, and other metadata (version Aug 1998 and onwards)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2055, + :format_2330 . + +:format_3004 a owl:Class ; + rdfs:label "bigBed" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "bigBed format for large sequence annotation tracks, similar to textual BED format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_2919 . + +:format_3005 a owl:Class ; + rdfs:label "WIG" ; + :created_in "beta12orEarlier" ; + :documentation ; + :file_extension "wig" ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Wiggle format (WIG) of a sequence annotation track that consists of a value for each sequence position. Typically to be displayed in a genome browser." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2919 . + +:format_3006 a owl:Class ; + rdfs:label "bigWig" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "bigWig format for large sequence annotation tracks that consist of a value for each sequence position. Similar to textual WIG format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_2919 . + +:format_3007 a owl:Class ; + rdfs:label "PSL" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "PSL format of alignments, typically generated by BLAT or psLayout. Can be displayed in a genome browser like a sequence annotation track." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2919, + :format_2920 . + +:format_3008 a owl:Class ; + rdfs:label "MAF" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Multiple Alignment Format (MAF) supporting alignments of whole genomes with rearrangements, directions, multiple pieces to the alignment, and so forth." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Typically generated by Multiz and TBA aligners; can be displayed in a genome browser like a sequence annotation track. This should not be confused with MIRA Assembly Format or Mutation Annotation Format." ; + rdfs:subClassOf :format_2330, + :format_2554, + :format_2919 . + +:format_3009 a owl:Class ; + rdfs:label "2bit" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref , + ; + oboInOwl:hasDefinition "2bit binary format of nucleotide sequences using 2 bits per nucleotide. In addition encodes unknown nucleotides and lower-case 'masking'." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_2571 . + +:format_3010 a owl:Class ; + rdfs:label ".nib" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition ".nib (nibble) binary format of a nucleotide sequence using 4 bits per nucleotide (including unknown) and its lower-case 'masking'." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_2571 . + +:format_3011 a owl:Class ; + rdfs:label "genePred" ; + :created_in "beta12orEarlier" ; + :documentation ; + :file_extension "gp" ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "genePred table format for gene prediction tracks." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "genePred format has 3 main variations (http://genome.ucsc.edu/FAQ/FAQformat#format9 http://www.broadinstitute.org/software/igv/genePred). They reflect UCSC Browser DB tables." ; + rdfs:subClassOf :format_2330, + :format_2919 . + +:format_3012 a owl:Class ; + rdfs:label "pgSnp" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Personal Genome SNP (pgSnp) format for sequence variation tracks (indels and polymorphisms), supported by the UCSC Genome Browser." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2919 . + +:format_3013 a owl:Class ; + rdfs:label "axt" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "axt format of alignments, typically produced from BLASTZ." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2920 . + +:format_3014 a owl:Class ; + rdfs:label "LAV" ; + :created_in "beta12orEarlier" ; + :documentation ; + :file_extension "lav" ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "LAV format of alignments generated by BLASTZ and LASTZ." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2920 . + +:format_3015 a owl:Class ; + rdfs:label "Pileup" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Pileup format of alignment of sequences (e.g. sequencing reads) to (a) reference sequence(s). Contains aligned bases per base of the reference sequence(s)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2920 . + +:format_3017 a owl:Class ; + rdfs:label "SRF" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Sequence Read Format (SRF) of sequence trace data. Supports submission to the NCBI Short Read Archive." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2057, + :format_2333 . + +:format_3018 a owl:Class ; + rdfs:label "ZTR" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "ZTR format for storing chromatogram data from DNA sequencing instruments." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2057, + :format_2333 . + +:format_3019 a owl:Class ; + rdfs:label "GVF" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Genome Variation Format (GVF). A GFF3-compatible format with defined header and attribute tags for sequence variation." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1975, + :format_2921 . + +:format_3020 a owl:Class ; + rdfs:label "BCF" ; + :created_in "beta12orEarlier" ; + :documentation ; + :file_extension "bcf", + "bcf.gz" ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "BCF is the binary version of Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_2921 . + +:format_3098 a owl:Class ; + rdfs:label "Raw SCOP domain classification format" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Format of raw SCOP domain classification data files." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "These are the parsable data files provided by SCOP." ; + rdfs:subClassOf :format_3097 . + +:format_3099 a owl:Class ; + rdfs:label "Raw CATH domain classification format" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Format of raw CATH domain classification data files." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "These are the parsable data files provided by CATH." ; + rdfs:subClassOf :format_3097 . + +:format_3100 a owl:Class ; + rdfs:label "CATH domain report format" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Format of summary of domain classification information for a CATH domain." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The report (for example http://www.cathdb.info/domain/1cukA01) includes CATH codes for levels in the hierarchy for the domain, level descriptions and relevant data and links." ; + rdfs:subClassOf :format_3097 . + +:format_3155 a owl:Class ; + rdfs:label "SBRML" ; + :created_in "1.0" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Systems Biology Result Markup Language (SBRML), the standard XML format for simulated or calculated results (e.g. trajectories) of systems biology models." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3166 . + +:format_3156 a owl:Class ; + rdfs:label "BioPAX" ; + :created_in "1.0" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "BioPAX is an exchange format for pathway data, with its data model defined in OWL." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2013 . + +:format_3157 a owl:Class ; + rdfs:label "EBI Application Result XML" ; + :created_in "1.0" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "EBI Application Result XML is a format returned by sequence similarity search Web services at EBI." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2066, + :format_2332, + :format_2920 . + +:format_3159 a owl:Class ; + rdfs:label "phyloXML" ; + :created_in "1.0" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "phyloXML is a standardised XML format for phylogenetic trees, networks, and associated data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_2557 . + +:format_3160 a owl:Class ; + rdfs:label "NeXML" ; + :created_in "1.0" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "NeXML is a standardised XML format for rich phyloinformatic data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_2557 . + +:format_3161 a owl:Class ; + rdfs:label "MAGE-ML" ; + :created_in "1.0" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "MAGE-ML XML format for microarray expression data, standardised by MGED (now FGED)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3111 ], + :format_2058, + :format_2332 . + +:format_3162 a owl:Class ; + rdfs:label "MAGE-TAB" ; + :created_in "1.0" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "MAGE-TAB textual format for microarray expression data, standardised by MGED (now FGED)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3111 ], + :format_2058, + :format_3475 . + +:format_3163 a owl:Class ; + rdfs:label "GCDML" ; + :created_in "1.0" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "GCDML XML format for genome and metagenome metadata according to MIGS/MIMS/MIMARKS information standards, standardised by the Genomic Standards Consortium (GSC)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3167 . + +:format_3164 a owl:Class ; + rdfs:label "GTrack" ; + :citation ; + :created_in "1.0" ; + :documentation , + , + ; + :example , + ; + :repository ; + oboInOwl:hasDbXref , + , + ; + oboInOwl:hasDefinition "GTrack is a generic and optimised tabular format for genome or sequence feature tracks. GTrack unifies the power of other track formats (e.g. GFF3, BED, WIG), and while optimised in size, adds more flexibility, customisation, and automation (\"machine understandability\")." ; + oboInOwl:hasExactSynonym "BioXSD/GTrack GTrack", + "BioXSD|GTrack GTrack", + "GTrack ecosystem of formats", + "GTrack format", + "GTrack|BTrack|GSuite GTrack", + "GTrack|GSuite|BTrack GTrack" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "'GTrack' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'GTrack' is the tabular format for representing features of sequences and genomes." ; + rdfs:subClassOf :format_2206, + :format_2330, + :format_2919 . + +:format_3235 a owl:Class ; + rdfs:label "Cytoband format" ; + :created_in "1.2" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Cytoband format for chromosome cytobands." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Reflects a UCSC Browser DB table." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3236 ], + :format_2078, + :format_2330 . + +:format_3239 a owl:Class ; + rdfs:label "CopasiML" ; + :created_in "1.2" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "CopasiML, the native format of COPASI." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2013, + :format_2332, + :format_3166 . + +:format_3240 a owl:Class ; + rdfs:label "CellML" ; + :created_in "1.2" ; + :documentation ; + :media_type ; + oboInOwl:hasDbXref , + ; + oboInOwl:hasDefinition "CellML, the format for mathematical models of biological and other networks." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2013, + :format_2332 . + +:format_3242 a owl:Class ; + rdfs:label "PSI MI TAB (MITAB)" ; + :created_in "1.2" ; + :documentation , + , + , + ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Tabular Molecular Interaction format (MITAB), standardised by HUPO PSI MI." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2054, + :format_2330 . + +:format_3243 a owl:Class ; + rdfs:label "PSI-PAR" ; + :created_in "1.2" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Protein affinity format (PSI-PAR), standardised by HUPO PSI MI. It is compatible with PSI MI XML (MIF) and uses the same XML Schema." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3158 . + +:format_3244 a owl:Class ; + rdfs:label "mzML" ; + :created_in "1.2" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "mzML format for raw spectrometer output data, standardised by HUPO PSI MSS." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "mzML is the successor and unifier of the mzData format developed by PSI and mzXML developed at the Seattle Proteome Center." ; + rdfs:subClassOf :format_2332, + :format_3245 . + +:format_3246 a owl:Class ; + rdfs:label "TraML" ; + :created_in "1.2" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "TraML (Transition Markup Language) is the format for mass spectrometry transitions, standardised by HUPO PSI MSS." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3245 . + +:format_3247 a owl:Class ; + rdfs:label "mzIdentML" ; + :created_in "1.2" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "mzIdentML is the exchange format for peptides and proteins identified from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of proteomics search engines." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3245 . + +:format_3248 a owl:Class ; + rdfs:label "mzQuantML" ; + :created_in "1.2" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "mzQuantML is the format for quantitation values associated with peptides, proteins and small molecules from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of quantitation software for proteomics." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3245 . + +:format_3249 a owl:Class ; + rdfs:label "GelML" ; + :created_in "1.2" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "GelML is the format for describing the process of gel electrophoresis, standardised by HUPO PSI PS." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3167 . + +:format_3250 a owl:Class ; + rdfs:label "spML" ; + :created_in "1.2" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "spML is the format for describing proteomics sample processing, other than using gels, prior to mass spectrometric protein identification, standardised by HUPO PSI PS. It may also be applicable for metabolomics." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3167 . + +:format_3252 a owl:Class ; + rdfs:label "OWL Functional Syntax" ; + :created_in "1.2" ; + oboInOwl:hasDefinition "A human-readable encoding for the Web Ontology Language (OWL)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2197, + :format_2330 . + +:format_3253 a owl:Class ; + rdfs:label "Manchester OWL Syntax" ; + :created_in "1.2" ; + oboInOwl:hasDefinition "A syntax for writing OWL class expressions." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This format was influenced by the OWL Abstract Syntax and the DL style syntax." ; + rdfs:subClassOf :format_2197, + :format_2330 . + +:format_3254 a owl:Class ; + rdfs:label "KRSS2 Syntax" ; + :created_in "1.2" ; + oboInOwl:hasDefinition "A superset of the \"Description-Logic Knowledge Representation System Specification from the KRSS Group of the ARPA Knowledge Sharing Effort\"." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This format is used in Protege 4." ; + rdfs:subClassOf :format_2195, + :format_2330 . + +:format_3255 a owl:Class ; + rdfs:label "Turtle" ; + :created_in "1.2" ; + oboInOwl:hasDefinition "The Terse RDF Triple Language (Turtle) is a human-friendly serialisation format for RDF (Resource Description Framework) graphs." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The SPARQL Query Language incorporates a very similar syntax." ; + rdfs:subClassOf :format_2330, + :format_2376 . + +:format_3256 a owl:Class ; + rdfs:label "N-Triples" ; + :created_in "1.2" ; + :file_extension "nt" ; + oboInOwl:hasDefinition "A plain text serialisation format for RDF (Resource Description Framework) graphs, and a subset of the Turtle (Terse RDF Triple Language) format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "N-Triples should not be confused with Notation 3 which is a superset of Turtle." ; + rdfs:subClassOf :format_2330, + :format_2376 . + +:format_3257 a owl:Class ; + rdfs:label "Notation3" ; + :created_in "1.2" ; + :file_extension "n3" ; + oboInOwl:hasDefinition "A shorthand non-XML serialisation of Resource Description Framework model, designed with human-readability in mind." ; + oboInOwl:hasExactSynonym "N3" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2376 . + +:format_3262 a owl:Class ; + rdfs:label "OWL/XML" ; + :created_in "1.2" ; + oboInOwl:hasDefinition "OWL ontology XML serialisation format." ; + oboInOwl:hasExactSynonym "OWL" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2197, + :format_2332 . + +:format_3281 a owl:Class ; + rdfs:label "A2M" ; + :created_in "1.3" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "The A2M format is used as the primary format for multiple alignments of protein or nucleic-acid sequences in the SAM suite of tools. It is a small modification of FASTA format for sequences and is compatible with most tools that read FASTA." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2200, + :format_2554 . + +:format_3284 a owl:Class ; + rdfs:label "SFF" ; + :created_in "1.3" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Standard flowgram format (SFF) is a binary file format used to encode results of pyrosequencing from the 454 Life Sciences platform for high-throughput sequencing." ; + oboInOwl:hasExactSynonym "Standard flowgram format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2057, + :format_2333 . + +:format_3285 a owl:Class ; + rdfs:label "MAP" ; + :created_in "1.3" ; + :documentation ; + oboInOwl:hasDefinition "The MAP file describes SNPs and is used by the Plink package." ; + oboInOwl:hasExactSynonym "Plink MAP" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3288 . + +:format_3286 a owl:Class ; + rdfs:label "PED" ; + :created_in "1.3" ; + :documentation ; + oboInOwl:hasDefinition "The PED file describes individuals and genetic data and is used by the Plink package." ; + oboInOwl:hasExactSynonym "Plink PED" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3288 . + +:format_3309 a owl:Class ; + rdfs:label "CT" ; + :created_in "1.3" ; + :documentation , + ; + oboInOwl:hasDefinition "File format of a CT (Connectivity Table) file from the RNAstructure package." ; + oboInOwl:hasExactSynonym "Connect format", + "Connectivity Table file format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2076, + :format_2330 . + +:format_3310 a owl:Class ; + rdfs:label "SS" ; + :created_in "1.3" ; + :documentation ; + oboInOwl:hasDefinition "XRNA old input style format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2076, + :format_2330 . + +:format_3311 a owl:Class ; + rdfs:label "RNAML" ; + :created_in "1.3" ; + :documentation ; + oboInOwl:hasDefinition "RNA Markup Language." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1921, + :format_2076, + :format_2332 . + +:format_3312 a owl:Class ; + rdfs:label "GDE" ; + :created_in "1.3" ; + :documentation ; + oboInOwl:hasDefinition "Format for the Genetic Data Environment (GDE)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_3313 a owl:Class ; + rdfs:label "BLC" ; + :created_in "1.3" ; + :documentation ; + oboInOwl:hasDefinition "A multiple alignment in vertical format, as used in the AMPS (Alignment of Multiple Protein Sequences) package." ; + oboInOwl:hasExactSynonym "Block file format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2554 . + +:format_3327 a owl:Class ; + rdfs:label "BAI" ; + :created_in "1.3" ; + :documentation ; + oboInOwl:hasDefinition "BAM indexing format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0955 ], + :format_2333, + :format_3326 . + +:format_3328 a owl:Class ; + rdfs:label "HMMER2" ; + :created_in "1.3" ; + :documentation ; + oboInOwl:hasDefinition "HMMER profile HMM file for HMMER versions 2.x." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1370 . + +:format_3329 a owl:Class ; + rdfs:label "HMMER3" ; + :created_in "1.3" ; + :documentation ; + oboInOwl:hasDefinition "HMMER profile HMM file for HMMER versions 3.x." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1370 . + +:format_3330 a owl:Class ; + rdfs:label "PO" ; + :created_in "1.3" ; + :documentation ; + oboInOwl:hasDefinition "PO is the output format of Partial Order Alignment program (POA) performing Multiple Sequence Alignment (MSA)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2554 . + +:format_3331 a owl:Class ; + rdfs:label "BLAST XML results format" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "XML format as produced by the NCBI Blast package." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1333, + :format_2332 . + +:format_3462 a owl:Class ; + rdfs:label "CRAM" ; + :created_in "1.7" ; + :documentation "http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf" ; + oboInOwl:hasDbXref "http://www.ebi.ac.uk/ena/software/cram-usage#format_specification http://samtools.github.io/hts-specs/CRAMv2.1.pdf" ; + oboInOwl:hasDefinition "Reference-based compression of alignment format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_2920 . + +:format_3466 a owl:Class ; + rdfs:label "EPS" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Encapsulated PostScript format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3696 . + +:format_3467 a owl:Class ; + rdfs:label "GIF" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Graphics Interchange Format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333 . + +:format_3468 a owl:Class ; + rdfs:label "xls" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Microsoft Excel spreadsheet format." ; + oboInOwl:hasExactSynonym "Microsoft Excel format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3507 . + +:format_3476 a owl:Class ; + rdfs:label "Gene expression data format" ; + :created_in "1.7" ; + :obsolete_since "1.10" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Format of a file of gene expression data, e.g. a gene expression matrix or profile." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :format_2058 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_3477 a owl:Class ; + rdfs:label "Cytoscape input file format" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Format of the cytoscape input file of gene expression ratios or values are specified over one or more experiments." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2058, + :format_2330 . + +:format_3484 a owl:Class ; + rdfs:label "ebwt" ; + :created_in "1.7" ; + :documentation "https://github.com/BenLangmead/bowtie/blob/master/MANUAL" ; + oboInOwl:hasDefinition "Bowtie format for indexed reference genome for \"small\" genomes." ; + oboInOwl:hasExactSynonym "Bowtie index format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3210 ], + :format_2333, + :format_3326 . + +:format_3485 a owl:Class ; + rdfs:label "RSF" ; + :created_in "1.7" ; + :documentation "http://www.molbiol.ox.ac.uk/tutorials/Seqlab_GCG.pdf" ; + oboInOwl:hasDefinition "Rich sequence format." ; + oboInOwl:hasExactSynonym "GCG RSF" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "RSF-format files contain one or more sequences that may or may not be related. In addition to the sequence data, each sequence can be annotated with descriptive sequence information (from the GCG manual)." ; + rdfs:subClassOf :format_3486 . + +:format_3487 a owl:Class ; + rdfs:label "BSML" ; + :created_in "1.7" ; + :documentation "http://rothlab.ucdavis.edu/genhelp/chapter_2_using_sequences.html#_Creating_and_Editing_Single_Sequenc" ; + oboInOwl:hasDefinition "Bioinformatics Sequence Markup Language format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_2552 . + +:format_3491 a owl:Class ; + rdfs:label "ebwtl" ; + :created_in "1.7" ; + :documentation "https://github.com/BenLangmead/bowtie/blob/master/MANUAL" ; + oboInOwl:hasDefinition "Bowtie format for indexed reference genome for \"large\" genomes." ; + oboInOwl:hasExactSynonym "Bowtie long index format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3210 ], + :format_2333, + :format_3326 . + +:format_3499 a owl:Class ; + rdfs:label "Ensembl variation file format" ; + :created_in "1.8" ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Ensembl standard format for variation data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2921 . + +:format_3506 a owl:Class ; + rdfs:label "docx" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Microsoft Word format." ; + oboInOwl:hasExactSynonym "Microsoft Word format", + "doc" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3507 . + +:format_3508 a owl:Class ; + rdfs:label "PDF" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Portable Document Format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3507 . + +:format_3548 a owl:Class ; + rdfs:label "DICOM format" ; + :created_in "1.9" ; + :documentation ; + oboInOwl:hasDefinition "Medical image format corresponding to the Digital Imaging and Communications in Medicine (DICOM) standard." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3550 a owl:Class ; + rdfs:label "mhd" ; + :created_in "1.9" ; + :documentation ; + oboInOwl:hasDefinition "Text-based tagged file format for medical images generated using the MetaImage software package." ; + oboInOwl:hasExactSynonym "Metalmage format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_3547 . + +:format_3551 a owl:Class ; + rdfs:label "nrrd" ; + :created_in "1.9" ; + :documentation ; + oboInOwl:hasDefinition "Nearly Raw Rasta Data format designed to support scientific visualisation and image processing involving N-dimensional raster data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_3547 . + +:format_3554 a owl:Class ; + rdfs:label "R file format" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "File format used for scripts written in the R programming language for execution within the R software environment, typically for statistical computation and graphics." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330 . + +:format_3555 a owl:Class ; + rdfs:label "SPSS" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "File format used for scripts for the Statistical Package for the Social Sciences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330 . + +:format_3556 a owl:Class ; + rdfs:label "MHTML" ; + :created_in "1.9" ; + :documentation ; + :file_extension "eml", + "mht", + "mhtml" ; + :media_type ; + oboInOwl:hasDbXref , + ; + oboInOwl:hasDefinition "MIME HTML format for Web pages, which can include external resources, including images, Flash animations and so on." ; + oboInOwl:hasExactSynonym "HTML email format", + "HTML email message format", + "MHT", + "MHT format", + "MHTML format", + "MIME HTML", + "MIME HTML format", + "eml" ; + oboInOwl:hasRelatedSynonym "MIME multipart", + "MIME multipart format", + "MIME multipart message", + "MIME multipart message format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "MHTML is not strictly an HTML format, it is encoded as an HTML email message (although with multipart/related instead of multipart/alternative). It, however, contains the main HTML block as its core, and thus it is for practical reasons included in EDAM as a specialisation of 'HTML'." ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2331 . + +:format_3578 a owl:Class ; + rdfs:label "IDAT" ; + :created_in "1.10" ; + oboInOwl:hasDefinition "Proprietary file format for (raw) BeadArray data used by genomewide profiling platforms from Illumina Inc. This format is output directly from the scanner and stores summary intensities for each probe-type on an array." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3110 ], + :format_2058, + :format_2333 . + +:format_3579 a owl:Class ; + rdfs:label "JPG" ; + :created_in "1.10" ; + :documentation ; + oboInOwl:hasDefinition "Joint Picture Group file format for lossy graphics file." ; + oboInOwl:hasExactSynonym "JPEG", + "jpeg" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3580 a owl:Class ; + rdfs:label "rcc" ; + :created_in "1.10" ; + oboInOwl:hasDefinition "Reporter Code Count-A data file (.csv) output by the Nanostring nCounter Digital Analyzer, which contains gene sample information, probe information and probe counts." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2058, + :format_2330 . + +:format_3581 a owl:Class ; + rdfs:label "arff" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "ARFF (Attribute-Relation File Format) is an ASCII text file format that describes a list of instances sharing a set of attributes." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This file format is for machine learning." ; + rdfs:subClassOf :format_2330 . + +:format_3582 a owl:Class ; + rdfs:label "afg" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "AFG is a single text-based file assembly format that holds read and consensus information together." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2561 . + +:format_3583 a owl:Class ; + rdfs:label "bedgraph" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "The bedGraph format allows display of continuous-valued data in track format. This display type is useful for probability scores and transcriptome data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Holds a tab-delimited chromosome /start /end / datavalue dataset." ; + rdfs:subClassOf :format_2330, + :format_2919 . + +:format_3586 a owl:Class ; + rdfs:label "bed12" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "A BED file where each feature is described by all twelve columns." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 12" ; + rdfs:subClassOf :format_3584 . + +:format_3587 a owl:Class ; + rdfs:label "chrominfo" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Tabular format of chromosome names and sizes used by Galaxy." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Galaxy allows BED files to contain non-standard fields beyond the first 3 columns, some other implementations do not." ; + rdfs:subClassOf :format_2330, + :format_3003 . + +:format_3588 a owl:Class ; + rdfs:label "customtrack" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Custom Sequence annotation track format used by Galaxy." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Used for tracks/track views within galaxy." ; + rdfs:subClassOf :format_2330, + :format_2919 . + +:format_3589 a owl:Class ; + rdfs:label "csfasta" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Color space FASTA format sequence variant." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "FASTA format extended for color space information." ; + rdfs:subClassOf :format_2200, + :format_2554 . + +:format_3591 a owl:Class ; + rdfs:label "TIFF" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "A versatile bitmap format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The TIFF format is perhaps the most versatile and diverse bitmap format in existence. Its extensible nature and support for numerous data compression schemes allow developers to customize the TIFF format to fit any peculiar data storage needs." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3592 a owl:Class ; + rdfs:label "BMP" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "Standard bitmap storage format in the Microsoft Windows environment." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Although it is based on Windows internal bitmap data structures, it is supported by many non-Windows and non-PC applications." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3593 a owl:Class ; + rdfs:label "im" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "IM is a format used by LabEye and other applications based on the IFUNC image processing library." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "IFUNC library reads and writes most uncompressed interchange versions of this format." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3594 a owl:Class ; + rdfs:label "pcd" ; + :created_in "1.11" ; + :documentation ; + :file_extension "pcd" ; + oboInOwl:hasDefinition "Photo CD format, which is the highest resolution format for images on a CD." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "PCD was developed by Kodak. A PCD file contains five different resolution (ranging from low to high) of a slide or film negative. Due to it PCD is often used by many photographers and graphics professionals for high-end printed applications." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3595 a owl:Class ; + rdfs:label "pcx" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "PCX is an image file format that uses a simple form of run-length encoding. It is lossless." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3596 a owl:Class ; + rdfs:label "ppm" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "The PPM format is a lowest common denominator color image file format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3597 a owl:Class ; + rdfs:label "psd" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "PSD (Photoshop Document) is a proprietary file that allows the user to work with the images' individual layers even after the file has been saved." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3598 a owl:Class ; + rdfs:label "xbm" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "X BitMap is a plain text binary image format used by the X Window System used for storing cursor and icon bitmaps used in the X GUI." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The XBM format was replaced by XPM for X11 in 1989." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3599 a owl:Class ; + rdfs:label "xpm" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "X PixMap (XPM) is an image file format used by the X Window System, it is intended primarily for creating icon pixmaps, and supports transparent pixels." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Sequence of segments with markers. Begins with byte of 0xFF and follows by marker type." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3600 a owl:Class ; + rdfs:label "rgb" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "RGB file format is the native raster graphics file format for Silicon Graphics workstations." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3601 a owl:Class ; + rdfs:label "pbm" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "The PBM format is a lowest common denominator monochrome file format. It serves as the common language of a large family of bitmap image conversion filters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3602 a owl:Class ; + rdfs:label "pgm" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "The PGM format is a lowest common denominator grayscale file format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "It is designed to be extremely easy to learn and write programs for." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3603 a owl:Class ; + rdfs:label "PNG" ; + :created_in "1.11" ; + :documentation ; + :file_extension "png" ; + oboInOwl:hasDefinition "PNG is a file format for image compression." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "It iis expected to replace the Graphics Interchange Format (GIF)." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3604 a owl:Class ; + rdfs:label "SVG" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "Scalable Vector Graphics (SVG) is an XML-based vector image format for two-dimensional graphics with support for interactivity and animation." ; + oboInOwl:hasExactSynonym "Scalable Vector Graphics" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999." ; + rdfs:subClassOf :format_2332, + :format_3547 . + +:format_3605 a owl:Class ; + rdfs:label "rast" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "Sun Raster is a raster graphics file format used on SunOS by Sun Microsystems." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3608 a owl:Class ; + rdfs:label "qualsolexa" ; + :created_in "1.11" ; + oboInOwl:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences) for Solexa/Illumina 1.0 format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Solexa/Illumina 1.0 format can encode a Solexa/Illumina quality score from -5 to 62 using ASCII 59 to 126 (although in raw read data Solexa scores from -5 to 40 only are expected)" ; + rdfs:subClassOf :format_1933, + :format_3607 . + +:format_3609 a owl:Class ; + rdfs:label "qualillumina" ; + :created_in "1.11" ; + :documentation "http://en.wikipedia.org/wiki/Phred_quality_score" ; + oboInOwl:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences) from Illumina 1.5 and before Illumina 1.8." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Starting in Illumina 1.5 and before Illumina 1.8, the Phred scores 0 to 2 have a slightly different meaning. The values 0 and 1 are no longer used and the value 2, encoded by ASCII 66 \"B\", is used also at the end of reads as a Read Segment Quality Control Indicator." ; + rdfs:subClassOf :format_1931, + :format_3607 . + +:format_3610 a owl:Class ; + rdfs:label "qualsolid" ; + :created_in "1.11" ; + :documentation "http://en.wikipedia.org/wiki/Phred_quality_score" ; + oboInOwl:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences) for SOLiD data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "For SOLiD data, the sequence is in color space, except the first position. The quality values are those of the Sanger format." ; + rdfs:subClassOf :format_3607 . + +:format_3611 a owl:Class ; + rdfs:label "qual454" ; + :created_in "1.11" ; + :documentation "http://en.wikipedia.org/wiki/Phred_quality_score" ; + oboInOwl:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences) from 454 sequencers." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3607 . + +:format_3613 a owl:Class ; + rdfs:label "ENCODE narrow peak format" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Human ENCODE narrow peak format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Format that covers both the broad peak format and narrow peak format from ENCODE." ; + rdfs:subClassOf :format_3612 . + +:format_3614 a owl:Class ; + rdfs:label "ENCODE broad peak format" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Human ENCODE broad peak format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3612 . + +:format_3615 a owl:Class ; + rdfs:label "bgzip" ; + :created_in "1.11" ; + :documentation ; + :file_extension "bgz" ; + oboInOwl:hasDefinition "Blocked GNU Zip format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "BAM files are compressed using a variant of GZIP (GNU ZIP), into a format called BGZF (Blocked GNU Zip Format)." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3616 a owl:Class ; + rdfs:label "tabix" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "TAB-delimited genome position file index format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3618 a owl:Class ; + rdfs:label "xgmml" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "XML-based format used to store graph descriptions within Galaxy." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3617 . + +:format_3619 a owl:Class ; + rdfs:label "sif" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "SIF (simple interaction file) Format - a network/pathway format used for instance in cytoscape." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2013 . + +:format_3622 a owl:Class ; + rdfs:label "Gemini SQLite format" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "Data format used by the SQLite database conformant to the Gemini schema." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2921, + :format_3621 . + +:format_3623 a owl:Class ; + rdfs:label "Index format" ; + :created_in "1.11" ; + :deprecation_comment "Duplicate of http://edamontology.org/format_3326" ; + :obsolete_since "1.20" ; + :oldParent :format_2333, + :format_2350 ; + oboInOwl:hasDefinition "Format of a data index of some type." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :format_3326 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_3624 a owl:Class ; + rdfs:label "snpeffdb" ; + :created_in "1.11" ; + oboInOwl:hasDefinition "An index of a genome database, indexed for use by the snpeff tool." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3326 . + +:format_3626 a owl:Class ; + rdfs:label "MAT" ; + :created_in "1.12" ; + :documentation ; + oboInOwl:hasDefinition "Binary format used by MATLAB files to store workspace variables." ; + oboInOwl:hasExactSynonym ".mat file format", + "MAT file format", + "MATLAB file format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1499 ], + :format_3033 . + +:format_3650 a owl:Class ; + rdfs:label "netCDF" ; + :created_in "1.12" ; + :documentation ; + oboInOwl:hasDefinition "Format used by netCDF software library for writing and reading chromatography-MS data files. Also used to store trajectory atom coordinates information, such as the ones obtained by Molecular Dynamics simulations." ; + oboInOwl:hasExactSynonym "ANDI-MS" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Network Common Data Form (NetCDF) library is supported by AMBER MD package from version 9." ; + rdfs:subClassOf :format_2333, + :format_3245, + :format_3867 . + +:format_3651 a owl:Class ; + rdfs:label "MGF" ; + :created_in "1.12" ; + :file_extension "mgf" ; + oboInOwl:hasDefinition "Mascot Generic Format. Encodes multiple MS/MS spectra in a single file." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Files includes *m*/*z*, intensity pairs separated by headers; headers can contain a bit more information, including search engine instructions." ; + rdfs:subClassOf :format_3245 . + +:format_3652 a owl:Class ; + rdfs:label "dta" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Spectral data format file where each spectrum is written to a separate file." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Each file contains one header line for the known or assumed charge and the mass of the precursor peptide ion, calculated from the measured *m*/*z* and the charge. This one line was then followed by all the *m*/*z*, intensity pairs that represent the spectrum." ; + rdfs:subClassOf :format_3245 . + +:format_3653 a owl:Class ; + rdfs:label "pkl" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Spectral data file similar to dta." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Differ from .dta only in subtleties of the header line format and content and support the added feature of being able to." ; + rdfs:subClassOf :format_3245 . + +:format_3654 a owl:Class ; + rdfs:label "mzXML" ; + :created_in "1.12" ; + :documentation "https://dx.doi.org/10.1038%2Fnbt1031" ; + oboInOwl:hasDefinition "Common file format for proteomics mass spectrometric data developed at the Seattle Proteome Center/Institute for Systems Biology." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3245 . + +:format_3655 a owl:Class ; + rdfs:label "pepXML" ; + :created_in "1.12" ; + :documentation "http://sashimi.sourceforge.net/schema_revision/pepXML/pepXML_v118.xsd" ; + oboInOwl:hasDefinition "Open data format for the storage, exchange, and processing of peptide sequence assignments of MS/MS scans, intended to provide a common data output format for many different MS/MS search engines and subsequent peptide-level analyses." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3245 . + +:format_3657 a owl:Class ; + rdfs:label "GPML" ; + :created_in "1.12" ; + :documentation ; + oboInOwl:hasDefinition "Graphical Pathway Markup Language (GPML) is an XML format used for exchanging biological pathways." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2013, + :format_2332 . + +:format_3665 a owl:Class ; + rdfs:label "K-mer countgraph" ; + :created_in "1.12" ; + :documentation ; + :file_extension "oxlicg" ; + :media_type ; + oboInOwl:hasDbXref , + ; + oboInOwl:hasDefinition "A list of k-mers and their occurrences in a dataset. Can also be used as an implicit De Bruijn graph." ; + rdfs:subClassOf :format_2333, + :format_3617 . + +:format_3681 a owl:Class ; + rdfs:label "mzTab" ; + :citation ; + :created_in "1.13" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "mzTab is a tab-delimited format for mass spectrometry-based proteomics and metabolomics results." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_3245 . + +:format_3682 a owl:Class ; + rdfs:label "imzML metadata file" ; + :citation ; + :created_in "1.13" ; + :documentation ; + :file_extension "imzml" ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "imzML metadata is a data format for mass spectrometry imaging metadata." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "imzML data are recorded in 2 files: '.imzXML' is a metadata XML file based on mzML by HUPO-PSI, and '.ibd' is a binary file containing the mass spectra. This entry is for the metadata XML file" ; + rdfs:subClassOf :format_2332, + :format_3245 . + +:format_3683 a owl:Class ; + rdfs:label "qcML" ; + :created_in "1.13" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "qcML is an XML format for quality-related data of mass spectrometry and other high-throughput measurements." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The focus of qcML is towards mass spectrometry based proteomics, but the format is suitable for metabolomics and sequencing as well." ; + rdfs:subClassOf :format_2332, + :format_3167, + :format_3245 . + +:format_3684 a owl:Class ; + rdfs:label "PRIDE XML" ; + :created_in "1.13" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "PRIDE XML is an XML format for mass spectra, peptide and protein identifications, and metadata about a corresponding measurement, sample, experiment." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3167, + :format_3245 . + +:format_3685 a owl:Class ; + rdfs:label "SED-ML" ; + :citation , + ; + :created_in "1.13" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Simulation Experiment Description Markup Language (SED-ML) is an XML format for encoding simulation setups, according to the MIASE (Minimum Information About a Simulation Experiment) requirements." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3167 . + +:format_3686 a owl:Class ; + rdfs:label "COMBINE OMEX" ; + :citation ; + :created_in "1.13" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Open Modeling EXchange format (OMEX) is a ZIPped format for encapsulating all information necessary for a modeling and simulation project in systems biology." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "An OMEX file is a ZIP container that includes a manifest file, listing the content of the archive, an optional metadata file adding information about the archive and its content, and the files describing the model. OMEX is one of the standardised formats within COMBINE (Computational Modeling in Biology Network)." ; + rdfs:subClassOf :format_2013, + :format_2333, + :format_3167 . + +:format_3687 a owl:Class ; + rdfs:label "ISA-TAB" ; + :created_in "1.13" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "The Investigation / Study / Assay (ISA) tab-delimited (TAB) format incorporates metadata from experiments employing a combination of technologies." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "ISA-TAB is based on MAGE-TAB. Other than tabular, the ISA model can also be represented in RDF, and in JSON (compliable with a set of defined JSON Schemata)." ; + rdfs:subClassOf :format_2058, + :format_2330, + :format_3167 . + +:format_3688 a owl:Class ; + rdfs:label "SBtab" ; + :citation ; + :created_in "1.13" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "SBtab is a tabular format for biochemical network models." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2013, + :format_2330 . + +:format_3689 a owl:Class ; + rdfs:label "BCML" ; + :created_in "1.13" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Biological Connection Markup Language (BCML) is an XML format for biological pathways." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2013, + :format_2332 . + +:format_3690 a owl:Class ; + rdfs:label "BDML" ; + :citation ; + :created_in "1.13" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Biological Dynamics Markup Language (BDML) is an XML format for quantitative data describing biological dynamics." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332 . + +:format_3691 a owl:Class ; + rdfs:label "BEL" ; + :created_in "1.13" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Biological Expression Language (BEL) is a textual format for representing scientific findings in life sciences in a computable form." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330 . + +:format_3692 a owl:Class ; + rdfs:label "SBGN-ML" ; + :created_in "1.13" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "SBGN-ML is an XML format for Systems Biology Graphical Notation (SBGN) diagrams of biological pathways or networks." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2013, + :format_2332 . + +:format_3693 a owl:Class ; + rdfs:label "AGP" ; + :created_in "1.13" ; + :documentation ; + :file_extension "agp" ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "AGP is a tabular format for a sequence assembly (a contig, a scaffold/supercontig, or a chromosome)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2055, + :format_2330 . + +:format_3698 a owl:Class ; + rdfs:label "SRA format" ; + :created_in "1.13" ; + :documentation ; + :file_extension "sra" ; + oboInOwl:hasDefinition "SRA archive format (SRA) is the archive format used for input to the NCBI Sequence Read Archive." ; + oboInOwl:hasExactSynonym "SRA", + "SRA archive format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333 . + +:format_3699 a owl:Class ; + rdfs:label "VDB" ; + :created_in "1.13" ; + :documentation ; + oboInOwl:hasDefinition "VDB ('vertical database') is the native format used for export from the NCBI Sequence Read Archive." ; + oboInOwl:hasExactSynonym "SRA native format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333 . + +:format_3700 a owl:Class ; + rdfs:label "Tabix index file format" ; + :created_in "1.13" ; + :documentation ; + oboInOwl:hasDefinition "Index file format used by the samtools package to index TAB-delimited genome position files." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0955 ], + :format_2333, + :format_3326 . + +:format_3701 a owl:Class ; + rdfs:label "Sequin format" ; + :created_in "1.13" ; + oboInOwl:hasDefinition "A five-column, tab-delimited table of feature locations and qualifiers for importing annotation into an existing Sequin submission (an NCBI tool for submitting and updating GenBank entries)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2206 . + +:format_3702 a owl:Class ; + rdfs:label "MSF" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "Proprietary mass-spectrometry format of Thermo Scientific's ProteomeDiscoverer software." ; + oboInOwl:hasExactSynonym "Magellan storage file format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This format corresponds to an SQLite database, and you can look into the files with e.g. SQLiteStudio3. There are also some readers (http://doi.org/10.1021/pr2005154) and converters (http://doi.org/10.1016/j.jprot.2015.06.015) for this format available, which re-engineered the database schema, but there is no official DB schema specification of Thermo Scientific for the format." ; + rdfs:subClassOf :format_3245 . + +:format_3708 a owl:Class ; + rdfs:label "ABCD format" ; + :created_in "1.14" ; + :documentation ; + oboInOwl:hasDefinition "Exchange format of the Access to Biological Collections Data (ABCD) Schema; a standard for the access to and exchange of data about specimens and observations (primary biodiversity data)." ; + oboInOwl:hasExactSynonym "ABCD" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3707 ], + :format_3706 . + +:format_3709 a owl:Class ; + rdfs:label "GCT/Res format" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "Tab-delimited text files of GenePattern that contain a column for each sample, a row for each gene, and an expression value for each gene in each sample." ; + oboInOwl:hasExactSynonym "GCT format", + "Res format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2058, + :format_2330 . + +:format_3710 a owl:Class ; + rdfs:label "WIFF format" ; + :created_in "1.14" ; + :file_extension "wiff" ; + oboInOwl:hasDefinition "Mass spectrum file format from QSTAR and QTRAP instruments (ABI/Sciex)." ; + oboInOwl:hasExactSynonym "wiff" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3245 . + +:format_3711 a owl:Class ; + rdfs:label "X!Tandem XML" ; + :created_in "1.14" ; + :documentation ; + oboInOwl:hasDefinition "Output format used by X! series search engines that is based on the XML language BIOML." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3245 . + +:format_3712 a owl:Class ; + rdfs:label "Thermo RAW" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "Proprietary file format for mass spectrometry data from Thermo Scientific." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Proprietary format for which documentation is not available." ; + rdfs:subClassOf :format_2333, + :format_3245 . + +:format_3713 a owl:Class ; + rdfs:label "Mascot .dat file" ; + :created_in "1.14" ; + :documentation ; + oboInOwl:hasDefinition "\"Raw\" result file from Mascot database search." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_3245 . + +:format_3714 a owl:Class ; + rdfs:label "MaxQuant APL peaklist format" ; + :created_in "1.14" ; + :documentation ; + oboInOwl:hasDefinition "Format of peak list files from Andromeda search engine (MaxQuant) that consist of arbitrarily many spectra." ; + oboInOwl:hasExactSynonym "MaxQuant APL" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_3245 . + +:format_3725 a owl:Class ; + rdfs:label "SBOL" ; + :created_in "1.14" ; + :documentation ; + oboInOwl:hasDefinition "Synthetic Biology Open Language (SBOL) is an XML format for the specification and exchange of biological design information in synthetic biology." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "SBOL introduces a standardised format for the electronic exchange of information on the structural and functional aspects of biological designs." ; + rdfs:subClassOf :format_2332 . + +:format_3726 a owl:Class ; + rdfs:label "PMML" ; + :created_in "1.14" ; + :documentation ; + oboInOwl:hasDefinition "PMML uses XML to represent mining models. The structure of the models is described by an XML Schema." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "One or more mining models can be contained in a PMML document." ; + rdfs:subClassOf :format_2332 . + +:format_3727 a owl:Class ; + rdfs:label "OME-TIFF" ; + :created_in "1.14" ; + :documentation ; + oboInOwl:hasDefinition "Image file format used by the Open Microscopy Environment (OME)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "An OME-TIFF dataset consists of one or more files in standard TIFF or BigTIFF format, with the file extension .ome.tif or .ome.tiff, and an identical (or in the case of multiple files, nearly identical) string of OME-XML metadata embedded in the ImageDescription tag of each file's first IFD (Image File Directory). BigTIFF file extensions are also permitted, with the file extension .ome.tf2, .ome.tf8 or .ome.btf, but note these file extensions are an addition to the original specification, and software using an older version of the specification may not be able to handle these file extensions.", + "OME develops open-source software and data format standards for the storage and manipulation of biological microscopy data. It is a joint project between universities, research establishments, industry and the software development community." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3728 a owl:Class ; + rdfs:label "LocARNA PP" ; + :created_in "1.14" ; + :documentation ; + oboInOwl:hasDefinition "The LocARNA PP format combines sequence or alignment information and (respectively, single or consensus) ensemble probabilities into an PP 2.0 record." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Format for multiple aligned or single sequences together with the probabilistic description of the (consensus) RNA secondary structure ensemble by probabilities of base pairs, base pair stackings, and base pairs and unpaired bases in the loop of base pairs." ; + rdfs:subClassOf :format_2330 . + +:format_3729 a owl:Class ; + rdfs:label "dbGaP format" ; + :created_in "1.14" ; + :documentation ; + oboInOwl:hasDefinition "Input format used by the Database of Genotypes and Phenotypes (dbGaP)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The Database of Genotypes and Phenotypes (dbGaP) is a National Institutes of Health (NIH) sponsored repository charged to archive, curate and distribute information produced by studies investigating the interaction of genotype and phenotype." ; + rdfs:subClassOf :format_2330 . + +:format_3746 a owl:Class ; + rdfs:label "BIOM format" ; + :citation ; + :created_in "1.15" ; + :documentation ; + :file_extension "biom" ; + oboInOwl:hasDefinition "The BIological Observation Matrix (BIOM) is a format for representing biological sample by observation contingency tables in broad areas of comparative omics. The primary use of this format is to represent OTU tables and metagenome tables." ; + oboInOwl:hasExactSynonym "BIological Observation Matrix format", + "biom" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "BIOM is a recognised standard for the Earth Microbiome Project, and is a project supported by Genomics Standards Consortium. Supported in QIIME, Mothur, MEGAN, etc." ; + rdfs:subClassOf :format_2330, + :format_3706 . + +:format_3747 a owl:Class ; + rdfs:label "protXML" ; + :created_in "1.15" ; + :documentation ; + oboInOwl:hasDbXref oboLegacy:MS_1001422 ; + oboInOwl:hasDefinition "A format for storage, exchange, and processing of protein identifications created from ms/ms-derived peptide sequence data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "No human-consumable information about this format is available (see http://tools.proteomecenter.org/wiki/index.php?title=Formats:protXML)." ; + rdfs:seeAlso "http://doi.org/10.1038/msb4100024", + "http://sashimi.sourceforge.net/schema_revision/protXML/protXML_v3.xsd" ; + rdfs:subClassOf :format_2332, + :format_3245 . + +:format_3752 a owl:Class ; + rdfs:label "CSV" ; + :created_in "1.16" ; + :file_extension "csv" ; + :media_type ; + oboInOwl:hasDbXref , + ; + oboInOwl:hasDefinition "Tabular data represented as comma-separated values in a text file." ; + oboInOwl:hasExactSynonym "Comma-separated values" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3751 . + +:format_3758 a owl:Class ; + rdfs:label "SEQUEST .out file" ; + :created_in "1.16" ; + :file_extension "out" ; + oboInOwl:hasDefinition "\"Raw\" result file from SEQUEST database search." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_3245 . + +:format_3764 a owl:Class ; + rdfs:label "idXML" ; + :created_in "1.16" ; + :documentation "http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1IdXMLFile.html", + "http://open-ms.sourceforge.net/schemas/" ; + oboInOwl:hasDefinition "XML file format for files containing information about peptide identifications from mass spectrometry data analysis carried out with OpenMS." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3245 . + +:format_3765 a owl:Class ; + rdfs:label "KNIME datatable format" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "Data table formatted such that it can be passed/streamed within the KNIME platform." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2032 . + +:format_3770 a owl:Class ; + rdfs:label "UniProtKB XML" ; + :created_in "1.16" ; + :documentation ; + oboInOwl:hasDefinition "UniProtKB XML sequence features format is an XML format available for downloading UniProt entries." ; + oboInOwl:hasExactSynonym "UniProt XML", + "UniProt XML format", + "UniProtKB XML format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_2547, + :format_2552 . + +:format_3771 a owl:Class ; + rdfs:label "UniProtKB RDF" ; + :created_in "1.16" ; + :documentation ; + oboInOwl:hasDefinition "UniProtKB RDF sequence features format is an RDF format available for downloading UniProt entries (in RDF/XML)." ; + oboInOwl:hasExactSynonym "UniProt RDF", + "UniProt RDF format", + "UniProt RDF/XML", + "UniProt RDF/XML format", + "UniProtKB RDF format", + "UniProtKB RDF/XML", + "UniProtKB RDF/XML format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2376, + :format_2547 . + +:format_3772 a owl:Class ; + rdfs:label "BioJSON (BioXSD)" ; + :citation ; + :created_in "1.16" ; + :documentation ; + :example , + ; + :repository ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "BioJSON is a BioXSD-schema-based JSON format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web applications and APIs, and object-oriented programming." ; + oboInOwl:hasExactSynonym "BioJSON (BioXSD data model)", + "BioJSON format (BioXSD)", + "BioXSD BioJSON", + "BioXSD BioJSON format", + "BioXSD JSON", + "BioXSD JSON format", + "BioXSD in JSON", + "BioXSD in JSON format", + "BioXSD+JSON", + "BioXSD/GTrack BioJSON", + "BioXSD|BioJSON|BioYAML BioJSON", + "BioXSD|GTrack BioJSON" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Work in progress. 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioJSON' is the JSON format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0863 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1255 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3108 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1772 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2044 ], + :format_1919, + :format_1920, + :format_1921, + :format_2571, + :format_3464 . + +:format_3773 a owl:Class ; + rdfs:label "BioYAML" ; + :citation ; + :created_in "1.16" ; + :documentation ; + :example , + ; + :repository ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "BioYAML is a BioXSD-schema-based YAML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web APIs, human readability and editing, and object-oriented programming." ; + oboInOwl:hasExactSynonym "BioXSD BioYAML", + "BioXSD BioYAML format", + "BioXSD YAML", + "BioXSD YAML format", + "BioXSD in YAML", + "BioXSD in YAML format", + "BioXSD+YAML", + "BioXSD/GTrack BioYAML", + "BioXSD|BioJSON|BioYAML BioYAML", + "BioXSD|GTrack BioYAML", + "BioYAML (BioXSD data model)", + "BioYAML (BioXSD)", + "BioYAML format", + "BioYAML format (BioXSD)" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Work in progress. 'BioXSD' belongs to the 'BioXSD|GTrack' ecosystem of generic formats. 'BioYAML' is the YAML format based on the common, unified 'BioXSD data model', a.k.a. 'BioXSD|BioJSON|BioYAML'." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0863 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1772 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1255 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3108 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2044 ], + :format_1919, + :format_1920, + :format_1921, + :format_2571, + :format_3750 . + +:format_3774 a owl:Class ; + rdfs:label "BioJSON (Jalview)" ; + :created_in "1.16" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "BioJSON is a JSON format of single multiple sequence alignments, with their annotations, features, and custom visualisation and application settings for the Jalview workbench." ; + oboInOwl:hasExactSynonym "BioJSON format (Jalview)", + "JSON (Jalview)", + "JSON format (Jalview)", + "Jalview BioJSON", + "Jalview BioJSON format", + "Jalview JSON", + "Jalview JSON format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1255 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0863 ], + :format_1920, + :format_1921, + :format_3464 . + +:format_3775 a owl:Class ; + rdfs:label "GSuite" ; + :citation , + ; + :created_in "1.16" ; + :documentation , + ; + :example ; + :repository ; + oboInOwl:hasDbXref , + ; + oboInOwl:hasDefinition "GSuite is a tabular format for collections of genome or sequence feature tracks, suitable for integrative multi-track analysis. GSuite contains links to genome/sequence tracks, with additional metadata." ; + oboInOwl:hasExactSynonym "BioXSD/GTrack GSuite", + "BioXSD|GTrack GSuite", + "GSuite (GTrack ecosystem of formats)", + "GSuite format", + "GTrack|BTrack|GSuite GSuite", + "GTrack|GSuite|BTrack GSuite" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "'GSuite' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'GSuite' is the tabular format for an annotated collection of individual GTrack files." ; + rdfs:seeAlso ; + rdfs:subClassOf :format_1920, + :format_2330 . + +:format_3776 a owl:Class ; + rdfs:label "BTrack" ; + :created_in "1.16" ; + :repository ; + oboInOwl:hasDefinition "BTrack is an HDF5-based binary format for genome or sequence feature tracks and their collections, suitable for integrative multi-track analysis. BTrack is a binary, compressed alternative to the GTrack and GSuite formats." ; + oboInOwl:hasExactSynonym "BTrack (GTrack ecosystem of formats)", + "BTrack format", + "BioXSD/GTrack BTrack", + "BioXSD|GTrack BTrack", + "GTrack|BTrack|GSuite BTrack", + "GTrack|GSuite|BTrack BTrack" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "'BTrack' belongs to the 'BioXSD|GTrack' ecosystem of generic formats, and particular to its subset, the 'GTrack ecosystem' (GTrack, GSuite, BTrack). 'BTrack' is the binary, optionally compressed HDF5-based version of the GTrack and GSuite formats." ; + rdfs:subClassOf :format_1920, + :format_2333, + :format_2548, + :format_2919 . + +:format_3777 a owl:Class ; + rdfs:label "MCPD" ; + :created_in "1.16" ; + :documentation , + , + , + ; + :organisation , + ; + oboInOwl:hasDbXref , + , + , + ; + oboInOwl:hasDefinition "The FAO/Bioversity/IPGRI Multi-Crop Passport Descriptors (MCPD) is an international standard format for exchange of germplasm information." ; + oboInOwl:hasExactSynonym "Bioversity MCPD", + "FAO MCPD", + "IPGRI MCPD", + "MCPD V.1", + "MCPD V.2", + "MCPD format", + "Multi-Crop Passport Descriptors", + "Multi-Crop Passport Descriptors format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Multi-Crop Passport Descriptors is a format available in 2 successive versions, V.1 (FAO/IPGRI 2001) and V.2 (FAO/Bioversity 2012)." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3567 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3113 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2530 ], + :format_2330, + :format_3706 . + +:format_3781 a owl:Class ; + rdfs:label "PubAnnotation format" ; + :citation ; + :created_in "1.16" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "JSON format of annotated scientific text used by PubAnnotations and other tools." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3464, + :format_3780 . + +:format_3782 a owl:Class ; + rdfs:label "BioC" ; + :citation ; + :created_in "1.16" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "BioC is a standardised XML format for sharing and integrating text data and annotations." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3780 . + +:format_3783 a owl:Class ; + rdfs:label "PubTator format" ; + :citation , + ; + :created_in "1.16" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Native textual export format of annotated scientific text from PubTator." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_3780 . + +:format_3784 a owl:Class ; + rdfs:label "Open Annotation format" ; + :created_in "1.16" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "A format of text annotation using the linked-data Open Annotation Data Model, serialised typically in RDF or JSON-LD." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2376, + :format_3749, + :format_3780 . + +:format_3785 a owl:Class ; + rdfs:label "BioNLP Shared Task format" ; + :created_in "1.16" ; + :documentation , + , + , + , + ; + :example , + ; + oboInOwl:hasDbXref , + , + , + , + ; + oboInOwl:hasDefinition "A family of similar formats of text annotation, used by BRAT and other tools, known as BioNLP Shared Task format (BioNLP 2009 Shared Task on Event Extraction, BioNLP Shared Task 2011, BioNLP Shared Task 2013), BRAT format, BRAT standoff format, and similar." ; + oboInOwl:hasExactSynonym "BRAT format", + "BRAT standoff format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_3780 . + +:format_3787 a owl:Class ; + rdfs:label "Query language" ; + :created_in "1.16" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A query language (format) for structured database queries." ; + oboInOwl:hasExactSynonym "Query format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3786 ], + :format_2350 . + +:format_3788 a owl:Class ; + rdfs:label "SQL" ; + :created_in "1.16" ; + :file_extension "sql" ; + :media_type ; + oboInOwl:hasDbXref , + ; + oboInOwl:hasDefinition "SQL (Structured Query Language) is the de-facto standard query language (format of queries) for querying and manipulating data in relational databases." ; + oboInOwl:hasExactSynonym "Structured Query Language" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2330 . + +:format_3789 a owl:Class ; + rdfs:label "XQuery" ; + :created_in "1.16" ; + :documentation ; + :file_extension "xq", + "xquery", + "xqy" ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "XQuery (XML Query) is a query language (format of queries) for querying and manipulating structured and unstructured data, usually in the form of XML, text, and with vendor-specific extensions for other data formats (JSON, binary, etc.)." ; + oboInOwl:hasExactSynonym "XML Query", + "xq", + "xqy" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2330 . + +:format_3790 a owl:Class ; + rdfs:label "SPARQL" ; + :created_in "1.16" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "SPARQL (SPARQL Protocol and RDF Query Language) is a semantic query language for querying and manipulating data stored in Resource Description Framework (RDF) format." ; + oboInOwl:hasExactSynonym "SPARQL Protocol and RDF Query Language" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2330 . + +:format_3804 a owl:Class ; + rdfs:label "xsd" ; + :created_in "1.17" ; + oboInOwl:hasDefinition "XML format for XML Schema." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332 . + +:format_3811 a owl:Class ; + rdfs:label "XMFA" ; + :created_in "1.20" ; + :documentation ; + oboInOwl:hasDefinition "XMFA format stands for eXtended Multi-FastA format and is used to store collinear sub-alignments that constitute a single genome alignment." ; + oboInOwl:hasExactSynonym "eXtended Multi-FastA format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2200, + :format_2554 . + +:format_3812 a owl:Class ; + rdfs:label "GEN" ; + :created_in "1.20" ; + :documentation ; + oboInOwl:hasDefinition "The GEN file format contains genetic data and describes SNPs." ; + oboInOwl:hasExactSynonym "Genotype file format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2919 . + +:format_3813 a owl:Class ; + rdfs:label "SAMPLE file format" ; + :created_in "1.20" ; + :documentation ; + oboInOwl:hasDefinition "The SAMPLE file format contains information about each individual i.e. individual IDs, covariates, phenotypes and missing data proportions, from a GWAS study." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330 . + +:format_3814 a owl:Class ; + rdfs:label "SDF" ; + :created_in "1.20" ; + :documentation ; + oboInOwl:hasDefinition "SDF is one of a family of chemical-data file formats developed by MDL Information Systems; it is intended especially for structural information." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2030, + :format_2330 . + +:format_3815 a owl:Class ; + rdfs:label "Molfile" ; + :created_in "1.20" ; + :documentation ; + oboInOwl:hasDefinition "An MDL Molfile is a file format for holding information about the atoms, bonds, connectivity and coordinates of a molecule." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2030, + :format_2330 . + +:format_3816 a owl:Class ; + rdfs:label "Mol2" ; + :created_in "1.20" ; + :documentation ; + oboInOwl:hasDefinition "Complete, portable representation of a SYBYL molecule. ASCII file which contains all the information needed to reconstruct a SYBYL molecule." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2030, + :format_2330 . + +:format_3817 a owl:Class ; + rdfs:label "latex" ; + :created_in "1.20" ; + :documentation ; + oboInOwl:hasDefinition "format for the LaTeX document preparation system." ; + oboInOwl:hasExactSynonym "LaTeX format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "uses the TeX typesetting program format" ; + rdfs:subClassOf :format_2330, + :format_3507 . + +:format_3818 a owl:Class ; + rdfs:label "ELAND format" ; + :created_in "1.20" ; + :documentation ; + oboInOwl:hasDefinition "Tab-delimited text file format used by Eland - the read-mapping program distributed by Illumina with its sequencing analysis pipeline - which maps short Solexa sequence reads to the human reference genome." ; + oboInOwl:hasExactSynonym "ELAND", + "eland" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2561 . + +:format_3819 a owl:Class ; + rdfs:label "Relaxed PHYLIP Interleaved" ; + :created_in "1.20" ; + :documentation , + ; + oboInOwl:hasDefinition "Phylip multiple alignment sequence format, less stringent than PHYLIP format." ; + oboInOwl:hasExactSynonym "PHYLIP Interleaved format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "It differs from Phylip Format (format_1997) on length of the ID sequence. There no length restrictions on the ID, but whitespaces aren't allowed in the sequence ID/Name because one space separates the longest ID and the beginning of the sequence. Sequences IDs must be padded to the longest ID length." ; + rdfs:subClassOf :format_2924 . + +:format_3820 a owl:Class ; + rdfs:label "Relaxed PHYLIP Sequential" ; + :created_in "1.20" ; + :documentation , + ; + oboInOwl:hasDefinition "Phylip multiple alignment sequence format, less stringent than PHYLIP sequential format (format_1998)." ; + oboInOwl:hasExactSynonym "Relaxed PHYLIP non-interleaved", + "Relaxed PHYLIP non-interleaved format", + "Relaxed PHYLIP sequential format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "It differs from Phylip sequential format (format_1997) on length of the ID sequence. There no length restrictions on the ID, but whitespaces aren't allowed in the sequence ID/Name because one space separates the longest ID and the beginning of the sequence. Sequences IDs must be padded to the longest ID length." ; + rdfs:subClassOf :format_2924 . + +:format_3821 a owl:Class ; + rdfs:label "VisML" ; + :created_in "1.20" ; + :documentation ; + oboInOwl:hasDefinition "Default XML format of VisANT, containing all the network information." ; + oboInOwl:hasExactSynonym "VisANT xml", + "VisANT xml format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2013, + :format_2332 . + +:format_3822 a owl:Class ; + rdfs:label "GML" ; + :created_in "1.20" ; + :documentation ; + oboInOwl:hasDefinition "GML (Graph Modeling Language) is a text file format supporting network data with a very easy syntax. It is used by Graphlet, Pajek, yEd, LEDA and NetworkX." ; + oboInOwl:hasExactSynonym "GML format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2013, + :format_2330 . + +:format_3823 a owl:Class ; + rdfs:label "FASTG" ; + :created_in "1.20" ; + :documentation , + ; + oboInOwl:hasDefinition "FASTG is a format for faithfully representing genome assemblies in the face of allelic polymorphism and assembly uncertainty." ; + oboInOwl:hasExactSynonym "FASTG assembly graph format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "It is called FASTG, like FASTA, but the G stands for \"graph\"." ; + rdfs:subClassOf :format_2330, + :format_2561 . + +:format_3825 a owl:Class ; + rdfs:label "nmrML" ; + :created_in "1.20" ; + :documentation :www.nmrML.org, + ; + oboInOwl:hasDefinition "nmrML is an MSI supported XML-based open access format for metabolomics NMR raw and processed spectral data. It is accompanies by an nmrCV (controlled vocabulary) to allow ontology-based annotations." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3824 . + +:format_3826 a owl:Class ; + rdfs:label "proBAM" ; + :created_in "1.20" ; + :documentation ; + oboInOwl:hasDefinition ". proBAM is an adaptation of BAM (format_2572), which was extended to meet specific requirements entailed by proteomics data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2057, + :format_2333, + :format_2920 . + +:format_3827 a owl:Class ; + rdfs:label "proBED" ; + :created_in "1.20" ; + :documentation ; + oboInOwl:hasDefinition ". proBED is an adaptation of BED (format_3003), which was extended to meet specific requirements entailed by proteomics data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2919 . + +:format_3829 a owl:Class ; + rdfs:label "GPR" ; + :created_in "1.20" ; + :documentation ; + oboInOwl:hasDefinition "GenePix Results (GPR) text file format developed by Axon Instruments that is used to save GenePix Results data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_3828 . + +:format_3830 a owl:Class ; + rdfs:label "ARB" ; + :created_in "1.20" ; + oboInOwl:hasDefinition "Binary format used by the ARB software suite." ; + oboInOwl:hasExactSynonym "ARB binary format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1921, + :format_2333 . + +:format_3832 a owl:Class ; + rdfs:label "consensusXML" ; + :created_in "1.20" ; + :documentation "http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1ConsensusXMLFile.html" ; + oboInOwl:hasDefinition "OpenMS format for grouping features in one map or across several maps." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3245 . + +:format_3833 a owl:Class ; + rdfs:label "featureXML" ; + :created_in "1.20" ; + :documentation "http://ftp.mi.fu-berlin.de/pub/OpenMS/release1.9-documentation/html/classOpenMS_1_1FeatureXMLFile.html" ; + oboInOwl:hasDefinition "OpenMS format for quantitation results (LC/MS features)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3245 . + +:format_3834 a owl:Class ; + rdfs:label "mzData" ; + :created_in "1.20" ; + :documentation "http://www.psidev.info/mzdata-1_0_5-docs" ; + oboInOwl:hasDefinition "Now deprecated data format of the HUPO Proteomics Standards Initiative. Replaced by mzML (format_3244)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3245 . + +:format_3835 a owl:Class ; + rdfs:label "TIDE TXT" ; + :created_in "1.20" ; + :documentation "http://cruxtoolkit.sourceforge.net/tide-search.html" ; + oboInOwl:hasDefinition "Format supported by the Tide tool for identifying peptides from tandem mass spectra." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3245 . + +:format_3836 a owl:Class ; + rdfs:label "BLAST XML v2 results format" ; + :created_in "1.20" ; + :documentation "ftp://ftp.ncbi.nlm.nih.gov/blast/documents/NEWXML/ProposedBLASTXMLChanges.pdf", + "ftp://ftp.ncbi.nlm.nih.gov/blast/documents/NEWXML/xml2.pdf", + "http://www.ncbi.nlm.nih.gov/data_specs/schema/NCBI_BlastOutput2.mod.xsd" ; + oboInOwl:hasDefinition "XML format as produced by the NCBI Blast package v2." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1333, + :format_2332 . + +:format_3838 a owl:Class ; + rdfs:label "pptx" ; + :created_in "1.20" ; + :documentation ; + :media_type ; + oboInOwl:hasDefinition "Microsoft Powerpoint format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3547 . + +:format_3839 a owl:Class ; + rdfs:label "ibd" ; + :citation ; + :created_in "1.20" ; + :documentation ; + :file_extension "ibd" ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "ibd is a data format for mass spectrometry imaging data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "imzML data is recorded in 2 files: '.imzXML' is a metadata XML file based on mzML by HUPO-PSI, and '.ibd' is a binary file containing the mass spectra." ; + rdfs:subClassOf :format_2333, + :format_3245 . + +:format_3843 a owl:Class ; + rdfs:label "BEAST" ; + :created_in "1.21" ; + :documentation ; + oboInOwl:hasDefinition "XML input file format for BEAST Software (Bayesian Evolutionary Analysis Sampling Trees)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_2552 . + +:format_3844 a owl:Class ; + rdfs:label "Chado-XML" ; + :created_in "1.21" ; + :documentation ; + oboInOwl:hasDefinition "Chado-XML format is a direct mapping of the Chado relational schema into XML." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_2552 . + +:format_3845 a owl:Class ; + rdfs:label "HSAML" ; + :created_in "1.21" ; + :documentation ; + oboInOwl:hasDefinition "An alignment format generated by PRANK/PRANKSTER consisting of four elements: newick, nodes, selection and model." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_2555 . + +:format_3846 a owl:Class ; + rdfs:label "InterProScan XML" ; + :created_in "1.21" ; + :documentation ; + oboInOwl:hasDefinition "Output xml file from the InterProScan sequence analysis application." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_3097 . + +:format_3847 a owl:Class ; + rdfs:label "KGML" ; + :created_in "1.21" ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "The KEGG Markup Language (KGML) is an exchange format of the KEGG pathway maps, which is converted from internally used KGML+ (KGML+SVG) format." ; + oboInOwl:hasExactSynonym "KEGG Markup Language" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2013, + :format_2332 . + +:format_3848 a owl:Class ; + rdfs:label "PubMed XML" ; + :created_in "1.21" ; + oboInOwl:hasDefinition "XML format for collected entries from bibliographic databases MEDLINE and PubMed." ; + oboInOwl:hasExactSynonym "MEDLINE XML" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_2848 . + +:format_3849 a owl:Class ; + rdfs:label "MSAML" ; + :created_in "1.21" ; + :documentation ; + oboInOwl:hasDefinition "A set of XML compliant markup components for describing multiple sequence alignments." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1921, + :format_2333 . + +:format_3850 a owl:Class ; + rdfs:label "OrthoXML" ; + :created_in "1.21" ; + :documentation ; + oboInOwl:hasDefinition "OrthoXML is designed broadly to allow the storage and comparison of orthology data from any ortholog database. It establishes a structure for describing orthology relationships while still allowing flexibility for database-specific information to be encapsulated in the same format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2031, + :format_2332, + :format_2552 . + +:format_3851 a owl:Class ; + rdfs:label "PSDML" ; + :created_in "1.21" ; + :documentation ; + oboInOwl:hasDefinition "Tree structure of Protein Sequence Database Markup Language generated using Matra software." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1920, + :format_2332 . + +:format_3852 a owl:Class ; + rdfs:label "SeqXML" ; + :created_in "1.21" ; + :documentation ; + oboInOwl:hasDefinition "SeqXML is an XML Schema to describe biological sequences, developed by the Stockholm Bioinformatics Centre." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_2552 . + +:format_3853 a owl:Class ; + rdfs:label "UniParc XML" ; + :created_in "1.21" ; + :documentation ; + oboInOwl:hasDefinition "XML format for the UniParc database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1920, + :format_2332 . + +:format_3854 a owl:Class ; + rdfs:label "UniRef XML" ; + :created_in "1.21" ; + :documentation ; + oboInOwl:hasDefinition "XML format for the UniRef reference clusters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1920, + :format_2332 . + +:format_3857 a owl:Class ; + rdfs:label "CWL" ; + :citation ; + :created_in "1.21" ; + :documentation , + , + ; + :example ; + :file_extension "cwl" ; + :organisation , + ; + :repository ; + oboInOwl:hasDefinition "Common Workflow Language (CWL) format for description of command-line tools and workflows." ; + oboInOwl:hasExactSynonym "Common Workflow Language", + "CommonWL" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2032, + :format_3750 . + +:format_3858 a owl:Class ; + rdfs:label "Waters RAW" ; + :created_in "1.21" ; + oboInOwl:hasDefinition "Proprietary file format for mass spectrometry data from Waters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Proprietary format for which documentation is not available, but used by multiple tools." ; + rdfs:subClassOf :format_2333, + :format_3245 . + +:format_3859 a owl:Class ; + rdfs:label "JCAMP-DX" ; + :created_in "1.21" ; + :documentation ; + oboInOwl:hasDefinition "A standardized file format for data exchange in mass spectrometry, initially developed for infrared spectrometry." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "JCAMP-DX is an ASCII based format and therefore not very compact even though it includes standards for file compression." ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2330, + :format_3245 . + +:format_3863 a owl:Class ; + rdfs:label "NLP corpus format" ; + :created_in "1.21" ; + oboInOwl:hasDefinition "NLP format used by a specific type of corpus (collection of texts)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3862 . + +:format_3864 a owl:Class ; + rdfs:label "mirGFF3" ; + :citation ; + :created_in "1.21" ; + :documentation ; + :example ; + :repository ; + oboInOwl:hasDefinition "mirGFF3 is a common format for microRNA data resulting from small-RNA RNA-Seq workflows." ; + oboInOwl:hasExactSynonym "miRTop format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "mirGFF3 is a specialisation of GFF3; produced by small-RNA-Seq analysis workflows, usable and convertible with the miRTop API (https://mirtop.readthedocs.io/en/latest/), and consumable by tools for downstream analysis." ; + rdfs:subClassOf :format_1975, + :format_3865 . + +:format_3873 a owl:Class ; + rdfs:label "HDF" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "HDF is the name of a set of file formats and libraries designed to store and organize large amounts of numerical data, originally developed at the National Center for Supercomputing Applications at the University of Illinois." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "HDF is currently supported by many commercial and non-commercial software platforms such as Java, MATLAB/Scilab, Octave, Python and R." ; + rdfs:subClassOf :format_2333, + :format_3867 . + +:format_3874 a owl:Class ; + rdfs:label "PCAzip" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "PCAZip format is a binary compressed file to store atom coordinates based on Essential Dynamics (ED) and Principal Component Analysis (PCA)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The compression is made projecting the Cartesian snapshots collected along the trajectory into an orthogonal space defined by the most relevant eigenvectors obtained by diagonalization of the covariance matrix (PCA). In the compression/decompression process, part of the original information is lost, depending on the final number of eigenvectors chosen. However, with a reasonable choice of the set of eigenvectors the compression typically reduces the trajectory file to less than one tenth of their original size with very acceptable loss of information. Compression with PCAZip can only be applied to unsolvated structures." ; + rdfs:subClassOf :format_2333, + :format_3867 . + +:format_3875 a owl:Class ; + rdfs:label "XTC" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Portable binary format for trajectories produced by GROMACS package." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "XTC uses the External Data Representation (xdr) routines for writing and reading data which were created for the Unix Network File System (NFS). XTC files use a reduced precision (lossy) algorithm which works multiplying the coordinates by a scaling factor (typically 1000), so converting them to pm (GROMACS standard distance unit is nm). This allows an integer rounding of the values. Several other tricks are performed, such as making use of atom proximity information: atoms close in sequence are usually close in space (e.g. water molecules). That makes XTC format the most efficient in terms of disk usage, in most cases reducing by a factor of 2 the size of any other binary trajectory format." ; + rdfs:subClassOf :format_2333, + :format_3867 . + +:format_3876 a owl:Class ; + rdfs:label "TNG" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Trajectory Next Generation (TNG) is a format for storage of molecular simulation data. It is designed and implemented by the GROMACS development group, and it is called to be the substitute of the XTC format." ; + oboInOwl:hasExactSynonym "Trajectory Next Generation format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Fully architecture-independent format, regarding both endianness and the ability to mix single/double precision trajectories and I/O libraries. Self-sufficient, it should not require any other files for reading, and all the data should be contained in a single file for easy transport. Temporal compression of data, improving the compression rate of the previous XTC format. Possibility to store meta-data with information about the simulation. Direct access to a particular frame. Efficient parallel I/O." ; + rdfs:subClassOf :format_2333, + :format_3867 . + +:format_3877 a owl:Class ; + rdfs:label "XYZ" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "The XYZ chemical file format is widely supported by many programs, although many slightly different XYZ file formats coexist (Tinker XYZ, UniChem XYZ, etc.). Basic information stored for each atom in the system are x, y and z coordinates and atom element/atomic number." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "XYZ files are structured in this way: First line contains the number of atoms in the file. Second line contains a title, comment, or filename. Remaining lines contain atom information. Each line starts with the element symbol, followed by x, y and z coordinates in angstroms separated by whitespace. Multiple molecules or frames can be contained within one file, so it supports trajectory storage. XYZ files can be directly represented by a molecular viewer, as they contain all the basic information needed to build the 3D model." ; + rdfs:subClassOf :format_2033, + :format_2330, + :format_3868 . + +:format_3878 a owl:Class ; + rdfs:label "mdcrd" ; + :created_in "1.22" ; + :documentation ; + oboInOwl:hasDefinition "AMBER trajectory (also called mdcrd), with 10 coordinates per line and format F8.3 (fixed point notation with field width 8 and 3 decimal places)." ; + oboInOwl:hasExactSynonym "AMBER trajectory format", + "inpcrd" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2033, + :format_2330, + :format_3868 . + +:format_3880 a owl:Class ; + rdfs:label "GROMACS top" ; + :created_in "1.22" ; + :documentation ; + oboInOwl:hasDefinition "GROMACS MD package top textual files define an entire structure system topology, either directly, or by including itp files." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "There is currently no tool available for conversion between GROMACS topology format and other formats, due to the internal differences in both approaches. There is, however, a method to convert small molecules parameterized with AMBER force-field into GROMACS format, allowing simulations of these systems with GROMACS MD package." ; + rdfs:subClassOf :format_2033, + :format_2330, + :format_3879 . + +:format_3881 a owl:Class ; + rdfs:label "AMBER top" ; + :created_in "1.22" ; + :documentation ; + oboInOwl:hasDefinition "AMBER Prmtop file (version 7) is a structure topology text file divided in several sections designed to be parsed easily using simple Fortran code. Each section contains particular topology information, such as atom name, charge, mass, angles, dihedrals, etc." ; + oboInOwl:hasExactSynonym "AMBER Parm", + "AMBER Parm7", + "Parm7", + "Prmtop", + "Prmtop7" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "It can be modified manually, but as the size of the system increases, the hand-editing becomes increasingly complex. AMBER Parameter-Topology file format is used extensively by the AMBER software suite and is referred to as the Prmtop file for short.", + "version 7 is written to distinguish it from old versions of AMBER Prmtop. Similarly to HDF5, it is a completely different format, according to AMBER group: a drastic change to the file format occurred with the 2004 release of Amber 7 (http://ambermd.org/prmtop.pdf)" ; + rdfs:subClassOf :format_2033, + :format_2330, + :format_3879 . + +:format_3882 a owl:Class ; + rdfs:label "PSF" ; + :created_in "1.22" ; + :documentation ; + oboInOwl:hasDefinition "X-Plor Protein Structure Files (PSF) are structure topology files used by NAMD and CHARMM molecular simulations programs. PSF files contain six main sections of interest: atoms, bonds, angles, dihedrals, improper dihedrals (force terms used to maintain planarity) and cross-terms." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The high similarity in the functional form of the two potential energy functions used by AMBER and CHARMM force-fields gives rise to the possible use of one force-field within the other MD engine. Therefore, the conversion of PSF files to AMBER Prmtop format is possible with the use of AMBER chamber (CHARMM - AMBER) program." ; + rdfs:subClassOf :format_2033, + :format_2330, + :format_3879 . + +:format_3883 a owl:Class ; + rdfs:label "GROMACS itp" ; + :created_in "1.22" ; + :documentation ; + oboInOwl:hasDefinition "GROMACS itp files (include topology) contain structure topology information, and are typically included in GROMACS topology files (GROMACS top). Itp files are used to define individual (or multiple) components of a topology as a separate file. This is particularly useful if there is a molecule that is used frequently, and also reduces the size of the system topology file, splitting it in different parts." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "GROMACS itp files are used also to define position restrictions on the molecule, or to define the force field parameters for a particular ligand." ; + rdfs:subClassOf :format_2033, + :format_2330, + :format_3879, + :format_3884 . + +:format_3885 a owl:Class ; + rdfs:label "BinPos" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Scripps Research Institute BinPos format is a binary formatted file to store atom coordinates." ; + oboInOwl:hasExactSynonym "Scripps Research Institute BinPos" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "It is basically a translation of the ASCII atom coordinate format to binary code. The only additional information stored is a magic number that identifies the BinPos format and the number of atoms per snapshot. The remainder is the chain of coordinates binary encoded. A drawback of this format is its architecture dependency. Integers and floats codification depends on the architecture, thus it needs to be converted if working in different platforms (little endian, big endian)." ; + rdfs:subClassOf :format_2333, + :format_3867 . + +:format_3886 a owl:Class ; + rdfs:label "RST" ; + :created_in "1.22" ; + :documentation ; + oboInOwl:hasDefinition "AMBER coordinate/restart file with 6 coordinates per line and decimal format F12.7 (fixed point notation with field width 12 and 7 decimal places)." ; + oboInOwl:hasExactSynonym "restrt", + "rst7" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2033, + :format_2330, + :format_3868 . + +:format_3887 a owl:Class ; + rdfs:label "CHARMM rtf" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Format of CHARMM Residue Topology Files (RTF), which define groups by including the atoms, the properties of the group, and bond and charge information." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "There is currently no tool available for conversion between GROMACS topology format and other formats, due to the internal differences in both approaches. There is, however, a method to convert small molecules parameterized with AMBER force-field into GROMACS format, allowing simulations of these systems with GROMACS MD package." ; + rdfs:subClassOf :format_2033, + :format_2330, + :format_3879 . + +:format_3888 a owl:Class ; + rdfs:label "AMBER frcmod" ; + :created_in "1.22" ; + :documentation ; + oboInOwl:hasDefinition "AMBER frcmod (Force field Modification) is a file format to store any modification to the standard force field needed for a particular molecule to be properly represented in the simulation." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_3884 . + +:format_3889 a owl:Class ; + rdfs:label "AMBER off" ; + :created_in "1.22" ; + :documentation ; + oboInOwl:hasDefinition "AMBER Object File Format library files (OFF library files) store residue libraries (forcefield residue parameters)." ; + oboInOwl:hasExactSynonym "AMBER Object File Format", + "AMBER lib" ; + rdfs:subClassOf :format_2330, + :format_3884 . + +:format_3906 a owl:Class ; + rdfs:label "NMReDATA" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "MReData is a text based data standard for processed NMR data. It is relying on SDF molecule data and allows to store assignments of NMR peaks to molecule features. The NMR-extracted data (or \"NMReDATA\") includes: Chemical shift,scalar coupling, 2D correlation, assignment, etc." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "NMReData is a text based data standard for processed NMR data. It is relying on SDF molecule data and allows to store assignments of NMR peaks to molecule features. The NMR-extracted data (or \"NMReDATA\") includes: Chemical shift,scalar coupling, 2D correlation, assignment, etc. Find more in the paper at https://doi.org/10.1002/mrc.4527." ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2330, + :format_3824 . + +:format_3909 a owl:Class ; + rdfs:label "BpForms" ; + :created_in "1.22" ; + :documentation , + ; + :ontology_used :data_2301 ; + :organisation ; + oboInOwl:hasDefinition "BpForms is a string format for concretely representing the primary structures of biopolymers, including DNA, RNA, and proteins that include non-canonical nucleic and amino acids. See https://www.bpforms.org for more information." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1255 ], + :format_2035, + :format_2330, + :format_2571 . + +:format_3910 a owl:Class ; + rdfs:label "trr" ; + :created_in "1.22" ; + :documentation ; + oboInOwl:hasDefinition "Format of trr files that contain the trajectory of a simulation experiment used by GROMACS." ; + rdfs:comment "The first 4 bytes of any trr file containing 1993. See https://github.com/galaxyproject/galaxy/pull/6597/files#diff-409951594551183dbf886e24de6cb129R760" ; + rdfs:subClassOf :format_2033, + :format_2330, + :format_3868 . + +:format_3911 a owl:Class ; + rdfs:label "msh" ; + :created_in "1.22" ; + :documentation , + , + , + ; + :example ; + :file_extension "msh" ; + :information_standard ; + :organisation , + ; + oboInOwl:hasDefinition "Mash sketch is a format for sequence / sequence checksum information. To make a sketch, each k-mer in a sequence is hashed, which creates a pseudo-random identifier. By sorting these hashes, a small subset from the top of the sorted list can represent the entire sequence." ; + oboInOwl:hasExactSynonym "Mash sketch", + "min-hash sketch" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2190 ], + :format_2333, + :format_2571 . + +:format_3913 a owl:Class ; + rdfs:label "Loom" ; + :created_in "1.23" ; + :documentation , + ; + :example ; + :file_extension "loom" ; + oboInOwl:hasDefinition "The Loom file format is based on HDF5, a standard for storing large numerical datasets. The Loom format is designed to efficiently hold large omics datasets. Typically, such data takes the form of a large matrix of numbers, along with metadata for the rows and columns." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3112 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2535 ], + :format_2058, + :format_3590 . + +:format_3915 a owl:Class ; + rdfs:label "Zarr" ; + :created_in "1.23" ; + :documentation , + ; + :example ; + :file_extension "zarray", + "zgroup" ; + oboInOwl:hasDefinition "The Zarr format is an implementation of chunked, compressed, N-dimensional arrays for storing data." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2535 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3112 ], + :format_2058, + :format_2333, + :format_3033 . + +:format_3916 a owl:Class ; + rdfs:label "MTX" ; + :created_in "1.23" ; + :documentation ; + :example ; + :file_extension "mtx" ; + :organisation ; + oboInOwl:hasDefinition "The Matrix Market matrix (MTX) format stores numerical or pattern matrices in a dense (array format) or sparse (coordinate format) representation." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2535 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3112 ], + :format_2058, + :format_2330, + :format_3033 . + +:format_3951 a owl:Class ; + rdfs:label "BcForms" ; + :created_in "1.24" ; + :documentation , + , + , + ; + :example ; + :media_type "text/plain" ; + :ontology_used ; + :organisation ; + oboInOwl:hasDefinition "BcForms is a format for abstractly describing the molecular structure (atoms and bonds) of macromolecular complexes as a collection of subunits and crosslinks. Each subunit can be described with BpForms (http://edamontology.org/format_3909) or SMILES (http://edamontology.org/data_2301). BcForms uses an ontology of crosslinks to abstract the chemical details of crosslinks from the descriptions of complexes (see https://bpforms.org/crosslink.html)." ; + rdfs:comment "BcForms is related to http://edamontology.org/format_3909. (BcForms uses BpForms to describe subunits which are DNA, RNA, or protein polymers.) However, that format isn't the parent of BcForms. BcForms is similarly related to SMILES (http://edamontology.org/data_2301)." ; + rdfs:subClassOf :format_2030, + :format_2062, + :format_2330 . + +:format_3956 a owl:Class ; + rdfs:label "N-Quads" ; + :created_in "1.24" ; + :documentation ; + :file_extension "nq" ; + oboInOwl:hasDefinition "N-Quads is a line-based, plain text format for encoding an RDF dataset. It includes information about the graph each triple belongs to." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "N-Quads should not be confused with N-Triples which does not contain graph information." ; + rdfs:subClassOf :format_2330, + :format_2376 . + +:format_3969 a owl:Class ; + rdfs:label "Vega" ; + :created_in "1.25" ; + :documentation , + , + ; + :example ; + :file_extension "json" ; + :media_type "application/json" ; + :organisation ; + oboInOwl:hasDefinition "Vega is a visualization grammar, a declarative language for creating, saving, and sharing interactive visualization designs. With Vega, you can describe the visual appearance and interactive behavior of a visualization in a JSON format, and generate web-based views using Canvas or SVG." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3464, + :format_3547 . + +:format_3970 a owl:Class ; + rdfs:label "Vega-lite" ; + :created_in "1.25" ; + :documentation , + , + ; + :example ; + :file_extension "json" ; + :media_type "application/json" ; + :organisation ; + oboInOwl:hasDefinition "Vega-Lite is a high-level grammar of interactive graphics. It provides a concise JSON syntax for rapidly generating visualizations to support analysis. Vega-Lite specifications can be compiled to Vega specifications." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3464, + :format_3547 . + +:format_3971 a owl:Class ; + rdfs:label "NeuroML" ; + :created_in "1.25" ; + :documentation , + ; + :example , + ; + :media_type "application/xml" ; + :organisation ; + oboInOwl:hasDefinition "A model description language for computational neuroscience." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3241 ], + :format_2013, + :format_2332 . + +:format_3972 a owl:Class ; + rdfs:label "BNGL" ; + :created_in "1.25" ; + :documentation , + , + ; + :example ; + :file_extension "bngl" ; + :media_type "application/xml", + "plain/text" ; + :organisation ; + oboInOwl:hasDefinition "BioNetGen is a format for the specification and simulation of rule-based models of biochemical systems, including signal transduction, metabolic, and genetic regulatory networks." ; + oboInOwl:hasExactSynonym "BioNetGen Language" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3241 ], + :format_2013, + :format_2330 . + +:format_3973 a owl:Class ; + rdfs:label "Docker image" ; + :created_in "1.25" ; + :documentation ; + :example ; + :organisation ; + oboInOwl:hasDefinition "A Docker image is a file, comprised of multiple layers, that is used to execute code in a Docker container. An image is essentially built from the instructions for a complete and executable version of an application, which relies on the host OS kernel." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2333 . + +:format_3975 a owl:Class ; + rdfs:label "GFA 1" ; + :created_in "1.25" ; + :documentation ; + :example ; + :file_extension "gfa" ; + :organisation ; + oboInOwl:hasDefinition "Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology." ; + oboInOwl:hasExactSynonym "Graphical Fragment Assembly (GFA) 1.0" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2330, + :format_2561 . + +:format_3976 a owl:Class ; + rdfs:label "GFA 2" ; + :created_in "1.25" ; + :documentation ; + :example ; + :file_extension "gfa" ; + :organisation ; + oboInOwl:hasDefinition "Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology. GFA2 is an update of GFA1 which is not compatible with GFA1." ; + oboInOwl:hasExactSynonym "Graphical Fragment Assembly (GFA) 2.0" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2330, + :format_2561 . + +:format_3977 a owl:Class ; + rdfs:label "ObjTables" ; + :created_in "1.25" ; + :documentation ; + :example ; + :file_extension "xlsx" ; + :media_type "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" ; + :organisation ; + oboInOwl:hasDefinition "ObjTables is a toolkit for creating re-usable datasets that are both human and machine-readable, combining the ease of spreadsheets (e.g., Excel workbooks) with the rigor of schemas (classes, their attributes, the type of each attribute, and the possible relationships between instances of classes). ObjTables consists of a format for describing schemas for spreadsheets, numerous data types for science, a syntax for indicating the class and attribute represented by each table and column in a workbook, and software for using schemas to rigorously validate, merge, split, compare, and revision datasets." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3620 . + +:format_3978 a owl:Class ; + rdfs:label "CONTIG" ; + :created_in "1.25" ; + :file_extension "contig" ; + oboInOwl:hasDefinition "The CONTIG format used for output of the SOAPdenovo alignment program. It contains contig sequences generated without using mate pair information." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551 . + +:format_3979 a owl:Class ; + rdfs:label "WEGO" ; + :created_in "1.25" ; + :file_extension "wego" ; + oboInOwl:hasDefinition "WEGO native format used by the Web Gene Ontology Annotation Plot application. Tab-delimited format with gene names and others GO IDs (columns) with one annotation record per line." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2031, + :format_3475 . + +:format_3980 a owl:Class ; + rdfs:label "RPKM" ; + :created_in "1.25" ; + :file_extension "rpkm" ; + oboInOwl:hasDefinition "Tab-delimited format for gene expression levels table, calculated as Reads Per Kilobase per Million (RPKM) mapped reads." ; + oboInOwl:hasExactSynonym "Gene expression levels table format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "For example a 1kb transcript with 1000 alignments in a sample of 10 million reads (out of which 8 million reads can be mapped) will have RPKM = 1000/(1 * 8) = 125" ; + rdfs:subClassOf :format_2058, + :format_3475 . + +:format_3981 a owl:Class ; + rdfs:label "TAR format" ; + :created_in "1.25" ; + :file_extension "tar" ; + oboInOwl:hasDefinition "TAR archive file format generated by the Unix-based utility tar." ; + oboInOwl:hasExactSynonym "TAR", + "Tarball", + "tar" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "For example a 1kb transcript with 1000 alignments in a sample of 10 million reads (out of which 8 million reads can be mapped) will have RPKM = 1000/(1 * 8) = 125" ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2333 . + +:format_3982 a owl:Class ; + rdfs:label "CHAIN" ; + :created_in "1.25" ; + :file_extension "chain" ; + oboInOwl:hasDefinition "The CHAIN format describes a pairwise alignment that allow gaps in both sequences simultaneously and is used by the UCSC Genome Browser." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "https://genome.ucsc.edu/goldenPath/help/chain.html" ; + rdfs:subClassOf :format_2330, + :format_2920 . + +:format_3983 a owl:Class ; + rdfs:label "NET" ; + :created_in "1.25" ; + :file_extension "net" ; + oboInOwl:hasDefinition "The NET file format is used to describe the data that underlie the net alignment annotations in the UCSC Genome Browser." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "https://genome.ucsc.edu/goldenPath/help/net.html" ; + rdfs:subClassOf :format_1920, + :format_2330 . + +:format_3984 a owl:Class ; + rdfs:label "QMAP" ; + :created_in "1.25" ; + :file_extension "qmap" ; + oboInOwl:hasDefinition "Format of QMAP files generated for methylation data from an internal BGI pipeline." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1920, + :format_2330 . + +:format_3985 a owl:Class ; + rdfs:label "gxformat2" ; + :created_in "1.25" ; + :file_extension "ga" ; + oboInOwl:hasDefinition "An emerging format for high-level Galaxy workflow description." ; + oboInOwl:hasExactSynonym "Galaxy workflow format", + "GalaxyWF", + "ga" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "https://github.com/galaxyproject/gxformat2" ; + rdfs:subClassOf :format_2032, + :format_2330 . + +:format_3986 a owl:Class ; + rdfs:label "WMV" ; + :created_in "1.25" ; + :file_extension "wmv" ; + oboInOwl:hasDefinition "The proprietary native video format of various Microsoft programs such as Windows Media Player." ; + oboInOwl:hasExactSynonym "Windows Media Video format", + "Windows movie file format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3987 a owl:Class ; + rdfs:label "ZIP format" ; + :created_in "1.25" ; + :file_extension "zip" ; + oboInOwl:hasDefinition "ZIP is an archive file format that supports lossless data compression." ; + oboInOwl:hasExactSynonym "ZIP" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "A ZIP file may contain one or more files or directories that may have been compressed." ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2333 . + +:format_3988 a owl:Class ; + rdfs:label "LSM" ; + :created_in "1.25" ; + :file_extension "lsm" ; + oboInOwl:hasDefinition "Zeiss' proprietary image format based on TIFF." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "LSM files are the default data export for the Zeiss LSM series confocal microscopes (e.g. LSM 510, LSM 710). In addition to the image data, LSM files contain most imaging settings." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3989 a owl:Class ; + rdfs:label "GZIP format" ; + :created_in "1.25" ; + :file_extension "gz", + "gzip" ; + oboInOwl:hasDefinition "GNU zip compressed file format common to Unix-based operating systems." ; + oboInOwl:hasExactSynonym "GNU Zip", + "gz", + "gzip" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2333 . + +:format_3990 a owl:Class ; + rdfs:label "AVI" ; + :created_in "1.25" ; + :file_extension "avi" ; + oboInOwl:hasDefinition "Audio Video Interleaved (AVI) format is a multimedia container format for AVI files, that allows synchronous audio-with-video playback." ; + oboInOwl:hasExactSynonym "Audio Video Interleaved" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3991 a owl:Class ; + rdfs:label "TrackDB" ; + :created_in "1.25" ; + :file_extension "trackdb" ; + oboInOwl:hasDefinition "A declaration file format for UCSC browsers track dataset display charateristics." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_2919 . + +:format_3992 a owl:Class ; + rdfs:label "CIGAR format" ; + :created_in "1.25" ; + :file_extension "cigar" ; + oboInOwl:hasDefinition "Compact Idiosyncratic Gapped Alignment Report format is a compressed (run-length encoded) pairwise alignment format. It is useful for representing long (e.g. genomic) pairwise alignments." ; + oboInOwl:hasExactSynonym "CIGAR" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "http://wiki.bits.vib.be/index.php/CIGAR/" ; + rdfs:subClassOf :format_2330, + :format_2920 . + +:format_3993 a owl:Class ; + rdfs:label "Stereolithography format" ; + :created_in "1.25" ; + :file_extension "stl" ; + oboInOwl:hasDefinition "STL is a file format native to the stereolithography CAD software created by 3D Systems. The format is used to save and share surface-rendered 3D images and also for 3D printing." ; + oboInOwl:hasExactSynonym "stl" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3994 a owl:Class ; + rdfs:label "U3D" ; + :created_in "1.25" ; + :file_extension "u3d" ; + oboInOwl:hasDefinition "U3D (Universal 3D) is a compressed file format and data structure for 3D computer graphics. It contains 3D model information such as triangle meshes, lighting, shading, motion data, lines and points with color and structure." ; + oboInOwl:hasExactSynonym "Universal 3D", + "Universal 3D format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3995 a owl:Class ; + rdfs:label "Texture file format" ; + :created_in "1.25" ; + :file_extension "tex" ; + oboInOwl:hasDefinition "Bitmap image format used for storing textures." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Texture files can create the appearance of different surfaces and can be applied to both 2D and 3D objects. Note the file extension .tex is also used for LaTex documents which are a completely different format and they are NOT interchangeable." ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3996 a owl:Class ; + rdfs:label "Python script" ; + :created_in "1.25" ; + :file_extension "py" ; + oboInOwl:hasDefinition "Format for scripts writtenin Python - a widely used high-level programming language for general-purpose programming." ; + oboInOwl:hasExactSynonym "Python", + "Python program", + "py" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2032, + :format_2330 . + +:format_3997 a owl:Class ; + rdfs:label "MPEG-4" ; + :created_in "1.25" ; + :file_extension "mp4" ; + oboInOwl:hasDefinition "A digital multimedia container format most commonly used to store video and audio." ; + oboInOwl:hasExactSynonym "MP4" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3998 a owl:Class ; + rdfs:label "Perl script" ; + :created_in "1.25" ; + :file_extension "pl" ; + oboInOwl:hasDefinition "Format for scripts written in Perl - a family of high-level, general-purpose, interpreted, dynamic programming languages." ; + oboInOwl:hasExactSynonym "Perl", + "Perl program", + "pl" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2032, + :format_2330 . + +:format_3999 a owl:Class ; + rdfs:label "R script" ; + :created_in "1.25" ; + :file_extension "r" ; + oboInOwl:hasDefinition "Format for scripts written in the R language - an open source programming language and software environment for statistical computing and graphics that is supported by the R Foundation for Statistical Computing." ; + oboInOwl:hasExactSynonym "R", + "R program" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2032, + :format_2330 . + +:format_4000 a owl:Class ; + rdfs:label "R markdown" ; + :created_in "1.25" ; + :file_extension "rmd" ; + oboInOwl:hasDefinition "A file format for making dynamic documents (R Markdown scripts) with the R language." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "https://rmarkdown.rstudio.com/articles_intro.html" ; + rdfs:subClassOf :format_2032, + :format_2330 . + +:format_4001 a owl:Class ; + rdfs:label "NIFTI format" ; + :created_in "1.25" ; + :deprecation_comment "This duplicates an existing concept (http://edamontology.org/format_3549)." ; + :obsolete_since 1.26 ; + :oldParent :format_3547 ; + oboInOwl:hasDefinition "An open file format from the Neuroimaging Informatics Technology Initiative (NIfTI) commonly used to store brain imaging data obtained using Magnetic Resonance Imaging (MRI) methods." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :format_3549 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:format_4002 a owl:Class ; + rdfs:label "pickle" ; + :created_in "1.25" ; + :file_extension "pickle" ; + oboInOwl:hasDefinition "Format used by Python pickle module for serializing and de-serializing a Python object structure." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "https://docs.python.org/2/library/pickle.html" ; + rdfs:subClassOf :format_2333 . + +:format_4003 a owl:Class ; + rdfs:label "NumPy format" ; + :created_in "1.25" ; + :file_extension "npy" ; + oboInOwl:hasDefinition "The standard binary file format used by NumPy - a fundamental package for scientific computing with Python - for persisting a single arbitrary NumPy array on disk. The format stores all of the shape and dtype information necessary to reconstruct the array correctly." ; + oboInOwl:hasExactSynonym "NumPy", + "npy" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333 . + +:format_4004 a owl:Class ; + rdfs:label "SimTools repertoire file format" ; + :created_in "1.25" ; + :file_extension "repz" ; + oboInOwl:hasDefinition "Format of repertoire (archive) files that can be read by SimToolbox (a MATLAB toolbox for structured illumination fluorescence microscopy) or alternatively extracted with zip file archiver software." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "https://pdfs.semanticscholar.org/5f25/f1cc6cdf2225fe22dc6fd4fc0296d486a85c.pdf" ; + rdfs:subClassOf :format_2333 . + +:format_4005 a owl:Class ; + rdfs:label "Configuration file format" ; + :created_in "1.25" ; + :file_extension "cfg" ; + oboInOwl:hasDefinition "A configuration file used by various programs to store settings that are specific to their respective software." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330 . + +:format_4006 a owl:Class ; + rdfs:label "Zstandard format" ; + :created_in "1.25" ; + :file_extension "zst" ; + oboInOwl:hasDefinition "Format used by the Zstandard real-time compression algorithm." ; + oboInOwl:hasExactSynonym "Zstandard compression format", + "Zstandard-compressed file format", + "zst" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "https://github.com/facebook/zstd/blob/master/doc/zstd_compression_format.md" ; + rdfs:subClassOf :format_2333 . + +:format_4007 a owl:Class ; + rdfs:label "MATLAB script" ; + :created_in "1.25" ; + :file_extension "m" ; + oboInOwl:hasDefinition "The file format for MATLAB scripts or functions." ; + oboInOwl:hasExactSynonym "MATLAB", + "m" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2032, + :format_2330 . + +:format_4015 a owl:Class ; + rdfs:label "PEtab" ; + :citation ; + :created_in "1.26" ; + :documentation ; + :example ; + :repository ; + oboInOwl:hasDefinition "A data format for specifying parameter estimation problems in systems biology." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3869 ], + :format_3475 . + +:format_4018 a owl:Class ; + rdfs:label "gVCF" ; + :created_in "1.26" ; + :documentation , + ; + :file_extension "g.vcf", + "g.vcf.gz" ; + oboInOwl:hasDefinition "Genomic Variant Call Format (gVCF) is a version of VCF that includes not only the positions that are variant when compared to a reference genome, but also the non-variant positions as ranges, including metrics of confidence that the positions in the range are actually non-variant e.g. minimum read-depth and genotype quality." ; + oboInOwl:hasExactSynonym "g.vcf", + "g.vcf.gz" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_3016 . + +:format_4023 a owl:Class ; + rdfs:label "cml" ; + :citation , + , + ; + :created_in "1.26" ; + :documentation ; + :example ; + :file_extension "cml" ; + :organisation ; + oboInOwl:hasDefinition "Chemical Markup Language (CML) is an XML-based format for encoding detailed information about a wide range of chemical concepts." ; + oboInOwl:hasExactSynonym "ChemML" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso , + , + ; + rdfs:subClassOf :format_2030, + :format_2332 . + +:format_4024 a owl:Class ; + rdfs:label "cif" ; + :citation ; + :created_in "1.26" ; + :documentation ; + :example ; + :file_extension "cif" ; + :organisation ; + oboInOwl:hasDefinition "Crystallographic Information File (CIF) is a data exchange standard file format for Crystallographic Information and related Structural Science data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso , + , + , + ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0883 ], + :format_2030 . + +:format_4025 a owl:Class ; + rdfs:label "BioSimulators format for the specifications of biosimulation tools" ; + :created_in "1.26" ; + :documentation ; + :example ; + :file_extension "json" ; + :media_type ; + :ontology_used , + :, + , + , + , + , + ; + :organisation ; + oboInOwl:hasDefinition "Format for describing the capabilities of a biosimulation tool including the modeling frameworks, simulation algorithms, and modeling formats that it supports, as well as metadata such as a list of the interfaces, programming languages, and operating systems supported by the tool; a link to download the tool; a list of the authors of the tool; and the license to the tool." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_3464 . + +:format_4026 a owl:Class ; + rdfs:label "BioSimulators standard for command-line interfaces for biosimulation tools" ; + :created_in "1.26" ; + :documentation ; + :example ; + :organisation ; + oboInOwl:hasDefinition "Outlines the syntax and semantics of the input and output arguments for command-line interfaces for biosimulation tools." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330 . + +:format_4035 a owl:Class ; + rdfs:label "PQR" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "Data format derived from the standard PDB format, which enables user to incorporate parameters for charge and radius to the existing PDB data file." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_1475, + :format_2330 . + +:format_4036 a owl:Class ; + rdfs:label "PDBQT" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "Data format used in AutoDock 4 for storing atomic coordinates, partial atomic charges and AutoDock atom types for both receptors and ligands." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso , + ; + rdfs:subClassOf :format_1475, + :format_2330 . + +:format_4039 a owl:Class ; + rdfs:label "MSP" ; + :created_in "1.26" ; + :documentation , + ; + :file_extension "msp" ; + oboInOwl:hasDefinition "MSP is a data format for mass spectrometry data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "NIST Text file format for storing MS∕MS spectra (m∕z and intensity of mass peaks) along with additional annotations for each spectrum. A single MSP file can thus contain single or multiple spectra. This format is frequently used to share spectra libraries." ; + rdfs:subClassOf :format_2330, + :format_3245 . + +:has_format a owl:ObjectProperty ; + rdfs:label "has format" ; + oboLegacy:is_anti_symmetric "false" ; + oboLegacy:is_reflexive "false" ; + oboLegacy:is_symmetric "false" ; + oboLegacy:transitive_over "OBO_REL:is_a" ; + oboInOwl:hasDefinition "'A has_format B' defines for the subject A, that it has the object B as its data format." ; + oboInOwl:inSubset :properties ; + oboInOwl:isCyclic "false" ; + rdfs:comment "Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is (or is in a role of) 'Data', or an input, output, input or output argument of an 'Operation'. Object B can either be a concept that is a 'Format', or in unexpected cases an entity outside of an ontology that is a 'Format' or is in the role of a 'Format'. In EDAM, 'has_format' is not explicitly defined between EDAM concepts, only the inverse 'is_format_of'." ; + rdfs:domain :data_0006 ; + rdfs:range :format_1915 ; + owl:inverseOf :is_format_of ; + skos:broadMatch oboLegacy:OBI_0000298, + . + +:has_identifier a owl:ObjectProperty ; + rdfs:label "has identifier" ; + oboLegacy:is_anti_symmetric "false" ; + oboLegacy:is_reflexive "false" ; + oboLegacy:is_symmetric "false" ; + oboLegacy:transitive_over "OBO_REL:is_a" ; + oboInOwl:hasDefinition "'A has_identifier B' defines for the subject A, that it has the object B as its identifier." ; + oboInOwl:inSubset :properties ; + oboInOwl:isCyclic "false" ; + rdfs:comment "Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is an 'Identifier', or an entity outside of an ontology that is an 'Identifier' or is in the role of an 'Identifier'. In EDAM, 'has_identifier' is not explicitly defined between EDAM concepts, only the inverse 'is_identifier_of'." ; + rdfs:domain :data_0006 ; + rdfs:range :data_0842 ; + owl:inverseOf :is_identifier_of . + +:information_standard a owl:AnnotationProperty ; + rdfs:label "Information standard" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "'Information standard' trailing modifier (qualifier, 'information_standard') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to an information standard supported by the given data format." ; + oboInOwl:hasNarrowSynonym "Minimum information checklist", + "Minimum information standard" ; + oboInOwl:inSubset :properties ; + rdfs:comment "\"Supported by the given data format\" here means, that the given format enables representation of data that satisfies the information standard." . + +:is_deprecation_candidate a owl:AnnotationProperty ; + rdfs:label "deprecation_candidate" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "When 'true', the concept has been proposed to be deprecated." ; + oboInOwl:inSubset :properties . + +:is_refactor_candidate a owl:AnnotationProperty ; + rdfs:label "refactor_candidate" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "When 'true', the concept has been proposed to be refactored." ; + oboInOwl:inSubset :properties . + +:isdebtag a owl:AnnotationProperty ; + rdfs:label "isdebtag" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "When 'true', the concept has been proposed or is supported within Debian as a tag." ; + oboInOwl:inSubset :properties . + +:media_type a owl:AnnotationProperty ; + rdfs:label "Media type" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "'Media type' trailing modifier (qualifier, 'media_type') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to a page specifying a media type of the given data format." ; + oboInOwl:hasNarrowSynonym "MIME type" ; + oboInOwl:inSubset :properties . + +:next_id a owl:AnnotationProperty . + +:notRecommendedForAnnotation a owl:AnnotationProperty ; + rdfs:label "notRecommendedForAnnotation" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "Whether terms associated with this concept are recommended for use in annotation." ; + oboInOwl:inSubset :properties . + +:obsolete_since a owl:AnnotationProperty ; + rdfs:label "Obsolete since" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "Version in which a concept was made obsolete." ; + oboInOwl:inSubset :properties . + +:oldParent a owl:AnnotationProperty ; + rdfs:label "Old parent" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "EDAM concept URI of the erstwhile \"parent\" of a now deprecated concept." ; + oboInOwl:inSubset :properties . + +:oldRelated a owl:AnnotationProperty ; + rdfs:label "Old related" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "EDAM concept URI of an erstwhile related concept (by has_input, has_output, has_topic, is_format_of, etc.) of a now deprecated concept." ; + oboInOwl:inSubset :properties . + +:ontology_used a owl:AnnotationProperty ; + rdfs:label "Ontology used" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "'Ontology used' concept property ('ontology_used' metadata tag) of format concepts links to a domain ontology that is used inside the given data format, or contains a note about ontology use within the format." ; + oboInOwl:inSubset :properties . + +:operation_0225 a owl:Class ; + rdfs:label "Data retrieval (database cross-reference)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Search database to retrieve all relevant references to a particular entity or entry." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0228 a owl:Class ; + rdfs:label "Data index analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0227 ; + oboInOwl:hasDefinition "Analyse an index of biological data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0229 a owl:Class ; + rdfs:label "Annotation retrieval (sequence)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Retrieve basic information about a molecular sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0232 a owl:Class ; + rdfs:label "Sequence merging" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Merge two or more (typically overlapping) molecular sequences." ; + oboInOwl:hasExactSynonym "Sequence splicing" ; + oboInOwl:hasNarrowSynonym "Paired-end merging", + "Paired-end stitching", + "Read merging", + "Read stitching" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0231 . + +:operation_0234 a owl:Class ; + rdfs:label "Sequence complexity calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate sequence complexity, for example to find low-complexity regions in sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0157 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1259 ], + :operation_0236 . + +:operation_0235 a owl:Class ; + rdfs:label "Sequence ambiguity calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate sequence ambiguity, for example identity regions in protein or nucleotide sequences with many ambiguity codes." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0157 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1260 ], + :operation_0236 . + +:operation_0238 a owl:Class ; + rdfs:label "Sequence motif discovery" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Discover new motifs or conserved patterns in sequences or sequence alignments (de-novo discovery)." ; + oboInOwl:hasExactSynonym "Motif discovery" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Motifs and patterns might be conserved or over-represented (occur with improbable frequency)." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0858 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + :operation_0253, + :operation_2404 . + +:operation_0240 a owl:Class ; + rdfs:label "Sequence motif comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Find motifs shared by molecular sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0858 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + :operation_2404, + :operation_2451 . + +:operation_0241 a owl:Class ; + rdfs:label "Transcription regulatory sequence analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0438 ; + oboInOwl:hasDefinition "Analyse the sequence, conformational or physicochemical properties of transcription regulatory elements in DNA sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "For example transcription factor binding sites (TFBS) analysis to predict accessibility of DNA to binding factors." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0242 a owl:Class ; + rdfs:label "Conserved transcription regulatory sequence identification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_0438 ; + oboInOwl:hasDefinition "Identify common, conserved (homologous) or synonymous transcriptional regulatory motifs (transcription factor binding sites)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0438 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0243 a owl:Class ; + rdfs:label "Protein property calculation (from structure)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.18" ; + :oldParent :operation_0250, + :operation_2406 ; + oboInOwl:hasDefinition "Extract, calculate or predict non-positional (physical or chemical) properties of a protein from processing a protein (3D) structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0250 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0245 a owl:Class ; + rdfs:label "Structural motif discovery" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify or screen for 3D structural motifs in protein structure(s)." ; + oboInOwl:hasExactSynonym "Protein structural feature identification", + "Protein structural motif recognition" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes conserved substructures and conserved geometry, such as spatial arrangement of secondary structure or protein backbone. Methods might use structure alignment, structural templates, searches for similar electrostatic potential and molecular surface shape, surface-mapping of phylogenetic information etc." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0166 ], + :operation_2406, + :operation_3092 . + +:operation_0254 a owl:Class ; + rdfs:label "Data retrieval (feature table)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Extract a sequence feature table from a sequence database entry." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0255 a owl:Class ; + rdfs:label "Feature table query" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Query the features (in a feature table) of molecular sequence(s)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0257 a owl:Class ; + rdfs:label "Data retrieval (sequence alignment)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Display basic information about a sequence alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0259 a owl:Class ; + rdfs:label "Sequence alignment comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare (typically by aligning) two molecular sequence alignments." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "See also 'Sequence profile alignment'." ; + rdfs:subClassOf :operation_0258, + :operation_2424 . + +:operation_0260 a owl:Class ; + rdfs:label "Sequence alignment conversion" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Convert a molecular sequence alignment from one type to another (for example amino acid to coding nucleotide sequence)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3081, + :operation_3434 . + +:operation_0261 a owl:Class ; + rdfs:label "Nucleic acid property processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0262 ; + oboInOwl:hasDefinition "Process (read and / or write) physicochemical property data of nucleic acids." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0264 a owl:Class ; + rdfs:label "Alternative splicing prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict splicing alternatives or transcript isoforms from analysis of sequence data." ; + oboInOwl:hasExactSynonym "Alternative splicing analysis", + "Alternative splicing detection", + "Differential splicing analysis", + "Splice transcript prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0114 ], + :operation_2499 . + +:operation_0265 a owl:Class ; + rdfs:label "Frameshift detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Detect frameshifts in DNA sequences, including frameshift sites and signals, and frameshift errors from sequencing projects." ; + oboInOwl:hasNarrowSynonym "Frameshift error detection" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods include sequence alignment (if related sequences are available) and word-based sequence comparison." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3168 ], + :operation_3195, + :operation_3227 . + +:operation_0266 a owl:Class ; + rdfs:label "Vector sequence detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Detect vector sequences in nucleotide sequence, typically by comparison to a set of known vector sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0415 . + +:operation_0268 a owl:Class ; + rdfs:label "Protein super-secondary structure prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict super-secondary structure of protein sequence(s)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1277 ], + :operation_0267 . + +:operation_0271 a owl:Class ; + rdfs:label "Structure prediction" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "This is a \"organisational class\" not very useful for annotation per se." ; + :obsolete_since "1.19" ; + :oldParent :operation_2423, + :operation_2480 ; + oboInOwl:consider :operation_0474, + :operation_0475 ; + oboInOwl:hasDefinition "Predict tertiary structure of a molecular (biopolymer) sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0272 a owl:Class ; + rdfs:label "Residue contact prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict contacts, non-covalent interactions and distance (constraints) between amino acids in protein sequences." ; + oboInOwl:hasExactSynonym "Residue interaction prediction" ; + oboInOwl:hasNarrowSynonym "Contact map prediction", + "Protein contact map prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods usually involve multiple sequence alignment analysis." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0130 ], + :operation_0250, + :operation_2479 . + +:operation_0273 a owl:Class ; + rdfs:label "Protein interaction raw data analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_2949 ; + oboInOwl:hasDefinition "Analyse experimental protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2949 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0274 a owl:Class ; + rdfs:label "Protein-protein interaction prediction (from protein sequence)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Identify or predict protein-protein interactions, interfaces, binding sites etc in protein sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2464 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0275 a owl:Class ; + rdfs:label "Protein-protein interaction prediction (from protein structure)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Identify or predict protein-protein interactions, interfaces, binding sites etc in protein structures." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2464 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0277 a owl:Class ; + rdfs:label "Pathway or network comparison" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." ; + :obsolete_since "1.24" ; + :oldParent :operation_2497 ; + oboInOwl:consider :operation_3927, + :operation_3928 ; + oboInOwl:hasDefinition "Compare two or more biological pathways or networks." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0280 a owl:Class ; + rdfs:label "Data retrieval (restriction enzyme annotation)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Retrieve information on restriction enzymes or restriction enzyme sites." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0281 a owl:Class ; + rdfs:label "Genetic marker identification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0415 ; + oboInOwl:hasDefinition "Identify genetic markers in DNA sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A genetic marker is any DNA sequence of known chromosomal location that is associated with and specific to a particular gene or trait. This includes short sequences surrounding a SNP, Sequence-Tagged Sites (STS) which are well suited for PCR amplification, a longer minisatellites sequence etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0287 a owl:Class ; + rdfs:label "Base position variability plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify and plot third base position variability in a nucleotide sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1263 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0114 ], + :operation_0286, + :operation_0564 . + +:operation_0289 a owl:Class ; + rdfs:label "Sequence distance matrix generation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate a sequence distance matrix or otherwise estimate genetic distances between molecular sequences." ; + oboInOwl:hasExactSynonym "Phylogenetic distance matrix generation", + "Sequence distance calculation", + "Sequence distance matrix construction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0084 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0870 ], + :operation_2451, + :operation_3429 . + +:operation_0290 a owl:Class ; + rdfs:label "Sequence redundancy removal" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare two or more molecular sequences, identify and remove redundant sequences based on some criteria." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2044 ], + :operation_2451 . + +:operation_0293 a owl:Class ; + rdfs:label "Hybrid sequence alignment construction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0292 ; + oboInOwl:hasDefinition "Align two or more molecular sequences of different types (for example genomic DNA to EST, cDNA or mRNA)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0301 a owl:Class ; + rdfs:label "Sequence-to-3D-profile alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_2928 ; + oboInOwl:hasDefinition "Align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0303 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0302 a owl:Class ; + rdfs:label "Protein threading" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Align molecular sequence to structure in 3D space (threading)." ; + oboInOwl:hasExactSynonym "Sequence-structure alignment" ; + oboInOwl:hasNarrowSynonym "Sequence-3D profile alignment", + "Sequence-to-3D-profile alignment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes sequence-to-3D-profile alignment methods, which align molecular sequence(s) to structural (3D) profile(s) or template(s) (representing a structure or structure alignment) - methods might perform one-to-one, one-to-many or many-to-many comparisons.", + "Use this concept for methods that evaluate sequence-structure compatibility by assessing residue interactions in 3D. Methods might perform one-to-one, one-to-many or many-to-many comparisons." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_1460 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0893 ], + :operation_0303 . + +:operation_0305 a owl:Class ; + rdfs:label "Literature search" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Query scientific literature, in search for articles, article data, concepts, named entities, or for statistics." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3068 ], + :operation_2421 . + +:operation_0307 a owl:Class ; + rdfs:label "Virtual PCR" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Perform in-silico (virtual) PCR." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2478 . + +:operation_0309 a owl:Class ; + rdfs:label "Microarray probe design" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict and/or optimize oligonucleotide probes for DNA microarrays, for example for transcription profiling of genes, or for genomes and gene families." ; + oboInOwl:hasExactSynonym "Microarray probe prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0203 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2717 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2977 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0632 ], + :operation_2419, + :operation_2430 . + +:operation_0311 a owl:Class ; + rdfs:label "Microarray data standardisation and normalisation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.16" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Standardize or normalize microarray data." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3435 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0312 a owl:Class ; + rdfs:label "Sequencing-based expression profile data processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2495 ; + oboInOwl:hasDefinition "Process (read and / or write) SAGE, MPSS or SBS experimental data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0313 a owl:Class ; + rdfs:label "Expression profile clustering" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Perform cluster analysis of expression data to identify groups with similar expression profiles, for example by clustering." ; + oboInOwl:hasNarrowSynonym "Gene expression clustering", + "Gene expression profile clustering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_3111 ], + :operation_0315, + :operation_3432 . + +:operation_0316 a owl:Class ; + rdfs:label "Functional profiling" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Interpret (in functional terms) and annotate gene expression data." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2495 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0317 a owl:Class ; + rdfs:label "EST and cDNA sequence analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2403 ; + oboInOwl:hasDefinition "Analyse EST or cDNA sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "For example, identify full-length cDNAs from EST sequences or detect potential EST antisense transcripts." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0318 a owl:Class ; + rdfs:label "Structural genomics target selection" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2406 ; + oboInOwl:hasDefinition "Identify and select targets for protein structural determination." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Methods will typically navigate a graph of protein families of known structure." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0326 a owl:Class ; + rdfs:label "Phylogenetic tree editing" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Edit a phylogenetic tree." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0872 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0872 ], + :operation_0324, + :operation_3096 . + +:operation_0327 a owl:Class ; + rdfs:label "Phylogenetic footprinting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Comparison of a DNA sequence to orthologous sequences in different species and inference of a phylogenetic tree, in order to identify regulatory elements such as transcription factor binding sites (TFBS)." ; + oboInOwl:hasNarrowSynonym "Phylogenetic shadowing" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Phylogenetic shadowing is a type of footprinting where many closely related species are used. A phylogenetic 'shadow' represents the additive differences between individual sequences. By masking or 'shadowing' variable positions a conserved sequence is produced with few or none of the variations, which is then compared to the sequences of interest to identify significant regions of conservation." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0194 ], + :operation_0323 . + +:operation_0328 a owl:Class ; + rdfs:label "Protein folding simulation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.20" ; + :oldParent :operation_2415 ; + oboInOwl:hasDefinition "Simulate the folding of a protein." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2415 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0329 a owl:Class ; + rdfs:label "Protein folding pathway prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_0474 ; + oboInOwl:hasDefinition "Predict the folding pathway(s) or non-native structural intermediates of a protein." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0474 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0330 a owl:Class ; + rdfs:label "Protein SNP mapping" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Map and model the effects of single nucleotide polymorphisms (SNPs) on protein structure(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0331 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0332 a owl:Class ; + rdfs:label "Immunogen design" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Design molecules that elicit an immune response (immunogens)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0252 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0333 a owl:Class ; + rdfs:label "Zinc finger prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.18" ; + :oldParent :operation_0420 ; + oboInOwl:hasDefinition "Predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0420 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0334 a owl:Class ; + rdfs:label "Enzyme kinetics calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate Km, Vmax and derived data for an enzyme reaction." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0821 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2024 ], + :operation_0250 . + +:operation_0336 a owl:Class ; + rdfs:label "Format validation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Test and validate the format and content of a data file." ; + oboInOwl:hasExactSynonym "File format validation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2428 . + +:operation_0340 a owl:Class ; + rdfs:label "Protein secondary database search" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Search a secondary protein database (of classification information) to assign a protein sequence(s) to a known protein family or group." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3092 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0341 a owl:Class ; + rdfs:label "Motif database search" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0253 ; + oboInOwl:hasDefinition "Screen a sequence against a motif or pattern database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0342 a owl:Class ; + rdfs:label "Sequence profile database search" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0239 ; + oboInOwl:hasDefinition "Search a database of sequence profiles with a query sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0343 a owl:Class ; + rdfs:label "Transmembrane protein database search" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2421 ; + oboInOwl:hasDefinition "Search a database of transmembrane proteins, for example for sequence or structural similarities." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0344 a owl:Class ; + rdfs:label "Sequence retrieval (by code)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Query a database and retrieve sequences with a given entry code or accession number." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0345 a owl:Class ; + rdfs:label "Sequence retrieval (by keyword)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Query a database and retrieve sequences containing a given keyword." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0347 a owl:Class ; + rdfs:label "Sequence database search (by motif or pattern)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Search a sequence database and retrieve sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0239 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0348 a owl:Class ; + rdfs:label "Sequence database search (by amino acid composition)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0338 ; + oboInOwl:hasDefinition "Search a sequence database and retrieve sequences of a given amino acid composition." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0349 a owl:Class ; + rdfs:label "Sequence database search (by property)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Search a sequence database and retrieve sequences with a specified property, typically a physicochemical or compositional property." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0338 . + +:operation_0350 a owl:Class ; + rdfs:label "Sequence database search (by sequence using word-based methods)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0346 ; + oboInOwl:hasDefinition "Search a sequence database and retrieve sequences that are similar to a query sequence using a word-based method." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Word-based methods (for example BLAST, gapped BLAST, MEGABLAST, WU-BLAST etc.) are usually quicker than alignment-based methods. They may or may not handle gaps." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0351 a owl:Class ; + rdfs:label "Sequence database search (by sequence using profile-based methods)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0346 ; + oboInOwl:hasDefinition "Search a sequence database and retrieve sequences that are similar to a query sequence using a sequence profile-based method, or with a supplied profile as query." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This includes tools based on PSI-BLAST." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0352 a owl:Class ; + rdfs:label "Sequence database search (by sequence using local alignment-based methods)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0346 ; + oboInOwl:hasDefinition "Search a sequence database for sequences that are similar to a query sequence using a local alignment-based method." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This includes tools based on the Smith-Waterman algorithm or FASTA." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0353 a owl:Class ; + rdfs:label "Sequence database search (by sequence using global alignment-based methods)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0346 ; + oboInOwl:hasDefinition "Search sequence(s) or a sequence database for sequences that are similar to a query sequence using a global alignment-based method." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This includes tools based on the Needleman and Wunsch algorithm." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0354 a owl:Class ; + rdfs:label "Sequence database search (by sequence for primer sequences)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0346 ; + oboInOwl:hasDefinition "Search a DNA database (for example a database of conserved sequence tags) for matches to Sequence-Tagged Site (STS) primer sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "STSs are genetic markers that are easily detected by the polymerase chain reaction (PCR) using specific primers." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0355 a owl:Class ; + rdfs:label "Sequence database search (by molecular weight)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Search sequence(s) or a sequence database for sequences which match a set of peptide masses, for example a peptide mass fingerprint from mass spectrometry." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2929 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0356 a owl:Class ; + rdfs:label "Sequence database search (by isoelectric point)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0338 ; + oboInOwl:hasDefinition "Search sequence(s) or a sequence database for sequences of a given isoelectric point." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0357 a owl:Class ; + rdfs:label "Structure retrieval (by code)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Query a tertiary structure database and retrieve entries with a given entry code or accession number." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0358 a owl:Class ; + rdfs:label "Structure retrieval (by keyword)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Query a tertiary structure database and retrieve entries containing a given keyword." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0359 a owl:Class ; + rdfs:label "Structure database search (by sequence)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Search a tertiary structure database and retrieve structures with a sequence similar to a query sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0346 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0360 a owl:Class ; + rdfs:label "Structural similarity search" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Search a database of molecular structure and retrieve structures that are similar to a query structure." ; + oboInOwl:hasExactSynonym "Structure database search (by structure)", + "Structure retrieval by structure" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0339, + :operation_2483 . + +:operation_0363 a owl:Class ; + rdfs:label "Reverse complement" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate the reverse and / or complement of a nucleotide sequence." ; + oboInOwl:hasExactSynonym "Nucleic acid sequence reverse and complement", + "Reverse / complement", + "Reverse and complement" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0230 . + +:operation_0364 a owl:Class ; + rdfs:label "Random sequence generation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate a random sequence, for example, with a specific character composition." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0230 . + +:operation_0365 a owl:Class ; + rdfs:label "Restriction digest" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate digest fragments for a nucleotide sequence containing restriction sites." ; + oboInOwl:hasExactSynonym "Nucleic acid restriction digest" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1239 ], + :operation_0230, + :operation_0262 . + +:operation_0366 a owl:Class ; + rdfs:label "Protein sequence cleavage" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Cleave a protein sequence into peptide fragments (corresponding to enzymatic or chemical cleavage)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This is often followed by calculation of protein fragment masses (http://edamontology.org/operation_0398)." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1238 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + :operation_0230 . + +:operation_0367 a owl:Class ; + rdfs:label "Sequence mutation and randomisation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Mutate a molecular sequence a specified amount or shuffle it to produce a randomised sequence with the same overall composition." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0231 . + +:operation_0368 a owl:Class ; + rdfs:label "Sequence masking" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Mask characters in a molecular sequence (replacing those characters with a mask character)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "For example, SNPs or repeats in a DNA sequence might be masked." ; + rdfs:subClassOf :operation_0231 . + +:operation_0370 a owl:Class ; + rdfs:label "Restriction site creation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Create (or remove) restriction sites in sequences, for example using silent mutations." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0231 . + +:operation_0371 a owl:Class ; + rdfs:label "DNA translation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Translate a DNA sequence into protein." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0108 ], + :operation_0233 . + +:operation_0372 a owl:Class ; + rdfs:label "DNA transcription" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Transcribe a nucleotide sequence into mRNA sequence(s)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0203 ], + :operation_0233 . + +:operation_0377 a owl:Class ; + rdfs:label "Sequence composition calculation (nucleic acid)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate base frequency or word composition of a nucleotide sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0236 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0378 a owl:Class ; + rdfs:label "Sequence composition calculation (protein)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate amino acid frequency or word composition of a protein sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0236 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0379 a owl:Class ; + rdfs:label "Repeat sequence detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Find (and possibly render) short repetitive subsequences (repeat sequences) in (typically nucleotide) sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0237, + :operation_0415 . + +:operation_0380 a owl:Class ; + rdfs:label "Repeat sequence organisation analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse repeat sequence organisation such as periodicity." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0236, + :operation_0237 . + +:operation_0383 a owl:Class ; + rdfs:label "Protein hydropathy calculation (from structure)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Analyse the hydrophobic, hydrophilic or charge properties of a protein structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2574 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0384 a owl:Class ; + rdfs:label "Accessible surface calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF:AtomAccessibilitySolvent", + "WHATIF:AtomAccessibilitySolventPlus" ; + oboInOwl:hasDefinition "Calculate solvent accessible or buried surface areas in protein or other molecular structures." ; + oboInOwl:hasNarrowSynonym "Protein solvent accessibility calculation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain)." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1542 ], + :operation_3351 . + +:operation_0385 a owl:Class ; + rdfs:label "Protein hydropathy cluster calculation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Identify clusters of hydrophobic or charged residues in a protein structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0393 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0386 a owl:Class ; + rdfs:label "Protein dipole moment calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate whether a protein structure has an unusually large net charge (dipole moment)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1545 ], + :operation_0250 . + +:operation_0388 a owl:Class ; + rdfs:label "Protein binding site prediction (from structure)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Identify or predict catalytic residues, active sites or other ligand-binding sites in protein structures." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2575 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0390 a owl:Class ; + rdfs:label "Protein peeling" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Decompose a structure into compact or globular fragments (protein peeling)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0246 . + +:operation_0392 a owl:Class ; + rdfs:label "Contact map calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate a residue contact map (typically all-versus-all inter-residue contacts) for a protein structure." ; + oboInOwl:hasExactSynonym "Protein contact map calculation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1547 ], + :operation_0391 . + +:operation_0395 a owl:Class ; + rdfs:label "Residue non-canonical interaction detection" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0249 ; + oboInOwl:hasDefinition "Calculate non-canonical atomic interactions in protein structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0396 a owl:Class ; + rdfs:label "Ramachandran plot calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate a Ramachandran plot of a protein structure." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1544 ], + :operation_0249 . + +:operation_0397 a owl:Class ; + rdfs:label "Ramachandran plot validation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.22" ; + :oldParent :operation_1844 ; + oboInOwl:hasDefinition "Validate a Ramachandran plot of a protein structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_1844 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0399 a owl:Class ; + rdfs:label "Protein extinction coefficient calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict extinction coefficients or optical density of a protein sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1531 ], + :operation_0250 . + +:operation_0401 a owl:Class ; + rdfs:label "Protein hydropathy calculation (from sequence)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Hydropathy calculation on a protein sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2574 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0402 a owl:Class ; + rdfs:label "Protein titration curve plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Plot a protein titration curve." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1527 ], + :operation_0337, + :operation_0400 . + +:operation_0403 a owl:Class ; + rdfs:label "Protein isoelectric point calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate isoelectric point of a protein sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1528 ], + :operation_0400 . + +:operation_0404 a owl:Class ; + rdfs:label "Protein hydrogen exchange rate calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Estimate hydrogen exchange rate of a protein sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1530 ], + :operation_0400 . + +:operation_0405 a owl:Class ; + rdfs:label "Protein hydrophobic region calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate hydrophobic or hydrophilic / charged regions of a protein sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2574 . + +:operation_0406 a owl:Class ; + rdfs:label "Protein aliphatic index calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate aliphatic index (relative volume occupied by aliphatic side chains) of a protein." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1521 ], + :operation_2574 . + +:operation_0407 a owl:Class ; + rdfs:label "Protein hydrophobic moment plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate the hydrophobic moment of a peptide sequence and recognize amphiphilicity." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1520 ], + :operation_0564, + :operation_2574 . + +:operation_0408 a owl:Class ; + rdfs:label "Protein globularity prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict the stability or globularity of a protein sequence, whether it is intrinsically unfolded etc." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1526 ], + :operation_2574 . + +:operation_0409 a owl:Class ; + rdfs:label "Protein solubility prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict the solubility or atomic solvation energy of a protein sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1524 ], + :operation_2574 . + +:operation_0410 a owl:Class ; + rdfs:label "Protein crystallizability prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict crystallizability of a protein sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1525 ], + :operation_2574 . + +:operation_0411 a owl:Class ; + rdfs:label "Protein signal peptide detection (eukaryotes)" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "(jison)Too fine-grained." ; + :obsolete_since "1.17" ; + :oldParent :operation_0418 ; + oboInOwl:hasDefinition "Detect or predict signal peptides (and typically predict subcellular localisation) of eukaryotic proteins." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0418 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0412 a owl:Class ; + rdfs:label "Protein signal peptide detection (bacteria)" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "(jison)Too fine-grained." ; + :obsolete_since "1.17" ; + :oldParent :operation_0418 ; + oboInOwl:hasDefinition "Detect or predict signal peptides (and typically predict subcellular localisation) of bacterial proteins." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0418 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0413 a owl:Class ; + rdfs:label "MHC peptide immunogenicity prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Predict MHC class I or class II binding peptides, promiscuous binding peptides, immunogenicity etc." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0252 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0414 a owl:Class ; + rdfs:label "Protein feature prediction (from sequence)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_3092 ; + oboInOwl:hasDefinition "Predict, recognise and identify positional features in protein sequences such as functional sites or regions and secondary structure." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Methods typically involve scanning for known motifs, patterns and regular expressions." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0417 a owl:Class ; + rdfs:label "Post-translational modification site prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict post-translation modification sites in protein sequences." ; + oboInOwl:hasExactSynonym "PTM analysis", + "PTM prediction", + "PTM site analysis", + "PTM site prediction", + "Post-translation modification site prediction", + "Post-translational modification analysis", + "Protein post-translation modification site prediction" ; + oboInOwl:hasNarrowSynonym "Acetylation prediction", + "Acetylation site prediction", + "Dephosphorylation prediction", + "Dephosphorylation site prediction", + "GPI anchor prediction", + "GPI anchor site prediction", + "GPI modification prediction", + "GPI modification site prediction", + "Glycosylation prediction", + "Glycosylation site prediction", + "Hydroxylation prediction", + "Hydroxylation site prediction", + "Methylation prediction", + "Methylation site prediction", + "N-myristoylation prediction", + "N-myristoylation site prediction", + "N-terminal acetylation prediction", + "N-terminal acetylation site prediction", + "N-terminal myristoylation prediction", + "N-terminal myristoylation site prediction", + "Palmitoylation prediction", + "Palmitoylation site prediction", + "Phosphoglycerylation prediction", + "Phosphoglycerylation site prediction", + "Phosphorylation prediction", + "Phosphorylation site prediction", + "Phosphosite localization", + "Prenylation prediction", + "Prenylation site prediction", + "Pupylation prediction", + "Pupylation site prediction", + "S-nitrosylation prediction", + "S-nitrosylation site prediction", + "S-sulfenylation prediction", + "S-sulfenylation site prediction", + "Succinylation prediction", + "Succinylation site prediction", + "Sulfation prediction", + "Sulfation site prediction", + "Sumoylation prediction", + "Sumoylation site prediction", + "Tyrosine nitration prediction", + "Tyrosine nitration site prediction", + "Ubiquitination prediction", + "Ubiquitination site prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods might predict sites of methylation, N-terminal myristoylation, N-terminal acetylation, sumoylation, palmitoylation, phosphorylation, sulfation, glycosylation, glycosylphosphatidylinositol (GPI) modification sites (GPI lipid anchor signals) etc." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0601 ], + :operation_3092 . + +:operation_0419 a owl:Class ; + rdfs:label "Protein binding site prediction (from sequence)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Predict catalytic residues, active sites or other ligand-binding sites in protein sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2575 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0421 a owl:Class ; + rdfs:label "Protein folding site prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.20" ; + :oldParent :operation_2415 ; + oboInOwl:hasDefinition "Predict protein sites that are key to protein folding, such as possible sites of nucleation or stabilisation." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2415 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0422 a owl:Class ; + rdfs:label "Protein cleavage site prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Detect or predict cleavage sites (enzymatic or chemical) in protein sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + :operation_3092 . + +:operation_0423 a owl:Class ; + rdfs:label "Epitope mapping (MHC Class I)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Predict epitopes that bind to MHC class I molecules." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0416 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0424 a owl:Class ; + rdfs:label "Epitope mapping (MHC Class II)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Predict epitopes that bind to MHC class II molecules." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0416 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0425 a owl:Class ; + rdfs:label "Whole gene prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Detect, predict and identify whole gene structure in DNA sequences. This includes protein coding regions, exon-intron structure, regulatory regions etc." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2454 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0426 a owl:Class ; + rdfs:label "Gene component prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Detect, predict and identify genetic elements such as promoters, coding regions, splice sites, etc in DNA sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2454 ; + rdfs:comment "Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0427 a owl:Class ; + rdfs:label "Transposon prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Detect or predict transposons, retrotransposons / retrotransposition signatures etc." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0415 . + +:operation_0428 a owl:Class ; + rdfs:label "PolyA signal detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Detect polyA signals in nucleotide sequences." ; + oboInOwl:hasExactSynonym "PolyA detection", + "PolyA prediction", + "PolyA signal prediction", + "Polyadenylation signal detection", + "Polyadenylation signal prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0415 . + +:operation_0429 a owl:Class ; + rdfs:label "Quadruplex formation site detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Detect quadruplex-forming motifs in nucleotide sequences." ; + oboInOwl:hasExactSynonym "Quadruplex structure prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Quadruplex (4-stranded) structures are formed by guanine-rich regions and are implicated in various important biological processes and as therapeutic targets." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_3128 ], + :operation_0415 . + +:operation_0430 a owl:Class ; + rdfs:label "CpG island and isochore detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Find CpG rich regions in a nucleotide sequence or isochores in genome sequences." ; + oboInOwl:hasExactSynonym "CpG island and isochores detection", + "CpG island and isochores rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "An isochore is long region (> 3 KB) of DNA with very uniform GC content, in contrast to the rest of the genome. Isochores tend tends to have more genes, higher local melting or denaturation temperatures, and different flexibility. Methods might calculate fractional GC content or variation of GC content, predict methylation status of CpG islands etc. This includes methods that visualise CpG rich regions in a nucleotide sequence, for example plot isochores in a genome sequence." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0157 ], + :operation_0415 . + +:operation_0433 a owl:Class ; + rdfs:label "Splice site prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify, predict or analyse splice sites in nucleotide sequences." ; + oboInOwl:hasExactSynonym "Splice prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods might require a pre-mRNA or genomic DNA sequence." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0114 ], + :operation_2499 . + +:operation_0434 a owl:Class ; + rdfs:label "Integrated gene prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_2454 ; + oboInOwl:hasDefinition "Predict whole gene structure using a combination of multiple methods to achieve better predictions." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2454 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0435 a owl:Class ; + rdfs:label "Operon prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Find operons (operators, promoters and genes) in bacteria genes." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2454 . + +:operation_0437 a owl:Class ; + rdfs:label "SECIS element prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict selenocysteine insertion sequence (SECIS) in a DNA sequence." ; + oboInOwl:hasExactSynonym "Selenocysteine insertion sequence (SECIS) prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "SECIS elements are around 60 nucleotides in length with a stem-loop structure directs the cell to translate UGA codons as selenocysteines." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0916 ], + :operation_2454 . + +:operation_0439 a owl:Class ; + rdfs:label "Translation initiation site prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict translation initiation sites, possibly by searching a database of sites." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0108 ], + :operation_0436 . + +:operation_0442 a owl:Class ; + rdfs:label "Transcriptional regulatory element prediction (RNA-cis)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_0438 ; + oboInOwl:hasDefinition "Identify, predict or analyse cis-regulatory elements (for example riboswitches) in RNA sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0441 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0444 a owl:Class ; + rdfs:label "S/MAR prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify matrix/scaffold attachment regions (MARs/SARs) in DNA sequences." ; + oboInOwl:hasExactSynonym "MAR/SAR prediction", + "Matrix/scaffold attachment site prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "MAR/SAR sites often flank a gene or gene cluster and are found nearby cis-regulatory sequences. They might contribute to transcription regulation." ; + rdfs:subClassOf :operation_0438 . + +:operation_0445 a owl:Class ; + rdfs:label "Transcription factor binding site prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify or predict transcription factor binding sites in DNA sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0440 . + +:operation_0446 a owl:Class ; + rdfs:label "Exonic splicing enhancer prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify or predict exonic splicing enhancers (ESE) in exons." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "An exonic splicing enhancer (ESE) is 6-base DNA sequence motif in an exon that enhances or directs splicing of pre-mRNA or hetero-nuclear RNA (hnRNA) into mRNA." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0114 ], + :operation_0440 . + +:operation_0447 a owl:Class ; + rdfs:label "Sequence alignment validation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Evaluate molecular sequence alignment accuracy." ; + oboInOwl:hasExactSynonym "Sequence alignment quality evaluation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Evaluation might be purely sequence-based or use structural information." ; + rdfs:subClassOf :operation_0258, + :operation_2428 . + +:operation_0448 a owl:Class ; + rdfs:label "Sequence alignment analysis (conservation)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse character conservation in a molecular sequence alignment, for example to derive a consensus sequence." ; + oboInOwl:hasExactSynonym "Residue conservation analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Use this concept for methods that calculate substitution rates, estimate relative site variability, identify sites with biased properties, derive a consensus sequence, or identify highly conserved or very poorly conserved sites, regions, blocks etc." ; + rdfs:subClassOf :operation_0258 . + +:operation_0449 a owl:Class ; + rdfs:label "Sequence alignment analysis (site correlation)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse correlations between sites in a molecular sequence alignment." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This is typically done to identify possible covarying positions and predict contacts or structural constraints in protein structures." ; + rdfs:subClassOf :operation_0258, + :operation_3465 . + +:operation_0450 a owl:Class ; + rdfs:label "Chimera detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Detects chimeric sequences (chimeras) from a sequence alignment." ; + oboInOwl:hasExactSynonym "Chimeric sequence detection" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "A chimera includes regions from two or more phylogenetically distinct sequences. They are usually artifacts of PCR and are thought to occur when a prematurely terminated amplicon reanneals to another DNA strand and is subsequently copied to completion in later PCR cycles." ; + rdfs:subClassOf :operation_2478 . + +:operation_0451 a owl:Class ; + rdfs:label "Recombination detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Detect recombination (hotspots and coldspots) and identify recombination breakpoints in a sequence alignment." ; + oboInOwl:hasExactSynonym "Sequence alignment analysis (recombination detection)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on." ; + rdfs:subClassOf :operation_2478 . + +:operation_0452 a owl:Class ; + rdfs:label "Indel detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify insertion, deletion and duplication events from a sequence alignment." ; + oboInOwl:hasExactSynonym "Indel discovery", + "Sequence alignment analysis (indel detection)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Tools might use a genetic algorithm, quartet-mapping, bootscanning, graphical methods, random forest model and so on." ; + rdfs:subClassOf :operation_3227 . + +:operation_0453 a owl:Class ; + rdfs:label "Nucleosome formation potential prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0432 ; + oboInOwl:hasDefinition "Predict nucleosome formation potential of DNA sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0455 a owl:Class ; + rdfs:label "Nucleic acid thermodynamic property calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate a thermodynamic property of DNA or DNA/RNA, such as melting temperature, enthalpy and entropy." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2985 ], + :operation_0262 . + +:operation_0457 a owl:Class ; + rdfs:label "Nucleic acid stitch profile plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate and plot a DNA or DNA/RNA stitch profile." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "A stitch profile represents the alternative conformations that partly melted DNA can adopt in a temperature range." ; + rdfs:subClassOf :operation_0456 . + +:operation_0458 a owl:Class ; + rdfs:label "Nucleic acid melting curve plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate and plot a DNA or DNA/RNA melting curve." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0456 . + +:operation_0459 a owl:Class ; + rdfs:label "Nucleic acid probability profile plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate and plot a DNA or DNA/RNA probability profile." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0456 . + +:operation_0460 a owl:Class ; + rdfs:label "Nucleic acid temperature profile plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate and plot a DNA or DNA/RNA temperature profile." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0456 . + +:operation_0461 a owl:Class ; + rdfs:label "Nucleic acid curvature calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate curvature and flexibility / stiffness of a nucleotide sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes properties such as." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0912 ], + :operation_0262 . + +:operation_0463 a owl:Class ; + rdfs:label "miRNA target prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify or predict microRNA sequences (miRNA) and precursors or microRNA targets / binding sites in a DNA sequence." ; + oboInOwl:hasExactSynonym "miRNA prediction", + "microRNA detection", + "microRNA target detection" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0443 . + +:operation_0464 a owl:Class ; + rdfs:label "tRNA gene prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify or predict tRNA genes in genomic sequences (tRNA)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0659 ], + :operation_2454 . + +:operation_0465 a owl:Class ; + rdfs:label "siRNA binding specificity prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Assess binding specificity of putative siRNA sequence(s), for example for a functional assay, typically with respect to designing specific siRNA sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0659 ], + :operation_0443 . + +:operation_0467 a owl:Class ; + rdfs:label "Protein secondary structure prediction (integrated)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.18" ; + :oldParent :operation_0267 ; + oboInOwl:hasDefinition "Predict secondary structure of protein sequence(s) using multiple methods to achieve better predictions." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0267 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0468 a owl:Class ; + rdfs:label "Protein secondary structure prediction (helices)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict helical secondary structure of protein sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0267 . + +:operation_0469 a owl:Class ; + rdfs:label "Protein secondary structure prediction (turns)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict turn structure (for example beta hairpin turns) of protein sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0267 . + +:operation_0470 a owl:Class ; + rdfs:label "Protein secondary structure prediction (coils)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict open coils, non-regular secondary structure and intrinsically disordered / unstructured regions of protein sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0267 . + +:operation_0471 a owl:Class ; + rdfs:label "Disulfide bond prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict cysteine bonding state and disulfide bond partners in protein sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3092 . + +:operation_0472 a owl:Class ; + rdfs:label "GPCR prediction" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "Not sustainable to have protein type-specific concepts." ; + :obsolete_since "1.19" ; + :oldParent :operation_0269 ; + oboInOwl:hasDefinition "Predict G protein-coupled receptors (GPCR)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0269 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0476 a owl:Class ; + rdfs:label "Ab initio structure prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict tertiary structure of protein sequence(s) without homologs of known structure." ; + oboInOwl:hasExactSynonym "de novo structure prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0474 . + +:operation_0479 a owl:Class ; + rdfs:label "Backbone modelling" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Model protein backbone conformation." ; + oboInOwl:hasExactSynonym "Protein modelling (backbone)" ; + oboInOwl:hasNarrowSynonym "Design optimization", + "Epitope grafting", + "Scaffold search", + "Scaffold selection" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods might require a preliminary C(alpha) trace.", + "Scaffold selection, scaffold search, epitope grafting and design optimization are stages of backbone modelling done during rational vaccine design." ; + rdfs:subClassOf :operation_0477 . + +:operation_0481 a owl:Class ; + rdfs:label "Loop modelling" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Model loop conformation in protein structures." ; + oboInOwl:hasExactSynonym "Protein loop modelling", + "Protein modelling (loops)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0477 . + +:operation_0485 a owl:Class ; + rdfs:label "Radiation Hybrid Mapping" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate a physical (radiation hybrid) map of genetic markers in a DNA sequence using provided radiation hybrid (RH) scores for one or more markers." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2870 ], + :operation_2944 . + +:operation_0486 a owl:Class ; + rdfs:label "Functional mapping" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0282 ; + oboInOwl:hasDefinition "Map the genetic architecture of dynamic complex traits." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This can involve characterisation of the underlying quantitative trait loci (QTLs) or nucleotides (QTNs)." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0487 a owl:Class ; + rdfs:label "Haplotype mapping" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Infer haplotypes, either alleles at multiple loci that are transmitted together on the same chromosome, or a set of single nucleotide polymorphisms (SNPs) on a single chromatid that are statistically associated." ; + oboInOwl:hasExactSynonym "Haplotype inference", + "Haplotype map generation", + "Haplotype reconstruction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Haplotype inference can help in population genetic studies and the identification of complex disease genes, , and is typically based on aligned single nucleotide polymorphism (SNP) fragments. Haplotype comparison is a useful way to characterize the genetic variation between individuals. An individual's haplotype describes which nucleotide base occurs at each position for a set of common SNPs. Tools might use combinatorial functions (for example parsimony) or a likelihood function or model with optimisation such as minimum error correction (MEC) model, expectation-maximisation algorithm (EM), genetic algorithm or Markov chain Monte Carlo (MCMC)." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1863 ], + :operation_0282 . + +:operation_0488 a owl:Class ; + rdfs:label "Linkage disequilibrium calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Linkage disequilibrium is identified where a combination of alleles (or genetic markers) occurs more or less frequently in a population than expected by chance formation of haplotypes." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0927 ], + :operation_0283 . + +:operation_0489 a owl:Class ; + rdfs:label "Genetic code prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict genetic code from analysis of codon usage data." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1598 ], + :operation_0286, + :operation_2423 . + +:operation_0490 a owl:Class ; + rdfs:label "Dot plot plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Render a representation of a distribution that consists of group of data points plotted on a simple scale." ; + oboInOwl:hasExactSynonym "Categorical plot plotting", + "Dotplot plotting" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Dot plots are useful when having not too many (e.g. 20) data points for each category. Example: draw a dotplot of sequence similarities identified from word-matching or character comparison." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0862 ], + :operation_0288, + :operation_0564 . + +:operation_0492 a owl:Class ; + rdfs:label "Multiple sequence alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Align more than two molecular sequences." ; + oboInOwl:hasExactSynonym "Multiple alignment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes methods that use an existing alignment, for example to incorporate sequences into an alignment, or combine several multiple alignments into a single, improved alignment." ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0292 . + +:operation_0493 a owl:Class ; + rdfs:label "Pairwise sequence alignment generation (local)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0491, + :operation_0495 ; + oboInOwl:hasDefinition "Locally align exactly two molecular sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Local alignment methods identify regions of local similarity." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0494 a owl:Class ; + rdfs:label "Pairwise sequence alignment generation (global)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0491, + :operation_0496 ; + oboInOwl:hasDefinition "Globally align exactly two molecular sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Global alignment methods identify similarity across the entire length of the sequences." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0497 a owl:Class ; + rdfs:label "Constrained sequence alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_0292 ; + oboInOwl:hasDefinition "Align two or more molecular sequences with user-defined constraints." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0292 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0498 a owl:Class ; + rdfs:label "Consensus-based sequence alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.16" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Align two or more molecular sequences using multiple methods to achieve higher quality." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0292 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0499 a owl:Class ; + rdfs:label "Tree-based sequence alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Align multiple sequences using relative gap costs calculated from neighbors in a supplied phylogenetic tree." ; + oboInOwl:hasExactSynonym "Multiple sequence alignment (phylogenetic tree-based)", + "Multiple sequence alignment construction (phylogenetic tree-based)", + "Phylogenetic tree-based multiple sequence alignment construction", + "Sequence alignment (phylogenetic tree-based)", + "Sequence alignment generation (phylogenetic tree-based)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This is supposed to give a more biologically meaningful alignment than standard alignments." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0084 ], + :operation_0292 . + +:operation_0500 a owl:Class ; + rdfs:label "Secondary structure alignment generation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2928 ; + oboInOwl:hasDefinition "Align molecular secondary structure (represented as a 1D string)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0501 a owl:Class ; + rdfs:label "Protein secondary structure alignment generation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.18" ; + :oldParent :operation_2488 ; + oboInOwl:hasDefinition "Align protein secondary structures." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2488 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0502 a owl:Class ; + rdfs:label "RNA secondary structure alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Align RNA secondary structures." ; + oboInOwl:hasExactSynonym "RNA secondary structure alignment construction", + "RNA secondary structure alignment generation", + "Secondary structure alignment construction (RNA)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0881 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0880 ], + :operation_2439, + :operation_3429 . + +:operation_0505 a owl:Class ; + rdfs:label "Structure alignment (protein)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0295 ; + oboInOwl:hasDefinition "Align protein tertiary structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0506 a owl:Class ; + rdfs:label "Structure alignment (RNA)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0295 ; + oboInOwl:hasDefinition "Align RNA tertiary structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0507 a owl:Class ; + rdfs:label "Pairwise structure alignment generation (local)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0295, + :operation_0509 ; + oboInOwl:hasDefinition "Locally align (superimpose) exactly two molecular tertiary structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Local alignment methods identify regions of local similarity, common substructures etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0508 a owl:Class ; + rdfs:label "Pairwise structure alignment generation (global)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0295, + :operation_0510 ; + oboInOwl:hasDefinition "Globally align (superimpose) exactly two molecular tertiary structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Global alignment methods identify similarity across the entire structures." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0511 a owl:Class ; + rdfs:label "Profile-profile alignment (pairwise)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.16" ; + :oldParent :operation_0298 ; + oboInOwl:consider :operation_0292, + :operation_0300 ; + oboInOwl:hasDefinition "Align exactly two molecular profiles." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Methods might perform one-to-one, one-to-many or many-to-many comparisons." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0512 a owl:Class ; + rdfs:label "Sequence alignment generation (multiple profile)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent :operation_0298 ; + oboInOwl:consider :operation_0292, + :operation_0300 ; + oboInOwl:hasDefinition "Align two or more molecular profiles." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0513 a owl:Class ; + rdfs:label "3D profile-to-3D profile alignment (pairwise)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.16" ; + :oldParent :operation_0299 ; + oboInOwl:consider :operation_0294, + :operation_0295, + :operation_0503 ; + oboInOwl:hasDefinition "Align exactly two molecular Structural (3D) profiles." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0514 a owl:Class ; + rdfs:label "Structural profile alignment generation (multiple)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent :operation_0299 ; + oboInOwl:consider :operation_0294, + :operation_0295, + :operation_0504 ; + oboInOwl:hasDefinition "Align two or more molecular 3D profiles." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0515 a owl:Class ; + rdfs:label "Data retrieval (tool metadata)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Search and retrieve names of or documentation on bioinformatics tools, for example by keyword or which perform a particular function." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0516 a owl:Class ; + rdfs:label "Data retrieval (database metadata)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Search and retrieve names of or documentation on bioinformatics databases or query terms, for example by keyword." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0517 a owl:Class ; + rdfs:label "PCR primer design (for large scale sequencing)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Predict primers for large scale sequencing." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0308 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0518 a owl:Class ; + rdfs:label "PCR primer design (for genotyping polymorphisms)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Predict primers for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0308 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0519 a owl:Class ; + rdfs:label "PCR primer design (for gene transcription profiling)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Predict primers for gene transcription profiling." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0308 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0520 a owl:Class ; + rdfs:label "PCR primer design (for conserved primers)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Predict primers that are conserved across multiple genomes or species." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0308 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0521 a owl:Class ; + rdfs:label "PCR primer design (based on gene structure)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Predict primers based on gene structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0308 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0522 a owl:Class ; + rdfs:label "PCR primer design (for methylation PCRs)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Predict primers for methylation PCRs." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0308 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0526 a owl:Class ; + rdfs:label "EST assembly" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Sequence assembly for EST sequences (transcribed mRNA)." ; + oboInOwl:hasExactSynonym "Sequence assembly (EST assembly)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Assemblers must handle (or be complicated by) alternative splicing, trans-splicing, single-nucleotide polymorphism (SNP), recoding, and post-transcriptional modification." ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0310 . + +:operation_0527 a owl:Class ; + rdfs:label "Sequence tag mapping" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Make sequence tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data." ; + oboInOwl:hasExactSynonym "Tag to gene assignment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Sequence tag mapping assigns experimentally obtained sequence tags to known transcripts or annotate potential virtual sequence tags in a genome." ; + rdfs:subClassOf :operation_0226, + :operation_2520 . + +:operation_0528 a owl:Class ; + rdfs:label "SAGE data processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2495 ; + oboInOwl:hasDefinition "Process (read and / or write) serial analysis of gene expression (SAGE) data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0529 a owl:Class ; + rdfs:label "MPSS data processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2495 ; + oboInOwl:hasDefinition "Process (read and / or write) massively parallel signature sequencing (MPSS) data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0530 a owl:Class ; + rdfs:label "SBS data processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2495 ; + oboInOwl:hasDefinition "Process (read and / or write) sequencing by synthesis (SBS) data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0531 a owl:Class ; + rdfs:label "Heat map generation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate a heat map of expression data from e.g. microarray data." ; + oboInOwl:hasExactSynonym "Heat map construction", + "Heatmap generation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "The heat map usually uses a coloring scheme to represent expression values. They can show how quantitative measurements were influenced by experimental conditions." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1636 ], + :operation_0571, + :operation_3429 . + +:operation_0532 a owl:Class ; + rdfs:label "Gene expression profile analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2495 ; + oboInOwl:hasDefinition "Analyse one or more gene expression profiles, typically to interpret them in functional terms." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0533 a owl:Class ; + rdfs:label "Expression profile pathway mapping" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Map an expression profile to known biological pathways, for example, to identify or reconstruct a pathway." ; + oboInOwl:hasExactSynonym "Pathway mapping" ; + oboInOwl:hasNarrowSynonym "Gene expression profile pathway mapping", + "Gene to pathway mapping", + "Gene-to-pathway mapping" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2984 ], + :operation_2429, + :operation_2495, + :operation_3928 . + +:operation_0534 a owl:Class ; + rdfs:label "Protein secondary structure assignment (from coordinate data)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.18" ; + :oldParent :operation_0319 ; + oboInOwl:hasDefinition "Assign secondary structure from protein coordinate data." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0319 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0535 a owl:Class ; + rdfs:label "Protein secondary structure assignment (from CD data)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.18" ; + :oldParent :operation_0319 ; + oboInOwl:hasDefinition "Assign secondary structure from circular dichroism (CD) spectroscopic data." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0319 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0536 a owl:Class ; + rdfs:label "Protein structure assignment (from X-ray crystallographic data)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.7" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Assign a protein tertiary structure (3D coordinates) from raw X-ray crystallography data." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0320 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0537 a owl:Class ; + rdfs:label "Protein structure assignment (from NMR data)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.7" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Assign a protein tertiary structure (3D coordinates) from raw NMR spectroscopy data." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0320 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0540 a owl:Class ; + rdfs:label "Phylogenetic inference (from molecular sequences)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Phylogenetic tree construction from molecular sequences." ; + oboInOwl:hasExactSynonym "Phylogenetic tree construction (from molecular sequences)", + "Phylogenetic tree generation (from molecular sequences)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods typically compare multiple molecular sequence and estimate evolutionary distances and relationships to infer gene families or make functional predictions." ; + rdfs:subClassOf :operation_0538, + :operation_2403 . + +:operation_0541 a owl:Class ; + rdfs:label "Phylogenetic inference (from continuous quantitative characters)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Phylogenetic tree construction from continuous quantitative character data." ; + oboInOwl:hasExactSynonym "Phylogenetic tree construction (from continuous quantitative characters)", + "Phylogenetic tree generation (from continuous quantitative characters)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_1426 ], + :operation_0538 . + +:operation_0542 a owl:Class ; + rdfs:label "Phylogenetic inference (from gene frequencies)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Phylogenetic tree construction from gene frequency data." ; + oboInOwl:hasExactSynonym "Phylogenetic tree construction (from gene frequencies)", + "Phylogenetic tree generation (from gene frequencies)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0203 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2873 ], + :operation_0538 . + +:operation_0543 a owl:Class ; + rdfs:label "Phylogenetic inference (from polymorphism data)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Phylogenetic tree construction from polymorphism data including microsatellites, RFLP (restriction fragment length polymorphisms), RAPD (random-amplified polymorphic DNA) and AFLP (amplified fragment length polymorphisms) data." ; + oboInOwl:hasExactSynonym "Phylogenetic tree construction (from polymorphism data)", + "Phylogenetic tree generation (from polymorphism data)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0199 ], + :operation_0538 . + +:operation_0544 a owl:Class ; + rdfs:label "Species tree construction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Construct a phylogenetic species tree, for example, from a genome-wide sequence comparison." ; + oboInOwl:hasExactSynonym "Phylogenetic species tree construction", + "Phylogenetic species tree generation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0323 . + +:operation_0545 a owl:Class ; + rdfs:label "Phylogenetic inference (parsimony methods)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Construct a phylogenetic tree by computing a sequence alignment and searching for the tree with the fewest number of character-state changes from the alignment." ; + oboInOwl:hasExactSynonym "Phylogenetic tree construction (parsimony methods)", + "Phylogenetic tree generation (parsimony methods)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes evolutionary parsimony (invariants) methods." ; + rdfs:subClassOf :operation_0539 . + +:operation_0546 a owl:Class ; + rdfs:label "Phylogenetic inference (minimum distance methods)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Construct a phylogenetic tree by computing (or using precomputed) distances between sequences and searching for the tree with minimal discrepancies between pairwise distances." ; + oboInOwl:hasExactSynonym "Phylogenetic tree construction (minimum distance methods)", + "Phylogenetic tree generation (minimum distance methods)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes neighbor joining (NJ) clustering method." ; + rdfs:subClassOf :operation_0539 . + +:operation_0547 a owl:Class ; + rdfs:label "Phylogenetic inference (maximum likelihood and Bayesian methods)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Construct a phylogenetic tree by relating sequence data to a hypothetical tree topology using a model of sequence evolution." ; + oboInOwl:hasExactSynonym "Phylogenetic tree construction (maximum likelihood and Bayesian methods)", + "Phylogenetic tree generation (maximum likelihood and Bayesian methods)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Maximum likelihood methods search for a tree that maximizes a likelihood function, i.e. that is most likely given the data and model. Bayesian analysis estimate the probability of tree for branch lengths and topology, typically using a Monte Carlo algorithm." ; + rdfs:subClassOf :operation_0539 . + +:operation_0548 a owl:Class ; + rdfs:label "Phylogenetic inference (quartet methods)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Construct a phylogenetic tree by computing four-taxon trees (4-trees) and searching for the phylogeny that matches most closely." ; + oboInOwl:hasExactSynonym "Phylogenetic tree construction (quartet methods)", + "Phylogenetic tree generation (quartet methods)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0539 . + +:operation_0549 a owl:Class ; + rdfs:label "Phylogenetic inference (AI methods)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Construct a phylogenetic tree by using artificial-intelligence methods, for example genetic algorithms." ; + oboInOwl:hasExactSynonym "Phylogenetic tree construction (AI methods)", + "Phylogenetic tree generation (AI methods)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0539 . + +:operation_0550 a owl:Class ; + rdfs:label "DNA substitution modelling" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify a plausible model of DNA substitution that explains a molecular (DNA or protein) sequence alignment." ; + oboInOwl:hasExactSynonym "Nucleotide substitution modelling" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1439 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0084 ], + :operation_0286, + :operation_2426 . + +:operation_0551 a owl:Class ; + rdfs:label "Phylogenetic tree topology analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse the shape (topology) of a phylogenetic tree." ; + oboInOwl:hasExactSynonym "Phylogenetic tree analysis (shape)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0324 . + +:operation_0552 a owl:Class ; + rdfs:label "Phylogenetic tree bootstrapping" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Apply bootstrapping or other measures to estimate confidence of a phylogenetic tree." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0324, + :operation_2428 . + +:operation_0553 a owl:Class ; + rdfs:label "Gene tree construction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Construct a \"gene tree\" which represents the evolutionary history of the genes included in the study. This can be used to predict families of genes and gene function based on their position in a phylogenetic tree." ; + oboInOwl:hasExactSynonym "Phylogenetic tree analysis (gene family prediction)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Gene trees can provide evidence for gene duplication events, as well as speciation events. Where sequences from different homologs are included in a gene tree, subsequent clustering of the orthologs can demonstrate evolutionary history of the orthologs." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0194 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0916 ], + :operation_0323 . + +:operation_0554 a owl:Class ; + rdfs:label "Allele frequency distribution analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse a phylogenetic tree to identify allele frequency distribution and change that is subject to evolutionary pressures (natural selection, genetic drift, mutation and gene flow). Identify type of natural selection (such as stabilizing, balancing or disruptive)." ; + oboInOwl:hasExactSynonym "Phylogenetic tree analysis (natural selection)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Stabilizing/purifying (directional) selection favors a single phenotype and tends to decrease genetic diversity as a population stabilizes on a particular trait, selecting out trait extremes or deleterious mutations. In contrast, balancing selection maintain genetic polymorphisms (or multiple alleles), whereas disruptive (or diversifying) selection favors individuals at both extremes of a trait." ; + rdfs:subClassOf :operation_0324 . + +:operation_0555 a owl:Class ; + rdfs:label "Consensus tree construction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare two or more phylogenetic trees to produce a consensus tree." ; + oboInOwl:hasExactSynonym "Phylogenetic tree construction (consensus)", + "Phylogenetic tree generation (consensus)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods typically test for topological similarity between trees using for example a congruence index." ; + rdfs:subClassOf :operation_0323, + :operation_0325 . + +:operation_0556 a owl:Class ; + rdfs:label "Phylogenetic sub/super tree construction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare two or more phylogenetic trees to detect subtrees or supertrees." ; + oboInOwl:hasExactSynonym "Phylogenetic sub/super tree detection" ; + oboInOwl:hasNarrowSynonym "Subtree construction", + "Supertree construction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0325 . + +:operation_0557 a owl:Class ; + rdfs:label "Phylogenetic tree distances calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare two or more phylogenetic trees to calculate distances between trees." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1442 ], + :operation_0325 . + +:operation_0558 a owl:Class ; + rdfs:label "Phylogenetic tree annotation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Annotate a phylogenetic tree with terms from a controlled vocabulary." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso "http://www.evolutionaryontology.org/cdao.owl#CDAOAnnotation" ; + rdfs:subClassOf :operation_0226 . + +:operation_0559 a owl:Class ; + rdfs:label "Immunogenicity prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Predict and optimise peptide ligands that elicit an immunological response." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0252 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0560 a owl:Class ; + rdfs:label "DNA vaccine design" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict or optimise DNA to elicit (via DNA vaccination) an immunological response." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0804 ], + :operation_3095 . + +:operation_0561 a owl:Class ; + rdfs:label "Sequence formatting" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Reformat (a file or other report of) molecular sequence(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0335 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0562 a owl:Class ; + rdfs:label "Sequence alignment formatting" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Reformat (a file or other report of) molecular sequence alignment(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0335 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0563 a owl:Class ; + rdfs:label "Codon usage table formatting" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Reformat a codon usage table." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0335 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0565 a owl:Class ; + rdfs:label "Sequence alignment visualisation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.15" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Visualise, format or print a molecular sequence alignment." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0564 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0566 a owl:Class ; + rdfs:label "Sequence cluster visualisation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Visualise, format or render sequence clusters." ; + oboInOwl:hasExactSynonym "Sequence cluster rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_1235 ], + :operation_0337 . + +:operation_0567 a owl:Class ; + rdfs:label "Phylogenetic tree visualisation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Render or visualise a phylogenetic tree." ; + oboInOwl:hasExactSynonym "Phylogenetic tree rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0872 ], + :operation_0324, + :operation_0337 . + +:operation_0568 a owl:Class ; + rdfs:label "RNA secondary structure visualisation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.15" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Visualise RNA secondary structure, knots, pseudoknots etc." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0570 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0569 a owl:Class ; + rdfs:label "Protein secondary structure visualisation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.15" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Render and visualise protein secondary structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0570 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0572 a owl:Class ; + rdfs:label "Protein interaction network visualisation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_3083 ; + oboInOwl:hasDefinition "Identify and analyse networks of protein interactions." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3925 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0574 a owl:Class ; + rdfs:label "Sequence motif rendering" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0564 ; + oboInOwl:hasDefinition "Render a sequence with motifs." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0577 a owl:Class ; + rdfs:label "DNA linear map rendering" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0573 ; + oboInOwl:hasDefinition "Draw a linear maps of DNA." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0578 a owl:Class ; + rdfs:label "Plasmid map drawing" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasBroadSynonym "DNA circular map rendering" ; + oboInOwl:hasDefinition "Draw a circular maps of DNA, for example a plasmid map." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0573 . + +:operation_0579 a owl:Class ; + rdfs:label "Operon drawing" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Visualise operon structure etc." ; + oboInOwl:hasExactSynonym "Operon rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0114 ], + :operation_0573 . + +:operation_1768 a owl:Class ; + rdfs:label "Nucleic acid folding family identification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0483 ; + oboInOwl:hasDefinition "Identify folding families of related RNAs." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1769 a owl:Class ; + rdfs:label "Nucleic acid folding energy calculation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.20" ; + :oldParent :operation_0279 ; + oboInOwl:hasDefinition "Compute energies of nucleic acid folding, e.g. minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0279 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1774 a owl:Class ; + rdfs:label "Annotation retrieval" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Retrieve existing annotation (or documentation), typically annotation on a database entity." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Use this concepts for tools which retrieve pre-existing annotations, not for example prediction methods that might make annotations." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1778 a owl:Class ; + rdfs:label "Protein function comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare the functional properties of two or more proteins." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1775 ], + :operation_1777, + :operation_2997 . + +:operation_1780 a owl:Class ; + rdfs:label "Sequence submission" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_3431 ; + oboInOwl:hasDefinition "Submit a molecular sequence to a database." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1812 a owl:Class ; + rdfs:label "Parsing" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF:UploadPDB" ; + oboInOwl:hasDefinition "Parse, prepare or load a user-specified data file so that it is available for use." ; + oboInOwl:hasExactSynonym "Data loading", + "Loading" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2409 . + +:operation_1813 a owl:Class ; + rdfs:label "Sequence retrieval" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Query a sequence data resource (typically a database) and retrieve sequences and / or annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This includes direct retrieval methods (e.g. the dbfetch program) but not those that perform calculations on the sequence." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1814 a owl:Class ; + rdfs:label "Structure retrieval" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDbXref "WHATIF:DownloadPDB", + "WHATIF:EchoPDB" ; + oboInOwl:hasDefinition "Query a tertiary structure data resource (typically a database) and retrieve structures, structure-related data and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This includes direct retrieval methods but not those that perform calculations on the sequence or structure." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1816 a owl:Class ; + rdfs:label "Surface rendering" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF:GetSurfaceDots" ; + oboInOwl:hasDefinition "Calculate the positions of dots that are homogeneously distributed over the surface of a molecule." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "A dot has three coordinates (x,y,z) and (typically) a color." ; + rdfs:subClassOf :operation_0570, + :operation_3351 . + +:operation_1817 a owl:Class ; + rdfs:label "Protein atom surface calculation (accessible)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible surface') for each atom in a structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0387 ; + rdfs:comment "Waters are not considered." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1818 a owl:Class ; + rdfs:label "Protein atom surface calculation (accessible molecular)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for each atom in a structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0387 ; + rdfs:comment "Waters are not considered." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1819 a owl:Class ; + rdfs:label "Protein residue surface calculation (accessible)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible surface') for each residue in a structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0387 ; + rdfs:comment "Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain)." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1820 a owl:Class ; + rdfs:label "Protein residue surface calculation (vacuum accessible)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate the solvent accessibility ('vacuum accessible surface') for each residue in a structure. This is the accessibility of the residue when taken out of the protein together with the backbone atoms of any residue it is covalently bound to." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0387 ; + rdfs:comment "Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain)." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1821 a owl:Class ; + rdfs:label "Protein residue surface calculation (accessible molecular)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for each residue in a structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0387 ; + rdfs:comment "Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain)." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1822 a owl:Class ; + rdfs:label "Protein residue surface calculation (vacuum molecular)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate the solvent accessibility ('vacuum molecular surface') for each residue in a structure. This is the accessibility of the residue when taken out of the protein together with the backbone atoms of any residue it is covalently bound to." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0387 ; + rdfs:comment "Solvent accessibility might be calculated for the backbone, sidechain and total (backbone plus sidechain)." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1823 a owl:Class ; + rdfs:label "Protein surface calculation (accessible molecular)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible molecular surface') for a structure as a whole." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0387 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1824 a owl:Class ; + rdfs:label "Protein surface calculation (accessible)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate the solvent accessibility ('accessible surface') for a structure as a whole." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0387 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1825 a owl:Class ; + rdfs:label "Backbone torsion angle calculation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate for each residue in a protein structure all its backbone torsion angles." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0249 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1826 a owl:Class ; + rdfs:label "Full torsion angle calculation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate for each residue in a protein structure all its torsion angles." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0249 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1827 a owl:Class ; + rdfs:label "Cysteine torsion angle calculation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate for each cysteine (bridge) all its torsion angles." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0249 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1828 a owl:Class ; + rdfs:label "Tau angle calculation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "For each amino acid in a protein structure calculate the backbone angle tau." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0249 ; + rdfs:comment "Tau is the backbone angle N-Calpha-C (angle over the C-alpha)." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1829 a owl:Class ; + rdfs:label "Cysteine bridge detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF:ShowCysteineBridge" ; + oboInOwl:hasDefinition "Detect cysteine bridges (from coordinate data) in a protein structure." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_1850 . + +:operation_1830 a owl:Class ; + rdfs:label "Free cysteine detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF:ShowCysteineFree" ; + oboInOwl:hasDefinition "Detect free cysteines in a protein structure." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "A free cysteine is neither involved in a cysteine bridge, nor functions as a ligand to a metal." ; + rdfs:subClassOf :operation_1850 . + +:operation_1831 a owl:Class ; + rdfs:label "Metal-bound cysteine detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF:ShowCysteineMetal" ; + oboInOwl:hasDefinition "Detect cysteines that are bound to metal in a protein structure." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0248, + :operation_1850 . + +:operation_1832 a owl:Class ; + rdfs:label "Residue contact calculation (residue-nucleic acid)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate protein residue contacts with nucleic acids in a structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2950 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1834 a owl:Class ; + rdfs:label "Protein-metal contact calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate protein residue contacts with metal in a structure." ; + oboInOwl:hasExactSynonym "Residue-metal contact calculation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0248 . + +:operation_1835 a owl:Class ; + rdfs:label "Residue contact calculation (residue-negative ion)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate ion contacts in a structure (all ions for all side chain atoms)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2950 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1836 a owl:Class ; + rdfs:label "Residue bump detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF:ShowBumps" ; + oboInOwl:hasDefinition "Detect 'bumps' between residues in a structure, i.e. those with pairs of atoms whose Van der Waals' radii interpenetrate more than a defined distance." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0321 . + +:operation_1837 a owl:Class ; + rdfs:label "Residue symmetry contact calculation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDbXref "WHATIF:SymmetryContact" ; + oboInOwl:hasDefinition "Calculate the number of symmetry contacts made by residues in a protein structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2950 ; + rdfs:comment "A symmetry contact is a contact between two atoms in different asymmetric unit." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1838 a owl:Class ; + rdfs:label "Residue contact calculation (residue-ligand)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate contacts between residues and ligands in a protein structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2950 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1839 a owl:Class ; + rdfs:label "Salt bridge calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF:HasSaltBridge", + "WHATIF:HasSaltBridgePlus", + "WHATIF:ShowSaltBridges", + "WHATIF:ShowSaltBridgesH" ; + oboInOwl:hasDefinition "Calculate (and possibly score) salt bridges in a protein structure." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Salt bridges are interactions between oppositely charged atoms in different residues. The output might include the inter-atomic distance." ; + rdfs:subClassOf :operation_0248 . + +:operation_1841 a owl:Class ; + rdfs:label "Rotamer likelihood prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDbXref "WHATIF:ShowLikelyRotamers", + "WHATIF:ShowLikelyRotamers100", + "WHATIF:ShowLikelyRotamers200", + "WHATIF:ShowLikelyRotamers300", + "WHATIF:ShowLikelyRotamers400", + "WHATIF:ShowLikelyRotamers500", + "WHATIF:ShowLikelyRotamers600", + "WHATIF:ShowLikelyRotamers700", + "WHATIF:ShowLikelyRotamers800", + "WHATIF:ShowLikelyRotamers900" ; + oboInOwl:hasDefinition "Predict rotamer likelihoods for all 20 amino acid types at each position in a protein structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0480 ; + rdfs:comment "Output typically includes, for each residue position, the likelihoods for the 20 amino acid types with estimated reliability of the 20 likelihoods." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1842 a owl:Class ; + rdfs:label "Proline mutation value calculation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDbXref "WHATIF:ProlineMutationValue" ; + oboInOwl:hasDefinition "Calculate for each position in a protein structure the chance that a proline, when introduced at this position, would increase the stability of the whole protein." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0331 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1843 a owl:Class ; + rdfs:label "Residue packing validation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF: PackingQuality" ; + oboInOwl:hasDefinition "Identify poorly packed residues in protein structures." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0321 . + +:operation_1845 a owl:Class ; + rdfs:label "PDB file sequence retrieval" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDbXref "WHATIF: PDB_sequence" ; + oboInOwl:hasDefinition "Extract a molecular sequence from a PDB file." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2422 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1846 a owl:Class ; + rdfs:label "HET group detection" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Identify HET groups in PDB files." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2950 ; + rdfs:comment "A HET group usually corresponds to ligands, lipids, but might also (not consistently) include groups that are attached to amino acids. Each HET group is supposed to have a unique three letter code and a unique name which might be given in the output." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1847 a owl:Class ; + rdfs:label "DSSP secondary structure assignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0319 ; + oboInOwl:hasDefinition "Determine for residue the DSSP determined secondary structure in three-state (HSC)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1848 a owl:Class ; + rdfs:label "Structure formatting" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDbXref "WHATIF: PDBasXML" ; + oboInOwl:hasDefinition "Reformat (a file or other report of) tertiary structure data." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0335 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1913 a owl:Class ; + rdfs:label "Residue validation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Identify poor quality amino acid positions in protein structures." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0321 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_1914 a owl:Class ; + rdfs:label "Structure retrieval (water)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDbXref "WHATIF:MovedWaterPDB" ; + oboInOwl:hasDefinition "Query a tertiary structure database and retrieve water molecules." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2008 a owl:Class ; + rdfs:label "siRNA duplex prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify or predict siRNA duplexes in RNA." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0659 ], + :operation_0443 . + +:operation_2089 a owl:Class ; + rdfs:label "Sequence alignment refinement" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Refine an existing sequence alignment." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0258, + :operation_2425 . + +:operation_2120 a owl:Class ; + rdfs:label "Listfile processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2409 ; + oboInOwl:hasDefinition "Process an EMBOSS listfile (list of EMBOSS Uniform Sequence Addresses)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2121 a owl:Class ; + rdfs:label "Sequence file editing" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Perform basic (non-analytical) operations on a report or file of sequences (which might include features), such as file concatenation, removal or ordering of sequences, creation of subset or a new file of sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0231, + :operation_2403 . + +:operation_2122 a owl:Class ; + rdfs:label "Sequence alignment file processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2409 ; + oboInOwl:hasDefinition "Perform basic (non-analytical) operations on a sequence alignment file, such as copying or removal and ordering of sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2123 a owl:Class ; + rdfs:label "Small molecule data processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2480 ; + oboInOwl:hasDefinition "Process (read and / or write) physicochemical property data for small molecules." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2222 a owl:Class ; + rdfs:label "Data retrieval (ontology annotation)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Search and retrieve documentation on a bioinformatics ontology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2224 a owl:Class ; + rdfs:label "Data retrieval (ontology concept)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Query an ontology and retrieve concepts or relations." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2233 a owl:Class ; + rdfs:label "Representative sequence identification" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify a representative sequence from a set of sequences, typically using scores from pair-wise alignment or other comparison of the sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2451 . + +:operation_2234 a owl:Class ; + rdfs:label "Structure file processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2409 ; + oboInOwl:hasDefinition "Perform basic (non-analytical) operations on a file of molecular tertiary structural data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2237 a owl:Class ; + rdfs:label "Data retrieval (sequence profile)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Query a profile data resource and retrieve one or more profile(s) and / or associated annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This includes direct retrieval methods that retrieve a profile by, e.g. the profile name." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2239 a owl:Class ; + rdfs:label "3D-1D scoring matrix generation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate a 3D-1D scoring matrix from analysis of protein sequence and structural data." ; + oboInOwl:hasExactSynonym "3D-1D scoring matrix construction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "A 3D-1D scoring matrix scores the probability of amino acids occurring in different structural environments." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0081 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1499 ], + :operation_0250, + :operation_3429 . + +:operation_2241 a owl:Class ; + rdfs:label "Transmembrane protein visualisation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Visualise transmembrane proteins, typically the transmembrane regions within a sequence." ; + oboInOwl:hasExactSynonym "Transmembrane protein rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2992 ], + :operation_0270, + :operation_0570 . + +:operation_2246 a owl:Class ; + rdfs:label "Demonstration" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0004 ; + oboInOwl:hasDefinition "An operation performing purely illustrative (pedagogical) purposes." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2264 a owl:Class ; + rdfs:label "Data retrieval (pathway or network)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Query a biological pathways database and retrieve annotation on one or more pathways." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2265 a owl:Class ; + rdfs:label "Data retrieval (identifier)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Query a database and retrieve one or more data identifiers." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2284 a owl:Class ; + rdfs:label "Nucleic acid density plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate a density plot (of base composition) for a nucleotide sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0236, + :operation_0564 . + +:operation_2405 a owl:Class ; + rdfs:label "Protein interaction data processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2949 ; + oboInOwl:hasDefinition "Process (read and / or write) protein interaction data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2407 a owl:Class ; + rdfs:label "Annotation processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Process (read and / or write) annotation of some type, typically annotation on an entry from a biological or biomedical database entity." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2408 a owl:Class ; + rdfs:label "Sequence feature analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0253 ; + oboInOwl:hasDefinition "Analyse features in molecular sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2410 a owl:Class ; + rdfs:label "Gene expression analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2495 ; + oboInOwl:hasDefinition "Analyse gene expression and regulation data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2411 a owl:Class ; + rdfs:label "Structural profile processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0297 ; + oboInOwl:hasDefinition "Process (read and / or write) one or more structural (3D) profile(s) or template(s) of some type." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2412 a owl:Class ; + rdfs:label "Data index processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0227 ; + oboInOwl:hasDefinition "Process (read and / or write) an index of (typically a file of) biological data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2413 a owl:Class ; + rdfs:label "Sequence profile processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0296 ; + oboInOwl:hasDefinition "Process (read and / or write) some type of sequence profile." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2414 a owl:Class ; + rdfs:label "Protein function analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.22" ; + :oldParent :operation_2945 ; + oboInOwl:hasDefinition "Analyse protein function, typically by processing protein sequence and/or structural data, and generate an informative report." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_1777 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2417 a owl:Class ; + rdfs:label "Physicochemical property data processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2945 ; + oboInOwl:hasDefinition "Process (read and / or write) data on the physicochemical property of a molecule." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2420 a owl:Class ; + rdfs:label "Operation (typed)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Process (read and / or write) data of a specific type, for example applying analytical methods." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2945 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2427 a owl:Class ; + rdfs:label "Data handling" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Perform basic operations on some data or a database." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2409 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2432 a owl:Class ; + rdfs:label "Microarray data processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2495 ; + oboInOwl:hasDefinition "Process (read and / or write) microarray data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2433 a owl:Class ; + rdfs:label "Codon usage table processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.18" ; + :oldParent :operation_0286 ; + oboInOwl:consider :operation_0284, + :operation_0285 ; + oboInOwl:hasDefinition "Process (read and / or write) a codon usage table." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2434 a owl:Class ; + rdfs:label "Data retrieval (codon usage table)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Retrieve a codon usage table and / or associated annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2435 a owl:Class ; + rdfs:label "Gene expression profile processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2495 ; + oboInOwl:hasDefinition "Process (read and / or write) a gene expression profile." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2438 a owl:Class ; + rdfs:label "Pathway or network processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_3927, + :operation_3928 ; + oboInOwl:hasDefinition "Generate, analyse or handle a biological pathway or network." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2440 a owl:Class ; + rdfs:label "Structure processing (RNA)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Process (read and / or write) RNA tertiary structure data." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2480 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2441 a owl:Class ; + rdfs:label "RNA structure prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict RNA tertiary structure." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1465 ], + :operation_0475 . + +:operation_2442 a owl:Class ; + rdfs:label "DNA structure prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict DNA tertiary structure." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1464 ], + :operation_0475 . + +:operation_2443 a owl:Class ; + rdfs:label "Phylogenetic tree processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Generate, process or analyse phylogenetic tree or trees." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0324 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2444 a owl:Class ; + rdfs:label "Protein secondary structure processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2416 ; + oboInOwl:hasDefinition "Process (read and / or write) protein secondary structure data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2445 a owl:Class ; + rdfs:label "Protein interaction network processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0276 ; + oboInOwl:hasDefinition "Process (read and / or write) a network of protein interactions." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2446 a owl:Class ; + rdfs:label "Sequence processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2403 ; + oboInOwl:hasDefinition "Process (read and / or write) one or more molecular sequences and associated annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2447 a owl:Class ; + rdfs:label "Sequence processing (protein)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Process (read and / or write) a protein sequence and associated annotation." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2479 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2448 a owl:Class ; + rdfs:label "Sequence processing (nucleic acid)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2478 ; + oboInOwl:hasDefinition "Process (read and / or write) a nucleotide sequence and associated annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2452 a owl:Class ; + rdfs:label "Sequence cluster processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0291 ; + oboInOwl:hasDefinition "Process (read and / or write) a sequence cluster." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2453 a owl:Class ; + rdfs:label "Feature table processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2403 ; + oboInOwl:hasDefinition "Process (read and / or write) a sequence feature table." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2456 a owl:Class ; + rdfs:label "GPCR classification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.16" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Classify G-protein coupled receptors (GPCRs) into families and subfamilies." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2995 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2457 a owl:Class ; + rdfs:label "GPCR coupling selectivity prediction" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "Not sustainable to have protein type-specific concepts." ; + :obsolete_since "1.19" ; + :oldParent :operation_0473 ; + oboInOwl:consider :operation_0269 ; + oboInOwl:hasDefinition "Predict G-protein coupled receptor (GPCR) coupling selectivity." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2459 a owl:Class ; + rdfs:label "Structure processing (protein)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Process (read and / or write) a protein tertiary structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2406 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2460 a owl:Class ; + rdfs:label "Protein atom surface calculation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate the solvent accessibility for each atom in a structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0387 ; + rdfs:comment "Waters are not considered." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2461 a owl:Class ; + rdfs:label "Protein residue surface calculation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate the solvent accessibility for each residue in a structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0387 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2462 a owl:Class ; + rdfs:label "Protein surface calculation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate the solvent accessibility of a structure as a whole." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0387 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2463 a owl:Class ; + rdfs:label "Sequence alignment processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0292 ; + oboInOwl:hasDefinition "Process (read and / or write) a molecular sequence alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2465 a owl:Class ; + rdfs:label "Structure processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2480 ; + oboInOwl:hasDefinition "Process (read and / or write) a molecular tertiary structure." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2466 a owl:Class ; + rdfs:label "Map annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0362 ; + oboInOwl:hasDefinition "Annotate a DNA map of some type with terms from a controlled vocabulary." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2467 a owl:Class ; + rdfs:label "Data retrieval (protein annotation)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Retrieve information on a protein." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2468 a owl:Class ; + rdfs:label "Data retrieval (phylogenetic tree)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Retrieve a phylogenetic tree from a data resource." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2469 a owl:Class ; + rdfs:label "Data retrieval (protein interaction annotation)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Retrieve information on a protein interaction." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2470 a owl:Class ; + rdfs:label "Data retrieval (protein family annotation)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Retrieve information on a protein family." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2471 a owl:Class ; + rdfs:label "Data retrieval (RNA family annotation)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Retrieve information on an RNA family." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2472 a owl:Class ; + rdfs:label "Data retrieval (gene annotation)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Retrieve information on a specific gene." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2473 a owl:Class ; + rdfs:label "Data retrieval (genotype and phenotype annotation)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2422 ; + oboInOwl:hasDefinition "Retrieve information on a specific genotype or phenotype." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2474 a owl:Class ; + rdfs:label "Protein architecture comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare the architecture of two or more protein structures." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0247, + :operation_2997 . + +:operation_2475 a owl:Class ; + rdfs:label "Protein architecture recognition" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify the architecture of a protein structure." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Includes methods that try to suggest the most likely biological unit for a given protein X-ray crystal structure based on crystal symmetry and scoring of putative protein-protein interfaces." ; + rdfs:subClassOf :operation_0247, + :operation_2423, + :operation_2996 . + +:operation_2476 a owl:Class ; + rdfs:label "Molecular dynamics" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation." ; + oboInOwl:hasExactSynonym "Molecular dynamics simulation" ; + oboInOwl:hasNarrowSynonym "Protein dynamics" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0176 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0082 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0883 ], + :operation_2423, + :operation_2426, + :operation_2480 . + +:operation_2482 a owl:Class ; + rdfs:label "Secondary structure processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2480 ; + oboInOwl:hasDefinition "Process (read and / or write) a molecular secondary structure." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2485 a owl:Class ; + rdfs:label "Helical wheel drawing" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Render a helical wheel representation of protein secondary structure." ; + oboInOwl:hasExactSynonym "Helical wheel rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2162 ], + :operation_0570 . + +:operation_2486 a owl:Class ; + rdfs:label "Topology diagram drawing" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Render a topology diagram of protein secondary structure." ; + oboInOwl:hasExactSynonym "Topology diagram rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2992 ], + :operation_0570 . + +:operation_2489 a owl:Class ; + rdfs:label "Subcellular localisation prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict the subcellular localisation of a protein sequence." ; + oboInOwl:hasExactSynonym "Protein cellular localization prediction", + "Protein subcellular localisation prediction", + "Protein targeting prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "The prediction might include subcellular localisation (nuclear, cytoplasmic, mitochondrial, chloroplast, plastid, membrane etc) or export (extracellular proteins) of a protein." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0140 ], + :operation_1777 . + +:operation_2490 a owl:Class ; + rdfs:label "Residue contact calculation (residue-residue)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Calculate contacts between residues in a protein structure." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2950 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2491 a owl:Class ; + rdfs:label "Hydrogen bond calculation (inter-residue)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Identify potential hydrogen bonds between amino acid residues." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0394 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2492 a owl:Class ; + rdfs:label "Protein interaction prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict the interactions of proteins with other proteins." ; + oboInOwl:hasExactSynonym "Protein-protein interaction detection" ; + oboInOwl:hasNarrowSynonym "Protein-protein binding prediction", + "Protein-protein interaction prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0128 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0906 ], + :operation_2949 . + +:operation_2493 a owl:Class ; + rdfs:label "Codon usage data processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0286 ; + oboInOwl:hasDefinition "Process (read and / or write) codon usage data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2496 a owl:Class ; + rdfs:label "Gene regulatory network processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Process (read and / or write) a network of gene regulation." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_1781 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2498 a owl:Class ; + rdfs:label "Sequencing-based expression profile data analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2495 ; + oboInOwl:hasDefinition "Analyse SAGE, MPSS or SBS experimental data, typically to identify or quantify mRNA transcripts." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2500 a owl:Class ; + rdfs:label "Microarray raw data analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2495 ; + oboInOwl:hasDefinition "Analyse raw microarray data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2503 a owl:Class ; + rdfs:label "Sequence data processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Process (read and / or write) molecular sequence data." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2403 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2504 a owl:Class ; + rdfs:label "Structural data processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2480 ; + oboInOwl:hasDefinition "Process (read and / or write) molecular structural data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2505 a owl:Class ; + rdfs:label "Text processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0306, + :operation_3778 ; + oboInOwl:hasDefinition "Process (read and / or write) text." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2506 a owl:Class ; + rdfs:label "Protein sequence alignment analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.18" ; + :oldParent :operation_0258, + :operation_2502, + :operation_3023 ; + oboInOwl:hasDefinition "Analyse a protein sequence alignment, typically to detect features or make predictions." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2479 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2507 a owl:Class ; + rdfs:label "Nucleic acid sequence alignment analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.18" ; + :oldParent :operation_0258, + :operation_2501, + :operation_3024 ; + oboInOwl:hasDefinition "Analyse a protein sequence alignment, typically to detect features or make predictions." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2478 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2508 a owl:Class ; + rdfs:label "Nucleic acid sequence comparison" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.18" ; + :oldParent :operation_2451, + :operation_2478, + :operation_2998 ; + oboInOwl:hasDefinition "Compare two or more nucleic acid sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2451 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2509 a owl:Class ; + rdfs:label "Protein sequence comparison" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.18" ; + :oldParent :operation_2451 ; + oboInOwl:hasDefinition "Compare two or more protein sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2451 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2510 a owl:Class ; + rdfs:label "DNA back-translation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Back-translate a protein sequence into DNA." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0108 ], + :operation_0233 . + +:operation_2511 a owl:Class ; + rdfs:label "Sequence editing (nucleic acid)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Edit or change a nucleic acid sequence, either randomly or specifically." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0231 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2512 a owl:Class ; + rdfs:label "Sequence editing (protein)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Edit or change a protein sequence, either randomly or specifically." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0231 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2513 a owl:Class ; + rdfs:label "Sequence generation (nucleic acid)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.22" ; + :oldParent :operation_0230 ; + oboInOwl:hasDefinition "Generate a nucleic acid sequence by some means." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0230 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2514 a owl:Class ; + rdfs:label "Sequence generation (protein)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.22" ; + :oldParent :operation_0230 ; + oboInOwl:hasDefinition "Generate a protein sequence by some means." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0230 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2515 a owl:Class ; + rdfs:label "Nucleic acid sequence visualisation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Visualise, format or render a nucleic acid sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0564 ; + rdfs:comment "Various nucleic acid sequence analysis methods might generate a sequence rendering but are not (for brevity) listed under here." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2516 a owl:Class ; + rdfs:label "Protein sequence visualisation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Visualise, format or render a protein sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0564 ; + rdfs:comment "Various protein sequence analysis methods might generate a sequence rendering but are not (for brevity) listed under here." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2519 a owl:Class ; + rdfs:label "Structure processing (nucleic acid)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2481 ; + oboInOwl:hasDefinition "Process (read and / or write) nucleic acid tertiary structure data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2521 a owl:Class ; + rdfs:label "Map data processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2520 ; + oboInOwl:hasDefinition "Process (read and / or write) a DNA map of some type." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2844 a owl:Class ; + rdfs:label "Structure clustering" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Build clusters of similar structures, typically using scores from structural alignment methods." ; + oboInOwl:hasExactSynonym "Structural clustering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3432 . + +:operation_2871 a owl:Class ; + rdfs:label "Sequence tagged site (STS) mapping" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate a physical DNA map (sequence map) from analysis of sequence tagged sites (STS)." ; + oboInOwl:hasExactSynonym "Sequence mapping" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "An STS is a short subsequence of known sequence and location that occurs only once in the chromosome or genome that is being mapped. Sources of STSs include 1. expressed sequence tags (ESTs), simple sequence length polymorphisms (SSLPs), and random genomic sequences from cloned genomic DNA or database sequences." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1279 ], + :operation_2944 . + +:operation_2931 a owl:Class ; + rdfs:label "Secondary structure comparison" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.18" ; + :oldParent :operation_2424 ; + oboInOwl:consider :operation_2487, + :operation_2518 ; + oboInOwl:hasDefinition "Compare two or more molecular secondary structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2932 a owl:Class ; + rdfs:label "Hopp and Woods plotting" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Generate a Hopp and Woods plot of antigenicity of a protein." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0252 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2934 a owl:Class ; + rdfs:label "Cluster textual view generation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_0337 ; + oboInOwl:hasDefinition "Generate a view of clustered quantitative data, annotated with textual information." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2938 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2935 a owl:Class ; + rdfs:label "Clustering profile plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Visualise clustered quantitative data as set of different profiles, where each profile is plotted versus different entities or samples on the X-axis." ; + oboInOwl:hasExactSynonym "Clustered quantitative data plotting", + "Clustered quantitative data rendering", + "Wave graph plotting" ; + oboInOwl:hasNarrowSynonym "Microarray cluster temporal graph rendering", + "Microarray wave graph plotting", + "Microarray wave graph rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "In the case of microarray data, visualise clustered gene expression data as a set of profiles, where each profile shows the gene expression values of a cluster across samples on the X-axis." ; + rdfs:subClassOf :operation_0571 . + +:operation_2936 a owl:Class ; + rdfs:label "Dendrograph plotting" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_0571 ; + oboInOwl:hasDefinition "Generate a dendrograph of raw, preprocessed or clustered expression (e.g. microarray) data." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2938 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2937 a owl:Class ; + rdfs:label "Proximity map plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate a plot of distances (distance or correlation matrix) between expression values." ; + oboInOwl:hasExactSynonym "Distance map rendering", + "Distance matrix plotting", + "Distance matrix rendering", + "Proximity map rendering" ; + oboInOwl:hasNarrowSynonym "Correlation matrix plotting", + "Correlation matrix rendering", + "Microarray distance map rendering", + "Microarray proximity map plotting", + "Microarray proximity map rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0571 . + +:operation_2939 a owl:Class ; + rdfs:label "Principal component visualisation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Visualize the results of a principal component analysis (orthogonal data transformation). For example, visualization of the principal components (essential subspace) coming from a Principal Component Analysis (PCA) on the trajectory atomistic coordinates of a molecular structure." ; + oboInOwl:hasExactSynonym "PCA plotting", + "Principal component plotting" ; + oboInOwl:hasNarrowSynonym "ED visualization", + "Essential Dynamics visualization", + "Microarray principal component plotting", + "Microarray principal component rendering", + "PCA visualization", + "Principal modes visualization" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Examples for visualization are the distribution of variance over the components, loading and score plots.", + "The use of Principal Component Analysis (PCA), a multivariate statistical analysis to obtain collective variables on the atomic positional fluctuations, helps to separate the configurational space in two subspaces: an essential subspace containing relevant motions, and another one containing irrelevant local fluctuations." ; + rdfs:subClassOf :operation_0337 . + +:operation_2940 a owl:Class ; + rdfs:label "Scatter plot plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Render a graph in which the values of two variables are plotted along two axes; the pattern of the points reveals any correlation." ; + oboInOwl:hasExactSynonym "Scatter chart plotting" ; + oboInOwl:hasNarrowSynonym "Microarray scatter plot plotting", + "Microarray scatter plot rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Comparison of two sets of quantitative data such as two samples of gene expression values." ; + rdfs:subClassOf :operation_0337 . + +:operation_2941 a owl:Class ; + rdfs:label "Whole microarray graph plotting" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.18" ; + :oldParent :operation_0571 ; + oboInOwl:hasDefinition "Visualise gene expression data where each band (or line graph) corresponds to a sample." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0571 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2942 a owl:Class ; + rdfs:label "Treemap visualisation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Visualise gene expression data after hierarchical clustering for representing hierarchical relationships." ; + oboInOwl:hasExactSynonym "Expression data tree-map rendering", + "Treemapping" ; + oboInOwl:hasNarrowSynonym "Microarray tree-map rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0571 . + +:operation_2943 a owl:Class ; + rdfs:label "Box-Whisker plot plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate a box plot, i.e. a depiction of groups of numerical data through their quartiles." ; + oboInOwl:hasExactSynonym "Box plot plotting" ; + oboInOwl:hasNarrowSynonym "Microarray Box-Whisker plot plotting" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "In the case of micorarray data, visualise raw and pre-processed gene expression data, via a plot showing over- and under-expression along with mean, upper and lower quartiles." ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0337 . + +:operation_2946 a owl:Class ; + rdfs:label "Alignment analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2928 ; + oboInOwl:hasDefinition "Process or analyse an alignment of molecular sequences or structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2947 a owl:Class ; + rdfs:label "Article analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.16" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0306, + :operation_3778 ; + oboInOwl:hasDefinition "Analyse a body of scientific text (typically a full text article from a scientific journal)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2948 a owl:Class ; + rdfs:label "Molecular interaction analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2949 ; + oboInOwl:hasDefinition "Analyse the interactions of two or more molecules (or parts of molecules) that are known to interact." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2951 a owl:Class ; + rdfs:label "Alignment processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0292, + :operation_0295 ; + oboInOwl:hasDefinition "Process (read and / or write) an alignment of two or more molecular sequences, structures or derived data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2952 a owl:Class ; + rdfs:label "Structure alignment processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0295 ; + oboInOwl:hasDefinition "Process (read and / or write) a molecular tertiary (3D) structure alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2963 a owl:Class ; + rdfs:label "Codon usage bias plotting" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.22" ; + :oldParent :operation_2962 ; + oboInOwl:hasDefinition "Generate a codon usage bias plot." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2962 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2964 a owl:Class ; + rdfs:label "Codon usage fraction calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate the differences in codon usage fractions between two sequences, sets of sequences, codon usage tables etc." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1602 ], + :operation_0286 . + +:operation_2993 a owl:Class ; + rdfs:label "Molecular interaction data processing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2949 ; + oboInOwl:hasDefinition "Process (read and / or write) molecular interaction data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3080 a owl:Class ; + rdfs:label "Structure editing" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Edit, convert or otherwise change a molecular tertiary structure, either randomly or specifically." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0883 ], + :operation_3096 . + +:operation_3084 a owl:Class ; + rdfs:label "Protein function prediction (from sequence)" ; + :created_in "beta13" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_1777 ; + oboInOwl:hasDefinition "Predict general (non-positional) functional properties of a protein from analysing its sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "For functional properties that are positional, use 'Protein site detection' instead." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3087 a owl:Class ; + rdfs:label "Protein sequence feature detection" ; + :created_in "beta13" ; + :deprecation_comment "(jison)This is a distinction made on basis of input; all features exist can be mapped to a sequence so this isn't needed (consolidate with \"Protein feature detection\")." ; + :obsolete_since "1.17" ; + :oldParent :operation_0253, + :operation_2479, + :operation_3092 ; + oboInOwl:hasDefinition "Predict, recognise and identify functional or other key sites within protein sequences, typically by scanning for known motifs, patterns and regular expressions." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3092 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3088 a owl:Class ; + rdfs:label "Protein property calculation (from sequence)" ; + :created_in "beta13" ; + :obsolete_since "1.18" ; + :oldParent :operation_0250, + :operation_2479 ; + oboInOwl:hasDefinition "Calculate (or predict) physical or chemical properties of a protein, including any non-positional properties of the molecular sequence, from processing a protein sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0250 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3090 a owl:Class ; + rdfs:label "Protein feature prediction (from structure)" ; + :created_in "beta13" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_3092 ; + oboInOwl:hasDefinition "Predict, recognise and identify positional features in proteins from analysing protein structure." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3093 a owl:Class ; + rdfs:label "Database search (by sequence)" ; + :created_in "beta13" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_2421 ; + oboInOwl:hasDefinition "Screen a molecular sequence(s) against a database (of some type) to identify similarities between the sequence and database entries." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3180 a owl:Class ; + rdfs:label "Sequence assembly validation" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Evaluate a DNA sequence assembly, typically for purposes of quality control." ; + oboInOwl:hasExactSynonym "Assembly QC", + "Assembly quality evaluation", + "Sequence assembly QC", + "Sequence assembly quality evaluation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0925 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0196 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_3181 ], + :operation_2428, + :operation_3218 . + +:operation_3182 a owl:Class ; + rdfs:label "Genome alignment" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Align two or more (tpyically huge) molecular sequences that represent genomes." ; + oboInOwl:hasExactSynonym "Genome alignment construction", + "Whole genome alignment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0292, + :operation_3918 . + +:operation_3183 a owl:Class ; + rdfs:label "Localised reassembly" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Reconstruction of a sequence assembly in a localised area." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0310 . + +:operation_3184 a owl:Class ; + rdfs:label "Sequence assembly visualisation" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Render and visualise a DNA sequence assembly." ; + oboInOwl:hasExactSynonym "Assembly rendering", + "Assembly visualisation", + "Sequence assembly rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0564 . + +:operation_3185 a owl:Class ; + rdfs:label "Base-calling" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Identify base (nucleobase) sequence from a fluorescence 'trace' data generated by an automated DNA sequencer." ; + oboInOwl:hasExactSynonym "Base calling", + "Phred base calling", + "Phred base-calling" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3168 ], + :operation_0230 . + +:operation_3186 a owl:Class ; + rdfs:label "Bisulfite mapping" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "The mapping of methylation sites in a DNA (genome) sequence. Typically, the mapping of high-throughput bisulfite reads to the reference genome." ; + oboInOwl:hasExactSynonym "Bisulfite read mapping", + "Bisulfite sequence alignment", + "Bisulfite sequence mapping" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Bisulfite mapping follows high-throughput sequencing of DNA which has undergone bisulfite treatment followed by PCR amplification; unmethylated cytosines are specifically converted to thymine, allowing the methylation status of cytosine in the DNA to be detected." ; + rdfs:subClassOf :operation_2944, + :operation_3204 . + +:operation_3187 a owl:Class ; + rdfs:label "Sequence contamination filtering" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Identify and filter a (typically large) sequence data set to remove sequences from contaminants in the sample that was sequenced." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3218 . + +:operation_3189 a owl:Class ; + rdfs:label "Trim ends" ; + :created_in "1.1" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove misleading ends." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3192 ; + rdfs:comment "For example trim polyA tails, introns and primer sequence flanking the sequence of amplified exons, or other unwanted sequence." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3190 a owl:Class ; + rdfs:label "Trim vector" ; + :created_in "1.1" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3192 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3191 a owl:Class ; + rdfs:label "Trim to reference" ; + :created_in "1.1" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3192 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3194 a owl:Class ; + rdfs:label "Genome feature comparison" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Compare the features of two genome sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Genomic elements that might be compared include genes, indels, single nucleotide polymorphisms (SNPs), retrotransposons, tandem repeats and so on." ; + rdfs:subClassOf :operation_0256, + :operation_3918 . + +:operation_3199 a owl:Class ; + rdfs:label "Split read mapping" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "A variant of oligonucleotide mapping where a read is mapped to two separate locations because of possible structural variation." ; + oboInOwl:hasExactSynonym "Split-read mapping" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3198 . + +:operation_3200 a owl:Class ; + rdfs:label "DNA barcoding" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Analyse DNA sequences in order to identify a DNA 'barcode'; marker genes or any short fragment(s) of DNA that are useful to diagnose the taxa of biological organisms." ; + oboInOwl:hasExactSynonym "Community profiling", + "Sample barcoding" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2478 . + +:operation_3201 a owl:Class ; + rdfs:label "SNP calling" ; + :created_in "1.1" ; + :obsolete_since "1.19" ; + :oldParent :operation_0484 ; + oboInOwl:hasDefinition "Identify single nucleotide change in base positions in sequencing data that differ from a reference genome and which might, especially by reference to population frequency or functional data, indicate a polymorphism." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0484 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3202 a owl:Class ; + rdfs:label "Polymorphism detection" ; + :created_in "1.1" ; + :deprecation_comment "\"Polymorphism detection\" and \"Variant calling\" are essentially the same thing - keeping the later as a more prevalent term nowadays." ; + :obsolete_since "1.24" ; + :oldParent :operation_2478, + :operation_3197 ; + oboInOwl:hasDefinition "Detect mutations in multiple DNA sequences, for example, from the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3227 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3203 a owl:Class ; + rdfs:label "Chromatogram visualisation" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Visualise, format or render an image of a Chromatogram." ; + oboInOwl:hasExactSynonym "Chromatogram viewing" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0337 . + +:operation_3205 a owl:Class ; + rdfs:label "Methylation calling" ; + :created_in "1.1" ; + :obsolete_since "1.19" ; + :oldParent :operation_3204 ; + oboInOwl:hasDefinition "Determine cytosine methylation status of specific positions in a nucleic acid sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3204 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3206 a owl:Class ; + rdfs:label "Whole genome methylation analysis" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Measure the overall level of methyl cytosines in a genome from analysis of experimental data, typically from chromatographic methods and methyl accepting capacity assay." ; + oboInOwl:hasExactSynonym "Genome methylation analysis", + "Global methylation analysis", + "Methylation level analysis (global)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3204, + :operation_3918 . + +:operation_3207 a owl:Class ; + rdfs:label "Gene methylation analysis" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Analysing the DNA methylation of specific genes or regions of interest." ; + oboInOwl:hasExactSynonym "Gene-specific methylation analysis", + "Methylation level analysis (gene-specific)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3204 . + +:operation_3208 a owl:Class ; + rdfs:label "Genome visualisation" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Visualise, format or render a nucleic acid sequence that is part of (and in context of) a complete genome sequence." ; + oboInOwl:hasExactSynonym "Genome browser", + "Genome browsing", + "Genome rendering", + "Genome viewing" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0564, + :operation_3918 . + +:operation_3209 a owl:Class ; + rdfs:label "Genome comparison" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Compare the sequence or features of two or more genomes, for example, to find matching regions." ; + oboInOwl:hasExactSynonym "Genomic region matching" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2451, + :operation_3918 . + +:operation_3212 a owl:Class ; + rdfs:label "Genome indexing (Burrows-Wheeler)" ; + :created_in "1.1" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Generate an index of a genome sequence using the Burrows-Wheeler algorithm." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3211 ; + rdfs:comment "The Burrows-Wheeler Transform (BWT) is a permutation of the genome based on a suffix array algorithm." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3213 a owl:Class ; + rdfs:label "Genome indexing (suffix arrays)" ; + :created_in "1.1" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Generate an index of a genome sequence using a suffix arrays algorithm." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3211 ; + rdfs:comment "A suffix array consists of the lexicographically sorted list of suffixes of a genome." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3215 a owl:Class ; + rdfs:label "Peak detection" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Identify peaks in a spectrum from a mass spectrometry, NMR, or some other spectrum-generating experiment." ; + oboInOwl:hasExactSynonym "Peak assignment", + "Peak finding" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0943 ], + :operation_3214 . + +:operation_3217 a owl:Class ; + rdfs:label "Scaffold gap completion" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Fill the gaps in a sequence assembly (scaffold) by merging in additional sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Different techniques are used to generate gap sequences to connect contigs, depending on the size of the gap. For small (5-20kb) gaps, PCR amplification and sequencing is used. For large (>20kb) gaps, fragments are cloned (e.g. in BAC (Bacterial artificial chromosomes) vectors) and then sequenced." ; + rdfs:subClassOf :operation_3216 . + +:operation_3219 a owl:Class ; + rdfs:label "Read pre-processing" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Pre-process sequence reads to ensure (or improve) quality and reliability." ; + oboInOwl:hasExactSynonym "Sequence read pre-processing" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "For example process paired end reads to trim low quality ends remove short sequences, identify sequence inserts, detect chimeric reads, or remove low quality sequences including vector, adaptor, low complexity and contaminant sequences. Sequences might come from genomic DNA library, EST libraries, SSH library and so on." ; + rdfs:subClassOf :operation_3218, + :operation_3921 . + +:operation_3221 a owl:Class ; + rdfs:label "Species frequency estimation" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Estimate the frequencies of different species from analysis of the molecular sequences, typically of DNA recovered from environmental samples." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3174 ], + :operation_2478 . + +:operation_3222 a owl:Class ; + rdfs:label "Peak calling" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Identify putative protein-binding regions in a genome sequence from analysis of Chip-sequencing data or ChIP-on-chip data." ; + oboInOwl:hasExactSynonym "Protein binding peak detection" ; + oboInOwl:hasNarrowSynonym "Peak-pair calling" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Chip-sequencing combines chromatin immunoprecipitation (ChIP) with massively parallel DNA sequencing to generate a set of reads, which are aligned to a genome sequence. The enriched areas contain the binding sites of DNA-associated proteins. For example, a transcription factor binding site. ChIP-on-chip in contrast combines chromatin immunoprecipitation ('ChIP') with microarray ('chip'). \"Peak-pair calling\" is similar to \"Peak calling\" in the context of ChIP-exo." ; + rdfs:subClassOf :operation_0415 . + +:operation_3224 a owl:Class ; + rdfs:label "Gene set testing" ; + :created_in "1.1" ; + :obsolete_since "1.21" ; + :oldParent :operation_2495 ; + oboInOwl:hasDefinition "Analyse gene expression patterns (typically from DNA microarray datasets) to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2436 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3225 a owl:Class ; + rdfs:label "Variant classification" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Classify variants based on their potential effect on genes, especially functional effects on the expressed proteins." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Variants are typically classified by their position (intronic, exonic, etc.) in a gene transcript and (for variants in coding exons) by their effect on the protein sequence (synonymous, non-synonymous, frameshifting, etc.)" ; + rdfs:subClassOf :operation_2995, + :operation_3197 . + +:operation_3226 a owl:Class ; + rdfs:label "Variant prioritisation" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Identify biologically interesting variants by prioritizing individual variants, for example, homozygous variants absent in control genomes." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Variant prioritisation can be used for example to produce a list of variants responsible for 'knocking out' genes in specific genomes. Methods amino acid substitution, aggregative approaches, probabilistic approach, inheritance and unified likelihood-frameworks." ; + rdfs:subClassOf :operation_3197 . + +:operation_3229 a owl:Class ; + rdfs:label "Exome assembly" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Analyse sequencing data from experiments aiming to selectively sequence the coding regions of the genome." ; + oboInOwl:hasExactSynonym "Exome sequence analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0310 . + +:operation_3230 a owl:Class ; + rdfs:label "Read depth analysis" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Analyse mapping density (read depth) of (typically) short reads from sequencing platforms, for example, to detect deletions and duplications." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3921 . + +:operation_3232 a owl:Class ; + rdfs:label "Gene expression QTL analysis" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Combine classical quantitative trait loci (QTL) analysis with gene expression profiling, for example, to describe describe cis- and trans-controlling elements for the expression of phenotype associated genes." ; + oboInOwl:hasExactSynonym "Gene expression QTL profiling", + "Gene expression quantitative trait loci profiling", + "eQTL profiling" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2495 . + +:operation_3233 a owl:Class ; + rdfs:label "Copy number estimation" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Estimate the number of copies of loci of particular gene(s) in DNA sequences typically from gene-expression profiling technology based on microarray hybridisation-based experiments. For example, estimate copy number (or marker dosage) of a dominant marker in samples from polyploid plant cells or tissues, or chromosomal gains and losses in tumors." ; + oboInOwl:hasExactSynonym "Transcript copy number estimation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods typically implement some statistical model for hypothesis testing, and methods estimate total copy number, i.e. do not distinguish the two inherited chromosomes quantities (specific copy number)." ; + rdfs:subClassOf :operation_3961 . + +:operation_3237 a owl:Class ; + rdfs:label "Primer removal" ; + :created_in "1.2" ; + oboInOwl:hasBroadSynonym "Adapter removal" ; + oboInOwl:hasDefinition "Remove forward and/or reverse primers from nucleic acid sequences (typically PCR products)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0369 . + +:operation_3258 a owl:Class ; + rdfs:label "Transcriptome assembly" ; + :created_in "1.2" ; + oboInOwl:hasDefinition "Infer a transcriptome sequence by analysis of short sequence reads." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0925 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0196 ], + :operation_0310 . + +:operation_3259 a owl:Class ; + rdfs:label "Transcriptome assembly (de novo)" ; + :created_in "1.2" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0524 ; + oboInOwl:hasDefinition "Infer a transcriptome sequence without the aid of a reference genome, i.e. by comparing short sequences (reads) to each other." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3260 a owl:Class ; + rdfs:label "Transcriptome assembly (mapping)" ; + :created_in "1.2" ; + :obsolete_since "1.6" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_0523 ; + oboInOwl:hasDefinition "Infer a transcriptome sequence by mapping short reads to a reference genome." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3267 a owl:Class ; + rdfs:label "Sequence coordinate conversion" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Convert one set of sequence coordinates to another, e.g. convert coordinates of one assembly to another, cDNA to genomic, CDS to genomic, protein translation to genomic etc." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2012 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2012 ], + :operation_3434 . + +:operation_3278 a owl:Class ; + rdfs:label "Document similarity calculation" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Calculate similarity between 2 or more documents." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3437 . + +:operation_3279 a owl:Class ; + rdfs:label "Document clustering" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Cluster (group) documents on the basis of their calculated similarity." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_3432, + :operation_3437 . + +:operation_3280 a owl:Class ; + rdfs:label "Named-entity and concept recognition" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Recognise named entities, ontology concepts, tags, events, and dictionary terms within documents." ; + oboInOwl:hasNarrowSynonym "Concept mining", + "Entity chunking", + "Entity extraction", + "Entity identification", + "Event extraction", + "NER", + "Named-entity recognition" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso , + ; + rdfs:subClassOf :operation_3907 . + +:operation_3282 a owl:Class ; + rdfs:label "ID mapping" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Map data identifiers to one another for example to establish a link between two biological databases for the purposes of data integration." ; + oboInOwl:hasExactSynonym "Accession mapping", + "Identifier mapping" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "The mapping can be achieved by comparing identifier values or some other means, e.g. exact matches to a provided sequence." ; + rdfs:subClassOf :operation_2424, + :operation_2429 . + +:operation_3283 a owl:Class ; + rdfs:label "Anonymisation" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Process data in such a way that makes it hard to trace to the person which the data concerns." ; + oboInOwl:hasExactSynonym "Data anonymisation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2409 . + +:operation_3289 a owl:Class ; + rdfs:label "ID retrieval" ; + :created_in "1.3" ; + :deprecation_comment "(jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved." ; + :obsolete_since "1.17" ; + :oldParent :operation_0304 ; + oboInOwl:hasDefinition "Search for and retrieve a data identifier of some kind, e.g. a database entry accession." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2422 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3348 a owl:Class ; + rdfs:label "Sequence checksum generation" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "Generate a checksum of a molecular sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3077 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2044 ], + :operation_3429 . + +:operation_3349 a owl:Class ; + rdfs:label "Bibliography generation" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "Construct a bibliography from the scientific literature." ; + oboInOwl:hasExactSynonym "Bibliography construction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_3505 ], + :operation_3429 . + +:operation_3350 a owl:Class ; + rdfs:label "Protein quaternary structure prediction" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "Predict the structure of a multi-subunit protein and particularly how the subunits fit together." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2423 . + +:operation_3353 a owl:Class ; + rdfs:label "Ontology comparison" ; + :created_in "1.4" ; + :obsolete_since "1.9" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Compare two or more ontologies, e.g. identify differences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3352 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3359 a owl:Class ; + rdfs:label "Splitting" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "Split a file containing multiple data items into many files, each containing one item." ; + oboInOwl:hasExactSynonym "File splitting" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2409 . + +:operation_3430 a owl:Class ; + rdfs:label "Nucleic acid sequence feature detection" ; + :created_in "1.6" ; + :deprecation_comment "(jison)This is a distinction made on basis of input; all features exist can be mapped to a sequence so this isn't needed." ; + :obsolete_since "1.17" ; + :oldParent :operation_0253, + :operation_0415 ; + oboInOwl:hasDefinition "Predict, recognise and identify functional or other key sites within nucleic acid sequences, typically by scanning for known motifs, patterns and regular expressions." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0415 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3433 a owl:Class ; + rdfs:label "Assembly" ; + :created_in "1.6" ; + :obsolete_since "1.19" ; + :oldParent :operation_0004 ; + oboInOwl:hasDefinition "Construct some entity (typically a molecule sequence) from component pieces." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0310 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3436 a owl:Class ; + rdfs:label "Aggregation" ; + :created_in "1.6" ; + oboInOwl:hasDefinition "Combine multiple files or data items into a single file or object." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2409 . + +:operation_3439 a owl:Class ; + rdfs:label "Pathway or network prediction" ; + :created_in "1.6" ; + :deprecation_comment "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." ; + :obsolete_since "1.24" ; + :oldParent :operation_2497 ; + oboInOwl:consider :operation_2437, + :operation_3094, + :operation_3929 ; + oboInOwl:hasDefinition "Predict a molecular pathway or network." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3440 a owl:Class ; + rdfs:label "Genome assembly" ; + :created_in "1.6" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The process of assembling many short DNA sequences together such that they represent the original chromosomes from which the DNA originated." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0525 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3441 a owl:Class ; + rdfs:label "Plotting" ; + :created_in "1.6" ; + :obsolete_since "1.19" ; + :oldParent :operation_0337 ; + oboInOwl:hasDefinition "Generate a graph, or other visual representation, of data, showing the relationship between two or more variables." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0337 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3446 a owl:Class ; + rdfs:label "Cell migration analysis" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Analysis of cell migration images in order to study cell migration, typically in order to study the processes that play a role in the disease progression." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2229 ], + :operation_3443 . + +:operation_3447 a owl:Class ; + rdfs:label "Diffraction data reduction" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Processing of diffraction data into a corrected, ordered, and simplified form." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3445 . + +:operation_3450 a owl:Class ; + rdfs:label "Neurite measurement" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Measurement of neurites; projections (axons or dendrites) from the cell body of a neuron, from analysis of neuron images." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2229 ], + :operation_3443 . + +:operation_3453 a owl:Class ; + rdfs:label "Diffraction data integration" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "The evaluation of diffraction intensities and integration of diffraction maxima from a diffraction experiment." ; + oboInOwl:hasNarrowSynonym "Diffraction profile fitting", + "Diffraction summation integration" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3445 . + +:operation_3454 a owl:Class ; + rdfs:label "Phasing" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Phase a macromolecular crystal structure, for example by using molecular replacement or experimental phasing methods." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3445 . + +:operation_3455 a owl:Class ; + rdfs:label "Molecular replacement" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "A technique used to construct an atomic model of an unknown structure from diffraction data, based upon an atomic model of a known structure, either a related protein or the same protein from a different crystal form." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "The technique solves the phase problem, i.e. retrieve information concern phases of the structure." ; + rdfs:subClassOf :operation_0322 . + +:operation_3456 a owl:Class ; + rdfs:label "Rigid body refinement" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "A method used to refine a structure by moving the whole molecule or parts of it as a rigid unit, rather than moving individual atoms." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Rigid body refinement usually follows molecular replacement in the assignment of a structure from diffraction data." ; + rdfs:subClassOf :operation_0322 . + +:operation_3458 a owl:Class ; + rdfs:label "Single particle alignment and classification" ; + :created_in "1.7" ; + :is_refactor_candidate true ; + :refactor_comment "This is two related concepts." ; + oboInOwl:hasDefinition "Compare (align and classify) multiple particle images from a micrograph in order to produce a representative image of the particle." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "A micrograph can include particles in multiple different orientations and/or conformations. Particles are compared and organised into sets based on their similarity. Typically iterations of classification and alignment and are performed to optimise the final 3D EM map." ; + rdfs:subClassOf :operation_2990, + :operation_3457 . + +:operation_3459 a owl:Class ; + rdfs:label "Functional clustering" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Clustering of molecular sequences on the basis of their function, typically using information from an ontology of gene function, or some other measure of functional phenotype." ; + oboInOwl:hasExactSynonym "Functional sequence clustering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1775 ], + :operation_0291 . + +:operation_3460 a owl:Class ; + rdfs:label "Taxonomic classification" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Classifiication (typically of molecular sequences) by assignment to some taxonomic hierarchy." ; + oboInOwl:hasExactSynonym "Taxonomy assignment" ; + oboInOwl:hasNarrowSynonym "Taxonomic profiling" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2995 . + +:operation_3461 a owl:Class ; + rdfs:label "Virulence prediction" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "The prediction of the degree of pathogenicity of a microorganism from analysis of molecular sequences." ; + oboInOwl:hasExactSynonym "Pathogenicity prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3301 ], + :operation_2403, + :operation_2423 . + +:operation_3463 a owl:Class ; + rdfs:label "Expression correlation analysis" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Analyse the correlation patterns among features/molecules across across a variety of experiments, samples etc." ; + oboInOwl:hasExactSynonym "Co-expression analysis" ; + oboInOwl:hasNarrowSynonym "Gene co-expression network analysis", + "Gene expression correlation", + "Gene expression correlation analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0315, + :operation_3465 . + +:operation_3469 a owl:Class ; + rdfs:label "RNA structure covariance model generation" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Compute the covariance model for (a family of) RNA secondary structures." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0097 ], + :operation_2439, + :operation_3429 . + +:operation_3470 a owl:Class ; + rdfs:label "RNA secondary structure prediction (shape-based)" ; + :created_in "1.7" ; + :obsolete_since "1.18" ; + :oldParent :operation_0278 ; + oboInOwl:hasDefinition "Predict RNA secondary structure by analysis, e.g. probabilistic analysis, of the shape of RNA folds." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0278 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3471 a owl:Class ; + rdfs:label "Nucleic acid folding prediction (alignment-based)" ; + :created_in "1.7" ; + :obsolete_since "1.18" ; + :oldParent :operation_0279 ; + oboInOwl:hasDefinition "Prediction of nucleic-acid folding using sequence alignments as a source of data." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0279 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3472 a owl:Class ; + rdfs:label "k-mer counting" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Count k-mers (substrings of length k) in DNA sequence data." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "k-mer counting is used in genome and transcriptome assembly, metagenomic sequencing, and for error correction of sequence reads." ; + rdfs:subClassOf :operation_0236 . + +:operation_3478 a owl:Class ; + rdfs:label "Phylogenetic reconstruction" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Reconstructing the inner node labels of a phylogenetic tree from its leafes." ; + oboInOwl:hasExactSynonym "Phylogenetic tree reconstruction" ; + oboInOwl:hasNarrowSynonym "Gene tree reconstruction", + "Species tree reconstruction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Note that this is somewhat different from simply analysing an existing tree or constructing a completely new one." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0084 ], + :operation_0323 . + +:operation_3481 a owl:Class ; + rdfs:label "Probabilistic sequence generation" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Generate sequences from some probabilistic model, e.g. a model that simulates evolution." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0230, + :operation_3480 . + +:operation_3482 a owl:Class ; + rdfs:label "Antimicrobial resistance prediction" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Identify or predict causes for antibiotic resistance from molecular sequence analysis." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3301 ], + :operation_2403, + :operation_2423 . + +:operation_3502 a owl:Class ; + rdfs:label "Chemical similarity enrichment" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Analyse a dataset with respect to concepts from an ontology of chemical structure, leveraging chemical similarity information." ; + oboInOwl:hasExactSynonym "Chemical class enrichment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1775 ], + :operation_3501 . + +:operation_3503 a owl:Class ; + rdfs:label "Incident curve plotting" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Plot an incident curve such as a survival curve, death curve, mortality curve." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0337 . + +:operation_3504 a owl:Class ; + rdfs:label "Variant pattern analysis" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Identify and map patterns of genomic variations." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods often utilise a database of aligned reads." ; + rdfs:subClassOf :operation_3197 . + +:operation_3545 a owl:Class ; + rdfs:label "Mathematical modelling" ; + :created_in "1.8" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Model some biological system using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2426 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3552 a owl:Class ; + rdfs:label "Microscope image visualisation" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "Visualise images resulting from various types of microscopy." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3382 ], + :operation_0337 . + +:operation_3553 a owl:Class ; + rdfs:label "Image annotation" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "Annotate an image of some sort, typically with terms from a controlled vocabulary." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0226 . + +:operation_3557 a owl:Class ; + rdfs:label "Imputation" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "Replace missing data with substituted values, usually by using some statistical or other mathematical approach." ; + oboInOwl:hasExactSynonym "Data imputation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2238 . + +:operation_3559 a owl:Class ; + rdfs:label "Ontology visualisation" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "Visualise, format or render data from an ontology, typically a tree of terms." ; + oboInOwl:hasExactSynonym "Ontology browsing" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0337 . + +:operation_3560 a owl:Class ; + rdfs:label "Maximum occurrence analysis" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "A method for making numerical assessments about the maximum percent of time that a conformer of a flexible macromolecule can exist and still be compatible with the experimental data." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0321 . + +:operation_3561 a owl:Class ; + rdfs:label "Database comparison" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "Compare the models or schemas used by two or more databases, or any other general comparison of databases rather than a detailed comparison of the entries themselves." ; + oboInOwl:hasNarrowSynonym "Data model comparison", + "Schema comparison" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2424, + :operation_2429 . + +:operation_3562 a owl:Class ; + rdfs:label "Network simulation" ; + :created_in "1.9" ; + :obsolete_since "1.24" ; + :oldParent :operation_2426 ; + oboInOwl:consider :operation_3927, + :operation_3928 ; + oboInOwl:hasDefinition "Simulate the bevaviour of a biological pathway or network." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3563 a owl:Class ; + rdfs:label "RNA-seq read count analysis" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "Analyze read counts from RNA-seq experiments." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3680 . + +:operation_3564 a owl:Class ; + rdfs:label "Chemical redundancy removal" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "Identify and remove redundancy from a set of small molecule structures." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2483 . + +:operation_3565 a owl:Class ; + rdfs:label "RNA-seq time series data analysis" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "Analyze time series data from an RNA-seq experiment." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3680 . + +:operation_3566 a owl:Class ; + rdfs:label "Simulated gene expression data generation" ; + :created_in "1.9" ; + oboInOwl:hasDefinition "Simulate gene expression data, e.g. for purposes of benchmarking." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2426 . + +:operation_3625 a owl:Class ; + rdfs:label "Relation extraction" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Identify semantic relations among entities and concepts within a text, using text mining techniques." ; + oboInOwl:hasExactSynonym "Relation discovery", + "Relation inference", + "Relationship discovery", + "Relationship extraction", + "Relationship inference" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0306 . + +:operation_3627 a owl:Class ; + rdfs:label "Mass spectra calibration" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Re-adjust the output of mass spectrometry experiments with shifted ppm values." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0943 ], + :operation_3214 . + +:operation_3628 a owl:Class ; + rdfs:label "Chromatographic alignment" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Align multiple data sets using information from chromatography and/or peptide identification, from mass spectrometry experiments." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0943 ], + :operation_3214 . + +:operation_3629 a owl:Class ; + rdfs:label "Deisotoping" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "The removal of isotope peaks in a spectrum, to represent the fragment ion as one data point." ; + oboInOwl:hasExactSynonym "Deconvolution" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Deisotoping is commonly done to reduce complexity, and done in conjunction with the charge state deconvolution." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0943 ], + :operation_3214 . + +:operation_3632 a owl:Class ; + rdfs:label "Isotopic distributions calculation" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Calculate the isotope distribution of a given chemical species." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0943 ], + :operation_3438 . + +:operation_3633 a owl:Class ; + rdfs:label "Retention time prediction" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Prediction of retention time in a mass spectrometry experiment based on compositional and structural properties of the separated species." ; + oboInOwl:hasExactSynonym "Retention time calculation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3438 . + +:operation_3636 a owl:Class ; + rdfs:label "MRM/SRM" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Quantification by Selected/multiple Reaction Monitoring workflow (XIC quantitation of precursor / fragment mass pair)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3630 . + +:operation_3637 a owl:Class ; + rdfs:label "Spectral counting" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Calculate number of identified MS2 spectra as approximation of peptide / protein quantity." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3634 . + +:operation_3638 a owl:Class ; + rdfs:label "SILAC" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Quantification analysis using stable isotope labeling by amino acids in cell culture." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3635 . + +:operation_3639 a owl:Class ; + rdfs:label "iTRAQ" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Quantification analysis using the AB SCIEX iTRAQ isobaric labelling workflow, wherein 2-8 reporter ions are measured in MS2 spectra near 114 m/z." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3635 . + +:operation_3640 a owl:Class ; + rdfs:label "18O labeling" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Quantification analysis using labeling based on 18O-enriched H2O." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3635 . + +:operation_3641 a owl:Class ; + rdfs:label "TMT-tag" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Quantification analysis using the Thermo Fisher tandem mass tag labelling workflow." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3635 . + +:operation_3642 a owl:Class ; + rdfs:label "Stable isotope dimethyl labelling" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Quantification analysis using chemical labeling by stable isotope dimethylation." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3635 . + +:operation_3643 a owl:Class ; + rdfs:label "Tag-based peptide identification" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Peptide sequence tags are used as piece of information about a peptide obtained by tandem mass spectrometry." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3631 . + +:operation_3644 a owl:Class ; + rdfs:label "de Novo sequencing" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Analytical process that derives a peptide's amino acid sequence from its tandem mass spectrum (MS/MS) without the assistance of a sequence database." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0230, + :operation_3631 . + +:operation_3647 a owl:Class ; + rdfs:label "Blind peptide database search" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Peptide database search for identification of known and unknown PTMs looking for mass difference mismatches." ; + oboInOwl:hasExactSynonym "Modification-tolerant peptide database search", + "Unrestricted peptide database search" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3646 . + +:operation_3648 a owl:Class ; + rdfs:label "Validation of peptide-spectrum matches" ; + :created_in "1.12" ; + :obsolete_since "1.19" ; + :oldParent :operation_2428, + :operation_3646 ; + oboInOwl:hasDefinition "Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3649 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3658 a owl:Class ; + rdfs:label "Statistical inference" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Analyse data in order to deduce properties of an underlying distribution or population." ; + oboInOwl:hasNarrowSynonym "Empirical Bayes" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2238 . + +:operation_3659 a owl:Class ; + rdfs:label "Regression analysis" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "A statistical calculation to estimate the relationships among variables." ; + oboInOwl:hasNarrowSynonym "Regression" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2238 . + +:operation_3660 a owl:Class ; + rdfs:label "Metabolic network modelling" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Model a metabolic network. This can include 1) reconstruction to break down a metabolic pathways into reactions, enzymes, and other relevant information, and compilation of this into a mathematical model and 2) simulations of metabolism based on the model." ; + oboInOwl:hasExactSynonym :Metabolic%20pathway%20modelling ; + oboInOwl:hasNarrowSynonym :Metabolic%20pathway%20reconstruction, + "Metabolic network reconstruction", + "Metabolic network simulation", + "Metabolic pathway simulation", + "Metabolic reconstruction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "The terms and synyonyms here reflect that for practical intents and purposes, \"pathway\" and \"network\" can be treated the same." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2259 ], + :operation_3927, + :operation_3928 . + +:operation_3661 a owl:Class ; + rdfs:label "SNP annotation" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Predict the effect or function of an individual single nucleotide polymorphism (SNP)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0361 . + +:operation_3662 a owl:Class ; + rdfs:label "Ab-initio gene prediction" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Prediction of genes or gene components from first principles, i.e. without reference to existing genes." ; + oboInOwl:hasExactSynonym "Gene prediction (ab-initio)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2454 . + +:operation_3663 a owl:Class ; + rdfs:label "Homology-based gene prediction" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Prediction of genes or gene components by reference to homologous genes." ; + oboInOwl:hasExactSynonym "Empirical gene finding", + "Empirical gene prediction", + "Evidence-based gene prediction", + "Gene prediction (homology-based)", + "Similarity-based gene prediction" ; + oboInOwl:hasNarrowSynonym "Homology prediction", + "Orthology prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2454 . + +:operation_3666 a owl:Class ; + rdfs:label "Molecular surface comparison" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Compare two or more molecular surfaces." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2483, + :operation_3351 . + +:operation_3672 a owl:Class ; + rdfs:label "Gene functional annotation" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Annotate one or more sequences with functional information, such as cellular processes or metaobolic pathways, by reference to a controlled vocabulary - invariably the Gene Ontology (GO)." ; + oboInOwl:hasExactSynonym "Sequence functional annotation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0361 . + +:operation_3675 a owl:Class ; + rdfs:label "Variant filtering" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Variant filtering is used to eliminate false positive variants based for example on base calling quality, strand and position information, and mapping info." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3218 . + +:operation_3677 a owl:Class ; + rdfs:label "Differential binding analysis" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Identify binding sites in nucleic acid sequences that are statistically significantly differentially bound between sample groups." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0415 . + +:operation_3694 a owl:Class ; + rdfs:label "Mass spectrum visualisation" ; + :created_in "1.13" ; + oboInOwl:hasDefinition "Visualise, format or render a mass spectrum." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0337 . + +:operation_3695 a owl:Class ; + rdfs:label "Filtering" ; + :created_in "1.13" ; + oboInOwl:hasDefinition "Filter a set of files or data items according to some property." ; + oboInOwl:hasNarrowSynonym "Sequence filtering", + "rRNA filtering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2409 . + +:operation_3703 a owl:Class ; + rdfs:label "Reference identification" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "Identification of the best reference for mapping for a specific dataset from a list of potential references, when performing genetic variation analysis." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3197 . + +:operation_3704 a owl:Class ; + rdfs:label "Ion counting" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "Label-free quantification by integration of ion current (ion counting)." ; + oboInOwl:hasExactSynonym "Ion current integration" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3634 . + +:operation_3705 a owl:Class ; + rdfs:label "Isotope-coded protein label" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "Chemical tagging free amino groups of intact proteins with stable isotopes." ; + oboInOwl:hasExactSynonym "ICPL" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3635 . + +:operation_3715 a owl:Class ; + rdfs:label "Metabolic labeling" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "Labeling all proteins and (possibly) all amino acids using C-13 or N-15 enriched grown medium or feed." ; + oboInOwl:hasNarrowSynonym "C-13 metabolic labeling", + "N-15 metabolic labeling" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes N-15 metabolic labeling (labeling all proteins and (possibly) all amino acids using N-15 enriched grown medium or feed) and C-13 metabolic labeling (labeling all proteins and (possibly) all amino acids using C-13 enriched grown medium or feed)." ; + rdfs:subClassOf :operation_3635 . + +:operation_3730 a owl:Class ; + rdfs:label "Cross-assembly" ; + :created_in "1.15" ; + oboInOwl:hasDefinition "Construction of a single sequence assembly of all reads from different samples, typically as part of a comparative metagenomic analysis." ; + oboInOwl:hasExactSynonym "Sequence assembly (cross-assembly)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0310 . + +:operation_3731 a owl:Class ; + rdfs:label "Sample comparison" ; + :created_in "1.15" ; + oboInOwl:hasDefinition "The comparison of samples from a metagenomics study, for example, by comparison of metagenome shotgun reads or assembled contig sequences, by comparison of functional profiles, or some other method." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2424 . + +:operation_3741 a owl:Class ; + rdfs:label "Differential protein expression profiling" ; + :created_in "1.15" ; + oboInOwl:hasBroadSynonym "Differential protein analysis" ; + oboInOwl:hasDefinition "The analysis, using proteomics techniques, to identify proteins whose encoding genes are differentially expressed under a given experimental setup." ; + oboInOwl:hasExactSynonym "Differential protein expression analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0314, + :operation_2997 . + +:operation_3742 a owl:Class ; + rdfs:label "Differential gene expression analysis" ; + :created_in "1.15" ; + :obsolete_since "1.17" ; + :oldParent :operation_2424 ; + oboInOwl:hasDefinition "The analysis, using any of diverse techniques, to identify genes that are differentially expressed under a given experimental setup." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_3223 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3744 a owl:Class ; + rdfs:label "Multiple sample visualisation" ; + :created_in "1.15" ; + oboInOwl:hasDefinition "Visualise, format or render data arising from an analysis of multiple samples from a metagenomics/community experiment." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0337 . + +:operation_3745 a owl:Class ; + rdfs:label "Ancestral reconstruction" ; + :created_in "1.15" ; + oboInOwl:hasDefinition "The extrapolation of empirical characteristics of individuals or populations, backwards in time, to their common ancestors." ; + oboInOwl:hasExactSynonym "Ancestral sequence reconstruction", + "Character mapping", + "Character optimisation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Ancestral reconstruction is often used to recover possible ancestral character states of ancient, extinct organisms." ; + rdfs:subClassOf :operation_0324 . + +:operation_3755 a owl:Class ; + rdfs:label "PTM localisation" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "Site localisation of post-translational modifications in peptide or protein mass spectra." ; + oboInOwl:hasExactSynonym "PTM scoring", + "Site localisation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3645 . + +:operation_3761 a owl:Class ; + rdfs:label "Service discovery" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "An operation supporting the browsing or discovery of other tools and services." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3760 . + +:operation_3762 a owl:Class ; + rdfs:label "Service composition" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "An operation supporting the aggregation of other services (at least two) into a functional unit, for the automation of some task." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3760 . + +:operation_3763 a owl:Class ; + rdfs:label "Service invocation" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "An operation supporting the calling (invocation) of other tools and services." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3760 . + +:operation_3766 a owl:Class ; + rdfs:label "Weighted correlation network analysis" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "A data mining method typically used for studying biological networks based on pairwise correlations between variables." ; + oboInOwl:hasExactSynonym "WGCNA", + "Weighted gene co-expression network analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0602 ], + :operation_3927 . + +:operation_3767 a owl:Class ; + rdfs:label "Protein identification" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "Identification of protein, for example from one or more peptide identifications by tandem mass spectrometry." ; + oboInOwl:hasExactSynonym "Protein inference" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0943 ], + :operation_2423, + :operation_3214 . + +:operation_3791 a owl:Class ; + rdfs:label "Collapsing methods" ; + :created_in "1.17" ; + oboInOwl:hasDefinition "A method whereby data on several variants are \"collapsed\" into a single covariate based on regions such as genes." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Genome-wide association studies (GWAS) analyse a genome-wide set of genetic variants in different individuals to see if any variant is associated with a trait. Traditional association techniques can lack the power to detect the significance of rare variants individually, or measure their compound effect (rare variant burden). \"Collapsing methods\" were developed to overcome these problems." ; + rdfs:subClassOf :operation_3197 . + +:operation_3792 a owl:Class ; + rdfs:label "miRNA expression analysis" ; + :created_in "1.17" ; + oboInOwl:hasBroadSynonym "miRNA analysis" ; + oboInOwl:hasDefinition "The analysis of microRNAs (miRNAs) : short, highly conserved small noncoding RNA molecules that are naturally occurring plant and animal genomes." ; + oboInOwl:hasExactSynonym "miRNA expression profiling" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2495 . + +:operation_3793 a owl:Class ; + rdfs:label "Read summarisation" ; + :created_in "1.17" ; + oboInOwl:hasDefinition "Counting and summarising the number of short sequence reads that map to genomic features." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3921 . + +:operation_3795 a owl:Class ; + rdfs:label "In vitro selection" ; + :created_in "1.17" ; + oboInOwl:hasDefinition "A technique whereby molecules with desired properties and function are isolated from libraries of random molecules, through iterative cycles of selection, amplification, and mutagenesis." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3095 . + +:operation_3797 a owl:Class ; + rdfs:label "Rarefaction" ; + :created_in "1.17" ; + oboInOwl:hasDefinition "The calculation of species richness for a number of individual samples, based on plots of the number of species as a function of the number of samples (rarefaction curves)." ; + oboInOwl:hasExactSynonym "Species richness assessment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_3438 . + +:operation_3798 a owl:Class ; + rdfs:label "Read binning" ; + :created_in "1.17" ; + oboInOwl:hasDefinition "An operation which groups reads or contigs and assigns them to operational taxonomic units." ; + oboInOwl:hasExactSynonym "Binning", + "Binning shotgun reads" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Binning methods use one or a combination of compositional features or sequence similarity." ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_3921 . + +:operation_3800 a owl:Class ; + rdfs:label "RNA-Seq quantification" ; + :created_in "1.17" ; + oboInOwl:hasDefinition "Quantification of data arising from RNA-Seq high-throughput sequencing, typically the quantification of transcript abundances durnig transcriptome analysis in a gene expression study." ; + oboInOwl:hasExactSynonym "RNA-Seq quantitation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3799 . + +:operation_3801 a owl:Class ; + rdfs:label "Spectral library search" ; + :created_in "1.17" ; + oboInOwl:hasDefinition "Match experimentally measured mass spectrum to a spectrum in a spectral library or database." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0943 ], + :operation_3631 . + +:operation_3802 a owl:Class ; + rdfs:label "Sorting" ; + :created_in "1.17" ; + oboInOwl:hasDefinition "Sort a set of files or data items according to some property." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2409 . + +:operation_3803 a owl:Class ; + rdfs:label "Natural product identification" ; + :created_in "1.17" ; + oboInOwl:hasDefinition "Mass spectra identification of compounds that are produced by living systems. Including polyketides, terpenoids, phenylpropanoids, alkaloids and antibiotics." ; + oboInOwl:hasNarrowSynonym "De novo metabolite identification", + "Fragmenation tree generation", + "Metabolite identification" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3214 . + +:operation_3809 a owl:Class ; + rdfs:label "DMR identification" ; + :created_in "1.19" ; + oboInOwl:hasDefinition "Identify and assess specific genes or regulatory regions of interest that are differentially methylated." ; + oboInOwl:hasExactSynonym "Differentially-methylated region identification" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3204 . + +:operation_3840 a owl:Class ; + rdfs:label "Multilocus sequence typing" ; + :created_in "1.21" ; + oboInOwl:hasDbXref oboLegacy:OBI_0000435, + ; + oboInOwl:hasDefinition "Genotyping of multiple loci, typically characterizing microbial species isolates using internal fragments of multiple housekeeping genes." ; + oboInOwl:hasExactSynonym "MLST" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_3196 . + +:operation_3860 a owl:Class ; + rdfs:label "Spectrum calculation" ; + :created_in "1.21" ; + oboInOwl:hasDefinition "Calculate a theoretical mass spectrometry spectra for given sequences." ; + oboInOwl:hasExactSynonym "Spectrum prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0943 ], + :operation_0250, + :operation_3214 . + +:operation_3890 a owl:Class ; + rdfs:label "Trajectory visualization" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "3D visualization of a molecular trajectory." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2162 ], + :operation_0570 . + +:operation_3891 a owl:Class ; + rdfs:label "Essential dynamics" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Compute Essential Dynamics (ED) on a simulation trajectory: an analysis of molecule dynamics using PCA (Principal Component Analysis) applied to the atomic positional fluctuations." ; + oboInOwl:hasExactSynonym "ED", + "PCA", + "Principal modes" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Principal Component Analysis (PCA) is a multivariate statistical analysis to obtain collective variables and reduce the dimensionality of the system." ; + rdfs:subClassOf :operation_0244, + :operation_2481 . + +:operation_3893 a owl:Class ; + rdfs:label "Forcefield parameterisation" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Obtain force field parameters (charge, bonds, dihedrals, etc.) from a molecule, to be used in molecular simulations." ; + oboInOwl:hasExactSynonym "Ligand parameterization", + "Molecule parameterization" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1439 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0084 ], + :operation_2426 . + +:operation_3894 a owl:Class ; + rdfs:label "DNA profiling" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Analyse DNA sequences in order to determine an individual's DNA characteristics, for example in criminal forensics, parentage testing and so on." ; + oboInOwl:hasExactSynonym "DNA fingerprinting" ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2478 . + +:operation_3896 a owl:Class ; + rdfs:label "Active site prediction" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Predict or detect active sites in proteins; the region of an enzyme which binds a substrate bind and catalyses a reaction." ; + oboInOwl:hasNarrowSynonym "Active site detection" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2575 . + +:operation_3897 a owl:Class ; + rdfs:label "Ligand-binding site prediction" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Predict or detect ligand-binding sites in proteins; a region of a protein which reversibly binds a ligand for some biochemical purpose, such as transport or regulation of protein function." ; + oboInOwl:hasNarrowSynonym "Ligand-binding site detection", + "Peptide-protein binding prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2575 . + +:operation_3898 a owl:Class ; + rdfs:label "Metal-binding site prediction" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Predict or detect metal ion-binding sites in proteins." ; + oboInOwl:hasExactSynonym "Metal-binding site detection", + "Protein metal-binding site prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2575 . + +:operation_3899 a owl:Class ; + rdfs:label "Protein-protein docking" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Model or simulate protein-protein binding using comparative modelling or other techniques." ; + oboInOwl:hasExactSynonym "Protein docking" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0128 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1461 ], + :operation_0478 . + +:operation_3900 a owl:Class ; + rdfs:label "DNA-binding protein prediction" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Predict DNA-binding proteins." ; + oboInOwl:hasExactSynonym "DNA-binding protein detection", + "DNA-protein interaction prediction", + "Protein-DNA interaction prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0906 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0128 ], + :operation_0389 . + +:operation_3901 a owl:Class ; + rdfs:label "RNA-binding protein prediction" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Predict RNA-binding proteins." ; + oboInOwl:hasExactSynonym "Protein-RNA interaction prediction", + "RNA-binding protein detection", + "RNA-protein interaction prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0128 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0906 ], + :operation_0389 . + +:operation_3902 a owl:Class ; + rdfs:label "RNA binding site prediction" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Predict or detect RNA-binding sites in protein sequences." ; + oboInOwl:hasExactSynonym "Protein-RNA binding site detection", + "Protein-RNA binding site prediction", + "RNA binding site detection" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0420 . + +:operation_3903 a owl:Class ; + rdfs:label "DNA binding site prediction" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Predict or detect DNA-binding sites in protein sequences." ; + oboInOwl:hasExactSynonym "Protein-DNA binding site detection", + "Protein-DNA binding site prediction" ; + oboInOwl:hasNarrowSynonym "DNA binding site detection" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0420 . + +:operation_3904 a owl:Class ; + rdfs:label "Protein disorder prediction" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Identify or predict intrinsically disordered regions in proteins." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3301 ], + :operation_2423, + :operation_3092 . + +:operation_3919 a owl:Class ; + rdfs:label "Methylation calling" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "The determination of cytosine methylation status of specific positions in a nucleic acid sequences (usually reads from a bisulfite sequencing experiment)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3204 . + +:operation_3920 a owl:Class ; + rdfs:label "DNA testing" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "The identification of changes in DNA sequence or chromosome structure, usually in the context of diagnostic tests for disease, or to study ancestry or phylogeny." ; + oboInOwl:hasExactSynonym "Genetic testing" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This can include indirect methods which reveal the results of genetic changes, such as RNA analysis to indicate gene expression, or biochemical analysis to identify expressed proteins." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0622 ], + :operation_2478 . + +:operation_3933 a owl:Class ; + rdfs:label "Demultiplexing" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Assigning sequence reads to separate groups / files based on their index tag (sample origin)." ; + oboInOwl:hasExactSynonym "Sequence demultiplexing" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "NGS sequence runs are often performed with multiple samples pooled together. In such cases, an index tag (or \"barcode\") - a unique sequence of between 6 and 12bp - is ligated to each sample's genetic material so that the sequence reads from different samples can be identified. The process of demultiplexing (dividing sequence reads into separate files for each index tag/sample) may be performed automatically by the sequencing hardware. Alternatively the reads may be lumped together in one file with barcodes still attached, requiring you to do the splitting using software. In such cases, a \"mapping\" file is used which indicates which barcodes correspond to which samples." ; + rdfs:subClassOf :operation_3921 . + +:operation_3936 a owl:Class ; + rdfs:label "Feature selection" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "A dimensionality reduction process that selects a subset of relevant features (variables, predictors) for use in model construction." ; + oboInOwl:hasExactSynonym "Attribute selection", + "Variable selection", + "Variable subset selection" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0943 ], + :operation_3935 . + +:operation_3937 a owl:Class ; + rdfs:label "Feature extraction" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "A dimensionality reduction process which builds (ideally) informative and non-redundant values (features) from an initial set of measured data, to aid subsequent generalization, learning or interpretation." ; + oboInOwl:hasExactSynonym "Feature projection" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0943 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + :operation_3935 . + +:operation_3938 a owl:Class ; + rdfs:label "Virtual screening" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Virtual screening is used in drug discovery to identify potential drug compounds. It involves searching libraries of small molecules in order to identify those molecules which are most likely to bind to a drug target (typically a protein receptor or enzyme)." ; + oboInOwl:hasNarrowSynonym "Ligand-based screening", + "Ligand-based virtual screening", + "Structure-based screening", + "Structured-based virtual screening", + "Virtual ligand screening" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Virtual screening is widely used for lead identification, lead optimization, and scaffold hopping during drug design and discovery." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0128 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1461 ], + :operation_0482, + :operation_4009 . + +:operation_3942 a owl:Class ; + rdfs:label "Tree dating" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "The application of phylogenetic and other methods to estimate paleogeographical events such as speciation." ; + oboInOwl:hasExactSynonym "Biogeographic dating", + "Speciation dating", + "Species tree dating", + "Tree-dating" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0324 . + +:operation_3946 a owl:Class ; + rdfs:label "Ecological modelling" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "The development and use of mathematical models and systems analysis for the description of ecological processes, and applications such as the sustainable management of resources." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1439 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0084 ], + :operation_0286, + :operation_2426 . + +:operation_3947 a owl:Class ; + rdfs:label "Phylogenetic tree reconciliation" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Mapping between gene tree nodes and species tree nodes or branches, to analyse and account for possible differences between gene histories and species histories, explaining this in terms of gene-scale events such as duplication, loss, transfer etc." ; + oboInOwl:hasExactSynonym "Gene tree / species tree reconciliation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods typically test for topological similarity between trees using for example a congruence index." ; + rdfs:subClassOf :operation_0325 . + +:operation_3950 a owl:Class ; + rdfs:label "Selection detection" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "The detection of genetic selection, or (the end result of) the process by which certain traits become more prevalent in a species than other traits." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2478 . + +:operation_3960 a owl:Class ; + rdfs:label "Principal component analysis" ; + :created_in "1.25" ; + oboInOwl:hasDefinition "A statistical procedure that uses an orthogonal transformation to convert a set of observations of possibly correlated variables into a set of values of linearly uncorrelated variables called principal components." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2238 . + +:operation_3962 a owl:Class ; + rdfs:label "Deletion detection" ; + :created_in "1.25" ; + oboInOwl:hasDefinition "Identify deletion events causing the number of repeats in the genome to vary between individuals." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3961 . + +:operation_3963 a owl:Class ; + rdfs:label "Duplication detection" ; + :created_in "1.25" ; + oboInOwl:hasDefinition "Identify duplication events causing the number of repeats in the genome to vary between individuals." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3961 . + +:operation_3964 a owl:Class ; + rdfs:label "Complex CNV detection" ; + :created_in "1.25" ; + oboInOwl:hasDefinition "Identify copy number variations which are complex, e.g. multi-allelic variations that have many structural alleles and have rearranged multiple times in the ancestral genomes." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3961 . + +:operation_3965 a owl:Class ; + rdfs:label "Amplification detection" ; + :created_in "1.25" ; + oboInOwl:hasDefinition "Identify amplification events causing the number of repeats in the genome to vary between individuals." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3961 . + +:operation_3968 a owl:Class ; + rdfs:label "Adhesin prediction" ; + :created_in "1.25" ; + oboInOwl:hasDefinition "Predict adhesins in protein sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "An adhesin is a cell-surface component that facilitate the adherence of a microorganism to a cell or surface. They are important virulence factors during establishment of infection and thus are targeted during vaccine development approaches that seek to block adhesin function and prevent adherence to host cell." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0804 ], + :operation_2429, + :operation_3092 . + +:operation_4008 a owl:Class ; + rdfs:label "Protein design" ; + :created_in 1.25 ; + oboInOwl:hasDefinition "Design new protein molecules with specific structural or functional properties." ; + oboInOwl:hasNarrowSynonym "Protein redesign", + "Rational protein design", + "de novo protein design" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2430 . + +:operation_4031 a owl:Class ; + rdfs:label "Power test" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "The estimation of the power of a test; that is the probability of correctly rejecting the null hypothesis when it is false." ; + oboInOwl:hasExactSynonym "Estimation of statistical power", + "Power analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0951 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3365 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2042 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2269 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3572 ], + :operation_2238 . + +:operation_4032 a owl:Class ; + rdfs:label "DNA modification prediction" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "The prediction of DNA modifications (e.g. N4-methylcytosine and N6-Methyladenine) using, for example, statistical models." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1772 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1276 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_3494 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3295 ], + :operation_0415 . + +:operation_4033 a owl:Class ; + rdfs:label "Disease transmission analysis" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "The analysis and simulation of disease transmission using, for example, statistical methods such as the SIR-model." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2048 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3305 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3324 ], + :operation_2426, + :operation_2945, + :operation_3664 . + +:operation_4034 a owl:Class ; + rdfs:label "Multiple testing correction" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "The correction of p-values from multiple statistical tests to correct for false positives." ; + oboInOwl:hasExactSynonym "FDR estimation", + "False discovery rate estimation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_3932 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2269 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_1669 ], + :operation_2238 . + +:organisation a owl:AnnotationProperty ; + rdfs:label "Organisation" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "'Organisation' trailing modifier (qualifier, 'organisation') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to an organisation that developed, standardised, and maintains the given data format." ; + oboInOwl:hasExactSynonym "Organization" ; + oboInOwl:inSubset :properties . + +:refactor_comment a owl:AnnotationProperty ; + rdfs:label "refactor_comment" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "A comment explaining the proposed refactoring, including name of person commenting (jison, mkalas etc.)." ; + oboInOwl:inSubset :properties . + +:regex a owl:AnnotationProperty ; + rdfs:label "Regular expression" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "'Regular expression' concept property ('regex' metadata tag) specifies the allowed values of types of identifiers (accessions). Applicable to some other types of data, too." ; + oboInOwl:inSubset :properties . + +:related_term a owl:AnnotationProperty ; + rdfs:label "Related term" ; + oboInOwl:hasDefinition "'Related term' concept property ('related_term'; supposedly a synonym modifier in OBO format) states a related term - not necessarily closely semantically related - that users (also non-specialists) may use when searching." ; + oboInOwl:inSubset :properties ; + rdfs:subPropertyOf oboInOwl:hasRelatedSynonym . + +:repository a owl:AnnotationProperty ; + rdfs:label "Repository" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "'Repository' trailing modifier (qualifier, 'repository') of 'xref' links of 'Format' concepts. When 'true', the link is pointing to the public source-code repository where the given data format is developed or maintained." ; + oboInOwl:hasExactSynonym "Public repository", + "Source-code repository" ; + oboInOwl:inSubset :properties . + +:thematic_editor a owl:AnnotationProperty ; + rdfs:label "thematic_editor" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "Name of thematic editor (http://biotools.readthedocs.io/en/latest/governance.html#registry-editors) responsible for this concept and its children." ; + oboInOwl:inSubset :properties . + +:topic_0079 a owl:Class ; + rdfs:label "Metabolites" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0154 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0083 a owl:Class ; + rdfs:label "Alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0080, + :topic_0081 ; + oboInOwl:hasDefinition "The alignment (equivalence between sites) of molecular sequences, structures or profiles (representing a sequence or structure alignment)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0085 a owl:Class ; + rdfs:label "Functional genomics" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The study of gene or protein functions and their interactions in totality in a given organism, tissue, cell etc." ; + oboInOwl:hasHumanReadableId "Functional_genomics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0622, + :topic_1775 . + +:topic_0090 a owl:Class ; + rdfs:label "Information retrieval" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_3071, + :topic_3489 ; + oboInOwl:hasDefinition "The search and query of data sources (typically databases or ontologies) in order to retrieve entries or other information." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0094 a owl:Class ; + rdfs:label "Nucleic acid thermodynamics" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0097 ; + oboInOwl:hasDefinition "The study of the thermodynamic properties of a nucleic acid." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0100 a owl:Class ; + rdfs:label "Nucleic acid restriction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0821 ; + oboInOwl:hasDefinition "Topic for the study of restriction enzymes, their cleavage sites and the restriction of nucleic acids." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0107 a owl:Class ; + rdfs:label "Genetic codes and codon usage" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0203 ; + oboInOwl:hasDefinition "The study of codon usage in nucleotide sequence(s), genetic codes and so on." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0109 a owl:Class ; + rdfs:label "Gene finding" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0114 ; + oboInOwl:hasDefinition "Methods that aims to identify, predict, model or analyse genes or gene structure in DNA sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This includes the study of promoters, coding regions, splice sites, etc. Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0110 a owl:Class ; + rdfs:label "Transcription" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0203 ; + oboInOwl:hasDefinition "The transcription of DNA into mRNA." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0111 a owl:Class ; + rdfs:label "Promoters" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0749 ; + oboInOwl:hasDefinition "Promoters in DNA sequences (region of DNA that facilitates the transcription of a particular gene by binding RNA polymerase and transcription factor proteins)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0112 a owl:Class ; + rdfs:label "Nucleic acid folding" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The folding (in 3D space) of nucleic acid molecules." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0097 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0122 a owl:Class ; + rdfs:label "Structural genomics" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The elucidation of the three dimensional structure for all (available) proteins in a given organism." ; + oboInOwl:hasHumanReadableId "Structural_genomics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0622, + :topic_1317 . + +:topic_0133 a owl:Class ; + rdfs:label "Two-dimensional gel electrophoresis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0121 ; + oboInOwl:hasDefinition "Two-dimensional gel electrophoresis image and related data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0134 a owl:Class ; + rdfs:label "Mass spectrometry" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "An analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3520 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0135 a owl:Class ; + rdfs:label "Protein microarrays" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0121 ; + oboInOwl:hasDefinition "Protein microarray data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0137 a owl:Class ; + rdfs:label "Protein hydropathy" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0123 ; + oboInOwl:hasDefinition "The study of the hydrophobic, hydrophilic and charge properties of a protein." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0141 a owl:Class ; + rdfs:label "Protein cleavage sites and proteolysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0121 ; + oboInOwl:hasDefinition "Enzyme or chemical cleavage sites and proteolytic or mass calculations on a protein sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0143 a owl:Class ; + rdfs:label "Protein structure comparison" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The comparison of two or more protein structures." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0081 ; + rdfs:comment "Use this concept for methods that are exclusively for protein structure." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0144 a owl:Class ; + rdfs:label "Protein residue interactions" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0130 ; + oboInOwl:hasDefinition "The processing and analysis of inter-atomic or inter-residue interactions in protein (3D) structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0147 a owl:Class ; + rdfs:label "Protein-protein interactions" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0128 ; + oboInOwl:hasDefinition "Protein-protein interactions, individual interactions and networks, protein complexes, protein functional coupling etc." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0148 a owl:Class ; + rdfs:label "Protein-ligand interactions" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0128 ; + oboInOwl:hasDefinition "Protein-ligand (small molecule) interactions." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0149 a owl:Class ; + rdfs:label "Protein-nucleic acid interactions" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0128 ; + oboInOwl:hasDefinition "Protein-DNA/RNA interactions." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0150 a owl:Class ; + rdfs:label "Protein design" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0130 ; + oboInOwl:hasDefinition "The design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0151 a owl:Class ; + rdfs:label "G protein-coupled receptors (GPCR)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0820 ; + oboInOwl:hasDefinition "G-protein coupled receptors (GPCRs)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0156 a owl:Class ; + rdfs:label "Sequence editing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0080, + :topic_0091 ; + oboInOwl:hasDefinition "Edit, convert or otherwise change a molecular sequence, either randomly or specifically." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0158 a owl:Class ; + rdfs:label "Sequence motifs" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0160 ; + oboInOwl:hasDefinition "Conserved patterns (motifs) in molecular sequences, that (typically) describe functional or other key sites." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0159 a owl:Class ; + rdfs:label "Sequence comparison" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The comparison of two or more molecular sequences, for example sequence alignment and clustering." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0080 ; + rdfs:comment "The comparison might be on the basis of sequence, physico-chemical or some other properties of the sequences." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0163 a owl:Class ; + rdfs:label "Sequence database search" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0080 ; + oboInOwl:hasDefinition "Search and retrieve molecular sequences that are similar to a sequence-based query (typically a simple sequence)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The query is a sequence-based entity such as another sequence, a motif or profile." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0164 a owl:Class ; + rdfs:label "Sequence clustering" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.7" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The comparison and grouping together of molecular sequences on the basis of their similarities." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0080 ; + rdfs:comment "This includes systems that generate, process and analyse sequence clusters." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0167 a owl:Class ; + rdfs:label "Structural (3D) profiles" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0081 ; + oboInOwl:hasDefinition "The processing, analysis or use of some type of structural (3D) profile or template; a computational entity (typically a numerical matrix) that is derived from and represents a structure or structure alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0172 a owl:Class ; + rdfs:label "Protein structure prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0082 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0173 a owl:Class ; + rdfs:label "Nucleic acid structure prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0097 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0174 a owl:Class ; + rdfs:label "Ab initio structure prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.7" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The prediction of three-dimensional structure of a (typically protein) sequence from first principles, using a physics-based or empirical scoring function and without using explicit structural templates." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0082 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0175 a owl:Class ; + rdfs:label "Homology modelling" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_2275 ; + oboInOwl:hasDefinition "The modelling of the three-dimensional structure of a protein using known sequence and structural data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0177 a owl:Class ; + rdfs:label "Molecular docking" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The modelling the structure of proteins in complex with small molecules or other macromolecules." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_2275 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0178 a owl:Class ; + rdfs:label "Protein secondary structure prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The prediction of secondary or supersecondary structure of protein sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0082 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0179 a owl:Class ; + rdfs:label "Protein tertiary structure prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The prediction of tertiary structure of protein sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0082 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0180 a owl:Class ; + rdfs:label "Protein fold recognition" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0082 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0182 a owl:Class ; + rdfs:label "Sequence alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.7" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The alignment of molecular sequences or sequence profiles (representing sequence alignments)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0080 ; + rdfs:comment "This includes the generation of alignments (the identification of equivalent sites), the analysis of alignments, editing, visualisation, alignment databases, the alignment (equivalence between sites) of sequence profiles (representing sequence alignments) and so on." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0183 a owl:Class ; + rdfs:label "Structure alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.7" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The superimposition of molecular tertiary structures or structural (3D) profiles (representing a structure or structure alignment)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0081 ; + rdfs:comment "This includes the generation, storage, analysis, rendering etc. of structure alignments." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0184 a owl:Class ; + rdfs:label "Threading" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0082 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0188 a owl:Class ; + rdfs:label "Sequence profiles and HMMs" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0160 ; + oboInOwl:hasDefinition "Sequence profiles; typically a positional, numerical matrix representing a sequence alignment." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Sequence profiles include position-specific scoring matrix (position weight matrix), hidden Markov models etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0191 a owl:Class ; + rdfs:label "Phylogeny reconstruction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_3293 ; + oboInOwl:hasDefinition "The reconstruction of a phylogeny (evolutionary relatedness amongst organisms), for example, by building a phylogenetic tree." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Currently too specific for the topic sub-ontology (but might be unobsoleted)." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0195 a owl:Class ; + rdfs:label "Virtual PCR" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0077 ; + oboInOwl:hasDefinition "Simulated polymerase chain reaction (PCR)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0200 a owl:Class ; + rdfs:label "Microarrays" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0203 ; + oboInOwl:hasDefinition "Microarrays, for example, to process microarray data or design probes and experiments." ; + oboInOwl:inSubset :obsolete ; + rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D046228" ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0204 a owl:Class ; + rdfs:label "Gene regulation" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The regulation of gene expression." ; + oboInOwl:hasNarrowSynonym "Regulatory genomics" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0203 . + +:topic_0208 a owl:Class ; + rdfs:label "Pharmacogenomics" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The influence of genotype on drug response, for example by correlating gene expression or single-nucleotide polymorphisms with drug efficacy or toxicity." ; + oboInOwl:hasHumanReadableId "Pharmacogenomics" ; + oboInOwl:hasNarrowSynonym "Pharmacogenetics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0202, + :topic_0622 . + +:topic_0209 a owl:Class ; + rdfs:label "Medicinal chemistry" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.1.4 Medicinal chemistry" ; + oboInOwl:hasDefinition "The design and chemical synthesis of bioactive molecules, for example drugs or potential drug compounds, for medicinal purposes." ; + oboInOwl:hasExactSynonym "Drug design" ; + oboInOwl:hasHumanReadableId "Medicinal_chemistry" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "This includes methods that search compound collections, generate or analyse drug 3D conformations, identify drug targets with structural docking etc." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3336, + :topic_3371 . + +:topic_0210 a owl:Class ; + rdfs:label "Fish" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0621 ; + oboInOwl:hasDefinition "Information on a specific fish genome including molecular sequences, genes and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0211 a owl:Class ; + rdfs:label "Flies" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0621 ; + oboInOwl:hasDefinition "Information on a specific fly genome including molecular sequences, genes and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0213 a owl:Class ; + rdfs:label "Mice or rats" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." ; + :obsolete_since "1.17" ; + :oldParent :topic_2820 ; + oboInOwl:consider :topic_0621 ; + oboInOwl:hasDefinition "Information on a specific mouse or rat genome including molecular sequences, genes and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The resource may be specific to a group of mice / rats or all mice / rats." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0215 a owl:Class ; + rdfs:label "Worms" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0621 ; + oboInOwl:hasDefinition "Information on a specific worm genome including molecular sequences, genes and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0217 a owl:Class ; + rdfs:label "Literature analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The processing and analysis of the bioinformatics literature and bibliographic data, such as literature search and query." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0218 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0220 a owl:Class ; + rdfs:label "Document, record and content management" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The management and manipulation of digital documents, including database records, files and reports." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3489 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0221 a owl:Class ; + rdfs:label "Sequence annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0219 ; + oboInOwl:hasDefinition "Annotation of a molecular sequence." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0222 a owl:Class ; + rdfs:label "Genome annotation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0219, + :topic_0621, + :topic_0622 ; + oboInOwl:hasDefinition "Annotation of a genome." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0593 a owl:Class ; + rdfs:label "NMR" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasBroadSynonym "Spectroscopy" ; + oboInOwl:hasDefinition "An analytical technique that exploits the magenetic properties of certain atomic nuclei to provide information on the structure, dynamics, reaction state and chemical environment of molecules." ; + oboInOwl:hasExactSynonym "NMR spectroscopy", + "Nuclear magnetic resonance spectroscopy" ; + oboInOwl:hasHumanReadableId "NMR" ; + oboInOwl:hasNarrowSynonym "HOESY", + "Heteronuclear Overhauser Effect Spectroscopy", + "NOESY", + "Nuclear Overhauser Effect Spectroscopy", + "ROESY", + "Rotational Frame Nuclear Overhauser Effect Spectroscopy" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_1317, + :topic_3382 . + +:topic_0594 a owl:Class ; + rdfs:label "Sequence classification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The classification of molecular sequences based on some measure of their similarity." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0080 ; + rdfs:comment "Methods including sequence motifs, profile and other diagnostic elements which (typically) represent conserved patterns (of residues or properties) in molecular sequences." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0595 a owl:Class ; + rdfs:label "Protein classification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0623 ; + oboInOwl:hasDefinition "primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0598 a owl:Class ; + rdfs:label "Sequence motif or profile" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0160 ; + oboInOwl:hasDefinition "Sequence motifs, or sequence profiles derived from an alignment of molecular sequences of a particular type." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This includes comparison, discovery, recognition etc. of sequence motifs." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0606 a owl:Class ; + rdfs:label "Literature data resources" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Data resources for the biological or biomedical literature, either a primary source of literature or some derivative." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3068 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0607 a owl:Class ; + rdfs:label "Laboratory information management" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Laboratory management and resources, for example, catalogues of biological resources for use in the lab including cell lines, viruses, plasmids, phages, DNA probes and primers and so on." ; + oboInOwl:hasHumanReadableId "Laboratory_Information_management" ; + oboInOwl:hasNarrowSynonym "Laboratory resources" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0605 . + +:topic_0608 a owl:Class ; + rdfs:label "Cell and tissue culture" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_2229 ; + oboInOwl:hasDefinition "General cell culture or data on a specific cell lines." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0612 a owl:Class ; + rdfs:label "Cell cycle" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_2229 ; + oboInOwl:hasDefinition "The cell cycle including key genes and proteins." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0613 a owl:Class ; + rdfs:label "Peptides and amino acids" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The physicochemical, biochemical or structural properties of amino acids or peptides." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0154 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0616 a owl:Class ; + rdfs:label "Organelles" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_2229 ; + oboInOwl:hasDefinition "A specific organelle, or organelles in general, typically the genes and proteins (or genome and proteome)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0617 a owl:Class ; + rdfs:label "Ribosomes" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_2229 ; + oboInOwl:hasDefinition "Ribosomes, typically of ribosome-related genes and proteins." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0618 a owl:Class ; + rdfs:label "Scents" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0154 ; + oboInOwl:hasDefinition "A database about scents." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0620 a owl:Class ; + rdfs:label "Drugs and target structures" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The structures of drugs, drug target, their interactions and binding affinities." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0154 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0624 a owl:Class ; + rdfs:label "Chromosomes" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Study of chromosomes." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0654 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0629 a owl:Class ; + rdfs:label "Gene expression and microarray" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0203 ; + oboInOwl:hasDefinition "Gene expression e.g. microarray data, northern blots, gene-indexed expression profiles etc." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0635 a owl:Class ; + rdfs:label "Specific protein resources" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0623 ; + oboInOwl:hasDefinition "A particular protein, protein family or other group of proteins." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0637 a owl:Class ; + rdfs:label "Taxonomy" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.25 Taxonomy" ; + oboInOwl:hasDefinition "Organism classification, identification and naming." ; + oboInOwl:hasHumanReadableId "Taxonomy" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3299 . + +:topic_0641 a owl:Class ; + rdfs:label "Repeat sequences" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0157 ; + oboInOwl:hasDefinition "The repetitive nature of molecular sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0642 a owl:Class ; + rdfs:label "Low complexity sequences" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0157 ; + oboInOwl:hasDefinition "The (character) complexity of molecular sequences, particularly regions of low complexity." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0644 a owl:Class ; + rdfs:label "Proteome" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0080 ; + oboInOwl:hasDefinition "A specific proteome including protein sequences and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0655 a owl:Class ; + rdfs:label "Coding RNA" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3512 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0660 a owl:Class ; + rdfs:label "rRNA" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0659 ; + oboInOwl:hasDefinition "One or more ribosomal RNA (rRNA) sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0663 a owl:Class ; + rdfs:label "tRNA" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0659 ; + oboInOwl:hasDefinition "One or more transfer RNA (tRNA) sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0694 a owl:Class ; + rdfs:label "Protein secondary structure" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Protein secondary structure or secondary structure alignments." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_2814 ; + rdfs:comment "This includes assignment, analysis, comparison, prediction, rendering etc. of secondary structure data." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0697 a owl:Class ; + rdfs:label "RNA structure" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0097 ; + oboInOwl:hasDefinition "RNA secondary or tertiary structure and alignments." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0698 a owl:Class ; + rdfs:label "Protein tertiary structure" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Protein tertiary structures." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_2814 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0722 a owl:Class ; + rdfs:label "Nucleic acid classification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0623 ; + oboInOwl:hasDefinition "Classification of nucleic acid sequences and structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0724 a owl:Class ; + rdfs:label "Protein families" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.14" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc., curation of a particular protein or protein family, or any other proteins that have been classified as members of a common group." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0623 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0740 a owl:Class ; + rdfs:label "Nucleic acid sequence alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Nucleotide sequence alignments." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0080 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0741 a owl:Class ; + rdfs:label "Protein sequence alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0080 ; + oboInOwl:hasDefinition "Protein sequence alignments." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "A sequence profile typically represents a sequence alignment." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0747 a owl:Class ; + rdfs:label "Nucleic acid sites and features" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0160, + :topic_0640 ; + oboInOwl:hasDefinition "The archival, detection, prediction and analysis ofpositional features such as functional sites in nucleotide sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0751 a owl:Class ; + rdfs:label "Phosphorylation sites" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.0" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0601, + :topic_0748 ; + oboInOwl:hasDefinition "Protein phosphorylation and phosphorylation sites in protein sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0753 a owl:Class ; + rdfs:label "Metabolic pathways" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Metabolic pathways." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0602 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0754 a owl:Class ; + rdfs:label "Signaling pathways" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Signaling pathways." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0602 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0767 a owl:Class ; + rdfs:label "Protein and peptide identification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0121 ; + oboInOwl:hasDefinition "Protein and peptide identification." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0769 a owl:Class ; + rdfs:label "Workflows" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Biological or biomedical analytical workflows or pipelines." ; + oboInOwl:hasExactSynonym "Pipelines" ; + oboInOwl:hasHumanReadableId "Workflows" ; + oboInOwl:hasNarrowSynonym "Software integration", + "Tool integration", + "Tool interoperability" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3071 . + +:topic_0770 a owl:Class ; + rdfs:label "Data types and objects" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.0" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0091 ; + oboInOwl:hasDefinition "Structuring data into basic types and (computational) objects." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0771 a owl:Class ; + rdfs:label "Theoretical biology" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_3307 ; + oboInOwl:hasDefinition "Theoretical biology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0779 a owl:Class ; + rdfs:label "Mitochondria" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_2229 ; + oboInOwl:hasDefinition "Mitochondria, typically of mitochondrial genes and proteins." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0781 a owl:Class ; + rdfs:label "Virology" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "VT 1.5.28" ; + oboInOwl:hasDefinition "Study of viruses, e.g. sequence and structural data, interactions of viral proteins, or a viral genome including molecular sequences, genes and annotation." ; + oboInOwl:hasHumanReadableId "Virology" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:topic_0782 a owl:Class ; + rdfs:label "Fungi" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." ; + :obsolete_since "1.17" ; + :oldParent :topic_2818 ; + oboInOwl:consider :topic_0621 ; + oboInOwl:hasDefinition "Fungi and molds, e.g. information on a specific fungal genome including molecular sequences, genes and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The resource may be specific to a fungus, a group of fungi or all fungi." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0783 a owl:Class ; + rdfs:label "Pathogens" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset). Definition is wrong anyway." ; + :obsolete_since "1.17" ; + :oldParent :topic_0621 ; + oboInOwl:consider :topic_0621 ; + oboInOwl:hasDefinition "Pathogens, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The resource may be specific to a pathogen, a group of pathogens or all pathogens." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0786 a owl:Class ; + rdfs:label "Arabidopsis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0780 ; + oboInOwl:hasDefinition "Arabidopsis-specific data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0787 a owl:Class ; + rdfs:label "Rice" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0780 ; + oboInOwl:hasDefinition "Rice-specific data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0796 a owl:Class ; + rdfs:label "Genetic mapping and linkage" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0102 ; + oboInOwl:hasDefinition "Informatics resources that aim to identify, map or analyse genetic markers in DNA sequences, for example to produce a genetic (linkage) map of a chromosome or genome or to analyse genetic linkage and synteny." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0797 a owl:Class ; + rdfs:label "Comparative genomics" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The study (typically comparison) of the sequence, structure or function of multiple genomes." ; + oboInOwl:hasHumanReadableId "Comparative_genomics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0622 . + +:topic_0798 a owl:Class ; + rdfs:label "Mobile genetic elements" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Mobile genetic elements, such as transposons, Plasmids, Bacteriophage elements and Group II introns." ; + oboInOwl:hasHumanReadableId "Mobile_genetic_elements" ; + oboInOwl:hasNarrowSynonym "Transposons" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0114 . + +:topic_0803 a owl:Class ; + rdfs:label "Human disease" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0634 ; + oboInOwl:hasDefinition "Human diseases, typically describing the genes, mutations and proteins implicated in disease." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0922 a owl:Class ; + rdfs:label "Primers" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "PCR primers and hybridisation oligos in a nucleic acid sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0632 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_1302 a owl:Class ; + rdfs:label "PolyA signal or sites" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3512 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_1304 a owl:Class ; + rdfs:label "CpG island and isochores" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "CpG rich regions (isochores) in a nucleotide sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3512 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_1305 a owl:Class ; + rdfs:label "Restriction sites" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Restriction enzyme recognition sites (restriction sites) in a nucleic acid sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3125 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_1307 a owl:Class ; + rdfs:label "Splice sites" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_3320, + :topic_3512 ; + oboInOwl:hasDefinition "Splice sites in a nucleotide sequence or alternative RNA splicing events." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_1308 a owl:Class ; + rdfs:label "Matrix/scaffold attachment sites" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Matrix/scaffold attachment regions (MARs/SARs) in a DNA sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3125 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_1311 a owl:Class ; + rdfs:label "Operon" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Operons (operators, promoters and genes) from a bacterial genome." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0114 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_1312 a owl:Class ; + rdfs:label "Promoters" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in a DNA sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0749 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_1456 a owl:Class ; + rdfs:label "Protein membrane regions" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0736 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_1811 a owl:Class ; + rdfs:label "Prokaryotes and Archaea" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." ; + :obsolete_since "1.17" ; + :oldParent :topic_0621 ; + oboInOwl:consider :topic_0621 ; + oboInOwl:hasDefinition "Specific bacteria or archaea, e.g. information on a specific prokaryote genome including molecular sequences, genes and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The resource may be specific to a prokaryote, a group of prokaryotes or all prokaryotes." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2225 a owl:Class ; + rdfs:label "Protein databases" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0078 ; + oboInOwl:hasDefinition "Protein data resources." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2226 a owl:Class ; + rdfs:label "Structure determination" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_1317 ; + oboInOwl:hasDefinition "Experimental methods for biomolecular structure determination, such as X-ray crystallography, nuclear magnetic resonance (NMR), circular dichroism (CD) spectroscopy, microscopy etc., including the assignment or modelling of molecular structure from such data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2230 a owl:Class ; + rdfs:label "Classification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0089 ; + oboInOwl:hasDefinition "Topic focused on identifying, grouping, or naming things in a structured way according to some schema based on observable relationships." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2232 a owl:Class ; + rdfs:label "Lipoproteins" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0820 ; + oboInOwl:hasDefinition "Lipoproteins (protein-lipid assemblies)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2257 a owl:Class ; + rdfs:label "Phylogeny visualisation" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0084 ; + oboInOwl:hasDefinition "Visualise a phylogeny, for example, render a phylogenetic tree." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2271 a owl:Class ; + rdfs:label "Structure database search" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0081 ; + oboInOwl:hasDefinition "Search for and retrieve molecular structures that are similar to a structure-based query (typically another structure or part of a structure)." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The query is a structure-based entity such as another structure, a 3D (structural) motif, 3D profile or template." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2276 a owl:Class ; + rdfs:label "Protein function prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.2" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_1775 ; + oboInOwl:hasDefinition "The prediction of functional properties of a protein." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2277 a owl:Class ; + rdfs:label "SNP" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_2885 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2278 a owl:Class ; + rdfs:label "Transmembrane protein prediction" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0082, + :topic_0820 ; + oboInOwl:hasDefinition "Predict transmembrane domains and topology in protein sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2280 a owl:Class ; + rdfs:label "Nucleic acid structure comparison" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0097, + :topic_1770 ; + oboInOwl:hasDefinition "The comparison two or more nucleic acid (typically RNA) secondary or tertiary structures." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "Use this concept for methods that are exclusively for nucleic acid structures." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2397 a owl:Class ; + rdfs:label "Exons" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Exons in a nucleotide sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3512 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2399 a owl:Class ; + rdfs:label "Gene transcription" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Transcription of DNA into RNA including the regulation of transcription." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3512 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2533 a owl:Class ; + rdfs:label "DNA mutation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "DNA mutation." ; + oboInOwl:hasHumanReadableId "DNA_mutation" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0199, + :topic_0654 . + +:topic_2640 a owl:Class ; + rdfs:label "Oncology" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.2.16 Oncology" ; + oboInOwl:hasDefinition "The study of cancer, for example, genes and proteins implicated in cancer." ; + oboInOwl:hasExactSynonym "Cancer biology" ; + oboInOwl:hasHumanReadableId "Oncology" ; + oboInOwl:hasNarrowSynonym "Cancer", + "Neoplasm", + "Neoplasms" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_2661 a owl:Class ; + rdfs:label "Toxins and targets" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Structural and associated data for toxic chemical substances." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0154 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2754 a owl:Class ; + rdfs:label "Introns" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Introns in a nucleotide sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3512 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2807 a owl:Class ; + rdfs:label "Tool topic" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A topic concerning primarily bioinformatics software tools, typically the broad function or purpose of a tool." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0003 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2809 a owl:Class ; + rdfs:label "Study topic" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "A general area of bioinformatics study, typically the broad scope or category of content of a bioinformatics journal or conference proceeding." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0003 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2811 a owl:Class ; + rdfs:label "Nomenclature" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0089 ; + oboInOwl:hasDefinition "Biological nomenclature (naming), symbols and terminology." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2813 a owl:Class ; + rdfs:label "Disease genes and proteins" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0634 ; + oboInOwl:hasDefinition "The genes, gene variations and proteins involved in one or more specific diseases." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2815 a owl:Class ; + rdfs:label "Human biology" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The study of human beings in general, including the human genome and proteome." ; + oboInOwl:hasExactSynonym "Humans" ; + oboInOwl:hasHumanReadableId "Human_biology" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:topic_2816 a owl:Class ; + rdfs:label "Gene resources" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_3053 ; + oboInOwl:hasDefinition "Informatics resource (typically a database) primarily focused on genes." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2817 a owl:Class ; + rdfs:label "Yeast" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0621 ; + oboInOwl:hasDefinition "Yeast, e.g. information on a specific yeast genome including molecular sequences, genes and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2819 a owl:Class ; + rdfs:label "Invertebrates" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." ; + :obsolete_since "1.17" ; + :oldParent :topic_3500 ; + oboInOwl:consider :topic_0621 ; + oboInOwl:hasDefinition "Invertebrates, e.g. information on a specific invertebrate genome including molecular sequences, genes and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The resource may be specific to an invertebrate, a group of invertebrates or all invertebrates." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2821 a owl:Class ; + rdfs:label "Unicellular eukaryotes" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." ; + :obsolete_since "1.17" ; + :oldParent :topic_2818 ; + oboInOwl:consider :topic_0621 ; + oboInOwl:hasDefinition "Unicellular eukaryotes, e.g. information on a unicellular eukaryote genome including molecular sequences, genes and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The resource may be specific to a unicellular eukaryote, a group of unicellular eukaryotes or all unicellular eukaryotes." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2826 a owl:Class ; + rdfs:label "Protein structure alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_2814 ; + oboInOwl:hasDefinition "Protein secondary or tertiary structure alignments." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2828 a owl:Class ; + rdfs:label "X-ray diffraction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The study of matter and their structure by means of the diffraction of X-rays, typically the diffraction pattern caused by the regularly spaced atoms of a crystalline sample." ; + oboInOwl:hasExactSynonym "Crystallography" ; + oboInOwl:hasHumanReadableId "X-ray_diffraction" ; + oboInOwl:hasNarrowSynonym "X-ray crystallography", + "X-ray microscopy" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_1317, + :topic_3382 . + +:topic_2829 a owl:Class ; + rdfs:label "Ontologies, nomenclature and classification" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0089 ; + oboInOwl:hasDefinition "Conceptualisation, categorisation and naming of entities or phenomena within biology or bioinformatics." ; + oboInOwl:inSubset :obsolete ; + rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D002965" ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2830 a owl:Class ; + rdfs:label "Immunoproteins and antigens" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Immunity-related proteins and their ligands." ; + oboInOwl:hasHumanReadableId "Immunoproteins_and_antigens" ; + oboInOwl:hasNarrowSynonym "Antigens", + "Immunopeptides", + "Immunoproteins", + "Therapeutic antibodies" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "This includes T cell receptors (TR), major histocompatibility complex (MHC), immunoglobulin superfamily (IgSF) / antibodies, major histocompatibility complex superfamily (MhcSF), etc.\"" ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_0623, + :topic_0804 . + +:topic_2839 a owl:Class ; + rdfs:label "Molecules" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_3047 ; + oboInOwl:hasDefinition "Specific molecules, including large molecules built from repeating subunits (macromolecules) and small molecules of biological significance." ; + oboInOwl:hasRelatedSynonym "CHEBI:23367" ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2840 a owl:Class ; + rdfs:label "Toxicology" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.1.9 Toxicology" ; + oboInOwl:hasDefinition "Toxins and the adverse effects of these chemical substances on living organisms." ; + oboInOwl:hasHumanReadableId "Toxicology" ; + oboInOwl:hasNarrowSynonym "Computational toxicology", + "Toxicoinformatics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303, + :topic_3377 . + +:topic_2842 a owl:Class ; + rdfs:label "High-throughput sequencing" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta13" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_3168 ; + oboInOwl:hasDefinition "Parallelised sequencing processes that are capable of sequencing many thousands of sequences simultaneously." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2846 a owl:Class ; + rdfs:label "Gene regulatory networks" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Gene regulatory networks." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0602 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2847 a owl:Class ; + rdfs:label "Disease (specific)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "beta12orEarlier" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0634 ; + oboInOwl:hasDefinition "Informatics resources dedicated to one or more specific diseases (not diseases in general)." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2867 a owl:Class ; + rdfs:label "VNTR" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Variable number of tandem repeat (VNTR) polymorphism in a DNA sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_2885 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2868 a owl:Class ; + rdfs:label "Microsatellites" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasAlternativeId :data_2868 ; + oboInOwl:hasDefinition "Microsatellite polymorphism in a DNA sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_2885 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2869 a owl:Class ; + rdfs:label "RFLP" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasAlternativeId :data_2869 ; + oboInOwl:hasDefinition "Restriction fragment length polymorphisms (RFLP) in a DNA sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_2885 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2953 a owl:Class ; + rdfs:label "Nucleic acid design" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0097 ; + oboInOwl:hasDefinition "Topic for the design of nucleic acid sequences with specific conformations." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3032 a owl:Class ; + rdfs:label "Primer or probe design" ; + :created_in "beta13" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0632 ; + oboInOwl:hasDefinition "The design of primers for PCR and DNA amplification or the design of molecular probes." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3038 a owl:Class ; + rdfs:label "Structure databases" ; + :created_in "beta13" ; + :obsolete_since "1.2" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0081 ; + oboInOwl:hasDefinition "Molecular secondary or tertiary (3D) structural data resources, typically of proteins and nucleic acids." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3039 a owl:Class ; + rdfs:label "Nucleic acid structure" ; + :created_in "beta13" ; + :obsolete_since "1.2" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0097 ; + oboInOwl:hasDefinition "Nucleic acid (secondary or tertiary) structure, such as whole structures, structural features and associated annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3041 a owl:Class ; + rdfs:label "Sequence databases" ; + :created_in "beta13" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0080 ; + oboInOwl:hasDefinition "Molecular sequence data resources, including sequence sites, alignments, motifs and profiles." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3042 a owl:Class ; + rdfs:label "Nucleic acid sequences" ; + :created_in "beta13" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0080 ; + oboInOwl:hasDefinition "Nucleotide sequences and associated concepts such as sequence sites, alignments, motifs and profiles." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3043 a owl:Class ; + rdfs:label "Protein sequences" ; + :created_in "beta13" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Protein sequences and associated concepts such as sequence sites, alignments, motifs and profiles." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0080 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3044 a owl:Class ; + rdfs:label "Protein interaction networks" ; + :created_in "beta13" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0128 ; + oboInOwl:hasDefinition "Protein interaction networks." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3048 a owl:Class ; + rdfs:label "Mammals" ; + :created_in "beta13" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0621 ; + oboInOwl:hasDefinition "Mammals, e.g. information on a specific mammal genome including molecular sequences, genes and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3050 a owl:Class ; + rdfs:label "Biodiversity" ; + :created_in "beta13" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.5 Biodiversity conservation" ; + oboInOwl:hasDefinition "The degree of variation of life forms within a given ecosystem, biome or an entire planet." ; + oboInOwl:hasHumanReadableId "Biodiversity" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D044822" ; + rdfs:subClassOf :topic_0610 . + +:topic_3052 a owl:Class ; + rdfs:label "Sequence clusters and classification" ; + :created_in "beta13" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0080 ; + oboInOwl:hasDefinition "The comparison, grouping together and classification of macromolecules on the basis of sequence similarity." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This includes the results of sequence clustering, ortholog identification, assignment to families, annotation etc." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3055 a owl:Class ; + rdfs:label "Quantitative genetics" ; + :created_in "beta13" ; + :isdebtag true ; + oboInOwl:hasDefinition "The genes and genetic mechanisms such as Mendelian inheritance that underly continuous phenotypic traits (such as height or weight)." ; + oboInOwl:hasHumanReadableId "Quantitative_genetics" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0625 . + +:topic_3056 a owl:Class ; + rdfs:label "Population genetics" ; + :created_in "beta13" ; + :isdebtag true ; + oboInOwl:hasDefinition "The distribution of allele frequencies in a population of organisms and its change subject to evolutionary processes including natural selection, genetic drift, mutation and gene flow." ; + oboInOwl:hasHumanReadableId "Population_genetics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3053 . + +:topic_3060 a owl:Class ; + rdfs:label "Regulatory RNA" ; + :created_in "beta13" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Regulatory RNA sequences including microRNA (miRNA) and small interfering RNA (siRNA)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0659 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3061 a owl:Class ; + rdfs:label "Documentation and help" ; + :created_in "beta13" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The documentation of resources such as tools, services and databases and how to get help." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3068 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3062 a owl:Class ; + rdfs:label "Genetic organisation" ; + :created_in "beta13" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0114 ; + oboInOwl:hasDefinition "The structural and functional organisation of genes and other genetic elements." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3063 a owl:Class ; + rdfs:label "Medical informatics" ; + :created_in "beta13" ; + :isdebtag true ; + oboInOwl:hasDefinition "The application of information technology to health, disease and biomedicine." ; + oboInOwl:hasExactSynonym "Biomedical informatics", + "Clinical informatics", + "Health and disease", + "Health informatics", + "Healthcare informatics" ; + oboInOwl:hasHumanReadableId "Medical_informatics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0605 . + +:topic_3067 a owl:Class ; + rdfs:label "Anatomy" ; + :created_in "beta13" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.1.1 Anatomy and morphology" ; + oboInOwl:hasDefinition "The form and function of the structures of living organisms." ; + oboInOwl:hasHumanReadableId "Anatomy" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3344 . + +:topic_3072 a owl:Class ; + rdfs:label "Sequence feature detection" ; + :created_in "beta13" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0160 ; + oboInOwl:hasDefinition "The detection of the positional features, such as functional and other key sites, in molecular sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D058977" ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3073 a owl:Class ; + rdfs:label "Nucleic acid feature detection" ; + :created_in "beta13" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_3511 ; + oboInOwl:hasDefinition "The detection of positional features such as functional sites in nucleotide sequences." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3074 a owl:Class ; + rdfs:label "Protein feature detection" ; + :created_in "beta13" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0160 ; + oboInOwl:hasDefinition "The detection, identification and analysis of positional protein sequence features, such as functional sites." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3075 a owl:Class ; + rdfs:label "Biological system modelling" ; + :created_in "beta13" ; + :obsolete_since "1.2" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_2259 ; + oboInOwl:hasDefinition "Topic for modelling biological systems in mathematical terms." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3078 a owl:Class ; + rdfs:label "Genes and proteins resources" ; + :created_in "beta13" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0623 ; + oboInOwl:hasDefinition "Specific genes and/or their encoded proteins or a family or other grouping of related genes and proteins." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3118 a owl:Class ; + rdfs:label "Protein topological domains" ; + :created_in "beta13" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Topological domains such as cytoplasmic regions in a protein." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0736 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3120 a owl:Class ; + rdfs:label "Protein variants" ; + :created_in "beta13" ; + :isdebtag true ; + oboInOwl:hasAlternativeId :data_3120 ; + oboInOwl:hasDefinition "Protein sequence variants produced e.g. from alternative splicing, alternative promoter usage, alternative initiation and ribosomal frameshifting." ; + oboInOwl:hasHumanReadableId "Protein_variants" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0108 . + +:topic_3123 a owl:Class ; + rdfs:label "Expression signals" ; + :created_in "beta13" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0749 ; + oboInOwl:hasDefinition "Regions within a nucleic acid sequence containing a signal that alters a biological function." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3126 a owl:Class ; + rdfs:label "Nucleic acid repeats" ; + :created_in "beta13" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Repetitive elements within a nucleic acid sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0157 ; + rdfs:comment "This includes long terminal repeats (LTRs); sequences (typically retroviral) directly repeated at both ends of a defined sequence and other types of repeating unit." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3127 a owl:Class ; + rdfs:label "DNA replication and recombination" ; + :created_in "beta13" ; + :isdebtag true ; + oboInOwl:hasDefinition "DNA replication or recombination." ; + oboInOwl:hasHumanReadableId "DNA_replication_and_recombination" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_0654 . + +:topic_3135 a owl:Class ; + rdfs:label "Signal or transit peptide" ; + :created_in "beta13" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Coding sequences for a signal or transit peptide." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3512 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3139 a owl:Class ; + rdfs:label "Sequence tagged sites" ; + :created_in "beta13" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Sequence tagged sites (STS) in nucleic acid sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3511 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3169 a owl:Class ; + rdfs:label "ChIP-seq" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "The analysis of protein-DNA interactions where chromatin immunoprecipitation (ChIP) is used in combination with massively parallel DNA sequencing to identify the binding sites of DNA-associated proteins." ; + oboInOwl:hasExactSynonym "ChIP-sequencing", + "Chip Seq", + "Chip sequencing", + "Chip-sequencing" ; + oboInOwl:hasHumanReadableId "ChIP-seq" ; + oboInOwl:hasNarrowSynonym "ChIP-exo" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3168, + :topic_3656 . + +:topic_3170 a owl:Class ; + rdfs:label "RNA-Seq" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "A topic concerning high-throughput sequencing of cDNA to measure the RNA content (transcriptome) of a sample, for example, to investigate how different alleles of a gene are expressed, detect post-transcriptional mutations or identify gene fusions." ; + oboInOwl:hasExactSynonym "RNA sequencing", + "RNA-Seq analysis", + "Small RNA sequencing", + "Small RNA-Seq", + "Small-Seq", + "Transcriptome profiling", + "WTSS", + "Whole transcriptome shotgun sequencing" ; + oboInOwl:hasHumanReadableId "RNA-Seq" ; + oboInOwl:hasNarrowSynonym "MicroRNA sequencing", + "miRNA-seq" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes small RNA profiling (small RNA-Seq), for example to find novel small RNAs, characterize mutations and analyze expression of small RNAs." ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_3168 . + +:topic_3171 a owl:Class ; + rdfs:label "DNA methylation" ; + :created_in "1.1" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "DNA methylation including bisulfite sequencing, methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3295 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3172 a owl:Class ; + rdfs:label "Metabolomics" ; + :created_in "1.1" ; + :isdebtag true ; + oboInOwl:hasDefinition "The systematic study of metabolites, the chemical processes they are involved, and the chemical fingerprints of specific cellular processes in a whole cell, tissue, organ or organism." ; + oboInOwl:hasHumanReadableId "Metabolomics" ; + oboInOwl:hasNarrowSynonym "Exometabolomics", + "LC-MS-based metabolomics", + "MS-based metabolomics", + "MS-based targeted metabolomics", + "MS-based untargeted metabolomics", + "Mass spectrometry-based metabolomics", + "Metabolites", + "Metabolome", + "Metabonomics", + "NMR-based metabolomics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D055432" ; + rdfs:subClassOf :topic_3391 . + +:topic_3173 a owl:Class ; + rdfs:label "Epigenomics" ; + :created_in "1.1" ; + :isdebtag true ; + oboInOwl:hasDefinition "The study of the epigenetic modifications of a whole cell, tissue, organism etc." ; + oboInOwl:hasHumanReadableId "Epigenomics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "Epigenetics concerns the heritable changes in gene expression owing to mechanisms other than DNA sequence variation." ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D057890" ; + rdfs:subClassOf :topic_0622, + :topic_3295 . + +:topic_3176 a owl:Class ; + rdfs:label "DNA packaging" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "DNA-histone complexes (chromatin), organisation of chromatin into nucleosomes and packaging into higher-order structures." ; + oboInOwl:hasHumanReadableId "DNA_packaging" ; + oboInOwl:hasNarrowSynonym "Nucleosome positioning" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D042003" ; + rdfs:subClassOf :topic_0654 . + +:topic_3177 a owl:Class ; + rdfs:label "DNA-Seq" ; + :created_in "1.1" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_3168 ; + oboInOwl:hasDefinition "A topic concerning high-throughput sequencing of randomly fragmented genomic DNA, for example, to investigate whole-genome sequencing and resequencing, SNP discovery, identification of copy number variations and chromosomal rearrangements." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3178 a owl:Class ; + rdfs:label "RNA-Seq alignment" ; + :created_in "1.1" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0196 ; + oboInOwl:hasDefinition "The alignment of sequences of (typically millions) of short reads to a reference genome. This is a specialised topic within sequence alignment, especially because of complications arising from RNA splicing." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3179 a owl:Class ; + rdfs:label "ChIP-on-chip" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Experimental techniques that combine chromatin immunoprecipitation ('ChIP') with microarray ('chip'). ChIP-on-chip is used for high-throughput study protein-DNA interactions." ; + oboInOwl:hasExactSynonym "ChIP-chip" ; + oboInOwl:hasHumanReadableId "ChIP-on-chip" ; + oboInOwl:hasNarrowSynonym "ChiP" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3656 . + +:topic_3263 a owl:Class ; + rdfs:label "Data security" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "The protection of data, such as patient health data, from damage or unwanted access from unauthorised users." ; + oboInOwl:hasExactSynonym "Data privacy" ; + oboInOwl:hasHumanReadableId "Data_security" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3071 . + +:topic_3298 a owl:Class ; + rdfs:label "Phenomics" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDefinition "Phenomes, or the study of the change in phenotype (the physical and biochemical traits of organisms) in response to genetic and environmental factors." ; + oboInOwl:hasHumanReadableId "Phenomics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0625, + :topic_3299, + :topic_3391 . + +:topic_3302 a owl:Class ; + rdfs:label "Parasitology" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDefinition "The biology of parasites." ; + oboInOwl:hasHumanReadableId "Parasitology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3344 . + +:topic_3304 a owl:Class ; + rdfs:label "Neurobiology" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasBroadSynonym "Neuroscience" ; + oboInOwl:hasDbXref "VT 3.1.5 Neuroscience" ; + oboInOwl:hasDefinition "The study of the nervous system and brain; its anatomy, physiology and function." ; + oboInOwl:hasHumanReadableId "Neurobiology" ; + oboInOwl:hasNarrowSynonym "Molecular neuroscience", + "Neurophysiology", + "Systemetic neuroscience" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3344 . + +:topic_3306 a owl:Class ; + rdfs:label "Biophysics" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.9 Biophysics" ; + oboInOwl:hasDefinition "The use of physics to study biological system." ; + oboInOwl:hasHumanReadableId "Biophysics" ; + oboInOwl:hasNarrowSynonym "Medical physics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070, + :topic_3318 . + +:topic_3322 a owl:Class ; + rdfs:label "Respiratory medicine" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.2.25 Respiratory systems" ; + oboInOwl:hasDefinition "The study of respiratory system." ; + oboInOwl:hasExactSynonym "Pulmonary medicine", + "Pulmonology" ; + oboInOwl:hasHumanReadableId "Respiratory_medicine" ; + oboInOwl:hasNarrowSynonym "Pulmonary disorders", + "Respiratory disease" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3323 a owl:Class ; + rdfs:label "Metabolic disease" ; + :created_in "1.3" ; + :obsolete_since "1.4" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_3407 ; + oboInOwl:hasDefinition "The study of metabolic diseases." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3325 a owl:Class ; + rdfs:label "Rare diseases" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "The study of rare diseases." ; + oboInOwl:hasHumanReadableId "Rare_diseases" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0634 . + +:topic_3332 a owl:Class ; + rdfs:label "Computational chemistry" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.7.4 Computational chemistry" ; + oboInOwl:hasDefinition "Topic concerning the development and application of theory, analytical methods, mathematical models and computational simulation of chemical systems." ; + oboInOwl:hasHumanReadableId "Computational_chemistry" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3314, + :topic_3316 . + +:topic_3334 a owl:Class ; + rdfs:label "Neurology" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDefinition "The branch of medicine that deals with the anatomy, functions and disorders of the nervous system." ; + oboInOwl:hasHumanReadableId "Neurology" ; + oboInOwl:hasNarrowSynonym "Neurological disorders" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3335 a owl:Class ; + rdfs:label "Cardiology" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.2.22 Peripheral vascular disease", + "VT 3.2.4 Cardiac and Cardiovascular systems" ; + oboInOwl:hasDefinition "The diseases and abnormalities of the heart and circulatory system." ; + oboInOwl:hasExactSynonym "Cardiovascular medicine" ; + oboInOwl:hasHumanReadableId "Cardiology" ; + oboInOwl:hasNarrowSynonym "Cardiovascular disease", + "Heart disease" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3337 a owl:Class ; + rdfs:label "Biobank" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDefinition "Repositories of biological samples, typically human, for basic biological and clinical research." ; + oboInOwl:hasExactSynonym "Tissue collection", + "biobanking" ; + oboInOwl:hasHumanReadableId "Biobank" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3277 . + +:topic_3338 a owl:Class ; + rdfs:label "Mouse clinic" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Laboratory study of mice, for example, phenotyping, and mutagenesis of mouse cell lines." ; + oboInOwl:hasExactSynonym "Laboratory mouse" ; + oboInOwl:hasHumanReadableId "Mouse_clinic" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3277 . + +:topic_3339 a owl:Class ; + rdfs:label "Microbial collection" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Collections of microbial cells including bacteria, yeasts and moulds." ; + oboInOwl:hasHumanReadableId "Microbial_collection" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3277 . + +:topic_3340 a owl:Class ; + rdfs:label "Cell culture collection" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Collections of cells grown under laboratory conditions, specifically, cells from multi-cellular eukaryotes and especially animal cells." ; + oboInOwl:hasHumanReadableId "Cell_culture_collection" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3277 . + +:topic_3341 a owl:Class ; + rdfs:label "Clone library" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Collections of DNA, including both collections of cloned molecules, and populations of micro-organisms that store and propagate cloned DNA." ; + oboInOwl:hasHumanReadableId "Clone_library" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3277 . + +:topic_3343 a owl:Class ; + rdfs:label "Compound libraries and screening" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Collections of chemicals, typically for use in high-throughput screening experiments." ; + oboInOwl:hasHumanReadableId "Compound_libraries_and_screening" ; + oboInOwl:hasNarrowSynonym "Chemical library", + "Chemical screening", + "Compound library", + "Small chemical compounds libraries", + "Small compounds libraries", + "Target identification and validation" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3336 . + +:topic_3345 a owl:Class ; + rdfs:label "Data identity and mapping" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Topic concerning the identity of biological entities, or reports on such entities, and the mapping of entities and records in different databases." ; + oboInOwl:hasHumanReadableId "Data_identity_and_mapping" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:subClassOf :topic_3071 . + +:topic_3346 a owl:Class ; + rdfs:label "Sequence search" ; + :created_in "1.3" ; + :obsolete_since "1.12" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The search and retrieval from a database on the basis of molecular sequence similarity." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0080 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3360 a owl:Class ; + rdfs:label "Biomarkers" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDefinition "Objective indicators of biological state often used to assess health, and determinate treatment." ; + oboInOwl:hasExactSynonym "Diagnostic markers" ; + oboInOwl:hasHumanReadableId "Biomarkers" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:topic_3368 a owl:Class ; + rdfs:label "Biomaterials" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "Any matter, surface or construct that interacts with a biological system." ; + oboInOwl:hasHumanReadableId "Biomaterials" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3297 . + +:topic_3369 a owl:Class ; + rdfs:label "Chemical biology" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDefinition "The use of synthetic chemistry to study and manipulate biological systems." ; + oboInOwl:hasHumanReadableId "Chemical_biology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070, + :topic_3371 . + +:topic_3370 a owl:Class ; + rdfs:label "Analytical chemistry" ; + :created_in "1.4" ; + oboInOwl:hasDbXref "VT 1.7.1 Analytical chemistry" ; + oboInOwl:hasDefinition "The study of the separation, identification, and quantification of the chemical components of natural and artificial materials." ; + oboInOwl:hasHumanReadableId "Analytical_chemistry" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3314 . + +:topic_3372 a owl:Class ; + rdfs:label "Software engineering" ; + :created_in "1.4" ; + oboInOwl:hasDbXref "1.2.12 Programming languages", + "Software engineering", + "VT 1.2.1 Algorithms", + "VT 1.2.14 Software engineering", + "VT 1.2.7 Data structures" ; + oboInOwl:hasDefinition "The process that leads from an original formulation of a computing problem to executable programs." ; + oboInOwl:hasExactSynonym "Computer programming", + "Software development" ; + oboInOwl:hasHumanReadableId "Software_engineering" ; + oboInOwl:hasNarrowSynonym "Algorithms", + "Data structures", + "Programming languages" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3316 . + +:topic_3373 a owl:Class ; + rdfs:label "Drug development" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDefinition "The process of bringing a new drug to market once a lead compounds has been identified through drug discovery." ; + oboInOwl:hasExactSynonym "Drug development science", + "Medicine development", + "Medicines development" ; + oboInOwl:hasHumanReadableId "Drug_development" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3376 . + +:topic_3374 a owl:Class ; + rdfs:label "Biotherapeutics" ; + :created_in "1.4" ; + oboInOwl:hasBroadSynonym "Drug delivery", + "Drug formulation", + "Drug formulation and delivery" ; + oboInOwl:hasDefinition "The process of formulating and administering a pharmaceutical compound to achieve a therapeutic effect." ; + oboInOwl:hasHumanReadableId "Biotherapeutics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:subClassOf :topic_3376 . + +:topic_3375 a owl:Class ; + rdfs:label "Drug metabolism" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDefinition "The study of how a drug interacts with the body." ; + oboInOwl:hasHumanReadableId "Drug_metabolism" ; + oboInOwl:hasNarrowSynonym "ADME", + "Drug absorption", + "Drug distribution", + "Drug excretion", + "Pharmacodynamics", + "Pharmacokinetics", + "Pharmacokinetics and pharmacodynamics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3376 . + +:topic_3378 a owl:Class ; + rdfs:label "Pharmacovigilance" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The detection, assessment, understanding and prevention of adverse effects of medicines." ; + oboInOwl:hasHumanReadableId "Pharmacovigilence" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "Pharmacovigilence concerns safety once a drug has gone to market." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3377 . + +:topic_3379 a owl:Class ; + rdfs:label "Preclinical and clinical studies" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The testing of new medicines, vaccines or procedures on animals (preclinical) and humans (clinical) prior to their approval by regulatory authorities." ; + oboInOwl:hasHumanReadableId "Preclinical_and_clinical_studies" ; + oboInOwl:hasNarrowSynonym "Clinical studies", + "Clinical study", + "Clinical trial", + "Drug trials", + "Preclinical studies", + "Preclinical study" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3376, + :topic_3678 . + +:topic_3383 a owl:Class ; + rdfs:label "Bioimaging" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The use of imaging techniques to understand biology." ; + oboInOwl:hasExactSynonym "Biological imaging" ; + oboInOwl:hasHumanReadableId "Biological_imaging" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3382 . + +:topic_3385 a owl:Class ; + rdfs:label "Light microscopy" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The use of optical instruments to magnify the image of an object." ; + oboInOwl:hasHumanReadableId "Light_microscopy" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3382 . + +:topic_3387 a owl:Class ; + rdfs:label "Marine biology" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.18 Marine and Freshwater biology" ; + oboInOwl:hasDefinition "The study of organisms in the ocean or brackish waters." ; + oboInOwl:hasHumanReadableId "Marine_biology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:topic_3388 a owl:Class ; + rdfs:label "Molecular medicine" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDefinition "The identification of molecular and genetic causes of disease and the development of interventions to correct them." ; + oboInOwl:hasHumanReadableId "Molecular_medicine" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3342 . + +:topic_3390 a owl:Class ; + rdfs:label "Nutritional science" ; + :created_in "1.4" ; + oboInOwl:hasDbXref "VT 3.3.7 Nutrition and Dietetics" ; + oboInOwl:hasDefinition "The study of the effects of food components on the metabolism, health, performance and disease resistance of humans and animals. It also includes the study of human behaviours related to food choices." ; + oboInOwl:hasExactSynonym "Nutrition", + "Nutrition science" ; + oboInOwl:hasHumanReadableId "Nutritional_science" ; + oboInOwl:hasNarrowSynonym "Dietetics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3344 . + +:topic_3393 a owl:Class ; + rdfs:label "Quality affairs" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The processes that need to be in place to ensure the quality of products for human or animal use." ; + oboInOwl:hasExactSynonym "Quality assurance" ; + oboInOwl:hasHumanReadableId "Quality_affairs" ; + oboInOwl:hasNarrowSynonym "Good clinical practice", + "Good laboratory practice", + "Good manufacturing practice" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:subClassOf :topic_3376 . + +:topic_3394 a owl:Class ; + rdfs:label "Regulatory affairs" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The protection of public health by controlling the safety and efficacy of products in areas including pharmaceuticals, veterinary medicine, medical devices, pesticides, agrochemicals, cosmetics, and complementary medicines." ; + oboInOwl:hasExactSynonym "Healthcare RA" ; + oboInOwl:hasHumanReadableId "Regulatory_affairs" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3376 . + +:topic_3395 a owl:Class ; + rdfs:label "Regenerative medicine" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDefinition "Biomedical approaches to clinical interventions that involve the use of stem cells." ; + oboInOwl:hasExactSynonym "Stem cell research" ; + oboInOwl:hasHumanReadableId "Regenerative_medicine" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3344 . + +:topic_3396 a owl:Class ; + rdfs:label "Systems medicine" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDefinition "An interdisciplinary field of study that looks at the dynamic systems of the human body as part of an integrted whole, incorporating biochemical, physiological, and environmental interactions that sustain life." ; + oboInOwl:hasHumanReadableId "Systems_medicine" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3397 a owl:Class ; + rdfs:label "Veterinary medicine" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "Topic concerning the branch of medicine that deals with the prevention, diagnosis, and treatment of disease, disorder and injury in animals." ; + oboInOwl:hasHumanReadableId "Veterinary_medicine" ; + oboInOwl:hasNarrowSynonym "Clinical veterinary medicine" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3398 a owl:Class ; + rdfs:label "Bioengineering" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The application of biological concepts and methods to the analytical and synthetic methodologies of engineering." ; + oboInOwl:hasExactSynonym "Biological engineering" ; + oboInOwl:hasHumanReadableId "Bioengineering" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3297 . + +:topic_3399 a owl:Class ; + rdfs:label "Geriatric medicine" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasBroadSynonym "Ageing", + "Aging", + "Gerontology" ; + oboInOwl:hasDbXref "VT 3.2.10 Geriatrics and gerontology" ; + oboInOwl:hasDefinition "The branch of medicine dealing with the diagnosis, treatment and prevention of disease in older people, and the problems specific to aging." ; + oboInOwl:hasExactSynonym "Geriatrics" ; + oboInOwl:hasHumanReadableId "Geriatric_medicine" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3400 a owl:Class ; + rdfs:label "Allergy, clinical immunology and immunotherapeutics" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.2.1 Allergy" ; + oboInOwl:hasDefinition "Health issues related to the immune system and their prevention, diagnosis and management." ; + oboInOwl:hasHumanReadableId "Allergy_clinical_immunology_and_immunotherapeutics" ; + oboInOwl:hasNarrowSynonym "Allergy", + "Clinical immunology", + "Immune disorders", + "Immunomodulators", + "Immunotherapeutics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + , + ; + rdfs:subClassOf :topic_3303 . + +:topic_3401 a owl:Class ; + rdfs:label "Pain medicine" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDefinition "The prevention of pain and the evaluation, treatment and rehabilitation of persons in pain." ; + oboInOwl:hasExactSynonym "Algiatry", + "Pain management" ; + oboInOwl:hasHumanReadableId "Pain_medicine" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3402 a owl:Class ; + rdfs:label "Anaesthesiology" ; + :created_in "1.4" ; + oboInOwl:hasDbXref "VT 3.2.2 Anaesthesiology" ; + oboInOwl:hasDefinition "Anaesthesia and anaesthetics." ; + oboInOwl:hasExactSynonym "Anaesthetics" ; + oboInOwl:hasHumanReadableId "Anaesthesiology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3403 a owl:Class ; + rdfs:label "Critical care medicine" ; + :created_in "1.4" ; + oboInOwl:hasDbXref "VT 3.2.5 Critical care/Emergency medicine" ; + oboInOwl:hasDefinition "The multidisciplinary that cares for patients with acute, life-threatening illness or injury." ; + oboInOwl:hasExactSynonym "Acute medicine", + "Emergency medicine", + "Intensive care medicine" ; + oboInOwl:hasHumanReadableId "Critical_care_medicine" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3404 a owl:Class ; + rdfs:label "Dermatology" ; + :created_in "1.4" ; + oboInOwl:hasDbXref "VT 3.2.7 Dermatology and venereal diseases" ; + oboInOwl:hasDefinition "The branch of medicine that deals with prevention, diagnosis and treatment of disorders of the skin, scalp, hair and nails." ; + oboInOwl:hasHumanReadableId "Dermatology" ; + oboInOwl:hasNarrowSynonym "Dermatological disorders" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3405 a owl:Class ; + rdfs:label "Dentistry" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The study, diagnosis, prevention and treatments of disorders of the oral cavity, maxillofacial area and adjacent structures." ; + oboInOwl:hasHumanReadableId "Dentistry" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3406 a owl:Class ; + rdfs:label "Ear, nose and throat medicine" ; + :created_in "1.4" ; + oboInOwl:hasDbXref "VT 3.2.20 Otorhinolaryngology" ; + oboInOwl:hasDefinition "The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the ear, nose and throat." ; + oboInOwl:hasExactSynonym "Audiovestibular medicine", + "Otolaryngology", + "Otorhinolaryngology" ; + oboInOwl:hasHumanReadableId "Ear_nose_and_throat_medicine" ; + oboInOwl:hasNarrowSynonym "Head and neck disorders" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3408 a owl:Class ; + rdfs:label "Haematology" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.2.11 Hematology" ; + oboInOwl:hasDefinition "The branch of medicine that deals with the blood, blood-forming organs and blood diseases." ; + oboInOwl:hasHumanReadableId "Haematology" ; + oboInOwl:hasNarrowSynonym "Blood disorders", + "Haematological disorders" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3409 a owl:Class ; + rdfs:label "Gastroenterology" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.2.8 Gastroenterology and hepatology" ; + oboInOwl:hasDefinition "The branch of medicine that deals with disorders of the oesophagus, stomach, duodenum, jejenum, ileum, large intestine, sigmoid colon and rectum." ; + oboInOwl:hasHumanReadableId "Gastroenterology" ; + oboInOwl:hasNarrowSynonym "Gastrointestinal disorders" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3410 a owl:Class ; + rdfs:label "Gender medicine" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The study of the biological and physiological differences between males and females and how they effect differences in disease presentation and management." ; + oboInOwl:hasHumanReadableId "Gender_medicine" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3411 a owl:Class ; + rdfs:label "Gynaecology and obstetrics" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.2.15 Obstetrics and gynaecology" ; + oboInOwl:hasDefinition "The branch of medicine that deals with the health of the female reproductive system, pregnancy and birth." ; + oboInOwl:hasHumanReadableId "Gynaecology_and_obstetrics" ; + oboInOwl:hasNarrowSynonym "Gynaecological disorders", + "Gynaecology", + "Obstetrics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_3303 . + +:topic_3412 a owl:Class ; + rdfs:label "Hepatic and biliary medicine" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDefinition "The branch of medicine that deals with the liver, gallbladder, bile ducts and bile." ; + oboInOwl:hasExactSynonym "Hepatology" ; + oboInOwl:hasHumanReadableId "Hepatic_and_biliary_medicine" ; + oboInOwl:hasNarrowSynonym "Liver disorders" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + "Hepatobiliary medicine" ; + rdfs:subClassOf :topic_3303 . + +:topic_3413 a owl:Class ; + rdfs:label "Infectious tropical disease" ; + :created_in "1.4" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The branch of medicine that deals with the infectious diseases of the tropics." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3324 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3414 a owl:Class ; + rdfs:label "Trauma medicine" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The branch of medicine that treats body wounds or shock produced by sudden physical injury, as from violence or accident." ; + oboInOwl:hasExactSynonym "Traumatology" ; + oboInOwl:hasHumanReadableId "Trauma_medicine" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3415 a owl:Class ; + rdfs:label "Medical toxicology" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDefinition "The branch of medicine that deals with the diagnosis, management and prevention of poisoning and other adverse health effects caused by medications, occupational and environmental toxins, and biological agents." ; + oboInOwl:hasHumanReadableId "Medical_toxicology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3416 a owl:Class ; + rdfs:label "Musculoskeletal medicine" ; + :created_in "1.4" ; + oboInOwl:hasDbXref "VT 3.2.19 Orthopaedics", + "VT 3.2.26 Rheumatology" ; + oboInOwl:hasDefinition "The branch of medicine that deals with the prevention, diagnosis, and treatment of disorders of the muscle, bone and connective tissue. It incorporates aspects of orthopaedics, rheumatology, rehabilitation medicine and pain medicine." ; + oboInOwl:hasHumanReadableId "Musculoskeletal_medicine" ; + oboInOwl:hasNarrowSynonym "Musculoskeletal disorders", + "Orthopaedics", + "Rheumatology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + , + ; + rdfs:subClassOf :topic_3303 . + +:topic_3417 a owl:Class ; + rdfs:label "Ophthalmology" ; + :created_in "1.4" ; + oboInOwl:hasBroadSynonym "Optometry" ; + oboInOwl:hasDbXref "VT 3.2.17 Ophthalmology", + "VT 3.2.18 Optometry" ; + oboInOwl:hasDefinition "The branch of medicine that deals with disorders of the eye, including eyelid, optic nerve/visual pathways and occular muscles." ; + oboInOwl:hasHumanReadableId "Ophthalmology" ; + oboInOwl:hasNarrowSynonym "Eye disoders" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3418 a owl:Class ; + rdfs:label "Paediatrics" ; + :created_in "1.4" ; + oboInOwl:hasDbXref "VT 3.2.21 Paediatrics" ; + oboInOwl:hasDefinition "The branch of medicine that deals with the medical care of infants, children and adolescents." ; + oboInOwl:hasExactSynonym "Child health" ; + oboInOwl:hasHumanReadableId "Paediatrics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3419 a owl:Class ; + rdfs:label "Psychiatry" ; + :created_in "1.4" ; + oboInOwl:hasBroadSynonym "Mental health" ; + oboInOwl:hasDbXref "VT 3.2.23 Psychiatry" ; + oboInOwl:hasDefinition "The branch of medicine that deals with the management of mental illness, emotional disturbance and abnormal behaviour." ; + oboInOwl:hasHumanReadableId "Psychiatry" ; + oboInOwl:hasNarrowSynonym "Psychiatric disorders" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3420 a owl:Class ; + rdfs:label "Reproductive health" ; + :created_in "1.4" ; + oboInOwl:hasDbXref "VT 3.2.3 Andrology" ; + oboInOwl:hasDefinition "The health of the reproductive processes, functions and systems at all stages of life." ; + oboInOwl:hasHumanReadableId "Reproductive_health" ; + oboInOwl:hasNarrowSynonym "Andrology", + "Family planning", + "Fertility medicine", + "Reproductive disorders" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3421 a owl:Class ; + rdfs:label "Surgery" ; + :created_in "1.4" ; + oboInOwl:hasDbXref "VT 3.2.28 Transplantation" ; + oboInOwl:hasDefinition "The use of operative, manual and instrumental techniques on a patient to investigate and/or treat a pathological condition or help improve bodily function or appearance." ; + oboInOwl:hasHumanReadableId "Surgery" ; + oboInOwl:hasNarrowSynonym "Transplantation" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3422 a owl:Class ; + rdfs:label "Urology and nephrology" ; + :created_in "1.4" ; + oboInOwl:hasDbXref "VT 3.2.29 Urology and nephrology" ; + oboInOwl:hasDefinition "The branches of medicine and physiology focussing on the function and disorders of the urinary system in males and females, the reproductive system in males, and the kidney." ; + oboInOwl:hasHumanReadableId "Urology_and_nephrology" ; + oboInOwl:hasNarrowSynonym "Kidney disease", + "Nephrology", + "Urological disorders", + "Urology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_3303 . + +:topic_3423 a owl:Class ; + rdfs:label "Complementary medicine" ; + :created_in "1.4" ; + oboInOwl:hasBroadSynonym "Alternative medicine", + "Holistic medicine", + "Integrative medicine" ; + oboInOwl:hasDbXref "VT 3.2.12 Integrative and Complementary medicine" ; + oboInOwl:hasDefinition "Medical therapies that fall beyond the scope of conventional medicine but may be used alongside it in the treatment of disease and ill health." ; + oboInOwl:hasHumanReadableId "Complementary_medicine" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3444 a owl:Class ; + rdfs:label "MRI" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Techniques that uses magnetic fields and radiowaves to form images, typically to investigate the anatomy and physiology of the human body." ; + oboInOwl:hasExactSynonym "MRT", + "Magnetic resonance imaging", + "Magnetic resonance tomography", + "NMRI", + "Nuclear magnetic resonance imaging" ; + oboInOwl:hasHumanReadableId "MRI" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3382 . + +:topic_3448 a owl:Class ; + rdfs:label "Neutron diffraction" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "The study of matter by studying the diffraction pattern from firing neutrons at a sample, typically to determine atomic and/or magnetic structure." ; + oboInOwl:hasExactSynonym "Neutron diffraction experiment" ; + oboInOwl:hasHumanReadableId "Neutron_diffraction" ; + oboInOwl:hasNarrowSynonym "Elastic neutron scattering", + "Neutron microscopy" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_1317, + :topic_3382 . + +:topic_3452 a owl:Class ; + rdfs:label "Tomography" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Imaging in sections (sectioning), through the use of a wave-generating device (tomograph) that generates an image (a tomogram)." ; + oboInOwl:hasExactSynonym "CT", + "Computed tomography", + "TDM" ; + oboInOwl:hasHumanReadableId "Tomography" ; + oboInOwl:hasNarrowSynonym "Electron tomography", + "PET", + "Positron emission tomography", + "X-ray tomography" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3382 . + +:topic_3473 a owl:Class ; + rdfs:label "Data mining" ; + :created_in "1.7" ; + :isdebtag true ; + oboInOwl:hasBroadSynonym "KDD", + "Knowledge discovery in databases" ; + oboInOwl:hasDbXref "VT 1.3.2 Data mining" ; + oboInOwl:hasDefinition "The discovery of patterns in large data sets and the extraction and trasnsformation of those patterns into a useful format." ; + oboInOwl:hasHumanReadableId "Data_mining" ; + oboInOwl:hasNarrowSynonym "Pattern recognition" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3316 . + +:topic_3474 a owl:Class ; + rdfs:label "Machine learning" ; + :created_in "1.7" ; + oboInOwl:hasBroadSynonym "Artificial Intelligence" ; + oboInOwl:hasDbXref "VT 1.2.2 Artificial Intelligence (expert systems, machine learning, robotics)" ; + oboInOwl:hasDefinition "A topic concerning the application of artificial intelligence methods to algorithms, in order to create methods that can learn from data in order to generate an output, rather than relying on explicitly encoded information only." ; + oboInOwl:hasHumanReadableId "Machine_learning" ; + oboInOwl:hasNarrowSynonym "Active learning", + "Ensembl learning", + "Kernel methods", + "Knowledge representation", + "Neural networks", + "Recommender system", + "Reinforcement learning", + "Supervised learning", + "Unsupervised learning" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3316 . + +:topic_3514 a owl:Class ; + rdfs:label "Protein-ligand interactions" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Protein-ligand (small molecule) interaction(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0128 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3515 a owl:Class ; + rdfs:label "Protein-drug interactions" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Protein-drug interaction(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0128 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3516 a owl:Class ; + rdfs:label "Genotyping experiment" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Genotype experiment including case control, population, and family studies. These might use array based methods and re-sequencing methods." ; + oboInOwl:hasHumanReadableId "Genotyping_experiment" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3361 . + +:topic_3517 a owl:Class ; + rdfs:label "GWAS study" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Genome-wide association study experiments." ; + oboInOwl:hasExactSynonym "GWAS", + "GWAS analysis", + "Genome-wide association study" ; + oboInOwl:hasHumanReadableId "GWAS_study" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3678 . + +:topic_3518 a owl:Class ; + rdfs:label "Microarray experiment" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Microarray experiments including conditions, protocol, sample:data relationships etc." ; + oboInOwl:hasExactSynonym "Microarrays" ; + oboInOwl:hasHumanReadableId "Microarray_experiment" ; + oboInOwl:hasNarrowSynonym "Gene expression microarray", + "Genotyping array", + "Methylation array", + "MicroRNA array", + "Multichannel microarray", + "One channel microarray", + "Proprietary platform micoarray", + "RNA chips", + "RNA microarrays", + "Reverse phase protein array", + "SNP array", + "Tiling arrays", + "Tissue microarray", + "Two channel microarray", + "aCGH microarray", + "mRNA microarray", + "miRNA array" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This might specify which raw data file relates to which sample and information on hybridisations, e.g. which are technical and which are biological replicates." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3361 . + +:topic_3519 a owl:Class ; + rdfs:label "PCR experiment" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "PCR experiments, e.g. quantitative real-time PCR." ; + oboInOwl:hasExactSynonym "Polymerase chain reaction" ; + oboInOwl:hasHumanReadableId "PCR_experiment" ; + oboInOwl:hasNarrowSynonym "Quantitative PCR", + "RT-qPCR", + "Real Time Quantitative PCR" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3361 . + +:topic_3521 a owl:Class ; + rdfs:label "2D PAGE experiment" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Two-dimensional gel electrophoresis experiments, gels or spots in a gel." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3520 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3522 a owl:Class ; + rdfs:label "Northern blot experiment" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Northern Blot experiments." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3520 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3523 a owl:Class ; + rdfs:label "RNAi experiment" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "RNAi experiments." ; + oboInOwl:hasHumanReadableId "RNAi_experiment" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3361 . + +:topic_3524 a owl:Class ; + rdfs:label "Simulation experiment" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Biological computational model experiments (simulation), for example the minimum information required in order to permit its correct interpretation and reproduction." ; + oboInOwl:hasHumanReadableId "Simulation_experiment" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:subClassOf :topic_3361 . + +:topic_3525 a owl:Class ; + rdfs:label "Protein-nucleic acid interactions" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Protein-DNA/RNA interaction(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0128 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3526 a owl:Class ; + rdfs:label "Protein-protein interactions" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Protein-protein interaction(s), including interactions between protein domains." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0128 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3527 a owl:Class ; + rdfs:label "Cellular process pathways" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Cellular process pathways." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0602 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3528 a owl:Class ; + rdfs:label "Disease pathways" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Disease pathways, typically of human disease." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0602 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3529 a owl:Class ; + rdfs:label "Environmental information processing pathways" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Environmental information processing pathways." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0602 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3530 a owl:Class ; + rdfs:label "Genetic information processing pathways" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Genetic information processing pathways." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0602 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3531 a owl:Class ; + rdfs:label "Protein super-secondary structure" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Super-secondary structure of protein sequence(s)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3542 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3533 a owl:Class ; + rdfs:label "Protein active sites" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Catalytic residues (active site) of an enzyme." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3510 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3535 a owl:Class ; + rdfs:label "Protein-nucleic acid binding sites" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "RNA and DNA-binding proteins and binding sites in protein sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3534 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3536 a owl:Class ; + rdfs:label "Protein cleavage sites" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Cleavage sites (for a proteolytic enzyme or agent) in a protein sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3510 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3537 a owl:Class ; + rdfs:label "Protein chemical modifications" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Chemical modification of a protein." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0601 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3538 a owl:Class ; + rdfs:label "Protein disordered structure" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Disordered structure in a protein." ; + oboInOwl:hasExactSynonym "Protein features (disordered structure)" ; + oboInOwl:hasHumanReadableId "Protein_disordered_structure" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_2814 . + +:topic_3539 a owl:Class ; + rdfs:label "Protein domains" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Structural domains or 3D folds in a protein or polypeptide chain." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0736 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3540 a owl:Class ; + rdfs:label "Protein key folding sites" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Key residues involved in protein folding." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3510 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3541 a owl:Class ; + rdfs:label "Protein post-translational modifications" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Post-translation modifications in a protein sequence, typically describing the specific sites involved." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0601 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3543 a owl:Class ; + rdfs:label "Protein sequence repeats" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Short repetitive subsequences (repeat sequences) in a protein sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0157 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3544 a owl:Class ; + rdfs:label "Protein signal peptides" ; + :created_in "1.8" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Signal peptides or signal peptide cleavage sites in protein sequences." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_3510 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3569 a owl:Class ; + rdfs:label "Applied mathematics" ; + :created_in "1.10" ; + oboInOwl:hasDbXref "VT 1.1.1 Applied mathematics" ; + oboInOwl:hasDefinition "The application of mathematics to specific problems in science, typically by the formulation and analysis of mathematical models." ; + oboInOwl:hasHumanReadableId "Applied_mathematics" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3315 . + +:topic_3570 a owl:Class ; + rdfs:label "Pure mathematics" ; + :created_in "1.10" ; + oboInOwl:hasDbXref "VT 1.1.1 Pure mathematics" ; + oboInOwl:hasDefinition "The study of abstract mathematical concepts." ; + oboInOwl:hasHumanReadableId "Pure_mathematics" ; + oboInOwl:hasNarrowSynonym "Linear algebra" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3315 . + +:topic_3571 a owl:Class ; + rdfs:label "Data governance" ; + :created_in "1.10" ; + oboInOwl:hasDefinition "The control of data entry and maintenance to ensure the data meets defined standards, qualities or constraints." ; + oboInOwl:hasHumanReadableId "Data_governance" ; + oboInOwl:hasNarrowSynonym "Data stewardship" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D030541" ; + rdfs:subClassOf :topic_3071 . + +:topic_3573 a owl:Class ; + rdfs:label "Freshwater biology" ; + :created_in "1.10" ; + oboInOwl:hasBroadSynonym "Freshwater science" ; + oboInOwl:hasDbXref "VT 1.5.18 Marine and Freshwater biology" ; + oboInOwl:hasDefinition "The study of organisms in freshwater ecosystems." ; + oboInOwl:hasHumanReadableId "Freshwater_biology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:topic_3574 a owl:Class ; + rdfs:label "Human genetics" ; + :created_in "1.10" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.1.2 Human genetics" ; + oboInOwl:hasDefinition "The study of inheritance in human beings." ; + oboInOwl:hasHumanReadableId "Human_genetics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3053 . + +:topic_3575 a owl:Class ; + rdfs:label "Tropical medicine" ; + :created_in "1.10" ; + oboInOwl:hasDbXref "VT 3.3.14 Tropical medicine" ; + oboInOwl:hasDefinition "Health problems that are prevalent in tropical and subtropical regions." ; + oboInOwl:hasHumanReadableId "Tropical_medicine" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3576 a owl:Class ; + rdfs:label "Medical biotechnology" ; + :created_in "1.10" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.3.14 Tropical medicine", + "VT 3.4 Medical biotechnology", + "VT 3.4.1 Biomedical devices", + "VT 3.4.2 Health-related biotechnology" ; + oboInOwl:hasDefinition "Biotechnology applied to the medical sciences and the development of medicines." ; + oboInOwl:hasHumanReadableId "Medical_biotechnology" ; + oboInOwl:hasNarrowSynonym "Pharmaceutical biotechnology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3297 . + +:topic_3577 a owl:Class ; + rdfs:label "Personalised medicine" ; + :created_in "1.10" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.4.5 Molecular diagnostics" ; + oboInOwl:hasDefinition "An approach to medicine whereby decisions, practices and are tailored to the individual patient based on their predicted response or risk of disease." ; + oboInOwl:hasExactSynonym "Precision medicine" ; + oboInOwl:hasHumanReadableId "Personalised_medicine" ; + oboInOwl:hasNarrowSynonym "Molecular diagnostics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3673 a owl:Class ; + rdfs:label "Whole genome sequencing" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Laboratory technique to sequence the complete DNA sequence of an organism's genome at a single time." ; + oboInOwl:hasExactSynonym "Genome sequencing", + "WGS" ; + oboInOwl:hasHumanReadableId "Whole_genome_sequencing" ; + oboInOwl:hasNarrowSynonym "De novo genome sequencing", + "Whole genome resequencing" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3168 . + +:topic_3674 a owl:Class ; + rdfs:label "Methylated DNA immunoprecipitation" ; + :created_in "1.12" ; + :documentation ; + oboInOwl:hasDefinition "Laboratory technique to sequence the methylated regions in DNA." ; + oboInOwl:hasExactSynonym "MeDIP-chip", + "MeDIP-seq", + "mDIP" ; + oboInOwl:hasHumanReadableId "Methylated_DNA_immunoprecipitation" ; + oboInOwl:hasNarrowSynonym "BS-Seq", + "Bisulfite sequencing", + "MeDIP", + "Methylated DNA immunoprecipitation (MeDIP)", + "Methylation sequencing", + "WGBS", + "Whole-genome bisulfite sequencing", + "methy-seq", + "methyl-seq" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3656 . + +:topic_3676 a owl:Class ; + rdfs:label "Exome sequencing" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Laboratory technique to sequence all the protein-coding regions in a genome, i.e., the exome." ; + oboInOwl:hasExactSynonym "Exome", + "Exome analysis", + "Exome capture", + "Targeted exome capture", + "WES", + "Whole exome sequencing" ; + oboInOwl:hasHumanReadableId "Exome_sequencing" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "Exome sequencing is considered a cheap alternative to whole genome sequencing." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3168 . + +:topic_3679 a owl:Class ; + rdfs:label "Animal study" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "The design of an experiment involving non-human animals." ; + oboInOwl:hasHumanReadableId "Animal_study" ; + oboInOwl:hasNarrowSynonym "Challenge study" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3386, + :topic_3678 . + +:topic_3794 a owl:Class ; + rdfs:label "RNA immunoprecipitation" ; + :created_in "1.17" ; + oboInOwl:hasDefinition "An antibody-based technique used to map in vivo RNA-protein interactions." ; + oboInOwl:hasExactSynonym "RIP" ; + oboInOwl:hasHumanReadableId "RNA_immunoprecipitation" ; + oboInOwl:hasNarrowSynonym "CLIP", + "CLIP-seq", + "HITS-CLIP", + "PAR-CLIP", + "iCLIP" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3656 . + +:topic_3796 a owl:Class ; + rdfs:label "Population genomics" ; + :created_in "1.17" ; + oboInOwl:hasDefinition "Large-scale study (typically comparison) of DNA sequences of populations." ; + oboInOwl:hasHumanReadableId "Population_genomics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0622 . + +:topic_3810 a owl:Class ; + rdfs:label "Agricultural science" ; + :created_in "1.20" ; + oboInOwl:hasBroadSynonym "Agriculture", + "Agroecology", + "Agronomy" ; + oboInOwl:hasDefinition "Multidisciplinary study, research and development within the field of agriculture." ; + oboInOwl:hasHumanReadableId "Agricultural_science" ; + oboInOwl:hasNarrowSynonym "Agricultural biotechnology", + "Agricultural economics", + "Animal breeding", + "Animal husbandry", + "Animal nutrition", + "Farming systems research", + "Food process engineering", + "Food security", + "Horticulture", + "Phytomedicine", + "Plant breeding", + "Plant cultivation", + "Plant nutrition", + "Plant pathology", + "Soil science" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:topic_3837 a owl:Class ; + rdfs:label "Metagenomic sequencing" ; + :created_in "1.20" ; + oboInOwl:hasDefinition "Approach which samples, in parallel, all genes in all organisms present in a given sample, e.g. to provide insight into biodiversity and function." ; + oboInOwl:hasExactSynonym "Shotgun metagenomic sequencing" ; + oboInOwl:hasHumanReadableId "Metagenomic_sequencing" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3168 . + +:topic_3895 a owl:Class ; + rdfs:label "Synthetic biology" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "The application of multi-disciplinary science and technology for the construction of artificial biological systems for diverse applications." ; + oboInOwl:hasNarrowSynonym "Biomimeic chemistry" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070, + :topic_3297 . + +:topic_3912 a owl:Class ; + rdfs:label "Genetic engineering" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "The application of biotechnology to directly manipulate an organism's genes." ; + oboInOwl:hasExactSynonym "Genetic manipulation", + "Genetic modification" ; + oboInOwl:hasHumanReadableId "Genetic_engineering" ; + oboInOwl:hasNarrowSynonym "Genome editing", + "Genome engineering" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3053, + :topic_3297 . + +:topic_3922 a owl:Class ; + rdfs:label "Proteogenomics" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "A field of biological research focused on the discovery and identification of peptides, typically by comparing mass spectra against a protein database." ; + oboInOwl:hasHumanReadableId "Proteogenomics" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0622 . + +:topic_3930 a owl:Class ; + rdfs:label "Immunogenetics" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "A biomedical field that bridges immunology and genetics, to study the genetic basis of the immune system." ; + oboInOwl:hasExactSynonym "Immune system genetics", + "Immungenetics", + "Immunology and genetics" ; + oboInOwl:hasHumanReadableId "Immunogenetics" ; + oboInOwl:hasNarrowSynonym "Immunogenes" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This involves the study of often complex genetic traits underlying diseases involving defects in the immune system. For example, identifying target genes for therapeutic approaches, or genetic variations involved in immunological pathology." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0804, + :topic_3053 . + +:topic_3931 a owl:Class ; + rdfs:label "Chemometrics" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Interdisciplinary science focused on extracting information from chemical systems by data analytical approaches, for example multivariate statistics, applied mathematics, and computer science." ; + oboInOwl:hasHumanReadableId "Chemometrics" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_2258 . + +:topic_3934 a owl:Class ; + rdfs:label "Cytometry" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Cytometry is the measurement of the characteristics of cells." ; + oboInOwl:hasHumanReadableId "Cytometry" ; + oboInOwl:hasNarrowSynonym "Flow cytometry", + "Image cytometry", + "Mass cytometry" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3361 . + +:topic_3939 a owl:Class ; + rdfs:label "Metabolic engineering" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Biotechnology approach that seeks to optimize cellular genetic and regulatory processes in order to increase the cells' production of a certain substance." ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3297 . + +:topic_3940 a owl:Class ; + rdfs:label "Chromosome conformation capture" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Molecular biology methods used to analyze the spatial organization of chromatin in a cell." ; + oboInOwl:hasExactSynonym "3C technologies", + "3C-based methods", + "Chromosome conformation analysis" ; + oboInOwl:hasHumanReadableId "Chromosome_conformation_capture" ; + oboInOwl:hasNarrowSynonym "Chromatin accessibility", + "Chromatin accessibility assay" ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3361 . + +:topic_3941 a owl:Class ; + rdfs:label "Metatranscriptomics" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "The study of microbe gene expression within natural environments (i.e. the metatranscriptome)." ; + oboInOwl:hasHumanReadableId "Metatranscriptomics" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "Metatranscriptomics methods can be used for whole gene expression profiling of complex microbial communities." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0203, + :topic_3308 . + +:topic_3943 a owl:Class ; + rdfs:label "Paleogenomics" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "The reconstruction and analysis of genomic information in extinct species." ; + oboInOwl:hasHumanReadableId "Paleogenomics" ; + oboInOwl:hasNarrowSynonym "Ancestral genomes", + "Paleogenetics" ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0622 . + +:topic_3944 a owl:Class ; + rdfs:label "Cladistics" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "The biological classification of organisms by categorizing them in groups (\"clades\") based on their most recent common ancestor." ; + oboInOwl:hasHumanReadableId "Cladistics" ; + oboInOwl:hasNarrowSynonym "Tree of life" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0080, + :topic_0084 . + +:topic_3945 a owl:Class ; + rdfs:label "Molecular evolution" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "The study of the process and mechanism of change of biomolecules such as DNA, RNA, and proteins across generations." ; + oboInOwl:hasHumanReadableId "Molecular_evolution" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0625, + :topic_3299, + :topic_3391 . + +:topic_3948 a owl:Class ; + rdfs:label "Immunoinformatics" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Immunoinformatics is the field of computational biology that deals with the study of immunoloogical questions. Immunoinformatics is at the interface between immunology and computer science. It takes advantage of computational, statistical, mathematical approaches and enhances the understanding of immunological knowledge." ; + oboInOwl:hasExactSynonym "Computational immunology" ; + oboInOwl:hasHumanReadableId "Immunoinformatics" ; + rdfs:comment "This involves the study of often complex genetic traits underlying diseases involving defects in the immune system. For example, identifying target genes for therapeutic approaches, or genetic variations involved in immunological pathology." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0605, + :topic_0804 . + +:topic_3954 a owl:Class ; + rdfs:label "Echography" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "A diagnostic imaging technique based on the application of ultrasound." ; + oboInOwl:hasExactSynonym "Standardized echography", + "Ultrasound imaging" ; + oboInOwl:hasHumanReadableId "Echography" ; + oboInOwl:hasNarrowSynonym "Diagnostic sonography", + "Medical ultrasound", + "Standard echography", + "Ultrasonography" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3382 . + +:topic_3955 a owl:Class ; + rdfs:label "Fluxomics" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Experimental approaches to determine the rates of metabolic reactions - the metabolic fluxes - within a biological entity." ; + oboInOwl:hasHumanReadableId "Fluxomics" ; + rdfs:comment "The \"fluxome\" is the complete set of metabolic fluxes in a cell, and is a dynamic aspect of phenotype." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3391 . + +:topic_3957 a owl:Class ; + rdfs:label "Protein interaction experiment" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "An experiment for studying protein-protein interactions." ; + oboInOwl:hasHumanReadableId "Protein_interaction_experiment" ; + oboInOwl:hasNarrowSynonym "Co-immunoprecipitation", + "Phage display", + "Yeast one-hybrid", + "Yeast two-hybrid" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This used to have the ID http://edamontology.org/topic_3557 but the numerical part (owing to an error) duplicated http://edamontology.org/operation_3557 ('Imputation'). ID of this concept set to http://edamontology.org/topic_3957 in EDAM 1.24." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3361 . + +:topic_3958 a owl:Class ; + rdfs:label "Copy number variation" ; + :created_in "1.25" ; + oboInOwl:hasDefinition "A DNA structural variation, specifically a duplication or deletion event, resulting in sections of the genome to be repeated, or the number of repeats in the genome to vary between individuals." ; + oboInOwl:hasHumanReadableId "Copy_number_variation" ; + oboInOwl:hasNarrowSynonym "CNV deletion", + "CNV duplication", + "CNV insertion / amplification", + "Complex CNV", + "Copy number variant" ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3175 . + +:topic_3959 a owl:Class ; + rdfs:label "Cytogenetics" ; + :created_in "1.25" ; + oboInOwl:hasDefinition "The branch of genetics concerned with the relationships between chromosomes and cellular behaviour, especially during mitosis and meiosis." ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3321 . + +:topic_3966 a owl:Class ; + rdfs:label "Vaccinology" ; + :created_in "1.25" ; + oboInOwl:hasDefinition "The design of vaccines to protect against a particular pathogen, including antigens, delivery systems, and adjuvants to elicit a predictable immune response against specific epitopes." ; + oboInOwl:hasHumanReadableId "Vaccinology" ; + oboInOwl:hasNarrowSynonym "Rational vaccine design", + "Reverse vaccinology", + "Structural vaccinology", + "Structure-based immunogen design", + "Vaccine design" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3376 . + +:topic_3967 a owl:Class ; + rdfs:label "Immunomics" ; + :created_in "1.25" ; + oboInOwl:hasDefinition "The study of immune system as a whole, its regulation and response to pathogens using genome-wide approaches." ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3391 . + +:topic_3974 a owl:Class ; + rdfs:label "Epistasis" ; + :created_in "1.25" ; + oboInOwl:hasDefinition "Epistasis can be defined as the ability of the genotype at one locus to supersede the phenotypic effect of a mutation at another locus. This interaction between genes can occur at different level: gene expression, protein levels, etc..." ; + oboInOwl:hasExactSynonym "Epistatic genetic interaction", + "Epistatic interactions" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D004843" ; + rdfs:subClassOf :topic_0625 . + +:topic_4011 a owl:Class ; + rdfs:label "Data rescue" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "Data rescue denotes digitalisation, formatting, archival, and publication of data that were not available in accessible or usable form. Examples are data from private archives, data inside publications, or in paper records stored privately or publicly." ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3071 . + +:topic_4012 a owl:Class ; + rdfs:label "FAIR data" ; + :created_in "1.26" ; + :related_term "FAIR data principles", + "FAIRification" ; + oboInOwl:hasDefinition "FAIR data is data that meets the principles of being findable, accessible, interoperable, and reusable." ; + oboInOwl:hasExactSynonym "Findable, accessible, interoperable, reusable data" ; + oboInOwl:hasRelatedSynonym "Open data" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "A substantially overlapping term is 'open data', i.e. publicly available data that is free to use, distribute, and create derivative work from, without restrictions. Open data does not automatically have to be FAIR (e.g. findable or interoperable), while FAIR data does in some cases not have to be publicly available without restrictions (especially sensitive personal data)." ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_3071, + :topic_4010 . + +:topic_4013 a owl:Class ; + rdfs:label "Antimicrobial Resistance" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "Microbial mechanisms for protecting microorganisms against antimicrobial agents." ; + oboInOwl:hasExactSynonym "AMR" ; + oboInOwl:hasNarrowSynonym "Antifungal resistance", + "Antiprotozoal resistance", + "Antiviral resistance", + "Extensive drug resistance (XDR)", + "Multidrug resistance", + "Multiple drug resistance (MDR)", + "Multiresistance", + "Pandrug resistance (PDR)", + "Total drug resistance (TDR)" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3301, + :topic_3324 . + +:topic_4014 a owl:Class ; + rdfs:label "Electroencephalography" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "The monitoring method for measuring electrical activity in the brain." ; + oboInOwl:hasExactSynonym "EEG" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3300, + :topic_3382 . + +:topic_4016 a owl:Class ; + rdfs:label "Electrocardiography" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "The monitoring method for measuring electrical activity in the heart." ; + oboInOwl:hasExactSynonym "ECG", + "EKG" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3300, + :topic_3382 . + +:topic_4017 a owl:Class ; + rdfs:label "Cryogenic electron microscopy" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "A method for studying biomolecules and other structures at very low (cryogenic) temperature using electron microscopy." ; + oboInOwl:hasExactSynonym "cryo-EM" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0611 . + +:topic_4020 a owl:Class ; + rdfs:label "Carbon cycle" ; + :created_in "1.26" ; + oboInOwl:hasBroadSynonym "Biogeochemical cycle" ; + oboInOwl:hasDefinition "The carbon cycle is the biogeochemical pathway of carbon moving through the different parts of the Earth (such as ocean, atmosphere, soil), or eventually another planet." ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "Note that the carbon-nitrogen-oxygen (CNO) cycle (https://en.wikipedia.org/wiki/CNO_cycle) is a completely different, thermonuclear reaction in stars." ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_0610, + :topic_3314, + :topic_3318, + :topic_3855 . + +:topic_4021 a owl:Class ; + rdfs:label "Multiomics" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "Multiomics concerns integration of data from multiple omics (e.g. transcriptomics, proteomics, epigenomics)." ; + oboInOwl:hasExactSynonym "Integrative omics", + "Multi-omics", + "Pan-omics", + "Panomics" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso :topic_3366, + ; + rdfs:subClassOf :topic_3391 . + +:topic_4027 a owl:Class ; + rdfs:label "Ribosome Profiling" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "With ribosome profiling, ribosome-protected mRNA fragments are analyzed with RNA-seq techniques leading to a genome-wide measurement of the translation landscape." ; + oboInOwl:hasExactSynonym "RIBO-seq", + "Ribo-Seq", + "RiboSeq", + "ribo-seq", + "ribosomal footprinting" ; + oboInOwl:hasNarrowSynonym "translation footprinting" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3308 . + +:topic_4028 a owl:Class ; + rdfs:label "Single-Cell Sequencing" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "Combined with NGS (Next Generation Sequencing) technologies, single-cell sequencing allows the study of genetic information (DNA, RNA, epigenome...) at a single cell level. It is often used for differential analysis and gene expression profiling." ; + oboInOwl:hasNarrowSynonym "Single Cell Genomics" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_3168 . + +:topic_4029 a owl:Class ; + rdfs:label "Acoustics" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "The study of mechanical waves in liquids, solids, and gases." ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3318 . + +:topic_4030 a owl:Class ; + rdfs:label "Microfluidics" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "Interdisplinary study of behavior, precise control, and manipulation of low (microlitre) volume fluids in constrained space." ; + oboInOwl:hasNarrowSynonym "Fluidics" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3292, + :topic_3297, + :topic_3318 . + +:topic_4037 a owl:Class ; + rdfs:label "Genomic imprinting" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "Genomic imprinting is a gene regulation mechanism by which a subset of genes are expressed from one of the two parental chromosomes only. Imprinted genes are organized in clusters, their silencing/activation of the imprinted loci involves epigenetic marks (DNA methylation, etc) and so-called imprinting control regions (ICR). It has been described in mammals, but also plants and insects." ; + oboInOwl:hasExactSynonym "Gene imprinting" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3295 . + +:topic_4038 a owl:Class ; + rdfs:label "Metabarcoding" ; + :created_in "1.26" ; + :related_term "Environmental DNA (eDNA)", + "Environmental RNA (eRNA)", + "Environmental sequencing", + "Taxonomic profiling" ; + oboInOwl:hasDefinition "Metabarcoding is the barcoding of (environmental) DNA or RNA to identify multiple taxa from the same sample." ; + oboInOwl:hasNarrowSynonym "DNA metabarcoding", + "Environmental metabarcoding", + "RNA metabarcoding", + "eDNA metabarcoding", + "eRNA metabarcoding" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "Typically, high-throughput sequencing is performed and the resulting sequence reads are matched to DNA barcodes in a reference database." ; + rdfs:seeAlso , + ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty skos:related ; + owl:someValuesFrom :topic_3923 ], + :topic_0080, + :topic_3697 ; + skos:exactMatch ; + skos:relatedMatch . + +oboLegacy:date a owl:AnnotationProperty . + +oboLegacy:idspace a owl:AnnotationProperty . + +oboLegacy:is_anti_symmetric a owl:AnnotationProperty . + +oboLegacy:is_metadata_tag a owl:AnnotationProperty . + +oboLegacy:is_reflexive a owl:AnnotationProperty . + +oboLegacy:is_symmetric a owl:AnnotationProperty . + +oboLegacy:namespace a owl:AnnotationProperty . + +oboLegacy:remark a owl:AnnotationProperty . + +oboLegacy:transitive_over a owl:AnnotationProperty . + +dc:contributor a owl:AnnotationProperty . + +dc:creator a owl:AnnotationProperty . + +dc:title a owl:AnnotationProperty . + +doap:Version a owl:AnnotationProperty . + +oboInOwl:ObsoleteClass a owl:Class ; + rdfs:label "Obsolete concept (EDAM)" ; + :created_in "1.2" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "An obsolete concept (redefined in EDAM)." ; + oboInOwl:replacedBy owl:DeprecatedClass ; + rdfs:comment "Needed for conversion to the OBO format." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +oboInOwl:comment a owl:AnnotationProperty . + +oboInOwl:consider a owl:AnnotationProperty . + +oboInOwl:hasAlternativeId a owl:AnnotationProperty . + +oboInOwl:hasDbXref a owl:AnnotationProperty . + +oboInOwl:hasDefinition a owl:AnnotationProperty . + +oboInOwl:hasHumanReadableId a owl:AnnotationProperty . + +oboInOwl:hasSubset a owl:AnnotationProperty . + +oboInOwl:inSubset a owl:AnnotationProperty . + +oboInOwl:replacedBy a owl:AnnotationProperty . + +oboInOwl:savedBy a owl:AnnotationProperty . + +foaf:page a owl:AnnotationProperty . + +:data_0862 a owl:Class ; + rdfs:label "Dotplot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A dotplot of sequence similarities identified from word-matching or character comparison." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0867 . + +:data_0878 a owl:Class ; + rdfs:label "Protein secondary structure alignment" ; + :created_in "beta12orEarlier" ; + :is_deprecation_candidate true ; + oboInOwl:hasDefinition "Alignment of the (1D representations of) secondary structure of two or more proteins." ; + oboInOwl:hasExactSynonym "Secondary structure alignment (protein)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2366 . + +:data_0881 a owl:Class ; + rdfs:label "RNA secondary structure alignment" ; + :created_in "beta12orEarlier" ; + :is_deprecation_candidate true ; + oboInOwl:hasDbXref "Moby:RNAStructAlignmentML" ; + oboInOwl:hasDefinition "Alignment of the (1D representations of) secondary structure of two or more RNA molecules." ; + oboInOwl:hasExactSynonym "Secondary structure alignment (RNA)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2366 . + +:data_0887 a owl:Class ; + rdfs:label "Structure alignment report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An informative report of molecular tertiary structure alignment-derived data." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf :data_2048 . + +:data_0892 a owl:Class ; + rdfs:label "Protein sequence-structure scoring matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Matrix of values used for scoring sequence-structure compatibility." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2082 . + +:data_0924 a owl:Class ; + rdfs:label "Sequence trace" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Fluorescence trace data generated by an automated DNA sequencer, which can be interpreted as a molecular sequence (reads), given associated sequencing metadata such as base-call quality scores." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is the raw data produced by a DNA sequencing machine." ; + rdfs:subClassOf :data_1234, + :data_3108 . + +:data_0928 a owl:Class ; + rdfs:label "Gene expression profile" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data quantifying the level of expression of (typically) multiple genes, derived for example from microarray experiments." ; + oboInOwl:hasRelatedSynonym "Gene expression pattern" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2603 . + +:data_0944 a owl:Class ; + rdfs:label "Peptide mass fingerprint" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A set of peptide masses (peptide mass fingerprint) from mass spectrometry." ; + oboInOwl:hasExactSynonym "Peak list", + "Protein fingerprint" ; + oboInOwl:hasNarrowSynonym "Molecular weights standard fingerprint" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A molecular weight standard fingerprint is standard protonated molecular masses e.g. from trypsin (modified porcine trypsin, Promega) and keratin peptides." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + :data_2536, + :data_2979 . + +:data_0954 a owl:Class ; + rdfs:label "Database cross-mapping" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A mapping of the accession numbers (or other database identifier) of entries between (typically) two biological or biomedical databases." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The cross-mapping is typically a table where each row is an accession number and each column is a database being cross-referenced. The cells give the accession number or identifier of the corresponding entry in a database. If a cell in the table is not filled then no mapping could be found for the database. Additional information might be given on version, date etc." ; + rdfs:subClassOf :data_2093 . + +:data_0963 a owl:Class ; + rdfs:label "Cell line report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about a particular strain of organism cell line including plants, virus, fungi and bacteria. The data typically includes strain number, organism type, growth conditions, source and so on." ; + oboInOwl:hasExactSynonym "Cell line annotation", + "Organism strain data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2530 . + +:data_0977 a owl:Class ; + rdfs:label "Tool identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a bioinformatics tool, e.g. an application or web service." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_0983 a owl:Class ; + rdfs:label "Atom ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier (e.g. character symbol) of a specific atom." ; + oboInOwl:hasExactSynonym "Atom identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_0987 a owl:Class ; + rdfs:label "Chromosome name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a chromosome." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0919 ], + :data_0984, + :data_2119 . + +:data_0995 a owl:Class ; + rdfs:label "Nucleotide identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Name or other identifier of a nucleotide." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1086 . + +:data_0996 a owl:Class ; + rdfs:label "Monosaccharide identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a monosaccharide." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1086 . + +:data_1002 a owl:Class ; + rdfs:label "CAS number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "CAS registry number of a chemical compound; a unique numerical identifier of chemicals in the scientific literature, as assigned by the Chemical Abstracts Service." ; + oboInOwl:hasExactSynonym "CAS chemical registry number", + "Chemical registry number (CAS)" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0991, + :data_2091, + :data_2895 . + +:data_1012 a owl:Class ; + rdfs:label "Enzyme name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of an enzyme." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1009, + :data_1010 . + +:data_1022 a owl:Class ; + rdfs:label "Sequence feature label" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A name of a sequence feature, e.g. the name of a feature to be displayed to an end-user. Typically an EMBL or Swiss-Prot feature label." ; + oboInOwl:hasExactSynonym "Sequence feature name" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A feature label identifies a feature of a sequence database entry. When used with the database name and the entry's primary accession number, it is a unique identifier of that feature." ; + rdfs:subClassOf :data_2099, + :data_2914, + :data_3034 . + +:data_1037 a owl:Class ; + rdfs:label "TAIR accession (gene)" ; + :created_in "beta12orEarlier" ; + :regex "Gene:[0-9]{7}" ; + oboInOwl:hasDefinition "Identifier of an gene from the TAIR database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2295, + :data_2387 . + +:data_1043 a owl:Class ; + rdfs:label "CATH node ID" ; + :created_in "beta12orEarlier" ; + :example "3.30.1190.10.1.1.1.1.1" ; + oboInOwl:hasDefinition "A code number identifying a node from the CATH database." ; + oboInOwl:hasExactSynonym "CATH code", + "CATH node identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2700 . + +:data_1046 a owl:Class ; + rdfs:label "Strain name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a strain of an organism variant, typically a plant, virus or bacterium." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2379, + :data_2909 . + +:data_1048 a owl:Class ; + rdfs:label "Database ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a biological or bioinformatics database." ; + oboInOwl:hasExactSynonym "Database identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0957 ], + :data_0976 . + +:data_1053 a owl:Class ; + rdfs:label "URN" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A Uniform Resource Name (URN)." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1047 . + +:data_1056 a owl:Class ; + rdfs:label "Database name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a biological or bioinformatics database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1048, + :data_2099 . + +:data_1069 a owl:Class ; + rdfs:label "Comparison matrix identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a comparison matrix." ; + oboInOwl:hasExactSynonym "Substitution matrix identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0874 ], + :data_3036 . + +:data_1072 a owl:Class ; + rdfs:label "Structure alignment ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of an entry from a database of tertiary structure alignments." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0886 ], + :data_0976 . + +:data_1073 a owl:Class ; + rdfs:label "Amino acid index ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of an index of amino acid physicochemical and biochemical property data." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1501 ], + :data_0976, + :data_3036 . + +:data_1079 a owl:Class ; + rdfs:label "Electron microscopy model ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of an entry from a database of electron microscopy data." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_3805 ], + :data_0976 . + +:data_1083 a owl:Class ; + rdfs:label "Workflow ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a biological or biomedical workflow, typically from a database of workflows." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_1104 a owl:Class ; + rdfs:label "Sequence cluster ID (UniGene)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier of an entry (gene cluster) from the NCBI UniGene database." ; + oboInOwl:hasExactSynonym "UniGene ID", + "UniGene cluster ID", + "UniGene identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1112, + :data_2091 . + +:data_1133 a owl:Class ; + rdfs:label "InterPro accession" ; + :created_in "beta12orEarlier" ; + :example "IPR015590" ; + :regex "IPR[0-9]{6}" ; + oboInOwl:hasDefinition "Primary accession number of an InterPro entry." ; + oboInOwl:hasExactSynonym "InterPro primary accession", + "InterPro primary accession number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "Every InterPro entry has a unique accession number to provide a persistent citation of database records." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1355 ], + :data_2091, + :data_2910 . + +:data_1165 a owl:Class ; + rdfs:label "MIRIAM data type primary name" ; + :created_in "beta12orEarlier" ; + :example "UniProt|Enzyme Nomenclature" ; + oboInOwl:hasDefinition "The primary name of a data type from the MIRIAM database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "The primary name of a MIRIAM data type is taken from a controlled vocabulary." ; + rdfs:subClassOf :data_1163 . + +:data_1238 a owl:Class ; + rdfs:label "Proteolytic digest" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A protein sequence cleaved into peptide fragments (by enzymatic or chemical cleavage) with fragment masses." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + :data_1233 . + +:data_1239 a owl:Class ; + rdfs:label "Restriction digest" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "SO:0000412" ; + oboInOwl:hasDefinition "Restriction digest fragments from digesting a nucleotide sequence with restriction sites using a restriction endonuclease." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1234 . + +:data_1240 a owl:Class ; + rdfs:label "PCR primers" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Oligonucleotide primer(s) for PCR and DNA amplification, for example a minimal primer set." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1234 . + +:data_1246 a owl:Class ; + rdfs:label "Sequence cluster (nucleic acid)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A cluster of nucleotide sequences." ; + oboInOwl:hasExactSynonym "Nucleotide sequence cluster" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The sequences are typically related, for example a family of sequences." ; + rdfs:subClassOf :data_1234, + :data_1235 . + +:data_1259 a owl:Class ; + rdfs:label "Sequence complexity report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A report on sequence complexity, for example low-complexity or repeat regions in sequences." ; + oboInOwl:hasExactSynonym "Sequence property (complexity)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1254 . + +:data_1260 a owl:Class ; + rdfs:label "Sequence ambiguity report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A report on ambiguity in molecular sequence(s)." ; + oboInOwl:hasExactSynonym "Sequence property (ambiguity)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1254 . + +:data_1263 a owl:Class ; + rdfs:label "Base position variability plot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A plot of third base position variability in a nucleotide sequence." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1261 . + +:data_1266 a owl:Class ; + rdfs:label "Base word frequencies table" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A table of word composition of a nucleotide sequence." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1261, + :data_2082 . + +:data_1268 a owl:Class ; + rdfs:label "Amino acid word frequencies table" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A table of amino acid word composition of a protein sequence." ; + oboInOwl:hasExactSynonym "Sequence composition (amino acid words)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1261, + :data_2082 . + +:data_1283 a owl:Class ; + rdfs:label "Cytogenetic map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A map showing banding patterns derived from direct observation of a stained chromosome." ; + oboInOwl:hasExactSynonym "Chromosome map", + "Cytogenic map", + "Cytologic map" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is the lowest-resolution physical map and can provide only rough estimates of physical (base pair) distances. Like a genetic map, they are limited to genetic markers of traits observable only in whole organisms." ; + rdfs:subClassOf :data_1280 . + +:data_1289 a owl:Class ; + rdfs:label "Restriction map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Image of the restriction enzyme cleavage sites (restriction sites) in a nucleic acid sequence." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1279, + :data_2969 . + +:data_1347 a owl:Class ; + rdfs:label "Dirichlet distribution" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Dirichlet distribution used by hidden Markov model analysis programs." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0950 . + +:data_1383 a owl:Class ; + rdfs:label "Nucleic acid sequence alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alignment of multiple nucleotide sequences." ; + oboInOwl:hasExactSynonym "Sequence alignment (nucleic acid)" ; + oboInOwl:hasNarrowSynonym "DNA sequence alignment", + "RNA sequence alignment" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0863 . + +:data_1385 a owl:Class ; + rdfs:label "Hybrid sequence alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alignment of multiple molecular sequences of different types." ; + oboInOwl:hasExactSynonym "Sequence alignment (hybrid)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Hybrid sequence alignments include for example genomic DNA to EST, cDNA or mRNA." ; + rdfs:subClassOf :data_0863 . + +:data_1410 a owl:Class ; + rdfs:label "Terminal gap opening penalty" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A number defining the penalty for opening gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1397 . + +:data_1411 a owl:Class ; + rdfs:label "Terminal gap extension penalty" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A number defining the penalty for extending gaps at the termini of an alignment, either from the N/C terminal of protein or 5'/3' terminal of nucleotide sequences." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1398 . + +:data_1413 a owl:Class ; + rdfs:label "Sequence similarity" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Sequence similarity is the similarity (expressed as a percentage) of two molecular sequences calculated from their alignment, a scoring matrix for scoring characters substitutions and penalties for gap insertion and extension." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Data Type is float probably." ; + rdfs:subClassOf :data_0865 . + +:data_1427 a owl:Class ; + rdfs:label "Phylogenetic discrete data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Character data with discrete states that may be read during phylogenetic tree calculation." ; + oboInOwl:hasExactSynonym "Discrete characters", + "Discretely coded characters", + "Phylogenetic discrete states" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0871 . + +:data_1428 a owl:Class ; + rdfs:label "Phylogenetic character cliques" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "One or more cliques of mutually compatible characters that are generated, for example from analysis of discrete character data, and are used to generate a phylogeny." ; + oboInOwl:hasExactSynonym "Phylogenetic report (cliques)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2523 . + +:data_1429 a owl:Class ; + rdfs:label "Phylogenetic invariants" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Phylogenetic invariants data for testing alternative tree topologies." ; + oboInOwl:hasExactSynonym "Phylogenetic report (invariants)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0199 ], + :data_2523 . + +:data_1462 a owl:Class ; + rdfs:label "Carbohydrate structure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for a carbohydrate (3D) structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0153 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0152 ], + :data_0883 . + +:data_1464 a owl:Class ; + rdfs:label "DNA structure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for a DNA tertiary (3D) structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1459 . + +:data_1519 a owl:Class ; + rdfs:label "Peptide molecular weights" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "List of molecular weight(s) of one or more proteins or peptides, for example cut by proteolytic enzymes or reagents." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The report might include associated data such as frequency of peptide fragment molecular weights." ; + rdfs:subClassOf :data_0897 . + +:data_1520 a owl:Class ; + rdfs:label "Peptide hydrophobic moment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Report on the hydrophobic moment of a polypeptide sequence." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Hydrophobic moment is a peptides hydrophobicity measured for different angles of rotation." ; + rdfs:subClassOf :data_2970 . + +:data_1521 a owl:Class ; + rdfs:label "Protein aliphatic index" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The aliphatic index of a protein." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The aliphatic index is the relative protein volume occupied by aliphatic side chains." ; + rdfs:subClassOf :data_2970 . + +:data_1524 a owl:Class ; + rdfs:label "Protein solubility" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The solubility or atomic solvation energy of a protein sequence or structure." ; + oboInOwl:hasExactSynonym "Protein solubility data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2970 . + +:data_1525 a owl:Class ; + rdfs:label "Protein crystallizability" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data on the crystallizability of a protein sequence." ; + oboInOwl:hasExactSynonym "Protein crystallizability data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2970 . + +:data_1526 a owl:Class ; + rdfs:label "Protein globularity" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data on the stability, intrinsic disorder or globularity of a protein sequence." ; + oboInOwl:hasExactSynonym "Protein globularity data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2970 . + +:data_1527 a owl:Class ; + rdfs:label "Protein titration curve" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The titration curve of a protein." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897, + :data_2884 . + +:data_1528 a owl:Class ; + rdfs:label "Protein isoelectric point" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The isoelectric point of one proteins." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897 . + +:data_1530 a owl:Class ; + rdfs:label "Protein hydrogen exchange rate" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The hydrogen exchange rate of a protein." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897 . + +:data_1531 a owl:Class ; + rdfs:label "Protein extinction coefficient" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The extinction coefficient of a protein." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897 . + +:data_1542 a owl:Class ; + rdfs:label "Protein solvent accessibility" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data on the solvent accessible or buried surface area of a protein structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This concept covers definitions of the protein surface, interior and interfaces, accessible and buried residues, surface accessible pockets, interior inaccessible cavities etc." ; + rdfs:subClassOf :data_0897 . + +:data_1544 a owl:Class ; + rdfs:label "Ramachandran plot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Phi/psi angle data or a Ramachandran plot of a protein structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2991 . + +:data_1545 a owl:Class ; + rdfs:label "Protein dipole moment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data on the net charge distribution (dipole moment) of a protein structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897 . + +:data_1546 a owl:Class ; + rdfs:label "Protein distance matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A matrix of distances between amino acid residues (for example the C-alpha atoms) in a protein structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0906, + :data_2855 . + +:data_1547 a owl:Class ; + rdfs:label "Protein contact map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An amino acid residue contact map for a protein structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0906 . + +:data_1548 a owl:Class ; + rdfs:label "Protein residue 3D cluster" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Report on clusters of contacting residues in protein structures such as a key structural residue network." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0906 . + +:data_1549 a owl:Class ; + rdfs:label "Protein hydrogen bonds" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Patterns of hydrogen bonding in protein structures." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0906 . + +:data_1566 a owl:Class ; + rdfs:label "Protein-ligand interaction report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An informative report on protein-ligand (small molecule) interaction(s)." ; + oboInOwl:hasNarrowSynonym "Protein-drug interaction report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0906 . + +:data_1584 a owl:Class ; + rdfs:label "Nucleic acid enthalpy" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Enthalpy of hybridised or double stranded nucleic acid (DNA or RNA/DNA)." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2985 . + +:data_1596 a owl:Class ; + rdfs:label "Nucleic acid folding report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about RNA/DNA folding, minimum folding energies for DNA or RNA sequences, energy landscape of RNA mutants etc." ; + oboInOwl:hasExactSynonym "Nucleic acid report (folding model)", + "Nucleic acid report (folding)" ; + oboInOwl:hasNarrowSynonym "RNA secondary structure folding classification", + "RNA secondary structure folding probabilities" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2084 . + +:data_1602 a owl:Class ; + rdfs:label "Codon usage fraction difference" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The differences in codon usage fractions between two codon usage tables." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0914 . + +:data_1636 a owl:Class ; + rdfs:label "Heat map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A graphical 2D tabular representation of expression data, typically derived from an omics experiment. A heat map is a table where rows and columns correspond to different features and contexts (for example, cells or samples) and the cell colour represents the level of expression of a gene that context." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2968, + :data_3768 . + +:data_1669 a owl:Class ; + rdfs:label "P-value" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The P-value is the probability of obtaining by random chance a result that is at least as extreme as an observed result, assuming a NULL hypothesis is true." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A z-value might be specified as a threshold for reporting hits from database searches." ; + rdfs:subClassOf :data_0951 . + +:data_1713 a owl:Class ; + rdfs:label "Fate map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A fate map is a plan of early stage of an embryo such as a blastula, showing areas that are significance to development." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3065 ], + :data_2968 . + +:data_1714 a owl:Class ; + rdfs:label "Microarray spots image" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An image of spots from a microarray experiment." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2603, + :data_3424 . + +:data_1757 a owl:Class ; + rdfs:label "Atom name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of an atom." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0983, + :data_2099 . + +:data_1795 a owl:Class ; + rdfs:label "Gene ID (EcoGene)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a gene from EcoGene Database." ; + oboInOwl:hasExactSynonym "EcoGene Accession", + "EcoGene ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_1863 a owl:Class ; + rdfs:label "Haplotype map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:Haplotyping_Study_obj" ; + oboInOwl:hasDefinition "A map of haplotypes in a genome or other sequence, describing common patterns of genetic variation." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1278 . + +:data_1870 a owl:Class ; + rdfs:label "Genus name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a genus of organism." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1868 . + +:data_2042 a owl:Class ; + rdfs:label "Evidence" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Typically a human-readable summary of body of facts or information indicating why a statement is true or valid. This may include a computational prediction, laboratory experiment, literature reference etc." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:data_2083 a owl:Class ; + rdfs:label "Alignment data" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:consider :data_1394 ; + oboInOwl:hasDefinition "Data concerning, extracted from, or derived from the analysis of molecular alignment of some type." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2110 a owl:Class ; + rdfs:label "Molecular property identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a molecular property." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2087 ], + :data_0976 . + +:data_2111 a owl:Class ; + rdfs:label "Codon usage table ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a codon usage table, for example a genetic code." ; + oboInOwl:hasExactSynonym "Codon usage table identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1597 ], + [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1598 ], + :data_0976 . + +:data_2117 a owl:Class ; + rdfs:label "Map identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a map of a molecular sequence." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1274 ], + :data_0976 . + +:data_2129 a owl:Class ; + rdfs:label "File format name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a file format such as HTML, PNG, PDF, EMBL, GenBank and so on." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099, + :data_3358 . + +:data_2139 a owl:Class ; + rdfs:label "Nucleic acid melting temperature" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A temperature concerning nucleic acid denaturation, typically the temperature at which the two strands of a hybridised or double stranded nucleic acid (DNA or RNA/DNA) molecule separate." ; + oboInOwl:hasExactSynonym "Melting temperature" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2985 . + +:data_2154 a owl:Class ; + rdfs:label "Sequence name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Any arbitrary name of a molecular sequence." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1063, + :data_2099 . + +:data_2161 a owl:Class ; + rdfs:label "Sequence similarity plot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A plot of sequence similarities identified from word-matching or character comparison." ; + oboInOwl:hasRelatedSynonym "Sequence conservation report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Use this concept for calculated substitution rates, relative site variability, data on sites with biased properties, highly conserved or very poorly conserved sites, regions, blocks etc." ; + rdfs:subClassOf :data_0867, + :data_2884 . + +:data_2190 a owl:Class ; + rdfs:label "Sequence checksum" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A fixed-size datum calculated (by using a hash function) for a molecular sequence, typically for purposes of error detection or indexing." ; + oboInOwl:hasExactSynonym "Hash", + "Hash code", + "Hash sum", + "Hash value" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2534 . + +:data_2253 a owl:Class ; + rdfs:label "Data resource definition name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a data type." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1084, + :data_2099 . + +:data_2292 a owl:Class ; + rdfs:label "GenBank accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Accession number of an entry from the GenBank sequence database." ; + oboInOwl:hasExactSynonym "GenBank ID", + "GenBank accession number", + "GenBank identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1103 . + +:data_2299 a owl:Class ; + rdfs:label "Gene name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a gene, (typically) assigned by a person and/or according to a naming scheme. It may contain white space characters and is typically more intuitive and readable than a gene symbol. It (typically) may be used to identify similar genes in different species and to derive a gene symbol." ; + oboInOwl:hasNarrowSynonym "Allele name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1025, + :data_2099 . + +:data_2301 a owl:Class ; + rdfs:label "SMILES string" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A specification of a chemical structure in SMILES format." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0846 . + +:data_2309 a owl:Class ; + rdfs:label "Reaction ID (SABIO-RK)" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]+" ; + oboInOwl:hasDefinition "Identifier of a biological reaction from the SABIO-RK reactions database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2108 . + +:data_2313 a owl:Class ; + rdfs:label "Carbohydrate report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about one or more specific carbohydrate 3D structure(s)." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2085 . + +:data_2314 a owl:Class ; + rdfs:label "GI number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A series of digits that are assigned consecutively to each sequence record processed by NCBI. The GI number bears no resemblance to the Accession number of the sequence record." ; + oboInOwl:hasExactSynonym "NCBI GI number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "Nucleotide sequence GI number is shown in the VERSION field of the database record. Protein sequence GI number is shown in the CDS/db_xref field of a nucleotide database record, and the VERSION field of a protein database record." ; + rdfs:subClassOf :data_2091, + :data_2362 . + +:data_2338 a owl:Class ; + rdfs:label "Ontology identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Any arbitrary identifier of an ontology." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0582 ], + :data_0976 . + +:data_2354 a owl:Class ; + rdfs:label "RNA family report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about a specific RNA family or other group of classified RNA sequences." ; + oboInOwl:hasExactSynonym "RNA family annotation" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3148 . + +:data_2382 a owl:Class ; + rdfs:label "Genotype experiment ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of an entry from a database of genotype experiment metadata." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2531 ], + :data_0976 . + +:data_2564 a owl:Class ; + rdfs:label "Amino acid name (three letter)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Three letter amino acid identifier, e.g. GLY." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1006 . + +:data_2587 a owl:Class ; + rdfs:label "Blot ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Unique identifier of a blot from a Northern Blot." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2596 a owl:Class ; + rdfs:label "Catalogue ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a catalogue of biological resources." ; + oboInOwl:hasExactSynonym "Catalogue identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2630 a owl:Class ; + rdfs:label "Mobile genetic element ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a mobile genetic element." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2633 a owl:Class ; + rdfs:label "Book ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Unique identifier of a book." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2663 a owl:Class ; + rdfs:label "Carbohydrate identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a carbohydrate." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1462 ], + [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2313 ], + :data_1086 . + +:data_2711 a owl:Class ; + rdfs:label "Genome report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information concerning a genome as a whole." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2530 . + +:data_2732 a owl:Class ; + rdfs:label "Family name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a family of organism." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1868 . + +:data_2779 a owl:Class ; + rdfs:label "Stock number" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of stock from a catalogue of biological resources." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2790 a owl:Class ; + rdfs:label "Gel ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a two-dimensional (protein) gel." ; + oboInOwl:hasExactSynonym "Gel identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2812 a owl:Class ; + rdfs:label "Lipid identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a lipid." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2850 ], + [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2879 ], + :data_0982 . + +:data_2849 a owl:Class ; + rdfs:label "Abstract" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An abstract of a scientific article." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2526 . + +:data_2850 a owl:Class ; + rdfs:label "Lipid structure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for a lipid structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0883 . + +:data_2851 a owl:Class ; + rdfs:label "Drug structure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for the (3D) structure of a drug." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1463 . + +:data_2852 a owl:Class ; + rdfs:label "Toxin structure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for the (3D) structure of a toxin." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1463 . + +:data_2870 a owl:Class ; + rdfs:label "Radiation hybrid map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A map showing distance between genetic markers estimated by radiation-induced breaks in a chromosome." ; + oboInOwl:hasExactSynonym "RH map" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The radiation method can break very closely linked markers providing a more detailed map. Most genetic markers and subsequences may be located to a defined map position and with a more precise estimates of distance than a linkage map." ; + rdfs:subClassOf :data_1280 . + +:data_2873 a owl:Class ; + rdfs:label "Phylogenetic gene frequencies data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Gene frequencies data that may be read during phylogenetic tree calculation." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1426 . + +:data_2877 a owl:Class ; + rdfs:label "Protein complex" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for a multi-protein complex; two or more polypeptides chains in a stable, functional association with one another." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1460 . + +:data_2879 a owl:Class ; + rdfs:label "Lipid report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about one or more specific lipid 3D structure(s)." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2085 . + +:data_2898 a owl:Class ; + rdfs:label "Monosaccharide accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of a monosaccharide (catalogued in a database)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0996 . + +:data_2906 a owl:Class ; + rdfs:label "Peptide ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of a peptide deposited in a database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0988, + :data_2901 . + +:data_2912 a owl:Class ; + rdfs:label "Strain accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession number of a strain of an organism variant, typically a plant, virus or bacterium." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0963 ], + :data_2379, + :data_2908 . + +:data_2956 a owl:Class ; + rdfs:label "Protein secondary structure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning the properties or features of one or more protein secondary structures." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897 . + +:data_3002 a owl:Class ; + rdfs:label "Annotation track" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Annotation of one particular positional feature on a biomolecular (typically genome) sequence, suitable for import and display in a genome browser." ; + oboInOwl:hasExactSynonym "Genome annotation track", + "Genome track", + "Genome-browser track", + "Genomic track", + "Sequence annotation track" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1255 . + +:data_3115 a owl:Class ; + rdfs:label "Microarray metadata" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Annotation on the array itself used in a microarray experiment." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This might include gene identifiers, genomic coordinates, probe oligonucleotide sequences etc." ; + rdfs:subClassOf :data_2603 . + +:data_3134 a owl:Class ; + rdfs:label "Gene transcript report" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "An informative report on features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules. This includes reports on a specific gene transcript, clone or EST." ; + oboInOwl:hasExactSynonym "Clone or EST (report)", + "Gene transcript annotation", + "Nucleic acid features (mRNA features)", + "Transcript (report)", + "mRNA (report)", + "mRNA features" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This includes 5'untranslated region (5'UTR), coding sequences (CDS), exons, intervening sequences (intron) and 3'untranslated regions (3'UTR)." ; + rdfs:subClassOf :data_1276 . + +:data_3181 a owl:Class ; + rdfs:label "Sequence assembly report" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "An informative report about a DNA sequence assembly." ; + oboInOwl:hasExactSynonym "Assembly report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This might include an overall quality assessment of the assembly and summary statistics including counts, average length and number of bases for reads, matches and non-matches, contigs, reads in pairs etc." ; + rdfs:subClassOf :data_0867 . + +:data_3236 a owl:Class ; + rdfs:label "Cytoband position" ; + :created_in "1.2" ; + oboInOwl:hasDefinition "The position of a cytogenetic band in a genome." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Information might include start and end position in a chromosome sequence, chromosome identifier, name of band and so on." ; + rdfs:subClassOf :data_2012 . + +:data_3425 a owl:Class ; + rdfs:label "Carbohydrate property" ; + :created_in "1.5" ; + oboInOwl:hasDefinition "Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all carbohydrates." ; + oboInOwl:hasExactSynonym "Carbohydrate data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2087 . + +:data_3483 a owl:Class ; + rdfs:label "Spectrum" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "The spectrum of frequencies of electromagnetic radiation emitted from a molecule as a result of some spectroscopy experiment." ; + oboInOwl:hasExactSynonym "Spectra" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:data_3488 a owl:Class ; + rdfs:label "NMR spectrum" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Spectral information for a molecule from a nuclear magnetic resonance experiment." ; + oboInOwl:hasExactSynonym "NMR spectra" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1317 ], + :data_3483 . + +:data_3495 a owl:Class ; + rdfs:label "RNA sequence" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "An RNA sequence." ; + oboInOwl:hasExactSynonym "RNA sequences" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2977 . + +:data_3498 a owl:Class ; + rdfs:label "Sequence variations" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Data on gene sequence variations resulting large-scale genotyping and DNA sequencing projects." ; + oboInOwl:hasExactSynonym "Gene sequence variations" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Variations are stored along with a reference genome." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0199 ], + :data_0006 . + +:data_3505 a owl:Class ; + rdfs:label "Bibliography" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "A list of publications such as scientic papers or books." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2526 . + +:data_3567 a owl:Class ; + rdfs:label "Reference sample report" ; + :created_in "1.10" ; + oboInOwl:hasDefinition "A report about a biosample." ; + oboInOwl:hasExactSynonym "Biosample report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2048 . + +:data_3669 a owl:Class ; + rdfs:label "Training material" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Some material that is used for educational (training) purposes." ; + oboInOwl:hasNarrowSynonym "OER", + "Open educational resource" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:data_3736 a owl:Class ; + rdfs:label "Ecological data" ; + :created_in "1.15" ; + oboInOwl:hasDefinition "Data concerning ecology; for example measurements and reports from the study of interactions among organisms and their environment." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf :data_0006 . + +:data_3754 a owl:Class ; + rdfs:label "GO-term enrichment data" ; + :created_in "1.16" ; + oboInOwl:hasBroadSynonym "GO-term report" ; + oboInOwl:hasDefinition "A ranked list of Gene Ontology concepts, each associated with a p-value, concerning or derived from the analysis of e.g. a set of genes or proteins." ; + oboInOwl:hasExactSynonym "GO-term enrichment report", + "Gene ontology concept over-representation report", + "Gene ontology enrichment report", + "Gene ontology term enrichment report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1775 ], + :data_3753 . + +:data_3768 a owl:Class ; + rdfs:label "Clustered expression profiles" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "Groupings of expression profiles according to a clustering algorithm." ; + oboInOwl:hasNarrowSynonym "Clustered gene expression profiles" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2603 . + +:data_3786 a owl:Class ; + rdfs:label "Query script" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "A structured query, in form of a script, that defines a database search task." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:data_3805 a owl:Class ; + rdfs:label "3D EM Map" ; + :created_in "1.19" ; + oboInOwl:hasDefinition "Structural 3D model (volume map) from electron microscopy." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1317 ], + :data_0883 . + +:data_3806 a owl:Class ; + rdfs:label "3D EM Mask" ; + :created_in "1.19" ; + oboInOwl:hasDefinition "Annotation on a structural 3D EM Map from electron microscopy. This might include one or several locations in the map of the known features of a particular macromolecule." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1317 ], + :data_0883 . + +:data_3932 a owl:Class ; + rdfs:label "Q-value" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "A score derived from the P-value to ensure correction for multiple tests. The Q-value provides an estimate of the positive False Discovery Rate (pFDR), i.e. the rate of false positives among all the cases reported positive: pFDR = FP / (FP + TP)." ; + oboInOwl:hasExactSynonym "Adjusted P-value", + "FDR", + "Padj", + "pFDR" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Q-values are widely used in high-throughput data analysis (e.g. detection of differentially expressed genes from transcriptome data)." ; + rdfs:seeAlso ; + rdfs:subClassOf :data_0951 . + +:example a owl:AnnotationProperty ; + rdfs:label "Example" ; + oboLegacy:is_metadata_tag true ; + oboInOwl:hasDefinition "'Example' concept property ('example' metadata tag) lists examples of valid values of types of identifiers (accessions). Applicable to some other types of data, too." ; + oboInOwl:inSubset :properties ; + rdfs:comment "Separated by bar ('|'). For more complex data and data formats, it can be a link to a website with examples, instead." . + +:format_1196 a owl:Class ; + rdfs:label "SMILES" ; + :created_in "beta12orEarlier" ; + :documentation , + ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Chemical structure specified in Simplified Molecular Input Line Entry System (SMILES) line notation." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2035, + :format_2330 . + +:format_1457 a owl:Class ; + rdfs:label "Dot-bracket format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of RNA secondary structure in dot-bracket notation, originally generated by the Vienna RNA package/server." ; + oboInOwl:hasExactSynonym "Vienna RNA format", + "Vienna RNA secondary structure format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2076, + :format_2330 . + +:format_1476 a owl:Class ; + rdfs:label "PDB" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Entry format of PDB database in PDB format." ; + oboInOwl:hasExactSynonym "PDB format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1475, + :format_2330 . + +:format_1927 a owl:Class ; + rdfs:label "EMBL format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "EMBL entry format." ; + oboInOwl:hasExactSynonym "EMBL", + "EMBL sequence format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2181, + :format_2206 . + +:format_1931 a owl:Class ; + rdfs:label "FASTQ-illumina" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "FASTQ Illumina 1.3 short read format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2182 . + +:format_1933 a owl:Class ; + rdfs:label "FASTQ-solexa" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "FASTQ Solexa/Illumina 1.0 short read format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2182 . + +:format_1936 a owl:Class ; + rdfs:label "GenBank format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Genbank entry format." ; + oboInOwl:hasExactSynonym "GenBank" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2205, + :format_2206 . + +:format_1947 a owl:Class ; + rdfs:label "GCG MSF" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "GCG MSF (multiple sequence file) file format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3486 . + +:format_1948 a owl:Class ; + rdfs:label "nbrf/pir" ; + :created_in "beta12orEarlier" ; + :file_extension "pir" ; + oboInOwl:hasDefinition "NBRF/PIR entry sequence format." ; + oboInOwl:hasExactSynonym "nbrf", + "pir" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330 . + +:format_1949 a owl:Class ; + rdfs:label "nexus-seq" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Nexus/paup interleaved sequence format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551, + :format_2554 . + +:format_1973 a owl:Class ; + rdfs:label "nexusnon" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Nexus/paup non-interleaved sequence format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551, + :format_2554 . + +:format_1974 a owl:Class ; + rdfs:label "GFF2" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "General Feature Format (GFF) of sequence features." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2305 . + +:format_1978 a owl:Class ; + rdfs:label "DASGFF" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "DAS GFF (XML) feature format." ; + oboInOwl:hasExactSynonym "DASGFF feature", + "das feature" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2332, + :format_2553 . + +:format_1982 a owl:Class ; + rdfs:label "ClustalW format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "ClustalW format for (aligned) sequences." ; + oboInOwl:hasExactSynonym "clustal" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2554 . + +:format_1992 a owl:Class ; + rdfs:label "meganon" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Mega non-interleaved format for (typically aligned) sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2923 . + +:format_1997 a owl:Class ; + rdfs:label "PHYLIP format" ; + :created_in "beta12orEarlier" ; + :documentation "http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format" ; + oboInOwl:hasDefinition "Phylip format for (aligned) sequences." ; + oboInOwl:hasExactSynonym "PHYLIP", + "PHYLIP interleaved format", + "ph", + "phy" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2924 . + +:format_1998 a owl:Class ; + rdfs:label "PHYLIP sequential" ; + :created_in "beta12orEarlier" ; + :documentation "http://www.bioperl.org/wiki/PHYLIP_multiple_alignment_format" ; + oboInOwl:hasDefinition "Phylip non-interleaved format for (aligned) sequences." ; + oboInOwl:hasExactSynonym "PHYLIP sequential format", + "phylipnon" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2924 . + +:format_2000 a owl:Class ; + rdfs:label "selex" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "SELEX format for (aligned) sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551, + :format_2554 . + +:format_2005 a owl:Class ; + rdfs:label "TreeCon-seq" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Treecon format for (aligned) sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551, + :format_2554 . + +:format_2017 a owl:Class ; + rdfs:label "Amino acid index format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data format for an amino acid index." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1501 ], + :format_3033 . + +:format_2021 a owl:Class ; + rdfs:label "Text mining report format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format of a report from text mining." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0972 ], + :format_2350 . + +:format_2027 a owl:Class ; + rdfs:label "Enzyme kinetics report format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for reports on enzyme kinetics." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2024 ], + :format_2350 . + +:format_2038 a owl:Class ; + rdfs:label "Phylogenetic discrete states format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of phylogenetic discrete states data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1427 ], + :format_2036 . + +:format_2039 a owl:Class ; + rdfs:label "Phylogenetic tree report (cliques) format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of phylogenetic cliques data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1428 ], + :format_2036 . + +:format_2049 a owl:Class ; + rdfs:label "Phylogenetic tree report (tree distances) format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format for phylogenetic tree distance data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1442 ], + :format_2350 . + +:format_2056 a owl:Class ; + rdfs:label "Microarray experiment data format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format for information about a microarray experimental per se (not the data generated from that experiment)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3167 . + +:format_2060 a owl:Class ; + rdfs:label "Map format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a map of (typically one) molecular sequence annotated with features." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1274 ], + :format_2350 . + +:format_2061 a owl:Class ; + rdfs:label "Nucleic acid features (primers) format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a report on PCR primers or hybridisation oligos in a nucleic acid sequence." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2350 . + +:format_2062 a owl:Class ; + rdfs:label "Protein report format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a report of general information about a specific protein." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0896 ], + :format_2350 . + +:format_2064 a owl:Class ; + rdfs:label "3D-1D scoring matrix format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of a matrix of 3D-1D scores (amino acid environment probabilities)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1499 ], + :format_3033 . + +:format_2067 a owl:Class ; + rdfs:label "Sequence distance matrix format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a matrix of genetic distances between molecular sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0870 ], + :format_2350 . + +:format_2075 a owl:Class ; + rdfs:label "HMM emission and transition counts format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for the emission and transition counts of a hidden Markov model." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3354 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3355 ], + :format_2350 . + +:format_2095 a owl:Class ; + rdfs:label "unpure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a molecular sequence with possible unknown positions but possibly with non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2571 . + +:format_2096 a owl:Class ; + rdfs:label "unambiguous sequence" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a molecular sequence with possible unknown positions but without ambiguity characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2571 . + +:format_2097 a owl:Class ; + rdfs:label "ambiguous" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a molecular sequence with possible unknown positions and possible ambiguity characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2571 . + +:format_2187 a owl:Class ; + rdfs:label "UniProt-like (text)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A text sequence format resembling uniprotkb entry format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2547 . + +:format_2545 a owl:Class ; + rdfs:label "FASTQ-like format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A format resembling FASTQ short read format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This concept may be used for non-standard FASTQ short read-like formats." ; + rdfs:subClassOf :format_2057 . + +:format_2553 a owl:Class ; + rdfs:label "Sequence feature table format (XML)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "XML format for a sequence feature table." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2548 . + +:format_2558 a owl:Class ; + rdfs:label "EMBL-like (XML)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An XML format resembling EMBL entry format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This concept may be used for the any non-standard EMBL-like XML formats." ; + rdfs:subClassOf :format_2332, + :format_2543 . + +:format_2566 a owl:Class ; + rdfs:label "completely unambiguous" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a molecular sequence without any unknown positions or ambiguity characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2571 . + +:format_3016 a owl:Class ; + rdfs:label "VCF" ; + :created_in "beta12orEarlier" ; + :documentation ; + :file_extension "vcf", + "vcf.gz" ; + oboInOwl:hasDefinition "Variant Call Format (VCF) is tabular format for storing genomic sequence variations." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "1000 Genomes Project has its own specification for encoding structural variations in VCF (https://www.internationalgenome.org/wiki/Analysis/Variant%20Call%20Format/VCF%20(Variant%20Call%20Format)%20version%204.0/encoding-structural-variants). This is based on VCF version 4.0 and not directly compatible with VCF version 4.3." ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2330, + :format_2921 . + +:format_3158 a owl:Class ; + rdfs:label "PSI MI XML (MIF)" ; + :created_in "1.0" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "XML Molecular Interaction Format (MIF), standardised by HUPO PSI MI." ; + oboInOwl:hasExactSynonym "MIF" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2054, + :format_2332 . + +:format_3261 a owl:Class ; + rdfs:label "RDF/XML" ; + :created_in "1.2" ; + :file_extension "rdf" ; + :media_type ; + oboInOwl:hasDefinition "Resource Description Framework (RDF) XML format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "RDF/XML can be used as a standard serialisation syntax for OWL DL, but not for OWL Full." ; + rdfs:seeAlso "http://www.ebi.ac.uk/SWO/data/SWO_3000006" ; + rdfs:subClassOf :format_2332, + :format_2376 . + +:format_3287 a owl:Class ; + rdfs:label "Individual genetic data format" ; + :created_in "1.3" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for a metadata on an individual and their genetic data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2350 . + +:format_3549 a owl:Class ; + rdfs:label "nii" ; + :created_in "1.9" ; + :documentation ; + :file_extension "nii" ; + oboInOwl:hasDefinition "An open file format from the Neuroimaging Informatics Technology Initiative (NIfTI) commonly used to store brain imaging data obtained using Magnetic Resonance Imaging (MRI) methods." ; + oboInOwl:hasExactSynonym "NIFTI format", + "NIfTI-1 format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3547 . + +:format_3585 a owl:Class ; + rdfs:label "bed6" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "BED file format where each feature is described by chromosome, start, end, name, score, and strand." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Tab delimited data in strict BED format - no non-standard columns allowed; column count forced to 6" ; + rdfs:subClassOf :format_3584 . + +:format_3590 a owl:Class ; + rdfs:label "HDF5" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "HDF5 is a data model, library, and file format for storing and managing data, based on Hierarchical Data Format (HDF)." ; + oboInOwl:hasExactSynonym "h5" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "An HDF5 file appears to the user as a directed graph. The nodes of this graph are the higher-level HDF5 objects that are exposed by the HDF5 APIs: Groups, Datasets, Named datatypes. Currently supported by the Python MDTraj package.", + "HDF5 is the new version, according to the HDF group, a completely different technology (https://support.hdfgroup.org/products/hdf4/ compared to HDF." ; + rdfs:subClassOf :format_2333, + :format_3867 . + +:format_3606 a owl:Class ; + rdfs:label "Sequence quality report format (text)" ; + :created_in "1.11" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Textual report format for sequence quality for reports from sequencing machines." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2048 ], + :format_2350 . + +:format_3620 a owl:Class ; + rdfs:label "xlsx" ; + :created_in "1.11" ; + oboInOwl:hasDefinition "MS Excel spreadsheet format consisting of a set of XML documents stored in a ZIP-compressed file." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333, + :format_3507 . + +:format_3621 a owl:Class ; + rdfs:label "SQLite format" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDefinition "Data format used by the SQLite database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2333 . + +:format_3696 a owl:Class ; + rdfs:label "PS" ; + :created_in "1.13" ; + oboInOwl:hasDefinition "PostScript format." ; + oboInOwl:hasExactSynonym "PostScript" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330 . + +:format_3749 a owl:Class ; + rdfs:label "JSON-LD" ; + :created_in "1.15" ; + :documentation ; + :file_extension "jsonld" ; + :media_type ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "JSON-LD, or JavaScript Object Notation for Linked Data, is a method of encoding Linked Data using JSON." ; + oboInOwl:hasExactSynonym "JavaScript Object Notation for Linked Data", + "jsonld" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2376, + :format_3464, + :format_3748 . + +:format_3828 a owl:Class ; + rdfs:label "Raw microarray data format" ; + :created_in "1.20" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for raw microarray data." ; + oboInOwl:hasExactSynonym "Microarray data format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3110 ], + :format_2350 . + +:format_3841 a owl:Class ; + rdfs:label "NLP format" ; + :created_in "1.21" ; + oboInOwl:hasDefinition "Data format used in Natural Language Processing." ; + oboInOwl:hasExactSynonym "Natural Language Processing format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2350 . + +:format_3862 a owl:Class ; + rdfs:label "NLP annotation format" ; + :created_in "1.21" ; + oboInOwl:hasDefinition "An NLP format used for annotated textual documents." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3841 . + +:format_3865 a owl:Class ; + rdfs:label "RNA annotation format" ; + :created_in "1.21" ; + oboInOwl:hasDefinition "A \"placeholder\" concept for formats of annotated RNA data, including e.g. microRNA and RNA-Seq data." ; + oboInOwl:hasExactSynonym "RNA data format", + "miRNA data format", + "microRNA data format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2350 . + +:operation_0244 a owl:Class ; + rdfs:label "Simulation analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse flexibility and motion in protein structure." ; + oboInOwl:hasExactSynonym "CG analysis", + "MD analysis", + "Protein Dynamics Analysis", + "Trajectory analysis" ; + oboInOwl:hasNarrowSynonym "Nucleic Acid Dynamics Analysis", + "Protein flexibility and motion analysis", + "Protein flexibility prediction", + "Protein motion prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Use this concept for analysis of flexible and rigid residues, local chain deformability, regions undergoing conformational change, molecular vibrations or fluctuational dynamics, domain motions or other large-scale structural transitions in a protein structure." ; + rdfs:subClassOf :operation_0250 . + +:operation_0246 a owl:Class ; + rdfs:label "Protein domain recognition" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify structural domains in a protein structure from first principles (for example calculations on structural compactness)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0736 ], + :operation_2406, + :operation_3092 . + +:operation_0256 a owl:Class ; + rdfs:label "Sequence feature comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare the feature tables of two or more molecular sequences." ; + oboInOwl:hasExactSynonym "Feature comparison", + "Feature table comparison" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_1255 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + :operation_2403, + :operation_2424 . + +:operation_0276 a owl:Class ; + rdfs:label "Protein interaction network analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse a network of protein interactions." ; + oboInOwl:hasNarrowSynonym "Protein interaction network comparison" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0128 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2984 ], + :operation_2949, + :operation_3927 . + +:operation_0284 a owl:Class ; + rdfs:label "Codon usage table generation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate codon usage statistics and create a codon usage table." ; + oboInOwl:hasExactSynonym "Codon usage table construction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1597 ], + :operation_0286, + :operation_3429 . + +:operation_0285 a owl:Class ; + rdfs:label "Codon usage table comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare two or more codon usage tables." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0286, + :operation_2998 . + +:operation_0288 a owl:Class ; + rdfs:label "Sequence word comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Find exact character or word matches between molecular sequences without full sequence alignment." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2451 . + +:operation_0296 a owl:Class ; + rdfs:label "Sequence profile generation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate some type of sequence profile (for example a hidden Markov model) from a sequence alignment." ; + oboInOwl:hasExactSynonym "Sequence profile construction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1354 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0863 ], + :operation_0258, + :operation_3429 . + +:operation_0297 a owl:Class ; + rdfs:label "3D profile generation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate some type of structural (3D) profile or template from a structure or structure alignment." ; + oboInOwl:hasExactSynonym "Structural profile construction", + "Structural profile generation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0886 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0889 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0883 ], + :operation_2480, + :operation_3429 . + +:operation_0304 a owl:Class ; + rdfs:label "Metadata retrieval" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "(jison)Too fine-grained, the operation (Data retrieval) hasn't changed, just what is retrieved." ; + :obsolete_since "1.17" ; + :oldParent :operation_2422 ; + oboInOwl:hasDefinition "Search for and retrieve data concerning or describing some core data, as distinct from the primary data that is being described." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2422 ; + rdfs:comment "This includes documentation, general information and other metadata on entities such as databases, database entries and tools." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0362 a owl:Class ; + rdfs:label "Genome annotation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Annotate a genome sequence with terms from a controlled vocabulary." ; + oboInOwl:hasNarrowSynonym "Functional genome annotation", + "Metagenome annotation", + "Structural genome annotation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0361, + :operation_3918 . + +:operation_0391 a owl:Class ; + rdfs:label "Protein distance matrix calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate a matrix of distance between residues (for example the C-alpha atoms) in a protein structure." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1546 ], + :operation_2950 . + +:operation_0393 a owl:Class ; + rdfs:label "Residue cluster calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate clusters of contacting residues in protein structures." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes for example clusters of hydrophobic or charged residues, or clusters of contacting residues which have a key structural or functional role." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1548 ], + :operation_2950 . + +:operation_0394 a owl:Class ; + rdfs:label "Hydrogen bond calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF:HasHydrogenBonds", + "WHATIF:ShowHydrogenBonds", + "WHATIF:ShowHydrogenBondsM" ; + oboInOwl:hasDefinition "Identify potential hydrogen bonds between amino acids and other groups." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "The output might include the atoms involved in the bond, bond geometric parameters and bond enthalpy." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1549 ], + :operation_0248 . + +:operation_0398 a owl:Class ; + rdfs:label "Protein molecular weight calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate the molecular weight of a protein sequence or fragments." ; + oboInOwl:hasExactSynonym "Peptide mass calculation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1519 ], + :operation_0250 . + +:operation_0431 a owl:Class ; + rdfs:label "Restriction site recognition" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Find and identify restriction enzyme cleavage sites (restriction sites) in (typically) DNA sequences, for example to generate a restriction map." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso :operation_0575 ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + :operation_0415 . + +:operation_0432 a owl:Class ; + rdfs:label "Nucleosome position prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify or predict nucleosome exclusion sequences (nucleosome free regions) in DNA." ; + oboInOwl:hasNarrowSynonym "Nucleosome exclusion sequence prediction", + "Nucleosome formation sequence prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0415 . + +:operation_0436 a owl:Class ; + rdfs:label "Coding region prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict protein-coding regions (CDS or exon) or open reading frames in nucleotide sequences." ; + oboInOwl:hasExactSynonym "ORF finding", + "ORF prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2454 . + +:operation_0441 a owl:Class ; + rdfs:label "cis-regulatory element prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify, predict or analyse cis-regulatory elements in DNA sequences (TATA box, Pribnow box, SOS box, CAAT box, CCAAT box, operator etc.) or in RNA sequences (e.g. riboswitches)." ; + oboInOwl:hasNarrowSynonym "Transcriptional regulatory element prediction (DNA-cis)", + "Transcriptional regulatory element prediction (RNA-cis)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Cis-regulatory elements (cis-elements) regulate the expression of genes located on the same strand from which the element was transcribed. Cis-elements are found in the 5' promoter region of the gene, in an intron, or in the 3' untranslated region. Cis-elements are often binding sites of one or more trans-acting factors. They also occur in RNA sequences, e.g. a riboswitch is a region of an mRNA molecule that bind a small target molecule that regulates the gene's activity." ; + rdfs:subClassOf :operation_0438 . + +:operation_0473 a owl:Class ; + rdfs:label "GPCR analysis" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "Not sustainable to have protein type-specific concepts." ; + :obsolete_since "1.19" ; + :oldParent :operation_0270 ; + oboInOwl:hasDefinition "Analyse G-protein coupled receptor proteins (GPCRs)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0270 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0480 a owl:Class ; + rdfs:label "Side chain modelling" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Model, analyse or edit amino acid side chain conformation in protein structure, optimize side-chain packing, hydrogen bonding etc." ; + oboInOwl:hasExactSynonym "Protein modelling (side chains)" ; + oboInOwl:hasNarrowSynonym "Antibody optimisation", + "Antigen optimisation", + "Antigen resurfacing", + "Rotamer likelihood prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Antibody optimisation is to optimize the antibody-interacting surface of the antigen (epitope). Antigen optimisation is to optimize the antigen-interacting surface of the antibody (paratope). Antigen resurfacing is to resurface the antigen by varying the sequence of non-epitope regions.", + "Methods might use a residue rotamer library.", + "This includes rotamer likelihood prediction: the prediction of rotamer likelihoods for all 20 amino acid types at each position in a protein structure, where output typically includes, for each residue position, the likelihoods for the 20 amino acid types with estimated reliability of the 20 likelihoods." ; + rdfs:subClassOf :operation_0477 . + +:operation_0482 a owl:Class ; + rdfs:label "Protein-ligand docking" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Model protein-ligand (for example protein-peptide) binding using comparative modelling or other techniques." ; + oboInOwl:hasExactSynonym "Ligand-binding simulation" ; + oboInOwl:hasNarrowSynonym "Protein-peptide docking" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods aim to predict the position and orientation of a ligand bound to a protein receptor or enzyme.", + "Virtual screening is used in drug discovery to search libraries of small molecules in order to identify those molecules which are most likely to bind to a drug target (typically a protein receptor or enzyme)." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0128 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1461 ], + :operation_0478 . + +:operation_0483 a owl:Class ; + rdfs:label "RNA inverse folding" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict or optimise RNA sequences (sequence pools) with likely secondary and tertiary structure for in vitro selection." ; + oboInOwl:hasExactSynonym "Nucleic acid folding family identification", + "Structured RNA prediction and optimisation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1234 ], + :operation_3095 . + +:operation_0495 a owl:Class ; + rdfs:label "Local alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Locally align two or more molecular sequences." ; + oboInOwl:hasExactSynonym "Local sequence alignment", + "Sequence alignment (local)" ; + oboInOwl:hasNarrowSynonym "Smith-Waterman" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Local alignment methods identify regions of local similarity." ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0292 . + +:operation_0496 a owl:Class ; + rdfs:label "Global alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Globally align two or more molecular sequences." ; + oboInOwl:hasExactSynonym "Global sequence alignment", + "Sequence alignment (global)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Global alignment methods identify similarity across the entire length of the sequences." ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0292 . + +:operation_0503 a owl:Class ; + rdfs:label "Pairwise structure alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Align (superimpose) exactly two molecular tertiary structures." ; + oboInOwl:hasExactSynonym "Structure alignment (pairwise)" ; + oboInOwl:hasNarrowSynonym "Pairwise protein structure alignment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0295 . + +:operation_0504 a owl:Class ; + rdfs:label "Multiple structure alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Align (superimpose) more than two molecular tertiary structures." ; + oboInOwl:hasExactSynonym "Structure alignment (multiple)" ; + oboInOwl:hasNarrowSynonym "Multiple protein structure alignment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes methods that use an existing alignment." ; + rdfs:subClassOf :operation_0295 . + +:operation_0509 a owl:Class ; + rdfs:label "Local structure alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Locally align (superimpose) two or more molecular tertiary structures." ; + oboInOwl:hasExactSynonym "Structure alignment (local)" ; + oboInOwl:hasNarrowSynonym "Local protein structure alignment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Local alignment methods identify regions of local similarity, common substructures etc." ; + rdfs:subClassOf :operation_0295 . + +:operation_0510 a owl:Class ; + rdfs:label "Global structure alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Globally align (superimpose) two or more molecular tertiary structures." ; + oboInOwl:hasExactSynonym "Structure alignment (global)" ; + oboInOwl:hasNarrowSynonym "Global protein structure alignment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Global alignment methods identify similarity across the entire structures." ; + rdfs:subClassOf :operation_0295 . + +:operation_0523 a owl:Class ; + rdfs:label "Mapping assembly" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Sequence assembly by combining fragments using an existing backbone sequence, typically a reference genome." ; + oboInOwl:hasExactSynonym "Sequence assembly (mapping assembly)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "The final sequence will resemble the backbone sequence. Mapping assemblers are usually much faster and less memory intensive than de-novo assemblers." ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0310 . + +:operation_0524 a owl:Class ; + rdfs:label "De-novo assembly" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Sequence assembly by combining fragments without the aid of a reference sequence or genome." ; + oboInOwl:hasExactSynonym "De Bruijn graph", + "Sequence assembly (de-novo assembly)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "De-novo assemblers are much slower and more memory intensive than mapping assemblers." ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0310 . + +:operation_0525 a owl:Class ; + rdfs:label "Genome assembly" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The process of assembling many short DNA sequences together such that they represent the original chromosomes from which the DNA originated." ; + oboInOwl:hasExactSynonym "Genomic assembly", + "Sequence assembly (genome assembly)" ; + oboInOwl:hasNarrowSynonym "Breakend assembly" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0310, + :operation_3918 . + +:operation_0575 a owl:Class ; + rdfs:label "Restriction map drawing" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Draw or visualise restriction maps in DNA sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso :operation_0431 ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1289 ], + :operation_0573 . + +:operation_1781 a owl:Class ; + rdfs:label "Gene regulatory network analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse a known network of gene regulation." ; + oboInOwl:hasNarrowSynonym "Gene regulatory network comparison", + "Gene regulatory network modelling", + "Regulatory network comparison", + "Regulatory network modelling" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0602 ], + :operation_2495, + :operation_3927 . + +:operation_2436 a owl:Class ; + rdfs:label "Gene-set enrichment analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasBroadSynonym "Gene set testing" ; + oboInOwl:hasDefinition "Identify classes of genes or proteins that are over or under-represented in a large set of genes or proteins. For example analysis of a set of genes corresponding to a gene expression profile, annotated with Gene Ontology (GO) concepts, where eventual over-/under-representation of certain GO concept within the studied set of genes is revealed." ; + oboInOwl:hasExactSynonym "Functional enrichment analysis", + "GSEA", + "Gene-set over-represenation analysis" ; + oboInOwl:hasNarrowSynonym "Gene set analysis" ; + oboInOwl:hasRelatedSynonym "GO-term enrichment", + "Gene Ontology concept enrichment", + "Gene Ontology term enrichment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "\"Gene set analysis\" (often used interchangeably or in an overlapping sense with \"gene-set enrichment analysis\") refers to the functional analysis (term enrichment) of a differentially expressed set of genes, rather than all genes analysed.", + "Analyse gene expression patterns to identify sets of genes that are associated with a specific trait, condition, clinical outcome etc.", + "Gene sets can be defined beforehand by biological function, chromosome locations and so on.", + "The Gene Ontology (GO) is typically used, the input is a set of Gene IDs, and the output of the analysis is typically a ranked list of GO concepts, each associated with a p-value." ; + rdfs:seeAlso , + ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_3754 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1775 ], + :operation_2495, + :operation_3501 . + +:operation_2437 a owl:Class ; + rdfs:label "Gene regulatory network prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict a network of gene regulation." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2423, + :operation_2495, + :operation_3927 . + +:operation_2487 a owl:Class ; + rdfs:label "Protein structure comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare protein tertiary structures." ; + oboInOwl:hasExactSynonym "Structure comparison (protein)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods might identify structural neighbors, find structural similarities or define a structural core." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_1460 ], + :operation_2406, + :operation_2483, + :operation_2997 . + +:operation_2501 a owl:Class ; + rdfs:label "Nucleic acid analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_2945 ; + oboInOwl:consider :operation_2478, + :operation_2481 ; + oboInOwl:hasDefinition "Process (read and / or write) nucleic acid sequence or structural data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2502 a owl:Class ; + rdfs:label "Protein analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_2945 ; + oboInOwl:consider :operation_2406, + :operation_2479 ; + oboInOwl:hasDefinition "Process (read and / or write) protein sequence or structural data." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2518 a owl:Class ; + rdfs:label "Nucleic acid structure comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare nucleic acid tertiary structures." ; + oboInOwl:hasExactSynonym "Structure comparison (nucleic acid)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2481, + :operation_2483, + :operation_2998 . + +:operation_2929 a owl:Class ; + rdfs:label "Protein fragment weight comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate the molecular weight of a protein (or fragments) and compare it to another protein or reference data. Generally used for protein identification." ; + oboInOwl:hasExactSynonym "PMF", + "Peptide mass fingerprinting", + "Protein fingerprinting" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0398, + :operation_2930 . + +:operation_2930 a owl:Class ; + rdfs:label "Protein property comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare the physicochemical properties of two or more proteins (or reference data)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0897 ], + :operation_2997 . + +:operation_2996 a owl:Class ; + rdfs:label "Structure classification" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Assign molecular structure(s) to a group or category." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2480, + :operation_2990 . + +:operation_3023 a owl:Class ; + rdfs:label "Prediction and recognition (protein)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_2423 ; + oboInOwl:hasDefinition "Predict, recognise, detect or identify some properties of proteins." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2423 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3024 a owl:Class ; + rdfs:label "Prediction and recognition (nucleic acid)" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_2423 ; + oboInOwl:hasDefinition "Predict, recognise, detect or identify some properties of nucleic acids." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_2423 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3081 a owl:Class ; + rdfs:label "Sequence alignment editing" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Edit, convert or otherwise change a molecular sequence alignment, either randomly or specifically." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3096 . + +:operation_3083 a owl:Class ; + rdfs:label "Pathway or network visualisation" ; + :created_in "beta13" ; + :deprecation_comment "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." ; + :obsolete_since "1.24" ; + :oldParent :operation_2497 ; + oboInOwl:consider :operation_3925, + :operation_3926 ; + oboInOwl:hasDefinition "Render (visualise) a biological pathway or network." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_3094 a owl:Class ; + rdfs:label "Protein interaction network prediction" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Predict a network of protein interactions." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2949, + :operation_3927 . + +:operation_3195 a owl:Class ; + rdfs:label "Sequencing error detection" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Detect errors in DNA sequences generated from sequencing projects)." ; + oboInOwl:hasExactSynonym "Short read error correction", + "Short-read error correction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3168 ], + :operation_2451 . + +:operation_3196 a owl:Class ; + rdfs:label "Genotyping" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Analyse DNA sequence data to identify differences between the genetic composition (genotype) of an individual compared to other individual's or a reference sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods might consider cytogenetic analyses, copy number polymorphism (and calculate copy number calls for copy-number variation(CNV) regions), single nucleotide polymorphism (SNP), , rare copy number variation (CNV) identification, loss of heterozygosity data and so on." ; + rdfs:subClassOf :operation_3197 . + +:operation_3198 a owl:Class ; + rdfs:label "Read mapping" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Align short oligonucleotide sequences (reads) to a larger (genomic) sequence." ; + oboInOwl:hasExactSynonym "Oligonucleotide alignment", + "Oligonucleotide alignment construction", + "Oligonucleotide alignment generation", + "Oligonucleotide mapping", + "Read alignment", + "Short oligonucleotide alignment", + "Short read alignment", + "Short read mapping", + "Short sequence read mapping" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "The purpose of read mapping is to identify the location of sequenced fragments within a reference genome and assumes that there is, in fact, at least local similarity between the fragment and reference sequences." ; + rdfs:subClassOf :operation_2944, + :operation_3921 . + +:operation_3216 a owl:Class ; + rdfs:label "Scaffolding" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Link together a non-contiguous series of genomic sequences into a scaffold, consisting of sequences separated by gaps of known length. The sequences that are linked are typically typically contigs; contiguous sequences corresponding to read overlaps." ; + oboInOwl:hasExactSynonym "Scaffold construction", + "Scaffold generation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Scaffold may be positioned along a chromosome physical map to create a \"golden path\"." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0077 ], + :operation_0310, + :operation_3429 . + +:operation_3223 a owl:Class ; + rdfs:label "Differential gene expression profiling" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Identify from molecular sequence analysis (typically from analysis of microarray or RNA-seq data) genes whose expression levels are significantly different between two sample groups." ; + oboInOwl:hasExactSynonym "Differential expression analysis", + "Differential gene analysis", + "Differential gene expression analysis", + "Differentially expressed gene identification" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Differential gene expression analysis is used, for example, to identify which genes are up-regulated (increased expression) or down-regulated (decreased expression) between a group treated with a drug and a control groups." ; + rdfs:subClassOf :operation_0314 . + +:operation_3228 a owl:Class ; + rdfs:label "Structural variation detection" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Detect large regions in a genome subject to copy-number variation, or other structural variations in genome(s)." ; + oboInOwl:hasExactSynonym "Structural variation discovery" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods might involve analysis of whole-genome array comparative genome hybridisation or single-nucleotide polymorphism arrays, paired-end mapping of sequencing data, or from analysis of short reads from new sequencing technologies." ; + rdfs:subClassOf :operation_3197 . + +:operation_3352 a owl:Class ; + rdfs:label "Ontology comparison" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "Compare two or more ontologies, e.g. identify differences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2424 . + +:operation_3357 a owl:Class ; + rdfs:label "Format detection" ; + :comment_handle :comment_handle ; + :created_in "1.4" ; + oboInOwl:hasDefinition "Recognition of which format the given data is in." ; + oboInOwl:hasExactSynonym "Format identification", + "Format inference", + "Format recognition" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "'Format recognition' is not a bioinformatics-specific operation, but of great relevance in bioinformatics. Should be removed from EDAM if/when captured satisfactorily in a suitable domain-generic ontology." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_3358 ], + :operation_2409 . + +:operation_3431 a owl:Class ; + rdfs:label "Deposition" ; + :created_in "1.6" ; + oboInOwl:hasDefinition "Deposit some data in a database or some other type of repository or software system." ; + oboInOwl:hasExactSynonym "Data deposition", + "Data submission", + "Database deposition", + "Database submission", + "Submission" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "For non-analytical operations, see the 'Processing' branch." ; + rdfs:subClassOf :operation_2409 . + +:operation_3435 a owl:Class ; + rdfs:label "Standardisation and normalisation" ; + :created_in "1.6" ; + oboInOwl:hasDefinition "Standardize or normalize data by some statistical method." ; + oboInOwl:hasNarrowSynonym "Normalisation", + "Standardisation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "In the simplest normalisation means adjusting values measured on different scales to a common scale (often between 0.0 and 1.0), but can refer to more sophisticated adjustment whereby entire probability distributions of adjusted values are brought into alignment. Standardisation typically refers to an operation whereby a range of values are standardised to measure how many standard deviations a value is from its mean." ; + rdfs:subClassOf :operation_2238 . + +:operation_3457 a owl:Class ; + rdfs:label "Single particle analysis" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "An image processing technique that combines and analyze multiple images of a particulate sample, in order to produce an image with clearer features that are more easily interpreted." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Single particle analysis is used to improve the information that can be obtained by relatively low resolution techniques, , e.g. an image of a protein or virus from transmission electron microscopy (TEM)." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1317 ], + :operation_2480, + :operation_3443 . + +:operation_3480 a owl:Class ; + rdfs:label "Probabilistic data generation" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Generate some data from a chosen probibalistic model, possibly to evaluate algorithms." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3429 . + +:operation_3645 a owl:Class ; + rdfs:label "PTM identification" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Identification of post-translational modifications (PTMs) of peptides/proteins in mass spectrum." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3631 . + +:operation_3649 a owl:Class ; + rdfs:label "Target-Decoy" ; + :created_in "1.12" ; + oboInOwl:hasBroadSynonym "Validation of peptide-spectrum matches" ; + oboInOwl:hasDefinition "Statistical estimation of false discovery rate from score distribution for peptide-spectrum-matches, following a peptide database search, and by comparison to search results with a database containing incorrect information." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2428, + :operation_3646 . + +:operation_3664 a owl:Class ; + rdfs:label "Statistical modelling" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Construction of a statistical model, or a set of assumptions around some observed data, usually by describing a set of probability distributions which approximate the distribution of data." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2238 . + +:operation_3907 a owl:Class ; + rdfs:label "Information extraction" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Extract structured information from unstructured (\"free\") or semi-structured textual documents." ; + oboInOwl:hasExactSynonym "IE" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0306 . + +:operation_3908 a owl:Class ; + rdfs:label "Information retrieval" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Retrieve resources from information systems matching a specific information need." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0306 . + +:operation_3926 a owl:Class ; + rdfs:label "Pathway visualisation" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Render (visualise) a biological pathway." ; + oboInOwl:hasExactSynonym "Pathway rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2600 ], + :operation_0337, + :operation_3928 . + +:operation_3929 a owl:Class ; + rdfs:label "Metabolic pathway prediction" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Predict a metabolic pathway." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2423, + :operation_3928 . + +:operation_4009 a owl:Class ; + rdfs:label "Small molecule design" ; + :created_in 1.25 ; + oboInOwl:hasDefinition "The design of small molecules with specific biological activity, such as inhibitors or modulators for proteins that are of therapeutic interest. This can involve the modification of individual atoms, the addition or removal of molecular fragments, and the use reaction-based design to explore tractable synthesis options for the small molecule." ; + oboInOwl:hasNarrowSynonym "Drug design", + "Ligand-based drug design", + "Structure-based drug design", + "Structure-based small molecule design" ; + rdfs:comment "Small molecule design can involve assessment of target druggability and flexibility, molecular docking, in silico fragment screening, molecular dynamics, and homology modeling.", + "There are two broad categories of small molecule design techniques when applied to the design of drugs: ligand-based drug design (e.g. ligand similarity) and structure-based drug design (ligand docking) methods. Ligand similarity methods exploit structural similarities to known active ligands, whereas ligand docking methods use the 3D structure of a target protein to predict the binding modes and affinities of ligands to it." ; + rdfs:subClassOf :operation_2430 . + +:topic_0092 a owl:Class ; + rdfs:label "Data visualisation" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasBroadSynonym "Computer graphics" ; + oboInOwl:hasDbXref "VT 1.2.5 Computer graphics" ; + oboInOwl:hasDefinition "Rendering (drawing on a computer screen) or visualisation of molecular sequences, structures or other biomolecular data." ; + oboInOwl:hasExactSynonym "Data rendering" ; + oboInOwl:hasHumanReadableId "Data_visualisation" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3316 . + +:topic_0152 a owl:Class ; + rdfs:label "Carbohydrates" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Carbohydrates, typically including structural information." ; + oboInOwl:hasHumanReadableId "Carbohydrates" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0081 . + +:topic_0153 a owl:Class ; + rdfs:label "Lipids" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Lipids and their structures." ; + oboInOwl:hasExactSynonym "Lipidomics" ; + oboInOwl:hasHumanReadableId "Lipids" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0081 . + +:topic_0176 a owl:Class ; + rdfs:label "Molecular dynamics" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasBroadSynonym "Molecular flexibility", + "Molecular motions" ; + oboInOwl:hasDefinition "The study and simulation of molecular (typically protein) conformation using a computational model of physical forces and computer simulation." ; + oboInOwl:hasHumanReadableId "Molecular_dynamics" ; + oboInOwl:hasNarrowSynonym "Protein dynamics" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes methods such as Molecular Dynamics, Coarse-grained dynamics, metadynamics, Quantum Mechanics, QM/MM, Markov State Models, etc. This includes resources concerning flexibility and motion in protein and other molecular structures." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0082, + :topic_3892 . + +:topic_0202 a owl:Class ; + rdfs:label "Pharmacology" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.1.7 Pharmacology and pharmacy" ; + oboInOwl:hasDefinition "The study of drugs and their effects or responses in living systems." ; + oboInOwl:hasHumanReadableId "Pharmacology" ; + oboInOwl:hasNarrowSynonym "Computational pharmacology", + "Pharmacoinformatics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3344 . + +:topic_0611 a owl:Class ; + rdfs:label "Electron microscopy" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasBroadSynonym "Electron diffraction experiment" ; + oboInOwl:hasDefinition "The study of matter by studying the interference pattern from firing electrons at a sample, to analyse structures at resolutions higher than can be achieved using light." ; + oboInOwl:hasHumanReadableId "Electron_microscopy" ; + oboInOwl:hasNarrowSynonym "Electron crystallography", + "SEM", + "Scanning electron microscopy", + "Single particle electron microscopy", + "TEM", + "Transmission electron microscopy" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_1317, + :topic_3382 . + +:topic_0639 a owl:Class ; + rdfs:label "Protein sequence analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "Archival, processing and analysis of protein sequences and sequence-based entities such as alignments, motifs and profiles." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0080 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0640 a owl:Class ; + rdfs:label "Nucleic acid sequence analysis" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.8" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The archival, processing and analysis of nucleotide sequences and and sequence-based entities such as alignments, motifs and profiles." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0080 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_0748 a owl:Class ; + rdfs:label "Protein sites and features" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.3" ; + :oldParent owl:Thing ; + oboInOwl:consider :topic_0160, + :topic_0639 ; + oboInOwl:hasDefinition "The detection, identification and analysis of positional features in proteins, such as functional sites." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_1770 a owl:Class ; + rdfs:label "Structure comparison" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.13" ; + :oldParent owl:Thing ; + oboInOwl:hasDefinition "The comparison of two or more molecular structures, for example structure alignment and clustering." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :topic_0081 ; + rdfs:comment "This might involve comparison of secondary or tertiary (3D) structural information." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_2258 a owl:Class ; + rdfs:label "Cheminformatics" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The application of information technology to chemistry in biological research environment." ; + oboInOwl:hasExactSynonym "Chemical informatics", + "Chemoinformatics" ; + oboInOwl:hasHumanReadableId "Cheminformatics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0605 . + +:topic_2820 a owl:Class ; + rdfs:label "Vertebrates" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "(jison)Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." ; + :obsolete_since "1.17" ; + :oldParent :topic_3500 ; + oboInOwl:consider :topic_0621 ; + oboInOwl:hasDefinition "Vertebrates, e.g. information on a specific vertebrate genome including molecular sequences, genes and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The resource may be specific to a vertebrate, a group of vertebrates or all vertebrates." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3047 a owl:Class ; + rdfs:label "Molecular biology" ; + :created_in "beta13" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.4 Biochemistry and molecular biology" ; + oboInOwl:hasDefinition "The molecular basis of biological activity, particularly the macromolecules (e.g. proteins and nucleic acids) that are essential to life." ; + oboInOwl:hasHumanReadableId "Molecular_biology" ; + oboInOwl:hasNarrowSynonym "Biological processes" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:topic_3064 a owl:Class ; + rdfs:label "Developmental biology" ; + :created_in "beta13" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.14 Developmental biology" ; + oboInOwl:hasDefinition "How organisms grow and develop." ; + oboInOwl:hasHumanReadableId "Developmental_biology" ; + oboInOwl:hasNarrowSynonym "Development" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:topic_3065 a owl:Class ; + rdfs:label "Embryology" ; + :created_in "beta13" ; + :isdebtag true ; + oboInOwl:hasDefinition "The development of organisms between the one-cell stage (typically the zygote) and the end of the embryonic stage." ; + oboInOwl:hasHumanReadableId "Embryology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3064 . + +:topic_3077 a owl:Class ; + rdfs:label "Data acquisition" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "The acquisition of data, typically measurements of physical systems using any type of sampling system, or by another other means." ; + oboInOwl:hasExactSynonym "Data collection" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3071 . + +:topic_3174 a owl:Class ; + rdfs:label "Metagenomics" ; + :created_in "1.1" ; + :isdebtag true ; + :related_term "Environmental DNA (eDNA)", + "Environmental sequencing" ; + oboInOwl:hasBroadSynonym "Biome sequencing", + "Community genomics", + "Ecogenomics", + "Environmental genomics", + "Environmental omics" ; + oboInOwl:hasDefinition "The study of genetic material recovered from environmental samples, and associated environmental data." ; + oboInOwl:hasHumanReadableId "Metagenomics" ; + oboInOwl:hasNarrowSynonym "Shotgun metagenomics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0610, + :topic_0622 ; + skos:exactMatch . + +:topic_3175 a owl:Class ; + rdfs:label "Structural variation" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Variation in chromosome structure including microscopic and submicroscopic types of variation such as deletions, duplications, copy-number variants, insertions, inversions and translocations." ; + oboInOwl:hasExactSynonym "DNA structural variation", + "Genomic structural variation" ; + oboInOwl:hasHumanReadableId "DNA_structural_variation" ; + oboInOwl:hasNarrowSynonym "Deletion", + "Duplication", + "Insertion", + "Inversion", + "Translocation" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0199, + :topic_0654 . + +:topic_3292 a owl:Class ; + rdfs:label "Biochemistry" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.4 Biochemistry and molecular biology" ; + oboInOwl:hasDefinition "Chemical substances and physico-chemical processes and that occur within living organisms." ; + oboInOwl:hasExactSynonym "Biological chemistry" ; + oboInOwl:hasHumanReadableId "Biochemistry" ; + oboInOwl:hasNarrowSynonym "Glycomics", + "Pathobiochemistry", + "Phytochemistry" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070, + :topic_3314 . + +:topic_3293 a owl:Class ; + rdfs:label "Phylogenetics" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDefinition "The study of evolutionary relationships amongst organisms from analysis of genetic information (typically gene or protein sequences)." ; + oboInOwl:hasHumanReadableId "Phylogenetics" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D010802" ; + rdfs:subClassOf :topic_0080, + :topic_0084 . + +:topic_3305 a owl:Class ; + rdfs:label "Public health and epidemiology" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.3.1 Epidemiology" ; + oboInOwl:hasDefinition "Topic concerning the the patterns, cause, and effect of disease within populations." ; + oboInOwl:hasHumanReadableId "Public_health_and_epidemiology" ; + oboInOwl:hasNarrowSynonym "Epidemiology", + "Public health" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_3303 . + +:topic_3320 a owl:Class ; + rdfs:label "RNA splicing" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDefinition "RNA splicing; post-transcription RNA modification involving the removal of introns and joining of exons." ; + oboInOwl:hasExactSynonym "Alternative splicing" ; + oboInOwl:hasHumanReadableId "RNA_splicing" ; + oboInOwl:hasNarrowSynonym "Splice sites" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes the study of splice sites, splicing patterns, alternative splicing events and variants, isoforms, etc.." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0099, + :topic_0203 . + +:topic_3342 a owl:Class ; + rdfs:label "Translational medicine" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDefinition "'translating' the output of basic and biomedical research into better diagnostic tools, medicines, medical procedures, policies and advice." ; + oboInOwl:hasHumanReadableId "Translational_medicine" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3365 a owl:Class ; + rdfs:label "Data architecture, analysis and design" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The development of policies, models and standards that cover data acquisition, storage and integration, such that it can be put to use, typically through a process of systematically applying statistical and / or logical techniques to describe, illustrate, summarise or evaluate data." ; + oboInOwl:hasHumanReadableId "Data_architecture_analysis_and_design" ; + oboInOwl:hasNarrowSynonym "Data analysis", + "Data architecture", + "Data design" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3071 . + +:topic_3366 a owl:Class ; + rdfs:label "Data integration and warehousing" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The combination and integration of data from different sources, for example into a central repository or warehouse, to provide users with a unified view of these data." ; + oboInOwl:hasHumanReadableId "Data_integration_and_warehousing" ; + oboInOwl:hasNarrowSynonym "Data integration", + "Data warehousing" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_3071 . + +:topic_3384 a owl:Class ; + rdfs:label "Medical imaging" ; + :created_in "1.4" ; + oboInOwl:hasDbXref "VT 3.2.13 Medical imaging", + "VT 3.2.14 Nuclear medicine", + "VT 3.2.24 Radiology" ; + oboInOwl:hasDefinition "The use of imaging techniques for clinical purposes for medical research." ; + oboInOwl:hasHumanReadableId "Medical_imaging" ; + oboInOwl:hasNarrowSynonym "Neuroimaging", + "Nuclear medicine", + "Radiology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3382 . + +:topic_3386 a owl:Class ; + rdfs:label "Laboratory animal science" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The use of animals and alternatives in experimental research." ; + oboInOwl:hasExactSynonym "Animal experimentation", + "Animal research", + "Animal testing", + "In vivo testing" ; + oboInOwl:hasHumanReadableId "Laboratory_animal_science" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3344 . + +:topic_3407 a owl:Class ; + rdfs:label "Endocrinology and metabolism" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDefinition "The branch of medicine dealing with diseases of endocrine organs, hormone systems, their target organs, and disorders of the pathways of glucose and lipid metabolism." ; + oboInOwl:hasHumanReadableId "Endocrinology_and_metabolism" ; + oboInOwl:hasNarrowSynonym "Endocrine disorders", + "Endocrinology", + "Metabolic disorders", + "Metabolism" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3534 a owl:Class ; + rdfs:label "Protein binding sites" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Binding sites in proteins, including cleavage sites (for a proteolytic enzyme or agent), key residues involved in protein folding, catalytic residues (active site) of an enzyme, ligand-binding (non-catalytic) residues of a protein, such as sites that bind metal, prosthetic groups or lipids, RNA and DNA-binding proteins and binding sites etc." ; + oboInOwl:hasHumanReadableId "Protein_binding_sites" ; + oboInOwl:hasNarrowSynonym "Enzyme active site", + "Protein cleavage sites", + "Protein functional sites", + "Protein key folding sites", + "Protein-nucleic acid binding sites" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3510 . + +:topic_3542 a owl:Class ; + rdfs:label "Protein secondary structure" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Secondary structure (predicted or real) of a protein, including super-secondary structure." ; + oboInOwl:hasExactSynonym "Protein features (secondary structure)" ; + oboInOwl:hasHumanReadableId "Protein_secondary_structure" ; + oboInOwl:hasNarrowSynonym "Protein super-secondary structure" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "Super-secondary structures include leucine zippers, coiled coils, Helix-Turn-Helix etc.", + "The location and size of the secondary structure elements and intervening loop regions is typically given. The report can include disulphide bonds and post-translationally formed peptide bonds (crosslinks)." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_2814 . + +:topic_3572 a owl:Class ; + rdfs:label "Data quality management" ; + :created_in "1.10" ; + oboInOwl:hasDefinition "The quality, integrity, and cleaning up of data." ; + oboInOwl:hasHumanReadableId "Data_quality_management" ; + oboInOwl:hasNarrowSynonym "Data clean-up", + "Data cleaning", + "Data integrity", + "Data quality" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3071 . + +:topic_3697 a owl:Class ; + rdfs:label "Microbial ecology" ; + :created_in "1.13" ; + :isdebtag true ; + oboInOwl:hasDefinition "The ecology of microorganisms including their relationship with one another and their environment." ; + oboInOwl:hasExactSynonym "Environmental microbiology" ; + oboInOwl:hasHumanReadableId "Microbial_ecology" ; + oboInOwl:hasNarrowSynonym "Community analysis", + "Microbiome", + "Molecular community analysis" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0610, + :topic_3301 . + +:topic_3892 a owl:Class ; + rdfs:label "Biomolecular simulation" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "The study and simulation of molecular conformations using a computational model and computer simulations." ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes methods such as Molecular Dynamics, Coarse-grained dynamics, metadynamics, Quantum Mechanics, QM/MM, Markov State Models, etc." ; + rdfs:subClassOf :topic_3307 . + +:topic_3923 a owl:Class ; + rdfs:label "Genome resequencing" ; + :created_in "1.24" ; + :related_term "Amplicon panels" ; + oboInOwl:hasBroadSynonym "Resequencing" ; + oboInOwl:hasDefinition "Laboratory experiment to identify the differences between a specific genome (of an individual) and a reference genome (developed typically from many thousands of individuals). WGS re-sequencing is used as golden standard to detect variations compared to a given reference genome, including small variants (SNP and InDels) as well as larger genome re-organisations (CNVs, translocations, etc.)." ; + oboInOwl:hasNarrowSynonym "Highly targeted resequencing", + "Whole genome resequencing (WGR)", + "Whole-genome re-sequencing (WGSR)" ; + oboInOwl:hasRelatedSynonym "Amplicon sequencing", + "Amplicon-based sequencing", + "Ultra-deep sequencing" ; + rdfs:comment "Amplicon sequencing is the ultra-deep sequencing of PCR products (amplicons), usually for the purpose of efficient genetic variant identification and characterisation in specific genomic regions." ; + rdfs:subClassOf :topic_3168 . + +:topic_4010 a owl:Class ; + rdfs:label "Open science" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "Open science encompasses the practices of making scientific research transparent and participatory, and its outputs publicly accessible." ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0003 . + +dc:format a owl:AnnotationProperty . + +:data_0846 a owl:Class ; + rdfs:label "Chemical formula" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A specification of a chemical structure." ; + oboInOwl:hasExactSynonym "Chemical structure specification" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2050 . + +:data_0848 a owl:Class ; + rdfs:label "Raw sequence" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - \"raw\" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata)." ; + :obsolete_since "1.23" ; + :oldParent :data_2044 ; + oboInOwl:hasDefinition "A raw molecular sequence (string of characters) which might include ambiguity, unknown positions and non-sequence characters." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2044 ; + rdfs:comment "Non-sequence characters may be used for example for gaps and translation stop." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_0865 a owl:Class ; + rdfs:label "Sequence similarity score" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A value representing molecular sequence similarity." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1772 . + +:data_0870 a owl:Class ; + rdfs:label "Sequence distance matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:phylogenetic_distance_matrix" ; + oboInOwl:hasDefinition "A matrix of estimated evolutionary distance between molecular sequences, such as is suitable for phylogenetic tree calculation." ; + oboInOwl:hasExactSynonym "Phylogenetic distance matrix" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Methods might perform character compatibility analysis or identify patterns of similarity in an alignment or data matrix." ; + rdfs:subClassOf :data_2855 . + +:data_0889 a owl:Class ; + rdfs:label "Structural profile" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Some type of structural (3D) profile or template (representing a structure or structure alignment)." ; + oboInOwl:hasExactSynonym "3D profile", + "Structural (3D) profile" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0081 ], + :data_0006 . + +:data_0893 a owl:Class ; + rdfs:label "Sequence-structure alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An alignment of molecular sequence to structure (from threading sequence(s) through 3D structure or representation of structure(s))." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1916 . + +:data_0919 a owl:Class ; + rdfs:label "Chromosome report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about a specific chromosome." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This includes basic information. e.g. chromosome number, length, karyotype features, chromosome sequence etc." ; + rdfs:subClassOf :data_2084 . + +:data_0949 a owl:Class ; + rdfs:label "Workflow metadata" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Basic information, annotation or documentation concerning a workflow (but not the workflow itself)." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2337 . + +:data_0970 a owl:Class ; + rdfs:label "Citation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:GCP_SimpleCitation", + "Moby:Publication" ; + oboInOwl:hasDefinition "Bibliographic data that uniquely identifies a scientific article, book or other published material." ; + oboInOwl:hasExactSynonym "Bibliographic reference", + "Reference" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A bibliographic reference might include information such as authors, title, journal name, date and (possibly) a link to the abstract or full-text of the article if available." ; + rdfs:subClassOf :data_2526 . + +:data_0971 a owl:Class ; + rdfs:label "Article" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A scientific text, typically a full text article from a scientific journal." ; + oboInOwl:hasNarrowSynonym "Article text", + "Scientific article" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2526, + :data_3671 . + +:data_0988 a owl:Class ; + rdfs:label "Peptide identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a peptide chain." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0982 . + +:data_0993 a owl:Class ; + rdfs:label "Drug identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a drug." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2851 ], + :data_1086 . + +:data_0994 a owl:Class ; + rdfs:label "Amino acid identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of an amino acid." ; + oboInOwl:hasExactSynonym "Residue identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2016 ], + :data_1086 . + +:data_1010 a owl:Class ; + rdfs:label "Enzyme identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name or other identifier of an enzyme or record from a database of enzymes." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0989 . + +:data_1017 a owl:Class ; + rdfs:label "Sequence range" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Specification of range(s) of sequence positions." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2534 . + +:data_1025 a owl:Class ; + rdfs:label "Gene identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDbXref "Moby:GeneAccessionList" ; + oboInOwl:hasDefinition "An identifier of a gene, such as a name/symbol or a unique identifier of a gene in a database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0916 ], + :data_0976 . + +:data_1027 a owl:Class ; + rdfs:label "Gene ID (NCBI)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "http://www.geneontology.org/doc/GO.xrf_abbs:LocusID", + "http://www.geneontology.org/doc/GO.xrf_abbs:NCBI_Gene" ; + oboInOwl:hasDefinition "An NCBI unique identifier of a gene." ; + oboInOwl:hasExactSynonym "Entrez gene ID", + "Gene identifier (Entrez)", + "Gene identifier (NCBI)", + "NCBI gene ID", + "NCBI geneid" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1098, + :data_2091, + :data_2295 . + +:data_1039 a owl:Class ; + rdfs:label "SCOP domain identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a protein domain (or other node) from the SCOP database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1038, + :data_2091 . + +:data_1064 a owl:Class ; + rdfs:label "Sequence set ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a set of molecular sequence(s)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0850 ], + :data_0976 . + +:data_1070 a owl:Class ; + rdfs:label "Structure ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A unique and persistent identifier of a molecular tertiary structure, typically an entry from a structure database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_3035 . + +:data_1075 a owl:Class ; + rdfs:label "Protein family identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a protein family." ; + oboInOwl:hasExactSynonym "Protein secondary database record identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0907 ], + :data_0976 . + +:data_1077 a owl:Class ; + rdfs:label "Transcription factor identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a transcription factor (or a TF binding site)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976, + :data_0989 . + +:data_1081 a owl:Class ; + rdfs:label "Genotype and phenotype annotation ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of an entry from a database of genotypes and phenotypes." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0920 ], + :data_0976 . + +:data_1084 a owl:Class ; + rdfs:label "Data resource definition ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a data type definition from some provider." ; + oboInOwl:hasExactSynonym "Data resource definition identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_1085 a owl:Class ; + rdfs:label "Biological model ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a mathematical model, typically an entry from a database." ; + oboInOwl:hasExactSynonym "Biological model identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0950 ], + :data_0976 . + +:data_1089 a owl:Class ; + rdfs:label "FlyBase ID" ; + :created_in "beta12orEarlier" ; + :regex "FB[a-zA-Z_0-9]{2}[0-9]{7}" ; + oboInOwl:hasDefinition "Identifier of an object from the FlyBase database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109 . + +:data_1163 a owl:Class ; + rdfs:label "MIRIAM data type name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a data type from the MIRIAM database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0957 ], + :data_2253 . + +:data_1384 a owl:Class ; + rdfs:label "Protein sequence alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alignment of multiple protein sequences." ; + oboInOwl:hasExactSynonym "Sequence alignment (protein)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0863 . + +:data_1399 a owl:Class ; + rdfs:label "Gap separation penalty" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A penalty for gaps that are close together in an alignment." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2137 . + +:data_1442 a owl:Class ; + rdfs:label "Phylogenetic tree distances" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Distances, such as Branch Score distance, between two or more phylogenetic trees." ; + oboInOwl:hasExactSynonym "Phylogenetic tree report (tree distances)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2523 . + +:data_1448 a owl:Class ; + rdfs:label "Comparison matrix (nucleotide)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Matrix of integer or floating point numbers for nucleotide comparison." ; + oboInOwl:hasExactSynonym "Nucleotide comparison matrix", + "Nucleotide substitution matrix" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0874 . + +:data_1449 a owl:Class ; + rdfs:label "Comparison matrix (amino acid)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Matrix of integer or floating point numbers for amino acid comparison." ; + oboInOwl:hasExactSynonym "Amino acid comparison matrix", + "Amino acid substitution matrix" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0874, + :data_2016 . + +:data_1463 a owl:Class ; + rdfs:label "Small molecule structure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for the (3D) structure of a small molecule, such as any common chemical compound." ; + oboInOwl:hasRelatedSynonym "CHEBI:23367" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0154 ], + :data_0883 . + +:data_1479 a owl:Class ; + rdfs:label "Structure alignment (pair)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alignment (superimposition) of exactly two molecular tertiary (3D) structures." ; + oboInOwl:hasExactSynonym "Pair structure alignment" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0886 . + +:data_1539 a owl:Class ; + rdfs:label "Protein structural quality report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Report on the quality of a protein three-dimensional model." ; + oboInOwl:hasExactSynonym "Protein property (structural quality)", + "Protein report (structural quality)", + "Protein structure report (quality evaluation)", + "Protein structure validation report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Model validation might involve checks for atomic packing, steric clashes, agreement with electron density maps etc." ; + rdfs:subClassOf :data_1537 . + +:data_1696 a owl:Class ; + rdfs:label "Drug report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about a specific drug." ; + oboInOwl:hasExactSynonym "Drug annotation" ; + oboInOwl:hasNarrowSynonym "Drug structure relationship map" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A drug structure relationship map is report (typically a map diagram) of drug structure relationships." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0154 ], + :data_0962 . + +:data_1709 a owl:Class ; + rdfs:label "Protein secondary structure image" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Image of protein secondary structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3153 . + +:data_1712 a owl:Class ; + rdfs:label "Chemical structure image" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An image of the structure of a small chemical compound." ; + oboInOwl:hasExactSynonym "Small molecule structure image" ; + oboInOwl:hasNarrowSynonym "Chemical structure sketch", + "Small molecule sketch" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The molecular identifier and formula are typically included." ; + rdfs:subClassOf :data_1710 . + +:data_1881 a owl:Class ; + rdfs:label "Author ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:Author" ; + oboInOwl:hasDefinition "Information on the authors of a published work." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2118 . + +:data_2127 a owl:Class ; + rdfs:label "Genetic code identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a genetic code." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1598 ], + :data_0976 . + +:data_2162 a owl:Class ; + rdfs:label "Helical wheel" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An image of peptide sequence sequence looking down the axis of the helix for highlighting amphipathicity and other properties." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1709 . + +:data_2285 a owl:Class ; + rdfs:label "Gene ID (MIPS)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier for genetic elements in MIPS database." ; + oboInOwl:hasExactSynonym "MIPS genetic element identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_2355 a owl:Class ; + rdfs:label "RNA family identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of an RNA family, typically an entry from a RNA sequence classification database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2354 ], + :data_0976 . + +:data_2366 a owl:Class ; + rdfs:label "Secondary structure alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alignment of the (1D representations of) secondary structure of two or more molecules." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1916 . + +:data_2373 a owl:Class ; + rdfs:label "Spot ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Unique identifier of a spot from a two-dimensional (protein) gel." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2379 a owl:Class ; + rdfs:label "Strain identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a strain of an organism variant, typically a plant, virus or bacterium." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1869 . + +:data_2387 a owl:Class ; + rdfs:label "TAIR accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the TAIR database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109 . + +:data_2538 a owl:Class ; + rdfs:label "Mutation identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a mutation." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2576 a owl:Class ; + rdfs:label "Toxin identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a toxin." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2852 ], + :data_1086 . + +:data_2618 a owl:Class ; + rdfs:label "Protein modification ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a protein modification catalogued in a database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2632 a owl:Class ; + rdfs:label "SGD ID" ; + :created_in "beta12orEarlier" ; + :regex "PWY[a-zA-Z_0-9]{2}\\-[0-9]{3}" ; + oboInOwl:hasDefinition "Identifier of an entry from the Saccharomyces genome database (SGD)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109 . + +:data_2639 a owl:Class ; + rdfs:label "PubChem ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an entry from the PubChem database." ; + oboInOwl:hasExactSynonym "PubChem identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109 . + +:data_2655 a owl:Class ; + rdfs:label "Cell type identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A unique identifier of a type or group of cells." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2700 a owl:Class ; + rdfs:label "CATH identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a protein domain (or other node) from the CATH database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1038, + :data_2091 . + +:data_2718 a owl:Class ; + rdfs:label "Oligonucleotide ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of an oligonucleotide from a database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2119, + :data_2901 . + +:data_2727 a owl:Class ; + rdfs:label "Promoter ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDbXref "Moby:GeneAccessionList" ; + oboInOwl:hasDefinition "An identifier of a promoter of a gene that is catalogued in a database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2762 a owl:Class ; + rdfs:label "Sequence signature report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An informative report about a specific or conserved pattern in a molecular sequence, such as its context in genes or proteins, its role, origin or method of construction, etc." ; + oboInOwl:hasExactSynonym "Sequence motif report", + "Sequence profile report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + :data_2048 . + +:data_2795 a owl:Class ; + rdfs:label "ORF identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of an open reading frame." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2897 a owl:Class ; + rdfs:label "Toxin accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of a toxin (catalogued in a database)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2576 . + +:data_2902 a owl:Class ; + rdfs:label "Data resource definition accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of a data definition (catalogued in a database)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1084 . + +:data_2905 a owl:Class ; + rdfs:label "Lipid accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of an entry from a database of lipids." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2812, + :data_2901 . + +:data_2915 a owl:Class ; + rdfs:label "Gramene identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a Gramene database entry." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1096, + :data_2091 . + +:data_2975 a owl:Class ; + rdfs:label "Nucleic acid sequence (raw)" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "Deprecated because this is bloat / confusing & better handled as an EDAM Format concept - \"raw\" sequences just imply a particular format (i.e. one with a vanilla string, possible in a particular alphabet, with no metadata)." ; + :obsolete_since "1.23" ; + :oldParent :data_0848 ; + oboInOwl:hasDefinition "A raw nucleic acid sequence." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :data_2977 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:data_2978 a owl:Class ; + rdfs:label "Reaction data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning a biochemical reaction, typically data and more general annotation on the kinetics of enzyme-catalysed reaction." ; + oboInOwl:hasExactSynonym "Enzyme kinetics annotation", + "Reaction annotation" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf :data_0006 . + +:data_2979 a owl:Class ; + rdfs:label "Peptide property" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning small peptides." ; + oboInOwl:hasExactSynonym "Peptide data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2087 . + +:data_2991 a owl:Class ; + rdfs:label "Protein geometry data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Geometry data for a protein structure, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc." ; + oboInOwl:hasExactSynonym "Torsion angle data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897 . + +:data_3021 a owl:Class ; + rdfs:label "UniProt accession" ; + :created_in "beta12orEarlier" ; + :documentation ; + :example "P43353|Q7M1G0|Q9C199|A5A6J6" ; + :regex "[OPQ][0-9][A-Z0-9]{3}[0-9]|[A-NR-Z][0-9]([A-Z][A-Z0-9]{2}[0-9]){1,2}" ; + oboInOwl:hasDefinition "Accession number of a UniProt (protein sequence) database entry." ; + oboInOwl:hasExactSynonym "UniProt accession number", + "UniProt entry accession", + "UniProtKB accession", + "UniProtKB accession number" ; + oboInOwl:hasNarrowSynonym "Swiss-Prot entry accession", + "TrEMBL entry accession" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1096, + :data_2091 . + +:data_3025 a owl:Class ; + rdfs:label "Ontology concept identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a concept in an ontology of biological or bioinformatics concepts and relations." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2858 ], + :data_0976 . + +:data_3035 a owl:Class ; + rdfs:label "Structure identifier" ; + :created_in "beta13" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a molecular tertiary structure, typically an entry from a structure database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0883 ], + :data_0976 . + +:data_3036 a owl:Class ; + rdfs:label "Matrix identifier" ; + :created_in "beta13" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of an array of numerical values, such as a comparison matrix." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2082 ], + :data_0976 . + +:data_3113 a owl:Class ; + rdfs:label "Sample annotation" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Annotation on a biological sample, for example experimental factors and their values." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This might include compound and dose in a dose response experiment." ; + rdfs:subClassOf :data_2337 . + +:data_3153 a owl:Class ; + rdfs:label "Protein image" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "An image of a protein." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2968 . + +:data_3241 a owl:Class ; + rdfs:label "Kinetic model" ; + :created_in "1.2" ; + oboInOwl:hasDefinition "Mathematical model of a network, that contains biochemical kinetics." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0950 . + +:data_3354 a owl:Class ; + rdfs:label "Transition matrix" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "A HMM transition matrix contains the probabilities of switching from one HMM state to another." ; + oboInOwl:hasExactSynonym "HMM transition matrix" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Consider for example an HMM with two states (AT-rich and GC-rich). The transition matrix will hold the probabilities of switching from the AT-rich to the GC-rich state, and vica versa." ; + rdfs:subClassOf :data_2082 . + +:data_3355 a owl:Class ; + rdfs:label "Emission matrix" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "A HMM emission matrix holds the probabilities of choosing the four nucleotides (A, C, G and T) in each of the states of a HMM." ; + oboInOwl:hasExactSynonym "HMM emission matrix" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Consider for example an HMM with two states (AT-rich and GC-rich). The emission matrix holds the probabilities of choosing each of the four nucleotides (A, C, G and T) in the AT-rich state and in the GC-rich state." ; + rdfs:subClassOf :data_2082 . + +:data_3358 a owl:Class ; + rdfs:label "Format identifier" ; + :created_in "1.4" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a data format." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0976 . + +:data_3494 a owl:Class ; + rdfs:label "DNA sequence" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "A DNA sequence." ; + oboInOwl:hasExactSynonym "DNA sequences" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2977 . + +:data_3667 a owl:Class ; + rdfs:label "Disease identifier" ; + :created_in "1.12" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of an entry from a database of disease." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1622 ], + :data_0976 . + +:data_3716 a owl:Class ; + rdfs:label "Biosafety report" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "A human-readable collection of information concerning biosafety data." ; + oboInOwl:hasExactSynonym "Biosafety information" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2048 . + +:data_3717 a owl:Class ; + rdfs:label "Isolation report" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "A report about any kind of isolation of biological material." ; + oboInOwl:hasNarrowSynonym "Geographic location", + "Isolation source" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2048 . + +:data_3870 a owl:Class ; + rdfs:label "Trajectory data" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Dynamic information of a structure molecular system coming from a molecular simulation: XYZ 3D coordinates (sometimes with their associated velocities) for every atom along time." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3869 . + +:data_3872 a owl:Class ; + rdfs:label "Topology data" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Static information of a structure molecular system that is needed for a molecular simulation: the list of atoms, their non-bonded parameters for Van der Waals and electrostatic interactions, and the complete connectivity in terms of bonds, angles and dihedrals." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3869 . + +:format_1210 a owl:Class ; + rdfs:label "pure nucleotide" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a nucleotide sequence with possible ambiguity and unknown positions but without non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1207, + :format_2094 . + +:format_1333 a owl:Class ; + rdfs:label "BLAST results" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of results of a sequence database search using some variant of BLAST." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This includes score data, alignment data and summary table." ; + rdfs:subClassOf :format_2066, + :format_2330 . + +:format_1341 a owl:Class ; + rdfs:label "InterPro hits format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Results format for searches of the InterPro database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2066, + :format_2330 . + +:format_1370 a owl:Class ; + rdfs:label "HMMER format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of a hidden Markov model representation used by the HMMER package." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2072, + :format_2330 . + +:format_2006 a owl:Class ; + rdfs:label "Phylogenetic tree format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for a phylogenetic tree." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0872 ], + :format_2350 . + +:format_2020 a owl:Class ; + rdfs:label "Article format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for a full-text scientific article." ; + oboInOwl:hasExactSynonym "Literature format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0971 ], + :format_2350 . + +:format_2037 a owl:Class ; + rdfs:label "Phylogenetic continuous quantitative character format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of phylogenetic continuous quantitative character data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1426 ], + :format_2036 . + +:format_2065 a owl:Class ; + rdfs:label "Protein structure report (quality evaluation) format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a report on the quality of a protein three-dimensional model." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1539 ], + :format_2350 . + +:format_2072 a owl:Class ; + rdfs:label "Hidden Markov model format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of a hidden Markov model." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1364 ], + :format_2069 . + +:format_2074 a owl:Class ; + rdfs:label "Dirichlet distribution format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format of a dirichlet distribution." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1347 ], + :format_2350 . + +:format_2077 a owl:Class ; + rdfs:label "Protein secondary structure format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format for secondary structure (predicted or real) of a protein molecule." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2350 . + +:format_2078 a owl:Class ; + rdfs:label "Sequence range format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format used to specify range(s) of sequence positions." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1017 ], + :format_2350 . + +:format_2170 a owl:Class ; + rdfs:label "Sequence cluster format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format used for clusters of molecular sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1235 ], + :format_2350 . + +:format_2172 a owl:Class ; + rdfs:label "Sequence cluster format (nucleic acid)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format used for clusters of nucleotide sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2170 . + +:format_2181 a owl:Class ; + rdfs:label "EMBL-like (text)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A text format resembling EMBL entry format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This concept may be used for the many non-standard EMBL-like text formats." ; + rdfs:subClassOf :format_2330, + :format_2543 . + +:format_2196 a owl:Class ; + rdfs:label "OBO format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A serialisation format conforming to the Open Biomedical Ontologies (OBO) model." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2195 . + +:format_2205 a owl:Class ; + rdfs:label "GenBank-like format (text)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A text format resembling GenBank entry (plain text) format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This concept may be used for the non-standard GenBank-like text formats." ; + rdfs:subClassOf :format_2330, + :format_2559 . + +:format_2546 a owl:Class ; + rdfs:label "FASTA-like" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A format resembling FASTA format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This concept may be used for the many non-standard FASTA-like formats." ; + rdfs:subClassOf :format_1919 . + +:format_2555 a owl:Class ; + rdfs:label "Alignment format (XML)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "XML format for molecular sequence alignment information." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1921 . + +:format_2557 a owl:Class ; + rdfs:label "Phylogenetic tree format (XML)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "XML format for a phylogenetic tree." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2006 . + +:format_2559 a owl:Class ; + rdfs:label "GenBank-like format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A format resembling GenBank entry (plain text) format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This concept may be used for the non-standard GenBank-like formats." ; + rdfs:subClassOf :format_1919 . + +:format_2923 a owl:Class ; + rdfs:label "mega variant" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Some variant of Mega format for (typically aligned) sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551, + :format_2554 . + +:format_3003 a owl:Class ; + rdfs:label "BED" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Browser Extensible Data (BED) format of sequence annotation track, typically to be displayed in a genome browser." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "BED detail format includes 2 additional columns (http://genome.ucsc.edu/FAQ/FAQformat#format1.7) and BED 15 includes 3 additional columns for experiment scores (http://genomewiki.ucsc.edu/index.php/Microarray_track)." ; + rdfs:subClassOf :format_2330, + :format_2919 . + +:format_3166 a owl:Class ; + rdfs:label "Biological pathway or network report format" ; + :created_in "1.0" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for a report of information derived from a biological pathway or network." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2984 ], + :format_2350 . + +:format_3288 a owl:Class ; + rdfs:label "PED/MAP" ; + :created_in "1.3" ; + :documentation ; + oboInOwl:hasDefinition "The PED/MAP file describes data used by the Plink package." ; + oboInOwl:hasExactSynonym "Plink PED/MAP" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_3287 . + +:format_3584 a owl:Class ; + rdfs:label "bedstrict" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Browser Extensible Data (BED) format of sequence annotation track that strictly does not contain non-standard fields beyond the first 3 columns." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Galaxy allows BED files to contain non-standard fields beyond the first 3 columns, some other implementations do not." ; + rdfs:subClassOf :format_3003 . + +:format_3612 a owl:Class ; + rdfs:label "ENCODE peak format" ; + :created_in "1.11" ; + :documentation ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Human ENCODE peak format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Format that covers both the broad peak format and narrow peak format from ENCODE." ; + rdfs:subClassOf :format_3585 . + +:format_3617 a owl:Class ; + rdfs:label "Graph format" ; + :created_in "1.11" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for graph data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2350 . + +:format_3748 a owl:Class ; + rdfs:label "Linked data format" ; + :citation , + ; + :created_in "1.15" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A linked data format enables publishing structured data as linked data (Linked Data), so that the data can be interlinked and become more useful through semantic queries." ; + oboInOwl:hasRelatedSynonym "Semantic Web format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2350 . + +:format_3751 a owl:Class ; + rdfs:label "DSV" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "Tabular data represented as values in a text file delimited by some character." ; + oboInOwl:hasExactSynonym "Delimiter-separated values", + "Tabular format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_2330 . + +:format_3824 a owl:Class ; + rdfs:label "NMR data format" ; + :created_in "1.20" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for raw data from a nuclear magnetic resonance (NMR) spectroscopy experiment." ; + oboInOwl:hasExactSynonym "NMR peak assignment data format", + "NMR processed data format", + "NMR raw data format", + "Nuclear magnetic resonance spectroscopy data format", + "Processed NMR data format", + "Raw NMR data format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3488 ], + :format_2350 . + +:format_3866 a owl:Class ; + rdfs:label "Trajectory format" ; + :created_in "1.22" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "File format to store trajectory information for a 3D structure ." ; + oboInOwl:hasExactSynonym "CG trajectory formats", + "MD trajectory formats", + "NA trajectory formats", + "Protein trajectory formats" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Formats differ on what they are able to store (coordinates, velocities, topologies) and how they are storing it (raw, compressed, textual, binary)." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3870 ], + :format_2350 . + +:has_function a owl:ObjectProperty ; + rdfs:label "has function" ; + oboLegacy:is_anti_symmetric "false" ; + oboLegacy:is_reflexive "false" ; + oboLegacy:is_symmetric "false" ; + oboLegacy:transitive_over "OBO_REL:is_a" ; + oboInOwl:hasDefinition "'A has_function B' defines for the subject A, that it has the object B as its function." ; + oboInOwl:hasRelatedSynonym "OBO_REL:bearer_of" ; + oboInOwl:inSubset :properties ; + oboInOwl:isCyclic true ; + rdfs:comment "Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is (or is in a role of) a function, or an entity outside of an ontology that is (or is in a role of) a function specification. In the scope of EDAM, 'has_function' serves only for relating annotated entities outside of EDAM with 'Operation' concepts." ; + rdfs:range :operation_0004 ; + owl:inverseOf :is_function_of ; + skos:broadMatch ; + skos:closeMatch oboLegacy:OBI_0000306 ; + skos:exactMatch . + +:operation_0224 a owl:Class ; + rdfs:label "Query and retrieval" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Search or query a data resource and retrieve entries and / or annotation." ; + oboInOwl:hasExactSynonym "Database retrieval" ; + oboInOwl:hasNarrowSynonym "Query" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2409 . + +:operation_0237 a owl:Class ; + rdfs:label "Repeat sequence analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Find and/or analyse repeat sequences in (typically nucleotide) sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Repeat sequences include tandem repeats, inverted or palindromic repeats, DNA microsatellites (Simple Sequence Repeats or SSRs), interspersed repeats, maximal duplications and reverse, complemented and reverse complemented repeats etc. Repeat units can be exact or imperfect, in tandem or dispersed, of specified or unspecified length." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0157 ], + :operation_2403 . + +:operation_0239 a owl:Class ; + rdfs:label "Sequence motif recognition" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Find (scan for) known motifs, patterns and regular expressions in molecular sequence(s)." ; + oboInOwl:hasExactSynonym "Motif scanning", + "Sequence signature detection", + "Sequence signature recognition" ; + oboInOwl:hasNarrowSynonym "Motif detection", + "Motif recognition", + "Motif search", + "Sequence motif detection", + "Sequence motif search", + "Sequence profile search" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0858 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + :operation_0253, + :operation_2404 . + +:operation_0247 a owl:Class ; + rdfs:label "Protein architecture analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse the architecture (spatial arrangement of secondary structure) of protein structure(s)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2406 . + +:operation_0278 a owl:Class ; + rdfs:label "RNA secondary structure prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict RNA secondary structure (for example knots, pseudoknots, alternative structures etc)." ; + oboInOwl:hasNarrowSynonym "RNA shape prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods might use RNA motifs, predicted intermolecular contacts, or RNA sequence-structure compatibility (inverse RNA folding)." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0880 ], + :operation_0415, + :operation_0475, + :operation_2439 . + +:operation_0282 a owl:Class ; + rdfs:label "Genetic mapping" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate a genetic (linkage) map of a DNA sequence (typically a chromosome) showing the relative positions of genetic markers based on estimation of non-physical distances." ; + oboInOwl:hasExactSynonym "Functional mapping", + "Genetic cartography", + "Genetic map construction", + "Genetic map generation", + "Linkage mapping" ; + oboInOwl:hasNarrowSynonym "QTL mapping" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Mapping involves ordering genetic loci along a chromosome and estimating the physical distance between loci. A genetic map shows the relative (not physical) position of known genes and genetic markers.", + "This includes mapping of the genetic architecture of dynamic complex traits (functional mapping), e.g. by characterisation of the underlying quantitative trait loci (QTLs) or nucleotides (QTNs)." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1278 ], + :operation_0283, + :operation_2520 . + +:operation_0283 a owl:Class ; + rdfs:label "Linkage analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse genetic linkage." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "For example, estimate how close two genes are on a chromosome by calculating how often they are transmitted together to an offspring, ascertain whether two genes are linked and parental linkage, calculate linkage map distance etc." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0927 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0102 ], + :operation_2478 . + +:operation_0291 a owl:Class ; + rdfs:label "Sequence clustering" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Build clusters of similar sequences, typically using scores from pair-wise alignment or other comparison of the sequences." ; + oboInOwl:hasExactSynonym "Sequence cluster construction", + "Sequence cluster generation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "The clusters may be output or used internally for some other purpose." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1235 ], + :operation_2451, + :operation_3429, + :operation_3432 . + +:operation_0294 a owl:Class ; + rdfs:label "Structure-based sequence alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Align molecular sequences using sequence and structural information." ; + oboInOwl:hasExactSynonym "Sequence alignment (structure-based)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0292 . + +:operation_0298 a owl:Class ; + rdfs:label "Profile-profile alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_0292 ; + oboInOwl:hasDefinition "Align sequence profiles (representing sequence alignments)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0300 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0299 a owl:Class ; + rdfs:label "3D profile-to-3D profile alignment" ; + :created_in "beta12orEarlier" ; + :obsolete_since "1.19" ; + :oldParent :operation_0295 ; + oboInOwl:hasDefinition "Align structural (3D) profiles or templates (representing structures or structure alignments)." ; + oboInOwl:inSubset :obsolete ; + oboInOwl:replacedBy :operation_0295 ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_0303 a owl:Class ; + rdfs:label "Fold recognition" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Recognize (predict and identify) known protein structural domains or folds in protein sequence(s) which (typically) are not accompanied by any significant sequence similarity to know structures." ; + oboInOwl:hasExactSynonym "Domain prediction", + "Fold prediction", + "Protein domain prediction", + "Protein fold prediction", + "Protein fold recognition" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods use some type of mapping between sequence and fold, for example secondary structure prediction and alignment, profile comparison, sequence properties, homologous sequence search, kernel machines etc. Domains and folds might be taken from SCOP or CATH." ; + rdfs:subClassOf :operation_2406, + :operation_2479, + :operation_2928, + :operation_2997, + :operation_3092 . + +:operation_0314 a owl:Class ; + rdfs:label "Gene expression profiling" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The measurement of the activity (expression) of multiple genes in a cell, tissue, sample etc., in order to get an impression of biological function." ; + oboInOwl:hasExactSynonym "Feature expression analysis", + "Functional profiling", + "Gene expression profile construction", + "Gene expression profile generation", + "Gene expression quantification", + "Gene transcription profiling" ; + oboInOwl:hasNarrowSynonym "Non-coding RNA profiling", + "Protein profiling", + "RNA profiling", + "mRNA profiling" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Gene expression profiling generates some sort of gene expression profile, for example from microarray data." ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2495 . + +:operation_0315 a owl:Class ; + rdfs:label "Expression profile comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Comparison of expression profiles." ; + oboInOwl:hasNarrowSynonym "Gene expression comparison", + "Gene expression profile comparison" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2495 . + +:operation_0322 a owl:Class ; + rdfs:label "Molecular model refinement" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF: CorrectedPDBasXML" ; + oboInOwl:hasDefinition "Refine (after evaluation) a model of a molecular structure (typically a protein structure) to reduce steric clashes, volume irregularities etc." ; + oboInOwl:hasNarrowSynonym "Protein model refinement" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2425, + :operation_2480 . + +:operation_0331 a owl:Class ; + rdfs:label "Variant effect prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict the effect of point mutation on a protein structure, in terms of strucural effects and protein folding, stability and function." ; + oboInOwl:hasExactSynonym "Variant functional prediction" ; + oboInOwl:hasNarrowSynonym "Protein SNP mapping", + "Protein mutation modelling", + "Protein stability change prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Protein SNP mapping maps and modesl the effects of single nucleotide polymorphisms (SNPs) on protein structure(s). Methods might predict silent or pathological mutations." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0130 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0199 ], + :operation_2423 . + +:operation_0339 a owl:Class ; + rdfs:label "Structure database search" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Search a tertiary structure database, typically by sequence and/or structure comparison, or some other means, and retrieve structures and associated data." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0081 ], + :operation_2421 . + +:operation_0369 a owl:Class ; + rdfs:label "Sequence cutting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Cut (remove) characters or a region from a molecular sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0231 . + +:operation_0389 a owl:Class ; + rdfs:label "Protein-nucleic acid interaction analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse the interaction of protein with nucleic acids, e.g. RNA or DNA-binding sites, interfaces etc." ; + oboInOwl:hasExactSynonym "Protein-nucleic acid binding site analysis" ; + oboInOwl:hasNarrowSynonym "Protein-DNA interaction analysis", + "Protein-RNA interaction analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0128 ], + :operation_1777 . + +:operation_0416 a owl:Class ; + rdfs:label "Epitope mapping" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict antigenic determinant sites (epitopes) in protein sequences." ; + oboInOwl:hasExactSynonym "Antibody epitope prediction", + "Epitope prediction" ; + oboInOwl:hasNarrowSynonym "B cell epitope mapping", + "B cell epitope prediction", + "Epitope mapping (MHC Class I)", + "Epitope mapping (MHC Class II)", + "T cell epitope mapping", + "T cell epitope prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Epitope mapping is commonly done during vaccine design." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0804 ], + :operation_2429, + :operation_3092 . + +:operation_0440 a owl:Class ; + rdfs:label "Promoter prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify or predict whole promoters or promoter elements (transcription start sites, RNA polymerase binding site, transcription factor binding sites, promoter enhancers etc) in DNA sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods might recognize CG content, CpG islands, splice sites, polyA signals etc." ; + rdfs:subClassOf :operation_0438 . + +:operation_0478 a owl:Class ; + rdfs:label "Molecular docking" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Model the structure of a protein in complex with a small molecule or another macromolecule." ; + oboInOwl:hasExactSynonym "Docking simulation", + "Macromolecular docking" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes protein-protein interactions, protein-nucleic acid, protein-ligand binding etc. Methods might predict whether the molecules are likely to bind in vivo, their conformation when bound, the strength of the interaction, possible mutations to achieve bonding and so on." ; + rdfs:seeAlso , + ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1461 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2877 ], + :operation_1777, + :operation_2480 . + +:operation_0484 a owl:Class ; + rdfs:label "SNP detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Find single nucleotide polymorphisms (SNPs) - single nucleotide change in base positions - between sequences. Typically done for sequences from a high-throughput sequencing experiment that differ from a reference genome and which might, especially by reference to population frequency or functional data, indicate a polymorphism." ; + oboInOwl:hasExactSynonym "SNP calling", + "SNP discovery", + "Single nucleotide polymorphism detection" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes functional SNPs for large-scale genotyping purposes, disease-associated non-synonymous SNPs etc." ; + rdfs:subClassOf :operation_3227 . + +:operation_0491 a owl:Class ; + rdfs:label "Pairwise sequence alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Align exactly two molecular sequences." ; + oboInOwl:hasExactSynonym "Pairwise alignment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods might perform one-to-one, one-to-many or many-to-many comparisons." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1381 ], + :operation_0292 . + +:operation_1844 a owl:Class ; + rdfs:label "Protein geometry validation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF: ImproperQualityMax", + "WHATIF: ImproperQualitySum" ; + oboInOwl:hasDefinition "Validate protein geometry, for example bond lengths, bond angles, torsion angles, chiralities, planaraties etc. An example is validation of a Ramachandran plot of a protein structure." ; + oboInOwl:hasNarrowSynonym "Ramachandran plot validation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0321 . + +:operation_2419 a owl:Class ; + rdfs:label "Primer and probe design" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict oligonucleotide primers or probes." ; + oboInOwl:hasExactSynonym "Primer and probe prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0632 ], + :operation_2423, + :operation_3095 . + +:operation_2425 a owl:Class ; + rdfs:label "Optimisation and refinement" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Refine or optimise some data model." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0004 . + +:operation_2464 a owl:Class ; + rdfs:label "Protein-protein binding site prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify or predict protein-protein binding sites." ; + oboInOwl:hasExactSynonym "Protein-protein binding site detection" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0128 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0906 ], + :operation_2575 . + +:operation_2488 a owl:Class ; + rdfs:label "Protein secondary structure comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare protein secondary structures." ; + oboInOwl:hasExactSynonym "Protein secondary structure", + "Secondary structure comparison (protein)" ; + oboInOwl:hasNarrowSynonym "Protein secondary structure alignment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2416, + :operation_2997 . + +:operation_2499 a owl:Class ; + rdfs:label "Splicing analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict, analyse, characterize or model splice sites, splicing events and so on, typically by comparing multiple nucleic acid sequences." ; + oboInOwl:hasExactSynonym "Splicing model analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0114 ], + :operation_2423, + :operation_2426, + :operation_2454 . + +:operation_2938 a owl:Class ; + rdfs:label "Dendrogram visualisation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Visualise clustered expression data using a tree diagram." ; + oboInOwl:hasExactSynonym "Dendrogram plotting", + "Dendrograph plotting", + "Dendrograph visualisation", + "Expression data tree or dendrogram rendering", + "Expression data tree visualisation" ; + oboInOwl:hasNarrowSynonym "Microarray 2-way dendrogram rendering", + "Microarray checks view rendering", + "Microarray matrix tree plot rendering", + "Microarray tree or dendrogram rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0571 . + +:operation_2962 a owl:Class ; + rdfs:label "Codon usage bias calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate codon usage bias, e.g. generate a codon usage bias plot." ; + oboInOwl:hasNarrowSynonym "Codon usage bias plotting" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2865 ], + :operation_0286 . + +:operation_3211 a owl:Class ; + rdfs:label "Genome indexing" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Generate an index of a genome sequence." ; + oboInOwl:hasNarrowSynonym "Burrows-Wheeler", + "Genome indexing (Burrows-Wheeler)", + "Genome indexing (suffix arrays)", + "Suffix arrays" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Many sequence alignment tasks involving many or very large sequences rely on a precomputed index of the sequence to accelerate the alignment. The Burrows-Wheeler Transform (BWT) is a permutation of the genome based on a suffix array algorithm. A suffix array consists of the lexicographically sorted list of suffixes of a genome." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_3210 ], + :operation_0227, + :operation_3918 . + +:operation_3437 a owl:Class ; + rdfs:label "Article comparison" ; + :created_in "1.6" ; + oboInOwl:hasDefinition "Compare two or more scientific articles." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3068 ], + :operation_2424 . + +:operation_3465 a owl:Class ; + rdfs:label "Correlation" ; + :created_in "1.7" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identify a correlation, i.e. a statistical relationship between two random variables or two sets of data." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + :operation_0004 . + +:operation_3501 a owl:Class ; + rdfs:label "Enrichment analysis" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Analysis of a set of objects, such as genes, annotated with given categories, where eventual over-/under-representation of certain categories within the studied set of objects is revealed." ; + oboInOwl:hasExactSynonym "Enrichment", + "Over-representation analysis" ; + oboInOwl:hasNarrowSynonym "Functional enrichment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Categories from a relevant ontology can be used. The input is typically a set of genes or other biological objects, possibly represented by their identifiers, and the output of the analysis is typically a ranked list of categories, each associated with a statistical metric of over-/under-representation within the studied data." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_3753 ], + :operation_2945 . + +:operation_3634 a owl:Class ; + rdfs:label "Label-free quantification" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Quantification without the use of chemical tags." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3630 . + +:operation_3680 a owl:Class ; + rdfs:label "RNA-Seq analysis" ; + :created_in "1.13" ; + oboInOwl:hasDefinition "Analyze data from RNA-seq experiments." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2495, + :operation_3921 . + +:operation_3778 a owl:Class ; + rdfs:label "Text annotation" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "Text annotation is the operation of adding notes, data and metadata, recognised entities and concepts, and their relations to a text (such as a scientific article)." ; + oboInOwl:hasNarrowSynonym "Article annotation", + "Literature annotation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_3779 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3068 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_3671 ], + :operation_0226 . + +:operation_3799 a owl:Class ; + rdfs:label "Quantification" ; + :created_in "1.17" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Counting and measuring experimentally determined observations into quantities." ; + oboInOwl:hasExactSynonym "Quantitation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0004 . + +:operation_3925 a owl:Class ; + rdfs:label "Network visualisation" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Render (visualise) a network - typically a biological network of some sort." ; + oboInOwl:hasExactSynonym "Network rendering" ; + oboInOwl:hasNarrowSynonym "Protein interaction network rendering", + "Protein interaction network visualisation" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2600 ], + :operation_0337, + :operation_3927 . + +:operation_3935 a owl:Class ; + rdfs:label "Dimensionality reduction" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "A process used in statistics, machine learning, and information theory that reduces the number of random variables by obtaining a set of principal variables." ; + oboInOwl:hasExactSynonym "Dimension reduction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0943 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + :operation_3438 . + +:topic_0091 a owl:Class ; + rdfs:label "Bioinformatics" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.6 Bioinformatics" ; + oboInOwl:hasDefinition "The archival, curation, processing and analysis of complex biological data." ; + oboInOwl:hasHumanReadableId "Bioinformatics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "This includes data processing in general, including basic handling of files and databases, datatypes, workflows and annotation." ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D016247" ; + rdfs:subClassOf :topic_0605 . + +:topic_0140 a owl:Class ; + rdfs:label "Protein targeting and localisation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The study of how proteins are transported within and without the cell, including signal peptides, protein subcellular localisation and export." ; + oboInOwl:hasHumanReadableId "Protein_targeting_and_localisation" ; + oboInOwl:hasNarrowSynonym "Protein localisation", + "Protein sorting", + "Protein targeting" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0108 . + +:topic_0166 a owl:Class ; + rdfs:label "Protein structural motifs and surfaces" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Structural features or common 3D motifs within protein structures, including the surface of a protein structure, such as biological interfaces with other molecules." ; + oboInOwl:hasExactSynonym "Protein 3D motifs" ; + oboInOwl:hasHumanReadableId "Protein_structural_motifs_and_surfaces" ; + oboInOwl:hasNarrowSynonym "Protein structural features", + "Protein structural motifs", + "Protein surfaces", + "Structural motifs" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes conformation of conserved substructures, conserved geometry (spatial arrangement) of secondary structure or protein backbone, solvent-exposed surfaces, internal cavities, the analysis of shape, hydropathy, electrostatic patches, role and functions etc." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_2814 . + +:topic_0194 a owl:Class ; + rdfs:label "Phylogenomics" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The integrated study of evolutionary relationships and whole genome data, for example, in the analysis of species trees, horizontal gene transfer and evolutionary reconstruction." ; + oboInOwl:hasHumanReadableId "Phylogenomics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0080, + :topic_0622 . + +:topic_0218 a owl:Class ; + rdfs:label "Natural language processing" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The processing and analysis of natural language, such as scientific literature in English, in order to extract data and information, or to enable human-computer interaction." ; + oboInOwl:hasExactSynonym "NLP" ; + oboInOwl:hasHumanReadableId "Natural_language_processing" ; + oboInOwl:hasNarrowSynonym "BioNLP", + "Literature mining", + "Text analytics", + "Text data mining", + "Text mining" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + , + ; + rdfs:subClassOf :topic_3068, + :topic_3316 . + +:topic_0219 a owl:Class ; + rdfs:label "Data submission, annotation, and curation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Deposition and curation of database accessions, including annotation, typically with terms from a controlled vocabulary." ; + oboInOwl:hasHumanReadableId "Data_submission_annotation_and_curation" ; + oboInOwl:hasNarrowSynonym "Data curation", + "Data provenance", + "Database curation" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:subClassOf :topic_3071 . + +:topic_0780 a owl:Class ; + rdfs:label "Plant biology" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "VT 1.5.10 Botany", + "VT 1.5.22 Plant science" ; + oboInOwl:hasDefinition "Plants, e.g. information on a specific plant genome including molecular sequences, genes and annotation." ; + oboInOwl:hasExactSynonym "Botany", + "Plant", + "Plant science", + "Plants" ; + oboInOwl:hasHumanReadableId "Plant_biology" ; + oboInOwl:hasNarrowSynonym "Plant anatomy", + "Plant cell biology", + "Plant ecology", + "Plant genetics", + "Plant physiology" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "The resource may be specific to a plant, a group of plants or all plants." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:topic_0821 a owl:Class ; + rdfs:label "Enzymes" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Proteins that catalyze chemical reaction, the kinetics of enzyme-catalysed reactions, enzyme nomenclature etc." ; + oboInOwl:hasExactSynonym "Enzymology" ; + oboInOwl:hasHumanReadableId "Enzymes" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0078 . + +:topic_2269 a owl:Class ; + rdfs:label "Statistics and probability" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The application of statistical methods to biological problems." ; + oboInOwl:hasHumanReadableId "Statistics_and_probability" ; + oboInOwl:hasNarrowSynonym "Bayesian methods", + "Biostatistics", + "Descriptive statistics", + "Gaussian processes", + "Inferential statistics", + "Markov processes", + "Multivariate statistics", + "Probabilistic graphical model", + "Probability", + "Statistics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + , + , + "http://purl.bioontology.org/ontology/MSH/D056808" ; + rdfs:subClassOf :topic_3315 . + +:topic_2818 a owl:Class ; + rdfs:label "Eukaryotes" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "(jison) Out of EDAM scope. While very useful to have a basic set of IDs for organisms, should find a better way to provide this e.g. in bio.tools (NCBI taxon ID subset)." ; + :obsolete_since "1.17" ; + :oldParent :topic_0621 ; + oboInOwl:consider :topic_0621 ; + oboInOwl:hasDefinition "Eukaryotes or data concerning eukaryotes, e.g. information on a specific eukaryote genome including molecular sequences, genes and annotation." ; + oboInOwl:inSubset :obsolete ; + rdfs:comment "The resource may be specific to a eukaryote, a group of eukaryotes or all eukaryotes." ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:topic_3300 a owl:Class ; + rdfs:label "Physiology" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.1.8 Physiology" ; + oboInOwl:hasDefinition "The functions of living organisms and their constituent parts." ; + oboInOwl:hasHumanReadableId "Physiology" ; + oboInOwl:hasNarrowSynonym "Electrophysiology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3308 a owl:Class ; + rdfs:label "Transcriptomics" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDefinition "The analysis of transcriptomes, or a set of all the RNA molecules in a specific cell, tissue etc." ; + oboInOwl:hasHumanReadableId "Transcriptomics" ; + oboInOwl:hasNarrowSynonym "Comparative transcriptomics", + "Transcriptome" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0203, + :topic_0622 . + +:topic_3336 a owl:Class ; + rdfs:label "Drug discovery" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDefinition "The discovery and design of drugs or potential drug compounds." ; + oboInOwl:hasHumanReadableId "Drug_discovery" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "This includes methods that search compound collections, generate or analyse drug 3D conformations, identify drug targets with structural docking etc." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3314, + :topic_3376 . + +:topic_3371 a owl:Class ; + rdfs:label "Synthetic chemistry" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The use of chemistry to create new compounds." ; + oboInOwl:hasHumanReadableId "Synthetic_chemistry" ; + oboInOwl:hasNarrowSynonym "Synthetic organic chemistry" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3314 . + +:topic_3377 a owl:Class ; + rdfs:label "Safety sciences" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The safety (or lack) of drugs and other medical interventions." ; + oboInOwl:hasExactSynonym "Patient safety" ; + oboInOwl:hasHumanReadableId "Safety_sciences" ; + oboInOwl:hasNarrowSynonym "Drug safety" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3376 . + +:topic_3500 a owl:Class ; + rdfs:label "Zoology" ; + :created_in "1.8" ; + oboInOwl:hasDbXref "VT 1.5.29 Zoology" ; + oboInOwl:hasDefinition "Animals, e.g. information on a specific animal genome including molecular sequences, genes and annotation." ; + oboInOwl:hasExactSynonym "Animal", + "Animal biology", + "Animals", + "Metazoa" ; + oboInOwl:hasHumanReadableId "Zoology" ; + oboInOwl:hasNarrowSynonym "Animal genetics", + "Animal physiology", + "Entomology" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "The study of the animal kingdom." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:topic_3855 a owl:Class ; + rdfs:label "Environmental sciences" ; + :created_in "1.21" ; + :related_term "Environment" ; + oboInOwl:hasDefinition "Study of the environment, the interactions between its physical, chemical, and biological components and it's effect on life. Also how humans impact upon the environment, and how we can manage and utilise natural resources." ; + oboInOwl:hasHumanReadableId "Environmental_science" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0003 . + +oboInOwl:hasBroadSynonym a owl:AnnotationProperty . + +:comment_handle a owl:AnnotationProperty . + +:data_0880 a owl:Class ; + rdfs:label "RNA secondary structure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:RNAStructML" ; + oboInOwl:hasDefinition "An informative report of secondary structure (predicted or real) of an RNA molecule." ; + oboInOwl:hasExactSynonym "Secondary structure (RNA)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This includes thermodynamically stable or evolutionarily conserved structures such as knots, pseudoknots etc." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0097 ], + :data_1465 . + +:data_0888 a owl:Class ; + rdfs:label "Structure similarity score" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A value representing molecular structure similarity, measured from structure alignment or some other type of structure comparison." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1772 . + +:data_0927 a owl:Class ; + rdfs:label "Genetic linkage report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about the linkage of alleles." ; + oboInOwl:hasExactSynonym "Gene annotation (linkage)" ; + oboInOwl:hasNarrowSynonym "Linkage disequilibrium (report)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This includes linkage disequilibrium; the non-random association of alleles or polymorphisms at two or more loci (not necessarily on the same chromosome)." ; + rdfs:subClassOf :data_2084 . + +:data_0958 a owl:Class ; + rdfs:label "Tool metadata" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Basic information about one or more bioinformatics applications or packages, such as name, type, description, or other documentation." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2337 . + +:data_0972 a owl:Class ; + rdfs:label "Text mining report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information resulting from text mining." ; + oboInOwl:hasExactSynonym "Text mining output" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A text mining abstract will typically include an annotated a list of words or sentences extracted from one or more scientific articles." ; + rdfs:subClassOf :data_2048, + :data_2526 . + +:data_0984 a owl:Class ; + rdfs:label "Molecule name" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Name of a specific molecule." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0982, + :data_2099 . + +:data_0991 a owl:Class ; + rdfs:label "Chemical registry number" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique registry number of a chemical compound." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2894 . + +:data_1006 a owl:Class ; + rdfs:label "Amino acid name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "String of one or more ASCII characters representing an amino acid." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0994 . + +:data_1015 a owl:Class ; + rdfs:label "Sequence feature ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique identifier of molecular sequence feature, for example an ID of a feature that is unique within the scope of the GFF file." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_3034 . + +:data_1038 a owl:Class ; + rdfs:label "Protein domain ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a protein structural domain." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "This is typically a character or string concatenated with a PDB identifier and a chain identifier." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1468 ], + :data_0976 . + +:data_1050 a owl:Class ; + rdfs:label "File name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name (or part of a name) of a file (of any type)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099 . + +:data_1063 a owl:Class ; + rdfs:label "Sequence identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of molecular sequence(s) or entries from a molecular sequence database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2044 ], + :data_0976 . + +:data_1068 a owl:Class ; + rdfs:label "Phylogenetic tree ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a phylogenetic tree for example from a phylogenetic tree database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0872 ], + :data_0976 . + +:data_1082 a owl:Class ; + rdfs:label "Pathway or network identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of an entry from a database of biological pathways or networks." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2600 ], + :data_0976 . + +:data_1088 a owl:Class ; + rdfs:label "Article ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Unique identifier of a scientific article." ; + oboInOwl:hasExactSynonym "Article identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0971 ], + :data_0976 . + +:data_1093 a owl:Class ; + rdfs:label "Sequence accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A persistent, unique identifier of a molecular sequence database entry." ; + oboInOwl:hasExactSynonym "Sequence accession number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1063 . + +:data_1098 a owl:Class ; + rdfs:label "RefSeq accession" ; + :created_in "beta12orEarlier" ; + :regex "(NC|AC|NG|NT|NW|NZ|NM|NR|XM|XR|NP|AP|XP|YP|ZP)_[0-9]+" ; + oboInOwl:hasDefinition "Accession number of a RefSeq database entry." ; + oboInOwl:hasExactSynonym "RefSeq ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2362 . + +:data_1103 a owl:Class ; + rdfs:label "EMBL/GenBank/DDBJ ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of a (nucleic acid) entry from the EMBL/GenBank/DDBJ databases." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1097, + :data_2091 . + +:data_1131 a owl:Class ; + rdfs:label "Protein family name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a protein family." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1075, + :data_2099 . + +:data_1150 a owl:Class ; + rdfs:label "Disease ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession number of an entry from a database of disease." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_3667 . + +:data_1176 a owl:Class ; + rdfs:label "GO concept ID" ; + :created_in "beta12orEarlier" ; + :regex "[0-9]{7}|GO:[0-9]{7}" ; + oboInOwl:hasDefinition "An identifier of a concept from The Gene Ontology." ; + oboInOwl:hasExactSynonym "GO concept identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1087, + :data_2091 . + +:data_1233 a owl:Class ; + rdfs:label "Sequence set (protein)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Any collection of multiple protein sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0850 . + +:data_1254 a owl:Class ; + rdfs:label "Sequence property" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An informative report about non-positional sequence features, typically a report on general molecular sequence properties derived from sequence analysis." ; + oboInOwl:hasExactSynonym "Sequence properties report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2955 . + +:data_1397 a owl:Class ; + rdfs:label "Gap opening penalty" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A penalty for opening a gap in an alignment." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2137 . + +:data_1398 a owl:Class ; + rdfs:label "Gap extension penalty" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A penalty for extending a gap in an alignment." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2137 . + +:data_1426 a owl:Class ; + rdfs:label "Phylogenetic continuous quantitative data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Continuous quantitative data that may be read during phylogenetic tree calculation." ; + oboInOwl:hasExactSynonym "Phylogenetic continuous quantitative characters", + "Quantitative traits" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0871 . + +:data_1439 a owl:Class ; + rdfs:label "DNA substitution model" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A model of DNA substitution that explains a DNA sequence alignment, derived from phylogenetic tree analysis." ; + oboInOwl:hasExactSynonym "Phylogenetic tree report (DNA substitution model)", + "Sequence alignment report (DNA substitution model)", + "Substitution model" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0950 . + +:data_1467 a owl:Class ; + rdfs:label "Protein chain" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for the tertiary (3D) structure of a polypeptide chain." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1460 . + +:data_1468 a owl:Class ; + rdfs:label "Protein domain" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for the tertiary (3D) structure of a protein domain." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0736 ], + :data_1460 . + +:data_1499 a owl:Class ; + rdfs:label "3D-1D scoring matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A matrix of 3D-1D scores reflecting the probability of amino acids to occur in different tertiary structural environments." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0892 . + +:data_1534 a owl:Class ; + rdfs:label "Peptide immunogenicity data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An report on allergenicity / immunogenicity of peptides and proteins." ; + oboInOwl:hasExactSynonym "Peptide immunogenicity", + "Peptide immunogenicity report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This includes data on peptide ligands that elicit an immune response (immunogens), allergic cross-reactivity, predicted antigenicity (Hopp and Woods plot) etc. These data are useful in the development of peptide-specific antibodies or multi-epitope vaccines. Methods might use sequence data (for example motifs) and / or structural data." ; + rdfs:subClassOf :data_0897 . + +:data_1710 a owl:Class ; + rdfs:label "Structure image" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Image of one or more molecular tertiary (3D) structures." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2968 . + +:data_1855 a owl:Class ; + rdfs:label "Clone ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a clone (cloned molecular sequence) from a database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2769 . + +:data_1883 a owl:Class ; + rdfs:label "Annotated URI" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:DescribedLink" ; + oboInOwl:hasDefinition "A URI along with annotation describing the data found at the address." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2093 . + +:data_1917 a owl:Class ; + rdfs:label "Atomic property" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data for an atom (in a molecular structure)." ; + oboInOwl:hasExactSynonym "General atomic property" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2087 . + +:data_2080 a owl:Class ; + rdfs:label "Database search results" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A report of hits from searching a database of some type." ; + oboInOwl:hasExactSynonym "Database hits", + "Search results" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:data_2101 a owl:Class ; + rdfs:label "Account authentication" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Authentication data usually used to log in into an account on an information system such as a web application or a database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2118 . + +:data_2118 a owl:Class ; + rdfs:label "Person identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a software end-user on a website or a database (typically a person or an entity)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2137 a owl:Class ; + rdfs:label "Gap penalty" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A penalty for introducing or extending a gap in an alignment." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1394 . + +:data_2346 a owl:Class ; + rdfs:label "Sequence cluster ID (UniRef)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of an entry from the UniRef database." ; + oboInOwl:hasExactSynonym "UniRef cluster id", + "UniRef entry accession" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1112, + :data_2091 . + +:data_2353 a owl:Class ; + rdfs:label "Ontology data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning or derived from an ontology." ; + oboInOwl:hasExactSynonym "Ontological data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0089 ], + :data_0006 . + +:data_2362 a owl:Class ; + rdfs:label "Sequence accession (hybrid)" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession number of a nucleotide or protein sequence database entry." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0849 ], + :data_1093 . + +:data_2536 a owl:Class ; + rdfs:label "Mass spectrometry data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning a mass spectrometry measurement." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_3108 . + +:data_2537 a owl:Class ; + rdfs:label "Protein structure raw data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Raw data from experimental methods for determining protein structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." ; + rdfs:subClassOf :data_3108 . + +:data_2649 a owl:Class ; + rdfs:label "PharmGKB ID" ; + :created_in "beta12orEarlier" ; + :regex "PA[0-9]+" ; + oboInOwl:hasDefinition "Identifier of an entry from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109 . + +:data_2749 a owl:Class ; + rdfs:label "Genome identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a particular genome." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2769 a owl:Class ; + rdfs:label "Transcript ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a RNA transcript." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1276 ], + :data_2119, + :data_2901 . + +:data_2785 a owl:Class ; + rdfs:label "Virus identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An accession of annotation on a (group of) viruses (catalogued in a database)." ; + oboInOwl:hasExactSynonym "Virus ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2855 a owl:Class ; + rdfs:label "Distance matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A matrix of distances between molecular entities, where a value (distance) is (typically) derived from comparison of two entities and reflects their similarity." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2082 . + +:data_2865 a owl:Class ; + rdfs:label "Codon usage bias" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A numerical measure of differences in the frequency of occurrence of synonymous codons in DNA sequences." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0914 . + +:data_2872 a owl:Class ; + rdfs:label "ID list" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A simple list of data identifiers (such as database accessions), possibly with additional basic information on the addressed data." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2093 . + +:data_2893 a owl:Class ; + rdfs:label "Cell type accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of a type or group of cells (catalogued in a database)." ; + oboInOwl:hasExactSynonym "Cell type ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2655 . + +:data_2903 a owl:Class ; + rdfs:label "Genome accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An accession of a particular genome (in a database)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2749 . + +:data_2911 a owl:Class ; + rdfs:label "Transcription factor accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of an entry from a database of transcription factors or binding sites." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1077, + :data_2907 . + +:data_2917 a owl:Class ; + rdfs:label "ConsensusPathDB identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An identifier of an entity from the ConsensusPathDB database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2109 . + +:data_2992 a owl:Class ; + rdfs:label "Protein structure image" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An image of protein structure." ; + oboInOwl:hasExactSynonym "Structure image (protein)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1710, + :data_3153 . + +:data_3034 a owl:Class ; + rdfs:label "Sequence feature identifier" ; + :created_in "beta13" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Name or other identifier of molecular sequence feature(s)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1255 ], + :data_0976 . + +:data_3110 a owl:Class ; + rdfs:label "Raw microarray data" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Raw data (typically MIAME-compliant) for hybridisations from a microarray experiment." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Such data as found in Affymetrix CEL or GPR files." ; + rdfs:subClassOf :data_3108, + :data_3117 . + +:data_3112 a owl:Class ; + rdfs:label "Gene expression matrix" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "The final processed (normalised) data for a set of hybridisations in a microarray experiment." ; + oboInOwl:hasExactSynonym "Gene expression data matrix", + "Normalised microarray data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This combines data from all hybridisations." ; + rdfs:subClassOf :data_2082, + :data_2603 . + +:data_3117 a owl:Class ; + rdfs:label "Microarray hybridisation data" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Data concerning the hybridisations measured during a microarray experiment." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2603 . + +:data_3148 a owl:Class ; + rdfs:label "Gene family report" ; + :created_in "beta13" ; + oboInOwl:hasBroadSynonym "Nucleic acid classification" ; + oboInOwl:hasDefinition "A human-readable collection of information about a particular family of genes, typically a set of genes with similar sequence that originate from duplication of a common ancestor gene, or any other classification of nucleic acid sequences or structures that reflects gene structure." ; + oboInOwl:hasExactSynonym "Gene annotation (homology information)", + "Gene annotation (homology)", + "Gene family annotation", + "Gene homology (report)", + "Homology information" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This includes reports on on gene homologues between species." ; + rdfs:subClassOf :data_2084 . + +:data_3210 a owl:Class ; + rdfs:label "Genome index" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "An index of a genome sequence." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Many sequence alignment tasks involving many or very large sequences rely on a precomputed index of the sequence to accelerate the alignment." ; + rdfs:subClassOf :data_0955 . + +:data_3732 a owl:Class ; + rdfs:label "Sequencing metadata name" ; + :created_in "1.15" ; + oboInOwl:hasDefinition "Data concerning a sequencing experiment, that may be specified as an input to some tool." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2099 . + +:data_3753 a owl:Class ; + rdfs:label "Over-representation data" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "A ranked list of categories (usually ontology concepts), each associated with a statistical metric of over-/under-representation within the studied data." ; + oboInOwl:hasExactSynonym "Enrichment report", + "Over-representation report" ; + oboInOwl:hasNarrowSynonym "Functional enrichment report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:data_3779 a owl:Class ; + rdfs:label "Annotated text" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "A text (such as a scientific article), annotated with notes, data and metadata, such as recognised entities, concepts, and their relations." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2526, + :data_3671 . + +:format_1208 a owl:Class ; + rdfs:label "protein" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a protein sequence with possible ambiguity, unknown positions and non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Non-sequence characters may be used for gaps and translation stop." ; + rdfs:seeAlso "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Amino_acid_sequence" ; + rdfs:subClassOf :format_2330, + :format_2571 . + +:format_1212 a owl:Class ; + rdfs:label "dna" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a DNA sequence with possible ambiguity, unknown positions and non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#DNA_sequence" ; + rdfs:subClassOf :format_1207 . + +:format_1213 a owl:Class ; + rdfs:label "rna" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for an RNA sequence with possible ambiguity, unknown positions and non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#RNA_sequence" ; + rdfs:subClassOf :format_1207 . + +:format_1963 a owl:Class ; + rdfs:label "UniProtKB format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "UniProtKB entry sequence format." ; + oboInOwl:hasExactSynonym "SwissProt format", + "UniProt format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2187 . + +:format_1975 a owl:Class ; + rdfs:label "GFF3" ; + :created_in "beta12orEarlier" ; + :documentation ; + :ontology_used ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "Generic Feature Format version 3 (GFF3) of sequence features." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2305 . + +:format_2054 a owl:Class ; + rdfs:label "Protein interaction format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format for molecular interaction data." ; + oboInOwl:hasExactSynonym "Molecular interaction format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0906 ], + :format_2350 . + +:format_2055 a owl:Class ; + rdfs:label "Sequence assembly format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format for sequence assembly data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0925 ], + :format_2350 . + +:format_2068 a owl:Class ; + rdfs:label "Sequence motif format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a sequence motif." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1353 ], + :format_2350 . + +:format_2069 a owl:Class ; + rdfs:label "Sequence profile format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a sequence profile." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1354 ], + :format_2350 . + +:format_2155 a owl:Class ; + rdfs:label "Sequence features (repeats) format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format used for map of repeats in molecular (typically nucleotide) sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2350 . + +:format_2158 a owl:Class ; + rdfs:label "Nucleic acid features (restriction sites) format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format used for report on restriction enzyme recognition sites in nucleotide sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2350 . + +:format_2204 a owl:Class ; + rdfs:label "EMBL format (XML)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An XML format for EMBL entries." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This is a placeholder for other more specific concepts. It should not normally be used for annotation." ; + rdfs:subClassOf :format_2558 . + +:format_2305 a owl:Class ; + rdfs:label "GFF" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "GFF feature format (of indeterminate version)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2206, + :format_2330 . + +:format_2543 a owl:Class ; + rdfs:label "EMBL-like format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A format resembling EMBL entry (plain text) format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This concept may be used for the many non-standard EMBL-like formats." ; + rdfs:subClassOf :format_1919 . + +:format_2547 a owl:Class ; + rdfs:label "uniprotkb-like format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A sequence format resembling uniprotkb entry format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1919, + :format_2548 . + +:format_3486 a owl:Class ; + rdfs:label "GCG format variant" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Some format based on the GCG format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551, + :format_2554 . + +:format_3706 a owl:Class ; + rdfs:label "Biodiversity data format" ; + :created_in "1.14" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for biodiversity data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3707 ], + :format_2350 . + +:format_3750 a owl:Class ; + rdfs:label "YAML" ; + :created_in "1.15" ; + :documentation ; + :file_extension "yaml", + "yml" ; + oboInOwl:hasDbXref ; + oboInOwl:hasDefinition "YAML (YAML Ain't Markup Language) is a human-readable tree-structured data serialisation language." ; + oboInOwl:hasExactSynonym "YAML Ain't Markup Language", + "yml" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Data in YAML format can be serialised into text, or binary format.", + "YAML version 1.2 is a superset of JSON; prior versions were \"not strictly compatible\"." ; + rdfs:seeAlso ; + rdfs:subClassOf :format_1915 . + +:format_3884 a owl:Class ; + rdfs:label "FF parameter format" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Format of force field parameter files, which store the set of parameters (charges, masses, radii, bond lengths, bond dihedrals, etc.) that are essential for the proper description and simulation of a molecular system." ; + rdfs:comment "Many different file formats exist describing force field parameters. Typically, each MD package or simulation software works with their own implementation (e.g. GROMACS itp, CHARMM rtf, AMBER off / frcmod)." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3872 ], + :format_2350 . + +:is_input_of a owl:ObjectProperty ; + rdfs:label "is input of" ; + oboLegacy:is_anti_symmetric "false" ; + oboLegacy:is_reflexive "false" ; + oboLegacy:is_symmetric "false" ; + oboLegacy:transitive_over "OBO_REL:is_a" ; + oboInOwl:hasDefinition "'A is_input_of B' defines for the subject A, that it as a necessary or actual input or input argument of the object B." ; + oboInOwl:hasRelatedSynonym "OBO_REL:participates_in" ; + oboInOwl:inSubset :properties ; + oboInOwl:isCyclic true ; + rdfs:comment "Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is or has an 'Operation' function, or an entity outside of an ontology that has an 'Operation' function or is an 'Operation'. In EDAM, 'is_input_of' is not explicitly defined between EDAM concepts, only the inverse 'has_input'." ; + rdfs:domain :data_0006 ; + rdfs:range :operation_0004 ; + skos:closeMatch oboLegacy:OBI_0000295 ; + skos:exactMatch . + +:is_output_of a owl:ObjectProperty ; + rdfs:label "is output of" ; + oboLegacy:is_anti_symmetric "false" ; + oboLegacy:is_reflexive "false" ; + oboLegacy:is_symmetric "false" ; + oboLegacy:transitive_over "OBO_REL:is_a" ; + oboInOwl:hasDefinition "'A is_output_of B' defines for the subject A, that it as a necessary or actual output or output argument of the object B." ; + oboInOwl:hasRelatedSynonym "OBO_REL:participates_in" ; + oboInOwl:inSubset :properties ; + oboInOwl:isCyclic true ; + rdfs:comment "Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is or has an 'Operation' function, or an entity outside of an ontology that has an 'Operation' function or is an 'Operation'. In EDAM, 'is_output_of' is not explicitly defined between EDAM concepts, only the inverse 'has_output'." ; + rdfs:domain :data_0006 ; + rdfs:range :operation_0004 ; + skos:closeMatch oboLegacy:OBI_0000312 ; + skos:exactMatch . + +:is_topic_of a owl:ObjectProperty ; + rdfs:label "is topic of" ; + oboLegacy:is_anti_symmetric "false" ; + oboLegacy:is_reflexive "false" ; + oboLegacy:is_symmetric "false" ; + oboLegacy:transitive_over "OBO_REL:is_a" ; + oboInOwl:hasDefinition "'A is_topic_of B' defines for the subject A, that it is a topic of the object B (a topic A is the scope of B)." ; + oboInOwl:hasRelatedSynonym "OBO_REL:quality_of" ; + oboInOwl:inSubset :properties ; + oboInOwl:isCyclic true ; + rdfs:comment "Subject A can either be a concept that is a 'Topic', or in unexpected cases an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is a 'Topic' or is in the role of a 'Topic'. Object B can be any concept or entity outside of an ontology. In EDAM, 'is_topic_of' is not explicitly defined between EDAM concepts, only the inverse 'has_topic'." ; + rdfs:domain :topic_0003 ; + rdfs:range [ a owl:Class ; + owl:unionOf ( :data_0006 :operation_0004 ) ] ; + skos:broadMatch . + +:operation_0227 a owl:Class ; + rdfs:label "Indexing" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Generate an index of (typically a file of) biological data." ; + oboInOwl:hasExactSynonym "Data indexing", + "Database indexing" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0955 ], + :operation_0004 . + +:operation_0233 a owl:Class ; + rdfs:label "Sequence conversion" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Convert a molecular sequence from one type to another." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0231, + :operation_3434 . + +:operation_0269 a owl:Class ; + rdfs:label "Transmembrane protein prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict and/or classify transmembrane proteins or transmembrane (helical) domains or regions in protein sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0267, + :operation_0270 . + +:operation_0300 a owl:Class ; + rdfs:label "Sequence profile alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Align molecular sequence(s) to sequence profile(s), or profiles to other profiles. A profile typically represents a sequence alignment." ; + oboInOwl:hasNarrowSynonym "Profile-profile alignment", + "Profile-to-profile alignment", + "Sequence-profile alignment", + "Sequence-to-profile alignment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "A sequence profile typically represents a sequence alignment. Methods might perform one-to-one, one-to-many or many-to-many comparisons." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_1354 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + :operation_0292 . + +:operation_0361 a owl:Class ; + rdfs:label "Sequence annotation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Annotate a molecular sequence record with terms from a controlled vocabulary." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0849 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0849 ], + :operation_0226 . + +:operation_0400 a owl:Class ; + rdfs:label "Protein pKa calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate pH-dependent properties from pKa calculations of a protein sequence." ; + oboInOwl:hasExactSynonym "Protein pH-dependent property calculation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0123 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0897 ], + :operation_0250 . + +:operation_0443 a owl:Class ; + rdfs:label "trans-regulatory element prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify or predict functional RNA sequences with a gene regulatory role (trans-regulatory elements) or targets." ; + oboInOwl:hasExactSynonym "Functional RNA identification", + "Transcriptional regulatory element prediction (trans)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Trans-regulatory elements regulate genes distant from the gene from which they were transcribed." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0659 ], + :operation_0438 . + +:operation_0477 a owl:Class ; + rdfs:label "Protein modelling" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Build a three-dimensional protein model based on known (for example homologs) structures." ; + oboInOwl:hasExactSynonym "Comparative modelling", + "Homology modelling", + "Homology structure modelling", + "Protein structure comparative modelling" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "The model might be of a whole, part or aspect of protein structure. Molecular modelling methods might use sequence-structure alignment, structural templates, molecular dynamics, energy minimisation etc." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2275 ], + :operation_0474, + :operation_2426 . + +:operation_1850 a owl:Class ; + rdfs:label "Protein cysteine and disulfide bond assignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Assign cysteine bonding state and disulfide bond partners in protein structures." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0130 ], + :operation_0320 . + +:operation_2404 a owl:Class ; + rdfs:label "Sequence motif analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse molecular sequence motifs." ; + oboInOwl:hasExactSynonym "Sequence motif processing" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2403 . + +:operation_2416 a owl:Class ; + rdfs:label "Protein secondary structure analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse protein secondary structure data." ; + oboInOwl:hasExactSynonym "Secondary structure analysis (protein)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2814 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2956 ], + :operation_2406 . + +:operation_2439 a owl:Class ; + rdfs:label "RNA secondary structure analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Process (read and / or write) RNA secondary structure data." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0097 ], + :operation_2481 . + +:operation_2497 a owl:Class ; + rdfs:label "Pathway or network analysis" ; + :created_in "beta12orEarlier" ; + :deprecation_comment "Notions of pathway and network were mixed up, EDAM 1.24 disentangles them." ; + :obsolete_since "1.24" ; + :oldParent owl:Thing ; + oboInOwl:consider :operation_3927, + :operation_3928 ; + oboInOwl:hasDefinition "Generate, process or analyse a biological pathway or network." ; + oboInOwl:inSubset :obsolete ; + rdfs:subClassOf owl:DeprecatedClass ; + owl:deprecated true . + +:operation_2990 a owl:Class ; + rdfs:label "Classification" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Assign molecular sequences, structures or other biological data to a specific group or category according to qualities it shares with that group or category." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0004 . + +:operation_2995 a owl:Class ; + rdfs:label "Sequence classification" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Assign molecular sequence(s) to a group or category." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2403, + :operation_2990 . + +:operation_2998 a owl:Class ; + rdfs:label "Nucleic acid comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare two or more nucleic acids to identify similarities." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2424 . + +:operation_3192 a owl:Class ; + rdfs:label "Sequence trimming" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Cut (remove) the end from a molecular sequence." ; + oboInOwl:hasExactSynonym "Trimming" ; + oboInOwl:hasNarrowSynonym "Barcode sequence removal", + "Trim ends", + "Trim to reference", + "Trim vector" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes end trimming, -- Trim sequences (typically from an automated DNA sequencer) to remove misleading ends. For example trim polyA tails, introns and primer sequence flanking the sequence of amplified exons, or other unwanted sequence.-- trimming to a reference sequence, --Trim sequences (typically from an automated DNA sequencer) to remove the sequence ends that extend beyond an assembled reference sequence. -- vector trimming -- Trim sequences (typically from an automated DNA sequencer) to remove sequence-specific end regions, typically contamination from vector sequences." ; + rdfs:subClassOf :operation_0369 . + +:operation_3434 a owl:Class ; + rdfs:label "Conversion" ; + :created_in "1.6" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Convert a data set from one form to another." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0004 . + +:operation_3443 a owl:Class ; + rdfs:label "Image analysis" ; + :created_in "1.7" ; + oboInOwl:hasBroadSynonym "Image processing" ; + oboInOwl:hasDefinition "The analysis of a image (typically a digital image) of some type in order to extract information from it." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3382 ], + :operation_2945 . + +:operation_3445 a owl:Class ; + rdfs:label "Diffraction data analysis" ; + :created_in "1.7" ; + oboInOwl:hasDefinition "Analysis of data from a diffraction experiment." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2480 . + +:operation_3630 a owl:Class ; + rdfs:label "Protein quantification" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Technique for determining the amount of proteins in a sample." ; + oboInOwl:hasExactSynonym "Protein quantitation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0943 ], + :operation_3214, + :operation_3799 . + +:operation_3646 a owl:Class ; + rdfs:label "Peptide database search" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Determination of best matches between MS/MS spectrum and a database of protein or nucleic acid sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2421, + :operation_3631 . + +:operation_3760 a owl:Class ; + rdfs:label "Service management" ; + :created_in "1.16" ; + oboInOwl:hasDefinition "Operations concerning the handling and use of other tools." ; + oboInOwl:hasNarrowSynonym "Endpoint management" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0004 . + +:topic_0099 a owl:Class ; + rdfs:label "RNA" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "RNA sequences and structures." ; + oboInOwl:hasHumanReadableId "RNA" ; + oboInOwl:hasNarrowSynonym "Small RNA" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0077 . + +:topic_3125 a owl:Class ; + rdfs:label "DNA binding sites" ; + :created_in "beta13" ; + oboInOwl:hasAlternativeId :data_3125 ; + oboInOwl:hasDefinition "Nucleic acids binding to some other molecule." ; + oboInOwl:hasHumanReadableId "DNA_binding_sites" ; + oboInOwl:hasNarrowSynonym "Matrix-attachment region", + "Matrix/scaffold attachment region", + "Nucleosome exclusion sequences", + "Restriction sites", + "Ribosome binding sites", + "Scaffold-attachment region" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes ribosome binding sites (Shine-Dalgarno sequence in prokaryotes), restriction enzyme recognition sites (restriction sites) etc.", + "This includes sites involved with DNA replication and recombination. This includes binding sites for initiation of replication (origin of replication), regions where transfer is initiated during the conjugation or mobilisation (origin of transfer), starting sites for DNA duplication (origin of replication) and regions which are eliminated through any of kind of recombination. Also nucleosome exclusion regions, i.e. specific patterns or regions which exclude nucleosomes (the basic structural units of eukaryotic chromatin which play a significant role in regulating gene expression)." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0654, + :topic_3511 . + +:topic_3315 a owl:Class ; + rdfs:label "Mathematics" ; + :created_in "1.3" ; + oboInOwl:hasDbXref "VT 1.1.99 Other", + "VT:1.1 Mathematics" ; + oboInOwl:hasDefinition "The study of numbers (quantity) and other topics including structure, space, and change." ; + oboInOwl:hasExactSynonym "Maths" ; + oboInOwl:hasHumanReadableId "Mathematics" ; + oboInOwl:hasNarrowSynonym "Dynamic systems", + "Dynamical systems", + "Dynymical systems theory", + "Graph analytics", + "Monte Carlo methods", + "Multivariate analysis" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0003 . + +:topic_3324 a owl:Class ; + rdfs:label "Infectious disease" ; + :created_in "1.3" ; + oboInOwl:hasDbXref "VT 3.3.4 Infectious diseases" ; + oboInOwl:hasDefinition "The branch of medicine that deals with the prevention, diagnosis and management of transmissible disease with clinically evident illness resulting from infection with pathogenic biological agents (viruses, bacteria, fungi, protozoa, parasites and prions)." ; + oboInOwl:hasExactSynonym "Communicable disease", + "Transmissible disease" ; + oboInOwl:hasHumanReadableId "Infectious_disease" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0634 . + +:topic_3511 a owl:Class ; + rdfs:label "Nucleic acid sites, features and motifs" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "The biology, archival, detection, prediction and analysis of positional features such as functional and other key sites, in nucleic acid sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them." ; + oboInOwl:hasHumanReadableId "Nucleic_acid_sites_features_and_motifs" ; + oboInOwl:hasNarrowSynonym "Nucleic acid functional sites", + "Nucleic acid sequence features", + "Primer binding sites", + "Sequence tagged sites" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "Sequence tagged sites are short DNA sequences that are unique within a genome and serve as a mapping landmark, detectable by PCR they allow a genome to be mapped via an ordering of STSs." ; + rdfs:subClassOf :topic_0077, + :topic_0160 . + +:topic_3520 a owl:Class ; + rdfs:label "Proteomics experiment" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Proteomics experiments." ; + oboInOwl:hasHumanReadableId "Proteomics_experiment" ; + oboInOwl:hasNarrowSynonym "2D PAGE experiment", + "DIA", + "Data-independent acquisition", + "MS", + "MS experiments", + "Mass spectrometry", + "Mass spectrometry experiments", + "Northern blot experiment", + "Spectrum demultiplexing" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes two-dimensional gel electrophoresis (2D PAGE) experiments, gels or spots in a gel. Also mass spectrometry - an analytical chemistry technique that measures the mass-to-charge ratio and abundance of ions in the gas phase. Also Northern blot experiments." ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_3361 . + +:topic_3678 a owl:Class ; + rdfs:label "Experimental design and studies" ; + :created_in "1.12" ; + :documentation ; + :isdebtag true ; + oboInOwl:hasDefinition "The design of an experiment intended to test a hypothesis, and describe or explain empirical data obtained under various experimental conditions." ; + oboInOwl:hasExactSynonym "Design of experiments", + "Experimental design", + "Studies" ; + oboInOwl:hasHumanReadableId "Experimental_design_and_studies" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0003 . + +oboInOwl:hasExactSynonym a owl:AnnotationProperty . + +:data_0871 a owl:Class ; + rdfs:label "Phylogenetic character data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Basic character data from which a phylogenetic tree may be generated." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "As defined, this concept would also include molecular sequences, microsatellites, polymorphisms (RAPDs, RFLPs, or AFLPs), restriction sites and fragments" ; + rdfs:seeAlso "http://www.evolutionaryontology.org/cdao.owl#Character" ; + rdfs:subClassOf :data_2523 . + +:data_0920 a owl:Class ; + rdfs:label "Genotype/phenotype report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about the set of genes (or allelic forms) present in an individual, organism or cell and associated with a specific physical characteristic, or a report concerning an organisms traits and phenotypes." ; + oboInOwl:hasExactSynonym "Genotype/phenotype annotation" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2048 . + +:data_0967 a owl:Class ; + rdfs:label "Ontology concept data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning or derived from a concept from a biological ontology." ; + oboInOwl:hasExactSynonym "Ontology class metadata", + "Ontology term metadata" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2353 . + +:data_0989 a owl:Class ; + rdfs:label "Protein identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a protein." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0896 ], + :data_0982 . + +:data_1009 a owl:Class ; + rdfs:label "Protein name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Name of a protein." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0984, + :data_0989 . + +:data_1047 a owl:Class ; + rdfs:label "URI" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A string of characters that name or otherwise identify a resource on the Internet." ; + oboInOwl:hasExactSynonym "URIs" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0842 . + +:data_1080 a owl:Class ; + rdfs:label "Gene expression report ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of a report of gene expression (e.g. a gene expression profile) from a database." ; + oboInOwl:hasExactSynonym "Gene expression profile identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_3111 ], + :data_0976 . + +:data_1114 a owl:Class ; + rdfs:label "Sequence motif identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a sequence motif, for example an entry from a motif database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1353 ], + :data_0976 . + +:data_1278 a owl:Class ; + rdfs:label "Genetic map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:GeneticMap" ; + oboInOwl:hasDefinition "A map showing the relative positions of genetic markers in a nucleic acid sequence, based on estimation of non-physical distance such as recombination frequencies." ; + oboInOwl:hasExactSynonym "Linkage map" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A genetic (linkage) map indicates the proximity of two genes on a chromosome, whether two genes are linked and the frequency they are transmitted together to an offspring. They are limited to genetic markers of traits observable only in whole organisms." ; + rdfs:subClassOf :data_1274 . + +:data_1280 a owl:Class ; + rdfs:label "Physical map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A map of DNA (linear or circular) annotated with physical features or landmarks such as restriction sites, cloned DNA fragments, genes or genetic markers, along with the physical distances between them." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Distance in a physical map is measured in base pairs. A physical map might be ordered relative to a reference map (typically a genetic map) in the process of genome sequencing." ; + rdfs:subClassOf :data_1274 . + +:data_1381 a owl:Class ; + rdfs:label "Pair sequence alignment" ; + :created_in "beta12orEarlier" ; + :is_deprecation_candidate true ; + oboInOwl:hasDefinition "Alignment of exactly two molecular sequences." ; + oboInOwl:hasExactSynonym "Sequence alignment (pair)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:seeAlso "http://semanticscience.org/resource/SIO_010068" ; + rdfs:subClassOf :data_0863 . + +:data_1459 a owl:Class ; + rdfs:label "Nucleic acid structure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for a nucleic acid tertiary (3D) structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0097 ], + :data_0883 . + +:data_1461 a owl:Class ; + rdfs:label "Protein-ligand complex" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The structure of a protein in complex with a ligand, typically a small molecule such as an enzyme substrate or cofactor, but possibly another macromolecule." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This includes interactions of proteins with atoms, ions and small molecules or macromolecules such as nucleic acids or other polypeptides. For stable inter-polypeptide interactions use 'Protein complex' instead." ; + rdfs:subClassOf :data_1460 . + +:data_1465 a owl:Class ; + rdfs:label "RNA structure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for an RNA tertiary (3D) structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0097 ], + :data_1459 . + +:data_1482 a owl:Class ; + rdfs:label "Nucleic acid structure alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alignment (superimposition) of nucleic acid tertiary (3D) structures." ; + oboInOwl:hasExactSynonym "Structure alignment (nucleic acid)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0886 . + +:data_1598 a owl:Class ; + rdfs:label "Genetic code" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A genetic code for an organism." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A genetic code need not include detailed codon usage information." ; + rdfs:subClassOf :data_0914 . + +:data_1622 a owl:Class ; + rdfs:label "Disease report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about a specific disease." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "For example, an informative report on a specific tumor including nature and origin of the sample, anatomic site, organ or tissue, tumor type, including morphology and/or histologic type, and so on." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0634 ], + :data_0920 . + +:data_1869 a owl:Class ; + rdfs:label "Organism identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A unique identifier of a (group of) organisms." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2530 ], + :data_0976 . + +:data_2016 a owl:Class ; + rdfs:label "Amino acid property" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning the intrinsic physical (e.g. structural) or chemical properties of one, more or all amino acids." ; + oboInOwl:hasExactSynonym "Amino acid data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2087 . + +:data_2019 a owl:Class ; + rdfs:label "Map data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data describing a molecular map (genetic or physical) or a set of such maps, including various attributes of, data extracted from or derived from the analysis of them, but excluding the map(s) themselves. This includes metadata for map sets that share a common set of features which are mapped." ; + oboInOwl:hasNarrowSynonym "Map attribute", + "Map set data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0102 ], + :data_0006 . + +:data_2071 a owl:Class ; + rdfs:label "Sequence motif (protein)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An amino acid sequence motif." ; + oboInOwl:hasExactSynonym "Protein sequence motif" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1353 . + +:data_2104 a owl:Class ; + rdfs:label "BioCyc ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an object from one of the BioCyc databases." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109 . + +:data_2113 a owl:Class ; + rdfs:label "WormBase identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an object from the WormBase database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2109 . + +:data_2119 a owl:Class ; + rdfs:label "Nucleic acid identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Name or other identifier of a nucleic acid molecule." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2084 ], + :data_0982 . + +:data_2294 a owl:Class ; + rdfs:label "Sequence variation ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of an entry from a database of molecular sequence variation." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_2316 a owl:Class ; + rdfs:label "Cell line name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a cell line." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1046 . + +:data_2339 a owl:Class ; + rdfs:label "Ontology concept name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a concept in an ontology." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2099, + :data_3025 . + +:data_2367 a owl:Class ; + rdfs:label "ASTD ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an object from the ASTD database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1097, + :data_2091, + :data_2109 . + +:data_2728 a owl:Class ; + rdfs:label "EST accession" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identifier of an EST sequence." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1855 . + +:data_2854 a owl:Class ; + rdfs:label "Position-specific scoring matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A simple matrix of numbers, where each value (or column of values) is derived derived from analysis of the corresponding position in a sequence alignment." ; + oboInOwl:hasExactSynonym "PSSM" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1354, + :data_2082 . + +:data_2858 a owl:Class ; + rdfs:label "Ontology concept" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A concept from a biological ontology." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This includes any fields from the concept definition such as concept name, definition, comments and so on." ; + rdfs:subClassOf :data_2353 . + +:data_2891 a owl:Class ; + rdfs:label "Biological model accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of a mathematical model, typically an entry from a database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1085 . + +:data_2900 a owl:Class ; + rdfs:label "Carbohydrate accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of an entry from a database of carbohydrates." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2663, + :data_2901 . + +:data_2908 a owl:Class ; + rdfs:label "Organism accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An accession of annotation on a (group of) organisms (catalogued in a database)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1869 . + +:data_2914 a owl:Class ; + rdfs:label "Sequence features metadata" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Metadata on sequence features." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:data_2976 a owl:Class ; + rdfs:label "Protein sequence" ; + :created_in "beta12orEarlier" ; + :documentation ; + oboInOwl:hasDefinition "One or more protein sequences, possibly with associated annotation." ; + oboInOwl:hasExactSynonym "Amino acid sequence", + "Amino acid sequences", + "Protein sequences" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:seeAlso "http://purl.org/biotop/biotop.owl#AminoAcidSequenceInformation" ; + rdfs:subClassOf :data_2044 . + +:data_3671 a owl:Class ; + rdfs:label "Text" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Any free or plain text, typically for human consumption and in English. Can instantiate also as a textual search query." ; + oboInOwl:hasExactSynonym "Free text" ; + oboInOwl:hasNarrowSynonym "Plain text", + "Textual search query" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2526 . + +:data_3869 a owl:Class ; + rdfs:label "Simulation" ; + :created_in "1.22" ; + oboInOwl:hasDefinition "Data coming from molecular simulations, computer \"experiments\" on model molecules. Typically formed by two separated but indivisible pieces of information: topology data (static) and trajectory data (dynamic)." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:format_1206 a owl:Class ; + rdfs:label "unambiguous pure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a molecular sequence with possible unknown positions but without ambiguity or non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2094, + :format_2096 . + +:format_2014 a owl:Class ; + rdfs:label "Sequence-profile alignment format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for a sequence-profile alignment." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0858 ], + :format_2350 . + +:format_2031 a owl:Class ; + rdfs:label "Gene annotation format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a report on a particular locus, gene, gene system or groups of genes." ; + oboInOwl:hasExactSynonym "Gene features format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0916 ], + :format_2350 . + +:format_2076 a owl:Class ; + rdfs:label "RNA secondary structure format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format for secondary structure (predicted or real) of an RNA molecule." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0880 ], + :format_2350 . + +:format_2094 a owl:Class ; + rdfs:label "pure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for molecular sequence with possible unknown positions but without non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2571 . + +:format_2195 a owl:Class ; + rdfs:label "Ontology format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format used for ontologies." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0582 ], + :format_2350 . + +:format_2197 a owl:Class ; + rdfs:label "OWL format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A serialisation format conforming to the Web Ontology Language (OWL) model." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2195, + :format_2376 . + +:format_2548 a owl:Class ; + rdfs:label "Sequence feature table format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format for a sequence feature table." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1255 ], + :format_1920 . + +:format_2567 a owl:Class ; + rdfs:label "completely unambiguous pure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a molecular sequence without unknown positions, ambiguity or non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2094, + :format_2566 . + +:format_2924 a owl:Class ; + rdfs:label "Phylip format variant" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Some variant of Phylip format for (aligned) sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2551, + :format_2554 . + +:format_3097 a owl:Class ; + rdfs:label "Protein domain classification format" ; + :created_in "beta13" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of data concerning the classification of the sequences and/or structures of protein structural domain(s)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0907 ], + :format_2350 . + +:format_3475 a owl:Class ; + rdfs:label "TSV" ; + :created_in "1.7" ; + :file_extension "tab", + "tsv" ; + :media_type ; + oboInOwl:hasDbXref , + ; + oboInOwl:hasDefinition "Tabular data represented as tab-separated values in a text file." ; + oboInOwl:hasExactSynonym "Tab-delimited", + "Tab-separated values", + "tab" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3751 . + +:format_3607 a owl:Class ; + rdfs:label "qual" ; + :created_in "1.11" ; + :documentation "http://en.wikipedia.org/wiki/Phred_quality_score" ; + oboInOwl:hasDefinition "FASTQ format subset for Phred sequencing quality score data only (no sequences)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Phred quality scores are defined as a property which is logarithmically related to the base-calling error probabilities." ; + rdfs:subClassOf :format_2182, + :format_2330, + :format_3606 . + +:format_3868 a owl:Class ; + rdfs:label "Trajectory format (text)" ; + :created_in "1.22" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Textual file format to store trajectory information for a 3D structure ." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3866 . + +:is_function_of a owl:ObjectProperty ; + rdfs:label "is function of" ; + oboLegacy:is_anti_symmetric "false" ; + oboLegacy:is_reflexive "false" ; + oboLegacy:is_symmetric "false" ; + oboLegacy:transitive_over "OBO_REL:is_a" ; + oboInOwl:hasDefinition "'A is_function_of B' defines for the subject A, that it is a function of the object B." ; + oboInOwl:hasNarrowSynonym "OBO_REL:function_of" ; + oboInOwl:hasRelatedSynonym "OBO_REL:inheres_in" ; + oboInOwl:inSubset :properties ; + oboInOwl:isCyclic true ; + rdfs:comment "Subject A can either be concept that is (or is in a role of) a function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is (or is in a role of) a function specification. Object B can be any concept or entity. Within EDAM itself, 'is_function_of' is not used." ; + rdfs:domain :operation_0004 ; + skos:broadMatch ; + skos:exactMatch . + +:operation_0252 a owl:Class ; + rdfs:label "Peptide immunogenicity prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasBroadSynonym "Immunogen design" ; + oboInOwl:hasDefinition "Predict antigenicity, allergenicity / immunogenicity, allergic cross-reactivity etc of peptides and proteins." ; + oboInOwl:hasExactSynonym "Antigenicity prediction", + "Immunogenicity prediction" ; + oboInOwl:hasNarrowSynonym "B cell peptide immunogenicity prediction", + "Hopp and Woods plotting", + "MHC peptide immunogenicity prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Immunological system are cellular or humoral. In vaccine design to induces a cellular immune response, methods must search for antigens that can be recognized by the major histocompatibility complex (MHC) molecules present in T lymphocytes. If a humoral response is required, antigens for B cells must be identified.", + "This includes methods that generate a graphical rendering of antigenicity of a protein, such as a Hopp and Woods plot.", + "This is usually done in the development of peptide-specific antibodies or multi-epitope vaccines. Methods might use sequence data (for example motifs) and / or structural data." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1534 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0804 ], + :operation_0250, + :operation_1777 . + +:operation_0270 a owl:Class ; + rdfs:label "Transmembrane protein analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse transmembrane protein(s), typically by processing sequence and / or structural data, and write an informative report for example about the protein and its transmembrane domains / regions." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Use this (or child) concept for analysis of transmembrane domains (buried and exposed faces), transmembrane helices, helix topology, orientation, inter-helical contacts, membrane dipping (re-entrant) loops and other secondary structure etc. Methods might use pattern discovery, hidden Markov models, sequence alignment, structural profiles, amino acid property analysis, comparison to known domains or some combination (hybrid methods)." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0820 ], + :operation_2945 . + +:operation_0279 a owl:Class ; + rdfs:label "Nucleic acid folding analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse some aspect of RNA/DNA folding, typically by processing sequence and/or structural data. For example, compute folding energies such as minimum folding energies for DNA or RNA sequences or energy landscape of RNA mutants." ; + oboInOwl:hasExactSynonym "Nucleic acid folding", + "Nucleic acid folding modelling", + "Nucleic acid folding prediction" ; + oboInOwl:hasNarrowSynonym "Nucleic acid folding energy calculation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1596 ], + :operation_0475, + :operation_2426, + :operation_2481 . + +:operation_0320 a owl:Class ; + rdfs:label "Protein structure assignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Assign a protein tertiary structure (3D coordinates), or other aspects of protein structure, from raw experimental data." ; + oboInOwl:hasNarrowSynonym "NOE assignment", + "Structure calculation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1460 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1317 ], + :operation_2406, + :operation_2423 . + +:operation_0325 a owl:Class ; + rdfs:label "Phylogenetic tree comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare two or more phylogenetic trees." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "For example, to produce a consensus tree, subtrees, supertrees, calculate distances between trees or test topological similarity between trees (e.g. a congruence index) etc." ; + rdfs:subClassOf :operation_0324, + :operation_2424 . + +:operation_0335 a owl:Class ; + rdfs:label "Formatting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Reformat a file of data (or equivalent entity in memory)." ; + oboInOwl:hasExactSynonym "File format conversion", + "File formatting", + "File reformatting", + "Format conversion", + "Reformatting" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2409 . + +:operation_0338 a owl:Class ; + rdfs:label "Sequence database search" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Search a sequence database by sequence comparison and retrieve similar sequences. Sequences matching a given sequence motif or pattern, such as a Prosite pattern or regular expression." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This excludes direct retrieval methods (e.g. the dbfetch program)." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0857 ], + :operation_2403, + :operation_2421 . + +:operation_0418 a owl:Class ; + rdfs:label "Protein signal peptide detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Detect or predict signal peptides and signal peptide cleavage sites in protein sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods might use sequence motifs and features, amino acid composition, profiles, machine-learned classifiers, etc." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0140 ], + :operation_1777, + :operation_3092 . + +:operation_0420 a owl:Class ; + rdfs:label "Nucleic acids-binding site prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict or detect RNA and DNA-binding binding sites in protein sequences." ; + oboInOwl:hasExactSynonym "Protein-nucleic acid binding detection", + "Protein-nucleic acid binding prediction", + "Protein-nucleic acid binding site detection", + "Protein-nucleic acid binding site prediction" ; + oboInOwl:hasNarrowSynonym "Zinc finger prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes methods that predict and optimise zinc finger protein domains for DNA/RNA binding (for example for transcription factors and nucleases)." ; + rdfs:subClassOf :operation_2575 . + +:operation_0456 a owl:Class ; + rdfs:label "Nucleic acid melting profile plotting" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate and plot a DNA or DNA/RNA melting profile." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "A melting profile is used to visualise and analyse partly melted DNA conformations." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1583 ], + :operation_0262, + :operation_0337 . + +:operation_0538 a owl:Class ; + rdfs:label "Phylogenetic inference (data centric)" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Construct a phylogenetic tree from a specific type of data." ; + oboInOwl:hasExactSynonym "Phylogenetic tree construction (data centric)", + "Phylogenetic tree generation (data centric)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Subconcepts of this concept reflect different types of data used to generate a tree, and provide an alternate axis for curation." ; + rdfs:subClassOf :operation_0323 . + +:operation_0573 a owl:Class ; + rdfs:label "Map drawing" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Draw or visualise a DNA map." ; + oboInOwl:hasExactSynonym "DNA map drawing", + "Map rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_1274 ], + :operation_0337 . + +:operation_2415 a owl:Class ; + rdfs:label "Protein folding analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse, simulate or predict protein folding, typically by processing sequence and / or structural data. For example, predict sites of nucleation or stabilisation key to protein folding." ; + oboInOwl:hasExactSynonym "Protein folding modelling" ; + oboInOwl:hasNarrowSynonym "Protein folding simulation", + "Protein folding site prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0130 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1537 ], + :operation_2406, + :operation_2426 . + +:operation_2430 a owl:Class ; + rdfs:label "Design" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Design a biological entity (typically a molecular sequence or structure) with specific properties." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0004 . + +:operation_2520 a owl:Class ; + rdfs:label "DNA mapping" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate a map of a DNA sequence annotated with positional or non-positional features of some type." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0196 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1274 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0102 ], + :operation_2429 . + +:operation_2944 a owl:Class ; + rdfs:label "Physical mapping" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate a physical (sequence) map of a DNA sequence showing the physical distance (base pairs) between features or landmarks such as restriction sites, cloned DNA fragments, genes and other genetic markers." ; + oboInOwl:hasExactSynonym "Physical cartography" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1280 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0102 ], + :operation_2520 . + +:operation_3095 a owl:Class ; + rdfs:label "Nucleic acid design" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Design (or predict) nucleic acid sequences with specific chemical or physical properties." ; + oboInOwl:hasNarrowSynonym "Gene design" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_2430, + :operation_2478 . + +:operation_3096 a owl:Class ; + rdfs:label "Editing" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Edit a data entity, either randomly or specifically." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2409 . + +:operation_3218 a owl:Class ; + rdfs:label "Sequencing quality control" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Raw sequence data quality control." ; + oboInOwl:hasExactSynonym "Sequencing QC", + "Sequencing quality assessment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Analyse raw sequence data from a sequencing pipeline and identify (and possiby fix) problems." ; + rdfs:subClassOf :operation_2428, + :operation_2478 . + +:operation_3227 a owl:Class ; + rdfs:label "Variant calling" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Detect, identify and map mutations, such as single nucleotide polymorphisms, short indels and structural variants, in multiple DNA sequences. Typically the alignment and comparison of the fluorescent traces produced by DNA sequencing hardware, to study genomic alterations." ; + oboInOwl:hasExactSynonym "Variant mapping" ; + oboInOwl:hasNarrowSynonym "Allele calling", + "Exome variant detection", + "Genome variant detection", + "Germ line variant calling", + "Mutation detection", + "Somatic variant calling", + "de novo mutation detection" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods often utilise a database of aligned reads.", + "Somatic variant calling is the detection of variations established in somatic cells and hence not inherited as a germ line variant.", + "Variant detection" ; + rdfs:subClassOf :operation_2478, + :operation_3197 . + +:operation_3351 a owl:Class ; + rdfs:label "Molecular surface analysis" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "Analyse the surface properties of proteins or other macromolecules, including surface accessible pockets, interior inaccessible cavities etc." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0166 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0123 ], + :operation_2480 . + +:operation_3432 a owl:Class ; + rdfs:label "Clustering" ; + :created_in "1.6" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Group together some data entities on the basis of similarities such that entities in the same group (cluster) are more similar to each other than to those in other groups (clusters)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0004 . + +:topic_0123 a owl:Class ; + rdfs:label "Protein properties" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The study of the physical and biochemical properties of peptides and proteins, for example the hydrophobic, hydrophilic and charge properties of a protein." ; + oboInOwl:hasExactSynonym "Protein physicochemistry" ; + oboInOwl:hasHumanReadableId "Protein_properties" ; + oboInOwl:hasNarrowSynonym "Protein hydropathy" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:subClassOf :topic_0078 . + +:topic_0601 a owl:Class ; + rdfs:label "Protein modifications" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Protein chemical modifications, e.g. post-translational modifications." ; + oboInOwl:hasExactSynonym "PTMs", + "Post-translational modifications", + "Protein post-translational modification" ; + oboInOwl:hasHumanReadableId "Protein_modifications" ; + oboInOwl:hasNarrowSynonym "Post-translation modifications", + "Protein chemical modifications", + "Protein post-translational modifications" ; + oboInOwl:hasRelatedSynonym "GO:0006464", + "MOD:00000" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "EDAM does not describe all possible protein modifications. For fine-grained annotation of protein modification use the Gene Ontology (children of concept GO:0006464) and/or the Protein Modifications ontology (children of concept MOD:00000)" ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0108 . + +:topic_0610 a owl:Class ; + rdfs:label "Ecology" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.15 Ecology" ; + oboInOwl:hasDefinition "The ecological and environmental sciences and especially the application of information technology (ecoinformatics)." ; + oboInOwl:hasHumanReadableId "Ecology" ; + oboInOwl:hasNarrowSynonym "Computational ecology", + "Ecoinformatics", + "Ecological informatics", + "Ecosystem science" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D004777" ; + rdfs:subClassOf :topic_3855, + :topic_4019 . + +:topic_0625 a owl:Class ; + rdfs:label "Genotype and phenotype" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The study of genetic constitution of a living entity, such as an individual, and organism, a cell and so on, typically with respect to a particular observable phenotypic traits, or resources concerning such traits, which might be an aspect of biochemistry, physiology, morphology, anatomy, development and so on." ; + oboInOwl:hasExactSynonym "Genotype and phenotype resources", + "Genotype-phenotype", + "Genotype-phenotype analysis" ; + oboInOwl:hasHumanReadableId "Genotype_and_phenotype" ; + oboInOwl:hasNarrowSynonym "Genotype", + "Genotyping", + "Phenotype", + "Phenotyping" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3053 . + +:topic_0749 a owl:Class ; + rdfs:label "Transcription factors and regulatory sites" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Proteins that bind to DNA and control transcription of DNA to mRNA (transcription factors) and also transcriptional regulatory sites, elements and regions (such as promoters, enhancers, silencers and boundary elements / insulators) in nucleotide sequences." ; + oboInOwl:hasHumanReadableId "Transcription_factors_and_regulatory_sites" ; + oboInOwl:hasNarrowSynonym "-10 signals", + "-35 signals", + "Attenuators", + "CAAT signals", + "CAT box", + "CCAAT box", + "CpG islands", + "Enhancers", + "GC signals", + "Isochores", + "Promoters", + "TATA signals", + "TFBS", + "Terminators", + "Transcription factor binding sites", + "Transcription factors", + "Transcriptional regulatory sites" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes CpG rich regions (isochores) in a nucleotide sequence.", + "This includes promoters, CAAT signals, TATA signals, -35 signals, -10 signals, GC signals, primer binding sites for initiation of transcription or reverse transcription, enhancer, attenuator, terminators and ribosome binding sites.", + "Transcription factor proteins either promote (as an activator) or block (as a repressor) the binding to DNA of RNA polymerase. Regulatory sites including transcription factor binding site as well as promoters, enhancers, silencers and boundary elements / insulators." ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_0078, + :topic_0203, + :topic_3125 . + +:topic_0820 a owl:Class ; + rdfs:label "Membrane and lipoproteins" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Lipoproteins (protein-lipid assemblies), and proteins or region of a protein that spans or are associated with a membrane." ; + oboInOwl:hasHumanReadableId "Membrane_and_lipoproteins" ; + oboInOwl:hasNarrowSynonym "Lipoproteins", + "Membrane proteins", + "Transmembrane proteins" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_0078 . + +:topic_2259 a owl:Class ; + rdfs:label "Systems biology" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The holistic modelling and analysis of complex biological systems and the interactions therein." ; + oboInOwl:hasHumanReadableId "Systems_biology" ; + oboInOwl:hasNarrowSynonym "Biological modelling", + "Biological system modelling", + "Systems modelling" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "This includes databases of models and methods to construct or analyse a model." ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D049490" ; + rdfs:subClassOf :topic_3070 . + +:topic_2885 a owl:Class ; + rdfs:label "DNA polymorphism" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "DNA polymorphism." ; + oboInOwl:hasHumanReadableId "DNA_polymorphism" ; + oboInOwl:hasNarrowSynonym "Microsatellites", + "RFLP", + "SNP", + "Single nucleotide polymorphism", + "VNTR", + "Variable number of tandem repeat polymorphism", + "snps" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "Includes microsatellite polymorphism in a DNA sequence. A microsatellite polymorphism is a very short subsequence that is repeated a variable number of times between individuals. These repeats consist of the nucleotides cytosine and adenosine.", + "Includes restriction fragment length polymorphisms (RFLP) in a DNA sequence. An RFLP is defined by the presence or absence of a specific restriction site of a bacterial restriction enzyme.", + "Includes single nucleotide polymorphisms (SNP) and associated data, for example, the discovery and annotation of SNPs. A SNP is a DNA sequence variation where a single nucleotide differs between members of a species or paired chromosomes in an individual.", + "Includes variable number of tandem repeat (VNTR) polymorphism in a DNA sequence. VNTRs occur in non-coding regions of DNA and consists sub-sequence that is repeated a multiple (and varied) number of times." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0199, + :topic_0654 . + +:topic_3295 a owl:Class ; + rdfs:label "Epigenetics" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDefinition "Topic concerning the study of heritable changes, for example in gene expression or phenotype, caused by mechanisms other than changes in the DNA sequence." ; + oboInOwl:hasHumanReadableId "Epigenetics" ; + oboInOwl:hasNarrowSynonym "DNA methylation", + "Histone modification", + "Methylation profiles" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "This includes sub-topics such as histone modification and DNA methylation (methylation sites and analysis, for example of patterns and profiles of DNA methylation in a population, tissue etc.)" ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D019175" ; + rdfs:subClassOf :topic_3053 . + +:topic_3299 a owl:Class ; + rdfs:label "Evolutionary biology" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.16 Evolutionary biology" ; + oboInOwl:hasDefinition "The evolutionary processes, from the genetic to environmental scale, that produced life in all its diversity." ; + oboInOwl:hasExactSynonym "Evolution" ; + oboInOwl:hasHumanReadableId "Evolutionary_biology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:topic_3318 a owl:Class ; + rdfs:label "Physics" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "The study of matter, space and time, and related concepts such as energy and force." ; + oboInOwl:hasHumanReadableId "Physics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0003 . + +:topic_3656 a owl:Class ; + rdfs:label "Immunoprecipitation experiment" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Experimental techniques to purify a protein-DNA crosslinked complex. Usually sequencing follows e.g. in the techniques ChIP-chip, ChIP-seq and MeDIP-seq." ; + oboInOwl:hasExactSynonym "Chromatin immunoprecipitation" ; + oboInOwl:hasHumanReadableId "Immunoprecipitation_experiment" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3361 . + +oboInOwl:hasNarrowSynonym a owl:AnnotationProperty . + +:data_0857 a owl:Class ; + rdfs:label "Sequence search results" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A report of sequence hits and associated data from searching a database of sequences (for example a BLAST search). This will typically include a list of scores (often with statistical evaluation) and a set of alignments for the hits." ; + oboInOwl:hasExactSynonym "Database hits (sequence)", + "Sequence database hits", + "Sequence database search results", + "Sequence search hits" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The score list includes the alignment score, percentage of the query sequence matched, length of the database sequence entry in this alignment, identifier of the database sequence entry, excerpt of the database sequence entry description etc." ; + rdfs:subClassOf :data_2080 . + +:data_0860 a owl:Class ; + rdfs:label "Sequence signature data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning concerning specific or conserved pattern in molecular sequences and the classifiers used for their identification, including sequence motifs, profiles or other diagnostic element." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This can include metadata about a motif or sequence profile such as its name, length, technical details about the profile construction, and so on." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + :data_0006 . + +:data_0951 a owl:Class ; + rdfs:label "Statistical estimate score" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A value representing estimated statistical significance of some observed data; typically sequence database hits." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1772 . + +:data_0968 a owl:Class ; + rdfs:label "Keyword" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:BooleanQueryString", + "Moby:Global_Keyword", + "Moby:QueryString", + "Moby:Wildcard_Query" ; + oboInOwl:hasDefinition "Keyword(s) or phrase(s) used (typically) for text-searching purposes." ; + oboInOwl:hasExactSynonym "Phrases", + "Term" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Boolean operators (AND, OR and NOT) and wildcard characters may be allowed." ; + rdfs:subClassOf :data_0006 . + +:data_1016 a owl:Class ; + rdfs:label "Sequence position" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "PDBML:_atom_site.id", + "WHATIF: PDBx_atom_site", + "WHATIF: number" ; + oboInOwl:hasDefinition "A position of one or more points (base or residue) in a sequence, or part of such a specification." ; + oboInOwl:hasRelatedSynonym "SO:0000735" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2534 . + +:data_1035 a owl:Class ; + rdfs:label "Gene ID (GeneDB)" ; + :created_in "beta12orEarlier" ; + :regex "[a-zA-Z_0-9\\.-]*" ; + oboInOwl:hasDbXref "Moby_namespace:GeneDB" ; + oboInOwl:hasDefinition "Identifier of a gene from the GeneDB database." ; + oboInOwl:hasExactSynonym "GeneDB identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2295 . + +:data_1078 a owl:Class ; + rdfs:label "Experiment annotation ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of an entry from a database of microarray data." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2531 ], + :data_0976 . + +:data_1112 a owl:Class ; + rdfs:label "Sequence cluster ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier of a cluster of molecular sequence(s)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1235 ], + :data_1064 . + +:data_1115 a owl:Class ; + rdfs:label "Sequence profile ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a sequence profile." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "A sequence profile typically represents a sequence alignment." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_1354 ], + :data_0976 . + +:data_1190 a owl:Class ; + rdfs:label "Tool name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The name of a computer package, application, method or function." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0977 . + +:data_1279 a owl:Class ; + rdfs:label "Sequence map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A map of genetic markers in a contiguous, assembled genomic sequence, with the sizes and separation of markers measured in base pairs." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A sequence map typically includes annotation on significant subsequences such as contigs, haplotypes and genes. The contigs shown will (typically) be a set of small overlapping clones representing a complete chromosomal segment." ; + rdfs:subClassOf :data_1280 . + +:data_1364 a owl:Class ; + rdfs:label "Hidden Markov model" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A statistical Markov model of a system which is assumed to be a Markov process with unobserved (hidden) states. For example, a hidden Markov model representation of a set or alignment of sequences." ; + oboInOwl:hasExactSynonym "HMM" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0950 . + +:data_1394 a owl:Class ; + rdfs:label "Alignment score or penalty" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A simple floating point number defining the penalty for opening or extending a gap in an alignment." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1772 . + +:data_1597 a owl:Class ; + rdfs:label "Codon usage table" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Table of codon usage data calculated from one or more nucleic acid sequences." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A codon usage table might include the codon usage table name, optional comments and a table with columns for codons and corresponding codon usage data. A genetic code can be extracted from or represented by a codon usage table." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0203 ], + :data_0914 . + +:data_2012 a owl:Class ; + rdfs:label "Sequence coordinates" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:GCP_MapInterval", + "Moby:GCP_MapPoint", + "Moby:GCP_MapPosition", + "Moby:GenePosition", + "Moby:HitPosition", + "Moby:Locus", + "Moby:MapPosition", + "Moby:Position", + "PDBML:_atom_site.id" ; + oboInOwl:hasDefinition "A position in a map (for example a genetic map), either a single position (point) or a region / interval." ; + oboInOwl:hasExactSynonym "Locus", + "Map position" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This includes positions in genomes based on a reference sequence. A position may be specified for any mappable object, i.e. anything that may have positional information such as a physical position in a chromosome. Data might include sequence region name, strand, coordinate system name, assembly name, start position and end position." ; + rdfs:subClassOf :data_0006, + :data_1016, + :data_1017 . + +:data_2050 a owl:Class ; + rdfs:label "Molecular property (general)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "General data for a molecule." ; + oboInOwl:hasExactSynonym "General molecular property" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2087 . + +:data_2088 a owl:Class ; + rdfs:label "DNA base structural data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Structural data for DNA base pairs or runs of bases, such as energy or angle data." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0912 . + +:data_2108 a owl:Class ; + rdfs:label "Reaction ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of a biological reaction from a database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2978 ], + :data_0976 . + +:data_2321 a owl:Class ; + rdfs:label "Enzyme ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A unique, persistent identifier of an enzyme." ; + oboInOwl:hasExactSynonym "Enzyme accession" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1010, + :data_2907 . + +:data_2717 a owl:Class ; + rdfs:label "Oligonucleotide probe annotation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "General annotation on an oligonucleotide probe, or a set of probes." ; + oboInOwl:hasNarrowSynonym "Oligonucleotide probe sets annotation" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0632 ], + :data_3115 . + +:data_2909 a owl:Class ; + rdfs:label "Organism name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:BriefOccurrenceRecord", + "Moby:FirstEpithet", + "Moby:InfraspecificEpithet", + "Moby:OccurrenceRecord", + "Moby:Organism_Name", + "Moby:OrganismsLongName", + "Moby:OrganismsShortName" ; + oboInOwl:hasDefinition "The name of an organism (or group of organisms)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1869, + :data_2099 . + +:data_2955 a owl:Class ; + rdfs:label "Sequence report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An informative report of information about molecular sequence(s), including basic information (metadata), and reports generated from molecular sequence analysis, including positional features and non-positional properties." ; + oboInOwl:hasExactSynonym "Sequence-derived report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2048 . + +:data_2985 a owl:Class ; + rdfs:label "Nucleic acid thermodynamic data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A thermodynamic or kinetic property of a nucleic acid molecule." ; + oboInOwl:hasExactSynonym "Nucleic acid property (thermodynamic or kinetic)", + "Nucleic acid thermodynamic property" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0912 . + +:data_3111 a owl:Class ; + rdfs:label "Processed microarray data" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Data generated from processing and analysis of probe set data from a microarray experiment." ; + oboInOwl:hasExactSynonym "Gene annotation (expression)", + "Gene expression report", + "Microarray probe set data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Such data as found in Affymetrix .CHP files or data from other software such as RMA or dChip." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0203 ], + :data_3117 . + +:data_3128 a owl:Class ; + rdfs:label "Nucleic acid structure report" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "A human-readable collection of information about regions within a nucleic acid sequence which form secondary or tertiary (3D) structures." ; + oboInOwl:hasExactSynonym "Nucleic acid features (structure)" ; + oboInOwl:hasNarrowSynonym "Quadruplexes (report)", + "Stem loop (report)", + "d-loop (report)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The report may be based on analysis of nucleic acid sequence or structural data, or any annotation or information about specific nucleic acid 3D structure(s) or such structures in general." ; + rdfs:subClassOf :data_2084, + :data_2085 . + +:data_3707 a owl:Class ; + rdfs:label "Biodiversity data" ; + :created_in "1.14" ; + oboInOwl:hasDefinition "Machine-readable biodiversity data." ; + oboInOwl:hasExactSynonym "Biodiversity information" ; + oboInOwl:hasNarrowSynonym "OTU table" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006, + :data_3736 . + +:format_1207 a owl:Class ; + rdfs:label "nucleotide" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alphabet for a nucleotide sequence with possible ambiguity, unknown positions and non-sequence characters." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Non-sequence characters may be used for example for gaps." ; + rdfs:seeAlso "http://onto.eva.mpg.de/ontologies/gfo-bio.owl#Nucleotide_sequence" ; + rdfs:subClassOf :format_2330, + :format_2571 . + +:format_2035 a owl:Class ; + rdfs:label "Chemical formula format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Text format of a chemical formula." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0846 ], + :format_2350 . + +:format_2182 a owl:Class ; + rdfs:label "FASTQ-like format (text)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A text format resembling FASTQ short read format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This concept may be used for non-standard FASTQ short read-like formats." ; + rdfs:subClassOf :format_2330, + :format_2545 . + +:format_2206 a owl:Class ; + rdfs:label "Sequence feature table format (text)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Text format for a sequence feature table." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2548 . + +:format_2848 a owl:Class ; + rdfs:label "Bibliographic reference format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a bibliographic reference." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0970 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2849 ], + :format_2350 . + +:format_2922 a owl:Class ; + rdfs:label "markx0 variant" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Some variant of Pearson MARKX alignment format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2330, + :format_2554 . + +:format_3033 a owl:Class ; + rdfs:label "Matrix format" ; + :created_in "beta13" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a matrix (array) of numerical values." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2082 ], + :format_2350 . + +:format_3507 a owl:Class ; + rdfs:label "Document format" ; + :created_in "1.8" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of documents including word processor, spreadsheet and presentation." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2350 . + +:format_3879 a owl:Class ; + rdfs:label "Topology format" ; + :created_in "1.22" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of topology files; containing the static information of a structure molecular system that is needed for a molecular simulation." ; + oboInOwl:hasExactSynonym "CG topology format", + "MD topology format", + "NA topology format", + "Protein topology format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Many different file formats exist describing structural molecular topology. Typically, each MD package or simulation software works with their own implementation (e.g. GROMACS top, CHARMM psf, AMBER prmtop)." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3872 ], + :format_2350 . + +:operation_0226 a owl:Class ; + rdfs:label "Annotation" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Annotate an entity (typically a biological or biomedical database entity) with terms from a controlled vocabulary." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This is a broad concept and is used a placeholder for other, more specific concepts." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0582 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0089 ], + :operation_0004 . + +:operation_0248 a owl:Class ; + rdfs:label "Residue interaction calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF: SymShellFiveXML", + "WHATIF: SymShellOneXML", + "WHATIF: SymShellTenXML", + "WHATIF: SymShellTwoXML", + "WHATIF:ListContactsNormal", + "WHATIF:ListContactsRelaxed", + "WHATIF:ListSideChainContactsNormal", + "WHATIF:ListSideChainContactsRelaxed" ; + oboInOwl:hasDefinition "Calculate or extract inter-atomic, inter-residue or residue-atom contacts, distances and interactions in protein structure(s)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0130 ], + :operation_0250 . + +:operation_0262 a owl:Class ; + rdfs:label "Nucleic acid property calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate or predict physical or chemical properties of nucleic acid molecules, including any non-positional properties of the molecular sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0912 ], + :operation_3438 . + +:operation_0306 a owl:Class ; + rdfs:label "Text mining" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasBroadSynonym "Text analysis" ; + oboInOwl:hasDefinition "Process and analyse text (typically scientific literature) to extract information from it." ; + oboInOwl:hasExactSynonym "Literature mining", + "Text analytics", + "Text data mining" ; + oboInOwl:hasRelatedSynonym "Article analysis", + "Literature analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_3671 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0972 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0218 ], + :operation_2423, + :operation_2945 . + +:operation_0319 a owl:Class ; + rdfs:label "Protein secondary structure assignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Assign secondary structure from protein coordinate or experimental data." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Includes secondary structure assignment from circular dichroism (CD) spectroscopic data, and from protein coordinate data." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1317 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2814 ], + :operation_0320 . + +:operation_0321 a owl:Class ; + rdfs:label "Protein structure validation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF: CorrectedPDBasXML", + "WHATIF: UseFileDB", + "WHATIF: UseResidueDB" ; + oboInOwl:hasDefinition "Evaluate the quality or correctness a protein three-dimensional model." ; + oboInOwl:hasExactSynonym "Protein model validation" ; + oboInOwl:hasNarrowSynonym "Residue validation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Model validation might involve checks for atomic packing, steric clashes (bumps), volume irregularities, agreement with electron density maps, number of amino acid residues, percentage of residues with missing or bad atoms, irregular Ramachandran Z-scores, irregular Chi-1 / Chi-2 normality scores, RMS-Z score on bonds and angles etc.", + "The PDB file format has had difficulties, inconsistencies and errors. Corrections can include identifying a meaningful sequence, removal of alternate atoms, correction of nomenclature problems, removal of incomplete residues and spurious waters, addition or removal of water, modelling of missing side chains, optimisation of cysteine bonds, regularisation of bond lengths, bond angles and planarities etc.", + "This includes methods that calculate poor quality residues. The scoring function to identify poor quality residues may consider residues with bad atoms or atoms with high B-factor, residues in the N- or C-terminal position, adjacent to an unstructured residue, non-canonical residues, glycine and proline (or adjacent to these such residues)." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1539 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2275 ], + :operation_2406, + :operation_2428 . + +:operation_0474 a owl:Class ; + rdfs:label "Protein structure prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict tertiary structure (backbone and side-chain conformation) of protein sequences." ; + oboInOwl:hasNarrowSynonym "Protein folding pathway prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes methods that predict the folding pathway(s) or non-native structural intermediates of a protein." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1460 ], + :operation_2406, + :operation_2423, + :operation_2479 . + +:operation_0475 a owl:Class ; + rdfs:label "Nucleic acid structure prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict structure of DNA or RNA." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods might identify thermodynamically stable or evolutionarily conserved structures." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1459 ], + :operation_2423, + :operation_2481 . + +:operation_0539 a owl:Class ; + rdfs:label "Phylogenetic inference (method centric)" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Construct a phylogenetic tree using a specific method." ; + oboInOwl:hasExactSynonym "Phylogenetic tree construction (method centric)", + "Phylogenetic tree generation (method centric)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Subconcepts of this concept reflect different computational methods used to generate a tree, and provide an alternate axis for curation." ; + rdfs:subClassOf :operation_0323 . + +:operation_3631 a owl:Class ; + rdfs:label "Peptide identification" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Determination of peptide sequence from mass spectrum." ; + oboInOwl:hasExactSynonym "Peptide-spectrum-matching" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0943 ], + :operation_3214 . + +:operation_3961 a owl:Class ; + rdfs:label "Copy number variation detection" ; + :created_in "1.25" ; + oboInOwl:hasDefinition "Identify where sections of the genome are repeated and the number of repeats in the genome varies between individuals." ; + oboInOwl:hasExactSynonym "CNV detection" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3228 . + +:topic_0196 a owl:Class ; + rdfs:label "Sequence assembly" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The assembly of fragments of a DNA sequence to reconstruct the original sequence." ; + oboInOwl:hasHumanReadableId "Sequence_assembly" ; + oboInOwl:hasNarrowSynonym "Assembly" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "Assembly has two broad types, de-novo and re-sequencing. Re-sequencing is a specialised case of assembly, where an assembled (typically de-novo assembled) reference genome is available and is about 95% identical to the re-sequenced genome. All other cases of assembly are 'de-novo'." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0080 . + +:topic_0736 a owl:Class ; + rdfs:label "Protein folds and structural domains" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Protein tertiary structural domains and folds in a protein or polypeptide chain." ; + oboInOwl:hasHumanReadableId "Protein_folds_and_structural_domains" ; + oboInOwl:hasNarrowSynonym "Intramembrane regions", + "Protein domains", + "Protein folds", + "Protein membrane regions", + "Protein structural domains", + "Protein topological domains", + "Protein transmembrane regions", + "Transmembrane regions" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes topological domains such as cytoplasmic regions in a protein.", + "This includes trans- or intra-membrane regions of a protein, typically describing physicochemical properties of the secondary structure elements. For example, the location and size of the membrane spanning segments and intervening loop regions, transmembrane region IN/OUT orientation relative to the membrane, plus the following data for each amino acid: A Z-coordinate (the distance to the membrane center), the free energy of membrane insertion (calculated in a sliding window over the sequence) and a reliability score. The z-coordinate implies information about re-entrant helices, interfacial helices, the tilt of a transmembrane helix and loop lengths." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_2814 . + +:topic_2275 a owl:Class ; + rdfs:label "Molecular modelling" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The construction, analysis, evaluation, refinement etc. of models of a molecules properties or behaviour, including the modelling the structure of proteins in complex with small molecules or other macromolecules (docking)." ; + oboInOwl:hasHumanReadableId "Molecular_modelling" ; + oboInOwl:hasNarrowSynonym "Comparative modelling", + "Docking", + "Homology modeling", + "Homology modelling", + "Molecular docking" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0082 . + +:topic_3277 a owl:Class ; + rdfs:label "Sample collections" ; + :created_in "1.3" ; + oboInOwl:hasDefinition "Biological samples and specimens." ; + oboInOwl:hasExactSynonym "Specimen collections" ; + oboInOwl:hasHumanReadableId "Sample_collections" ; + oboInOwl:hasNarrowSynonym "biosamples", + "samples" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3344 . + +:topic_3301 a owl:Class ; + rdfs:label "Microbiology" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.20 Microbiology" ; + oboInOwl:hasDefinition "The biology of microorganisms." ; + oboInOwl:hasHumanReadableId "Microbiology" ; + oboInOwl:hasNarrowSynonym "Antimicrobial stewardship", + "Medical microbiology", + "Microbial genetics", + "Microbial physiology", + "Microbial surveillance", + "Microbiological surveillance", + "Molecular infection biology", + "Molecular microbiology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:topic_3321 a owl:Class ; + rdfs:label "Molecular genetics" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDefinition "The structure and function of genes at a molecular level." ; + oboInOwl:hasHumanReadableId "Molecular_genetics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3053, + :topic_3307 . + +:topic_3489 a owl:Class ; + rdfs:label "Database management" ; + :created_in "1.8" ; + :related_term "Database administration", + "Information systems" ; + oboInOwl:hasBroadSynonym "Databases" ; + oboInOwl:hasDefinition "The general handling of data stored in digital archives such as databases, databanks, web portals, and other data resources." ; + oboInOwl:hasHumanReadableId "Database_management" ; + oboInOwl:hasNarrowSynonym "Content management", + "Document management", + "File management", + "Record management" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes databases for the results of scientific experiments, the application of high-throughput technology, computational analysis and the scientific literature. It covers the management and manipulation of digital documents, including database records, files, and reports." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0605 . + +:topic_3510 a owl:Class ; + rdfs:label "Protein sites, features and motifs" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "The biology, archival, detection, prediction and analysis of positional features such as functional and other key sites, in protein sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them." ; + oboInOwl:hasHumanReadableId "Protein_sites_features_and_motifs" ; + oboInOwl:hasNarrowSynonym "Protein sequence features", + "Signal peptide cleavage sites" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "A signal peptide coding sequence encodes an N-terminal domain of a secreted protein, which is involved in attaching the polypeptide to a membrane leader sequence. A transit peptide coding sequence encodes an N-terminal domain of a nuclear-encoded organellar protein; which is involved in import of the protein into the organelle." ; + rdfs:subClassOf :topic_0078, + :topic_0160 . + +:data_0847 a owl:Class ; + rdfs:label "QSAR descriptor" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A QSAR quantitative descriptor (name-value pair) of chemical structure." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "QSAR descriptors have numeric values that quantify chemical information encoded in a symbolic representation of a molecule. They are used in quantitative structure activity relationship (QSAR) applications. Many subtypes of individual descriptors (not included in EDAM) cover various types of protein properties." ; + rdfs:subClassOf :data_2050 . + +:data_0874 a owl:Class ; + rdfs:label "Comparison matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Matrix of integer or floating point numbers for amino acid or nucleotide sequence comparison." ; + oboInOwl:hasExactSynonym "Substitution matrix" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The comparison matrix might include matrix name, optional comment, height and width (or size) of matrix, an index row/column (of characters) and data rows/columns (of integers or floats)." ; + rdfs:subClassOf :data_2082 . + +:data_0912 a owl:Class ; + rdfs:label "Nucleic acid property" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a nucleic acid molecule." ; + oboInOwl:hasExactSynonym "Nucleic acid physicochemical property" ; + oboInOwl:hasNarrowSynonym "GC-content", + "Nucleic acid property (structural)", + "Nucleic acid structural property" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Nucleic acid structural properties stiffness, curvature, twist/roll data or other conformational parameters or properties.", + "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf :data_2087 . + +:data_0925 a owl:Class ; + rdfs:label "Sequence assembly" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An assembly of fragments of a (typically genomic) DNA sequence." ; + oboInOwl:hasExactSynonym "Contigs", + "SO:0000353" ; + oboInOwl:hasNarrowSynonym "SO:0001248" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Typically, an assembly is a collection of contigs (for example ESTs and genomic DNA fragments) that are ordered, aligned and merged. Annotation of the assembled sequence might be included." ; + rdfs:seeAlso ; + rdfs:subClassOf :data_1234 . + +:data_0955 a owl:Class ; + rdfs:label "Data index" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An index of data of biological relevance." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3489 ], + :data_0006 . + +:data_1154 a owl:Class ; + rdfs:label "KEGG object identifier" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique identifier of an object from one of the KEGG databases (excluding the GENES division)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109 . + +:data_1249 a owl:Class ; + rdfs:label "Sequence length" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The size (length) of a sequence, subsequence or region in a sequence, or range(s) of lengths." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2534 . + +:data_1353 a owl:Class ; + rdfs:label "Sequence motif" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Any specific or conserved pattern (typically expressed as a regular expression) in a molecular sequence." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + :data_0860 . + +:data_1743 a owl:Class ; + rdfs:label "Atomic coordinate" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Cartesian coordinate of an atom (in a molecular structure)." ; + oboInOwl:hasExactSynonym "Cartesian coordinate" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1917 . + +:data_2024 a owl:Class ; + rdfs:label "Enzyme kinetics data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning chemical reaction(s) catalysed by enzyme(s)." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf :data_0897, + :data_2978 . + +:data_2093 a owl:Class ; + rdfs:label "Data reference" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Reference to a dataset (or a cross-reference between two datasets), typically one or more entries in a biological database or ontology." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A list of database accessions or identifiers are usually included." ; + rdfs:subClassOf :data_0006 . + +:data_3424 a owl:Class ; + rdfs:label "Raw image" ; + :created_in "1.5" ; + oboInOwl:hasDefinition "Raw biological or biomedical image generated by some experimental technique." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:seeAlso "http://semanticscience.org/resource/SIO_000081" ; + rdfs:subClassOf :data_2968 . + +:format_2036 a owl:Class ; + rdfs:label "Phylogenetic character data format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of raw (unplotted) phylogenetic data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0871 ], + :format_2350 . + +:format_2921 a owl:Class ; + rdfs:label "Sequence variation annotation format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of sequence variation annotation." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3498 ], + :format_2350 . + +:format_3326 a owl:Class ; + rdfs:label "Data index format" ; + :created_in "1.3" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a data index of some type." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0955 ], + :format_2350 . + +:format_3780 a owl:Class ; + rdfs:label "Annotated text format" ; + :created_in "1.16" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format of an annotated text, e.g. with recognised entities, concepts, and relations." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3779 ], + :format_2350 . + +:operation_0249 a owl:Class ; + rdfs:label "Protein geometry calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF:CysteineTorsions", + "WHATIF:ResidueTorsions", + "WHATIF:ResidueTorsionsBB", + "WHATIF:ShowTauAngle" ; + oboInOwl:hasDefinition "Calculate, visualise or analyse phi/psi angles of a protein structure." ; + oboInOwl:hasNarrowSynonym "Backbone torsion angle calculation", + "Cysteine torsion angle calculation", + "Tau angle calculation", + "Torsion angle calculation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2991 ], + :operation_0250 . + +:operation_0253 a owl:Class ; + rdfs:label "Sequence feature detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict, recognise and identify positional features in molecular sequences such as key functional sites or regions." ; + oboInOwl:hasExactSynonym "Sequence feature prediction", + "Sequence feature recognition" ; + oboInOwl:hasNarrowSynonym "Motif database search" ; + oboInOwl:hasRelatedSynonym "SO:0000110" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Look at \"Protein feature detection\" (http://edamontology.org/operation_3092) and \"Nucleic acid feature detection\" (http://edamontology.org/operation_0415) in case more specific terms are needed." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1255 ], + :operation_2403, + :operation_2423 . + +:operation_0308 a owl:Class ; + rdfs:label "PCR primer design" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Design or predict oligonucleotide primers for PCR and DNA amplification etc." ; + oboInOwl:hasExactSynonym "PCR primer prediction", + "Primer design" ; + oboInOwl:hasNarrowSynonym "PCR primer design (based on gene structure)", + "PCR primer design (for conserved primers)", + "PCR primer design (for gene transcription profiling)", + "PCR primer design (for genotyping polymorphisms)", + "PCR primer design (for large scale sequencing)", + "PCR primer design (for methylation PCRs)", + "Primer quality estimation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Primer design involves predicting or selecting primers that are specific to a provided PCR template. Primers can be designed with certain properties such as size of product desired, primer size etc. The output might be a minimal or overlapping primer set.", + "This includes predicting primers based on gene structure, promoters, exon-exon junctions, predicting primers that are conserved across multiple genomes or species, primers for for gene transcription profiling, for genotyping polymorphisms, for example single nucleotide polymorphisms (SNPs), for large scale sequencing, or for methylation PCRs." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1240 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2977 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0632 ], + :operation_2419 . + +:operation_0346 a owl:Class ; + rdfs:label "Sequence similarity search" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Search a sequence database and retrieve sequences that are similar to a query sequence." ; + oboInOwl:hasNarrowSynonym "Sequence database search (by sequence)", + "Structure database search (by sequence)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0338, + :operation_0339, + :operation_2451 . + +:operation_2421 a owl:Class ; + rdfs:label "Database search" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Search a database (or other data resource) with a supplied query and retrieve entries (or parts of entries) that are similar to the query." ; + oboInOwl:hasExactSynonym "Search" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Typically the query is compared to each entry and high scoring matches (hits) are returned. For example, a BLAST search of a sequence database." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2080 ], + :operation_0224 . + +:operation_2429 a owl:Class ; + rdfs:label "Mapping" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Map properties to positions on an biological entity (typically a molecular sequence or structure), or assemble such an entity from constituent parts." ; + oboInOwl:hasExactSynonym "Cartography" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0004 . + +:operation_2483 a owl:Class ; + rdfs:label "Structure comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare two or more molecular tertiary structures." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0081 ], + :operation_2424, + :operation_2480 . + +:topic_0102 a owl:Class ; + rdfs:label "Mapping" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The mapping of complete (typically nucleotide) sequences. Mapping (in the sense of short read alignment, or more generally, just alignment) has application in RNA-Seq analysis (mapping of transcriptomics reads), variant discovery (e.g. mapping of exome capture), and re-sequencing (mapping of WGS reads)." ; + oboInOwl:hasHumanReadableId "Mapping" ; + oboInOwl:hasNarrowSynonym "Genetic linkage", + "Linkage", + "Linkage mapping", + "Synteny" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes resources that aim to identify, map or analyse genetic markers in DNA sequences, for example to produce a genetic (linkage) map of a chromosome or genome or to analyse genetic linkage and synteny. It also includes resources for physical (sequence) maps of a DNA sequence showing the physical distance (base pairs) between features or landmarks such as restriction sites, cloned DNA fragments, genes and other genetic markers. It also covers for example the alignment of sequences of (typically millions) of short reads to a reference genome." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0080 . + +:topic_0108 a owl:Class ; + rdfs:label "Protein expression" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The translation of mRNA into protein and subsequent protein processing in the cell." ; + oboInOwl:hasHumanReadableId "Protein_expression" ; + oboInOwl:hasNarrowSynonym "Translation" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0078 . + +:topic_0632 a owl:Class ; + rdfs:label "Probes and primers" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Molecular probes (e.g. a peptide probe or DNA microarray probe) or PCR primers and hybridisation oligos in a nucleic acid sequence." ; + oboInOwl:hasHumanReadableId "Probes_and_primers" ; + oboInOwl:hasNarrowSynonym "Primer quality", + "Primers", + "Probes" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes the design of primers for PCR and DNA amplification or the design of molecular probes." ; + rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D015335" ; + rdfs:subClassOf :topic_0080 . + +:topic_0634 a owl:Class ; + rdfs:label "Pathology" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.1.6 Pathology" ; + oboInOwl:hasDefinition "Diseases, including diseases in general and the genes, gene variations and proteins involved in one or more specific diseases." ; + oboInOwl:hasExactSynonym "Disease" ; + oboInOwl:hasHumanReadableId "Pathology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3303 . + +:topic_3314 a owl:Class ; + rdfs:label "Chemistry" ; + :created_in "1.3" ; + oboInOwl:hasBroadSynonym "Chemical science", + "Polymer science", + "VT 1.7.10 Polymer science" ; + oboInOwl:hasDbXref "VT 1.7 Chemical sciences", + "VT 1.7.2 Chemistry", + "VT 1.7.3 Colloid chemistry", + "VT 1.7.5 Electrochemistry", + "VT 1.7.6 Inorganic and nuclear chemistry", + "VT 1.7.7 Mathematical chemistry", + "VT 1.7.8 Organic chemistry", + "VT 1.7.9 Physical chemistry" ; + oboInOwl:hasDefinition "The composition and properties of matter, reactions, and the use of reactions to create new substances." ; + oboInOwl:hasHumanReadableId "Chemistry" ; + oboInOwl:hasNarrowSynonym "Inorganic chemistry", + "Mathematical chemistry", + "Nuclear chemistry", + "Organic chemistry", + "Physical chemistry" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0003 . + +:topic_3316 a owl:Class ; + rdfs:label "Computer science" ; + :created_in "1.3" ; + oboInOwl:hasDbXref "VT 1.2 Computer sciences", + "VT 1.2.99 Other" ; + oboInOwl:hasDefinition "The theory and practical use of computer systems." ; + oboInOwl:hasHumanReadableId "Computer_science" ; + oboInOwl:hasNarrowSynonym "Cloud computing", + "HPC", + "High performance computing", + "High-performance computing" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0003 . + +:topic_4019 a owl:Class ; + rdfs:label "Biosciences" ; + :created_in "1.26" ; + oboInOwl:hasDefinition "Biosciences, or life sciences, include fields of study related to life, living beings, and biomolecules." ; + oboInOwl:hasExactSynonym "Life sciences" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0003 . + +:data_0886 a owl:Class ; + rdfs:label "Structure alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alignment (superimposition) of molecular tertiary (3D) structures." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A tertiary structure alignment will include the untransformed coordinates of one macromolecule, followed by the second (or subsequent) structure(s) with all the coordinates transformed (by rotation / translation) to give a superposition." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0081 ], + :data_1916 . + +:data_0914 a owl:Class ; + rdfs:label "Codon usage data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data derived from analysis of codon usage (typically a codon usage table) of DNA sequences." ; + oboInOwl:hasExactSynonym "Codon usage report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0203 ], + :data_0006 . + +:data_0982 a owl:Class ; + rdfs:label "Molecule identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Name or other identifier of a molecule." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0976 . + +:data_1096 a owl:Class ; + rdfs:label "Sequence accession (protein)" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession number of a protein sequence database entry." ; + oboInOwl:hasExactSynonym "Protein sequence accession number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2976 ], + :data_1093 . + +:data_1234 a owl:Class ; + rdfs:label "Sequence set (nucleic acid)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Any collection of multiple nucleotide sequences and associated metadata that do not (typically) correspond to common sequence database records or database entries." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0850 . + +:data_1274 a owl:Class ; + rdfs:label "Map" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A map of (typically one) DNA sequence annotated with positional or non-positional features." ; + oboInOwl:hasExactSynonym "DNA map" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0102 ], + :data_0006 . + +:data_1501 a owl:Class ; + rdfs:label "Amino acid index" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A table of 20 numerical values which quantify a property (e.g. physicochemical or biochemical) of the common amino acids." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2016, + :data_2082 . + +:data_1537 a owl:Class ; + rdfs:label "Protein structure report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about one or more specific protein 3D structure(s) or structural domains." ; + oboInOwl:hasExactSynonym "Protein property (structural)", + "Protein report (structure)", + "Protein structural property", + "Protein structure report (domain)", + "Protein structure-derived report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0896, + :data_2085 . + +:data_1868 a owl:Class ; + rdfs:label "Taxon" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:BriefTaxonConcept", + "Moby:PotentialTaxon" ; + oboInOwl:hasDefinition "The name of a group of organisms belonging to the same taxonomic rank." ; + oboInOwl:hasExactSynonym "Taxonomic rank", + "Taxonomy rank" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "For a complete list of taxonomic ranks see https://www.phenoscape.org/wiki/Taxonomic_Rank_Vocabulary." ; + rdfs:subClassOf :data_2909 . + +:data_2535 a owl:Class ; + rdfs:label "Sequence tag profile" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Output from a serial analysis of gene expression (SAGE), massively parallel signature sequencing (MPSS) or sequencing by synthesis (SBS) experiment. In all cases this is a list of short sequence tags and the number of times it is observed." ; + oboInOwl:hasExactSynonym "Sequencing-based expression profile" ; + oboInOwl:hasNarrowSynonym "Sequence tag profile (with gene assignment)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "SAGE, MPSS and SBS experiments are usually performed to study gene expression. The sequence tags are typically subsequently annotated (after a database search) with the mRNA (and therefore gene) the tag was extracted from.", + "This includes tag to gene assignments (tag mapping) of SAGE, MPSS and SBS data. Typically this is the sequencing-based expression profile annotated with gene identifiers." ; + rdfs:subClassOf :data_0928 . + +:data_2600 a owl:Class ; + rdfs:label "Pathway or network" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Primary data about a specific biological pathway or network (the nodes and connections within the pathway or network)." ; + oboInOwl:hasExactSynonym "Network", + "Pathway" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0602 ], + :data_0006 . + +:data_2603 a owl:Class ; + rdfs:label "Expression data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Image, hybridisation or some other data arising from a study of feature/molecule expression, typically profiling or quantification." ; + oboInOwl:hasNarrowSynonym "Gene expression data", + "Gene product profile", + "Gene product quantification data", + "Gene transcription profile", + "Gene transcription quantification data", + "Metabolite expression data", + "Microarray data", + "Non-coding RNA profile", + "Non-coding RNA quantification data", + "Protein expression data", + "RNA profile", + "RNA quantification data", + "RNA-seq data", + "Transcriptome profile", + "Transcriptome quantification data", + "mRNA profile", + "mRNA quantification data" ; + oboInOwl:hasRelatedSynonym "Protein profile", + "Protein quantification data", + "Proteome profile", + "Proteome quantification data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0203 ], + :data_0006 . + +:data_2895 a owl:Class ; + rdfs:label "Drug accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of a drug." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0993 . + +:data_2901 a owl:Class ; + rdfs:label "Molecule accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of a specific molecule (catalogued in a database)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0982 . + +:data_2970 a owl:Class ; + rdfs:label "Protein hydropathy data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A report on protein properties concerning hydropathy." ; + oboInOwl:hasExactSynonym "Protein hydropathy report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0897 . + +:data_3106 a owl:Class ; + rdfs:label "System metadata" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Metadata concerning the software, hardware or other aspects of a computer system." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2337 . + +:format_2030 a owl:Class ; + rdfs:label "Chemical data format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a report on a chemical compound." ; + oboInOwl:hasExactSynonym "Chemical compound annotation format", + "Chemical structure format", + "Small molecule report format", + "Small molecule structure format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0962 ], + :format_2350 . + +:format_2561 a owl:Class ; + rdfs:label "Sequence assembly format (text)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Text format for sequence assembly data." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2055 . + +:format_3464 a owl:Class ; + rdfs:label "JSON" ; + :created_in "1.7" ; + :file_extension "json" ; + :media_type ; + oboInOwl:hasDbXref , + ; + oboInOwl:hasDefinition "JavaScript Object Notation format; a lightweight, text-based format to represent tree-structured data using key-value pairs." ; + oboInOwl:hasExactSynonym "JavaScript Object Notation" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_1915, + :format_3750 . + +:format_3867 a owl:Class ; + rdfs:label "Trajectory format (binary)" ; + :created_in "1.22" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Binary file format to store trajectory information for a 3D structure ." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_3866 . + +:operation_0236 a owl:Class ; + rdfs:label "Sequence composition calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Calculate character or word composition or frequency of a molecular sequence." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0157 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1261 ], + :operation_2403, + :operation_3438 . + +:operation_0267 a owl:Class ; + rdfs:label "Protein secondary structure prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict secondary structure of protein sequences." ; + oboInOwl:hasExactSynonym "Secondary structure prediction (protein)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods might use amino acid composition, local sequence information, multiple sequence alignments, physicochemical features, estimated energy content, statistical algorithms, hidden Markov models, support vector machines, kernel machines, neural networks etc." ; + rdfs:subClassOf :operation_2416, + :operation_2423, + :operation_2479, + :operation_3092 . + +:operation_0323 a owl:Class ; + rdfs:label "Phylogenetic inference" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Construct a phylogenetic tree." ; + oboInOwl:hasExactSynonym "Phlyogenetic tree construction", + "Phylogenetic reconstruction", + "Phylogenetic tree generation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Phylogenetic trees are usually constructed from a set of sequences from which an alignment (or data matrix) is calculated." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0872 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0080 ], + :operation_0324, + :operation_3429 . + +:operation_0570 a owl:Class ; + rdfs:label "Structure visualisation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Visualise or render molecular 3D structure, for example a high-quality static picture or animation." ; + oboInOwl:hasExactSynonym "Structure rendering" ; + oboInOwl:hasNarrowSynonym "Protein secondary structure visualisation", + "RNA secondary structure visualisation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes visualisation of protein secondary structure such as knots, pseudoknots etc. as well as tertiary and quaternary structure." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1710 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0883 ], + :operation_0337, + :operation_2480 . + +:operation_2481 a owl:Class ; + rdfs:label "Nucleic acid structure analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse nucleic acid tertiary structural data." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0097 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_1459 ], + :operation_2480 . + +:operation_2575 a owl:Class ; + rdfs:label "Binding site prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify or predict catalytic residues, active sites or other ligand-binding sites in protein sequences or structures." ; + oboInOwl:hasExactSynonym "Protein binding site detection", + "Protein binding site prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0128 ], + :operation_1777, + :operation_3092 . + +:operation_2928 a owl:Class ; + rdfs:label "Alignment" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Compare two or more entities, typically the sequence or structure (or derivatives) of macromolecules, to identify equivalent subunits." ; + oboInOwl:hasExactSynonym "Alignment construction", + "Alignment generation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf :operation_0004, + :operation_3429 . + +:operation_2997 a owl:Class ; + rdfs:label "Protein comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare two or more proteins (or some aspect) to identify similarities." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2424 . + +:operation_3204 a owl:Class ; + rdfs:label "Methylation analysis" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Analyse cytosine methylation states in nucleic acid sequences." ; + oboInOwl:hasExactSynonym "Methylation profile analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2478 . + +:operation_3635 a owl:Class ; + rdfs:label "Labeled quantification" ; + :created_in "1.12" ; + oboInOwl:hasDefinition "Quantification based on the use of chemical tags." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3630 . + +:operation_3921 a owl:Class ; + rdfs:label "Sequence read processing" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "The processing of reads from high-throughput sequencing machines." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2478 . + +:topic_0077 a owl:Class ; + rdfs:label "Nucleic acids" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The processing and analysis of nucleic acid sequence, structural and other data." ; + oboInOwl:hasExactSynonym "Nucleic acid bioinformatics", + "Nucleic acid informatics" ; + oboInOwl:hasHumanReadableId "Nucleic_acids" ; + oboInOwl:hasNarrowSynonym "Nucleic acid physicochemistry", + "Nucleic acid properties" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D017422", + "http://purl.bioontology.org/ontology/MSH/D017423" ; + rdfs:subClassOf :topic_3307 . + +:topic_0089 a owl:Class ; + rdfs:label "Ontology and terminology" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The conceptualisation, categorisation and nomenclature (naming) of entities or phenomena within biology or bioinformatics. This includes formal ontologies, controlled vocabularies, structured glossary, symbols and terminology or other related resource." ; + oboInOwl:hasHumanReadableId "Ontology_and_terminology" ; + oboInOwl:hasNarrowSynonym "Applied ontology", + "Ontologies", + "Ontology", + "Ontology relations", + "Terminology", + "Upper ontology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D002965" ; + rdfs:subClassOf :topic_0605 . + +:topic_0130 a owl:Class ; + rdfs:label "Protein folding, stability and design" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Protein stability, folding (in 3D space) and protein sequence-structure-function relationships. This includes for example study of inter-atomic or inter-residue interactions in protein (3D) structures, the effect of mutation, and the design of proteins with specific properties, typically by designing changes (via site-directed mutagenesis) to an existing protein." ; + oboInOwl:hasHumanReadableId "Protein_folding_stability_and_design" ; + oboInOwl:hasNarrowSynonym "Protein design", + "Protein folding", + "Protein residue interactions", + "Protein stability", + "Rational protein design" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_2814 . + +:topic_0199 a owl:Class ; + rdfs:label "Genetic variation" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Stable, naturally occurring mutations in a nucleotide sequence including alleles, naturally occurring mutations such as single base nucleotide substitutions, deletions and insertions, RFLPs and other polymorphisms." ; + oboInOwl:hasExactSynonym "DNA variation" ; + oboInOwl:hasHumanReadableId "Genetic_variation" ; + oboInOwl:hasNarrowSynonym "Genomic variation", + "Mutation", + "Polymorphism", + "Somatic mutations" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D014644" ; + rdfs:subClassOf :topic_0622, + :topic_3321 . + +:topic_0605 a owl:Class ; + rdfs:label "Informatics" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.3 Information sciences", + "VT 1.3.3 Information retrieval", + "VT 1.3.4 Information management", + "VT 1.3.5 Knowledge management", + "VT 1.3.99 Other" ; + oboInOwl:hasDefinition "The study and practice of information processing and use of computer information systems." ; + oboInOwl:hasExactSynonym "Information management", + "Information science", + "Knowledge management" ; + oboInOwl:hasHumanReadableId "Informatics" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0003 . + +:topic_0654 a owl:Class ; + rdfs:label "DNA" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "DNA sequences and structure, including processes such as methylation and replication." ; + oboInOwl:hasExactSynonym "DNA analysis" ; + oboInOwl:hasHumanReadableId "DNA" ; + oboInOwl:hasNarrowSynonym "Ancient DNA", + "Chromosomes" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "The DNA sequences might be coding or non-coding sequences." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0077 . + +:topic_0659 a owl:Class ; + rdfs:label "Functional, regulatory and non-coding RNA" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Non-coding or functional RNA sequences, including regulatory RNA sequences, ribosomal RNA (rRNA) and transfer RNA (tRNA)." ; + oboInOwl:hasHumanReadableId "Functional_regulatory_and_non-coding_RNA" ; + oboInOwl:hasNarrowSynonym "Functional RNA", + "Long ncRNA", + "Long non-coding RNA", + "Non-coding RNA", + "Regulatory RNA", + "Small and long non-coding RNAs", + "Small interfering RNA", + "Small ncRNA", + "Small non-coding RNA", + "Small nuclear RNA", + "Small nucleolar RNA", + "lncRNA", + "miRNA", + "microRNA", + "ncRNA", + "piRNA", + "piwi-interacting RNA", + "siRNA", + "snRNA", + "snoRNA" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "Non-coding RNA includes piwi-interacting RNA (piRNA), small nuclear RNA (snRNA) and small nucleolar RNA (snoRNA). Regulatory RNA includes microRNA (miRNA) - short single stranded RNA molecules that regulate gene expression, and small interfering RNA (siRNA)." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0099, + :topic_0114 . + +:topic_0804 a owl:Class ; + rdfs:label "Immunology" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.1.3 Immunology" ; + oboInOwl:hasDefinition "The application of information technology to immunology such as immunological processes, immunological genes, proteins and peptide ligands, antigens and so on." ; + oboInOwl:hasHumanReadableId "Immunology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D007120", + "http://purl.bioontology.org/ontology/MSH/D007125" ; + rdfs:subClassOf :topic_3344 . + +:topic_3068 a owl:Class ; + rdfs:label "Literature and language" ; + :created_in "beta13" ; + :isdebtag true ; + oboInOwl:hasDefinition "The scientific literature, language processing, reference information, and documentation." ; + oboInOwl:hasExactSynonym "Language", + "Literature" ; + oboInOwl:hasHumanReadableId "Literature_and_language" ; + oboInOwl:hasNarrowSynonym "Bibliography", + "Citations", + "Documentation", + "References", + "Scientific literature" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "This includes the documentation of resources such as tools, services and databases, user support, how to get help etc." ; + rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D011642" ; + rdfs:subClassOf :topic_0003 . + +:topic_3297 a owl:Class ; + rdfs:label "Biotechnology" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDefinition "The exploitation of biological process, structure and function for industrial purposes, for example the genetic manipulation of microorganisms for the antibody production." ; + oboInOwl:hasHumanReadableId "Biotechnology" ; + oboInOwl:hasNarrowSynonym "Applied microbiology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:data_0582 a owl:Class ; + rdfs:label "Ontology" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An ontology of biological or bioinformatics concepts and relations, a controlled vocabulary, structured glossary etc." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0089 ], + :data_2353 . + +:data_0990 a owl:Class ; + rdfs:label "Compound name" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Unique name of a chemical compound." ; + oboInOwl:hasExactSynonym "Chemical name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0984, + :data_1086 . + +:data_1097 a owl:Class ; + rdfs:label "Sequence accession (nucleic acid)" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession number of a nucleotide sequence database entry." ; + oboInOwl:hasExactSynonym "Nucleotide sequence accession number" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2977 ], + :data_1093 . + +:data_1235 a owl:Class ; + rdfs:label "Sequence cluster" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A set of sequences that have been clustered or otherwise classified as belonging to a group including (typically) sequence cluster information." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The cluster might include sequences identifiers, short descriptions, alignment and summary information." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0623 ], + :data_0850 . + +:data_1354 a owl:Class ; + rdfs:label "Sequence profile" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Some type of statistical model representing a (typically multiple) sequence alignment." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:seeAlso "http://semanticscience.org/resource/SIO_010531" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + :data_0860 . + +:data_1355 a owl:Class ; + rdfs:label "Protein signature" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An informative report about a specific or conserved protein sequence pattern." ; + oboInOwl:hasNarrowSynonym "InterPro entry", + "Protein domain signature", + "Protein family signature", + "Protein region signature", + "Protein repeat signature", + "Protein site signature" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2762 . + +:data_2085 a owl:Class ; + rdfs:label "Structure report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about one or more molecular tertiary (3D) structures. It might include annotation on the structure, a computer-generated report of analysis of structural data, and metadata (data about primary data) or any other free (essentially unformatted) text, as distinct from the primary data itself." ; + oboInOwl:hasExactSynonym "Structure-derived report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2048 . + +:data_2526 a owl:Class ; + rdfs:label "Text data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning, extracted from, or derived from the analysis of a scientific text (or texts) such as a full text article from a scientific journal." ; + oboInOwl:hasNarrowSynonym "Article data", + "Scientific text data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation. It includes concepts that are best described as scientific text or closely concerned with or derived from text." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3068 ], + :data_0006 . + +:data_2530 a owl:Class ; + rdfs:label "Organism report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about a specific organism." ; + oboInOwl:hasExactSynonym "Organism annotation" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2048 . + +:format_2066 a owl:Class ; + rdfs:label "Database hits (sequence) format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a report on sequence hits and associated data from searching a sequence database." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0857 ], + :format_2350 . + +:format_2552 a owl:Class ; + rdfs:label "Sequence record format (XML)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data format for a molecular sequence record (XML)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1919 . + +:format_2556 a owl:Class ; + rdfs:label "Phylogenetic tree format (text)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Text format for a phylogenetic tree." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2006 . + +:operation_0258 a owl:Class ; + rdfs:label "Sequence alignment analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse a molecular sequence alignment." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0863 ], + :operation_2403 . + +:operation_0438 a owl:Class ; + rdfs:label "Transcriptional regulatory element prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Identify or predict transcriptional regulatory motifs, patterns, elements or regions in DNA sequences." ; + oboInOwl:hasExactSynonym "Regulatory element prediction", + "Transcription regulatory element prediction" ; + oboInOwl:hasNarrowSynonym "Conserved transcription regulatory sequence identification", + "Translational regulatory element prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes comparative genomics approaches that identify common, conserved (homologous) or synonymous transcriptional regulatory elements. For example cross-species comparison of transcription factor binding sites (TFBS). Methods might analyse co-regulated or co-expressed genes, or sets of oppositely expressed genes.", + "This includes promoters, enhancers, silencers and boundary elements / insulators, regulatory protein or transcription factor binding sites etc. Methods might be specific to a particular genome and use motifs, word-based / grammatical methods, position-specific frequency matrices, discriminative pattern analysis etc." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0749 ], + :operation_2454 . + +:operation_0571 a owl:Class ; + rdfs:label "Expression data visualisation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Visualise microarray or other expression data." ; + oboInOwl:hasExactSynonym "Expression data rendering" ; + oboInOwl:hasNarrowSynonym "Gene expression data visualisation", + "Microarray data rendering" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_3117 ], + :operation_0337, + :operation_2495 . + +:operation_2238 a owl:Class ; + rdfs:label "Statistical calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Perform a statistical data operation of some type, e.g. calibration or validation." ; + oboInOwl:hasExactSynonym "Significance testing", + "Statistical analysis", + "Statistical test", + "Statistical testing" ; + oboInOwl:hasNarrowSynonym "Expectation maximisation", + "Gibbs sampling", + "Hypothesis testing", + "Omnibus test" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3438 . + +:operation_2428 a owl:Class ; + rdfs:label "Validation" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Validate some data." ; + oboInOwl:hasNarrowSynonym "Quality control" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0004 . + +:operation_2574 a owl:Class ; + rdfs:label "Protein hydropathy calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse the hydrophobic, hydrophilic or charge properties of a protein (from analysis of sequence or structural information)." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0123 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2970 ], + :operation_0250 . + +:operation_2949 a owl:Class ; + rdfs:label "Protein-protein interaction analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse the interactions of proteins with other proteins." ; + oboInOwl:hasExactSynonym "Protein interaction analysis" ; + oboInOwl:hasNarrowSynonym "Protein interaction raw data analysis", + "Protein interaction simulation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Includes analysis of raw experimental protein-protein interaction data from for example yeast two-hybrid analysis, protein microarrays, immunoaffinity chromatography followed by mass spectrometry, phage display etc." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0128 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0906 ], + :operation_1777 . + +:operation_2950 a owl:Class ; + rdfs:label "Residue distance calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF: HETGroupNames", + "WHATIF:HasMetalContacts", + "WHATIF:HasMetalContactsPlus", + "WHATIF:HasNegativeIonContacts", + "WHATIF:HasNegativeIonContactsPlus", + "WHATIF:HasNucleicContacts", + "WHATIF:ShowDrugContacts", + "WHATIF:ShowDrugContactsShort", + "WHATIF:ShowLigandContacts", + "WHATIF:ShowProteiNucleicContacts" ; + oboInOwl:hasDefinition "Calculate contacts between residues, or between residues and other groups, in a protein structure, on the basis of distance calculations." ; + oboInOwl:hasNarrowSynonym "HET group detection", + "Residue contact calculation (residue-ligand)", + "Residue contact calculation (residue-metal)", + "Residue contact calculation (residue-negative ion)", + "Residue contact calculation (residue-nucleic acid)", + "WHATIF:SymmetryContact" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes identifying HET groups, which usually correspond to ligands, lipids, but might also (not consistently) include groups that are attached to amino acids. Each HET group is supposed to have a unique three letter code and a unique name which might be given in the output. It can also include calculation of symmetry contacts, i.e. a contact between two atoms in different asymmetric unit." ; + rdfs:subClassOf :operation_0248 . + +:operation_3438 a owl:Class ; + rdfs:label "Calculation" ; + :created_in "1.6" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Mathematical determination of the value of something, typically a properly of a molecule." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0004 . + +:operation_3918 a owl:Class ; + rdfs:label "Genome analysis" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Study of genomic feature structure, variation, function and evolution at a genomic scale." ; + oboInOwl:hasExactSynonym "Genomic analysis" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0622 ], + :operation_2478 . + +:operation_3928 a owl:Class ; + rdfs:label "Pathway analysis" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Generate, process or analyse a biological pathway." ; + oboInOwl:hasExactSynonym "Biological pathway analysis" ; + oboInOwl:hasNarrowSynonym "Biological pathway modelling", + "Biological pathway prediction", + "Functional pathway analysis", + "Pathway comparison", + "Pathway modelling", + "Pathway prediction", + "Pathway simulation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2259 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0602 ], + :operation_2945 . + +:topic_0154 a owl:Class ; + rdfs:label "Small molecules" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Small molecules of biological significance, typically archival, curation, processing and analysis of structural information." ; + oboInOwl:hasHumanReadableId "Small_molecules" ; + oboInOwl:hasNarrowSynonym "Amino acids", + "Chemical structures", + "Drug structures", + "Drug targets", + "Drugs and target structures", + "Metabolite structures", + "Peptides", + "Peptides and amino acids", + "Target structures", + "Targets", + "Toxins", + "Toxins and targets" ; + oboInOwl:hasRelatedSynonym "CHEBI:23367" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "Small molecules include organic molecules, metal-organic compounds, small polypeptides, small polysaccharides and oligonucleotides. Structural data is usually included.", + "This concept excludes macromolecules such as proteins and nucleic acids.", + "This includes the structures of drugs, drug target, their interactions and binding affinities. Also the structures of reactants or products of metabolism, for example small molecules such as including vitamins, polyols, nucleotides and amino acids. Also the physicochemical, biochemical or structural properties of amino acids or peptides. Also structural and associated data for toxic chemical substances." ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_0081 . + +:topic_0623 a owl:Class ; + rdfs:label "Gene and protein families" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Particular gene(s), gene family or other gene group or system and their encoded proteins.Primarily the classification of proteins (from sequence or structural data) into clusters, groups, families etc., curation of a particular protein or protein family, or any other proteins that have been classified as members of a common group." ; + oboInOwl:hasExactSynonym "Genes, gene family or system" ; + oboInOwl:hasHumanReadableId "Gene_and protein_families" ; + oboInOwl:hasNarrowSynonym "Gene families", + "Gene family", + "Gene system", + "Protein families", + "Protein sequence classification" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "A protein families database might include the classifier (e.g. a sequence profile) used to build the classification." ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_0078, + :topic_3321 . + +:topic_2229 a owl:Class ; + rdfs:label "Cell biology" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.11 Cell biology" ; + oboInOwl:hasDefinition "Cells, such as key genes and proteins involved in the cell cycle." ; + oboInOwl:hasHumanReadableId "Cell_biology" ; + oboInOwl:hasNarrowSynonym "Cells", + "Cellular processes", + "Protein subcellular localization" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:topic_3053 a owl:Class ; + rdfs:label "Genetics" ; + :created_in "beta13" ; + :isdebtag true ; + oboInOwl:hasDefinition "The study of genes, genetic variation and heredity in living organisms." ; + oboInOwl:hasHumanReadableId "Genetics" ; + oboInOwl:hasNarrowSynonym "Genes", + "Heredity" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D005823" ; + rdfs:subClassOf :topic_3070 . + +:topic_3391 a owl:Class ; + rdfs:label "Omics" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDefinition "The collective characterisation and quantification of pools of biological molecules that translate into the structure, function, and dynamics of an organism or organisms." ; + oboInOwl:hasHumanReadableId "Omics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_4019 . + +:topic_3512 a owl:Class ; + rdfs:label "Gene transcripts" ; + :created_in "1.8" ; + oboInOwl:hasDefinition "Transcription of DNA into RNA and features of a messenger RNA (mRNA) molecules including precursor RNA, primary (unprocessed) transcript and fully processed molecules." ; + oboInOwl:hasHumanReadableId "Gene_transcripts" ; + oboInOwl:hasNarrowSynonym "Coding RNA", + "EST", + "Exons", + "Fusion transcripts", + "Gene transcript features", + "Introns", + "PolyA signal", + "PolyA site", + "Signal peptide coding sequence", + "Transit peptide coding sequence", + "cDNA", + "mRNA", + "mRNA features" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes 5'untranslated region (5'UTR), coding sequences (CDS), exons, intervening sequences (intron) and 3'untranslated regions (3'UTR).", + "This includes Introns, and protein-coding regions including coding sequences (CDS), exons, translation initiation sites and open reading frames. Also expressed sequence tag (EST) or complementary DNA (cDNA) sequences.", + "This includes coding sequences for a signal or transit peptide. A signal peptide coding sequence encodes an N-terminal domain of a secreted protein, which is involved in attaching the polypeptide to a membrane leader sequence. A transit peptide coding sequence encodes an N-terminal domain of a nuclear-encoded organellar protein; which is involved in import of the protein into the organelle.", + "This includes regions or sites in a eukaryotic and eukaryotic viral RNA sequence which directs endonuclease cleavage or polyadenylation of an RNA transcript. A polyA signal is required for endonuclease cleavage of an RNA transcript that is followed by polyadenylation. A polyA site is a site on an RNA transcript to which adenine residues will be added during post-transcriptional polyadenylation." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0099, + :topic_0114 . + +oboInOwl:SubsetProperty a owl:AnnotationProperty . + +oboInOwl:isCyclic a owl:AnnotationProperty . + +:data_0867 a owl:Class ; + rdfs:label "Sequence alignment report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An informative report of molecular sequence alignment-derived data or metadata." ; + oboInOwl:hasExactSynonym "Sequence alignment metadata" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "Use this for any computer-generated reports on sequence alignments, and for general information (metadata) on a sequence alignment, such as a description, sequence identifiers and alignment score." ; + rdfs:subClassOf :data_2048 . + +:data_0872 a owl:Class ; + rdfs:label "Phylogenetic tree" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:Tree", + "Moby:myTree", + "Moby:phylogenetic_tree" ; + oboInOwl:hasDefinition "The raw data (not just an image) from which a phylogenetic tree is directly generated or plotted, such as topology, lengths (in time or in expected amounts of variance) and a confidence interval for each length." ; + oboInOwl:hasExactSynonym "Phylogeny" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A phylogenetic tree is usually constructed from a set of sequences from which an alignment (or data matrix) is calculated. See also 'Phylogenetic tree image'." ; + rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D010802", + "http://www.evolutionaryontology.org/cdao.owl#Tree" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0084 ], + :data_2523 . + +:data_0950 a owl:Class ; + rdfs:label "Mathematical model" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A biological model represented in mathematical terms." ; + oboInOwl:hasExactSynonym "Biological model" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3307 ], + :data_0006 . + +:data_1074 a owl:Class ; + rdfs:label "Protein interaction ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasBroadSynonym "Molecular interaction ID" ; + oboInOwl:hasDefinition "Identifier of a report of protein interactions from a protein interaction database (typically)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0906 ], + :data_0976 . + +:data_1481 a owl:Class ; + rdfs:label "Protein structure alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alignment (superimposition) of protein tertiary (3D) structures." ; + oboInOwl:hasExactSynonym "Structure alignment (protein)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0886 . + +:data_1583 a owl:Class ; + rdfs:label "Nucleic acid melting profile" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data on the dissociation characteristics of a double-stranded nucleic acid molecule (DNA or a DNA/RNA hybrid) during heating." ; + oboInOwl:hasExactSynonym "Nucleic acid stability profile" ; + oboInOwl:hasNarrowSynonym "Melting map", + "Nucleic acid melting curve" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A melting (stability) profile calculated the free energy required to unwind and separate the nucleic acid strands, plotted for sliding windows over a sequence.", + "Nucleic acid melting curve: a melting curve of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Shows the proportion of nucleic acid which are double-stranded versus temperature.", + "Nucleic acid probability profile: a probability profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Shows the probability of a base pair not being melted (i.e. remaining as double-stranded DNA) at a specified temperature", + "Nucleic acid stitch profile: stitch profile of hybridised or double stranded nucleic acid (DNA or RNA/DNA). A stitch profile diagram shows partly melted DNA conformations (with probabilities) at a range of temperatures. For example, a stitch profile might show possible loop openings with their location, size, probability and fluctuations at a given temperature.", + "Nucleic acid temperature profile: a temperature profile of a double-stranded nucleic acid molecule (DNA or DNA/RNA). Plots melting temperature versus base position." ; + rdfs:subClassOf :data_2985 . + +:data_1916 a owl:Class ; + rdfs:label "Alignment" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An alignment of molecular sequences, structures or profiles derived from them." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:data_2084 a owl:Class ; + rdfs:label "Nucleic acid report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about one or more specific nucleic acid molecules." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2048 . + +:data_2087 a owl:Class ; + rdfs:label "Molecular property" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A report on the physical (e.g. structural) or chemical properties of molecules, or parts of a molecule." ; + oboInOwl:hasExactSynonym "Physicochemical property" ; + oboInOwl:hasRelatedSynonym "SO:0000400" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:data_2969 a owl:Class ; + rdfs:label "Sequence image" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Image of a molecular sequence, possibly with sequence features or properties shown." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2955, + :data_2968 . + +:data_2977 a owl:Class ; + rdfs:label "Nucleic acid sequence" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "One or more nucleic acid sequences, possibly with associated annotation." ; + oboInOwl:hasExactSynonym "Nucleic acid sequences", + "Nucleotide sequence", + "Nucleotide sequences" ; + oboInOwl:hasNarrowSynonym "DNA sequence" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:seeAlso "http://purl.org/biotop/biotop.owl#NucleotideSequenceInformation" ; + rdfs:subClassOf :data_2044 . + +:format_1921 a owl:Class ; + rdfs:label "Alignment format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for molecular sequence alignment information." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0863 ], + :format_2350 . + +:format_2032 a owl:Class ; + rdfs:label "Workflow format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a workflow." ; + oboInOwl:hasExactSynonym "Programming language", + "Script format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2350 . + +:format_2376 a owl:Class ; + rdfs:label "RDF format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A serialisation format conforming to the Resource Description Framework (RDF) model." ; + oboInOwl:hasExactSynonym "Resource Description Framework format" ; + oboInOwl:hasRelatedSynonym "RDF", + "Resource Description Framework" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso ; + rdfs:subClassOf :format_1915, + :format_2195, + :format_3748 . + +:format_3167 a owl:Class ; + rdfs:label "Experiment annotation format" ; + :created_in "1.0" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for annotation on a laboratory experiment." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2531 ], + :format_2350 . + +:operation_0231 a owl:Class ; + rdfs:label "Sequence editing" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Edit or change a molecular sequence, either randomly or specifically." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2403, + :operation_3096 . + +:operation_3197 a owl:Class ; + rdfs:label "Genetic variation analysis" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Analyse a genetic variation, for example to annotate its location, alleles, classification, and effects on individual transcripts predicted for a gene model." ; + oboInOwl:hasExactSynonym "Genetic variation annotation", + "Sequence variation analysis", + "Variant analysis" ; + oboInOwl:hasNarrowSynonym "Transcript variant analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Genetic variation annotation provides contextual interpretation of coding SNP consequences in transcripts. It allows comparisons to be made between variation data in different populations or strains for the same transcript." ; + rdfs:subClassOf :operation_2945 . + +:operation_3214 a owl:Class ; + rdfs:label "Spectral analysis" ; + :created_in "1.1" ; + oboInOwl:hasDefinition "Analyse one or more spectra from mass spectrometry (or other) experiments." ; + oboInOwl:hasExactSynonym "Mass spectrum analysis", + "Spectrum analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + :operation_2945 . + +:topic_0157 a owl:Class ; + rdfs:label "Sequence composition, complexity and repeats" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The archival, processing and analysis of the basic character composition of molecular sequences, for example character or word frequency, ambiguity, complexity, particularly regions of low complexity, and repeats or the repetitive nature of molecular sequences." ; + oboInOwl:hasHumanReadableId "Sequence_composition_complexity_and_repeats" ; + oboInOwl:hasNarrowSynonym "Low complexity sequences", + "Nucleic acid repeats", + "Protein repeats", + "Protein sequence repeats", + "Repeat sequences", + "Sequence complexity", + "Sequence composition", + "Sequence repeats" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes repetitive elements within a nucleic acid sequence, e.g. long terminal repeats (LTRs); sequences (typically retroviral) directly repeated at both ends of a sequence and other types of repeating unit.", + "This includes short repetitive subsequences (repeat sequences) in a protein sequence." ; + rdfs:subClassOf :topic_0080 . + +:topic_1775 a owl:Class ; + rdfs:label "Function analysis" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The study of gene and protein function including the prediction of functional properties of a protein." ; + oboInOwl:hasExactSynonym "Functional analysis" ; + oboInOwl:hasHumanReadableId "Function_analysis" ; + oboInOwl:hasNarrowSynonym "Protein function analysis", + "Protein function prediction" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_3307 . + +:topic_3376 a owl:Class ; + rdfs:label "Medicines research and development" ; + :created_in "1.4" ; + oboInOwl:hasBroadSynonym "Health care research", + "Health care science" ; + oboInOwl:hasDefinition "The discovery, development and approval of medicines." ; + oboInOwl:hasExactSynonym "Drug discovery and development" ; + oboInOwl:hasHumanReadableId "Medicines_research_and_development" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_3344 . + +:data_1772 a owl:Class ; + rdfs:label "Score" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A numerical value, that is some type of scored value arising for example from a prediction method." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:format_1475 a owl:Class ; + rdfs:label "PDB database entry format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of an entry (or part of an entry) from the PDB database." ; + oboInOwl:hasExactSynonym "PDB entry format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3870 ], + [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0883 ], + :format_2033 . + +:format_2033 a owl:Class ; + rdfs:label "Tertiary structure format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for a molecular tertiary structure." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_2350 . + +:format_2200 a owl:Class ; + rdfs:label "FASTA-like (text)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A text format resembling FASTA format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This concept may also be used for the many non-standard FASTA-like formats." ; + rdfs:seeAlso "http://filext.com/file-extension/FASTA" ; + rdfs:subClassOf :format_2330, + :format_2546 . + +:operation_0286 a owl:Class ; + rdfs:label "Codon usage analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse codon usage in molecular sequences or process codon usage data (e.g. a codon usage table)." ; + oboInOwl:hasExactSynonym "Codon usage data analysis", + "Codon usage table analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1597 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0914 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0203 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2977 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_1597 ], + :operation_2478 . + +:operation_0310 a owl:Class ; + rdfs:label "Sequence assembly" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Combine (align and merge) overlapping fragments of a DNA sequence to reconstruct the original sequence." ; + oboInOwl:hasNarrowSynonym "Metagenomic assembly", + "Sequence assembly editing" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "For example, assemble overlapping reads from paired-end sequencers into contigs (a contiguous sequence corresponding to read overlaps). Or assemble contigs, for example ESTs and genomic DNA fragments, depending on the detected fragment overlaps." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0925 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0196 ], + :operation_2478 . + +:operation_0324 a owl:Class ; + rdfs:label "Phylogenetic analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse an existing phylogenetic tree or trees, typically to detect features or make predictions." ; + oboInOwl:hasExactSynonym "Phylogenetic tree analysis" ; + oboInOwl:hasNarrowSynonym "Phylogenetic modelling" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Phylgenetic modelling is the modelling of trait evolution and prediction of trait values using phylogeny as a basis." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0084 ], + :operation_2945 . + +:operation_0564 a owl:Class ; + rdfs:label "Sequence visualisation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Visualise, format or render a molecular sequence or sequences such as a sequence alignment, possibly with sequence features or properties shown." ; + oboInOwl:hasExactSynonym "Sequence rendering" ; + oboInOwl:hasNarrowSynonym "Sequence alignment visualisation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2969 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2044 ], + :operation_0337, + :operation_2403 . + +:operation_1777 a owl:Class ; + rdfs:label "Protein function prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict the biological or biochemical role of a protein, or other aspects of a protein function." ; + oboInOwl:hasExactSynonym "Protein function analysis", + "Protein functional analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "For functional properties that can be mapped to a sequence, use 'Sequence feature detection (protein)' instead." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_1775 ], + :operation_2423, + :operation_2945 . + +:operation_2479 a owl:Class ; + rdfs:label "Protein sequence analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse a protein sequence (using methods that are only applicable to protein sequences)." ; + oboInOwl:hasExactSynonym "Sequence analysis (protein)" ; + oboInOwl:hasNarrowSynonym "Protein sequence alignment analysis", + "Sequence alignment analysis (protein)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0078 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2976 ], + :operation_2403 . + +:topic_0082 a owl:Class ; + rdfs:label "Structure prediction" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The prediction of molecular structure, including the prediction, modelling, recognition or design of protein secondary or tertiary structure or other structural features, and the folding of nucleic acid molecules and the prediction or design of nucleic acid (typically RNA) sequences with specific conformations." ; + oboInOwl:hasHumanReadableId "Structure_prediction" ; + oboInOwl:hasNarrowSynonym "DNA structure prediction", + "Nucleic acid design", + "Nucleic acid folding", + "Nucleic acid structure prediction", + "Protein fold recognition", + "Protein structure prediction", + "RNA structure prediction" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes the recognition (prediction and assignment) of known protein structural domains or folds in protein sequence(s), for example by threading, or the alignment of molecular sequences to structures, structural (3D) profiles or templates (representing a structure or structure alignment)." ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_0081 . + +:topic_3344 a owl:Class ; + rdfs:label "Biomedical science" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.3 Health sciences" ; + oboInOwl:hasDefinition "Topic concerning biological science that is (typically) performed in the context of medicine." ; + oboInOwl:hasExactSynonym "Biomedical sciences", + "Health science" ; + oboInOwl:hasHumanReadableId "Biomedical_science" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_4019 . + +:data_0916 a owl:Class ; + rdfs:label "Gene report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby:GeneInfo", + "Moby:gene", + "Moby_namespace:Human_Readable_Description" ; + oboInOwl:hasDefinition "A report on predicted or actual gene structure, regions which make an RNA product and features such as promoters, coding regions, splice sites etc." ; + oboInOwl:hasExactSynonym "Gene and transcript structure (report)", + "Gene annotation", + "Gene features report", + "Gene function (report)", + "Gene structure (repot)", + "Nucleic acid features (gene and transcript structure)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This includes any report on a particular locus or gene. This might include the gene name, description, summary and so on. It can include details about the function of a gene, such as its encoded protein or a functional classification of the gene sequence along according to the encoded protein(s)." ; + rdfs:subClassOf :data_2084 . + +:data_0962 a owl:Class ; + rdfs:label "Small molecule report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about a specific chemical compound." ; + oboInOwl:hasExactSynonym "Chemical compound annotation", + "Chemical structure report", + "Small molecule annotation" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0154 ], + :data_2085 . + +:data_1086 a owl:Class ; + rdfs:label "Compound identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Identifier of an entry from a database of chemicals." ; + oboInOwl:hasExactSynonym "Chemical compound identifier", + "Compound ID", + "Small molecule identifier" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0962 ], + :data_0982 . + +:data_2523 a owl:Class ; + rdfs:label "Phylogenetic data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning phylogeny, typically of molecular sequences, including reports of information concerning or derived from a phylogenetic tree, or from comparing two or more phylogenetic trees." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf :data_0006 . + +:data_2884 a owl:Class ; + rdfs:label "Plot" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Biological data that has been plotted as a graph of some type, or plotting instructions for rendering such a graph." ; + oboInOwl:hasExactSynonym "Graph data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:data_2894 a owl:Class ; + rdfs:label "Compound accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of an entry from a database of chemicals." ; + oboInOwl:hasExactSynonym "Chemical compound accession", + "Small molecule accession" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1086, + :data_2901 . + +:data_2984 a owl:Class ; + rdfs:label "Pathway or network report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An informative report concerning or derived from the analysis of a biological pathway or network, such as a map (diagram) or annotation." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0602 ], + :data_2048 . + +:operation_0230 a owl:Class ; + rdfs:label "Sequence generation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Generate a molecular sequence by some means." ; + oboInOwl:hasNarrowSynonym "Sequence generation (nucleic acid)", + "Sequence generation (protein)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_2403, + :operation_3429 . + +:operation_0387 a owl:Class ; + rdfs:label "Molecular surface calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "WHATIF:AtomAccessibilityMolecular", + "WHATIF:AtomAccessibilityMolecularPlus", + "WHATIF:ResidueAccessibilityMolecular", + "WHATIF:ResidueAccessibilitySolvent", + "WHATIF:ResidueAccessibilityVacuum", + "WHATIF:ResidueAccessibilityVacuumMolecular", + "WHATIF:TotAccessibilityMolecular", + "WHATIF:TotAccessibilitySolvent" ; + oboInOwl:hasDefinition "Calculate the molecular surface area in proteins and other macromolecules." ; + oboInOwl:hasNarrowSynonym "Protein atom surface calculation", + "Protein residue surface calculation", + "Protein surface and interior calculation", + "Protein surface calculation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_3351 . + +:operation_3927 a owl:Class ; + rdfs:label "Network analysis" ; + :created_in "1.24" ; + oboInOwl:hasDefinition "Generate, process or analyse a biological network." ; + oboInOwl:hasExactSynonym "Biological network analysis" ; + oboInOwl:hasNarrowSynonym "Biological network modelling", + "Biological network prediction", + "Network comparison", + "Network modelling", + "Network prediction", + "Network simulation", + "Network topology simulation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0602 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2259 ], + :operation_2945 . + +oboInOwl:hasRelatedSynonym a owl:AnnotationProperty . + +:data_0858 a owl:Class ; + rdfs:label "Sequence signature matches" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Report on the location of matches (\"hits\") between sequences, sequence profiles, motifs (conserved or functional patterns) and other types of sequence signatures." ; + oboInOwl:hasNarrowSynonym "Profile-profile alignment", + "Protein secondary database search results", + "Search results (protein secondary database)", + "Sequence motif hits", + "Sequence motif matches", + "Sequence profile alignment", + "Sequence profile hits", + "Sequence profile matches", + "Sequence-profile alignment" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "A \"profile-profile alignment\" is an alignment of two sequence profiles, each profile typically representing a sequence alignment.", + "A \"sequence-profile alignment\" is an alignment of one or more molecular sequence(s) to one or more sequence profile(s) (each profile typically representing a sequence alignment).", + "This includes reports of hits from a search of a protein secondary or domain database. Data associated with the search or alignment might also be included, e.g. ranked list of best-scoring sequences, a graphical representation of scores etc." ; + rdfs:subClassOf :data_0860, + :data_1916 . + +:data_0966 a owl:Class ; + rdfs:label "Ontology term" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A term (name) from an ontology." ; + oboInOwl:hasExactSynonym "Ontology class name", + "Ontology terms" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0967 . + +:data_1261 a owl:Class ; + rdfs:label "Sequence composition report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A report (typically a table) on character or word composition / frequency of a molecular sequence(s)." ; + oboInOwl:hasExactSynonym "Sequence composition", + "Sequence property (composition)" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_1254 . + +:format_1919 a owl:Class ; + rdfs:label "Sequence record format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for a molecular sequence record." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0849 ], + :format_2350 . + +:format_2057 a owl:Class ; + rdfs:label "Sequence trace format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format for sequence trace data (i.e. including base call information)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_0924 ], + :format_1919 . + +:format_2920 a owl:Class ; + rdfs:label "Alignment format (pair only)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data format for molecular sequence alignment information that can hold sequence alignment(s) of only 2 sequences." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1381 ], + :format_1921 . + +:operation_2426 a owl:Class ; + rdfs:label "Modelling and simulation" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Model or simulate some biological entity or system, typically using mathematical techniques including dynamical systems, statistical models, differential equations, and game theoretic models." ; + oboInOwl:hasNarrowSynonym "Mathematical modelling" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2275 ], + :operation_0004 . + +:operation_2454 a owl:Class ; + rdfs:label "Gene prediction" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Detect, predict and identify genes or components of genes in DNA sequences, including promoters, coding regions, splice sites, etc." ; + oboInOwl:hasExactSynonym "Gene calling", + "Gene finding" ; + oboInOwl:hasNarrowSynonym "Whole gene prediction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Includes methods that predict whole gene structure using a combination of multiple methods to achieve better predictions.", + "Methods for gene prediction might be ab initio, based on phylogenetic comparisons, use motifs, sequence features, support vector machine, alignment etc." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0916 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0114 ], + :operation_2478 . + +:topic_0078 a owl:Class ; + rdfs:label "Proteins" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Archival, processing and analysis of protein data, typically molecular sequence and structural data." ; + oboInOwl:hasExactSynonym "Protein bioinformatics", + "Protein informatics" ; + oboInOwl:hasHumanReadableId "Proteins" ; + oboInOwl:hasNarrowSynonym "Protein databases" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D020539" ; + rdfs:subClassOf :topic_3307 . + +:topic_0084 a owl:Class ; + rdfs:label "Phylogeny" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The study of evolutionary relationships amongst organisms." ; + oboInOwl:hasHumanReadableId "Phylogeny" ; + oboInOwl:hasNarrowSynonym "Phylogenetic clocks", + "Phylogenetic dating", + "Phylogenetic simulation", + "Phylogenetic stratigraphy", + "Phylogeny reconstruction" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "This includes diverse phylogenetic methods, including phylogenetic tree construction, typically from molecular sequence or morphological data, methods that simulate DNA sequence evolution, a phylogenetic tree or the underlying data, or which estimate or use molecular clock and stratigraphic (age) data, methods for studying gene evolution etc." ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D010802" ; + rdfs:subClassOf :topic_3299, + :topic_3307 . + +:topic_2814 a owl:Class ; + rdfs:label "Protein structure analysis" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasAlternativeId "http://edamontology.org/topic_3040" ; + oboInOwl:hasDefinition "Protein secondary or tertiary structural data and/or associated annotation." ; + oboInOwl:hasExactSynonym "Protein structure" ; + oboInOwl:hasHumanReadableId "Protein_structure_analysis" ; + oboInOwl:hasNarrowSynonym "Protein tertiary structure" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0078, + :topic_0081 . + +:topic_3071 a owl:Class ; + rdfs:label "Data management" ; + :created_in "beta13" ; + :isdebtag true ; + :related_term "Data stewardship" ; + oboInOwl:hasDbXref "VT 1.3.1 Data management" ; + oboInOwl:hasDefinition "Data management comprises the practices and principles of taking care of data, other than analysing them. This includes for example taking care of the associated metadata, formatting, storage, archiving, or access." ; + oboInOwl:hasNarrowSynonym "Metadata management" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + , + "http://purl.bioontology.org/ontology/MSH/D000079803" ; + rdfs:subClassOf :topic_0003 . + +:topic_3168 a owl:Class ; + rdfs:label "Sequencing" ; + :created_in "1.1" ; + :isdebtag true ; + oboInOwl:hasDefinition "The determination of complete (typically nucleotide) sequences, including those of genomes (full genome sequencing, de novo sequencing and resequencing), amplicons and transcriptomes." ; + oboInOwl:hasExactSynonym "DNA-Seq" ; + oboInOwl:hasHumanReadableId "Sequencing" ; + oboInOwl:hasNarrowSynonym "Chromosome walking", + "Clone verification", + "DNase-Seq", + "High throughput sequencing", + "High-throughput sequencing", + "NGS", + "NGS data analysis", + "Next gen sequencing", + "Next generation sequencing", + "Panels", + "Primer walking", + "Sanger sequencing", + "Targeted next-generation sequencing panels" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D059014" ; + rdfs:subClassOf :topic_3361 . + +:topic_3307 a owl:Class ; + rdfs:label "Computational biology" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.12 Computational biology", + "VT 1.5.19 Mathematical biology", + "VT 1.5.26 Theoretical biology" ; + oboInOwl:hasDefinition "The development and application of theory, analytical methods, mathematical models and computational simulation of biological systems." ; + oboInOwl:hasHumanReadableId "Computational_biology" ; + oboInOwl:hasNarrowSynonym "Biomathematics", + "Mathematical biology", + "Theoretical biology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "This includes the modeling and treatment of biological processes and systems in mathematical terms (theoretical biology)." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_4019 . + +:topic_3361 a owl:Class ; + rdfs:label "Laboratory techniques" ; + :created_in "1.4" ; + oboInOwl:hasDefinition "The procedures used to conduct an experiment." ; + oboInOwl:hasExactSynonym "Experimental techniques", + "Lab method", + "Lab techniques", + "Laboratory method" ; + oboInOwl:hasHumanReadableId "Laboratory_techniques" ; + oboInOwl:hasNarrowSynonym "Experiments", + "Laboratory experiments" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0003 . + +:data_0849 a owl:Class ; + rdfs:label "Sequence record" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "SO:2000061" ; + oboInOwl:hasDefinition "A molecular sequence and associated metadata." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D058977" ; + rdfs:subClassOf :data_2044 . + +:data_0896 a owl:Class ; + rdfs:label "Protein report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An informative human-readable report about one or more specific protein molecules or protein structural domains, derived from analysis of primary (sequence or structural) data." ; + oboInOwl:hasExactSynonym "Gene product annotation" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2048 . + +:data_0943 a owl:Class ; + rdfs:label "Mass spectrum" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Spectra from mass spectrometry." ; + oboInOwl:hasExactSynonym "Mass spectrometry spectra" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0121 ], + :data_2536 . + +:data_0957 a owl:Class ; + rdfs:label "Database metadata" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Basic information on bioinformatics database(s) or other data sources such as name, type, description, URL etc." ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2337 . + +:topic_0097 a owl:Class ; + rdfs:label "Nucleic acid structure analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "The archival, curation, processing and analysis of nucleic acid structural information, such as whole structures, structural features and alignments, and associated annotation." ; + oboInOwl:hasExactSynonym "Nucleic acid structure" ; + oboInOwl:hasHumanReadableId "Nucleic_acid_structure_analysis" ; + oboInOwl:hasNarrowSynonym "DNA melting", + "DNA structure", + "Nucleic acid denaturation", + "Nucleic acid thermodynamics", + "RNA alignment", + "RNA structure", + "RNA structure alignment" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "Includes secondary and tertiary nucleic acid structural data, nucleic acid thermodynamic, thermal and conformational properties including DNA or DNA/RNA denaturation (melting) etc." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0077, + :topic_0081 . + +:topic_0114 a owl:Class ; + rdfs:label "Gene structure" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Gene structure, regions which make an RNA product and features such as promoters, coding regions, gene fusion, splice sites etc." ; + oboInOwl:hasExactSynonym "Gene features" ; + oboInOwl:hasHumanReadableId "Gene_structure" ; + oboInOwl:hasNarrowSynonym "Fusion genes" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes operons (operators, promoters and genes) from a bacterial genome. For example the operon leader and trailer gene, gene composition of the operon and associated information.", + "This includes the study of promoters, coding regions etc." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3321 . + +:data_0850 a owl:Class ; + rdfs:label "Sequence set" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A collection of one or typically multiple molecular sequences (which can include derived data or metadata) that do not (typically) correspond to molecular sequence database records or entries and which (typically) are derived from some analytical method." ; + oboInOwl:hasNarrowSynonym "Alignment reference" ; + oboInOwl:hasRelatedSynonym "SO:0001260" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "An example is an alignment reference; one or a set of reference molecular sequences, structures, or profiles used for alignment of genomic, transcriptomic, or proteomic experimental data.", + "This concept may be used for arbitrary sequence sets and associated data arising from processing." ; + rdfs:subClassOf :data_0006 . + +:data_1087 a owl:Class ; + rdfs:label "Ontology concept ID" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A unique (typically numerical) identifier of a concept in an ontology of biological or bioinformatics concepts and relations." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_3025 . + +:data_1460 a owl:Class ; + rdfs:label "Protein structure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for a protein tertiary (3D) structure, or part of a structure, possibly in complex with other molecules." ; + oboInOwl:hasExactSynonym "Protein structures" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2814 ], + :data_0883 . + +:data_2044 a owl:Class ; + rdfs:label "Sequence" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "One or more molecular sequences, possibly with associated annotation." ; + oboInOwl:hasExactSynonym "Sequences" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This concept is a placeholder of concepts for primary sequence data including raw sequences and sequence records. It should not normally be used for derivatives such as sequence alignments, motifs or profiles." ; + rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D008969", + "http://purl.org/biotop/biotop.owl#BioMolecularSequenceInformation" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0080 ], + :data_0006 . + +:data_2910 a owl:Class ; + rdfs:label "Protein family accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of a protein family (that is deposited in a database)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1075 . + +:data_3108 a owl:Class ; + rdfs:label "Experimental measurement" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Raw data such as measurements or other results from laboratory experiments, as generated from laboratory hardware." ; + oboInOwl:hasExactSynonym "Experimental measurement data", + "Experimentally measured data", + "Measured data", + "Measurement", + "Measurement data" ; + oboInOwl:hasNarrowSynonym "Measurement metadata", + "Raw experimental data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. It is primarily intended to help navigation of EDAM and would not typically be used for annotation." ; + rdfs:subClassOf :data_0006 . + +:format_1915 a owl:Class ; + rdfs:label "Format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A defined way or layout of representing and structuring data in a computer file, blob, string, message, or elsewhere." ; + oboInOwl:hasExactSynonym "Data format", + "Data model", + "Exchange format", + "File format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "The main focus in EDAM lies on formats as means of structuring data exchanged between different tools or resources. The serialisation, compression, or encoding of concrete data formats/models is not in scope of EDAM. Format 'is format of' Data." ; + rdfs:seeAlso , + ; + owl:disjointWith :operation_0004, + :topic_0003, + owl:DeprecatedClass ; + skos:broadMatch oboLegacy:BFO_0000002, + , + dc:format, + , + , + ; + skos:relatedMatch oboLegacy:BFO_0000019, + oboLegacy:IAO_0000098, + , + , + , + . + +:format_1920 a owl:Class ; + rdfs:label "Sequence feature annotation format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for molecular sequence feature information." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_1255 ], + :format_2350 . + +:operation_0295 a owl:Class ; + rdfs:label "Structure alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Align (superimpose) molecular tertiary structures." ; + oboInOwl:hasExactSynonym "Structural alignment" ; + oboInOwl:hasNarrowSynonym "3D profile alignment", + "3D profile-to-3D profile alignment", + "Structural profile alignment" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Includes methods that align structural (3D) profiles or templates (representing structures or structure alignments) - including methods that perform one-to-one, one-to-many or many-to-many comparisons." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0886 ], + :operation_2480, + :operation_2483, + :operation_2928 . + +:operation_2406 a owl:Class ; + rdfs:label "Protein structure analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse protein structural data." ; + oboInOwl:hasExactSynonym "Structure analysis (protein)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_2814 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_1460 ], + :operation_2480 . + +:operation_2424 a owl:Class ; + rdfs:label "Comparison" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Compare two or more things to identify similarities." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0004 . + +:operation_2451 a owl:Class ; + rdfs:label "Sequence comparison" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Compare two or more molecular sequences." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2955 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2044 ], + :operation_2403, + :operation_2424 . + +:topic_0602 a owl:Class ; + rdfs:label "Molecular interactions, pathways and networks" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasAlternativeId "http://edamontology.org/topic_3076" ; + oboInOwl:hasDefinition "Molecular interactions, biological pathways, networks and other models." ; + oboInOwl:hasHumanReadableId "Molecular_interactions_pathways_and_networks" ; + oboInOwl:hasNarrowSynonym "Biological models", + "Biological networks", + "Biological pathways", + "Cellular process pathways", + "Disease pathways", + "Environmental information processing pathways", + "Gene regulatory networks", + "Genetic information processing pathways", + "Interactions", + "Interactome", + "Metabolic pathways", + "Molecular interactions", + "Networks", + "Pathways", + "Signal transduction pathways", + "Signaling pathways" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + ; + rdfs:subClassOf :topic_3307 . + +:topic_3382 a owl:Class ; + rdfs:label "Imaging" ; + :created_in "1.4" ; + :isdebtag true ; + oboInOwl:hasDefinition "The visual representation of an object." ; + oboInOwl:hasHumanReadableId "Imaging" ; + oboInOwl:hasNarrowSynonym "Diffraction experiment", + "Microscopy", + "Microscopy imaging", + "Optical super resolution microscopy", + "Photonic force microscopy", + "Photonic microscopy" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "This includes diffraction experiments that are based upon the interference of waves, typically electromagnetic waves such as X-rays or visible light, by some object being studied, typical in order to produce an image of the object or determine its structure." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3361 . + +:data_2337 a owl:Class ; + rdfs:label "Resource metadata" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning or describing some core computational resource, as distinct from primary data. This includes metadata on the origin, source, history, ownership or location of some thing." ; + oboInOwl:hasExactSynonym "Provenance metadata" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf :data_2048 . + +:data_2968 a owl:Class ; + rdfs:label "Image" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data (typically biological or biomedical) that has been rendered into an image, typically for display on screen." ; + oboInOwl:hasExactSynonym "Image data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:seeAlso "http://semanticscience.org/resource/SIO_000079", + "http://semanticscience.org/resource/SIO_000081" ; + rdfs:subClassOf :data_0006 . + +:format_2058 a owl:Class ; + rdfs:label "Gene expression report format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a file of gene expression data, e.g. a gene expression matrix or profile." ; + oboInOwl:hasExactSynonym "Gene expression data format" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2603 ], + :format_2350 . + +:format_2571 a owl:Class ; + rdfs:label "Raw sequence format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format of a raw molecular sequence (i.e. the alphabet used)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "http://www.onto-med.de/ontologies/gfo.owl#Symbol_sequence" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2044 ], + :format_2350 . + +:format_2919 a owl:Class ; + rdfs:label "Sequence annotation track format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Format of a sequence annotation track." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_3002 ], + :format_1920 . + +:operation_0415 a owl:Class ; + rdfs:label "Nucleic acid feature detection" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Predict, recognise and identify features in nucleotide sequences such as functional sites or regions, typically by scanning for known motifs, patterns and regular expressions." ; + oboInOwl:hasExactSynonym "Sequence feature detection (nucleic acid)" ; + oboInOwl:hasNarrowSynonym "Nucleic acid feature prediction", + "Nucleic acid feature recognition", + "Nucleic acid site detection", + "Nucleic acid site prediction", + "Nucleic acid site recognition" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Methods typically involve scanning for known motifs, patterns and regular expressions.", + "This is placeholder but does not comprehensively include all child concepts - please inspect other concepts under \"Nucleic acid sequence analysis\" for example \"Gene prediction\", for other feature detection operations." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1276 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + :operation_2423, + :operation_2478 . + +:operation_2409 a owl:Class ; + rdfs:label "Data handling" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Basic (non-analytical) operations of some data, either a file or equivalent entity in memory, such that the same basic type of data is consumed as input and generated as output." ; + oboInOwl:hasExactSynonym "File handling", + "File processing", + "Report handling", + "Utility operation" ; + oboInOwl:hasNarrowSynonym "Processing" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_3489 ], + :operation_0004 . + +:topic_0622 a owl:Class ; + rdfs:label "Genomics" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Whole genomes of one or more organisms, or genomes in general, such as meta-information on genomes, genome projects, gene names etc." ; + oboInOwl:hasHumanReadableId "Genomics" ; + oboInOwl:hasNarrowSynonym "Exomes", + "Genome annotation", + "Genomes", + "Personal genomics", + "Synthetic genomics", + "Viral genomics", + "Whole genomes" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D023281" ; + rdfs:subClassOf :topic_3391 . + +:topic_1317 a owl:Class ; + rdfs:label "Structural biology" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5.24 Structural biology" ; + oboInOwl:hasDefinition "The molecular structure of biological molecules, particularly macromolecules such as proteins and nucleic acids." ; + oboInOwl:hasHumanReadableId "Structural_biology" ; + oboInOwl:hasNarrowSynonym "Structural assignment", + "Structural determination", + "Structure determination" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "This includes experimental methods for biomolecular structure determination, such as X-ray crystallography, nuclear magnetic resonance (NMR), circular dichroism (CD) spectroscopy, microscopy etc., including the assignment or modelling of molecular structure from such data." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:data_2365 a owl:Class ; + rdfs:label "Pathway or network accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A persistent, unique identifier of a biological pathway or network (typically a database entry)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1082 . + +:format_2013 a owl:Class ; + rdfs:label "Biological pathway or network format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Data format for a biological pathway or network." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2600 ], + :format_2350 . + +:operation_3429 a owl:Class ; + rdfs:label "Generation" ; + :created_in "1.6" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Construct some data entity." ; + oboInOwl:hasExactSynonym "Construction" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "For non-analytical operations, see the 'Processing' branch." ; + rdfs:subClassOf :operation_0004 . + +:data_0863 a owl:Class ; + rdfs:label "Sequence alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Alignment of multiple molecular sequences." ; + oboInOwl:hasExactSynonym "Multiple sequence alignment", + "msa" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D016415", + "http://semanticscience.org/resource/SIO_010066" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0080 ], + :data_1916 . + +:data_1255 a owl:Class ; + rdfs:label "Sequence features" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Annotation of positional features of molecular sequence(s), i.e. that can be mapped to position(s) in the sequence." ; + oboInOwl:hasExactSynonym "Feature record", + "Features", + "General sequence features", + "Sequence features report" ; + oboInOwl:hasRelatedSynonym "SO:0000110" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This includes annotation of positional sequence features, organised into a standard feature table, or any other report of sequence features. General feature reports are a source of sequence feature table information although internal conversion would be required." ; + rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D058977" ; + rdfs:subClassOf :data_0006 . + +:data_1893 a owl:Class ; + rdfs:label "Locus ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A unique name or other identifier of a genetic locus, typically conforming to a scheme that names loci (such as predicted genes) depending on their position in a molecular sequence, for example a completely sequenced genome or chromosome." ; + oboInOwl:hasExactSynonym "Locus identifier", + "Locus name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_2012 ], + :data_0976 . + +:data_2082 a owl:Class ; + rdfs:label "Matrix" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An array of numerical values." ; + oboInOwl:hasExactSynonym "Array" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types." ; + rdfs:subClassOf :data_0006 . + +:operation_0250 a owl:Class ; + rdfs:label "Protein property calculation" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Extract, calculate or predict non-positional (physical or chemical) properties of a protein, including any non-positional properties of the molecular sequence, from processing a protein sequence or 3D structure." ; + oboInOwl:hasExactSynonym "Protein property rendering" ; + oboInOwl:hasNarrowSynonym "Protein property calculation (from sequence)", + "Protein property calculation (from structure)", + "Protein structural property calculation", + "Structural property calculation" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes methods to render and visualise the properties of a protein sequence, and a residue-level search for properties such as solvent accessibility, hydropathy, secondary structure, ligand-binding etc." ; + rdfs:subClassOf :operation_2423, + :operation_3438 . + +:operation_0292 a owl:Class ; + rdfs:label "Sequence alignment" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Align (identify equivalent sites within) molecular sequences." ; + oboInOwl:hasExactSynonym "Sequence alignment construction", + "Sequence alignment generation" ; + oboInOwl:hasNarrowSynonym "Consensus-based sequence alignment", + "Constrained sequence alignment", + "Multiple sequence alignment (constrained)", + "Sequence alignment (constrained)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Includes methods that align sequence profiles (representing sequence alignments): ethods might perform one-to-one, one-to-many or many-to-many comparisons. See also 'Sequence alignment comparison'.", + "See also \"Read mapping\"" ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_0863 ], + :operation_2403, + :operation_2451, + :operation_2928 . + +:operation_3092 a owl:Class ; + rdfs:label "Protein feature detection" ; + :created_in "beta13" ; + oboInOwl:hasDefinition "Predict, recognise and identify positional features in proteins from analysing protein sequences or structures." ; + oboInOwl:hasExactSynonym "Protein feature prediction", + "Protein feature recognition" ; + oboInOwl:hasNarrowSynonym "Protein secondary database search", + "Protein site detection", + "Protein site prediction", + "Protein site recognition", + "Sequence feature detection (protein)", + "Sequence profile database search" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Features includes functional sites or regions, secondary structure, structural domains and so on. Methods might use fingerprints, motifs, profiles, hidden Markov models, sequence alignment etc to provide a mapping of a query protein sequence to a discriminatory element. This includes methods that search a secondary protein database (Prosite, Blocks, ProDom, Prints, Pfam etc.) to assign a protein sequence(s) to a known protein family or group." ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0078 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0160 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_1277 ], + :operation_2423, + :operation_2479 . + +:topic_0621 a owl:Class ; + rdfs:label "Model organisms" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "A specific organism, or group of organisms, used to study a particular aspect of biology." ; + oboInOwl:hasExactSynonym "Organisms" ; + oboInOwl:hasHumanReadableId "Model_organisms" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "This may include information on the genome (including molecular sequences and map, genes and annotation), proteome, as well as more general information about an organism." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_3070 . + +:data_0883 a owl:Class ; + rdfs:label "Structure" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "3D coordinate and associated data for a macromolecular tertiary (3D) structure or part of a structure." ; + oboInOwl:hasExactSynonym "Coordinate model", + "Structure data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "The coordinate data may be predicted or real." ; + rdfs:seeAlso "http://purl.bioontology.org/ontology/MSH/D015394" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0081 ], + :data_0006 . + +:data_2109 a owl:Class ; + rdfs:label "Identifier (hybrid)" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier that is re-used for data objects of fundamentally different types (typically served from a single database)." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "This branch provides an alternative organisation of the concepts nested under 'Accession' and 'Name'. All concepts under here are already included under 'Accession' or 'Name'." ; + rdfs:subClassOf :data_0842 . + +:topic_0121 a owl:Class ; + rdfs:label "Proteomics" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Protein and peptide identification, especially in the study of whole proteomes of organisms." ; + oboInOwl:hasHumanReadableId "Proteomics" ; + oboInOwl:hasNarrowSynonym "Bottom-up proteomics", + "Discovery proteomics", + "MS-based targeted proteomics", + "MS-based untargeted proteomics", + "Metaproteomics", + "Peptide identification", + "Protein and peptide identification", + "Quantitative proteomics", + "Targeted proteomics", + "Top-down proteomics" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "Includes metaproteomics: proteomics analysis of an environmental sample.", + "Proteomics includes any methods (especially high-throughput) that separate, characterize and identify expressed proteins such as mass spectrometry, two-dimensional gel electrophoresis and protein microarrays, as well as in-silico methods that perform proteolytic or mass calculations on a protein sequence and other analyses of protein production data, for example in different cells or tissues." ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D040901" ; + rdfs:subClassOf :topic_3391 . + +:topic_0203 a owl:Class ; + rdfs:label "Gene expression" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasAlternativeId "http://edamontology.org/topic_0197" ; + oboInOwl:hasDefinition "The analysis of levels and patterns of synthesis of gene products (proteins and functional RNA) including interpretation in functional terms of gene expression data." ; + oboInOwl:hasExactSynonym "Expression" ; + oboInOwl:hasHumanReadableId "Gene_expression" ; + oboInOwl:hasNarrowSynonym "Codon usage", + "DNA chips", + "DNA microarrays", + "Gene expression profiling", + "Gene transcription", + "Gene translation", + "Transcription" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "Gene expression levels are analysed by identifying, quantifying or comparing mRNA transcripts, for example using microarrays, RNA-seq, northern blots, gene-indexed expression profiles etc.", + "This includes the study of codon usage in nucleotide sequence(s), genetic codes and so on." ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D015870" ; + rdfs:subClassOf :topic_3321 . + +:operation_2480 a owl:Class ; + rdfs:label "Structure analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse known molecular tertiary structures." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0081 ], + :operation_2945 . + +:operation_2945 a owl:Class ; + rdfs:label "Analysis" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Apply analytical methods to existing data of a specific type." ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This excludes non-analytical methods that read and write the same basic type of data (for that, see 'Data handling')." ; + rdfs:subClassOf :operation_0004 . + +:topic_0003 a owl:Class ; + rdfs:label "Topic" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A category denoting a rather broad domain or field of interest, of study, application, work, data, or technology. Topics have no clearly defined borders between each other." ; + oboInOwl:hasRelatedSynonym "sumo:FieldOfStudy" ; + oboInOwl:inSubset :bio, + :topics ; + owl:disjointWith owl:DeprecatedClass ; + skos:broadMatch , + oboLegacy:BFO_0000002, + , + ; + skos:closeMatch ; + skos:relatedMatch oboLegacy:BFO_0000019, + , + . + +:data_1026 a owl:Class ; + rdfs:label "Gene symbol" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDbXref "Moby_namespace:Global_GeneCommonName", + "Moby_namespace:Global_GeneSymbol" ; + oboInOwl:hasDefinition "The short name of a gene; a single word that does not contain white space characters. It is typically derived from the gene name." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2299 . + +:data_2531 a owl:Class ; + rdfs:label "Protocol" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information about about how a scientific experiment or analysis was carried out that results in a specific set of data or results used for further analysis or to test a specific hypothesis." ; + oboInOwl:hasExactSynonym "Experiment annotation", + "Experiment metadata", + "Experiment report" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_2048 . + +:data_2534 a owl:Class ; + rdfs:label "Sequence attribute" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An attribute of a molecular sequence, possibly in reference to some other sequence." ; + oboInOwl:hasNarrowSynonym "Sequence parameter" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf :data_0006 . + +:data_2907 a owl:Class ; + rdfs:label "Protein accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Accession of a protein deposited in a database." ; + oboInOwl:hasExactSynonym "Protein accessions" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_0989, + :data_2901 . + +:topic_0128 a owl:Class ; + rdfs:label "Protein interactions" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "Protein-protein, protein-DNA/RNA and protein-ligand interactions, including analysis of known interactions and prediction of putative interactions." ; + oboInOwl:hasHumanReadableId "Protein_interactions" ; + oboInOwl:hasNarrowSynonym "Protein interaction map", + "Protein interaction networks", + "Protein interactome", + "Protein-DNA interaction", + "Protein-DNA interactions", + "Protein-RNA interaction", + "Protein-RNA interactions", + "Protein-ligand interactions", + "Protein-nucleic acid interactions", + "Protein-protein interactions" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:comment "This includes experimental (e.g. yeast two-hybrid) and computational analysis techniques." ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_0078, + :topic_0602 . + +:data_0906 a owl:Class ; + rdfs:label "Protein interaction data" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data concerning the interactions (predicted or known) within or between a protein, structural domain or part of a protein. This includes intra- and inter-residue contacts and distances, as well as interactions with other proteins and non-protein entities such as nucleic acid, metal atoms, water, ions etc." ; + oboInOwl:hasExactSynonym "Protein interaction record", + "Protein interaction report", + "Protein report (interaction)", + "Protein-protein interaction data" ; + oboInOwl:hasNarrowSynonym "Atom interaction data", + "Protein non-covalent interactions report", + "Residue interaction data" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0128 ], + :data_0897 . + +:topic_0081 a owl:Class ; + rdfs:label "Structure analysis" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The curation, processing, analysis and prediction of data about the structure of biological molecules, typically proteins and nucleic acids and other macromolecules." ; + oboInOwl:hasExactSynonym "Biomolecular structure", + "Structural bioinformatics" ; + oboInOwl:hasHumanReadableId "Structure_analysis" ; + oboInOwl:hasNarrowSynonym "Computational structural biology", + "Molecular structure", + "Structure data resources", + "Structure databases", + "Structures" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:comment "This includes related concepts such as structural properties, alignments and structural motifs." ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D015394" ; + rdfs:subClassOf :topic_3307 . + +:operation_0337 a owl:Class ; + rdfs:label "Visualisation" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Visualise, plot or render (graphically) biomolecular data such as molecular sequences or structures." ; + oboInOwl:hasExactSynonym "Data visualisation", + "Rendering" ; + oboInOwl:hasNarrowSynonym "Molecular visualisation", + "Plotting" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "This includes methods to render and visualise molecules." ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2968 ], + [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0092 ], + [ a owl:Restriction ; + owl:onProperty :has_output ; + owl:someValuesFrom :data_2968 ], + :operation_0004 . + +:operation_2495 a owl:Class ; + rdfs:label "Expression analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Process (read and/or write) expression data from experiments measuring molecules (e.g. omics data), including analysis of one or more expression profiles, typically to interpret them in functional terms." ; + oboInOwl:hasExactSynonym "Expression data analysis" ; + oboInOwl:hasNarrowSynonym "Gene expression analysis", + "Gene expression data analysis", + "Gene expression regulation analysis", + "Metagenomic inference", + "Microarray data analysis", + "Protein expression analysis" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Metagenomic inference is the profiling of phylogenetic marker genes in order to predict metagenome function." ; + rdfs:seeAlso , + ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0203 ], + :operation_2945 . + +:topic_3070 a owl:Class ; + rdfs:label "Biology" ; + :created_in "beta13" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 1.5 Biological sciences", + "VT 1.5.1 Aerobiology", + "VT 1.5.13 Cryobiology", + "VT 1.5.23 Reproductive biology", + "VT 1.5.3 Behavioural biology", + "VT 1.5.7 Biological rhythm", + "VT 1.5.8 Biology", + "VT 1.5.99 Other" ; + oboInOwl:hasDefinition "The study of life and living organisms, including their morphology, biochemistry, physiology, development, evolution, and so on." ; + oboInOwl:hasExactSynonym "Biological science" ; + oboInOwl:hasHumanReadableId "Biology" ; + oboInOwl:hasNarrowSynonym "Aerobiology", + "Behavioural biology", + "Biological rhythms", + "Chronobiology", + "Cryobiology", + "Reproductive biology" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_4019 . + +:data_1276 a owl:Class ; + rdfs:label "Nucleic acid features" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An informative report on intrinsic positional features of a nucleotide sequence, formatted to be machine-readable." ; + oboInOwl:hasExactSynonym "Feature table (nucleic acid)", + "Nucleic acid feature table" ; + oboInOwl:hasNarrowSynonym "Genome features", + "Genomic features" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This includes nucleotide sequence feature annotation in any known sequence feature table format and any other report of nucleic acid features." ; + rdfs:subClassOf :data_1255 . + +:operation_2403 a owl:Class ; + rdfs:label "Sequence analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse one or more known molecular sequences." ; + oboInOwl:hasExactSynonym "Sequence analysis (general)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:seeAlso ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0080 ], + :operation_2945 . + +:data_0897 a owl:Class ; + rdfs:label "Protein property" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A report of primarily non-positional data describing intrinsic physical, chemical or other properties of a protein molecule or model." ; + oboInOwl:hasExactSynonym "Protein physicochemical property", + "Protein properties" ; + oboInOwl:hasNarrowSynonym "Protein sequence statistics" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This is a broad data type and is used a placeholder for other, more specific types. Data may be based on analysis of nucleic acid sequence or structural data, for example reports on the surface properties (shape, hydropathy, electrostatic patches etc) of a protein structure, protein flexibility or motion, and protein architecture (spatial arrangement of secondary structure)." ; + rdfs:subClassOf :data_2087 . + +:data_0907 a owl:Class ; + rdfs:label "Protein family report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasBroadSynonym "Protein classification data" ; + oboInOwl:hasDefinition "An informative report on a specific protein family or other classification or group of protein sequences or structures." ; + oboInOwl:hasExactSynonym "Protein family annotation" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0623 ], + :data_0896 . + +:data_1277 a owl:Class ; + rdfs:label "Protein features" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "An informative report on intrinsic positional features of a protein sequence." ; + oboInOwl:hasExactSynonym "Feature table (protein)", + "Protein feature table" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "This includes protein sequence feature annotation in any known sequence feature table format and any other report of protein features." ; + rdfs:subClassOf :data_0896, + :data_1255 . + +:operation_2478 a owl:Class ; + rdfs:label "Nucleic acid sequence analysis" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Analyse a nucleic acid sequence (using methods that are only applicable to nucleic acid sequences)." ; + oboInOwl:hasExactSynonym "Sequence analysis (nucleic acid)" ; + oboInOwl:hasNarrowSynonym "Nucleic acid sequence alignment analysis", + "Sequence alignment analysis (nucleic acid)" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_topic ; + owl:someValuesFrom :topic_0077 ], + [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_2977 ], + :operation_2403 . + +:topic_0160 a owl:Class ; + rdfs:label "Sequence sites, features and motifs" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The archival, detection, prediction and analysis of positional features such as functional and other key sites, in molecular sequences and the conserved patterns (motifs, profiles etc.) that may be used to describe them." ; + oboInOwl:hasHumanReadableId "Sequence_sites_features_and_motifs" ; + oboInOwl:hasNarrowSynonym "Functional sites", + "HMMs", + "Sequence features", + "Sequence motifs", + "Sequence profiles", + "Sequence sites" ; + oboInOwl:inSubset :bio, + :topics ; + rdfs:subClassOf :topic_3307 . + +:format_2554 a owl:Class ; + rdfs:label "Alignment format (text)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Text format for molecular sequence alignment information." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1921 . + +:operation_2423 a owl:Class ; + rdfs:label "Prediction and recognition" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Predict, recognise, detect or identify some properties of a biomolecule." ; + oboInOwl:hasNarrowSynonym "Detection", + "Prediction", + "Recognition" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf :operation_0004 . + +:topic_0080 a owl:Class ; + rdfs:label "Sequence analysis" ; + :created_in "beta12orEarlier" ; + :isdebtag true ; + oboInOwl:hasDefinition "The archival, processing and analysis of molecular sequences (monomer composition of polymers) including molecular sequence data resources, sequence sites, alignments, motifs and profiles." ; + oboInOwl:hasHumanReadableId "Sequence_analysis" ; + oboInOwl:hasNarrowSynonym "Biological sequences", + "Sequence databases" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso , + "http://purl.bioontology.org/ontology/MSH/D017421" ; + rdfs:subClassOf :topic_3307 . + +:data_0842 a owl:Class ; + rdfs:label "Identifier" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A text token, number or something else which identifies an entity, but which may not be persistent (stable) or unique (the same identifier may identify multiple things)." ; + oboInOwl:hasExactSynonym "ID" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_identifier_of ; + owl:someValuesFrom :data_0006 ], + :data_0006 ; + owl:disjointWith :data_2048 ; + skos:exactMatch , + ; + skos:narrowMatch dc:identifier . + +:format_2551 a owl:Class ; + rdfs:label "Sequence record format (text)" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Data format for a molecular sequence record (text)." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf :format_1919 . + +:format_3245 a owl:Class ; + rdfs:label "Mass spectrometry data format" ; + :created_in "1.2" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format for mass pectra and derived data, include peptide sequences etc." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2536 ], + :format_2350 . + +:data_2295 a owl:Class ; + rdfs:label "Gene ID" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A unique (and typically persistent) identifier of a gene in a database, that is (typically) different to the gene name/symbol." ; + oboInOwl:hasExactSynonym "Gene accession", + "Gene code" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_1025, + :data_1893 . + +:data_2610 a owl:Class ; + rdfs:label "Ensembl ID" ; + :created_in "beta12orEarlier" ; + :regex "ENS[A-Z]*[FPTG][0-9]{11}" ; + oboInOwl:hasDefinition "Identifier of an entry (exon, gene, transcript or protein) from the Ensembl database." ; + oboInOwl:hasExactSynonym "Ensembl IDs" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:subClassOf :data_2091, + :data_2109 . + +:format_3547 a owl:Class ; + rdfs:label "Image format" ; + :created_in "1.9" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Format used for images and image metadata." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2968 ], + :format_2350 . + +:operation_2422 a owl:Class ; + rdfs:label "Data retrieval" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Retrieve an entry (or part of an entry) from a data resource that matches a supplied query. This might include some primary data and annotation. The query is a data identifier or other indexed term. For example, retrieve a sequence record with the specified accession number, or matching supplied keywords." ; + oboInOwl:hasExactSynonym "Data extraction", + "Retrieval" ; + oboInOwl:hasNarrowSynonym "Data retrieval (metadata)", + "Metadata retrieval" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :has_input ; + owl:someValuesFrom :data_0842 ], + :operation_0224, + :operation_3908 . + +:operation_0004 a owl:Class ; + rdfs:label "Operation" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasBroadSynonym "Function" ; + oboInOwl:hasDefinition "A function that processes a set of inputs and results in a set of outputs, or associates arguments (inputs) with values (outputs)." ; + oboInOwl:hasNarrowSynonym "Computational method", + "Computational operation", + "Computational procedure", + "Computational subroutine", + "Function (programming)", + "Lambda abstraction", + "Mathematical function", + "Mathematical operation" ; + oboInOwl:hasRelatedSynonym "Computational tool", + "Process", + "sumo:Function" ; + oboInOwl:inSubset :bio, + :operations ; + rdfs:comment "Special cases are: a) An operation that consumes no input (has no input arguments). Such operation is either a constant function, or an operation depending only on the underlying state. b) An operation that may modify the underlying state but has no output. c) The singular-case operation with no input or output, that still may modify the underlying state." ; + rdfs:seeAlso , + , + ; + owl:disjointWith :topic_0003, + owl:DeprecatedClass ; + skos:broadMatch , + oboLegacy:BFO_0000002, + , + , + , + ; + skos:closeMatch , + ; + skos:exactMatch ; + skos:relatedMatch oboLegacy:BFO_0000015, + oboLegacy:BFO_0000019, + oboLegacy:BFO_0000034, + , + , + . + +:topic_3303 a owl:Class ; + rdfs:label "Medicine" ; + :created_in "1.3" ; + :isdebtag true ; + oboInOwl:hasDbXref "VT 3.1 Basic medicine", + "VT 3.2 Clinical medicine", + "VT 3.2.9 General and internal medicine" ; + oboInOwl:hasDefinition "Research in support of healing by diagnosis, treatment, and prevention of disease." ; + oboInOwl:hasExactSynonym "Biomedical research", + "Clinical medicine", + "Experimental medicine" ; + oboInOwl:hasHumanReadableId "Medicine" ; + oboInOwl:hasNarrowSynonym "General medicine", + "Internal medicine" ; + oboInOwl:inSubset :bio, + :events, + :topics ; + rdfs:seeAlso ; + rdfs:subClassOf :topic_4019 . + +:data_2099 a owl:Class ; + rdfs:label "Name" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasBroadSynonym rdfs:label ; + oboInOwl:hasDefinition "A name of a thing, which need not necessarily uniquely identify it." ; + oboInOwl:hasExactSynonym "Symbolic name" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:seeAlso "\"http://www.w3.org/2000/01/rdf-schema#label", + "http://semanticscience.org/resource/SIO_000116", + "http://usefulinc.com/ns/doap#name" ; + rdfs:subClassOf :data_0842 . + +:data_2048 a owl:Class ; + rdfs:label "Report" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "A human-readable collection of information including annotation on a biological entity or phenomena, computer-generated reports of analysis of primary data (e.g. sequence or structural), and metadata (data about primary data) or any other free (essentially unformatted) text, as distinct from the primary data itself." ; + oboInOwl:hasExactSynonym "Document", + "Record" ; + oboInOwl:inSubset :bio, + :data ; + rdfs:comment "You can use this term by default for any textual report, in case you can't find another, more specific term. Reports may be generated automatically or collated by hand and can include metadata on the origin, source, history, ownership or location of some thing." ; + rdfs:seeAlso "http://semanticscience.org/resource/SIO_000148" ; + rdfs:subClassOf :data_0006 . + +:has_input a owl:ObjectProperty ; + rdfs:label "has input" ; + oboLegacy:is_anti_symmetric "false" ; + oboLegacy:is_reflexive "false" ; + oboLegacy:is_symmetric "false" ; + oboLegacy:transitive_over "OBO_REL:is_a" ; + oboInOwl:hasDefinition "'A has_input B' defines for the subject A, that it has the object B as a necessary or actual input or input argument." ; + oboInOwl:hasRelatedSynonym "OBO_REL:has_participant" ; + oboInOwl:inSubset :properties ; + oboInOwl:isCyclic true ; + rdfs:comment "Subject A can either be concept that is or has an 'Operation' function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that has an 'Operation' function or is an 'Operation'. Object B can be any concept or entity. In EDAM, only 'has_input' is explicitly defined between EDAM concepts ('Operation' 'has_input' 'Data'). The inverse, 'is_input_of', is not explicitly defined." ; + rdfs:domain :operation_0004 ; + rdfs:range :data_0006 ; + owl:inverseOf :is_input_of ; + skos:closeMatch oboLegacy:OBI_0000293 ; + skos:exactMatch . + +:data_0976 a owl:Class ; + rdfs:label "Identifier (by type of entity)" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "An identifier that identifies a particular type of data." ; + oboInOwl:hasExactSynonym "Identifier (typed)" ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:comment "This concept exists only to assist EDAM maintenance and navigation in graphical browsers. It does not add semantic information. This branch provides an alternative organisation of the concepts nested under 'Accession' and 'Name'. All concepts under here are already included under 'Accession' or 'Name'." ; + rdfs:subClassOf :data_0842 . + +:format_2350 a owl:Class ; + rdfs:label "Format (by type of data)" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A placeholder concept for visual navigation by dividing data formats by the content of the data that is represented." ; + oboInOwl:hasExactSynonym "Format (typed)" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "This concept exists only to assist EDAM maintenance and navigation in graphical browsers. It does not add semantic information. The concept branch under 'Format (typed)' provides an alternative organisation of the concepts nested under the other top-level branches ('Binary', 'HTML', 'RDF', 'Text' and 'XML'. All concepts under here are already included under those branches." ; + rdfs:subClassOf :format_1915 . + +:format_2332 a owl:Class ; + rdfs:label "XML" ; + :created_in "beta12orEarlier" ; + :file_extension "xml" ; + :media_type ; + oboInOwl:hasDbXref , + ; + oboInOwl:hasDefinition "eXtensible Markup Language (XML) format." ; + oboInOwl:hasExactSynonym "eXtensible Markup Language" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Data in XML format can be serialised into text, or binary format." ; + rdfs:subClassOf :format_1915 ; + owl:disjointWith :format_2333 . + +:is_identifier_of a owl:ObjectProperty ; + rdfs:label "is identifier of" ; + oboLegacy:is_anti_symmetric "false" ; + oboLegacy:is_reflexive "false" ; + oboLegacy:is_symmetric "false" ; + oboLegacy:transitive_over "OBO_REL:is_a" ; + oboInOwl:hasDefinition "'A is_identifier_of B' defines for the subject A, that it is an identifier of the object B." ; + oboInOwl:inSubset :properties ; + oboInOwl:isCyclic "false" ; + rdfs:comment "Subject A can either be a concept that is an 'Identifier', or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is an 'Identifier' or is in the role of an 'Identifier'. Object B can be any concept or entity outside of an ontology. In EDAM, only 'is_identifier_of' is explicitly defined between EDAM concepts (only 'Identifier' 'is_identifier_of' 'Data'). The inverse, 'has_identifier', is not explicitly defined." ; + rdfs:domain :data_0842 ; + rdfs:range :data_0006 . + +:data_0006 a owl:Class ; + rdfs:label "Data" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Information, represented in an information artefact (data record) that is 'understandable' by dedicated computational tools that can use the data as input or produce it as output." ; + oboInOwl:hasExactSynonym "Data record" ; + oboInOwl:hasNarrowSynonym "Data set", + "Datum" ; + oboInOwl:inSubset :bio, + :data ; + owl:disjointWith :format_1915, + :operation_0004, + :topic_0003, + owl:DeprecatedClass ; + skos:broadMatch oboLegacy:BFO_0000002, + oboLegacy:IAO_0000030, + ; + skos:closeMatch , + ; + skos:exactMatch ; + skos:narrowMatch oboLegacy:IAO_0000027 ; + skos:relatedMatch . + +:format_2333 a owl:Class ; + rdfs:label "Binary format" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "Binary format." ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Only specific native binary formats are listed under 'Binary format' in EDAM. Generic binary formats - such as any data being zipped, or any XML data being serialised into the Efficient XML Interchange (EXI) format - are not modelled in EDAM. Refer to http://wsio.org/compression_004." ; + rdfs:subClassOf :format_1915 . + +:format_2331 a owl:Class ; + rdfs:label "HTML" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "HTML format." ; + oboInOwl:hasExactSynonym "Hypertext Markup Language" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:seeAlso "http://filext.com/file-extension/HTML" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :is_format_of ; + owl:someValuesFrom :data_2048 ], + :format_1915 ; + owl:disjointWith :format_2333 . + +:is_format_of a owl:ObjectProperty ; + rdfs:label "is format of" ; + oboLegacy:is_anti_symmetric "false" ; + oboLegacy:is_reflexive "false" ; + oboLegacy:is_symmetric "false" ; + oboLegacy:transitive_over "OBO_REL:is_a" ; + oboInOwl:hasDefinition "'A is_format_of B' defines for the subject A, that it is a data format of the object B." ; + oboInOwl:hasRelatedSynonym "OBO_REL:quality_of" ; + oboInOwl:inSubset :properties ; + oboInOwl:isCyclic "false" ; + rdfs:comment "Subject A can either be a concept that is a 'Format', or in unexpected cases an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that is a 'Format' or is in the role of a 'Format'. Object B can be any concept or entity outside of an ontology that is (or is in a role of) 'Data', or an input, output, input or output argument of an 'Operation'. In EDAM, only 'is_format_of' is explicitly defined between EDAM concepts ('Format' 'is_format_of' 'Data'). The inverse, 'has_format', is not explicitly defined." ; + rdfs:domain :format_1915 ; + rdfs:range :data_0006 ; + skos:broadMatch . + +:has_output a owl:ObjectProperty ; + rdfs:label "has output" ; + oboLegacy:is_anti_symmetric "false" ; + oboLegacy:is_reflexive "false" ; + oboLegacy:is_symmetric "false" ; + oboLegacy:transitive_over "OBO_REL:is_a" ; + oboInOwl:hasDefinition "'A has_output B' defines for the subject A, that it has the object B as a necessary or actual output or output argument." ; + oboInOwl:hasRelatedSynonym "OBO_REL:has_participant" ; + oboInOwl:inSubset :properties ; + oboInOwl:isCyclic true ; + rdfs:comment "Subject A can either be concept that is or has an 'Operation' function, or an entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated) that has an 'Operation' function or is an 'Operation'. Object B can be any concept or entity. In EDAM, only 'has_output' is explicitly defined between EDAM concepts ('Operation' 'has_output' 'Data'). The inverse, 'is_output_of', is not explicitly defined." ; + rdfs:domain :operation_0004 ; + rdfs:range :data_0006 ; + owl:inverseOf :is_output_of ; + skos:closeMatch oboLegacy:OBI_0000299 ; + skos:exactMatch . + +:events a owl:AnnotationProperty ; + rdfs:subPropertyOf oboInOwl:SubsetProperty . + +:has_topic a owl:ObjectProperty ; + rdfs:label "has topic" ; + oboLegacy:is_anti_symmetric "false" ; + oboLegacy:is_reflexive "false" ; + oboLegacy:is_symmetric "false" ; + oboLegacy:transitive_over "OBO_REL:is_a" ; + oboInOwl:hasDefinition "'A has_topic B' defines for the subject A, that it has the object B as its topic (A is in the scope of a topic B)." ; + oboInOwl:inSubset :properties ; + oboInOwl:isCyclic true ; + rdfs:comment "Subject A can be any concept or entity outside of an ontology (or an ontology concept in a role of an entity being semantically annotated). Object B can either be a concept that is a 'Topic', or in unexpected cases an entity outside of an ontology that is a 'Topic' or is in the role of a 'Topic'. In EDAM, only 'has_topic' is explicitly defined between EDAM concepts ('Operation' or 'Data' 'has_topic' 'Topic'). The inverse, 'is_topic_of', is not explicitly defined." ; + rdfs:domain [ a owl:Class ; + owl:unionOf ( :data_0006 :operation_0004 ) ] ; + rdfs:range :topic_0003 ; + owl:inverseOf :is_topic_of ; + skos:broadMatch oboLegacy:IAO_0000136, + oboLegacy:OBI_0000298, + ; + skos:exactMatch . + +:format_2330 a owl:Class ; + rdfs:label "Textual format" ; + :created_in "beta12orEarlier" ; + oboInOwl:hasDefinition "Textual format." ; + oboInOwl:hasExactSynonym "Plain text format", + "txt" ; + oboInOwl:inSubset :bio, + :formats ; + rdfs:comment "Data in text format can be compressed into binary format, or can be a value of an XML element or attribute. Markup formats are not considered textual (or more precisely, not plain-textual)." ; + rdfs:seeAlso "http://filext.com/file-extension/TXT", + "http://www.iana.org/assignments/media-types/media-types.xhtml#text", + "http://www.iana.org/assignments/media-types/text/plain" ; + rdfs:subClassOf :format_1915 ; + owl:disjointWith :format_2333 . + +:data_2091 a owl:Class ; + rdfs:label "Accession" ; + :created_in "beta12orEarlier" ; + :notRecommendedForAnnotation true ; + oboInOwl:hasDefinition "A persistent (stable) and unique identifier, typically identifying an object (entry) from a database." ; + oboInOwl:inSubset :bio, + :data, + :identifiers ; + rdfs:seeAlso "http://semanticscience.org/resource/SIO_000675", + "http://semanticscience.org/resource/SIO_000731" ; + rdfs:subClassOf :data_0842 . + +:topics a owl:AnnotationProperty ; + rdfs:subPropertyOf oboInOwl:SubsetProperty . + +:identifiers a owl:AnnotationProperty ; + rdfs:subPropertyOf oboInOwl:SubsetProperty . + +:operations a owl:AnnotationProperty ; + rdfs:subPropertyOf oboInOwl:SubsetProperty . + +:formats a owl:AnnotationProperty ; + rdfs:subPropertyOf oboInOwl:SubsetProperty . + +:data a owl:AnnotationProperty ; + rdfs:subPropertyOf oboInOwl:SubsetProperty . + +:obsolete a owl:AnnotationProperty ; + rdfs:subPropertyOf oboInOwl:SubsetProperty . + +owl:DeprecatedClass a owl:Class . + +:bio a owl:AnnotationProperty ; + rdfs:subPropertyOf oboInOwl:SubsetProperty . + +[] a owl:Axiom ; + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty oboInOwl:isCyclic ; + owl:annotatedSource :has_function ; + owl:annotatedTarget true . + +[] a owl:Axiom ; + rdfs:comment "Perhaps surprisingly, the definition of 'SO:assembly' is narrower than the 'SO:sequence_assembly'." ; + owl:annotatedProperty oboInOwl:hasNarrowSynonym ; + owl:annotatedSource :data_0925 ; + owl:annotatedTarget "SO:0001248" . + +[] a owl:Axiom ; + rdfs:comment "Process can have a function (as its quality/attribute), and can also perform an operation with inputs and outputs." ; + owl:annotatedProperty oboInOwl:hasRelatedSynonym ; + owl:annotatedSource :operation_0004 ; + owl:annotatedTarget "Process" . + +[] a owl:Axiom ; + rdfs:comment "EDAM does not distinguish the multiplicity of data, such as one data item (datum) versus a collection of data (data set)." ; + owl:annotatedProperty oboInOwl:hasNarrowSynonym ; + owl:annotatedSource :data_0006 ; + owl:annotatedTarget "Data set" . + +[] a owl:Axiom ; + rdfs:comment "'OBO_REL:participates_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'continuant' (snap:Continuant) with ontological categories that are a 'process' (span:Process), and broader in the sense that it relates any participating subjects not just outputs or output arguments. It is also not clear whether an output (result) actually participates in the process that generates it." ; + owl:annotatedProperty oboInOwl:hasRelatedSynonym ; + owl:annotatedSource :is_output_of ; + owl:annotatedTarget "OBO_REL:participates_in" . + +[] a owl:Axiom ; + rdfs:comment "Operation is a function that is computational. It typically has input(s) and output(s), which are always data." ; + owl:annotatedProperty oboInOwl:hasBroadSynonym ; + owl:annotatedSource :operation_0004 ; + owl:annotatedTarget "Function" . + +[] a owl:Axiom ; + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty oboInOwl:isCyclic ; + owl:annotatedSource :has_output ; + owl:annotatedTarget true . + +[] a owl:Axiom ; + rdfs:comment "The has_input \"Data\" (data_0006) may cause visualisation or other problems although ontologically correct. But on the other hand it may be useful to distinguish from nullary operations without inputs." ; + owl:annotatedProperty :comment_handle ; + owl:annotatedSource :operation_3357 ; + owl:annotatedTarget :comment_handle . + +[] a owl:Axiom ; + rdfs:comment "Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:quality_of' might be seen narrower in the sense that it only relates subjects that are a 'quality' (snap:Quality) with objects that are an 'independent_continuant' (snap:IndependentContinuant), and is broader in the sense that it relates any qualities of the object." ; + owl:annotatedProperty oboInOwl:hasRelatedSynonym ; + owl:annotatedSource :is_topic_of ; + owl:annotatedTarget "OBO_REL:quality_of" . + +[] a owl:Axiom ; + rdfs:comment "A defined data format has its implicit or explicit data model, and EDAM does not distinguish the two. Some data models, however, do not have any standard way of serialisation into an exchange format, and those are thus not considered formats in EDAM. (Remark: even broader - or closely related - term to 'Data model' would be an 'Information model'.)" ; + owl:annotatedProperty oboInOwl:hasExactSynonym ; + owl:annotatedSource :format_1915 ; + owl:annotatedTarget "Data model" . + +[] a owl:Axiom ; + rdfs:comment "'OBO_REL:has_participant' is narrower in the sense that it only relates ontological categories (concepts) that are a 'process' (span:Process) with ontological categories that are a 'continuant' (snap:Continuant), and broader in the sense that it relates with any participating objects not just inputs or input arguments of the subject." ; + owl:annotatedProperty oboInOwl:hasRelatedSynonym ; + owl:annotatedSource :has_input ; + owl:annotatedTarget "OBO_REL:has_participant" . + +[] a owl:Axiom ; + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty oboInOwl:isCyclic ; + owl:annotatedSource :is_function_of ; + owl:annotatedTarget true . + +[] a owl:Axiom ; + rdfs:comment "Computational tool provides one or more operations." ; + owl:annotatedProperty oboInOwl:hasRelatedSynonym ; + owl:annotatedSource :operation_0004 ; + owl:annotatedTarget "Computational tool" . + +[] a owl:Axiom ; + rdfs:comment "Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:function_of' only relates subjects that are a 'function' (snap:Function) with objects that are an 'independent_continuant' (snap:IndependentContinuant), so for example no processes. It does not define explicitly that the subject is a function of the object." ; + owl:annotatedProperty oboInOwl:hasNarrowSynonym ; + owl:annotatedSource :is_function_of ; + owl:annotatedTarget "OBO_REL:function_of" . + +[] a owl:Axiom ; + rdfs:comment "A protein entity has the MIRIAM data type 'UniProt', and an enzyme has the MIRIAM data type 'Enzyme Nomenclature'." ; + owl:annotatedProperty :example ; + owl:annotatedSource :data_1165 ; + owl:annotatedTarget "UniProt|Enzyme Nomenclature" . + +[] a owl:Axiom ; + rdfs:comment "EDAM does not distinguish the multiplicity of data, such as one data item (datum) versus a collection of data (data set)." ; + owl:annotatedProperty oboInOwl:hasNarrowSynonym ; + owl:annotatedSource :data_0006 ; + owl:annotatedTarget "Datum" . + +[] a owl:Axiom ; + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty oboInOwl:isCyclic ; + owl:annotatedSource :is_topic_of ; + owl:annotatedTarget true . + +[] a owl:Axiom ; + rdfs:comment "Closely related, but focusing on labeling and human readability but not on identification." ; + owl:annotatedProperty oboInOwl:hasBroadSynonym ; + owl:annotatedSource :data_2099 ; + owl:annotatedTarget rdfs:label . + +[] a owl:Axiom ; + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty oboInOwl:isCyclic ; + owl:annotatedSource :has_input ; + owl:annotatedTarget true . + +[] a owl:Axiom ; + rdfs:comment "Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:quality_of' might be seen narrower in the sense that it only relates subjects that are a 'quality' (snap:Quality) with objects that are an 'independent_continuant' (snap:IndependentContinuant), and is broader in the sense that it relates any qualities of the object." ; + owl:annotatedProperty oboInOwl:hasRelatedSynonym ; + owl:annotatedSource :is_format_of ; + owl:annotatedTarget "OBO_REL:quality_of" . + +[] a owl:Axiom ; + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty oboInOwl:isCyclic ; + owl:annotatedSource :is_output_of ; + owl:annotatedTarget true . + +[] a owl:Axiom ; + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty oboInOwl:isCyclic ; + owl:annotatedSource :is_input_of ; + owl:annotatedTarget true . + +[] a owl:Axiom ; + rdfs:comment "In very unusual cases." ; + owl:annotatedProperty oboInOwl:isCyclic ; + owl:annotatedSource :has_topic ; + owl:annotatedTarget true . + +[] a owl:Axiom ; + rdfs:comment "'OBO_REL:has_participant' is narrower in the sense that it only relates ontological categories (concepts) that are a 'process' (span:Process) with ontological categories that are a 'continuant' (snap:Continuant), and broader in the sense that it relates with any participating objects not just outputs or output arguments of the subject. It is also not clear whether an output (result) actually participates in the process that generates it." ; + owl:annotatedProperty oboInOwl:hasRelatedSynonym ; + owl:annotatedSource :has_output ; + owl:annotatedTarget "OBO_REL:has_participant" . + +[] a owl:Axiom ; + rdfs:comment "EDAM does not distinguish a data record (a tool-understandable information artefact) from data or datum (its content, the tool-understandable encoding of an information)." ; + owl:annotatedProperty oboInOwl:hasExactSynonym ; + owl:annotatedSource :data_0006 ; + owl:annotatedTarget "Data record" . + +[] a owl:Axiom ; + rdfs:comment "Almost exact but limited to identifying resources, and being unambiguous." ; + owl:annotatedProperty skos:narrowMatch ; + owl:annotatedSource :data_0842 ; + owl:annotatedTarget dc:identifier . + +[] a owl:Axiom ; + rdfs:comment "Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:inheres_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'specifically_dependent_continuant' (snap:SpecificallyDependentContinuant) with ontological categories that are an 'independent_continuant' (snap:IndependentContinuant), and broader in the sense that it relates any borne subjects not just functions." ; + owl:annotatedProperty oboInOwl:hasRelatedSynonym ; + owl:annotatedSource :is_function_of ; + owl:annotatedTarget "OBO_REL:inheres_in" . + +[] a owl:Axiom ; + rdfs:comment "File format denotes only formats of a computer file, but the same formats apply also to data blobs or exchanged messages." ; + owl:annotatedProperty oboInOwl:hasExactSynonym ; + owl:annotatedSource :format_1915 ; + owl:annotatedTarget "File format" . + +[] a owl:Axiom ; + rdfs:comment "'OBO_REL:participates_in' is narrower in the sense that it only relates ontological categories (concepts) that are a 'continuant' (snap:Continuant) with ontological categories that are a 'process' (span:Process), and broader in the sense that it relates any participating subjects not just inputs or input arguments." ; + owl:annotatedProperty oboInOwl:hasRelatedSynonym ; + owl:annotatedSource :is_input_of ; + owl:annotatedTarget "OBO_REL:participates_in" . + +[] a owl:Axiom ; + rdfs:comment "Is defined anywhere? Not in the 'unknown' version of RO. 'OBO_REL:bearer_of' is narrower in the sense that it only relates ontological categories (concepts) that are an 'independent_continuant' (snap:IndependentContinuant) with ontological categories that are a 'specifically_dependent_continuant' (snap:SpecificallyDependentContinuant), and broader in the sense that it relates with any borne objects not just functions of the subject." ; + owl:annotatedProperty oboInOwl:hasRelatedSynonym ; + owl:annotatedSource :has_function ; + owl:annotatedTarget "OBO_REL:bearer_of" . + diff --git a/src/webapp/test_queries/test-queries.ipynb b/src/webapp/test_queries/test-queries.ipynb new file mode 100644 index 0000000..72fb342 --- /dev/null +++ b/src/webapp/test_queries/test-queries.ipynb @@ -0,0 +1,18766 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Loading EDAM into an RDFlib graph" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "ExecuteTime": { + "end_time": "2024-02-29T13:59:09.647266Z", + "start_time": "2024-02-29T13:59:09.596489Z" + } + }, + "outputs": [], + "source": [ + "from rdflib import ConjunctiveGraph" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here we initialize the graph. " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "ExecuteTime": { + "end_time": "2024-02-29T13:59:09.649352Z", + "start_time": "2024-02-29T13:59:09.644271Z" + } + }, + "outputs": [], + "source": [ + "kg = ConjunctiveGraph()\n", + "\n", + "def print_size():\n", + " print(f\"The knowledge graph has {len(kg)} triples\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here we load the EDAM ontology into the graph. " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "ExecuteTime": { + "end_time": "2024-02-29T13:59:12.865741Z", + "start_time": "2024-02-29T13:59:09.648952Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "38279 triples in the EDAM triple store\n" + ] + } + ], + "source": [ + "#kg.parse('http://edamontology.org/EDAM.owl', format='xml')\n", + "#print_size()\n", + "edam_version = 'https://raw.githubusercontent.com/edamontology/edamontology/master/EDAM_dev.owl'\n", + "kg = ConjunctiveGraph()\n", + "kg.parse(edam_version, format='xml')\n", + "#kg.bind('edam', Namespace('http://edamontology.org/'))\n", + "print(str(len(kg)) + ' triples in the EDAM triple store')\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "ExecuteTime": { + "end_time": "2024-02-29T13:59:14.362831Z", + "start_time": "2024-02-29T13:59:12.866174Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": ")>" + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "kg.serialize(\"edam.json\", format=\"json-ld\")\n", + "kg.serialize(\"edam.ttl\", format=\"turtle\")" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "ExecuteTime": { + "end_time": "2024-02-29T13:59:17.313108Z", + "start_time": "2024-02-29T13:59:14.359360Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "38279\n" + ] + } + ], + "source": [ + "# a single function to load EDAM and get the graph object as a result\n", + "def load_EDAM():\n", + " g = ConjunctiveGraph()\n", + " g.parse(edam_version, format='xml')\n", + " return g\n", + "\n", + "G = load_EDAM()\n", + "print(len(G))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Listing the 100 first triples " + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "ExecuteTime": { + "end_time": "2024-02-29T13:59:20.850223Z", + "start_time": "2024-02-29T13:59:20.827220Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(http://edamontology.org/data_0874, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/data)\n", + "(http://edamontology.org/format_1980, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(http://edamontology.org/topic_3415, http://edamontology.org/isdebtag, true)\n", + "(http://edamontology.org/operation_0004, http://www.w3.org/2002/07/owl#disjointWith, http://edamontology.org/topic_0003)\n", + "(http://edamontology.org/topic_2828, http://www.w3.org/2000/01/rdf-schema#label, X-ray diffraction)\n", + "(http://edamontology.org/operation_3431, http://www.geneontology.org/formats/oboInOwl#hasExactSynonym, Database submission)\n", + "(http://edamontology.org/format_2182, http://www.geneontology.org/formats/oboInOwl#hasDefinition, A text format resembling FASTQ short read format.)\n", + "(http://edamontology.org/data_1656, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(http://edamontology.org/data_2198, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(http://edamontology.org/topic_4020, http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym, Biogeochemical cycle)\n", + "(N93e90f33ebb749a486b5895d3f0446a8, http://www.w3.org/2002/07/owl#onProperty, http://edamontology.org/is_identifier_of)\n", + "(N2f3376d119664710a081491fdde147ac, http://www.w3.org/2002/07/owl#someValuesFrom, http://edamontology.org/data_0962)\n", + "(http://edamontology.org/topic_3541, http://edamontology.org/obsolete_since, 1.13)\n", + "(http://edamontology.org/data_2966, http://edamontology.org/created_in, beta12orEarlier)\n", + "(http://edamontology.org/operation_0402, http://www.w3.org/2000/01/rdf-schema#subClassOf, http://edamontology.org/operation_0337)\n", + "(N5a05d2a1e169418b82b9b5d52cd72f75, http://www.w3.org/2002/07/owl#someValuesFrom, http://edamontology.org/data_2048)\n", + "(http://edamontology.org/data_2365, http://www.geneontology.org/formats/oboInOwl#hasDefinition, A persistent, unique identifier of a biological pathway or network (typically a database entry).)\n", + "(http://edamontology.org/data_3111, http://edamontology.org/created_in, beta13)\n", + "(http://edamontology.org/data_2959, http://www.w3.org/2000/01/rdf-schema#subClassOf, http://www.w3.org/2002/07/owl#DeprecatedClass)\n", + "(http://edamontology.org/operation_0317, http://edamontology.org/obsolete_since, beta12orEarlier)\n", + "(http://edamontology.org/format_1610, http://www.w3.org/2000/01/rdf-schema#label, KEGG GENES gene report format)\n", + "(http://edamontology.org/data_2220, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/identifiers)\n", + "(N4865fa91aa4a4909b84c55fbb68eaf6a, http://www.w3.org/2002/07/owl#onProperty, http://edamontology.org/has_input)\n", + "(http://edamontology.org/data_1560, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(http://edamontology.org/data_2019, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(http://edamontology.org/operation_3927, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/bio)\n", + "(http://edamontology.org/data_2385, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/identifiers)\n", + "(http://edamontology.org/operation_0312, http://www.w3.org/2000/01/rdf-schema#label, Sequencing-based expression profile data processing)\n", + "(http://edamontology.org/topic_0078, http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId, Proteins)\n", + "(http://edamontology.org/data_2090, http://www.w3.org/2002/07/owl#deprecated, true)\n", + "(http://edamontology.org/operation_3896, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(http://edamontology.org/data_0845, http://www.w3.org/2000/01/rdf-schema#label, Molecular charge)\n", + "(http://edamontology.org/format_1551, http://www.geneontology.org/formats/oboInOwl#hasDefinition, Format of output of the Pcons Model Quality Assessment Program (MQAP).)\n", + "(http://edamontology.org/data_1234, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/bio)\n", + "(http://edamontology.org/data_2902, http://edamontology.org/created_in, beta12orEarlier)\n", + "(http://edamontology.org/data_1007, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/data)\n", + "(http://edamontology.org/data_1567, http://edamontology.org/obsolete_since, 1.8)\n", + "(http://edamontology.org/data_2085, http://www.geneontology.org/formats/oboInOwl#hasExactSynonym, Structure-derived report)\n", + "(http://edamontology.org/format_4035, http://www.w3.org/2000/01/rdf-schema#subClassOf, http://edamontology.org/format_1475)\n", + "(http://edamontology.org/operation_0579, http://www.w3.org/2000/01/rdf-schema#subClassOf, http://edamontology.org/operation_0573)\n", + "(http://edamontology.org/data_2103, http://edamontology.org/obsolete_since, 1.3)\n", + "(http://edamontology.org/operation_2407, http://www.w3.org/2002/07/owl#deprecated, true)\n", + "(http://edamontology.org/data_1469, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(http://edamontology.org/data_1368, http://www.geneontology.org/formats/oboInOwl#consider, http://edamontology.org/data_1354)\n", + "(http://edamontology.org/topic_2811, http://edamontology.org/obsolete_since, 1.3)\n", + "(http://edamontology.org/format_4039, http://www.w3.org/2000/01/rdf-schema#subClassOf, http://edamontology.org/format_2330)\n", + "(http://edamontology.org/format_3970, http://www.w3.org/2000/01/rdf-schema#label, Vega-lite)\n", + "(N2466636111704f33969af63f49b373fe, http://www.w3.org/2002/07/owl#someValuesFrom, http://edamontology.org/topic_0123)\n", + "(http://edamontology.org/operation_0525, http://www.w3.org/2000/01/rdf-schema#label, Genome assembly)\n", + "(http://edamontology.org/format_3825, http://edamontology.org/created_in, 1.20)\n", + "(http://edamontology.org/data_1597, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/bio)\n", + "(http://edamontology.org/format_3009, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/formats)\n", + "(http://edamontology.org/format_1197, http://www.geneontology.org/formats/oboInOwl#hasDefinition, Chemical structure specified in IUPAC International Chemical Identifier (InChI) line notation.)\n", + "(http://edamontology.org/format_3818, http://edamontology.org/documentation, http://ccg.vital-it.ch/chipseq/elandformat.php)\n", + "(http://edamontology.org/format_1606, http://edamontology.org/oldParent, http://www.w3.org/2002/07/owl#Thing)\n", + "(http://edamontology.org/data_2335, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(http://edamontology.org/format_3556, http://www.w3.org/2000/01/rdf-schema#label, MHTML)\n", + "(N9ee8dc747e754712b3b1e4595251638d, http://www.w3.org/2002/07/owl#onProperty, http://edamontology.org/is_format_of)\n", + "(http://edamontology.org/data_2294, http://edamontology.org/created_in, beta12orEarlier)\n", + "(http://edamontology.org/data_1035, http://www.w3.org/2000/01/rdf-schema#subClassOf, http://edamontology.org/data_2091)\n", + "(http://edamontology.org/format_2919, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/formats)\n", + "(http://edamontology.org/operation_0253, http://www.geneontology.org/formats/oboInOwl#hasExactSynonym, Sequence feature prediction)\n", + "(http://edamontology.org/operation_0357, http://edamontology.org/oldParent, http://www.w3.org/2002/07/owl#Thing)\n", + "(http://edamontology.org/format_1969, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/bio)\n", + "(http://edamontology.org/operation_1818, http://www.geneontology.org/formats/oboInOwl#replacedBy, http://edamontology.org/operation_0387)\n", + "(http://edamontology.org/topic_0779, http://www.geneontology.org/formats/oboInOwl#hasDefinition, Mitochondria, typically of mitochondrial genes and proteins.)\n", + "(http://edamontology.org/operation_0342, http://edamontology.org/oldParent, http://www.w3.org/2002/07/owl#Thing)\n", + "(http://edamontology.org/operation_0295, http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym, 3D profile alignment)\n", + "(http://edamontology.org/operation_2507, http://edamontology.org/oldParent, http://edamontology.org/operation_2501)\n", + "(Nf2c8f98522d54c3cbe51cbf5c273c597, http://www.w3.org/2002/07/owl#annotatedTarget, http://www.w3.org/2000/01/rdf-schema#label)\n", + "(http://edamontology.org/operation_3088, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(N87dc94b8ec5e4282ad583cf4d85dc4d5, http://www.w3.org/2002/07/owl#someValuesFrom, http://edamontology.org/data_1461)\n", + "(http://edamontology.org/data_0884, http://www.w3.org/2000/01/rdf-schema#subClassOf, http://www.w3.org/2002/07/owl#DeprecatedClass)\n", + "(http://edamontology.org/format_3327, http://www.w3.org/2000/01/rdf-schema#subClassOf, http://edamontology.org/format_2333)\n", + "(http://edamontology.org/format_3879, http://www.geneontology.org/formats/oboInOwl#hasExactSynonym, CG topology format)\n", + "(http://edamontology.org/operation_2404, http://www.w3.org/2000/01/rdf-schema#label, Sequence motif analysis)\n", + "(http://edamontology.org/data_0963, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(http://edamontology.org/topic_3343, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/topics)\n", + "(http://edamontology.org/format_1651, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(http://edamontology.org/operation_4033, http://www.w3.org/2000/01/rdf-schema#subClassOf, http://edamontology.org/operation_3664)\n", + "(http://edamontology.org/data_1592, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(http://edamontology.org/operation_3929, http://www.w3.org/2000/01/rdf-schema#subClassOf, http://edamontology.org/operation_2423)\n", + "(http://edamontology.org/data_1069, http://edamontology.org/notRecommendedForAnnotation, true)\n", + "(http://edamontology.org/operation_2502, http://edamontology.org/oldParent, http://edamontology.org/operation_2945)\n", + "(http://edamontology.org/data_2354, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/data)\n", + "(http://edamontology.org/data_2615, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/data)\n", + "(http://edamontology.org/operation_3279, http://edamontology.org/created_in, 1.3)\n", + "(http://edamontology.org/format_3549, http://www.w3.org/2000/01/rdf-schema#subClassOf, http://edamontology.org/format_3547)\n", + "(http://edamontology.org/topic_0157, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/topics)\n", + "(http://edamontology.org/data_2318, http://www.w3.org/2000/01/rdf-schema#subClassOf, http://edamontology.org/data_2316)\n", + "(Nce0b14eb8c574a78a8ddeb7abc74ff0a, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Restriction)\n", + "(http://edamontology.org/data_1767, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(http://edamontology.org/data_1726, http://www.w3.org/2002/07/owl#deprecated, true)\n", + "(http://edamontology.org/data_2674, http://www.w3.org/2000/01/rdf-schema#label, Ensembl ID ('Cavia porcellus'))\n", + "(http://edamontology.org/format_1950, http://www.w3.org/2000/01/rdf-schema#label, pdbatom)\n", + "(Nbb7120a9d7524db1b42250501a73b78e, http://www.w3.org/2002/07/owl#someValuesFrom, http://edamontology.org/data_1636)\n", + "(http://edamontology.org/data_1157, http://www.w3.org/1999/02/22-rdf-syntax-ns#type, http://www.w3.org/2002/07/owl#Class)\n", + "(http://edamontology.org/format_1614, http://www.w3.org/2002/07/owl#deprecated, true)\n", + "(http://edamontology.org/data_1143, http://www.geneontology.org/formats/oboInOwl#inSubset, http://edamontology.org/identifiers)\n", + "(http://edamontology.org/format_3248, http://www.geneontology.org/formats/oboInOwl#hasDefinition, mzQuantML is the format for quantitation values associated with peptides, proteins and small molecules from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of quantitation software for proteomics.)\n" + ] + } + ], + "source": [ + "i = 0\n", + "\n", + "for subject,predicate,obj in kg:\n", + " print(f'({subject}, {predicate}, {obj})')\n", + " i+=1\n", + " \n", + " if i > 99:\n", + " break\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "ExecuteTime": { + "end_time": "2024-02-29T13:59:23.067118Z", + "start_time": "2024-02-29T13:59:23.059459Z" + } + }, + "outputs": [], + "source": [ + "from rdflib.namespace import RDF, RDFS, OWL \n", + "\n", + "i = 0\n", + "\n", + "\n", + "for s in kg.triples((None, RDF.type, OWL.Class)):\n", + " for label in kg.triples((s, RDFS.label, None)):\n", + " print(kg.value(s, RDFS.label))\n", + " i +=1\n", + " \n", + " if i > 99:\n", + " break\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Evaluating SPARQL queries for dashboard\n", + "Aim: getting topics that have no wikipedia url in their properties." + ] + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "There are 14 topics without a URL (seeAlso property).\n" + ] + } + ], + "source": [ + "query = \"\"\"\n", + "PREFIX edam: \n", + "\n", + "SELECT (count(?term) as ?nb_no_wikipedia) WHERE {\n", + " ?c rdfs:subClassOf+ edam:topic_0003 ;\n", + " rdfs:label ?term .\n", + " FILTER NOT EXISTS {\n", + " ?c rdfs:seeAlso ?seealso .\n", + " FILTER (regex(str(?seealso), \"wikipedia.org\", \"i\"))\n", + " } .\n", + "}\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"There are {r['nb_no_wikipedia']} topics without a URL (seeAlso property).\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-29T13:59:26.200878Z", + "start_time": "2024-02-29T13:59:26.082715Z" + } + }, + "execution_count": 8 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Topic 'Literature and language' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Data submission, annotation, and curation' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Data identity and mapping' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Genome resequencing' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Simulation experiment' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Nucleic acid sites, features and motifs' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Protein properties' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Protein sites, features and motifs' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Sequence composition, complexity and repeats' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Probes and primers' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Sequence sites, features and motifs' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Biomolecular simulation' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Biotherapeutics' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Quality affairs' has no wikipedia link ('seeAlso' property).\n" + ] + } + ], + "source": [ + "query = \"\"\"\n", + "PREFIX edam: \n", + "PREFIX oboInOwl: \n", + "\n", + "\n", + "SELECT ?term WHERE {\n", + " ?c rdfs:subClassOf+ edam:topic_0003 ;\n", + " rdfs:label ?term .\n", + " FILTER NOT EXISTS {\n", + " ?c rdfs:seeAlso ?seealso .\n", + " FILTER (regex(str(?seealso), \"wikipedia.org\", \"i\"))\n", + " } .\n", + "}\n", + "\"\"\"\n", + "results = kg.query(query)\n", + "\n", + "\n", + "for r in results :\n", + " print(f\"Topic '{r['term']}' has no wikipedia link ('seeAlso' property).\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-29T14:07:01.337516Z", + "start_time": "2024-02-29T14:07:01.331591Z" + } + }, + "execution_count": 10 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14\n", + "Topic 'Literature and language' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Data submission, annotation, and curation' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Data identity and mapping' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Genome resequencing' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Simulation experiment' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Nucleic acid sites, features and motifs' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Protein properties' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Protein sites, features and motifs' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Sequence composition, complexity and repeats' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Probes and primers' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Sequence sites, features and motifs' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Biomolecular simulation' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Biotherapeutics' has no wikipedia link ('seeAlso' property).\n", + "Topic 'Quality affairs' has no wikipedia link ('seeAlso' property).\n" + ] + } + ], + "source": [ + "import os\n", + "\n", + "query = os.path.dirname(\".\") + \"../queries/no_wikipedia_link_topic.rq\"\n", + "\n", + "with open(query, \"r\") as f:\n", + " query = f.read()\n", + " \n", + " results = kg.query(query)\n", + " nb_err = len(results)\n", + "f.close()\n", + "\n", + "print(nb_err)\n", + "\n", + "for r in results :\n", + " print(f\"Topic '{r['term']}' has no wikipedia link ('seeAlso' property).\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-29T14:18:57.077411Z", + "start_time": "2024-02-29T14:18:57.012981Z" + } + }, + "execution_count": 15 + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query = os.path.dirname(\".\") + \"../queries/no_wikipedia_link_topic.rq\"\n", + "\n", + "with open(query, \"r\") as f:\n", + " query = f.read()\n", + " \n", + " results = kg.query(query)\n", + " nb_err = len(results)\n", + "f.close()\n", + "\n", + "print(nb_err)\n", + "\n", + "for r in results :\n", + " print(f\"Topic '{r['term']}' has no wikipedia link ('seeAlso' property).\") " + ], + "metadata": { + "collapsed": false + } + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Topic 'Informatics' has no broad synonym\n", + "Topic 'Ontology and terminology' has no broad synonym\n", + "Topic 'Bioinformatics' has no broad synonym\n", + "Topic 'Laboratory information management' has no broad synonym\n", + "Topic 'Cheminformatics' has no broad synonym\n", + "Topic 'Chemometrics' has no broad synonym\n", + "Topic 'Medical informatics' has no broad synonym\n", + "Topic 'Immunoinformatics' has no broad synonym\n", + "Topic 'Literature and language' has no broad synonym\n", + "Topic 'Natural language processing' has no broad synonym\n", + "Topic 'Data management' has no broad synonym\n", + "Topic 'Data submission, annotation, and curation' has no broad synonym\n", + "Topic 'Workflows' has no broad synonym\n", + "Topic 'Data acquisition' has no broad synonym\n", + "Topic 'Data security' has no broad synonym\n", + "Topic 'Data identity and mapping' has no broad synonym\n", + "Topic 'Data architecture, analysis and design' has no broad synonym\n", + "Topic 'Data integration and warehousing' has no broad synonym\n", + "Topic 'Data governance' has no broad synonym\n", + "Topic 'Data quality management' has no broad synonym\n", + "Topic 'Data rescue' has no broad synonym\n", + "Topic 'FAIR data' has no broad synonym\n", + "Topic 'Biochemistry' has no broad synonym\n", + "Topic 'Microfluidics' has no broad synonym\n", + "Topic 'Computational chemistry' has no broad synonym\n", + "Topic 'Drug discovery' has no broad synonym\n", + "Topic 'Medicinal chemistry' has no broad synonym\n", + "Topic 'Compound libraries and screening' has no broad synonym\n", + "Topic 'Analytical chemistry' has no broad synonym\n", + "Topic 'Synthetic chemistry' has no broad synonym\n", + "Topic 'Chemical biology' has no broad synonym\n", + "Topic 'Mathematics' has no broad synonym\n", + "Topic 'Statistics and probability' has no broad synonym\n", + "Topic 'Applied mathematics' has no broad synonym\n", + "Topic 'Pure mathematics' has no broad synonym\n", + "Topic 'Computer science' has no broad synonym\n", + "Topic 'Software engineering' has no broad synonym\n", + "Topic 'Physics' has no broad synonym\n", + "Topic 'Biophysics' has no broad synonym\n", + "Topic 'Acoustics' has no broad synonym\n", + "Topic 'Laboratory techniques' has no broad synonym\n", + "Topic 'Sequencing' has no broad synonym\n", + "Topic 'ChIP-seq' has no broad synonym\n", + "Topic 'RNA-Seq' has no broad synonym\n", + "Topic 'Whole genome sequencing' has no broad synonym\n", + "Topic 'Exome sequencing' has no broad synonym\n", + "Topic 'Metagenomic sequencing' has no broad synonym\n", + "Topic 'Single-Cell Sequencing' has no broad synonym\n", + "Topic 'Imaging' has no broad synonym\n", + "Topic 'Cryogenic electron microscopy' has no broad synonym\n", + "Topic 'X-ray diffraction' has no broad synonym\n", + "Topic 'Bioimaging' has no broad synonym\n", + "Topic 'Medical imaging' has no broad synonym\n", + "Topic 'Light microscopy' has no broad synonym\n", + "Topic 'MRI' has no broad synonym\n", + "Topic 'Neutron diffraction' has no broad synonym\n", + "Topic 'Tomography' has no broad synonym\n", + "Topic 'Echography' has no broad synonym\n", + "Topic 'Electroencephalography' has no broad synonym\n", + "Topic 'Electrocardiography' has no broad synonym\n", + "Topic 'Genotyping experiment' has no broad synonym\n", + "Topic 'Microarray experiment' has no broad synonym\n", + "Topic 'PCR experiment' has no broad synonym\n", + "Topic 'Proteomics experiment' has no broad synonym\n", + "Topic 'RNAi experiment' has no broad synonym\n", + "Topic 'Simulation experiment' has no broad synonym\n", + "Topic 'Immunoprecipitation experiment' has no broad synonym\n", + "Topic 'ChIP-on-chip' has no broad synonym\n", + "Topic 'Methylated DNA immunoprecipitation' has no broad synonym\n", + "Topic 'RNA immunoprecipitation' has no broad synonym\n", + "Topic 'Cytometry' has no broad synonym\n", + "Topic 'Chromosome conformation capture' has no broad synonym\n", + "Topic 'Protein interaction experiment' has no broad synonym\n", + "Topic 'Experimental design and studies' has no broad synonym\n", + "Topic 'Preclinical and clinical studies' has no broad synonym\n", + "Topic 'GWAS study' has no broad synonym\n", + "Topic 'Animal study' has no broad synonym\n", + "Topic 'Environmental sciences' has no broad synonym\n", + "Topic 'Ecology' has no broad synonym\n", + "Topic 'Biodiversity' has no broad synonym\n", + "Topic 'Microbial ecology' has no broad synonym\n", + "Topic 'Metabarcoding' has no broad synonym\n", + "Topic 'Open science' has no broad synonym\n", + "Topic 'Biosciences' has no broad synonym\n", + "Topic 'Biology' has no broad synonym\n", + "Topic 'Model organisms' has no broad synonym\n", + "Topic 'Plant biology' has no broad synonym\n", + "Topic 'Virology' has no broad synonym\n", + "Topic 'Structural biology' has no broad synonym\n", + "Topic 'Structural genomics' has no broad synonym\n", + "Topic 'Cell biology' has no broad synonym\n", + "Topic 'Systems biology' has no broad synonym\n", + "Topic 'Human biology' has no broad synonym\n", + "Topic 'Molecular biology' has no broad synonym\n", + "Topic 'Genetics' has no broad synonym\n", + "Topic 'Genotype and phenotype' has no broad synonym\n", + "Topic 'Quantitative genetics' has no broad synonym\n", + "Topic 'Phenomics' has no broad synonym\n", + "Topic 'Molecular evolution' has no broad synonym\n", + "Topic 'Epistasis' has no broad synonym\n", + "Topic 'Population genetics' has no broad synonym\n", + "Topic 'Epigenetics' has no broad synonym\n", + "Topic 'Epigenomics' has no broad synonym\n", + "Topic 'Genomic imprinting' has no broad synonym\n", + "Topic 'Molecular genetics' has no broad synonym\n", + "Topic 'Gene structure' has no broad synonym\n", + "Topic 'Functional, regulatory and non-coding RNA' has no broad synonym\n", + "Topic 'Mobile genetic elements' has no broad synonym\n", + "Topic 'Gene transcripts' has no broad synonym\n", + "Topic 'Genetic variation' has no broad synonym\n", + "Topic 'DNA mutation' has no broad synonym\n", + "Topic 'DNA polymorphism' has no broad synonym\n", + "Topic 'Structural variation' has no broad synonym\n", + "Topic 'Copy number variation' has no broad synonym\n", + "Topic 'Gene expression' has no broad synonym\n", + "Topic 'Gene regulation' has no broad synonym\n", + "Topic 'Transcription factors and regulatory sites' has no broad synonym\n", + "Topic 'Transcriptomics' has no broad synonym\n", + "Topic 'Metatranscriptomics' has no broad synonym\n", + "Topic 'Ribosome Profiling' has no broad synonym\n", + "Topic 'RNA splicing' has no broad synonym\n", + "Topic 'Gene and protein families' has no broad synonym\n", + "Topic 'Immunoproteins and antigens' has no broad synonym\n", + "Topic 'Cytogenetics' has no broad synonym\n", + "Topic 'Human genetics' has no broad synonym\n", + "Topic 'Genetic engineering' has no broad synonym\n", + "Topic 'Immunogenetics' has no broad synonym\n", + "Topic 'Developmental biology' has no broad synonym\n", + "Topic 'Embryology' has no broad synonym\n", + "Topic 'Biotechnology' has no broad synonym\n", + "Topic 'Biomaterials' has no broad synonym\n", + "Topic 'Bioengineering' has no broad synonym\n", + "Topic 'Medical biotechnology' has no broad synonym\n", + "Topic 'Synthetic biology' has no broad synonym\n", + "Topic 'Metabolic engineering' has no broad synonym\n", + "Topic 'Evolutionary biology' has no broad synonym\n", + "Topic 'Phylogeny' has no broad synonym\n", + "Topic 'Phylogenetics' has no broad synonym\n", + "Topic 'Cladistics' has no broad synonym\n", + "Topic 'Taxonomy' has no broad synonym\n", + "Topic 'Microbiology' has no broad synonym\n", + "Topic 'Antimicrobial Resistance' has no broad synonym\n", + "Topic 'Biomarkers' has no broad synonym\n", + "Topic 'Marine biology' has no broad synonym\n", + "Topic 'Zoology' has no broad synonym\n", + "Topic 'Medicine' has no broad synonym\n", + "Topic 'Pathology' has no broad synonym\n", + "Topic 'Infectious disease' has no broad synonym\n", + "Topic 'Rare diseases' has no broad synonym\n", + "Topic 'Oncology' has no broad synonym\n", + "Topic 'Toxicology' has no broad synonym\n", + "Topic 'Physiology' has no broad synonym\n", + "Topic 'Public health and epidemiology' has no broad synonym\n", + "Topic 'Respiratory medicine' has no broad synonym\n", + "Topic 'Neurology' has no broad synonym\n", + "Topic 'Cardiology' has no broad synonym\n", + "Topic 'Translational medicine' has no broad synonym\n", + "Topic 'Molecular medicine' has no broad synonym\n", + "Topic 'Systems medicine' has no broad synonym\n", + "Topic 'Veterinary medicine' has no broad synonym\n", + "Topic 'Allergy, clinical immunology and immunotherapeutics' has no broad synonym\n", + "Topic 'Pain medicine' has no broad synonym\n", + "Topic 'Anaesthesiology' has no broad synonym\n", + "Topic 'Critical care medicine' has no broad synonym\n", + "Topic 'Dermatology' has no broad synonym\n", + "Topic 'Dentistry' has no broad synonym\n", + "Topic 'Ear, nose and throat medicine' has no broad synonym\n", + "Topic 'Endocrinology and metabolism' has no broad synonym\n", + "Topic 'Haematology' has no broad synonym\n", + "Topic 'Gastroenterology' has no broad synonym\n", + "Topic 'Gender medicine' has no broad synonym\n", + "Topic 'Gynaecology and obstetrics' has no broad synonym\n", + "Topic 'Hepatic and biliary medicine' has no broad synonym\n", + "Topic 'Trauma medicine' has no broad synonym\n", + "Topic 'Medical toxicology' has no broad synonym\n", + "Topic 'Musculoskeletal medicine' has no broad synonym\n", + "Topic 'Paediatrics' has no broad synonym\n", + "Topic 'Reproductive health' has no broad synonym\n", + "Topic 'Surgery' has no broad synonym\n", + "Topic 'Urology and nephrology' has no broad synonym\n", + "Topic 'Tropical medicine' has no broad synonym\n", + "Topic 'Personalised medicine' has no broad synonym\n", + "Topic 'Computational biology' has no broad synonym\n", + "Topic 'Nucleic acids' has no broad synonym\n", + "Topic 'Nucleic acid structure analysis' has no broad synonym\n", + "Topic 'RNA' has no broad synonym\n", + "Topic 'DNA' has no broad synonym\n", + "Topic 'DNA binding sites' has no broad synonym\n", + "Topic 'DNA replication and recombination' has no broad synonym\n", + "Topic 'DNA packaging' has no broad synonym\n", + "Topic 'Nucleic acid sites, features and motifs' has no broad synonym\n", + "Topic 'Proteins' has no broad synonym\n", + "Topic 'Protein expression' has no broad synonym\n", + "Topic 'Protein targeting and localisation' has no broad synonym\n", + "Topic 'Protein modifications' has no broad synonym\n", + "Topic 'Protein variants' has no broad synonym\n", + "Topic 'Protein properties' has no broad synonym\n", + "Topic 'Protein interactions' has no broad synonym\n", + "Topic 'Membrane and lipoproteins' has no broad synonym\n", + "Topic 'Enzymes' has no broad synonym\n", + "Topic 'Protein structure analysis' has no broad synonym\n", + "Topic 'Protein folding, stability and design' has no broad synonym\n", + "Topic 'Protein structural motifs and surfaces' has no broad synonym\n", + "Topic 'Protein folds and structural domains' has no broad synonym\n", + "Topic 'Protein disordered structure' has no broad synonym\n", + "Topic 'Protein secondary structure' has no broad synonym\n", + "Topic 'Protein sites, features and motifs' has no broad synonym\n", + "Topic 'Protein binding sites' has no broad synonym\n", + "Topic 'Sequence analysis' has no broad synonym\n", + "Topic 'Mapping' has no broad synonym\n", + "Topic 'Sequence composition, complexity and repeats' has no broad synonym\n", + "Topic 'Phylogenomics' has no broad synonym\n", + "Topic 'Sequence assembly' has no broad synonym\n", + "Topic 'Probes and primers' has no broad synonym\n", + "Topic 'Structure analysis' has no broad synonym\n", + "Topic 'Structure prediction' has no broad synonym\n", + "Topic 'Molecular modelling' has no broad synonym\n", + "Topic 'Carbohydrates' has no broad synonym\n", + "Topic 'Lipids' has no broad synonym\n", + "Topic 'Small molecules' has no broad synonym\n", + "Topic 'Sequence sites, features and motifs' has no broad synonym\n", + "Topic 'Molecular interactions, pathways and networks' has no broad synonym\n", + "Topic 'Function analysis' has no broad synonym\n", + "Topic 'Functional genomics' has no broad synonym\n", + "Topic 'Biomolecular simulation' has no broad synonym\n", + "Topic 'Biomedical science' has no broad synonym\n", + "Topic 'Pharmacology' has no broad synonym\n", + "Topic 'Pharmacogenomics' has no broad synonym\n", + "Topic 'Immunology' has no broad synonym\n", + "Topic 'Anatomy' has no broad synonym\n", + "Topic 'Sample collections' has no broad synonym\n", + "Topic 'Biobank' has no broad synonym\n", + "Topic 'Mouse clinic' has no broad synonym\n", + "Topic 'Microbial collection' has no broad synonym\n", + "Topic 'Cell culture collection' has no broad synonym\n", + "Topic 'Clone library' has no broad synonym\n", + "Topic 'Parasitology' has no broad synonym\n", + "Topic 'Drug development' has no broad synonym\n", + "Topic 'Drug metabolism' has no broad synonym\n", + "Topic 'Safety sciences' has no broad synonym\n", + "Topic 'Pharmacovigilance' has no broad synonym\n", + "Topic 'Quality affairs' has no broad synonym\n", + "Topic 'Regulatory affairs' has no broad synonym\n", + "Topic 'Vaccinology' has no broad synonym\n", + "Topic 'Laboratory animal science' has no broad synonym\n", + "Topic 'Nutritional science' has no broad synonym\n", + "Topic 'Regenerative medicine' has no broad synonym\n", + "Topic 'Omics' has no broad synonym\n", + "Topic 'Proteomics' has no broad synonym\n", + "Topic 'Genomics' has no broad synonym\n", + "Topic 'Comparative genomics' has no broad synonym\n", + "Topic 'Population genomics' has no broad synonym\n", + "Topic 'Proteogenomics' has no broad synonym\n", + "Topic 'Paleogenomics' has no broad synonym\n", + "Topic 'Metabolomics' has no broad synonym\n", + "Topic 'Fluxomics' has no broad synonym\n", + "Topic 'Immunomics' has no broad synonym\n", + "Topic 'Multiomics' has no broad synonym\n" + ] + } + ], + "source": [ + "## Query for synonyms\n", + "query = \"\"\"\n", + "PREFIX edam: \n", + "PREFIX oboInOwl: \n", + "\n", + "\n", + "SELECT ?term ?c WHERE {\n", + " ?c rdfs:subClassOf+ edam:topic_0003 ;\n", + " rdfs:label ?term .\n", + " FILTER NOT EXISTS {\n", + " ?c oboInOwl:hasBroadSynonym ?hasBroadSynonym .\n", + " } .\n", + "}\n", + "\"\"\"\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Topic '{r['term']}' has no broad synonym\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-29T15:17:02.172242Z", + "start_time": "2024-02-29T15:17:02.118429Z" + } + }, + "execution_count": 18 + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "## Query for topics with no definition (ERROR level)\n", + "query = \"\"\"\n", + "PREFIX edam: \n", + "PREFIX oboInOwl: \n", + "\n", + "SELECT ?term ?concept WHERE {\n", + " ?concept rdfs:subClassOf+ edam:topic_0003 ;\n", + " rdfs:label ?term .\n", + " \n", + " FILTER NOT EXISTS {\n", + " ?concept oboInOwl:hasDefinition ?def \n", + " } .\n", + "}\n", + "\"\"\"\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Topic '{r['term']}' and '{r['concept']}' has no def \") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-29T15:38:16.752372Z", + "start_time": "2024-02-29T15:38:16.700550Z" + } + }, + "execution_count": 38 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Data term 'Textual format' has def 'Textual format.' \n", + "Data term 'SMILES' has def 'Chemical structure specified in Simplified Molecular Input Line Entry System (SMILES) line notation.' \n", + "Data term 'smarts' has def 'SMILES ARbitrary Target Specification (SMARTS) format for chemical structure specification, which is a subset of the SMILES line notation.' \n", + "Data term 'InChI' has def 'Chemical structure specified in IUPAC International Chemical Identifier (InChI) line notation.' \n", + "Data term 'mf' has def 'Chemical structure specified by Molecular Formula (MF), including a count of each element in a compound.' \n", + "Data term 'InChIKey' has def 'The InChIKey (hashed InChI) is a fixed length (25 character) condensed digital representation of an InChI chemical structure specification. It uniquely identifies a chemical compound.' \n", + "Data term 'nucleotide' has def 'Alphabet for a nucleotide sequence with possible ambiguity, unknown positions and non-sequence characters.' \n", + "Data term 'pure nucleotide' has def 'Alphabet for a nucleotide sequence with possible ambiguity and unknown positions but without non-sequence characters.' \n", + "Data term 'pure dna' has def 'Alphabet for a DNA sequence with possible ambiguity and unknown positions but without non-sequence characters.' \n", + "Data term 'pure rna' has def 'Alphabet for an RNA sequence with possible ambiguity and unknown positions but without non-sequence characters.' \n", + "Data term 'unambiguous pure nucleotide' has def 'Alphabet for a nucleotide sequence (characters ACGTU only) with possible unknown positions but without ambiguity or non-sequence characters .' \n", + "Data term 'dna' has def 'Alphabet for a DNA sequence with possible ambiguity, unknown positions and non-sequence characters.' \n", + "Data term 'unambiguous pure dna' has def 'Alphabet for a DNA sequence (characters ACGT only) with possible unknown positions but without ambiguity or non-sequence characters.' \n", + "Data term 'completely unambiguous pure dna' has def 'Alphabet for a DNA sequence (characters ACGT only) without unknown positions, ambiguity or non-sequence characters.' \n", + "Data term 'rna' has def 'Alphabet for an RNA sequence with possible ambiguity, unknown positions and non-sequence characters.' \n", + "Data term 'unambiguous pure rna sequence' has def 'Alphabet for an RNA sequence (characters ACGU only) with possible unknown positions but without ambiguity or non-sequence characters.' \n", + "Data term 'completely unambiguous pure rna sequence' has def 'Alphabet for an RNA sequence (characters ACGU only) without unknown positions, ambiguity or non-sequence characters.' \n", + "Data term 'completely unambiguous pure nucleotide' has def 'Alphabet for a nucleotide sequence (characters ACGTU only) without unknown positions, ambiguity or non-sequence characters .' \n", + "Data term 'protein' has def 'Alphabet for a protein sequence with possible ambiguity, unknown positions and non-sequence characters.' \n", + "Data term 'unambiguous pure protein' has def 'Alphabet for any protein sequence with possible unknown positions but without ambiguity or non-sequence characters.' \n", + "Data term 'pure protein' has def 'Alphabet for any protein sequence with possible ambiguity and unknown positions but without non-sequence characters.' \n", + "Data term 'completely unambiguous pure protein' has def 'Alphabet for any protein sequence without unknown positions, ambiguity or non-sequence characters.' \n", + "Data term 'EMBL feature location' has def 'Format for sequence positions (feature location) as used in DDBJ/EMBL/GenBank database.' \n", + "Data term 'quicktandem' has def 'Report format for tandem repeats in a nucleotide sequence (format generated by the Sanger Centre quicktandem program).' \n", + "Data term 'Sanger inverted repeats' has def 'Report format for inverted repeats in a nucleotide sequence (format generated by the Sanger Centre inverted program).' \n", + "Data term 'EMBOSS repeat' has def 'Report format for tandem repeats in a sequence (an EMBOSS report format).' \n", + "Data term 'est2genome format' has def 'Format of a report on exon-intron structure generated by EMBOSS est2genome.' \n", + "Data term 'restrict format' has def 'Report format for restriction enzyme recognition sites used by EMBOSS restrict program.' \n", + "Data term 'restover format' has def 'Report format for restriction enzyme recognition sites used by EMBOSS restover program.' \n", + "Data term 'REBASE restriction sites' has def 'Report format for restriction enzyme recognition sites used by REBASE database.' \n", + "Data term 'FASTA search results format' has def 'Format of results of a sequence database search using FASTA.' \n", + "Data term 'BLAST results' has def 'Format of results of a sequence database search using some variant of BLAST.' \n", + "Data term 'BLAST XML results format' has def 'XML format as produced by the NCBI Blast package.' \n", + "Data term 'BLAST XML v2 results format' has def 'XML format as produced by the NCBI Blast package v2.' \n", + "Data term 'mspcrunch' has def 'Format of results of a sequence database search using some variant of MSPCrunch.' \n", + "Data term 'Smith-Waterman format' has def 'Format of results of a sequence database search using some variant of Smith Waterman.' \n", + "Data term 'dhf' has def 'Format of EMBASSY domain hits file (DHF) of hits (sequences) with domain classification information.' \n", + "Data term 'lhf' has def 'Format of EMBASSY ligand hits file (LHF) of database hits (sequences) with ligand classification information.' \n", + "Data term 'InterPro hits format' has def 'Results format for searches of the InterPro database.' \n", + "Data term 'InterPro protein view report format' has def 'Format of results of a search of the InterPro database showing matches of query protein sequence(s) to InterPro entries.' \n", + "Data term 'InterPro match table format' has def 'Format of results of a search of the InterPro database showing matches between protein sequence(s) and signatures for an InterPro entry.' \n", + "Data term 'HMMER Dirichlet prior' has def 'Dirichlet distribution HMMER format.' \n", + "Data term 'MEME Dirichlet prior' has def 'Dirichlet distribution MEME format.' \n", + "Data term 'HMMER emission and transition' has def 'Format of a report from the HMMER package on the emission and transition counts of a hidden Markov model.' \n", + "Data term 'prosite-pattern' has def 'Format of a regular expression pattern from the Prosite database.' \n", + "Data term 'EMBOSS sequence pattern' has def 'Format of an EMBOSS sequence pattern.' \n", + "Data term 'meme-motif' has def 'A motif in the format generated by the MEME program.' \n", + "Data term 'prosite-profile' has def 'Sequence profile (sequence classifier) format used in the PROSITE database.' \n", + "Data term 'JASPAR format' has def 'A profile (sequence classifier) in the format used in the JASPAR database.' \n", + "Data term 'MEME background Markov model' has def 'Format of the model of random sequences used by MEME.' \n", + "Data term 'HMMER format' has def 'Format of a hidden Markov model representation used by the HMMER package.' \n", + "Data term 'HMMER2' has def 'HMMER profile HMM file for HMMER versions 2.x.' \n", + "Data term 'HMMER3' has def 'HMMER profile HMM file for HMMER versions 3.x.' \n", + "Data term 'HMMER-aln' has def 'FASTA-style format for multiple sequences aligned by HMMER package to an HMM.' \n", + "Data term 'DIALIGN format' has def 'Format of multiple sequences aligned by DIALIGN package.' \n", + "Data term 'daf' has def 'EMBASSY 'domain alignment file' (DAF) format, containing a sequence alignment of protein domains belonging to the same SCOP or CATH family.' \n", + "Data term 'Sequence-MEME profile alignment' has def 'Format for alignment of molecular sequences to MEME profiles (position-dependent scoring matrices) as generated by the MAST tool from the MEME package.' \n", + "Data term 'HMMER profile alignment (sequences versus HMMs)' has def 'Format used by the HMMER package for an alignment of a sequence against a hidden Markov model database.' \n", + "Data term 'HMMER profile alignment (HMM versus sequences)' has def 'Format used by the HMMER package for of an alignment of a hidden Markov model against a sequence database.' \n", + "Data term 'Phylip distance matrix' has def 'Format of PHYLIP phylogenetic distance matrix data.' \n", + "Data term 'ClustalW dendrogram' has def 'Dendrogram (tree file) format generated by ClustalW.' \n", + "Data term 'Phylip tree raw' has def 'Raw data file format used by Phylip from which a phylogenetic tree is directly generated or plotted.' \n", + "Data term 'Phylip continuous quantitative characters' has def 'PHYLIP file format for continuous quantitative character data.' \n", + "Data term 'Phylip character frequencies format' has def 'PHYLIP file format for phylogenetics character frequency data.' \n", + "Data term 'Phylip discrete states format' has def 'Format of PHYLIP discrete states data.' \n", + "Data term 'Phylip cliques format' has def 'Format of PHYLIP cliques data.' \n", + "Data term 'Phylip tree format' has def 'Phylogenetic tree data format used by the PHYLIP program.' \n", + "Data term 'TreeBASE format' has def 'The format of an entry from the TreeBASE database of phylogenetic data.' \n", + "Data term 'TreeFam format' has def 'The format of an entry from the TreeFam database of phylogenetic data.' \n", + "Data term 'Phylip tree distance format' has def 'Format for distances, such as Branch Score distance, between two or more phylogenetic trees as used by the Phylip package.' \n", + "Data term 'dssp' has def 'Format of an entry from the DSSP database (Dictionary of Secondary Structure in Proteins).' \n", + "Data term 'hssp' has def 'Entry format of the HSSP database (Homology-derived Secondary Structure in Proteins).' \n", + "Data term 'Dot-bracket format' has def 'Format of RNA secondary structure in dot-bracket notation, originally generated by the Vienna RNA package/server.' \n", + "Data term 'Vienna local RNA secondary structure format' has def 'Format of local RNA secondary structure components with free energy values, generated by the Vienna RNA package/server.' \n", + "Data term 'PDB' has def 'Entry format of PDB database in PDB format.' \n", + "Data term 'mmCIF' has def 'Entry format of PDB database in mmCIF format.' \n", + "Data term 'aaindex' has def 'Amino acid index format used by the AAindex database.' \n", + "Data term 'Pcons report format' has def 'Format of output of the Pcons Model Quality Assessment Program (MQAP).' \n", + "Data term 'ProQ report format' has def 'Format of output of the ProQ protein model quality predictor.' \n", + "Data term 'findkm' has def 'A report format for the kinetics of enzyme-catalysed reaction(s) in a format generated by EMBOSS findkm. This includes Michaelis Menten plot, Hanes Woolf plot, Michaelis Menten constant (Km) and maximum velocity (Vmax).' \n", + "Data term 'Primer3 primer' has def 'Report format on PCR primers and hybridisation oligos as generated by Whitehead primer3 program.' \n", + "Data term 'mira' has def 'Format of MIRA sequence trace information file.' \n", + "Data term 'CAF' has def 'Common Assembly Format (CAF). A sequence assembly format including contigs, base-call qualities, and other metadata.' \n", + "Data term 'EXP' has def 'Sequence assembly project file EXP format.' \n", + "Data term 'PHD' has def 'PHD sequence trace format to store serialised chromatogram data (reads).' \n", + "Data term 'dat' has def 'Format of Affymetrix data file of raw image data.' \n", + "Data term 'cel' has def 'Format of Affymetrix data file of information about (raw) expression levels of the individual probes.' \n", + "Data term 'affymetrix' has def 'Format of affymetrix gene cluster files (hc-genes.txt, hc-chips.txt) from hierarchical clustering.' \n", + "Data term 'affymetrix-exp' has def 'Affymetrix data file format for information about experimental conditions and protocols.' \n", + "Data term 'CHP' has def 'Format of Affymetrix data file of information about (normalised) expression levels of the individual probes.' \n", + "Data term 'HET group dictionary entry format' has def 'The format of an entry from the HET group dictionary (HET groups from PDB files).' \n", + "Data term 'PubMed citation' has def 'Format of bibliographic reference as used by the PubMed database.' \n", + "Data term 'Medline Display Format' has def 'Format for abstracts of scientific articles from the Medline database.' \n", + "Data term 'CiteXplore-core' has def 'CiteXplore 'core' citation format including title, journal, authors and abstract.' \n", + "Data term 'CiteXplore-all' has def 'CiteXplore 'all' citation format includes all known details such as Mesh terms and cross-references.' \n", + "Data term 'pmc' has def 'Article format of the PubMed Central database.' \n", + "Data term 'OSCAR format' has def 'OSCAR format of annotated chemical text.' \n", + "Data term 'PlasMapper TextMap' has def 'Map of a plasmid (circular DNA) in PlasMapper TextMap format.' \n", + "Data term 'newick' has def 'Phylogenetic tree Newick (text) format.' \n", + "Data term 'TreeCon format' has def 'Phylogenetic tree TreeCon (text) format.' \n", + "Data term 'Nexus format' has def 'Phylogenetic tree Nexus (text) format.' \n", + "Data term 'acedb' has def 'ACEDB sequence format.' \n", + "Data term 'codata' has def 'Codata entry format.' \n", + "Data term 'Staden experiment format' has def 'Staden experiment file format.' \n", + "Data term 'fitch program' has def 'Fitch program format.' \n", + "Data term 'GCG' has def 'GCG sequence file format.' \n", + "Data term 'hennig86' has def 'Hennig86 output sequence format.' \n", + "Data term 'ig' has def 'Intelligenetics sequence format.' \n", + "Data term 'igstrict' has def 'Intelligenetics sequence format (strict version).' \n", + "Data term 'jackknifer' has def 'Jackknifer interleaved and non-interleaved sequence format.' \n", + "Data term 'mase format' has def 'Mase program sequence format.' \n", + "Data term 'mega-seq' has def 'Mega interleaved and non-interleaved sequence format.' \n", + "Data term 'nbrf/pir' has def 'NBRF/PIR entry sequence format.' \n", + "Data term 'nexus-seq' has def 'Nexus/paup interleaved sequence format.' \n", + "Data term 'pdbatom' has def 'PDB sequence format (ATOM lines).' \n", + "Data term 'pdbatomnuc' has def 'PDB nucleotide sequence format (ATOM lines).' \n", + "Data term 'pdbseqresnuc' has def 'PDB nucleotide sequence format (SEQRES lines).' \n", + "Data term 'pdbseqres' has def 'PDB sequence format (SEQRES lines).' \n", + "Data term 'raw' has def 'Raw sequence format with no non-sequence characters.' \n", + "Data term 'refseqp' has def 'Refseq protein entry sequence format.' \n", + "Data term 'Staden format' has def 'Staden suite sequence format.' \n", + "Data term 'Stockholm format' has def 'Stockholm multiple sequence alignment format (used by Pfam and Rfam).' \n", + "Data term 'strider format' has def 'DNA strider output sequence format.' \n", + "Data term 'plain text format (unformatted)' has def 'Plain text sequence format (essentially unformatted).' \n", + "Data term 'ASN.1 sequence format' has def 'NCBI ASN.1-based sequence format.' \n", + "Data term 'debug-seq' has def 'EMBOSS debugging trace sequence format of full internal data content.' \n", + "Data term 'jackknifernon' has def 'Jackknifer output sequence non-interleaved format.' \n", + "Data term 'nexusnon' has def 'Nexus/paup non-interleaved sequence format.' \n", + "Data term 'debug-feat' has def 'EMBOSS debugging trace feature format of full internal data content.' \n", + "Data term 'ClustalW format' has def 'ClustalW format for (aligned) sequences.' \n", + "Data term 'debug' has def 'EMBOSS alignment format for debugging trace of full internal data content.' \n", + "Data term 'match' has def 'Alignment format for start and end of matches between sequence pairs.' \n", + "Data term 'scores format' has def 'Alignment format for score values for pairs of sequences.' \n", + "Data term 'selex' has def 'SELEX format for (aligned) sequences.' \n", + "Data term 'EMBOSS simple format' has def 'EMBOSS simple multiple alignment format.' \n", + "Data term 'srs format' has def 'Simple multiple sequence (alignment) format for SRS.' \n", + "Data term 'srspair' has def 'Simple sequence pair (alignment) format for SRS.' \n", + "Data term 'T-Coffee format' has def 'T-Coffee program alignment format.' \n", + "Data term 'TreeCon-seq' has def 'Treecon format for (aligned) sequences.' \n", + "Data term 'pure' has def 'Alphabet for molecular sequence with possible unknown positions but without non-sequence characters.' \n", + "Data term 'unambiguous pure' has def 'Alphabet for a molecular sequence with possible unknown positions but without ambiguity or non-sequence characters.' \n", + "Data term 'completely unambiguous pure' has def 'Alphabet for a molecular sequence without unknown positions, ambiguity or non-sequence characters.' \n", + "Data term 'unpure' has def 'Alphabet for a molecular sequence with possible unknown positions but possibly with non-sequence characters.' \n", + "Data term 'consensus' has def 'Alphabet for the consensus of two or more molecular sequences.' \n", + "Data term 'unambiguous sequence' has def 'Alphabet for a molecular sequence with possible unknown positions but without ambiguity characters.' \n", + "Data term 'ambiguous' has def 'Alphabet for a molecular sequence with possible unknown positions and possible ambiguity characters.' \n", + "Data term 'EMBL-like (text)' has def 'A text format resembling EMBL entry format.' \n", + "Data term 'EMBL format' has def 'EMBL entry format.' \n", + "Data term 'geneseq' has def 'Geneseq sequence format.' \n", + "Data term 'FASTQ-like format (text)' has def 'A text format resembling FASTQ short read format.' \n", + "Data term 'FASTQ' has def 'FASTQ short read format ignoring quality scores.' \n", + "Data term 'FASTQ-illumina' has def 'FASTQ Illumina 1.3 short read format.' \n", + "Data term 'qualillumina' has def 'FASTQ format subset for Phred sequencing quality score data only (no sequences) from Illumina 1.5 and before Illumina 1.8.' \n", + "Data term 'FASTQ-sanger' has def 'FASTQ short read format with phred quality.' \n", + "Data term 'FASTQ-solexa' has def 'FASTQ Solexa/Illumina 1.0 short read format.' \n", + "Data term 'qualsolexa' has def 'FASTQ format subset for Phred sequencing quality score data only (no sequences) for Solexa/Illumina 1.0 format.' \n", + "Data term 'qual' has def 'FASTQ format subset for Phred sequencing quality score data only (no sequences).' \n", + "Data term 'qualsolid' has def 'FASTQ format subset for Phred sequencing quality score data only (no sequences) for SOLiD data.' \n", + "Data term 'qual454' has def 'FASTQ format subset for Phred sequencing quality score data only (no sequences) from 454 sequencers.' \n", + "Data term 'UniProt-like (text)' has def 'A text sequence format resembling uniprotkb entry format.' \n", + "Data term 'UniProtKB format' has def 'UniProtKB entry sequence format.' \n", + "Data term 'medline' has def 'Abstract format used by MedLine database.' \n", + "Data term 'FASTA-like (text)' has def 'A text format resembling FASTA format.' \n", + "Data term 'dbid' has def 'Fasta format variant with database name before ID.' \n", + "Data term 'FASTA' has def 'FASTA format including NCBI-style IDs.' \n", + "Data term 'giFASTA format' has def 'FASTA sequence format including NCBI-style GIs.' \n", + "Data term 'Pearson format' has def 'Plain old FASTA sequence format (unspecified format for IDs).' \n", + "Data term 'NCBI format' has def 'NCBI FASTA sequence format with NCBI-style IDs.' \n", + "Data term 'FASTA-aln' has def 'Fasta format for (aligned) sequences.' \n", + "Data term 'A2M' has def 'The A2M format is used as the primary format for multiple alignments of protein or nucleic-acid sequences in the SAM suite of tools. It is a small modification of FASTA format for sequences and is compatible with most tools that read FASTA.' \n", + "Data term 'csfasta' has def 'Color space FASTA format sequence variant.' \n", + "Data term 'XMFA' has def 'XMFA format stands for eXtended Multi-FastA format and is used to store collinear sub-alignments that constitute a single genome alignment.' \n", + "Data term 'GenBank-like format (text)' has def 'A text format resembling GenBank entry (plain text) format.' \n", + "Data term 'GenBank format' has def 'Genbank entry format.' \n", + "Data term 'genpept' has def 'Genpept protein entry format.' \n", + "Data term 'GFF' has def 'GFF feature format (of indeterminate version).' \n", + "Data term 'GFF2' has def 'General Feature Format (GFF) of sequence features.' \n", + "Data term 'GFF2-seq' has def 'GFF feature file format with sequence in the header.' \n", + "Data term 'GFF3' has def 'Generic Feature Format version 3 (GFF3) of sequence features.' \n", + "Data term 'GFF3-seq' has def 'GFF3 feature file format with sequence.' \n", + "Data term 'GVF' has def 'Genome Variation Format (GVF). A GFF3-compatible format with defined header and attribute tags for sequence variation.' \n", + "Data term 'mirGFF3' has def 'mirGFF3 is a common format for microRNA data resulting from small-RNA RNA-Seq workflows.' \n", + "Data term 'GTF' has def 'Gene Transfer Format (GTF), a restricted version of GFF.' \n", + "Data term 'OBO' has def 'OBO ontology text format.' \n", + "Data term 'completely unambiguous' has def 'Alphabet for a molecular sequence without any unknown positions or ambiguity characters.' \n", + "Data term 'SAM' has def 'Sequence Alignment/Map (SAM) format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data.' \n", + "Data term 'markx0 variant' has def 'Some variant of Pearson MARKX alignment format.' \n", + "Data term 'markx0' has def 'Pearson MARKX0 alignment format.' \n", + "Data term 'markx1' has def 'Pearson MARKX1 alignment format.' \n", + "Data term 'markx10' has def 'Pearson MARKX10 alignment format.' \n", + "Data term 'markx2' has def 'Pearson MARKX2 alignment format.' \n", + "Data term 'markx3' has def 'Pearson MARKX3 alignment format.' \n", + "Data term 'mega variant' has def 'Some variant of Mega format for (typically aligned) sequences.' \n", + "Data term 'mega' has def 'Mega format for (typically aligned) sequences.' \n", + "Data term 'meganon' has def 'Mega non-interleaved format for (typically aligned) sequences.' \n", + "Data term 'Phylip format variant' has def 'Some variant of Phylip format for (aligned) sequences.' \n", + "Data term 'PHYLIP format' has def 'Phylip format for (aligned) sequences.' \n", + "Data term 'PHYLIP sequential' has def 'Phylip non-interleaved format for (aligned) sequences.' \n", + "Data term 'Relaxed PHYLIP Interleaved' has def 'Phylip multiple alignment sequence format, less stringent than PHYLIP format.' \n", + "Data term 'Relaxed PHYLIP Sequential' has def 'Phylip multiple alignment sequence format, less stringent than PHYLIP sequential format (format_1998).' \n", + "Data term 'ACE' has def 'ACE sequence assembly format including contigs, base-call qualities, and other metadata (version Aug 1998 and onwards).' \n", + "Data term 'BED' has def 'Browser Extensible Data (BED) format of sequence annotation track, typically to be displayed in a genome browser.' \n", + "Data term 'bedstrict' has def 'Browser Extensible Data (BED) format of sequence annotation track that strictly does not contain non-standard fields beyond the first 3 columns.' \n", + "Data term 'bed6' has def 'BED file format where each feature is described by chromosome, start, end, name, score, and strand.' \n", + "Data term 'ENCODE peak format' has def 'Human ENCODE peak format.' \n", + "Data term 'ENCODE narrow peak format' has def 'Human ENCODE narrow peak format.' \n", + "Data term 'ENCODE broad peak format' has def 'Human ENCODE broad peak format.' \n", + "Data term 'bed12' has def 'A BED file where each feature is described by all twelve columns.' \n", + "Data term 'chrominfo' has def 'Tabular format of chromosome names and sizes used by Galaxy.' \n", + "Data term 'WIG' has def 'Wiggle format (WIG) of a sequence annotation track that consists of a value for each sequence position. Typically to be displayed in a genome browser.' \n", + "Data term 'PSL' has def 'PSL format of alignments, typically generated by BLAT or psLayout. Can be displayed in a genome browser like a sequence annotation track.' \n", + "Data term 'MAF' has def 'Multiple Alignment Format (MAF) supporting alignments of whole genomes with rearrangements, directions, multiple pieces to the alignment, and so forth.' \n", + "Data term 'genePred' has def 'genePred table format for gene prediction tracks.' \n", + "Data term 'pgSnp' has def 'Personal Genome SNP (pgSnp) format for sequence variation tracks (indels and polymorphisms), supported by the UCSC Genome Browser.' \n", + "Data term 'axt' has def 'axt format of alignments, typically produced from BLASTZ.' \n", + "Data term 'LAV' has def 'LAV format of alignments generated by BLASTZ and LASTZ.' \n", + "Data term 'Pileup' has def 'Pileup format of alignment of sequences (e.g. sequencing reads) to (a) reference sequence(s). Contains aligned bases per base of the reference sequence(s).' \n", + "Data term 'VCF' has def 'Variant Call Format (VCF) is tabular format for storing genomic sequence variations.' \n", + "Data term 'gVCF' has def 'Genomic Variant Call Format (gVCF) is a version of VCF that includes not only the positions that are variant when compared to a reference genome, but also the non-variant positions as ranges, including metrics of confidence that the positions in the range are actually non-variant e.g. minimum read-depth and genotype quality.' \n", + "Data term 'GTrack' has def 'GTrack is a generic and optimised tabular format for genome or sequence feature tracks. GTrack unifies the power of other track formats (e.g. GFF3, BED, WIG), and while optimised in size, adds more flexibility, customisation, and automation (\"machine understandability\").' \n", + "Data term 'Cytoband format' has def 'Cytoband format for chromosome cytobands.' \n", + "Data term 'PSI MI TAB (MITAB)' has def 'Tabular Molecular Interaction format (MITAB), standardised by HUPO PSI MI.' \n", + "Data term 'OWL Functional Syntax' has def 'A human-readable encoding for the Web Ontology Language (OWL).' \n", + "Data term 'Manchester OWL Syntax' has def 'A syntax for writing OWL class expressions.' \n", + "Data term 'KRSS2 Syntax' has def 'A superset of the \"Description-Logic Knowledge Representation System Specification from the KRSS Group of the ARPA Knowledge Sharing Effort\".' \n", + "Data term 'Turtle' has def 'The Terse RDF Triple Language (Turtle) is a human-friendly serialisation format for RDF (Resource Description Framework) graphs.' \n", + "Data term 'N-Triples' has def 'A plain text serialisation format for RDF (Resource Description Framework) graphs, and a subset of the Turtle (Terse RDF Triple Language) format.' \n", + "Data term 'Notation3' has def 'A shorthand non-XML serialisation of Resource Description Framework model, designed with human-readability in mind.' \n", + "Data term 'PED/MAP' has def 'The PED/MAP file describes data used by the Plink package.' \n", + "Data term 'MAP' has def 'The MAP file describes SNPs and is used by the Plink package.' \n", + "Data term 'PED' has def 'The PED file describes individuals and genetic data and is used by the Plink package.' \n", + "Data term 'CT' has def 'File format of a CT (Connectivity Table) file from the RNAstructure package.' \n", + "Data term 'SS' has def 'XRNA old input style format.' \n", + "Data term 'GDE' has def 'Format for the Genetic Data Environment (GDE).' \n", + "Data term 'Cytoscape input file format' has def 'Format of the cytoscape input file of gene expression ratios or values are specified over one or more experiments.' \n", + "Data term 'GCG format variant' has def 'Some format based on the GCG format.' \n", + "Data term 'GCG MSF' has def 'GCG MSF (multiple sequence file) file format.' \n", + "Data term 'RSF' has def 'Rich sequence format.' \n", + "Data term 'Ensembl variation file format' has def 'Ensembl standard format for variation data.' \n", + "Data term 'mhd' has def 'Text-based tagged file format for medical images generated using the MetaImage software package.' \n", + "Data term 'nrrd' has def 'Nearly Raw Rasta Data format designed to support scientific visualisation and image processing involving N-dimensional raster data.' \n", + "Data term 'R file format' has def 'File format used for scripts written in the R programming language for execution within the R software environment, typically for statistical computation and graphics.' \n", + "Data term 'SPSS' has def 'File format used for scripts for the Statistical Package for the Social Sciences.' \n", + "Data term 'rcc' has def 'Reporter Code Count-A data file (.csv) output by the Nanostring nCounter Digital Analyzer, which contains gene sample information, probe information and probe counts.' \n", + "Data term 'arff' has def 'ARFF (Attribute-Relation File Format) is an ASCII text file format that describes a list of instances sharing a set of attributes.' \n", + "Data term 'afg' has def 'AFG is a single text-based file assembly format that holds read and consensus information together.' \n", + "Data term 'bedgraph' has def 'The bedGraph format allows display of continuous-valued data in track format. This display type is useful for probability scores and transcriptome data.' \n", + "Data term 'customtrack' has def 'Custom Sequence annotation track format used by Galaxy.' \n", + "Data term 'mzTab' has def 'mzTab is a tab-delimited format for mass spectrometry-based proteomics and metabolomics results.' \n", + "Data term 'ISA-TAB' has def 'The Investigation / Study / Assay (ISA) tab-delimited (TAB) format incorporates metadata from experiments employing a combination of technologies.' \n", + "Data term 'SBtab' has def 'SBtab is a tabular format for biochemical network models.' \n", + "Data term 'BEL' has def 'Biological Expression Language (BEL) is a textual format for representing scientific findings in life sciences in a computable form.' \n", + "Data term 'AGP' has def 'AGP is a tabular format for a sequence assembly (a contig, a scaffold/supercontig, or a chromosome).' \n", + "Data term 'PS' has def 'PostScript format.' \n", + "Data term 'EPS' has def 'Encapsulated PostScript format.' \n", + "Data term 'GCT/Res format' has def 'Tab-delimited text files of GenePattern that contain a column for each sample, a row for each gene, and an expression value for each gene in each sample.' \n", + "Data term 'Mascot .dat file' has def '\"Raw\" result file from Mascot database search.' \n", + "Data term 'MaxQuant APL peaklist format' has def 'Format of peak list files from Andromeda search engine (MaxQuant) that consist of arbitrarily many spectra.' \n", + "Data term 'LocARNA PP' has def 'The LocARNA PP format combines sequence or alignment information and (respectively, single or consensus) ensemble probabilities into an PP 2.0 record.' \n", + "Data term 'dbGaP format' has def 'Input format used by the Database of Genotypes and Phenotypes (dbGaP).' \n", + "Data term 'BIOM format' has def 'The BIological Observation Matrix (BIOM) is a format for representing biological sample by observation contingency tables in broad areas of comparative omics. The primary use of this format is to represent OTU tables and metagenome tables.' \n", + "Data term 'DSV' has def 'Tabular data represented as values in a text file delimited by some character.' \n", + "Data term 'TSV' has def 'Tabular data represented as tab-separated values in a text file.' \n", + "Data term 'MAGE-TAB' has def 'MAGE-TAB textual format for microarray expression data, standardised by MGED (now FGED).' \n", + "Data term 'WEGO' has def 'WEGO native format used by the Web Gene Ontology Annotation Plot application. Tab-delimited format with gene names and others GO IDs (columns) with one annotation record per line.' \n", + "Data term 'RPKM' has def 'Tab-delimited format for gene expression levels table, calculated as Reads Per Kilobase per Million (RPKM) mapped reads.' \n", + "Data term 'PEtab' has def 'A data format for specifying parameter estimation problems in systems biology.' \n", + "Data term 'CSV' has def 'Tabular data represented as comma-separated values in a text file.' \n", + "Data term 'SEQUEST .out file' has def '\"Raw\" result file from SEQUEST database search.' \n", + "Data term 'GSuite' has def 'GSuite is a tabular format for collections of genome or sequence feature tracks, suitable for integrative multi-track analysis. GSuite contains links to genome/sequence tracks, with additional metadata.' \n", + "Data term 'MCPD' has def 'The FAO/Bioversity/IPGRI Multi-Crop Passport Descriptors (MCPD) is an international standard format for exchange of germplasm information.' \n", + "Data term 'PubTator format' has def 'Native textual export format of annotated scientific text from PubTator.' \n", + "Data term 'BioNLP Shared Task format' has def 'A family of similar formats of text annotation, used by BRAT and other tools, known as BioNLP Shared Task format (BioNLP 2009 Shared Task on Event Extraction, BioNLP Shared Task 2011, BioNLP Shared Task 2013), BRAT format, BRAT standoff format, and similar.' \n", + "Data term 'SQL' has def 'SQL (Structured Query Language) is the de-facto standard query language (format of queries) for querying and manipulating data in relational databases.' \n", + "Data term 'XQuery' has def 'XQuery (XML Query) is a query language (format of queries) for querying and manipulating structured and unstructured data, usually in the form of XML, text, and with vendor-specific extensions for other data formats (JSON, binary, etc.).' \n", + "Data term 'SPARQL' has def 'SPARQL (SPARQL Protocol and RDF Query Language) is a semantic query language for querying and manipulating data stored in Resource Description Framework (RDF) format.' \n", + "Data term 'GEN' has def 'The GEN file format contains genetic data and describes SNPs.' \n", + "Data term 'SAMPLE file format' has def 'The SAMPLE file format contains information about each individual i.e. individual IDs, covariates, phenotypes and missing data proportions, from a GWAS study.' \n", + "Data term 'SDF' has def 'SDF is one of a family of chemical-data file formats developed by MDL Information Systems; it is intended especially for structural information.' \n", + "Data term 'Molfile' has def 'An MDL Molfile is a file format for holding information about the atoms, bonds, connectivity and coordinates of a molecule.' \n", + "Data term 'Mol2' has def 'Complete, portable representation of a SYBYL molecule. ASCII file which contains all the information needed to reconstruct a SYBYL molecule.' \n", + "Data term 'latex' has def 'format for the LaTeX document preparation system.' \n", + "Data term 'ELAND format' has def 'Tab-delimited text file format used by Eland - the read-mapping program distributed by Illumina with its sequencing analysis pipeline - which maps short Solexa sequence reads to the human reference genome.' \n", + "Data term 'GML' has def 'GML (Graph Modeling Language) is a text file format supporting network data with a very easy syntax. It is used by Graphlet, Pajek, yEd, LEDA and NetworkX.' \n", + "Data term 'FASTG' has def 'FASTG is a format for faithfully representing genome assemblies in the face of allelic polymorphism and assembly uncertainty.' \n", + "Data term 'proBED' has def '. proBED is an adaptation of BED (format_3003), which was extended to meet specific requirements entailed by proteomics data.' \n", + "Data term 'GPR' has def 'GenePix Results (GPR) text file format developed by Axon Instruments that is used to save GenePix Results data.' \n", + "Data term 'JCAMP-DX' has def 'A standardized file format for data exchange in mass spectrometry, initially developed for infrared spectrometry.' \n", + "Data term 'XYZ' has def 'The XYZ chemical file format is widely supported by many programs, although many slightly different XYZ file formats coexist (Tinker XYZ, UniChem XYZ, etc.). Basic information stored for each atom in the system are x, y and z coordinates and atom element/atomic number.' \n", + "Data term 'mdcrd' has def 'AMBER trajectory (also called mdcrd), with 10 coordinates per line and format F8.3 (fixed point notation with field width 8 and 3 decimal places).' \n", + "Data term 'GROMACS top' has def 'GROMACS MD package top textual files define an entire structure system topology, either directly, or by including itp files.' \n", + "Data term 'AMBER top' has def 'AMBER Prmtop file (version 7) is a structure topology text file divided in several sections designed to be parsed easily using simple Fortran code. Each section contains particular topology information, such as atom name, charge, mass, angles, dihedrals, etc.' \n", + "Data term 'PSF' has def 'X-Plor Protein Structure Files (PSF) are structure topology files used by NAMD and CHARMM molecular simulations programs. PSF files contain six main sections of interest: atoms, bonds, angles, dihedrals, improper dihedrals (force terms used to maintain planarity) and cross-terms.' \n", + "Data term 'GROMACS itp' has def 'GROMACS itp files (include topology) contain structure topology information, and are typically included in GROMACS topology files (GROMACS top). Itp files are used to define individual (or multiple) components of a topology as a separate file. This is particularly useful if there is a molecule that is used frequently, and also reduces the size of the system topology file, splitting it in different parts.' \n", + "Data term 'RST' has def 'AMBER coordinate/restart file with 6 coordinates per line and decimal format F12.7 (fixed point notation with field width 12 and 7 decimal places).' \n", + "Data term 'CHARMM rtf' has def 'Format of CHARMM Residue Topology Files (RTF), which define groups by including the atoms, the properties of the group, and bond and charge information.' \n", + "Data term 'AMBER frcmod' has def 'AMBER frcmod (Force field Modification) is a file format to store any modification to the standard force field needed for a particular molecule to be properly represented in the simulation.' \n", + "Data term 'AMBER off' has def 'AMBER Object File Format library files (OFF library files) store residue libraries (forcefield residue parameters).' \n", + "Data term 'NMReDATA' has def 'MReData is a text based data standard for processed NMR data. It is relying on SDF molecule data and allows to store assignments of NMR peaks to molecule features. The NMR-extracted data (or \"NMReDATA\") includes: Chemical shift,scalar coupling, 2D correlation, assignment, etc.' \n", + "Data term 'BpForms' has def 'BpForms is a string format for concretely representing the primary structures of biopolymers, including DNA, RNA, and proteins that include non-canonical nucleic and amino acids. See https://www.bpforms.org for more information.' \n", + "Data term 'trr' has def 'Format of trr files that contain the trajectory of a simulation experiment used by GROMACS.' \n", + "Data term 'MTX' has def 'The Matrix Market matrix (MTX) format stores numerical or pattern matrices in a dense (array format) or sparse (coordinate format) representation.' \n", + "Data term 'BcForms' has def 'BcForms is a format for abstractly describing the molecular structure (atoms and bonds) of macromolecular complexes as a collection of subunits and crosslinks. Each subunit can be described with BpForms (http://edamontology.org/format_3909) or SMILES (http://edamontology.org/data_2301). BcForms uses an ontology of crosslinks to abstract the chemical details of crosslinks from the descriptions of complexes (see https://bpforms.org/crosslink.html).' \n", + "Data term 'N-Quads' has def 'N-Quads is a line-based, plain text format for encoding an RDF dataset. It includes information about the graph each triple belongs to.' \n", + "Data term 'BNGL' has def 'BioNetGen is a format for the specification and simulation of rule-based models of biochemical systems, including signal transduction, metabolic, and genetic regulatory networks.' \n", + "Data term 'GFA 1' has def 'Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology.' \n", + "Data term 'GFA 2' has def 'Graphical Fragment Assembly captures sequence graphs as the product of an assembly, a representation of variation in genomes, splice graphs in genes, or even overlap between reads from long-read sequencing technology. GFA2 is an update of GFA1 which is not compatible with GFA1.' \n", + "Data term 'CONTIG' has def 'The CONTIG format used for output of the SOAPdenovo alignment program. It contains contig sequences generated without using mate pair information.' \n", + "Data term 'CHAIN' has def 'The CHAIN format describes a pairwise alignment that allow gaps in both sequences simultaneously and is used by the UCSC Genome Browser.' \n", + "Data term 'NET' has def 'The NET file format is used to describe the data that underlie the net alignment annotations in the UCSC Genome Browser.' \n", + "Data term 'QMAP' has def 'Format of QMAP files generated for methylation data from an internal BGI pipeline.' \n", + "Data term 'gxformat2' has def 'An emerging format for high-level Galaxy workflow description.' \n", + "Data term 'CIGAR format' has def 'Compact Idiosyncratic Gapped Alignment Report format is a compressed (run-length encoded) pairwise alignment format. It is useful for representing long (e.g. genomic) pairwise alignments.' \n", + "Data term 'Python script' has def 'Format for scripts writtenin Python - a widely used high-level programming language for general-purpose programming.' \n", + "Data term 'Perl script' has def 'Format for scripts written in Perl - a family of high-level, general-purpose, interpreted, dynamic programming languages.' \n", + "Data term 'R script' has def 'Format for scripts written in the R language - an open source programming language and software environment for statistical computing and graphics that is supported by the R Foundation for Statistical Computing.' \n", + "Data term 'R markdown' has def 'A file format for making dynamic documents (R Markdown scripts) with the R language.' \n", + "Data term 'Configuration file format' has def 'A configuration file used by various programs to store settings that are specific to their respective software.' \n", + "Data term 'MATLAB script' has def 'The file format for MATLAB scripts or functions.' \n", + "Data term 'BioSimulators standard for command-line interfaces for biosimulation tools' has def 'Outlines the syntax and semantics of the input and output arguments for command-line interfaces for biosimulation tools.' \n", + "Data term 'PQR' has def 'Data format derived from the standard PDB format, which enables user to incorporate parameters for charge and radius to the existing PDB data file.' \n", + "Data term 'PDBQT' has def 'Data format used in AutoDock 4 for storing atomic coordinates, partial atomic charges and AutoDock atom types for both receptors and ligands.' \n", + "Data term 'MSP' has def 'MSP is a data format for mass spectrometry data.' \n", + "Data term 'HTML' has def 'HTML format.' \n", + "Data term 'iHOP format' has def 'The format of iHOP (Information Hyperlinked over Proteins) text-mining result.' \n", + "Data term 'FASTA-HTML' has def 'FASTA format wrapped in HTML elements.' \n", + "Data term 'EMBL-HTML' has def 'EMBL entry format wrapped in HTML elements.' \n", + "Data term 'GenBank-HTML' has def 'Genbank entry format wrapped in HTML elements.' \n", + "Data term 'MHTML' has def 'MIME HTML format for Web pages, which can include external resources, including images, Flash animations and so on.' \n", + "Data term 'XML' has def 'eXtensible Markup Language (XML) format.' \n", + "Data term 'PDBML' has def 'Entry format of PDB database in PDBML (XML) format.' \n", + "Data term 'Taverna workflow format' has def 'Format of Taverna workflows.' \n", + "Data term 'DAS format' has def 'DAS sequence (XML) format (any type).' \n", + "Data term 'dasdna' has def 'DAS sequence (XML) format (nucleotide-only).' \n", + "Data term 'DASGFF' has def 'DAS GFF (XML) feature format.' \n", + "Data term 'STRING entry format (XML)' has def 'Entry format (XML) for the STRING database of protein interaction.' \n", + "Data term 'BioXSD (XML)' has def 'BioXSD-schema-based XML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, Web services, and object-oriented programming.' \n", + "Data term 'OBO-XML' has def 'OBO ontology XML format.' \n", + "Data term 'EMBL-like (XML)' has def 'An XML format resembling EMBL entry format.' \n", + "Data term 'EMBL format (XML)' has def 'An XML format for EMBL entries.' \n", + "Data term 'EMBLXML' has def 'XML format for EMBL entries.' \n", + "Data term 'cdsxml' has def 'Specific XML format for EMBL entries (only uses certain sections).' \n", + "Data term 'INSDSeq' has def 'INSDSeq provides the elements of a sequence as presented in the GenBank/EMBL/DDBJ-style flatfile formats, with a small amount of additional structure.' \n", + "Data term 'SBML' has def 'Systems Biology Markup Language (SBML), the standard XML format for models of biological processes such as for example metabolism, cell signaling, and gene regulation.' \n", + "Data term 'SBRML' has def 'Systems Biology Result Markup Language (SBRML), the standard XML format for simulated or calculated results (e.g. trajectories) of systems biology models.' \n", + "Data term 'EBI Application Result XML' has def 'EBI Application Result XML is a format returned by sequence similarity search Web services at EBI.' \n", + "Data term 'PSI MI XML (MIF)' has def 'XML Molecular Interaction Format (MIF), standardised by HUPO PSI MI.' \n", + "Data term 'PSI-PAR' has def 'Protein affinity format (PSI-PAR), standardised by HUPO PSI MI. It is compatible with PSI MI XML (MIF) and uses the same XML Schema.' \n", + "Data term 'phyloXML' has def 'phyloXML is a standardised XML format for phylogenetic trees, networks, and associated data.' \n", + "Data term 'NeXML' has def 'NeXML is a standardised XML format for rich phyloinformatic data.' \n", + "Data term 'MAGE-ML' has def 'MAGE-ML XML format for microarray expression data, standardised by MGED (now FGED).' \n", + "Data term 'GCDML' has def 'GCDML XML format for genome and metagenome metadata according to MIGS/MIMS/MIMARKS information standards, standardised by the Genomic Standards Consortium (GSC).' \n", + "Data term 'CopasiML' has def 'CopasiML, the native format of COPASI.' \n", + "Data term 'CellML' has def 'CellML, the format for mathematical models of biological and other networks.' \n", + "Data term 'mzML' has def 'mzML format for raw spectrometer output data, standardised by HUPO PSI MSS.' \n", + "Data term 'TraML' has def 'TraML (Transition Markup Language) is the format for mass spectrometry transitions, standardised by HUPO PSI MSS.' \n", + "Data term 'mzIdentML' has def 'mzIdentML is the exchange format for peptides and proteins identified from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of proteomics search engines.' \n", + "Data term 'mzQuantML' has def 'mzQuantML is the format for quantitation values associated with peptides, proteins and small molecules from mass spectra, standardised by HUPO PSI PI. It can be used for outputs of quantitation software for proteomics.' \n", + "Data term 'GelML' has def 'GelML is the format for describing the process of gel electrophoresis, standardised by HUPO PSI PS.' \n", + "Data term 'spML' has def 'spML is the format for describing proteomics sample processing, other than using gels, prior to mass spectrometric protein identification, standardised by HUPO PSI PS. It may also be applicable for metabolomics.' \n", + "Data term 'RDF/XML' has def 'Resource Description Framework (RDF) XML format.' \n", + "Data term 'OWL/XML' has def 'OWL ontology XML serialisation format.' \n", + "Data term 'RNAML' has def 'RNA Markup Language.' \n", + "Data term 'xls' has def 'Microsoft Excel spreadsheet format.' \n", + "Data term 'BSML' has def 'Bioinformatics Sequence Markup Language format.' \n", + "Data term 'docx' has def 'Microsoft Word format.' \n", + "Data term 'SVG' has def 'Scalable Vector Graphics (SVG) is an XML-based vector image format for two-dimensional graphics with support for interactivity and animation.' \n", + "Data term 'pepXML' has def 'Open data format for the storage, exchange, and processing of peptide sequence assignments of MS/MS scans, intended to provide a common data output format for many different MS/MS search engines and subsequent peptide-level analyses.' \n", + "Data term 'GPML' has def 'Graphical Pathway Markup Language (GPML) is an XML format used for exchanging biological pathways.' \n", + "Data term 'imzML metadata file' has def 'imzML metadata is a data format for mass spectrometry imaging metadata.' \n", + "Data term 'qcML' has def 'qcML is an XML format for quality-related data of mass spectrometry and other high-throughput measurements.' \n", + "Data term 'PRIDE XML' has def 'PRIDE XML is an XML format for mass spectra, peptide and protein identifications, and metadata about a corresponding measurement, sample, experiment.' \n", + "Data term 'SED-ML' has def 'Simulation Experiment Description Markup Language (SED-ML) is an XML format for encoding simulation setups, according to the MIASE (Minimum Information About a Simulation Experiment) requirements.' \n", + "Data term 'BCML' has def 'Biological Connection Markup Language (BCML) is an XML format for biological pathways.' \n", + "Data term 'BDML' has def 'Biological Dynamics Markup Language (BDML) is an XML format for quantitative data describing biological dynamics.' \n", + "Data term 'SBGN-ML' has def 'SBGN-ML is an XML format for Systems Biology Graphical Notation (SBGN) diagrams of biological pathways or networks.' \n", + "Data term 'X!Tandem XML' has def 'Output format used by X! series search engines that is based on the XML language BIOML.' \n", + "Data term 'SBOL' has def 'Synthetic Biology Open Language (SBOL) is an XML format for the specification and exchange of biological design information in synthetic biology.' \n", + "Data term 'PMML' has def 'PMML uses XML to represent mining models. The structure of the models is described by an XML Schema.' \n", + "Data term 'protXML' has def 'A format for storage, exchange, and processing of protein identifications created from ms/ms-derived peptide sequence data.' \n", + "Data term 'idXML' has def 'XML file format for files containing information about peptide identifications from mass spectrometry data analysis carried out with OpenMS.' \n", + "Data term 'UniProtKB XML' has def 'UniProtKB XML sequence features format is an XML format available for downloading UniProt entries.' \n", + "Data term 'BioC' has def 'BioC is a standardised XML format for sharing and integrating text data and annotations.' \n", + "Data term 'xsd' has def 'XML format for XML Schema.' \n", + "Data term 'VisML' has def 'Default XML format of VisANT, containing all the network information.' \n", + "Data term 'nmrML' has def 'nmrML is an MSI supported XML-based open access format for metabolomics NMR raw and processed spectral data. It is accompanies by an nmrCV (controlled vocabulary) to allow ontology-based annotations.' \n", + "Data term 'consensusXML' has def 'OpenMS format for grouping features in one map or across several maps.' \n", + "Data term 'featureXML' has def 'OpenMS format for quantitation results (LC/MS features).' \n", + "Data term 'mzData' has def 'Now deprecated data format of the HUPO Proteomics Standards Initiative. Replaced by mzML (format_3244).' \n", + "Data term 'TIDE TXT' has def 'Format supported by the Tide tool for identifying peptides from tandem mass spectra.' \n", + "Data term 'pptx' has def 'Microsoft Powerpoint format.' \n", + "Data term 'BEAST' has def 'XML input file format for BEAST Software (Bayesian Evolutionary Analysis Sampling Trees).' \n", + "Data term 'Chado-XML' has def 'Chado-XML format is a direct mapping of the Chado relational schema into XML.' \n", + "Data term 'HSAML' has def 'An alignment format generated by PRANK/PRANKSTER consisting of four elements: newick, nodes, selection and model.' \n", + "Data term 'InterProScan XML' has def 'Output xml file from the InterProScan sequence analysis application.' \n", + "Data term 'KGML' has def 'The KEGG Markup Language (KGML) is an exchange format of the KEGG pathway maps, which is converted from internally used KGML+ (KGML+SVG) format.' \n", + "Data term 'PubMed XML' has def 'XML format for collected entries from bibliographic databases MEDLINE and PubMed.' \n", + "Data term 'OrthoXML' has def 'OrthoXML is designed broadly to allow the storage and comparison of orthology data from any ortholog database. It establishes a structure for describing orthology relationships while still allowing flexibility for database-specific information to be encapsulated in the same format.' \n", + "Data term 'PSDML' has def 'Tree structure of Protein Sequence Database Markup Language generated using Matra software.' \n", + "Data term 'SeqXML' has def 'SeqXML is an XML Schema to describe biological sequences, developed by the Stockholm Bioinformatics Centre.' \n", + "Data term 'UniParc XML' has def 'XML format for the UniParc database.' \n", + "Data term 'UniRef XML' has def 'XML format for the UniRef reference clusters.' \n", + "Data term 'NeuroML' has def 'A model description language for computational neuroscience.' \n", + "Data term 'cml' has def 'Chemical Markup Language (CML) is an XML-based format for encoding detailed information about a wide range of chemical concepts.' \n", + "Data term 'Binary format' has def 'Binary format.' \n", + "Data term 'ABI' has def 'A format of raw sequence read data from an Applied Biosystems sequencing machine.' \n", + "Data term 'SCF' has def 'Staden Chromatogram Files format (SCF) of base-called sequence reads, qualities, and other metadata.' \n", + "Data term 'BAM' has def 'BAM format, the binary, BGZF-formatted compressed version of SAM format for alignment of nucleotide sequences (e.g. sequencing reads) to (a) reference sequence(s). May contain base-call and alignment qualities and other data.' \n", + "Data term 'AB1' has def 'AB1 binary format of raw DNA sequence reads (output of Applied Biosystems' sequencing analysis software). Contains an electropherogram and the DNA base sequence.' \n", + "Data term 'bigBed' has def 'bigBed format for large sequence annotation tracks, similar to textual BED format.' \n", + "Data term 'bigWig' has def 'bigWig format for large sequence annotation tracks that consist of a value for each sequence position. Similar to textual WIG format.' \n", + "Data term '2bit' has def '2bit binary format of nucleotide sequences using 2 bits per nucleotide. In addition encodes unknown nucleotides and lower-case 'masking'.' \n", + "Data term '.nib' has def '.nib (nibble) binary format of a nucleotide sequence using 4 bits per nucleotide (including unknown) and its lower-case 'masking'.' \n", + "Data term 'SRF' has def 'Sequence Read Format (SRF) of sequence trace data. Supports submission to the NCBI Short Read Archive.' \n", + "Data term 'ZTR' has def 'ZTR format for storing chromatogram data from DNA sequencing instruments.' \n", + "Data term 'BCF' has def 'BCF is the binary version of Variant Call Format (VCF) for sequence variation (indels, polymorphisms, structural variation).' \n", + "Data term 'SFF' has def 'Standard flowgram format (SFF) is a binary file format used to encode results of pyrosequencing from the 454 Life Sciences platform for high-throughput sequencing.' \n", + "Data term 'BAI' has def 'BAM indexing format.' \n", + "Data term 'CRAM' has def 'Reference-based compression of alignment format.' \n", + "Data term 'GIF' has def 'Graphics Interchange Format.' \n", + "Data term 'ebwt' has def 'Bowtie format for indexed reference genome for \"small\" genomes.' \n", + "Data term 'ebwtl' has def 'Bowtie format for indexed reference genome for \"large\" genomes.' \n", + "Data term 'PDF' has def 'Portable Document Format.' \n", + "Data term 'DICOM format' has def 'Medical image format corresponding to the Digital Imaging and Communications in Medicine (DICOM) standard.' \n", + "Data term 'nii' has def 'An open file format from the Neuroimaging Informatics Technology Initiative (NIfTI) commonly used to store brain imaging data obtained using Magnetic Resonance Imaging (MRI) methods.' \n", + "Data term 'IDAT' has def 'Proprietary file format for (raw) BeadArray data used by genomewide profiling platforms from Illumina Inc. This format is output directly from the scanner and stores summary intensities for each probe-type on an array.' \n", + "Data term 'JPG' has def 'Joint Picture Group file format for lossy graphics file.' \n", + "Data term 'HDF5' has def 'HDF5 is a data model, library, and file format for storing and managing data, based on Hierarchical Data Format (HDF).' \n", + "Data term 'Loom' has def 'The Loom file format is based on HDF5, a standard for storing large numerical datasets. The Loom format is designed to efficiently hold large omics datasets. Typically, such data takes the form of a large matrix of numbers, along with metadata for the rows and columns.' \n", + "Data term 'TIFF' has def 'A versatile bitmap format.' \n", + "Data term 'BMP' has def 'Standard bitmap storage format in the Microsoft Windows environment.' \n", + "Data term 'im' has def 'IM is a format used by LabEye and other applications based on the IFUNC image processing library.' \n", + "Data term 'pcd' has def 'Photo CD format, which is the highest resolution format for images on a CD.' \n", + "Data term 'pcx' has def 'PCX is an image file format that uses a simple form of run-length encoding. It is lossless.' \n", + "Data term 'ppm' has def 'The PPM format is a lowest common denominator color image file format.' \n", + "Data term 'psd' has def 'PSD (Photoshop Document) is a proprietary file that allows the user to work with the images' individual layers even after the file has been saved.' \n", + "Data term 'xbm' has def 'X BitMap is a plain text binary image format used by the X Window System used for storing cursor and icon bitmaps used in the X GUI.' \n", + "Data term 'xpm' has def 'X PixMap (XPM) is an image file format used by the X Window System, it is intended primarily for creating icon pixmaps, and supports transparent pixels.' \n", + "Data term 'rgb' has def 'RGB file format is the native raster graphics file format for Silicon Graphics workstations.' \n", + "Data term 'pbm' has def 'The PBM format is a lowest common denominator monochrome file format. It serves as the common language of a large family of bitmap image conversion filters.' \n", + "Data term 'pgm' has def 'The PGM format is a lowest common denominator grayscale file format.' \n", + "Data term 'PNG' has def 'PNG is a file format for image compression.' \n", + "Data term 'rast' has def 'Sun Raster is a raster graphics file format used on SunOS by Sun Microsystems.' \n", + "Data term 'bgzip' has def 'Blocked GNU Zip format.' \n", + "Data term 'tabix' has def 'TAB-delimited genome position file index format.' \n", + "Data term 'xlsx' has def 'MS Excel spreadsheet format consisting of a set of XML documents stored in a ZIP-compressed file.' \n", + "Data term 'ObjTables' has def 'ObjTables is a toolkit for creating re-usable datasets that are both human and machine-readable, combining the ease of spreadsheets (e.g., Excel workbooks) with the rigor of schemas (classes, their attributes, the type of each attribute, and the possible relationships between instances of classes). ObjTables consists of a format for describing schemas for spreadsheets, numerous data types for science, a syntax for indicating the class and attribute represented by each table and column in a workbook, and software for using schemas to rigorously validate, merge, split, compare, and revision datasets.' \n", + "Data term 'SQLite format' has def 'Data format used by the SQLite database.' \n", + "Data term 'Gemini SQLite format' has def 'Data format used by the SQLite database conformant to the Gemini schema.' \n", + "Data term 'snpeffdb' has def 'An index of a genome database, indexed for use by the snpeff tool.' \n", + "Data term 'netCDF' has def 'Format used by netCDF software library for writing and reading chromatography-MS data files. Also used to store trajectory atom coordinates information, such as the ones obtained by Molecular Dynamics simulations.' \n", + "Data term 'K-mer countgraph' has def 'A list of k-mers and their occurrences in a dataset. Can also be used as an implicit De Bruijn graph.' \n", + "Data term 'COMBINE OMEX' has def 'Open Modeling EXchange format (OMEX) is a ZIPped format for encapsulating all information necessary for a modeling and simulation project in systems biology.' \n", + "Data term 'SRA format' has def 'SRA archive format (SRA) is the archive format used for input to the NCBI Sequence Read Archive.' \n", + "Data term 'VDB' has def 'VDB ('vertical database') is the native format used for export from the NCBI Sequence Read Archive.' \n", + "Data term 'Tabix index file format' has def 'Index file format used by the samtools package to index TAB-delimited genome position files.' \n", + "Data term 'WIFF format' has def 'Mass spectrum file format from QSTAR and QTRAP instruments (ABI/Sciex).' \n", + "Data term 'Thermo RAW' has def 'Proprietary file format for mass spectrometry data from Thermo Scientific.' \n", + "Data term 'OME-TIFF' has def 'Image file format used by the Open Microscopy Environment (OME).' \n", + "Data term 'BTrack' has def 'BTrack is an HDF5-based binary format for genome or sequence feature tracks and their collections, suitable for integrative multi-track analysis. BTrack is a binary, compressed alternative to the GTrack and GSuite formats.' \n", + "Data term 'proBAM' has def '. proBAM is an adaptation of BAM (format_2572), which was extended to meet specific requirements entailed by proteomics data.' \n", + "Data term 'ARB' has def 'Binary format used by the ARB software suite.' \n", + "Data term 'ibd' has def 'ibd is a data format for mass spectrometry imaging data.' \n", + "Data term 'MSAML' has def 'A set of XML compliant markup components for describing multiple sequence alignments.' \n", + "Data term 'Waters RAW' has def 'Proprietary file format for mass spectrometry data from Waters.' \n", + "Data term 'HDF' has def 'HDF is the name of a set of file formats and libraries designed to store and organize large amounts of numerical data, originally developed at the National Center for Supercomputing Applications at the University of Illinois.' \n", + "Data term 'PCAzip' has def 'PCAZip format is a binary compressed file to store atom coordinates based on Essential Dynamics (ED) and Principal Component Analysis (PCA).' \n", + "Data term 'XTC' has def 'Portable binary format for trajectories produced by GROMACS package.' \n", + "Data term 'TNG' has def 'Trajectory Next Generation (TNG) is a format for storage of molecular simulation data. It is designed and implemented by the GROMACS development group, and it is called to be the substitute of the XTC format.' \n", + "Data term 'BinPos' has def 'Scripps Research Institute BinPos format is a binary formatted file to store atom coordinates.' \n", + "Data term 'msh' has def 'Mash sketch is a format for sequence / sequence checksum information. To make a sketch, each k-mer in a sequence is hashed, which creates a pseudo-random identifier. By sorting these hashes, a small subset from the top of the sorted list can represent the entire sequence.' \n", + "Data term 'Zarr' has def 'The Zarr format is an implementation of chunked, compressed, N-dimensional arrays for storing data.' \n", + "Data term 'Docker image' has def 'A Docker image is a file, comprised of multiple layers, that is used to execute code in a Docker container. An image is essentially built from the instructions for a complete and executable version of an application, which relies on the host OS kernel.' \n", + "Data term 'TAR format' has def 'TAR archive file format generated by the Unix-based utility tar.' \n", + "Data term 'WMV' has def 'The proprietary native video format of various Microsoft programs such as Windows Media Player.' \n", + "Data term 'ZIP format' has def 'ZIP is an archive file format that supports lossless data compression.' \n", + "Data term 'LSM' has def 'Zeiss' proprietary image format based on TIFF.' \n", + "Data term 'GZIP format' has def 'GNU zip compressed file format common to Unix-based operating systems.' \n", + "Data term 'AVI' has def 'Audio Video Interleaved (AVI) format is a multimedia container format for AVI files, that allows synchronous audio-with-video playback.' \n", + "Data term 'TrackDB' has def 'A declaration file format for UCSC browsers track dataset display charateristics.' \n", + "Data term 'Stereolithography format' has def 'STL is a file format native to the stereolithography CAD software created by 3D Systems. The format is used to save and share surface-rendered 3D images and also for 3D printing.' \n", + "Data term 'U3D' has def 'U3D (Universal 3D) is a compressed file format and data structure for 3D computer graphics. It contains 3D model information such as triangle meshes, lighting, shading, motion data, lines and points with color and structure.' \n", + "Data term 'Texture file format' has def 'Bitmap image format used for storing textures.' \n", + "Data term 'MPEG-4' has def 'A digital multimedia container format most commonly used to store video and audio.' \n", + "Data term 'pickle' has def 'Format used by Python pickle module for serializing and de-serializing a Python object structure.' \n", + "Data term 'NumPy format' has def 'The standard binary file format used by NumPy - a fundamental package for scientific computing with Python - for persisting a single arbitrary NumPy array on disk. The format stores all of the shape and dtype information necessary to reconstruct the array correctly.' \n", + "Data term 'SimTools repertoire file format' has def 'Format of repertoire (archive) files that can be read by SimToolbox (a MATLAB toolbox for structured illumination fluorescence microscopy) or alternatively extracted with zip file archiver software.' \n", + "Data term 'Zstandard format' has def 'Format used by the Zstandard real-time compression algorithm.' \n", + "Data term 'Format (by type of data)' has def 'A placeholder concept for visual navigation by dividing data formats by the content of the data that is represented.' \n", + "Data term 'Sequence record format' has def 'Data format for a molecular sequence record.' \n", + "Data term 'Sequence trace format' has def 'Format for sequence trace data (i.e. including base call information).' \n", + "Data term 'FASTQ-like format' has def 'A format resembling FASTQ short read format.' \n", + "Data term 'EMBL-like format' has def 'A format resembling EMBL entry (plain text) format.' \n", + "Data term 'FASTA-like' has def 'A format resembling FASTA format.' \n", + "Data term 'uniprotkb-like format' has def 'A sequence format resembling uniprotkb entry format.' \n", + "Data term 'UniProtKB RDF' has def 'UniProtKB RDF sequence features format is an RDF format available for downloading UniProt entries (in RDF/XML).' \n", + "Data term 'Sequence record format (text)' has def 'Data format for a molecular sequence record (text).' \n", + "Data term 'Sequence record format (XML)' has def 'Data format for a molecular sequence record (XML).' \n", + "Data term 'GenBank-like format' has def 'A format resembling GenBank entry (plain text) format.' \n", + "Data term 'BioJSON (BioXSD)' has def 'BioJSON is a BioXSD-schema-based JSON format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web applications and APIs, and object-oriented programming.' \n", + "Data term 'BioYAML' has def 'BioYAML is a BioXSD-schema-based YAML format of sequence-based data and some other common data - sequence records, alignments, feature records, references to resources, and more - optimised for integrative bioinformatics, web APIs, human readability and editing, and object-oriented programming.' \n", + "Data term 'Sequence feature annotation format' has def 'Data format for molecular sequence feature information.' \n", + "Data term 'Sequence feature table format' has def 'Format for a sequence feature table.' \n", + "Data term 'Sequence feature table format (text)' has def 'Text format for a sequence feature table.' \n", + "Data term 'Sequin format' has def 'A five-column, tab-delimited table of feature locations and qualifiers for importing annotation into an existing Sequin submission (an NCBI tool for submitting and updating GenBank entries).' \n", + "Data term 'Sequence feature table format (XML)' has def 'XML format for a sequence feature table.' \n", + "Data term 'Sequence annotation track format' has def 'Format of a sequence annotation track.' \n", + "Data term 'BioJSON (Jalview)' has def 'BioJSON is a JSON format of single multiple sequence alignments, with their annotations, features, and custom visualisation and application settings for the Jalview workbench.' \n", + "Data term 'Alignment format' has def 'Data format for molecular sequence alignment information.' \n", + "Data term 'Alignment format (text)' has def 'Text format for molecular sequence alignment information.' \n", + "Data term 'pair' has def 'EMBOSS simple sequence pairwise alignment format.' \n", + "Data term 'BLC' has def 'A multiple alignment in vertical format, as used in the AMPS (Alignment of Multiple Protein Sequences) package.' \n", + "Data term 'PO' has def 'PO is the output format of Partial Order Alignment program (POA) performing Multiple Sequence Alignment (MSA).' \n", + "Data term 'Alignment format (XML)' has def 'XML format for molecular sequence alignment information.' \n", + "Data term 'Alignment format (pair only)' has def 'Data format for molecular sequence alignment information that can hold sequence alignment(s) of only 2 sequences.' \n", + "Data term 'Phylogenetic tree format' has def 'Data format for a phylogenetic tree.' \n", + "Data term 'Phylogenetic tree format (text)' has def 'Text format for a phylogenetic tree.' \n", + "Data term 'Phylogenetic tree format (XML)' has def 'XML format for a phylogenetic tree.' \n", + "Data term 'Biological pathway or network format' has def 'Data format for a biological pathway or network.' \n", + "Data term 'BioPAX' has def 'BioPAX is an exchange format for pathway data, with its data model defined in OWL.' \n", + "Data term 'sif' has def 'SIF (simple interaction file) Format - a network/pathway format used for instance in cytoscape.' \n", + "Data term 'Sequence-profile alignment format' has def 'Data format for a sequence-profile alignment.' \n", + "Data term 'Article format' has def 'Data format for a full-text scientific article.' \n", + "Data term 'Text mining report format' has def 'Data format of a report from text mining.' \n", + "Data term 'Enzyme kinetics report format' has def 'Data format for reports on enzyme kinetics.' \n", + "Data term 'Chemical data format' has def 'Format of a report on a chemical compound.' \n", + "Data term 'cif' has def 'Crystallographic Information File (CIF) is a data exchange standard file format for Crystallographic Information and related Structural Science data.' \n", + "Data term 'Gene annotation format' has def 'Format of a report on a particular locus, gene, gene system or groups of genes.' \n", + "Data term 'Workflow format' has def 'Format of a workflow.' \n", + "Data term 'KNIME datatable format' has def 'Data table formatted such that it can be passed/streamed within the KNIME platform.' \n", + "Data term 'CWL' has def 'Common Workflow Language (CWL) format for description of command-line tools and workflows.' \n", + "Data term 'Tertiary structure format' has def 'Data format for a molecular tertiary structure.' \n", + "Data term 'PDB database entry format' has def 'Format of an entry (or part of an entry) from the PDB database.' \n", + "Data term 'Chemical formula format' has def 'Text format of a chemical formula.' \n", + "Data term 'Phylogenetic character data format' has def 'Format of raw (unplotted) phylogenetic data.' \n", + "Data term 'Phylogenetic continuous quantitative character format' has def 'Format of phylogenetic continuous quantitative character data.' \n", + "Data term 'Phylogenetic discrete states format' has def 'Format of phylogenetic discrete states data.' \n", + "Data term 'Phylogenetic tree report (cliques) format' has def 'Format of phylogenetic cliques data.' \n", + "Data term 'Phylogenetic tree report (invariants) format' has def 'Format of phylogenetic invariants data.' \n", + "Data term 'Phylogenetic tree report (tree distances) format' has def 'Format for phylogenetic tree distance data.' \n", + "Data term 'Protein family report format' has def 'Format for reports on a protein family.' \n", + "Data term 'Protein interaction format' has def 'Format for molecular interaction data.' \n", + "Data term 'Sequence assembly format' has def 'Format for sequence assembly data.' \n", + "Data term 'Sequence assembly format (text)' has def 'Text format for sequence assembly data.' \n", + "Data term 'Gene expression report format' has def 'Format of a file of gene expression data, e.g. a gene expression matrix or profile.' \n", + "Data term 'Map format' has def 'Format of a map of (typically one) molecular sequence annotated with features.' \n", + "Data term 'Nucleic acid features (primers) format' has def 'Format of a report on PCR primers or hybridisation oligos in a nucleic acid sequence.' \n", + "Data term 'Protein report format' has def 'Format of a report of general information about a specific protein.' \n", + "Data term 'Protein structure report (quality evaluation) format' has def 'Format of a report on the quality of a protein three-dimensional model.' \n", + "Data term 'Database hits (sequence) format' has def 'Format of a report on sequence hits and associated data from searching a sequence database.' \n", + "Data term 'Sequence distance matrix format' has def 'Format of a matrix of genetic distances between molecular sequences.' \n", + "Data term 'Sequence motif format' has def 'Format of a sequence motif.' \n", + "Data term 'Sequence profile format' has def 'Format of a sequence profile.' \n", + "Data term 'Hidden Markov model format' has def 'Format of a hidden Markov model.' \n", + "Data term 'Dirichlet distribution format' has def 'Data format of a dirichlet distribution.' \n", + "Data term 'HMM emission and transition counts format' has def 'Data format for the emission and transition counts of a hidden Markov model.' \n", + "Data term 'RNA secondary structure format' has def 'Format for secondary structure (predicted or real) of an RNA molecule.' \n", + "Data term 'Protein secondary structure format' has def 'Format for secondary structure (predicted or real) of a protein molecule.' \n", + "Data term 'Sequence range format' has def 'Format used to specify range(s) of sequence positions.' \n", + "Data term 'Sequence features (repeats) format' has def 'Format used for map of repeats in molecular (typically nucleotide) sequences.' \n", + "Data term 'Nucleic acid features (restriction sites) format' has def 'Format used for report on restriction enzyme recognition sites in nucleotide sequences.' \n", + "Data term 'Sequence cluster format' has def 'Format used for clusters of molecular sequences.' \n", + "Data term 'Sequence cluster format (protein)' has def 'Format used for clusters of protein sequences.' \n", + "Data term 'Sequence cluster format (nucleic acid)' has def 'Format used for clusters of nucleotide sequences.' \n", + "Data term 'Ontology format' has def 'Format used for ontologies.' \n", + "Data term 'OBO format' has def 'A serialisation format conforming to the Open Biomedical Ontologies (OBO) model.' \n", + "Data term 'OWL format' has def 'A serialisation format conforming to the Web Ontology Language (OWL) model.' \n", + "Data term 'RDF format' has def 'A serialisation format conforming to the Resource Description Framework (RDF) model.' \n", + "Data term 'JSON-LD' has def 'JSON-LD, or JavaScript Object Notation for Linked Data, is a method of encoding Linked Data using JSON.' \n", + "Data term 'Open Annotation format' has def 'A format of text annotation using the linked-data Open Annotation Data Model, serialised typically in RDF or JSON-LD.' \n", + "Data term 'Raw sequence format' has def 'Format of a raw molecular sequence (i.e. the alphabet used).' \n", + "Data term 'Bibliographic reference format' has def 'Format of a bibliographic reference.' \n", + "Data term 'Sequence variation annotation format' has def 'Format of sequence variation annotation.' \n", + "Data term 'Matrix format' has def 'Format of a matrix (array) of numerical values.' \n", + "Data term 'Amino acid index format' has def 'Data format for an amino acid index.' \n", + "Data term '3D-1D scoring matrix format' has def 'Format of a matrix of 3D-1D scores (amino acid environment probabilities).' \n", + "Data term 'MAT' has def 'Binary format used by MATLAB files to store workspace variables.' \n", + "Data term 'Protein domain classification format' has def 'Format of data concerning the classification of the sequences and/or structures of protein structural domain(s).' \n", + "Data term 'Raw SCOP domain classification format' has def 'Format of raw SCOP domain classification data files.' \n", + "Data term 'Raw CATH domain classification format' has def 'Format of raw CATH domain classification data files.' \n", + "Data term 'CATH domain report format' has def 'Format of summary of domain classification information for a CATH domain.' \n", + "Data term 'Biological pathway or network report format' has def 'Data format for a report of information derived from a biological pathway or network.' \n", + "Data term 'Experiment annotation format' has def 'Data format for annotation on a laboratory experiment.' \n", + "Data term 'Microarray experiment data format' has def 'Format for information about a microarray experimental per se (not the data generated from that experiment).' \n", + "Data term 'Mass spectrometry data format' has def 'Format for mass pectra and derived data, include peptide sequences etc.' \n", + "Data term 'MGF' has def 'Mascot Generic Format. Encodes multiple MS/MS spectra in a single file.' \n", + "Data term 'dta' has def 'Spectral data format file where each spectrum is written to a separate file.' \n", + "Data term 'pkl' has def 'Spectral data file similar to dta.' \n", + "Data term 'mzXML' has def 'Common file format for proteomics mass spectrometric data developed at the Seattle Proteome Center/Institute for Systems Biology.' \n", + "Data term 'MSF' has def 'Proprietary mass-spectrometry format of Thermo Scientific's ProteomeDiscoverer software.' \n", + "Data term 'Individual genetic data format' has def 'Data format for a metadata on an individual and their genetic data.' \n", + "Data term 'Data index format' has def 'Format of a data index of some type.' \n", + "Data term 'Document format' has def 'Format of documents including word processor, spreadsheet and presentation.' \n", + "Data term 'Image format' has def 'Format used for images and image metadata.' \n", + "Data term 'Vega' has def 'Vega is a visualization grammar, a declarative language for creating, saving, and sharing interactive visualization designs. With Vega, you can describe the visual appearance and interactive behavior of a visualization in a JSON format, and generate web-based views using Canvas or SVG.' \n", + "Data term 'Vega-lite' has def 'Vega-Lite is a high-level grammar of interactive graphics. It provides a concise JSON syntax for rapidly generating visualizations to support analysis. Vega-Lite specifications can be compiled to Vega specifications.' \n", + "Data term 'Sequence quality report format (text)' has def 'Textual report format for sequence quality for reports from sequencing machines.' \n", + "Data term 'Graph format' has def 'Data format for graph data.' \n", + "Data term 'xgmml' has def 'XML-based format used to store graph descriptions within Galaxy.' \n", + "Data term 'Biodiversity data format' has def 'Data format for biodiversity data.' \n", + "Data term 'ABCD format' has def 'Exchange format of the Access to Biological Collections Data (ABCD) Schema; a standard for the access to and exchange of data about specimens and observations (primary biodiversity data).' \n", + "Data term 'Linked data format' has def 'A linked data format enables publishing structured data as linked data (Linked Data), so that the data can be interlinked and become more useful through semantic queries.' \n", + "Data term 'Annotated text format' has def 'Data format of an annotated text, e.g. with recognised entities, concepts, and relations.' \n", + "Data term 'PubAnnotation format' has def 'JSON format of annotated scientific text used by PubAnnotations and other tools.' \n", + "Data term 'Query language' has def 'A query language (format) for structured database queries.' \n", + "Data term 'NMR data format' has def 'Data format for raw data from a nuclear magnetic resonance (NMR) spectroscopy experiment.' \n", + "Data term 'Raw microarray data format' has def 'Data format for raw microarray data.' \n", + "Data term 'NLP format' has def 'Data format used in Natural Language Processing.' \n", + "Data term 'NLP annotation format' has def 'An NLP format used for annotated textual documents.' \n", + "Data term 'NLP corpus format' has def 'NLP format used by a specific type of corpus (collection of texts).' \n", + "Data term 'RNA annotation format' has def 'A \"placeholder\" concept for formats of annotated RNA data, including e.g. microRNA and RNA-Seq data.' \n", + "Data term 'Trajectory format' has def 'File format to store trajectory information for a 3D structure .' \n", + "Data term 'Trajectory format (binary)' has def 'Binary file format to store trajectory information for a 3D structure .' \n", + "Data term 'Trajectory format (text)' has def 'Textual file format to store trajectory information for a 3D structure .' \n", + "Data term 'Topology format' has def 'Format of topology files; containing the static information of a structure molecular system that is needed for a molecular simulation.' \n", + "Data term 'FF parameter format' has def 'Format of force field parameter files, which store the set of parameters (charges, masses, radii, bond lengths, bond dihedrals, etc.) that are essential for the proper description and simulation of a molecular system.' \n", + "Data term 'JSON' has def 'JavaScript Object Notation format; a lightweight, text-based format to represent tree-structured data using key-value pairs.' \n", + "Data term 'BioSimulators format for the specifications of biosimulation tools' has def 'Format for describing the capabilities of a biosimulation tool including the modeling frameworks, simulation algorithms, and modeling formats that it supports, as well as metadata such as a list of the interfaces, programming languages, and operating systems supported by the tool; a link to download the tool; a list of the authors of the tool; and the license to the tool.' \n", + "Data term 'YAML' has def 'YAML (YAML Ain't Markup Language) is a human-readable tree-structured data serialisation language.' \n" + ] + } + ], + "source": [ + "## Query for format with no definition (ERROR level)\n", + "query = \"\"\"\n", + "PREFIX edam: \n", + "PREFIX oboInOwl: \n", + "\n", + "SELECT ?term ?concept ?def WHERE {\n", + " ?concept rdfs:subClassOf+ edam:format_1915 ;\n", + " rdfs:label ?term ;\n", + " \n", + " oboInOwl:hasDefinition ?def .\n", + "\n", + "}\n", + "\"\"\"\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Format term '{r['term']}' has def '{r['def']}' \") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-29T15:42:02.030054Z", + "start_time": "2024-02-29T15:42:01.964824Z" + } + }, + "execution_count": 42 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ID hybrid 'http://edamontology.org/data_1036' 'TIGR identifier' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2112' 'FlyBase primary identifier' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2174' 'FlyBase secondary identifier' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_1154' 'KEGG object identifier' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2102' 'KEGG organism code' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_1891' 'iHOP symbol' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2104' 'BioCyc ID' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_1157' 'Pathway ID (BioCyc)' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2105' 'Compound ID (BioCyc)' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2106' 'Reaction ID (BioCyc)' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2107' 'Enzyme ID (BioCyc)' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2113' 'WormBase identifier' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_1091' 'WormBase name' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_1092' 'WormBase class' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2367' 'ASTD ID' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2368' 'ASTD ID (exon)' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2369' 'ASTD ID (intron)' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2370' 'ASTD ID (polya)' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2371' 'ASTD ID (tss)' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2380' 'CABRI accession' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2387' 'TAIR accession' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2388' 'TAIR accession (At gene)' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_1033' 'Ensembl gene ID' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2398' 'Ensembl protein ID' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2725' 'Ensembl transcript ID' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_3270' 'Ensembl gene tree ID' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_1901' 'Locus ID (SGD)' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2639' 'PubChem ID' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2917' 'ConsensusPathDB identifier' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2345' 'Pathway ID (ConsensusPathDB)' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2776' 'ConsensusPathDB entity ID' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_2777' 'ConsensusPathDB entity name' has regex 'None' \n", + "ID hybrid 'http://edamontology.org/data_3274' 'MGI accession' has regex 'None' \n" + ] + } + ], + "source": [ + "## Query for hybrid ID with no regex (WARNING level) (does this apply to all sorts of IDs?)\n", + "query = \"\"\"\n", + "PREFIX edam: \n", + "PREFIX oboInOwl: \n", + "\n", + "SELECT ?term ?concept ?regex WHERE {\n", + " ?concept rdfs:subClassOf+ edam:data_2109 ;\n", + " rdfs:label ?term .\n", + " \n", + " FILTER NOT EXISTS { \n", + " ?concept edam:regex ?regex \n", + " } .\n", + "\n", + "}\n", + "\"\"\"\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"ID hybrid '{r['concept']}' '{r['term']}' has regex '{r['regex']}' \") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-29T16:39:48.208557Z", + "start_time": "2024-02-29T16:39:48.157318Z" + } + }, + "execution_count": 57 + }, + { + "cell_type": "markdown", + "source": [ + "## Queries from Caseologue" + ], + "metadata": { + "collapsed": false + } + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "prop 'http://www.w3.org/2000/01/rdf-schema#seeAlso' has value: 'https://en.wikipedia.org/wiki/Genomics'.\n", + "prop 'http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym' has value: 'Whole genomes'.\n", + "prop 'http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym' has value: 'Genome annotation'.\n", + "prop 'http://www.w3.org/2000/01/rdf-schema#subClassOf' has value: 'http://edamontology.org/topic_3391'.\n", + "prop 'http://www.geneontology.org/formats/oboInOwl#inSubset' has value: 'http://edamontology.org/topics'.\n", + "prop 'http://edamontology.org/created_in' has value: 'beta12orEarlier'.\n", + "prop 'http://www.w3.org/2000/01/rdf-schema#seeAlso' has value: 'http://purl.bioontology.org/ontology/MSH/D023281'.\n", + "prop 'http://www.geneontology.org/formats/oboInOwl#inSubset' has value: 'http://edamontology.org/bio'.\n", + "prop 'http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym' has value: 'Exomes'.\n", + "prop 'http://www.geneontology.org/formats/oboInOwl#hasDefinition' has value: 'Whole genomes of one or more organisms, or genomes in general, such as meta-information on genomes, genome projects, gene names etc.'.\n", + "prop 'http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym' has value: 'Synthetic genomics'.\n", + "prop 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type' has value: 'http://www.w3.org/2002/07/owl#Class'.\n", + "prop 'http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym' has value: 'Personal genomics'.\n", + "prop 'http://www.w3.org/2000/01/rdf-schema#label' has value: 'Genomics'.\n", + "prop 'http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym' has value: 'Genomes'.\n", + "prop 'http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym' has value: 'Viral genomics'.\n", + "prop 'http://www.geneontology.org/formats/oboInOwl#hasHumanReadableId' has value: 'Genomics'.\n", + "prop 'http://www.geneontology.org/formats/oboInOwl#inSubset' has value: 'http://edamontology.org/events'.\n", + "prop 'http://edamontology.org/isdebtag' has value: 'true'.\n" + ] + } + ], + "source": [ + "query = \"\"\"\n", + "PREFIX edam: \n", + "\n", + "SELECT * WHERE {\n", + " ?x ?property ?value .\n", + " VALUES ?x {edam:topic_0622}\n", + "}\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"prop '{r['property']}' has value: '{r['value']}'.\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-01-30T16:27:50.432853Z", + "start_time": "2024-01-30T16:27:49.431765Z" + } + }, + "execution_count": 10 + }, + { + "cell_type": "markdown", + "source": [], + "metadata": { + "collapsed": false + } + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query = \"\"\"\n", + "PREFIX edam: \n", + "PREFIX oboInOwl: \n", + "\n", + "\n", + "SELECT ?term ?def WHERE {\n", + " ?c rdfs:subClassOf+ edam:topic_0003 ;\n", + " rdfs:label ?term ;\n", + " OPTIONAL {?c oboInOwl:hasDefinition ?def} .\n", + "\n", + " FILTER NOT EXISTS {\n", + " #?c rdfs:seeAlso [] .\n", + " ?c oboInOwl:hasDefinition [] .\n", + " } .\n", + "}\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Topic '{r['term']}' has def '{r['def']}'.\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-01-30T16:27:50.482206Z", + "start_time": "2024-01-30T16:27:50.434865Z" + } + }, + "execution_count": 11 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Topic 'Ontology and terminology' has no exactSynonym.\n", + "Topic 'Bioinformatics' has no exactSynonym.\n", + "Topic 'Laboratory information management' has no exactSynonym.\n", + "Topic 'Chemometrics' has no exactSynonym.\n", + "Topic 'Database management' has no exactSynonym.\n", + "Topic 'Data management' has no exactSynonym.\n", + "Topic 'Data submission, annotation, and curation' has no exactSynonym.\n", + "Topic 'Data identity and mapping' has no exactSynonym.\n", + "Topic 'Data architecture, analysis and design' has no exactSynonym.\n", + "Topic 'Data integration and warehousing' has no exactSynonym.\n", + "Topic 'Data governance' has no exactSynonym.\n", + "Topic 'Data quality management' has no exactSynonym.\n", + "Topic 'Data rescue' has no exactSynonym.\n", + "Topic 'Chemistry' has no exactSynonym.\n", + "Topic 'Microfluidics' has no exactSynonym.\n", + "Topic 'Computational chemistry' has no exactSynonym.\n", + "Topic 'Drug discovery' has no exactSynonym.\n", + "Topic 'Compound libraries and screening' has no exactSynonym.\n", + "Topic 'Analytical chemistry' has no exactSynonym.\n", + "Topic 'Synthetic chemistry' has no exactSynonym.\n", + "Topic 'Chemical biology' has no exactSynonym.\n", + "Topic 'Carbon cycle' has no exactSynonym.\n", + "Topic 'Statistics and probability' has no exactSynonym.\n", + "Topic 'Applied mathematics' has no exactSynonym.\n", + "Topic 'Pure mathematics' has no exactSynonym.\n", + "Topic 'Computer science' has no exactSynonym.\n", + "Topic 'Data mining' has no exactSynonym.\n", + "Topic 'Machine learning' has no exactSynonym.\n", + "Topic 'Physics' has no exactSynonym.\n", + "Topic 'Biophysics' has no exactSynonym.\n", + "Topic 'Acoustics' has no exactSynonym.\n", + "Topic 'Genome resequencing' has no exactSynonym.\n", + "Topic 'Single-Cell Sequencing' has no exactSynonym.\n", + "Topic 'Imaging' has no exactSynonym.\n", + "Topic 'Electron microscopy' has no exactSynonym.\n", + "Topic 'Medical imaging' has no exactSynonym.\n", + "Topic 'Light microscopy' has no exactSynonym.\n", + "Topic 'Genotyping experiment' has no exactSynonym.\n", + "Topic 'Proteomics experiment' has no exactSynonym.\n", + "Topic 'RNAi experiment' has no exactSynonym.\n", + "Topic 'Simulation experiment' has no exactSynonym.\n", + "Topic 'Cytometry' has no exactSynonym.\n", + "Topic 'Protein interaction experiment' has no exactSynonym.\n", + "Topic 'Preclinical and clinical studies' has no exactSynonym.\n", + "Topic 'Animal study' has no exactSynonym.\n", + "Topic 'Environmental sciences' has no exactSynonym.\n", + "Topic 'Ecology' has no exactSynonym.\n", + "Topic 'Biodiversity' has no exactSynonym.\n", + "Topic 'Metagenomics' has no exactSynonym.\n", + "Topic 'Metabarcoding' has no exactSynonym.\n", + "Topic 'Open science' has no exactSynonym.\n", + "Topic 'Virology' has no exactSynonym.\n", + "Topic 'Structural biology' has no exactSynonym.\n", + "Topic 'Structural genomics' has no exactSynonym.\n", + "Topic 'Cell biology' has no exactSynonym.\n", + "Topic 'Systems biology' has no exactSynonym.\n", + "Topic 'Molecular biology' has no exactSynonym.\n", + "Topic 'Genetics' has no exactSynonym.\n", + "Topic 'Quantitative genetics' has no exactSynonym.\n", + "Topic 'Phenomics' has no exactSynonym.\n", + "Topic 'Molecular evolution' has no exactSynonym.\n", + "Topic 'Population genetics' has no exactSynonym.\n", + "Topic 'Epigenetics' has no exactSynonym.\n", + "Topic 'Epigenomics' has no exactSynonym.\n", + "Topic 'Molecular genetics' has no exactSynonym.\n", + "Topic 'Functional, regulatory and non-coding RNA' has no exactSynonym.\n", + "Topic 'Mobile genetic elements' has no exactSynonym.\n", + "Topic 'Gene transcripts' has no exactSynonym.\n", + "Topic 'DNA mutation' has no exactSynonym.\n", + "Topic 'DNA polymorphism' has no exactSynonym.\n", + "Topic 'Copy number variation' has no exactSynonym.\n", + "Topic 'Gene regulation' has no exactSynonym.\n", + "Topic 'Transcription factors and regulatory sites' has no exactSynonym.\n", + "Topic 'Transcriptomics' has no exactSynonym.\n", + "Topic 'Metatranscriptomics' has no exactSynonym.\n", + "Topic 'Immunoproteins and antigens' has no exactSynonym.\n", + "Topic 'Cytogenetics' has no exactSynonym.\n", + "Topic 'Human genetics' has no exactSynonym.\n", + "Topic 'Developmental biology' has no exactSynonym.\n", + "Topic 'Embryology' has no exactSynonym.\n", + "Topic 'Biotechnology' has no exactSynonym.\n", + "Topic 'Biomaterials' has no exactSynonym.\n", + "Topic 'Medical biotechnology' has no exactSynonym.\n", + "Topic 'Synthetic biology' has no exactSynonym.\n", + "Topic 'Metabolic engineering' has no exactSynonym.\n", + "Topic 'Phylogeny' has no exactSynonym.\n", + "Topic 'Phylogenetics' has no exactSynonym.\n", + "Topic 'Cladistics' has no exactSynonym.\n", + "Topic 'Taxonomy' has no exactSynonym.\n", + "Topic 'Microbiology' has no exactSynonym.\n", + "Topic 'Marine biology' has no exactSynonym.\n", + "Topic 'Freshwater biology' has no exactSynonym.\n", + "Topic 'Agricultural science' has no exactSynonym.\n", + "Topic 'Rare diseases' has no exactSynonym.\n", + "Topic 'Toxicology' has no exactSynonym.\n", + "Topic 'Physiology' has no exactSynonym.\n", + "Topic 'Public health and epidemiology' has no exactSynonym.\n", + "Topic 'Neurology' has no exactSynonym.\n", + "Topic 'Translational medicine' has no exactSynonym.\n", + "Topic 'Molecular medicine' has no exactSynonym.\n", + "Topic 'Systems medicine' has no exactSynonym.\n", + "Topic 'Veterinary medicine' has no exactSynonym.\n", + "Topic 'Allergy, clinical immunology and immunotherapeutics' has no exactSynonym.\n", + "Topic 'Dermatology' has no exactSynonym.\n", + "Topic 'Dentistry' has no exactSynonym.\n", + "Topic 'Endocrinology and metabolism' has no exactSynonym.\n", + "Topic 'Haematology' has no exactSynonym.\n", + "Topic 'Gastroenterology' has no exactSynonym.\n", + "Topic 'Gender medicine' has no exactSynonym.\n", + "Topic 'Gynaecology and obstetrics' has no exactSynonym.\n", + "Topic 'Medical toxicology' has no exactSynonym.\n", + "Topic 'Musculoskeletal medicine' has no exactSynonym.\n", + "Topic 'Ophthalmology' has no exactSynonym.\n", + "Topic 'Psychiatry' has no exactSynonym.\n", + "Topic 'Reproductive health' has no exactSynonym.\n", + "Topic 'Surgery' has no exactSynonym.\n", + "Topic 'Urology and nephrology' has no exactSynonym.\n", + "Topic 'Complementary medicine' has no exactSynonym.\n", + "Topic 'Tropical medicine' has no exactSynonym.\n", + "Topic 'Computational biology' has no exactSynonym.\n", + "Topic 'RNA' has no exactSynonym.\n", + "Topic 'DNA binding sites' has no exactSynonym.\n", + "Topic 'DNA replication and recombination' has no exactSynonym.\n", + "Topic 'DNA packaging' has no exactSynonym.\n", + "Topic 'Nucleic acid sites, features and motifs' has no exactSynonym.\n", + "Topic 'Protein expression' has no exactSynonym.\n", + "Topic 'Protein targeting and localisation' has no exactSynonym.\n", + "Topic 'Protein variants' has no exactSynonym.\n", + "Topic 'Protein interactions' has no exactSynonym.\n", + "Topic 'Membrane and lipoproteins' has no exactSynonym.\n", + "Topic 'Protein folding, stability and design' has no exactSynonym.\n", + "Topic 'Protein folds and structural domains' has no exactSynonym.\n", + "Topic 'Protein sites, features and motifs' has no exactSynonym.\n", + "Topic 'Protein binding sites' has no exactSynonym.\n", + "Topic 'Sequence analysis' has no exactSynonym.\n", + "Topic 'Mapping' has no exactSynonym.\n", + "Topic 'Sequence composition, complexity and repeats' has no exactSynonym.\n", + "Topic 'Phylogenomics' has no exactSynonym.\n", + "Topic 'Sequence assembly' has no exactSynonym.\n", + "Topic 'Probes and primers' has no exactSynonym.\n", + "Topic 'Structure prediction' has no exactSynonym.\n", + "Topic 'Molecular dynamics' has no exactSynonym.\n", + "Topic 'Molecular modelling' has no exactSynonym.\n", + "Topic 'Carbohydrates' has no exactSynonym.\n", + "Topic 'Small molecules' has no exactSynonym.\n", + "Topic 'Sequence sites, features and motifs' has no exactSynonym.\n", + "Topic 'Molecular interactions, pathways and networks' has no exactSynonym.\n", + "Topic 'Functional genomics' has no exactSynonym.\n", + "Topic 'Biomolecular simulation' has no exactSynonym.\n", + "Topic 'Pharmacology' has no exactSynonym.\n", + "Topic 'Pharmacogenomics' has no exactSynonym.\n", + "Topic 'Immunology' has no exactSynonym.\n", + "Topic 'Anatomy' has no exactSynonym.\n", + "Topic 'Microbial collection' has no exactSynonym.\n", + "Topic 'Cell culture collection' has no exactSynonym.\n", + "Topic 'Clone library' has no exactSynonym.\n", + "Topic 'Parasitology' has no exactSynonym.\n", + "Topic 'Neurobiology' has no exactSynonym.\n", + "Topic 'Biotherapeutics' has no exactSynonym.\n", + "Topic 'Drug metabolism' has no exactSynonym.\n", + "Topic 'Pharmacovigilance' has no exactSynonym.\n", + "Topic 'Vaccinology' has no exactSynonym.\n", + "Topic 'Omics' has no exactSynonym.\n", + "Topic 'Proteomics' has no exactSynonym.\n", + "Topic 'Genomics' has no exactSynonym.\n", + "Topic 'Comparative genomics' has no exactSynonym.\n", + "Topic 'Population genomics' has no exactSynonym.\n", + "Topic 'Proteogenomics' has no exactSynonym.\n", + "Topic 'Paleogenomics' has no exactSynonym.\n", + "Topic 'Metabolomics' has no exactSynonym.\n", + "Topic 'Fluxomics' has no exactSynonym.\n", + "Topic 'Immunomics' has no exactSynonym.\n" + ] + } + ], + "source": [ + "query = \"\"\"\n", + "PREFIX edam: \n", + "PREFIX oboInOwl: \n", + "\n", + "\n", + "SELECT ?term ?syno WHERE {\n", + " ?c rdfs:subClassOf+ edam:topic_0003 ;\n", + " rdfs:label ?term ;\n", + " OPTIONAL {?c oboInOwl:hasExactSynonym ?syno} .\n", + "\n", + " FILTER NOT EXISTS {\n", + " ?c oboInOwl:hasExactSynonym [] .\n", + " } .\n", + "}\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "#for r in results :\n", + " #print(f\"Topic '{r['term']}' has no exactSynonym.\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-01-30T16:27:50.544521Z", + "start_time": "2024-01-30T16:27:50.539560Z" + } + }, + "execution_count": 12 + }, + { + "cell_type": "markdown", + "source": [ + "Queries from Caseologue" + ], + "metadata": { + "collapsed": false + } + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query=\"\"\"\n", + "PREFIX obo: \n", + "PREFIX owl: \n", + "PREFIX rdfs: \n", + "PREFIX rdf: \n", + "PREFIX oboInOwl: \n", + "PREFIX edam:\n", + "PREFIX xsd: \n", + "\n", + "SELECT DISTINCT ?entity ?label WHERE {\n", + " \n", + " ?entity a owl:Class .\n", + " ?entity rdfs:label ?label .\n", + " FILTER NOT EXISTS { ?entity owl:deprecated true }\n", + " \n", + " FILTER NOT EXISTS {\n", + " FILTER REGEX(str(?entity), \"^http://edamontology.org/(data|topic|operation|format)_[0-9]{4}$\")\n", + " }\n", + " FILTER ( ?entity != )\n", + "\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T16:49:01.045260Z", + "start_time": "2024-02-13T16:49:00.721194Z" + } + }, + "execution_count": 11 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Entity 'http://edamontology.org/topic_3068' - Label 'Literature and language'\n", + "Entity 'http://edamontology.org/topic_0219' - Label 'Data submission, annotation, and curation'\n", + "Entity 'http://edamontology.org/topic_3345' - Label 'Data identity and mapping'\n", + "Entity 'http://edamontology.org/topic_3923' - Label 'Genome resequencing'\n", + "Entity 'http://edamontology.org/topic_3524' - Label 'Simulation experiment'\n", + "Entity 'http://edamontology.org/topic_3511' - Label 'Nucleic acid sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_0123' - Label 'Protein properties'\n", + "Entity 'http://edamontology.org/topic_3510' - Label 'Protein sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_0157' - Label 'Sequence composition, complexity and repeats'\n", + "Entity 'http://edamontology.org/topic_0632' - Label 'Probes and primers'\n", + "Entity 'http://edamontology.org/topic_0160' - Label 'Sequence sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_3892' - Label 'Biomolecular simulation'\n", + "Entity 'http://edamontology.org/topic_3374' - Label 'Biotherapeutics'\n", + "Entity 'http://edamontology.org/topic_3393' - Label 'Quality affairs'\n" + ] + } + ], + "source": [ + "#Query aim = “check for missing wikipedia link in topic ”\n", + "\n", + "query=\"\"\"\n", + "PREFIX obo: \n", + "PREFIX owl: \n", + "PREFIX rdfs: \n", + "PREFIX rdf: \n", + "PREFIX oboInOwl: \n", + "PREFIX edam:\n", + "PREFIX xsd: \n", + "\n", + "SELECT DISTINCT ?entity ?label ?seealso WHERE {\n", + " ?entity rdfs:subClassOf+ .\n", + " ?entity rdfs:label ?label .\n", + " \n", + " FILTER NOT EXISTS {\n", + " ?entity rdfs:seeAlso ?seealso .\n", + " FILTER (regex(str(?seealso), \"wikipedia\", \"i\")) .\n", + " }\n", + "}\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T16:50:37.407410Z", + "start_time": "2024-02-13T16:50:37.369446Z" + } + }, + "execution_count": 12 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Entity 'http://edamontology.org/data_0005' - Label 'Resource type'\n", + "Entity 'http://edamontology.org/data_0007' - Label 'Tool'\n", + "Entity 'http://edamontology.org/data_0581' - Label 'Database'\n", + "Entity 'http://edamontology.org/data_0583' - Label 'Directory metadata'\n", + "Entity 'http://edamontology.org/data_0831' - Label 'MeSH vocabulary'\n", + "Entity 'http://edamontology.org/data_0832' - Label 'HGNC vocabulary'\n", + "Entity 'http://edamontology.org/data_0835' - Label 'UMLS vocabulary'\n", + "Entity 'http://edamontology.org/data_0843' - Label 'Database entry'\n", + "Entity 'http://edamontology.org/data_0848' - Label 'Raw sequence'\n", + "Entity 'http://edamontology.org/data_0851' - Label 'Sequence mask character'\n", + "Entity 'http://edamontology.org/data_0852' - Label 'Sequence mask type'\n", + "Entity 'http://edamontology.org/data_0853' - Label 'DNA sense specification'\n", + "Entity 'http://edamontology.org/data_0854' - Label 'Sequence length specification'\n", + "Entity 'http://edamontology.org/data_0855' - Label 'Sequence metadata'\n", + "Entity 'http://edamontology.org/data_0859' - Label 'Sequence signature model'\n", + "Entity 'http://edamontology.org/data_0861' - Label 'Sequence alignment (words)'\n", + "Entity 'http://edamontology.org/data_0864' - Label 'Sequence alignment parameter'\n", + "Entity 'http://edamontology.org/data_0866' - Label 'Sequence alignment metadata'\n", + "Entity 'http://edamontology.org/data_0868' - Label 'Profile-profile alignment'\n", + "Entity 'http://edamontology.org/data_0869' - Label 'Sequence-profile alignment'\n", + "Entity 'http://edamontology.org/data_0875' - Label 'Protein topology'\n", + "Entity 'http://edamontology.org/data_0876' - Label 'Protein features report (secondary structure)'\n", + "Entity 'http://edamontology.org/data_0877' - Label 'Protein features report (super-secondary)'\n", + "Entity 'http://edamontology.org/data_0879' - Label 'Secondary structure alignment metadata (protein)'\n", + "Entity 'http://edamontology.org/data_0882' - Label 'Secondary structure alignment metadata (RNA)'\n", + "Entity 'http://edamontology.org/data_0884' - Label 'Tertiary structure record'\n", + "Entity 'http://edamontology.org/data_0885' - Label 'Structure database search results'\n", + "Entity 'http://edamontology.org/data_0891' - Label 'Sequence-3D profile alignment'\n", + "Entity 'http://edamontology.org/data_0894' - Label 'Amino acid annotation'\n", + "Entity 'http://edamontology.org/data_0895' - Label 'Peptide annotation'\n", + "Entity 'http://edamontology.org/data_0899' - Label 'Protein structural motifs and surfaces'\n", + "Entity 'http://edamontology.org/data_0900' - Label 'Protein domain classification'\n", + "Entity 'http://edamontology.org/data_0901' - Label 'Protein features report (domains)'\n", + "Entity 'http://edamontology.org/data_0902' - Label 'Protein architecture report'\n", + "Entity 'http://edamontology.org/data_0903' - Label 'Protein folding report'\n", + "Entity 'http://edamontology.org/data_0904' - Label 'Protein features (mutation)'\n", + "Entity 'http://edamontology.org/data_0911' - Label 'Nucleotide base annotation'\n", + "Entity 'http://edamontology.org/data_0917' - Label 'Gene classification'\n", + "Entity 'http://edamontology.org/data_0918' - Label 'DNA variation'\n", + "Entity 'http://edamontology.org/data_0923' - Label 'PCR experiment report'\n", + "Entity 'http://edamontology.org/data_0931' - Label 'Microarray experiment report'\n", + "Entity 'http://edamontology.org/data_0932' - Label 'Oligonucleotide probe data'\n", + "Entity 'http://edamontology.org/data_0933' - Label 'SAGE experimental data'\n", + "Entity 'http://edamontology.org/data_0934' - Label 'MPSS experimental data'\n", + "Entity 'http://edamontology.org/data_0935' - Label 'SBS experimental data'\n", + "Entity 'http://edamontology.org/data_0936' - Label 'Sequence tag profile (with gene assignment)'\n", + "Entity 'http://edamontology.org/data_0941' - Label 'Electron microscopy model'\n", + "Entity 'http://edamontology.org/data_0946' - Label 'Pathway or network annotation'\n", + "Entity 'http://edamontology.org/data_0947' - Label 'Biological pathway map'\n", + "Entity 'http://edamontology.org/data_0948' - Label 'Data resource definition'\n", + "Entity 'http://edamontology.org/data_0952' - Label 'EMBOSS database resource definition'\n", + "Entity 'http://edamontology.org/data_0953' - Label 'Version information'\n", + "Entity 'http://edamontology.org/data_0959' - Label 'Job metadata'\n", + "Entity 'http://edamontology.org/data_0964' - Label 'Scent annotation'\n", + "Entity 'http://edamontology.org/data_0974' - Label 'Entity identifier'\n", + "Entity 'http://edamontology.org/data_0975' - Label 'Data resource identifier'\n", + "Entity 'http://edamontology.org/data_0978' - Label 'Discrete entity identifier'\n", + "Entity 'http://edamontology.org/data_0979' - Label 'Entity feature identifier'\n", + "Entity 'http://edamontology.org/data_0980' - Label 'Entity collection identifier'\n", + "Entity 'http://edamontology.org/data_0981' - Label 'Phenomenon identifier'\n", + "Entity 'http://edamontology.org/data_0985' - Label 'Molecule type'\n", + "Entity 'http://edamontology.org/data_0986' - Label 'Chemical identifier'\n", + "Entity 'http://edamontology.org/data_0992' - Label 'Ligand identifier'\n", + "Entity 'http://edamontology.org/data_1014' - Label 'Sequence position specification'\n", + "Entity 'http://edamontology.org/data_1018' - Label 'Nucleic acid feature identifier'\n", + "Entity 'http://edamontology.org/data_1019' - Label 'Protein feature identifier'\n", + "Entity 'http://edamontology.org/data_1024' - Label 'Codon name'\n", + "Entity 'http://edamontology.org/data_1028' - Label 'Gene identifier (NCBI RefSeq)'\n", + "Entity 'http://edamontology.org/data_1029' - Label 'Gene identifier (NCBI UniGene)'\n", + "Entity 'http://edamontology.org/data_1030' - Label 'Gene identifier (Entrez)'\n", + "Entity 'http://edamontology.org/data_1057' - Label 'Sequence database name'\n", + "Entity 'http://edamontology.org/data_1062' - Label 'Database entry identifier'\n", + "Entity 'http://edamontology.org/data_1065' - Label 'Sequence signature identifier'\n", + "Entity 'http://edamontology.org/data_1067' - Label 'Phylogenetic distance matrix identifier'\n", + "Entity 'http://edamontology.org/data_1094' - Label 'Sequence type'\n", + "Entity 'http://edamontology.org/data_1099' - Label 'UniProt accession (extended)'\n", + "Entity 'http://edamontology.org/data_1101' - Label 'TREMBL accession'\n", + "Entity 'http://edamontology.org/data_1110' - Label 'EMBOSS sequence type'\n", + "Entity 'http://edamontology.org/data_1111' - Label 'EMBOSS listfile'\n", + "Entity 'http://edamontology.org/data_1120' - Label 'Sequence alignment type'\n", + "Entity 'http://edamontology.org/data_1121' - Label 'BLAST sequence alignment type'\n", + "Entity 'http://edamontology.org/data_1122' - Label 'Phylogenetic tree type'\n", + "Entity 'http://edamontology.org/data_1125' - Label 'Comparison matrix type'\n", + "Entity 'http://edamontology.org/data_1152' - Label 'HIVDB identifier'\n", + "Entity 'http://edamontology.org/data_1156' - Label 'Pathway ID (aMAZE)'\n", + "Entity 'http://edamontology.org/data_1236' - Label 'Psiblast checkpoint file'\n", + "Entity 'http://edamontology.org/data_1237' - Label 'HMMER synthetic sequences set'\n", + "Entity 'http://edamontology.org/data_1241' - Label 'vectorstrip cloning vector definition file'\n", + "Entity 'http://edamontology.org/data_1242' - Label 'Primer3 internal oligo mishybridizing library'\n", + "Entity 'http://edamontology.org/data_1243' - Label 'Primer3 mispriming library file'\n", + "Entity 'http://edamontology.org/data_1244' - Label 'primersearch primer pairs sequence record'\n", + "Entity 'http://edamontology.org/data_1250' - Label 'Word size'\n", + "Entity 'http://edamontology.org/data_1251' - Label 'Window size'\n", + "Entity 'http://edamontology.org/data_1252' - Label 'Sequence length range'\n", + "Entity 'http://edamontology.org/data_1253' - Label 'Sequence information report'\n", + "Entity 'http://edamontology.org/data_1256' - Label 'Sequence features (comparative)'\n", + "Entity 'http://edamontology.org/data_1257' - Label 'Sequence property (protein)'\n", + "Entity 'http://edamontology.org/data_1258' - Label 'Sequence property (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1264' - Label 'Sequence composition table'\n", + "Entity 'http://edamontology.org/data_1269' - Label 'DAS sequence feature annotation'\n", + "Entity 'http://edamontology.org/data_1281' - Label 'Sequence signature map'\n", + "Entity 'http://edamontology.org/data_1290' - Label 'InterPro compact match image'\n", + "Entity 'http://edamontology.org/data_1291' - Label 'InterPro detailed match image'\n", + "Entity 'http://edamontology.org/data_1292' - Label 'InterPro architecture image'\n", + "Entity 'http://edamontology.org/data_1293' - Label 'SMART protein schematic'\n", + "Entity 'http://edamontology.org/data_1294' - Label 'GlobPlot domain image'\n", + "Entity 'http://edamontology.org/data_1298' - Label 'Sequence motif matches'\n", + "Entity 'http://edamontology.org/data_1299' - Label 'Sequence features (repeats)'\n", + "Entity 'http://edamontology.org/data_1300' - Label 'Gene and transcript structure (report)'\n", + "Entity 'http://edamontology.org/data_1301' - Label 'Mobile genetic elements'\n", + "Entity 'http://edamontology.org/data_1303' - Label 'Nucleic acid features (quadruplexes)'\n", + "Entity 'http://edamontology.org/data_1306' - Label 'Nucleosome exclusion sequences'\n", + "Entity 'http://edamontology.org/data_1309' - Label 'Gene features (exonic splicing enhancer)'\n", + "Entity 'http://edamontology.org/data_1310' - Label 'Nucleic acid features (microRNA)'\n", + "Entity 'http://edamontology.org/data_1313' - Label 'Coding region'\n", + "Entity 'http://edamontology.org/data_1314' - Label 'Gene features (SECIS element)'\n", + "Entity 'http://edamontology.org/data_1315' - Label 'Transcription factor binding sites'\n", + "Entity 'http://edamontology.org/data_1321' - Label 'Protein features (sites)'\n", + "Entity 'http://edamontology.org/data_1322' - Label 'Protein features report (signal peptides)'\n", + "Entity 'http://edamontology.org/data_1323' - Label 'Protein features report (cleavage sites)'\n", + "Entity 'http://edamontology.org/data_1324' - Label 'Protein features (post-translation modifications)'\n", + "Entity 'http://edamontology.org/data_1325' - Label 'Protein features report (active sites)'\n", + "Entity 'http://edamontology.org/data_1326' - Label 'Protein features report (binding sites)'\n", + "Entity 'http://edamontology.org/data_1327' - Label 'Protein features (epitopes)'\n", + "Entity 'http://edamontology.org/data_1328' - Label 'Protein features report (nucleic acid binding sites)'\n", + "Entity 'http://edamontology.org/data_1329' - Label 'MHC Class I epitopes report'\n", + "Entity 'http://edamontology.org/data_1330' - Label 'MHC Class II epitopes report'\n", + "Entity 'http://edamontology.org/data_1331' - Label 'Protein features (PEST sites)'\n", + "Entity 'http://edamontology.org/data_1338' - Label 'Sequence database hits scores list'\n", + "Entity 'http://edamontology.org/data_1339' - Label 'Sequence database hits alignments list'\n", + "Entity 'http://edamontology.org/data_1340' - Label 'Sequence database hits evaluation data'\n", + "Entity 'http://edamontology.org/data_1344' - Label 'MEME motif alphabet'\n", + "Entity 'http://edamontology.org/data_1345' - Label 'MEME background frequencies file'\n", + "Entity 'http://edamontology.org/data_1346' - Label 'MEME motifs directive file'\n", + "Entity 'http://edamontology.org/data_1348' - Label 'HMM emission and transition counts'\n", + "Entity 'http://edamontology.org/data_1358' - Label 'Prosite nucleotide pattern'\n", + "Entity 'http://edamontology.org/data_1359' - Label 'Prosite protein pattern'\n", + "Entity 'http://edamontology.org/data_1368' - Label 'Domainatrix signature'\n", + "Entity 'http://edamontology.org/data_1371' - Label 'HMMER NULL hidden Markov model'\n", + "Entity 'http://edamontology.org/data_1372' - Label 'Protein family signature'\n", + "Entity 'http://edamontology.org/data_1373' - Label 'Protein domain signature'\n", + "Entity 'http://edamontology.org/data_1374' - Label 'Protein region signature'\n", + "Entity 'http://edamontology.org/data_1375' - Label 'Protein repeat signature'\n", + "Entity 'http://edamontology.org/data_1376' - Label 'Protein site signature'\n", + "Entity 'http://edamontology.org/data_1377' - Label 'Protein conserved site signature'\n", + "Entity 'http://edamontology.org/data_1378' - Label 'Protein active site signature'\n", + "Entity 'http://edamontology.org/data_1379' - Label 'Protein binding site signature'\n", + "Entity 'http://edamontology.org/data_1380' - Label 'Protein post-translational modification signature'\n", + "Entity 'http://edamontology.org/data_1382' - Label 'Sequence alignment (multiple)'\n", + "Entity 'http://edamontology.org/data_1386' - Label 'Sequence alignment (nucleic acid pair)'\n", + "Entity 'http://edamontology.org/data_1387' - Label 'Sequence alignment (protein pair)'\n", + "Entity 'http://edamontology.org/data_1388' - Label 'Hybrid sequence alignment (pair)'\n", + "Entity 'http://edamontology.org/data_1389' - Label 'Multiple nucleotide sequence alignment'\n", + "Entity 'http://edamontology.org/data_1390' - Label 'Multiple protein sequence alignment'\n", + "Entity 'http://edamontology.org/data_1395' - Label 'Score end gaps control'\n", + "Entity 'http://edamontology.org/data_1396' - Label 'Aligned sequence order'\n", + "Entity 'http://edamontology.org/data_1400' - Label 'Terminal gap penalty'\n", + "Entity 'http://edamontology.org/data_1404' - Label 'Gap opening penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1405' - Label 'Gap opening penalty (float)'\n", + "Entity 'http://edamontology.org/data_1406' - Label 'Gap extension penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1407' - Label 'Gap extension penalty (float)'\n", + "Entity 'http://edamontology.org/data_1408' - Label 'Gap separation penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1409' - Label 'Gap separation penalty (float)'\n", + "Entity 'http://edamontology.org/data_1414' - Label 'Sequence alignment metadata (quality report)'\n", + "Entity 'http://edamontology.org/data_1415' - Label 'Sequence alignment report (site conservation)'\n", + "Entity 'http://edamontology.org/data_1416' - Label 'Sequence alignment report (site correlation)'\n", + "Entity 'http://edamontology.org/data_1417' - Label 'Sequence-profile alignment (Domainatrix signature)'\n", + "Entity 'http://edamontology.org/data_1418' - Label 'Sequence-profile alignment (HMM)'\n", + "Entity 'http://edamontology.org/data_1420' - Label 'Sequence-profile alignment (fingerprint)'\n", + "Entity 'http://edamontology.org/data_1438' - Label 'Phylogenetic report'\n", + "Entity 'http://edamontology.org/data_1440' - Label 'Phylogenetic tree report (tree shape)'\n", + "Entity 'http://edamontology.org/data_1441' - Label 'Phylogenetic tree report (tree evaluation)'\n", + "Entity 'http://edamontology.org/data_1443' - Label 'Phylogenetic tree report (tree stratigraphic)'\n", + "Entity 'http://edamontology.org/data_1446' - Label 'Comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1447' - Label 'Comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1450' - Label 'Nucleotide comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1451' - Label 'Nucleotide comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1452' - Label 'Amino acid comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1453' - Label 'Amino acid comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1469' - Label 'Protein structure (all atoms)'\n", + "Entity 'http://edamontology.org/data_1471' - Label 'Protein chain (all atoms)'\n", + "Entity 'http://edamontology.org/data_1472' - Label 'Protein chain (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1473' - Label 'Protein domain (all atoms)'\n", + "Entity 'http://edamontology.org/data_1474' - Label 'Protein domain (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1480' - Label 'Structure alignment (multiple)'\n", + "Entity 'http://edamontology.org/data_1483' - Label 'Structure alignment (protein pair)'\n", + "Entity 'http://edamontology.org/data_1484' - Label 'Multiple protein tertiary structure alignment'\n", + "Entity 'http://edamontology.org/data_1485' - Label 'Structure alignment (protein all atoms)'\n", + "Entity 'http://edamontology.org/data_1486' - Label 'Structure alignment (protein C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1487' - Label 'Pairwise protein tertiary structure alignment (all atoms)'\n", + "Entity 'http://edamontology.org/data_1488' - Label 'Pairwise protein tertiary structure alignment (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1489' - Label 'Multiple protein tertiary structure alignment (all atoms)'\n", + "Entity 'http://edamontology.org/data_1490' - Label 'Multiple protein tertiary structure alignment (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1491' - Label 'Structure alignment (nucleic acid pair)'\n", + "Entity 'http://edamontology.org/data_1492' - Label 'Multiple nucleic acid tertiary structure alignment'\n", + "Entity 'http://edamontology.org/data_1495' - Label 'DaliLite hit table'\n", + "Entity 'http://edamontology.org/data_1496' - Label 'Molecular similarity score'\n", + "Entity 'http://edamontology.org/data_1509' - Label 'Enzyme report'\n", + "Entity 'http://edamontology.org/data_1517' - Label 'Restriction enzyme report'\n", + "Entity 'http://edamontology.org/data_1533' - Label 'Protein subcellular localisation'\n", + "Entity 'http://edamontology.org/data_1536' - Label 'MHC peptide immunogenicity report'\n", + "Entity 'http://edamontology.org/data_1540' - Label 'Protein non-covalent interactions report'\n", + "Entity 'http://edamontology.org/data_1541' - Label 'Protein flexibility or motion report'\n", + "Entity 'http://edamontology.org/data_1543' - Label 'Protein surface report'\n", + "Entity 'http://edamontology.org/data_1550' - Label 'Protein non-canonical interactions'\n", + "Entity 'http://edamontology.org/data_1553' - Label 'CATH node'\n", + "Entity 'http://edamontology.org/data_1554' - Label 'SCOP node'\n", + "Entity 'http://edamontology.org/data_1555' - Label 'EMBASSY domain classification'\n", + "Entity 'http://edamontology.org/data_1556' - Label 'CATH class'\n", + "Entity 'http://edamontology.org/data_1557' - Label 'CATH architecture'\n", + "Entity 'http://edamontology.org/data_1558' - Label 'CATH topology'\n", + "Entity 'http://edamontology.org/data_1559' - Label 'CATH homologous superfamily'\n", + "Entity 'http://edamontology.org/data_1560' - Label 'CATH structurally similar group'\n", + "Entity 'http://edamontology.org/data_1561' - Label 'CATH functional category'\n", + "Entity 'http://edamontology.org/data_1564' - Label 'Protein fold recognition report'\n", + "Entity 'http://edamontology.org/data_1565' - Label 'Protein-protein interaction report'\n", + "Entity 'http://edamontology.org/data_1567' - Label 'Protein-nucleic acid interactions report'\n", + "Entity 'http://edamontology.org/data_1586' - Label 'Nucleic acid melting temperature'\n", + "Entity 'http://edamontology.org/data_1587' - Label 'Nucleic acid stitch profile'\n", + "Entity 'http://edamontology.org/data_1591' - Label 'Vienna RNA parameters'\n", + "Entity 'http://edamontology.org/data_1592' - Label 'Vienna RNA structure constraints'\n", + "Entity 'http://edamontology.org/data_1593' - Label 'Vienna RNA concentration data'\n", + "Entity 'http://edamontology.org/data_1594' - Label 'Vienna RNA calculated energy'\n", + "Entity 'http://edamontology.org/data_1599' - Label 'Codon adaptation index'\n", + "Entity 'http://edamontology.org/data_1601' - Label 'Nc statistic'\n", + "Entity 'http://edamontology.org/data_1634' - Label 'Linkage disequilibrium (report)'\n", + "Entity 'http://edamontology.org/data_1642' - Label 'Affymetrix probe sets library file'\n", + "Entity 'http://edamontology.org/data_1643' - Label 'Affymetrix probe sets information library file'\n", + "Entity 'http://edamontology.org/data_1646' - Label 'Molecular weights standard fingerprint'\n", + "Entity 'http://edamontology.org/data_1656' - Label 'Metabolic pathway report'\n", + "Entity 'http://edamontology.org/data_1657' - Label 'Genetic information processing pathway report'\n", + "Entity 'http://edamontology.org/data_1658' - Label 'Environmental information processing pathway report'\n", + "Entity 'http://edamontology.org/data_1659' - Label 'Signal transduction pathway report'\n", + "Entity 'http://edamontology.org/data_1660' - Label 'Cellular process pathways report'\n", + "Entity 'http://edamontology.org/data_1661' - Label 'Disease pathway or network report'\n", + "Entity 'http://edamontology.org/data_1662' - Label 'Drug structure relationship map'\n", + "Entity 'http://edamontology.org/data_1663' - Label 'Protein interaction networks'\n", + "Entity 'http://edamontology.org/data_1664' - Label 'MIRIAM datatype'\n", + "Entity 'http://edamontology.org/data_1670' - Label 'Database version information'\n", + "Entity 'http://edamontology.org/data_1671' - Label 'Tool version information'\n", + "Entity 'http://edamontology.org/data_1672' - Label 'CATH version information'\n", + "Entity 'http://edamontology.org/data_1673' - Label 'Swiss-Prot to PDB mapping'\n", + "Entity 'http://edamontology.org/data_1674' - Label 'Sequence database cross-references'\n", + "Entity 'http://edamontology.org/data_1675' - Label 'Job status'\n", + "Entity 'http://edamontology.org/data_1676' - Label 'Job ID'\n", + "Entity 'http://edamontology.org/data_1677' - Label 'Job type'\n", + "Entity 'http://edamontology.org/data_1678' - Label 'Tool log'\n", + "Entity 'http://edamontology.org/data_1679' - Label 'DaliLite log file'\n", + "Entity 'http://edamontology.org/data_1680' - Label 'STRIDE log file'\n", + "Entity 'http://edamontology.org/data_1681' - Label 'NACCESS log file'\n", + "Entity 'http://edamontology.org/data_1682' - Label 'EMBOSS wordfinder log file'\n", + "Entity 'http://edamontology.org/data_1683' - Label 'EMBOSS domainatrix log file'\n", + "Entity 'http://edamontology.org/data_1684' - Label 'EMBOSS sites log file'\n", + "Entity 'http://edamontology.org/data_1685' - Label 'EMBOSS supermatcher error file'\n", + "Entity 'http://edamontology.org/data_1686' - Label 'EMBOSS megamerger log file'\n", + "Entity 'http://edamontology.org/data_1687' - Label 'EMBOSS whichdb log file'\n", + "Entity 'http://edamontology.org/data_1688' - Label 'EMBOSS vectorstrip log file'\n", + "Entity 'http://edamontology.org/data_1693' - Label 'Number of iterations'\n", + "Entity 'http://edamontology.org/data_1694' - Label 'Number of output entities'\n", + "Entity 'http://edamontology.org/data_1695' - Label 'Hit sort order'\n", + "Entity 'http://edamontology.org/data_1715' - Label 'BioPax term'\n", + "Entity 'http://edamontology.org/data_1716' - Label 'GO'\n", + "Entity 'http://edamontology.org/data_1717' - Label 'MeSH'\n", + "Entity 'http://edamontology.org/data_1718' - Label 'HGNC'\n", + "Entity 'http://edamontology.org/data_1719' - Label 'NCBI taxonomy vocabulary'\n", + "Entity 'http://edamontology.org/data_1720' - Label 'Plant ontology term'\n", + "Entity 'http://edamontology.org/data_1721' - Label 'UMLS'\n", + "Entity 'http://edamontology.org/data_1722' - Label 'FMA'\n", + "Entity 'http://edamontology.org/data_1723' - Label 'EMAP'\n", + "Entity 'http://edamontology.org/data_1724' - Label 'ChEBI'\n", + "Entity 'http://edamontology.org/data_1725' - Label 'MGED'\n", + "Entity 'http://edamontology.org/data_1726' - Label 'myGrid'\n", + "Entity 'http://edamontology.org/data_1727' - Label 'GO (biological process)'\n", + "Entity 'http://edamontology.org/data_1728' - Label 'GO (molecular function)'\n", + "Entity 'http://edamontology.org/data_1729' - Label 'GO (cellular component)'\n", + "Entity 'http://edamontology.org/data_1730' - Label 'Ontology relation type'\n", + "Entity 'http://edamontology.org/data_1732' - Label 'Ontology concept comment'\n", + "Entity 'http://edamontology.org/data_1733' - Label 'Ontology concept reference'\n", + "Entity 'http://edamontology.org/data_1738' - Label 'doc2loc document information'\n", + "Entity 'http://edamontology.org/data_1744' - Label 'Atomic x coordinate'\n", + "Entity 'http://edamontology.org/data_1745' - Label 'Atomic y coordinate'\n", + "Entity 'http://edamontology.org/data_1746' - Label 'Atomic z coordinate'\n", + "Entity 'http://edamontology.org/data_1762' - Label 'CATH domain report'\n", + "Entity 'http://edamontology.org/data_1764' - Label 'CATH representative domain sequences (ATOM)'\n", + "Entity 'http://edamontology.org/data_1765' - Label 'CATH representative domain sequences (COMBS)'\n", + "Entity 'http://edamontology.org/data_1766' - Label 'CATH domain sequences (ATOM)'\n", + "Entity 'http://edamontology.org/data_1767' - Label 'CATH domain sequences (COMBS)'\n", + "Entity 'http://edamontology.org/data_1776' - Label 'Protein report (function)'\n", + "Entity 'http://edamontology.org/data_1783' - Label 'Gene name (ASPGD)'\n", + "Entity 'http://edamontology.org/data_1784' - Label 'Gene name (CGD)'\n", + "Entity 'http://edamontology.org/data_1785' - Label 'Gene name (dictyBase)'\n", + "Entity 'http://edamontology.org/data_1786' - Label 'Gene name (EcoGene primary)'\n", + "Entity 'http://edamontology.org/data_1787' - Label 'Gene name (MaizeGDB)'\n", + "Entity 'http://edamontology.org/data_1788' - Label 'Gene name (SGD)'\n", + "Entity 'http://edamontology.org/data_1789' - Label 'Gene name (TGD)'\n", + "Entity 'http://edamontology.org/data_1790' - Label 'Gene name (CGSC)'\n", + "Entity 'http://edamontology.org/data_1791' - Label 'Gene name (HGNC)'\n", + "Entity 'http://edamontology.org/data_1792' - Label 'Gene name (MGD)'\n", + "Entity 'http://edamontology.org/data_1793' - Label 'Gene name (Bacillus subtilis)'\n", + "Entity 'http://edamontology.org/data_1797' - Label 'Gene ID (GeneDB Glossina morsitans)'\n", + "Entity 'http://edamontology.org/data_1798' - Label 'Gene ID (GeneDB Leishmania major)'\n", + "Entity 'http://edamontology.org/data_1799' - Label 'Gene ID (GeneDB Plasmodium falciparum)'\n", + "Entity 'http://edamontology.org/data_1800' - Label 'Gene ID (GeneDB Schizosaccharomyces pombe)'\n", + "Entity 'http://edamontology.org/data_1801' - Label 'Gene ID (GeneDB Trypanosoma brucei)'\n", + "Entity 'http://edamontology.org/data_1806' - Label 'Gene synonym'\n", + "Entity 'http://edamontology.org/data_1852' - Label 'Sequence assembly component'\n", + "Entity 'http://edamontology.org/data_1853' - Label 'Chromosome annotation (aberration)'\n", + "Entity 'http://edamontology.org/data_1864' - Label 'Map set data'\n", + "Entity 'http://edamontology.org/data_1865' - Label 'Map feature'\n", + "Entity 'http://edamontology.org/data_1866' - Label 'Map type'\n", + "Entity 'http://edamontology.org/data_1877' - Label 'Synonym'\n", + "Entity 'http://edamontology.org/data_1878' - Label 'Misspelling'\n", + "Entity 'http://edamontology.org/data_1879' - Label 'Acronym'\n", + "Entity 'http://edamontology.org/data_1880' - Label 'Misnomer'\n", + "Entity 'http://edamontology.org/data_1884' - Label 'UniProt keywords'\n", + "Entity 'http://edamontology.org/data_1887' - Label 'Gene ID (MIPS Maize)'\n", + "Entity 'http://edamontology.org/data_1888' - Label 'Gene ID (MIPS Medicago)'\n", + "Entity 'http://edamontology.org/data_1889' - Label 'Gene name (DragonDB)'\n", + "Entity 'http://edamontology.org/data_1890' - Label 'Gene name (Arabidopsis)'\n", + "Entity 'http://edamontology.org/data_1892' - Label 'Gene name (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_1906' - Label 'Quantitative trait locus'\n", + "Entity 'http://edamontology.org/data_2009' - Label 'Ordered locus name'\n", + "Entity 'http://edamontology.org/data_2018' - Label 'Annotation'\n", + "Entity 'http://edamontology.org/data_2022' - Label 'Vienna RNA structural data'\n", + "Entity 'http://edamontology.org/data_2023' - Label 'Sequence mask parameter'\n", + "Entity 'http://edamontology.org/data_2028' - Label 'Experimental data'\n", + "Entity 'http://edamontology.org/data_2041' - Label 'Genome version information'\n", + "Entity 'http://edamontology.org/data_2043' - Label 'Sequence record lite'\n", + "Entity 'http://edamontology.org/data_2046' - Label 'Nucleic acid sequence record (lite)'\n", + "Entity 'http://edamontology.org/data_2047' - Label 'Protein sequence record (lite)'\n", + "Entity 'http://edamontology.org/data_2053' - Label 'Structural data'\n", + "Entity 'http://edamontology.org/data_2079' - Label 'Search parameter'\n", + "Entity 'http://edamontology.org/data_2081' - Label 'Secondary structure'\n", + "Entity 'http://edamontology.org/data_2083' - Label 'Alignment data'\n", + "Entity 'http://edamontology.org/data_2086' - Label 'Nucleic acid structure data'\n", + "Entity 'http://edamontology.org/data_2090' - Label 'Database entry version information'\n", + "Entity 'http://edamontology.org/data_2092' - Label 'SNP'\n", + "Entity 'http://edamontology.org/data_2100' - Label 'Type'\n", + "Entity 'http://edamontology.org/data_2103' - Label 'Gene name (KEGG GENES)'\n", + "Entity 'http://edamontology.org/data_2116' - Label 'Nucleic acid features (codon)'\n", + "Entity 'http://edamontology.org/data_2126' - Label 'Translation frame specification'\n", + "Entity 'http://edamontology.org/data_2130' - Label 'Sequence profile type'\n", + "Entity 'http://edamontology.org/data_2132' - Label 'Mutation type'\n", + "Entity 'http://edamontology.org/data_2134' - Label 'Results sort order'\n", + "Entity 'http://edamontology.org/data_2135' - Label 'Toggle'\n", + "Entity 'http://edamontology.org/data_2136' - Label 'Sequence width'\n", + "Entity 'http://edamontology.org/data_2141' - Label 'Window step size'\n", + "Entity 'http://edamontology.org/data_2142' - Label 'EMBOSS graph'\n", + "Entity 'http://edamontology.org/data_2143' - Label 'EMBOSS report'\n", + "Entity 'http://edamontology.org/data_2145' - Label 'Sequence offset'\n", + "Entity 'http://edamontology.org/data_2146' - Label 'Threshold'\n", + "Entity 'http://edamontology.org/data_2147' - Label 'Protein report (transcription factor)'\n", + "Entity 'http://edamontology.org/data_2149' - Label 'Database category name'\n", + "Entity 'http://edamontology.org/data_2150' - Label 'Sequence profile name'\n", + "Entity 'http://edamontology.org/data_2151' - Label 'Color'\n", + "Entity 'http://edamontology.org/data_2152' - Label 'Rendering parameter'\n", + "Entity 'http://edamontology.org/data_2156' - Label 'Date'\n", + "Entity 'http://edamontology.org/data_2157' - Label 'Word composition'\n", + "Entity 'http://edamontology.org/data_2164' - Label 'Protein sequence properties plot'\n", + "Entity 'http://edamontology.org/data_2169' - Label 'Nucleic acid features (siRNA)'\n", + "Entity 'http://edamontology.org/data_2173' - Label 'Sequence set (stream)'\n", + "Entity 'http://edamontology.org/data_2176' - Label 'Cardinality'\n", + "Entity 'http://edamontology.org/data_2177' - Label 'Exactly 1'\n", + "Entity 'http://edamontology.org/data_2178' - Label '1 or more'\n", + "Entity 'http://edamontology.org/data_2179' - Label 'Exactly 2'\n", + "Entity 'http://edamontology.org/data_2180' - Label '2 or more'\n", + "Entity 'http://edamontology.org/data_2191' - Label 'Protein features report (chemical modifications)'\n", + "Entity 'http://edamontology.org/data_2192' - Label 'Error'\n", + "Entity 'http://edamontology.org/data_2198' - Label 'Gene cluster'\n", + "Entity 'http://edamontology.org/data_2201' - Label 'Sequence record full'\n", + "Entity 'http://edamontology.org/data_2212' - Label 'Mutation annotation (basic)'\n", + "Entity 'http://edamontology.org/data_2213' - Label 'Mutation annotation (prevalence)'\n", + "Entity 'http://edamontology.org/data_2214' - Label 'Mutation annotation (prognostic)'\n", + "Entity 'http://edamontology.org/data_2215' - Label 'Mutation annotation (functional)'\n", + "Entity 'http://edamontology.org/data_2217' - Label 'Tumor annotation'\n", + "Entity 'http://edamontology.org/data_2218' - Label 'Server metadata'\n", + "Entity 'http://edamontology.org/data_2235' - Label 'Raw SCOP domain classification'\n", + "Entity 'http://edamontology.org/data_2236' - Label 'Raw CATH domain classification'\n", + "Entity 'http://edamontology.org/data_2240' - Label 'Heterogen annotation'\n", + "Entity 'http://edamontology.org/data_2242' - Label 'Phylogenetic property values'\n", + "Entity 'http://edamontology.org/data_2245' - Label 'Sequence set (bootstrapped)'\n", + "Entity 'http://edamontology.org/data_2247' - Label 'Phylogenetic consensus tree'\n", + "Entity 'http://edamontology.org/data_2248' - Label 'Schema'\n", + "Entity 'http://edamontology.org/data_2249' - Label 'DTD'\n", + "Entity 'http://edamontology.org/data_2250' - Label 'XML Schema'\n", + "Entity 'http://edamontology.org/data_2251' - Label 'Relax-NG schema'\n", + "Entity 'http://edamontology.org/data_2252' - Label 'XSLT stylesheet'\n", + "Entity 'http://edamontology.org/data_2288' - Label 'Sequence identifier (protein)'\n", + "Entity 'http://edamontology.org/data_2289' - Label 'Sequence identifier (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_2296' - Label 'Gene name (AceView)'\n", + "Entity 'http://edamontology.org/data_2300' - Label 'Gene name (NCBI)'\n", + "Entity 'http://edamontology.org/data_2307' - Label 'Virus annotation'\n", + "Entity 'http://edamontology.org/data_2308' - Label 'Virus annotation (taxonomy)'\n", + "Entity 'http://edamontology.org/data_2336' - Label 'Translation phase specification'\n", + "Entity 'http://edamontology.org/data_2357' - Label 'Protein signature type'\n", + "Entity 'http://edamontology.org/data_2358' - Label 'Domain-nucleic acid interaction report'\n", + "Entity 'http://edamontology.org/data_2359' - Label 'Domain-domain interactions'\n", + "Entity 'http://edamontology.org/data_2360' - Label 'Domain-domain interaction (indirect)'\n", + "Entity 'http://edamontology.org/data_2363' - Label '2D PAGE data'\n", + "Entity 'http://edamontology.org/data_2364' - Label '2D PAGE report'\n", + "Entity 'http://edamontology.org/data_2372' - Label '2D PAGE spot report'\n", + "Entity 'http://edamontology.org/data_2378' - Label 'Protein-motif interaction'\n", + "Entity 'http://edamontology.org/data_2381' - Label 'Experiment report (genotyping)'\n", + "Entity 'http://edamontology.org/data_2395' - Label 'Fungi annotation'\n", + "Entity 'http://edamontology.org/data_2396' - Label 'Fungi annotation (anamorph)'\n", + "Entity 'http://edamontology.org/data_2400' - Label 'Toxin annotation'\n", + "Entity 'http://edamontology.org/data_2401' - Label 'Protein report (membrane protein)'\n", + "Entity 'http://edamontology.org/data_2402' - Label 'Protein-drug interaction report'\n", + "Entity 'http://edamontology.org/data_2522' - Label 'Map data'\n", + "Entity 'http://edamontology.org/data_2524' - Label 'Protein data'\n", + "Entity 'http://edamontology.org/data_2525' - Label 'Nucleic acid data'\n", + "Entity 'http://edamontology.org/data_2527' - Label 'Parameter'\n", + "Entity 'http://edamontology.org/data_2528' - Label 'Molecular data'\n", + "Entity 'http://edamontology.org/data_2529' - Label 'Molecule report'\n", + "Entity 'http://edamontology.org/data_2539' - Label 'Alignment data'\n", + "Entity 'http://edamontology.org/data_2540' - Label 'Data index data'\n", + "Entity 'http://edamontology.org/data_2579' - Label 'Expressed gene list'\n", + "Entity 'http://edamontology.org/data_2581' - Label 'GO concept name'\n", + "Entity 'http://edamontology.org/data_2584' - Label 'GO concept name (cellular component)'\n", + "Entity 'http://edamontology.org/data_2590' - Label 'Hierarchy identifier'\n", + "Entity 'http://edamontology.org/data_2592' - Label 'Cancer type'\n", + "Entity 'http://edamontology.org/data_2598' - Label 'Secondary structure alignment metadata'\n", + "Entity 'http://edamontology.org/data_2599' - Label 'Molecule interaction report'\n", + "Entity 'http://edamontology.org/data_2601' - Label 'Small molecule data'\n", + "Entity 'http://edamontology.org/data_2602' - Label 'Genotype and phenotype data'\n", + "Entity 'http://edamontology.org/data_2627' - Label 'Molecular interaction ID'\n", + "Entity 'http://edamontology.org/data_2671' - Label 'Ensembl ID (Homo sapiens)'\n", + "Entity 'http://edamontology.org/data_2672' - Label 'Ensembl ID ('Bos taurus')'\n", + "Entity 'http://edamontology.org/data_2673' - Label 'Ensembl ID ('Canis familiaris')'\n", + "Entity 'http://edamontology.org/data_2674' - Label 'Ensembl ID ('Cavia porcellus')'\n", + "Entity 'http://edamontology.org/data_2675' - Label 'Ensembl ID ('Ciona intestinalis')'\n", + "Entity 'http://edamontology.org/data_2676' - Label 'Ensembl ID ('Ciona savignyi')'\n", + "Entity 'http://edamontology.org/data_2677' - Label 'Ensembl ID ('Danio rerio')'\n", + "Entity 'http://edamontology.org/data_2678' - Label 'Ensembl ID ('Dasypus novemcinctus')'\n", + "Entity 'http://edamontology.org/data_2679' - Label 'Ensembl ID ('Echinops telfairi')'\n", + "Entity 'http://edamontology.org/data_2680' - Label 'Ensembl ID ('Erinaceus europaeus')'\n", + "Entity 'http://edamontology.org/data_2681' - Label 'Ensembl ID ('Felis catus')'\n", + "Entity 'http://edamontology.org/data_2682' - Label 'Ensembl ID ('Gallus gallus')'\n", + "Entity 'http://edamontology.org/data_2683' - Label 'Ensembl ID ('Gasterosteus aculeatus')'\n", + "Entity 'http://edamontology.org/data_2684' - Label 'Ensembl ID ('Homo sapiens')'\n", + "Entity 'http://edamontology.org/data_2685' - Label 'Ensembl ID ('Loxodonta africana')'\n", + "Entity 'http://edamontology.org/data_2686' - Label 'Ensembl ID ('Macaca mulatta')'\n", + "Entity 'http://edamontology.org/data_2687' - Label 'Ensembl ID ('Monodelphis domestica')'\n", + "Entity 'http://edamontology.org/data_2688' - Label 'Ensembl ID ('Mus musculus')'\n", + "Entity 'http://edamontology.org/data_2689' - Label 'Ensembl ID ('Myotis lucifugus')'\n", + "Entity 'http://edamontology.org/data_2690' - Label 'Ensembl ID (\"Ornithorhynchus anatinus\")'\n", + "Entity 'http://edamontology.org/data_2691' - Label 'Ensembl ID ('Oryctolagus cuniculus')'\n", + "Entity 'http://edamontology.org/data_2692' - Label 'Ensembl ID ('Oryzias latipes')'\n", + "Entity 'http://edamontology.org/data_2693' - Label 'Ensembl ID ('Otolemur garnettii')'\n", + "Entity 'http://edamontology.org/data_2694' - Label 'Ensembl ID ('Pan troglodytes')'\n", + "Entity 'http://edamontology.org/data_2695' - Label 'Ensembl ID ('Rattus norvegicus')'\n", + "Entity 'http://edamontology.org/data_2696' - Label 'Ensembl ID ('Spermophilus tridecemlineatus')'\n", + "Entity 'http://edamontology.org/data_2697' - Label 'Ensembl ID ('Takifugu rubripes')'\n", + "Entity 'http://edamontology.org/data_2698' - Label 'Ensembl ID ('Tupaia belangeri')'\n", + "Entity 'http://edamontology.org/data_2699' - Label 'Ensembl ID ('Xenopus tropicalis')'\n", + "Entity 'http://edamontology.org/data_2722' - Label 'Protein features report (disordered structure)'\n", + "Entity 'http://edamontology.org/data_2724' - Label 'Embryo report'\n", + "Entity 'http://edamontology.org/data_2726' - Label 'Inhibitor annotation'\n", + "Entity 'http://edamontology.org/data_2733' - Label 'Genus name (virus)'\n", + "Entity 'http://edamontology.org/data_2734' - Label 'Family name (virus)'\n", + "Entity 'http://edamontology.org/data_2735' - Label 'Database name (SwissRegulon)'\n", + "Entity 'http://edamontology.org/data_2740' - Label 'Gene name (Genolist)'\n", + "Entity 'http://edamontology.org/data_2743' - Label 'Gene name (HUGO)'\n", + "Entity 'http://edamontology.org/data_2747' - Label 'Database name (CMD)'\n", + "Entity 'http://edamontology.org/data_2748' - Label 'Database name (Osteogenesis)'\n", + "Entity 'http://edamontology.org/data_2751' - Label 'GenomeReviews ID'\n", + "Entity 'http://edamontology.org/data_2763' - Label 'Locus annotation'\n", + "Entity 'http://edamontology.org/data_2765' - Label 'Term ID list'\n", + "Entity 'http://edamontology.org/data_2767' - Label 'Identifier with metadata'\n", + "Entity 'http://edamontology.org/data_2768' - Label 'Gene symbol annotation'\n", + "Entity 'http://edamontology.org/data_2788' - Label 'Sequence profile data'\n", + "Entity 'http://edamontology.org/data_2831' - Label 'Databank'\n", + "Entity 'http://edamontology.org/data_2832' - Label 'Web portal'\n", + "Entity 'http://edamontology.org/data_2838' - Label 'Experimental data (proteomics)'\n", + "Entity 'http://edamontology.org/data_2857' - Label 'Article metadata'\n", + "Entity 'http://edamontology.org/data_2866' - Label 'Northern blot report'\n", + "Entity 'http://edamontology.org/data_2874' - Label 'Sequence set (polymorphic)'\n", + "Entity 'http://edamontology.org/data_2875' - Label 'DRCAT resource'\n", + "Entity 'http://edamontology.org/data_2880' - Label 'Secondary structure image'\n", + "Entity 'http://edamontology.org/data_2881' - Label 'Secondary structure report'\n", + "Entity 'http://edamontology.org/data_2882' - Label 'DNA features'\n", + "Entity 'http://edamontology.org/data_2883' - Label 'RNA features report'\n", + "Entity 'http://edamontology.org/data_2888' - Label 'Protein sequence record (full)'\n", + "Entity 'http://edamontology.org/data_2889' - Label 'Nucleic acid sequence record (full)'\n", + "Entity 'http://edamontology.org/data_2913' - Label 'Virus identifier'\n", + "Entity 'http://edamontology.org/data_2925' - Label 'Sequence data'\n", + "Entity 'http://edamontology.org/data_2927' - Label 'Codon usage'\n", + "Entity 'http://edamontology.org/data_2954' - Label 'Article report'\n", + "Entity 'http://edamontology.org/data_2958' - Label 'Nucleic acid melting curve'\n", + "Entity 'http://edamontology.org/data_2959' - Label 'Nucleic acid probability profile'\n", + "Entity 'http://edamontology.org/data_2960' - Label 'Nucleic acid temperature profile'\n", + "Entity 'http://edamontology.org/data_2961' - Label 'Gene regulatory network report'\n", + "Entity 'http://edamontology.org/data_2965' - Label '2D PAGE gel report'\n", + "Entity 'http://edamontology.org/data_2966' - Label 'Oligonucleotide probe sets annotation'\n", + "Entity 'http://edamontology.org/data_2967' - Label 'Microarray image'\n", + "Entity 'http://edamontology.org/data_2971' - Label 'Workflow data'\n", + "Entity 'http://edamontology.org/data_2972' - Label 'Workflow'\n", + "Entity 'http://edamontology.org/data_2973' - Label 'Secondary structure data'\n", + "Entity 'http://edamontology.org/data_2974' - Label 'Protein sequence (raw)'\n", + "Entity 'http://edamontology.org/data_2975' - Label 'Nucleic acid sequence (raw)'\n", + "Entity 'http://edamontology.org/data_2980' - Label 'Protein classification'\n", + "Entity 'http://edamontology.org/data_2981' - Label 'Sequence motif data'\n", + "Entity 'http://edamontology.org/data_2982' - Label 'Sequence profile data'\n", + "Entity 'http://edamontology.org/data_2983' - Label 'Pathway or network data'\n", + "Entity 'http://edamontology.org/data_2986' - Label 'Nucleic acid classification'\n", + "Entity 'http://edamontology.org/data_2987' - Label 'Classification report'\n", + "Entity 'http://edamontology.org/data_2989' - Label 'Protein features report (key folding sites)'\n", + "Entity 'http://edamontology.org/data_3026' - Label 'GO concept name (biological process)'\n", + "Entity 'http://edamontology.org/data_3027' - Label 'GO concept name (molecular function)'\n", + "Entity 'http://edamontology.org/data_3031' - Label 'Core data'\n", + "Entity 'http://edamontology.org/data_3085' - Label 'Protein sequence composition'\n", + "Entity 'http://edamontology.org/data_3086' - Label 'Nucleic acid sequence composition (report)'\n", + "Entity 'http://edamontology.org/data_3101' - Label 'Protein domain classification node'\n", + "Entity 'http://edamontology.org/data_3102' - Label 'CAS number'\n", + "Entity 'http://edamontology.org/data_3105' - Label 'Geotemporal metadata'\n", + "Entity 'http://edamontology.org/data_3107' - Label 'Sequence feature name'\n", + "Entity 'http://edamontology.org/data_3116' - Label 'Microarray protocol annotation'\n", + "Entity 'http://edamontology.org/data_3119' - Label 'Sequence features (compositionally-biased regions)'\n", + "Entity 'http://edamontology.org/data_3122' - Label 'Nucleic acid features (difference and change)'\n", + "Entity 'http://edamontology.org/data_3129' - Label 'Protein features report (repeats)'\n", + "Entity 'http://edamontology.org/data_3130' - Label 'Sequence motif matches (protein)'\n", + "Entity 'http://edamontology.org/data_3131' - Label 'Sequence motif matches (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_3132' - Label 'Nucleic acid features (d-loop)'\n", + "Entity 'http://edamontology.org/data_3133' - Label 'Nucleic acid features (stem loop)'\n", + "Entity 'http://edamontology.org/data_3137' - Label 'Non-coding RNA'\n", + "Entity 'http://edamontology.org/data_3138' - Label 'Transcriptional features (report)'\n", + "Entity 'http://edamontology.org/data_3140' - Label 'Nucleic acid features (immunoglobulin gene structure)'\n", + "Entity 'http://edamontology.org/data_3141' - Label 'SCOP class'\n", + "Entity 'http://edamontology.org/data_3142' - Label 'SCOP fold'\n", + "Entity 'http://edamontology.org/data_3143' - Label 'SCOP superfamily'\n", + "Entity 'http://edamontology.org/data_3144' - Label 'SCOP family'\n", + "Entity 'http://edamontology.org/data_3145' - Label 'SCOP protein'\n", + "Entity 'http://edamontology.org/data_3146' - Label 'SCOP species'\n", + "Entity 'http://edamontology.org/data_3147' - Label 'Mass spectrometry experiment'\n", + "Entity 'http://edamontology.org/data_3154' - Label 'Protein alignment'\n", + "Entity 'http://edamontology.org/data_3165' - Label 'NGS experiment'\n", + "Entity 'http://edamontology.org/data_3231' - Label 'GWAS report'\n", + "Entity 'http://edamontology.org/data_3268' - Label 'Sequence feature type'\n", + "Entity 'http://edamontology.org/data_3269' - Label 'Gene homology (report)'\n", + "Entity 'http://edamontology.org/data_3356' - Label 'Hidden Markov model'\n", + "Entity 'http://edamontology.org/data_3426' - Label 'Proteomics experiment report'\n", + "Entity 'http://edamontology.org/data_3427' - Label 'RNAi report'\n", + "Entity 'http://edamontology.org/data_3428' - Label 'Simulation experiment report'\n", + "Entity 'http://edamontology.org/data_3490' - Label 'Chemical structure sketch'\n", + "Entity 'http://edamontology.org/data_3496' - Label 'RNA sequence (raw)'\n", + "Entity 'http://edamontology.org/data_3497' - Label 'DNA sequence (raw)'\n", + "Entity 'http://edamontology.org/format_1228' - Label 'UniGene entry format'\n", + "Entity 'http://edamontology.org/format_1247' - Label 'COG sequence cluster format'\n", + "Entity 'http://edamontology.org/format_1431' - Label 'Phylogenetic property values format'\n", + "Entity 'http://edamontology.org/format_1500' - Label 'Domainatrix 3D-1D scoring matrix format'\n", + "Entity 'http://edamontology.org/format_1511' - Label 'IntEnz enzyme report format'\n", + "Entity 'http://edamontology.org/format_1512' - Label 'BRENDA enzyme report format'\n", + "Entity 'http://edamontology.org/format_1513' - Label 'KEGG REACTION enzyme report format'\n", + "Entity 'http://edamontology.org/format_1514' - Label 'KEGG ENZYME enzyme report format'\n", + "Entity 'http://edamontology.org/format_1515' - Label 'REBASE proto enzyme report format'\n", + "Entity 'http://edamontology.org/format_1516' - Label 'REBASE withrefm enzyme report format'\n", + "Entity 'http://edamontology.org/format_1563' - Label 'SMART domain assignment report format'\n", + "Entity 'http://edamontology.org/format_1568' - Label 'BIND entry format'\n", + "Entity 'http://edamontology.org/format_1569' - Label 'IntAct entry format'\n", + "Entity 'http://edamontology.org/format_1570' - Label 'InterPro entry format'\n", + "Entity 'http://edamontology.org/format_1571' - Label 'InterPro entry abstract format'\n", + "Entity 'http://edamontology.org/format_1572' - Label 'Gene3D entry format'\n", + "Entity 'http://edamontology.org/format_1573' - Label 'PIRSF entry format'\n", + "Entity 'http://edamontology.org/format_1574' - Label 'PRINTS entry format'\n", + "Entity 'http://edamontology.org/format_1575' - Label 'Panther Families and HMMs entry format'\n", + "Entity 'http://edamontology.org/format_1576' - Label 'Pfam entry format'\n", + "Entity 'http://edamontology.org/format_1577' - Label 'SMART entry format'\n", + "Entity 'http://edamontology.org/format_1578' - Label 'Superfamily entry format'\n", + "Entity 'http://edamontology.org/format_1579' - Label 'TIGRFam entry format'\n", + "Entity 'http://edamontology.org/format_1580' - Label 'ProDom entry format'\n", + "Entity 'http://edamontology.org/format_1581' - Label 'FSSP entry format'\n", + "Entity 'http://edamontology.org/format_1603' - Label 'Ensembl gene report format'\n", + "Entity 'http://edamontology.org/format_1604' - Label 'DictyBase gene report format'\n", + "Entity 'http://edamontology.org/format_1605' - Label 'CGD gene report format'\n", + "Entity 'http://edamontology.org/format_1606' - Label 'DragonDB gene report format'\n", + "Entity 'http://edamontology.org/format_1607' - Label 'EcoCyc gene report format'\n", + "Entity 'http://edamontology.org/format_1608' - Label 'FlyBase gene report format'\n", + "Entity 'http://edamontology.org/format_1609' - Label 'Gramene gene report format'\n", + "Entity 'http://edamontology.org/format_1610' - Label 'KEGG GENES gene report format'\n", + "Entity 'http://edamontology.org/format_1611' - Label 'MaizeGDB gene report format'\n", + "Entity 'http://edamontology.org/format_1612' - Label 'MGD gene report format'\n", + "Entity 'http://edamontology.org/format_1613' - Label 'RGD gene report format'\n", + "Entity 'http://edamontology.org/format_1614' - Label 'SGD gene report format'\n", + "Entity 'http://edamontology.org/format_1615' - Label 'GeneDB gene report format'\n", + "Entity 'http://edamontology.org/format_1616' - Label 'TAIR gene report format'\n", + "Entity 'http://edamontology.org/format_1617' - Label 'WormBase gene report format'\n", + "Entity 'http://edamontology.org/format_1618' - Label 'ZFIN gene report format'\n", + "Entity 'http://edamontology.org/format_1619' - Label 'TIGR gene report format'\n", + "Entity 'http://edamontology.org/format_1620' - Label 'dbSNP polymorphism report format'\n", + "Entity 'http://edamontology.org/format_1623' - Label 'OMIM entry format'\n", + "Entity 'http://edamontology.org/format_1624' - Label 'HGVbase entry format'\n", + "Entity 'http://edamontology.org/format_1625' - Label 'HIVDB entry format'\n", + "Entity 'http://edamontology.org/format_1626' - Label 'KEGG DISEASE entry format'\n", + "Entity 'http://edamontology.org/format_1640' - Label 'ArrayExpress entry format'\n", + "Entity 'http://edamontology.org/format_1645' - Label 'EMDB entry format'\n", + "Entity 'http://edamontology.org/format_1647' - Label 'KEGG PATHWAY entry format'\n", + "Entity 'http://edamontology.org/format_1648' - Label 'MetaCyc entry format'\n", + "Entity 'http://edamontology.org/format_1649' - Label 'HumanCyc entry format'\n", + "Entity 'http://edamontology.org/format_1650' - Label 'INOH entry format'\n", + "Entity 'http://edamontology.org/format_1651' - Label 'PATIKA entry format'\n", + "Entity 'http://edamontology.org/format_1652' - Label 'Reactome entry format'\n", + "Entity 'http://edamontology.org/format_1653' - Label 'aMAZE entry format'\n", + "Entity 'http://edamontology.org/format_1654' - Label 'CPDB entry format'\n", + "Entity 'http://edamontology.org/format_1655' - Label 'Panther Pathways entry format'\n", + "Entity 'http://edamontology.org/format_1666' - Label 'BioModel mathematical model format'\n", + "Entity 'http://edamontology.org/format_1697' - Label 'KEGG LIGAND entry format'\n", + "Entity 'http://edamontology.org/format_1698' - Label 'KEGG COMPOUND entry format'\n", + "Entity 'http://edamontology.org/format_1699' - Label 'KEGG PLANT entry format'\n", + "Entity 'http://edamontology.org/format_1700' - Label 'KEGG GLYCAN entry format'\n", + "Entity 'http://edamontology.org/format_1701' - Label 'PubChem entry format'\n", + "Entity 'http://edamontology.org/format_1702' - Label 'ChemSpider entry format'\n", + "Entity 'http://edamontology.org/format_1703' - Label 'ChEBI entry format'\n", + "Entity 'http://edamontology.org/format_1704' - Label 'MSDchem ligand dictionary entry format'\n", + "Entity 'http://edamontology.org/format_1706' - Label 'KEGG DRUG entry format'\n", + "Entity 'http://edamontology.org/format_1747' - Label 'PDB atom record format'\n", + "Entity 'http://edamontology.org/format_1760' - Label 'CATH chain report format'\n", + "Entity 'http://edamontology.org/format_1761' - Label 'CATH PDB report format'\n", + "Entity 'http://edamontology.org/format_1782' - Label 'NCBI gene report format'\n", + "Entity 'http://edamontology.org/format_1808' - Label 'GeneIlluminator gene report format'\n", + "Entity 'http://edamontology.org/format_1809' - Label 'BacMap gene card format'\n", + "Entity 'http://edamontology.org/format_1810' - Label 'ColiCard report format'\n", + "Entity 'http://edamontology.org/format_1918' - Label 'Atomic data format'\n", + "Entity 'http://edamontology.org/format_1924' - Label 'clustal sequence format'\n", + "Entity 'http://edamontology.org/format_1955' - Label 'phylip sequence format'\n", + "Entity 'http://edamontology.org/format_1956' - Label 'phylipnon sequence format'\n", + "Entity 'http://edamontology.org/format_1959' - Label 'selex sequence format'\n", + "Entity 'http://edamontology.org/format_1965' - Label 'treecon sequence format'\n", + "Entity 'http://edamontology.org/format_1971' - Label 'meganon sequence format'\n", + "Entity 'http://edamontology.org/format_1976' - Label 'pir'\n", + "Entity 'http://edamontology.org/format_1977' - Label 'swiss feature'\n", + "Entity 'http://edamontology.org/format_1980' - Label 'EMBL feature'\n", + "Entity 'http://edamontology.org/format_1981' - Label 'GenBank feature'\n", + "Entity 'http://edamontology.org/format_1993' - Label 'msf alignment format'\n", + "Entity 'http://edamontology.org/format_1994' - Label 'nexus alignment format'\n", + "Entity 'http://edamontology.org/format_1995' - Label 'nexusnon alignment format'\n", + "Entity 'http://edamontology.org/format_2015' - Label 'Sequence-profile alignment (HMM) format'\n", + "Entity 'http://edamontology.org/format_2034' - Label 'Biological model format'\n", + "Entity 'http://edamontology.org/format_2045' - Label 'Electron microscopy model format'\n", + "Entity 'http://edamontology.org/format_2051' - Label 'Polymorphism report format'\n", + "Entity 'http://edamontology.org/format_2059' - Label 'Genotype and phenotype annotation format'\n", + "Entity 'http://edamontology.org/format_2063' - Label 'Protein report (enzyme) format'\n", + "Entity 'http://edamontology.org/format_2159' - Label 'Gene features (coding region) format'\n", + "Entity 'http://edamontology.org/format_2175' - Label 'Gene cluster format'\n", + "Entity 'http://edamontology.org/format_2188' - Label 'UniProt format'\n", + "Entity 'http://edamontology.org/format_2189' - Label 'ipi'\n", + "Entity 'http://edamontology.org/format_2202' - Label 'Sequence record full format'\n", + "Entity 'http://edamontology.org/format_2203' - Label 'Sequence record lite format'\n", + "Entity 'http://edamontology.org/format_2210' - Label 'Strain data format'\n", + "Entity 'http://edamontology.org/format_2211' - Label 'CIP strain data format'\n", + "Entity 'http://edamontology.org/format_2243' - Label 'phylip property values'\n", + "Entity 'http://edamontology.org/format_2303' - Label 'STRING entry format (HTML)'\n", + "Entity 'http://edamontology.org/format_2322' - Label 'BioCyc enzyme report format'\n", + "Entity 'http://edamontology.org/format_2323' - Label 'ENZYME enzyme report format'\n", + "Entity 'http://edamontology.org/format_2328' - Label 'PseudoCAP gene report format'\n", + "Entity 'http://edamontology.org/format_2329' - Label 'GeneCards gene report format'\n", + "Entity 'http://edamontology.org/format_2334' - Label 'URI format'\n", + "Entity 'http://edamontology.org/format_2341' - Label 'NCI-Nature pathway entry format'\n", + "Entity 'http://edamontology.org/format_2542' - Label 'Protein features (domains) format'\n", + "Entity 'http://edamontology.org/format_2560' - Label 'STRING entry format'\n", + "Entity 'http://edamontology.org/format_2562' - Label 'Amino acid identifier format'\n", + "Entity 'http://edamontology.org/format_3476' - Label 'Gene expression data format'\n", + "Entity 'http://edamontology.org/format_3623' - Label 'Index format'\n", + "Entity 'http://edamontology.org/format_4001' - Label 'NIFTI format'\n", + "Entity 'http://edamontology.org/operation_0225' - Label 'Data retrieval (database cross-reference)'\n", + "Entity 'http://edamontology.org/operation_0228' - Label 'Data index analysis'\n", + "Entity 'http://edamontology.org/operation_0229' - Label 'Annotation retrieval (sequence)'\n", + "Entity 'http://edamontology.org/operation_0241' - Label 'Transcription regulatory sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0242' - Label 'Conserved transcription regulatory sequence identification'\n", + "Entity 'http://edamontology.org/operation_0243' - Label 'Protein property calculation (from structure)'\n", + "Entity 'http://edamontology.org/operation_0254' - Label 'Data retrieval (feature table)'\n", + "Entity 'http://edamontology.org/operation_0255' - Label 'Feature table query'\n", + "Entity 'http://edamontology.org/operation_0257' - Label 'Data retrieval (sequence alignment)'\n", + "Entity 'http://edamontology.org/operation_0261' - Label 'Nucleic acid property processing'\n", + "Entity 'http://edamontology.org/operation_0271' - Label 'Structure prediction'\n", + "Entity 'http://edamontology.org/operation_0273' - Label 'Protein interaction raw data analysis'\n", + "Entity 'http://edamontology.org/operation_0274' - Label 'Protein-protein interaction prediction (from protein sequence)'\n", + "Entity 'http://edamontology.org/operation_0275' - Label 'Protein-protein interaction prediction (from protein structure)'\n", + "Entity 'http://edamontology.org/operation_0277' - Label 'Pathway or network comparison'\n", + "Entity 'http://edamontology.org/operation_0280' - Label 'Data retrieval (restriction enzyme annotation)'\n", + "Entity 'http://edamontology.org/operation_0281' - Label 'Genetic marker identification'\n", + "Entity 'http://edamontology.org/operation_0293' - Label 'Hybrid sequence alignment construction'\n", + "Entity 'http://edamontology.org/operation_0298' - Label 'Profile-profile alignment'\n", + "Entity 'http://edamontology.org/operation_0299' - Label '3D profile-to-3D profile alignment'\n", + "Entity 'http://edamontology.org/operation_0301' - Label 'Sequence-to-3D-profile alignment'\n", + "Entity 'http://edamontology.org/operation_0304' - Label 'Metadata retrieval'\n", + "Entity 'http://edamontology.org/operation_0311' - Label 'Microarray data standardisation and normalisation'\n", + "Entity 'http://edamontology.org/operation_0312' - Label 'Sequencing-based expression profile data processing'\n", + "Entity 'http://edamontology.org/operation_0316' - Label 'Functional profiling'\n", + "Entity 'http://edamontology.org/operation_0317' - Label 'EST and cDNA sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0318' - Label 'Structural genomics target selection'\n", + "Entity 'http://edamontology.org/operation_0328' - Label 'Protein folding simulation'\n", + "Entity 'http://edamontology.org/operation_0329' - Label 'Protein folding pathway prediction'\n", + "Entity 'http://edamontology.org/operation_0330' - Label 'Protein SNP mapping'\n", + "Entity 'http://edamontology.org/operation_0332' - Label 'Immunogen design'\n", + "Entity 'http://edamontology.org/operation_0333' - Label 'Zinc finger prediction'\n", + "Entity 'http://edamontology.org/operation_0340' - Label 'Protein secondary database search'\n", + "Entity 'http://edamontology.org/operation_0341' - Label 'Motif database search'\n", + "Entity 'http://edamontology.org/operation_0342' - Label 'Sequence profile database search'\n", + "Entity 'http://edamontology.org/operation_0343' - Label 'Transmembrane protein database search'\n", + "Entity 'http://edamontology.org/operation_0344' - Label 'Sequence retrieval (by code)'\n", + "Entity 'http://edamontology.org/operation_0345' - Label 'Sequence retrieval (by keyword)'\n", + "Entity 'http://edamontology.org/operation_0347' - Label 'Sequence database search (by motif or pattern)'\n", + "Entity 'http://edamontology.org/operation_0348' - Label 'Sequence database search (by amino acid composition)'\n", + "Entity 'http://edamontology.org/operation_0350' - Label 'Sequence database search (by sequence using word-based methods)'\n", + "Entity 'http://edamontology.org/operation_0351' - Label 'Sequence database search (by sequence using profile-based methods)'\n", + "Entity 'http://edamontology.org/operation_0352' - Label 'Sequence database search (by sequence using local alignment-based methods)'\n", + "Entity 'http://edamontology.org/operation_0353' - Label 'Sequence database search (by sequence using global alignment-based methods)'\n", + "Entity 'http://edamontology.org/operation_0354' - Label 'Sequence database search (by sequence for primer sequences)'\n", + "Entity 'http://edamontology.org/operation_0355' - Label 'Sequence database search (by molecular weight)'\n", + "Entity 'http://edamontology.org/operation_0356' - Label 'Sequence database search (by isoelectric point)'\n", + "Entity 'http://edamontology.org/operation_0357' - Label 'Structure retrieval (by code)'\n", + "Entity 'http://edamontology.org/operation_0358' - Label 'Structure retrieval (by keyword)'\n", + "Entity 'http://edamontology.org/operation_0359' - Label 'Structure database search (by sequence)'\n", + "Entity 'http://edamontology.org/operation_0377' - Label 'Sequence composition calculation (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_0378' - Label 'Sequence composition calculation (protein)'\n", + "Entity 'http://edamontology.org/operation_0383' - Label 'Protein hydropathy calculation (from structure)'\n", + "Entity 'http://edamontology.org/operation_0385' - Label 'Protein hydropathy cluster calculation'\n", + "Entity 'http://edamontology.org/operation_0388' - Label 'Protein binding site prediction (from structure)'\n", + "Entity 'http://edamontology.org/operation_0395' - Label 'Residue non-canonical interaction detection'\n", + "Entity 'http://edamontology.org/operation_0397' - Label 'Ramachandran plot validation'\n", + "Entity 'http://edamontology.org/operation_0401' - Label 'Protein hydropathy calculation (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0411' - Label 'Protein signal peptide detection (eukaryotes)'\n", + "Entity 'http://edamontology.org/operation_0412' - Label 'Protein signal peptide detection (bacteria)'\n", + "Entity 'http://edamontology.org/operation_0413' - Label 'MHC peptide immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0414' - Label 'Protein feature prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0419' - Label 'Protein binding site prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0421' - Label 'Protein folding site prediction'\n", + "Entity 'http://edamontology.org/operation_0423' - Label 'Epitope mapping (MHC Class I)'\n", + "Entity 'http://edamontology.org/operation_0424' - Label 'Epitope mapping (MHC Class II)'\n", + "Entity 'http://edamontology.org/operation_0425' - Label 'Whole gene prediction'\n", + "Entity 'http://edamontology.org/operation_0426' - Label 'Gene component prediction'\n", + "Entity 'http://edamontology.org/operation_0434' - Label 'Integrated gene prediction'\n", + "Entity 'http://edamontology.org/operation_0442' - Label 'Transcriptional regulatory element prediction (RNA-cis)'\n", + "Entity 'http://edamontology.org/operation_0453' - Label 'Nucleosome formation potential prediction'\n", + "Entity 'http://edamontology.org/operation_0467' - Label 'Protein secondary structure prediction (integrated)'\n", + "Entity 'http://edamontology.org/operation_0472' - Label 'GPCR prediction'\n", + "Entity 'http://edamontology.org/operation_0473' - Label 'GPCR analysis'\n", + "Entity 'http://edamontology.org/operation_0486' - Label 'Functional mapping'\n", + "Entity 'http://edamontology.org/operation_0493' - Label 'Pairwise sequence alignment generation (local)'\n", + "Entity 'http://edamontology.org/operation_0494' - Label 'Pairwise sequence alignment generation (global)'\n", + "Entity 'http://edamontology.org/operation_0497' - Label 'Constrained sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0498' - Label 'Consensus-based sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0500' - Label 'Secondary structure alignment generation'\n", + "Entity 'http://edamontology.org/operation_0501' - Label 'Protein secondary structure alignment generation'\n", + "Entity 'http://edamontology.org/operation_0505' - Label 'Structure alignment (protein)'\n", + "Entity 'http://edamontology.org/operation_0506' - Label 'Structure alignment (RNA)'\n", + "Entity 'http://edamontology.org/operation_0507' - Label 'Pairwise structure alignment generation (local)'\n", + "Entity 'http://edamontology.org/operation_0508' - Label 'Pairwise structure alignment generation (global)'\n", + "Entity 'http://edamontology.org/operation_0511' - Label 'Profile-profile alignment (pairwise)'\n", + "Entity 'http://edamontology.org/operation_0512' - Label 'Sequence alignment generation (multiple profile)'\n", + "Entity 'http://edamontology.org/operation_0513' - Label '3D profile-to-3D profile alignment (pairwise)'\n", + "Entity 'http://edamontology.org/operation_0514' - Label 'Structural profile alignment generation (multiple)'\n", + "Entity 'http://edamontology.org/operation_0515' - Label 'Data retrieval (tool metadata)'\n", + "Entity 'http://edamontology.org/operation_0516' - Label 'Data retrieval (database metadata)'\n", + "Entity 'http://edamontology.org/operation_0517' - Label 'PCR primer design (for large scale sequencing)'\n", + "Entity 'http://edamontology.org/operation_0518' - Label 'PCR primer design (for genotyping polymorphisms)'\n", + "Entity 'http://edamontology.org/operation_0519' - Label 'PCR primer design (for gene transcription profiling)'\n", + "Entity 'http://edamontology.org/operation_0520' - Label 'PCR primer design (for conserved primers)'\n", + "Entity 'http://edamontology.org/operation_0521' - Label 'PCR primer design (based on gene structure)'\n", + "Entity 'http://edamontology.org/operation_0522' - Label 'PCR primer design (for methylation PCRs)'\n", + "Entity 'http://edamontology.org/operation_0528' - Label 'SAGE data processing'\n", + "Entity 'http://edamontology.org/operation_0529' - Label 'MPSS data processing'\n", + "Entity 'http://edamontology.org/operation_0530' - Label 'SBS data processing'\n", + "Entity 'http://edamontology.org/operation_0532' - Label 'Gene expression profile analysis'\n", + "Entity 'http://edamontology.org/operation_0534' - Label 'Protein secondary structure assignment (from coordinate data)'\n", + "Entity 'http://edamontology.org/operation_0535' - Label 'Protein secondary structure assignment (from CD data)'\n", + "Entity 'http://edamontology.org/operation_0536' - Label 'Protein structure assignment (from X-ray crystallographic data)'\n", + "Entity 'http://edamontology.org/operation_0537' - Label 'Protein structure assignment (from NMR data)'\n", + "Entity 'http://edamontology.org/operation_0559' - Label 'Immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0561' - Label 'Sequence formatting'\n", + "Entity 'http://edamontology.org/operation_0562' - Label 'Sequence alignment formatting'\n", + "Entity 'http://edamontology.org/operation_0563' - Label 'Codon usage table formatting'\n", + "Entity 'http://edamontology.org/operation_0565' - Label 'Sequence alignment visualisation'\n", + "Entity 'http://edamontology.org/operation_0568' - Label 'RNA secondary structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0569' - Label 'Protein secondary structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0572' - Label 'Protein interaction network visualisation'\n", + "Entity 'http://edamontology.org/operation_0574' - Label 'Sequence motif rendering'\n", + "Entity 'http://edamontology.org/operation_0577' - Label 'DNA linear map rendering'\n", + "Entity 'http://edamontology.org/operation_1768' - Label 'Nucleic acid folding family identification'\n", + "Entity 'http://edamontology.org/operation_1769' - Label 'Nucleic acid folding energy calculation'\n", + "Entity 'http://edamontology.org/operation_1774' - Label 'Annotation retrieval'\n", + "Entity 'http://edamontology.org/operation_1780' - Label 'Sequence submission'\n", + "Entity 'http://edamontology.org/operation_1813' - Label 'Sequence retrieval'\n", + "Entity 'http://edamontology.org/operation_1814' - Label 'Structure retrieval'\n", + "Entity 'http://edamontology.org/operation_1817' - Label 'Protein atom surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1818' - Label 'Protein atom surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1819' - Label 'Protein residue surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1820' - Label 'Protein residue surface calculation (vacuum accessible)'\n", + "Entity 'http://edamontology.org/operation_1821' - Label 'Protein residue surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1822' - Label 'Protein residue surface calculation (vacuum molecular)'\n", + "Entity 'http://edamontology.org/operation_1823' - Label 'Protein surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1824' - Label 'Protein surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1825' - Label 'Backbone torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1826' - Label 'Full torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1827' - Label 'Cysteine torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1828' - Label 'Tau angle calculation'\n", + "Entity 'http://edamontology.org/operation_1832' - Label 'Residue contact calculation (residue-nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_1835' - Label 'Residue contact calculation (residue-negative ion)'\n", + "Entity 'http://edamontology.org/operation_1837' - Label 'Residue symmetry contact calculation'\n", + "Entity 'http://edamontology.org/operation_1838' - Label 'Residue contact calculation (residue-ligand)'\n", + "Entity 'http://edamontology.org/operation_1841' - Label 'Rotamer likelihood prediction'\n", + "Entity 'http://edamontology.org/operation_1842' - Label 'Proline mutation value calculation'\n", + "Entity 'http://edamontology.org/operation_1845' - Label 'PDB file sequence retrieval'\n", + "Entity 'http://edamontology.org/operation_1846' - Label 'HET group detection'\n", + "Entity 'http://edamontology.org/operation_1847' - Label 'DSSP secondary structure assignment'\n", + "Entity 'http://edamontology.org/operation_1848' - Label 'Structure formatting'\n", + "Entity 'http://edamontology.org/operation_1913' - Label 'Residue validation'\n", + "Entity 'http://edamontology.org/operation_1914' - Label 'Structure retrieval (water)'\n", + "Entity 'http://edamontology.org/operation_2120' - Label 'Listfile processing'\n", + "Entity 'http://edamontology.org/operation_2122' - Label 'Sequence alignment file processing'\n", + "Entity 'http://edamontology.org/operation_2123' - Label 'Small molecule data processing'\n", + "Entity 'http://edamontology.org/operation_2222' - Label 'Data retrieval (ontology annotation)'\n", + "Entity 'http://edamontology.org/operation_2224' - Label 'Data retrieval (ontology concept)'\n", + "Entity 'http://edamontology.org/operation_2234' - Label 'Structure file processing'\n", + "Entity 'http://edamontology.org/operation_2237' - Label 'Data retrieval (sequence profile)'\n", + "Entity 'http://edamontology.org/operation_2246' - Label 'Demonstration'\n", + "Entity 'http://edamontology.org/operation_2264' - Label 'Data retrieval (pathway or network)'\n", + "Entity 'http://edamontology.org/operation_2265' - Label 'Data retrieval (identifier)'\n", + "Entity 'http://edamontology.org/operation_2405' - Label 'Protein interaction data processing'\n", + "Entity 'http://edamontology.org/operation_2407' - Label 'Annotation processing'\n", + "Entity 'http://edamontology.org/operation_2408' - Label 'Sequence feature analysis'\n", + "Entity 'http://edamontology.org/operation_2410' - Label 'Gene expression analysis'\n", + "Entity 'http://edamontology.org/operation_2411' - Label 'Structural profile processing'\n", + "Entity 'http://edamontology.org/operation_2412' - Label 'Data index processing'\n", + "Entity 'http://edamontology.org/operation_2413' - Label 'Sequence profile processing'\n", + "Entity 'http://edamontology.org/operation_2414' - Label 'Protein function analysis'\n", + "Entity 'http://edamontology.org/operation_2417' - Label 'Physicochemical property data processing'\n", + "Entity 'http://edamontology.org/operation_2420' - Label 'Operation (typed)'\n", + "Entity 'http://edamontology.org/operation_2427' - Label 'Data handling'\n", + "Entity 'http://edamontology.org/operation_2432' - Label 'Microarray data processing'\n", + "Entity 'http://edamontology.org/operation_2433' - Label 'Codon usage table processing'\n", + "Entity 'http://edamontology.org/operation_2434' - Label 'Data retrieval (codon usage table)'\n", + "Entity 'http://edamontology.org/operation_2435' - Label 'Gene expression profile processing'\n", + "Entity 'http://edamontology.org/operation_2438' - Label 'Pathway or network processing'\n", + "Entity 'http://edamontology.org/operation_2440' - Label 'Structure processing (RNA)'\n", + "Entity 'http://edamontology.org/operation_2443' - Label 'Phylogenetic tree processing'\n", + "Entity 'http://edamontology.org/operation_2444' - Label 'Protein secondary structure processing'\n", + "Entity 'http://edamontology.org/operation_2445' - Label 'Protein interaction network processing'\n", + "Entity 'http://edamontology.org/operation_2446' - Label 'Sequence processing'\n", + "Entity 'http://edamontology.org/operation_2447' - Label 'Sequence processing (protein)'\n", + "Entity 'http://edamontology.org/operation_2448' - Label 'Sequence processing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2452' - Label 'Sequence cluster processing'\n", + "Entity 'http://edamontology.org/operation_2453' - Label 'Feature table processing'\n", + "Entity 'http://edamontology.org/operation_2456' - Label 'GPCR classification'\n", + "Entity 'http://edamontology.org/operation_2457' - Label 'GPCR coupling selectivity prediction'\n", + "Entity 'http://edamontology.org/operation_2459' - Label 'Structure processing (protein)'\n", + "Entity 'http://edamontology.org/operation_2460' - Label 'Protein atom surface calculation'\n", + "Entity 'http://edamontology.org/operation_2461' - Label 'Protein residue surface calculation'\n", + "Entity 'http://edamontology.org/operation_2462' - Label 'Protein surface calculation'\n", + "Entity 'http://edamontology.org/operation_2463' - Label 'Sequence alignment processing'\n", + "Entity 'http://edamontology.org/operation_2465' - Label 'Structure processing'\n", + "Entity 'http://edamontology.org/operation_2466' - Label 'Map annotation'\n", + "Entity 'http://edamontology.org/operation_2467' - Label 'Data retrieval (protein annotation)'\n", + "Entity 'http://edamontology.org/operation_2468' - Label 'Data retrieval (phylogenetic tree)'\n", + "Entity 'http://edamontology.org/operation_2469' - Label 'Data retrieval (protein interaction annotation)'\n", + "Entity 'http://edamontology.org/operation_2470' - Label 'Data retrieval (protein family annotation)'\n", + "Entity 'http://edamontology.org/operation_2471' - Label 'Data retrieval (RNA family annotation)'\n", + "Entity 'http://edamontology.org/operation_2472' - Label 'Data retrieval (gene annotation)'\n", + "Entity 'http://edamontology.org/operation_2473' - Label 'Data retrieval (genotype and phenotype annotation)'\n", + "Entity 'http://edamontology.org/operation_2482' - Label 'Secondary structure processing'\n", + "Entity 'http://edamontology.org/operation_2490' - Label 'Residue contact calculation (residue-residue)'\n", + "Entity 'http://edamontology.org/operation_2491' - Label 'Hydrogen bond calculation (inter-residue)'\n", + "Entity 'http://edamontology.org/operation_2493' - Label 'Codon usage data processing'\n", + "Entity 'http://edamontology.org/operation_2496' - Label 'Gene regulatory network processing'\n", + "Entity 'http://edamontology.org/operation_2497' - Label 'Pathway or network analysis'\n", + "Entity 'http://edamontology.org/operation_2498' - Label 'Sequencing-based expression profile data analysis'\n", + "Entity 'http://edamontology.org/operation_2500' - Label 'Microarray raw data analysis'\n", + "Entity 'http://edamontology.org/operation_2501' - Label 'Nucleic acid analysis'\n", + "Entity 'http://edamontology.org/operation_2502' - Label 'Protein analysis'\n", + "Entity 'http://edamontology.org/operation_2503' - Label 'Sequence data processing'\n", + "Entity 'http://edamontology.org/operation_2504' - Label 'Structural data processing'\n", + "Entity 'http://edamontology.org/operation_2505' - Label 'Text processing'\n", + "Entity 'http://edamontology.org/operation_2506' - Label 'Protein sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2507' - Label 'Nucleic acid sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2508' - Label 'Nucleic acid sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2509' - Label 'Protein sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2511' - Label 'Sequence editing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2512' - Label 'Sequence editing (protein)'\n", + "Entity 'http://edamontology.org/operation_2513' - Label 'Sequence generation (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2514' - Label 'Sequence generation (protein)'\n", + "Entity 'http://edamontology.org/operation_2515' - Label 'Nucleic acid sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_2516' - Label 'Protein sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_2519' - Label 'Structure processing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2521' - Label 'Map data processing'\n", + "Entity 'http://edamontology.org/operation_2931' - Label 'Secondary structure comparison'\n", + "Entity 'http://edamontology.org/operation_2932' - Label 'Hopp and Woods plotting'\n", + "Entity 'http://edamontology.org/operation_2934' - Label 'Cluster textual view generation'\n", + "Entity 'http://edamontology.org/operation_2936' - Label 'Dendrograph plotting'\n", + "Entity 'http://edamontology.org/operation_2941' - Label 'Whole microarray graph plotting'\n", + "Entity 'http://edamontology.org/operation_2946' - Label 'Alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2947' - Label 'Article analysis'\n", + "Entity 'http://edamontology.org/operation_2948' - Label 'Molecular interaction analysis'\n", + "Entity 'http://edamontology.org/operation_2951' - Label 'Alignment processing'\n", + "Entity 'http://edamontology.org/operation_2952' - Label 'Structure alignment processing'\n", + "Entity 'http://edamontology.org/operation_2963' - Label 'Codon usage bias plotting'\n", + "Entity 'http://edamontology.org/operation_2993' - Label 'Molecular interaction data processing'\n", + "Entity 'http://edamontology.org/operation_3023' - Label 'Prediction and recognition (protein)'\n", + "Entity 'http://edamontology.org/operation_3024' - Label 'Prediction and recognition (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_3083' - Label 'Pathway or network visualisation'\n", + "Entity 'http://edamontology.org/operation_3084' - Label 'Protein function prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_3087' - Label 'Protein sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_3088' - Label 'Protein property calculation (from sequence)'\n", + "Entity 'http://edamontology.org/operation_3090' - Label 'Protein feature prediction (from structure)'\n", + "Entity 'http://edamontology.org/operation_3093' - Label 'Database search (by sequence)'\n", + "Entity 'http://edamontology.org/operation_3189' - Label 'Trim ends'\n", + "Entity 'http://edamontology.org/operation_3190' - Label 'Trim vector'\n", + "Entity 'http://edamontology.org/operation_3191' - Label 'Trim to reference'\n", + "Entity 'http://edamontology.org/operation_3201' - Label 'SNP calling'\n", + "Entity 'http://edamontology.org/operation_3202' - Label 'Polymorphism detection'\n", + "Entity 'http://edamontology.org/operation_3205' - Label 'Methylation calling'\n", + "Entity 'http://edamontology.org/operation_3212' - Label 'Genome indexing (Burrows-Wheeler)'\n", + "Entity 'http://edamontology.org/operation_3213' - Label 'Genome indexing (suffix arrays)'\n", + "Entity 'http://edamontology.org/operation_3224' - Label 'Gene set testing'\n", + "Entity 'http://edamontology.org/operation_3259' - Label 'Transcriptome assembly (de novo)'\n", + "Entity 'http://edamontology.org/operation_3260' - Label 'Transcriptome assembly (mapping)'\n", + "Entity 'http://edamontology.org/operation_3289' - Label 'ID retrieval'\n", + "Entity 'http://edamontology.org/operation_3353' - Label 'Ontology comparison'\n", + "Entity 'http://edamontology.org/operation_3430' - Label 'Nucleic acid sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_3433' - Label 'Assembly'\n", + "Entity 'http://edamontology.org/operation_3439' - Label 'Pathway or network prediction'\n", + "Entity 'http://edamontology.org/operation_3440' - Label 'Genome assembly'\n", + "Entity 'http://edamontology.org/operation_3441' - Label 'Plotting'\n", + "Entity 'http://edamontology.org/operation_3470' - Label 'RNA secondary structure prediction (shape-based)'\n", + "Entity 'http://edamontology.org/operation_3471' - Label 'Nucleic acid folding prediction (alignment-based)'\n", + "Entity 'http://edamontology.org/operation_3545' - Label 'Mathematical modelling'\n", + "Entity 'http://edamontology.org/operation_3562' - Label 'Network simulation'\n", + "Entity 'http://edamontology.org/operation_3648' - Label 'Validation of peptide-spectrum matches'\n", + "Entity 'http://edamontology.org/operation_3742' - Label 'Differential gene expression analysis'\n", + "Entity 'http://edamontology.org/topic_0079' - Label 'Metabolites'\n", + "Entity 'http://edamontology.org/topic_0083' - Label 'Alignment'\n", + "Entity 'http://edamontology.org/topic_0090' - Label 'Information retrieval'\n", + "Entity 'http://edamontology.org/topic_0094' - Label 'Nucleic acid thermodynamics'\n", + "Entity 'http://edamontology.org/topic_0100' - Label 'Nucleic acid restriction'\n", + "Entity 'http://edamontology.org/topic_0107' - Label 'Genetic codes and codon usage'\n", + "Entity 'http://edamontology.org/topic_0109' - Label 'Gene finding'\n", + "Entity 'http://edamontology.org/topic_0110' - Label 'Transcription'\n", + "Entity 'http://edamontology.org/topic_0111' - Label 'Promoters'\n", + "Entity 'http://edamontology.org/topic_0112' - Label 'Nucleic acid folding'\n", + "Entity 'http://edamontology.org/topic_0133' - Label 'Two-dimensional gel electrophoresis'\n", + "Entity 'http://edamontology.org/topic_0134' - Label 'Mass spectrometry'\n", + "Entity 'http://edamontology.org/topic_0135' - Label 'Protein microarrays'\n", + "Entity 'http://edamontology.org/topic_0137' - Label 'Protein hydropathy'\n", + "Entity 'http://edamontology.org/topic_0141' - Label 'Protein cleavage sites and proteolysis'\n", + "Entity 'http://edamontology.org/topic_0143' - Label 'Protein structure comparison'\n", + "Entity 'http://edamontology.org/topic_0144' - Label 'Protein residue interactions'\n", + "Entity 'http://edamontology.org/topic_0147' - Label 'Protein-protein interactions'\n", + "Entity 'http://edamontology.org/topic_0148' - Label 'Protein-ligand interactions'\n", + "Entity 'http://edamontology.org/topic_0149' - Label 'Protein-nucleic acid interactions'\n", + "Entity 'http://edamontology.org/topic_0150' - Label 'Protein design'\n", + "Entity 'http://edamontology.org/topic_0151' - Label 'G protein-coupled receptors (GPCR)'\n", + "Entity 'http://edamontology.org/topic_0156' - Label 'Sequence editing'\n", + "Entity 'http://edamontology.org/topic_0158' - Label 'Sequence motifs'\n", + "Entity 'http://edamontology.org/topic_0159' - Label 'Sequence comparison'\n", + "Entity 'http://edamontology.org/topic_0163' - Label 'Sequence database search'\n", + "Entity 'http://edamontology.org/topic_0164' - Label 'Sequence clustering'\n", + "Entity 'http://edamontology.org/topic_0167' - Label 'Structural (3D) profiles'\n", + "Entity 'http://edamontology.org/topic_0172' - Label 'Protein structure prediction'\n", + "Entity 'http://edamontology.org/topic_0173' - Label 'Nucleic acid structure prediction'\n", + "Entity 'http://edamontology.org/topic_0174' - Label 'Ab initio structure prediction'\n", + "Entity 'http://edamontology.org/topic_0175' - Label 'Homology modelling'\n", + "Entity 'http://edamontology.org/topic_0177' - Label 'Molecular docking'\n", + "Entity 'http://edamontology.org/topic_0178' - Label 'Protein secondary structure prediction'\n", + "Entity 'http://edamontology.org/topic_0179' - Label 'Protein tertiary structure prediction'\n", + "Entity 'http://edamontology.org/topic_0180' - Label 'Protein fold recognition'\n", + "Entity 'http://edamontology.org/topic_0182' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0183' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/topic_0184' - Label 'Threading'\n", + "Entity 'http://edamontology.org/topic_0188' - Label 'Sequence profiles and HMMs'\n", + "Entity 'http://edamontology.org/topic_0191' - Label 'Phylogeny reconstruction'\n", + "Entity 'http://edamontology.org/topic_0195' - Label 'Virtual PCR'\n", + "Entity 'http://edamontology.org/topic_0200' - Label 'Microarrays'\n", + "Entity 'http://edamontology.org/topic_0210' - Label 'Fish'\n", + "Entity 'http://edamontology.org/topic_0211' - Label 'Flies'\n", + "Entity 'http://edamontology.org/topic_0213' - Label 'Mice or rats'\n", + "Entity 'http://edamontology.org/topic_0215' - Label 'Worms'\n", + "Entity 'http://edamontology.org/topic_0217' - Label 'Literature analysis'\n", + "Entity 'http://edamontology.org/topic_0220' - Label 'Document, record and content management'\n", + "Entity 'http://edamontology.org/topic_0221' - Label 'Sequence annotation'\n", + "Entity 'http://edamontology.org/topic_0222' - Label 'Genome annotation'\n", + "Entity 'http://edamontology.org/topic_0594' - Label 'Sequence classification'\n", + "Entity 'http://edamontology.org/topic_0595' - Label 'Protein classification'\n", + "Entity 'http://edamontology.org/topic_0598' - Label 'Sequence motif or profile'\n", + "Entity 'http://edamontology.org/topic_0606' - Label 'Literature data resources'\n", + "Entity 'http://edamontology.org/topic_0608' - Label 'Cell and tissue culture'\n", + "Entity 'http://edamontology.org/topic_0612' - Label 'Cell cycle'\n", + "Entity 'http://edamontology.org/topic_0613' - Label 'Peptides and amino acids'\n", + "Entity 'http://edamontology.org/topic_0616' - Label 'Organelles'\n", + "Entity 'http://edamontology.org/topic_0617' - Label 'Ribosomes'\n", + "Entity 'http://edamontology.org/topic_0618' - Label 'Scents'\n", + "Entity 'http://edamontology.org/topic_0620' - Label 'Drugs and target structures'\n", + "Entity 'http://edamontology.org/topic_0624' - Label 'Chromosomes'\n", + "Entity 'http://edamontology.org/topic_0629' - Label 'Gene expression and microarray'\n", + "Entity 'http://edamontology.org/topic_0635' - Label 'Specific protein resources'\n", + "Entity 'http://edamontology.org/topic_0639' - Label 'Protein sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0640' - Label 'Nucleic acid sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0641' - Label 'Repeat sequences'\n", + "Entity 'http://edamontology.org/topic_0642' - Label 'Low complexity sequences'\n", + "Entity 'http://edamontology.org/topic_0644' - Label 'Proteome'\n", + "Entity 'http://edamontology.org/topic_0655' - Label 'Coding RNA'\n", + "Entity 'http://edamontology.org/topic_0660' - Label 'rRNA'\n", + "Entity 'http://edamontology.org/topic_0663' - Label 'tRNA'\n", + "Entity 'http://edamontology.org/topic_0694' - Label 'Protein secondary structure'\n", + "Entity 'http://edamontology.org/topic_0697' - Label 'RNA structure'\n", + "Entity 'http://edamontology.org/topic_0698' - Label 'Protein tertiary structure'\n", + "Entity 'http://edamontology.org/topic_0722' - Label 'Nucleic acid classification'\n", + "Entity 'http://edamontology.org/topic_0724' - Label 'Protein families'\n", + "Entity 'http://edamontology.org/topic_0740' - Label 'Nucleic acid sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0741' - Label 'Protein sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0747' - Label 'Nucleic acid sites and features'\n", + "Entity 'http://edamontology.org/topic_0748' - Label 'Protein sites and features'\n", + "Entity 'http://edamontology.org/topic_0751' - Label 'Phosphorylation sites'\n", + "Entity 'http://edamontology.org/topic_0753' - Label 'Metabolic pathways'\n", + "Entity 'http://edamontology.org/topic_0754' - Label 'Signaling pathways'\n", + "Entity 'http://edamontology.org/topic_0767' - Label 'Protein and peptide identification'\n", + "Entity 'http://edamontology.org/topic_0770' - Label 'Data types and objects'\n", + "Entity 'http://edamontology.org/topic_0771' - Label 'Theoretical biology'\n", + "Entity 'http://edamontology.org/topic_0779' - Label 'Mitochondria'\n", + "Entity 'http://edamontology.org/topic_0782' - Label 'Fungi'\n", + "Entity 'http://edamontology.org/topic_0783' - Label 'Pathogens'\n", + "Entity 'http://edamontology.org/topic_0786' - Label 'Arabidopsis'\n", + "Entity 'http://edamontology.org/topic_0787' - Label 'Rice'\n", + "Entity 'http://edamontology.org/topic_0796' - Label 'Genetic mapping and linkage'\n", + "Entity 'http://edamontology.org/topic_0803' - Label 'Human disease'\n", + "Entity 'http://edamontology.org/topic_0922' - Label 'Primers'\n", + "Entity 'http://edamontology.org/topic_1302' - Label 'PolyA signal or sites'\n", + "Entity 'http://edamontology.org/topic_1304' - Label 'CpG island and isochores'\n", + "Entity 'http://edamontology.org/topic_1305' - Label 'Restriction sites'\n", + "Entity 'http://edamontology.org/topic_1307' - Label 'Splice sites'\n", + "Entity 'http://edamontology.org/topic_1308' - Label 'Matrix/scaffold attachment sites'\n", + "Entity 'http://edamontology.org/topic_1311' - Label 'Operon'\n", + "Entity 'http://edamontology.org/topic_1312' - Label 'Promoters'\n", + "Entity 'http://edamontology.org/topic_1456' - Label 'Protein membrane regions'\n", + "Entity 'http://edamontology.org/topic_1770' - Label 'Structure comparison'\n", + "Entity 'http://edamontology.org/topic_1811' - Label 'Prokaryotes and Archaea'\n", + "Entity 'http://edamontology.org/topic_2225' - Label 'Protein databases'\n", + "Entity 'http://edamontology.org/topic_2226' - Label 'Structure determination'\n", + "Entity 'http://edamontology.org/topic_2230' - Label 'Classification'\n", + "Entity 'http://edamontology.org/topic_2232' - Label 'Lipoproteins'\n", + "Entity 'http://edamontology.org/topic_2257' - Label 'Phylogeny visualisation'\n", + "Entity 'http://edamontology.org/topic_2271' - Label 'Structure database search'\n", + "Entity 'http://edamontology.org/topic_2276' - Label 'Protein function prediction'\n", + "Entity 'http://edamontology.org/topic_2277' - Label 'SNP'\n", + "Entity 'http://edamontology.org/topic_2278' - Label 'Transmembrane protein prediction'\n", + "Entity 'http://edamontology.org/topic_2280' - Label 'Nucleic acid structure comparison'\n", + "Entity 'http://edamontology.org/topic_2397' - Label 'Exons'\n", + "Entity 'http://edamontology.org/topic_2399' - Label 'Gene transcription'\n", + "Entity 'http://edamontology.org/topic_2661' - Label 'Toxins and targets'\n", + "Entity 'http://edamontology.org/topic_2754' - Label 'Introns'\n", + "Entity 'http://edamontology.org/topic_2807' - Label 'Tool topic'\n", + "Entity 'http://edamontology.org/topic_2809' - Label 'Study topic'\n", + "Entity 'http://edamontology.org/topic_2811' - Label 'Nomenclature'\n", + "Entity 'http://edamontology.org/topic_2813' - Label 'Disease genes and proteins'\n", + "Entity 'http://edamontology.org/topic_2816' - Label 'Gene resources'\n", + "Entity 'http://edamontology.org/topic_2817' - Label 'Yeast'\n", + "Entity 'http://edamontology.org/topic_2818' - Label 'Eukaryotes'\n", + "Entity 'http://edamontology.org/topic_2819' - Label 'Invertebrates'\n", + "Entity 'http://edamontology.org/topic_2820' - Label 'Vertebrates'\n", + "Entity 'http://edamontology.org/topic_2821' - Label 'Unicellular eukaryotes'\n", + "Entity 'http://edamontology.org/topic_2826' - Label 'Protein structure alignment'\n", + "Entity 'http://edamontology.org/topic_2829' - Label 'Ontologies, nomenclature and classification'\n", + "Entity 'http://edamontology.org/topic_2839' - Label 'Molecules'\n", + "Entity 'http://edamontology.org/topic_2842' - Label 'High-throughput sequencing'\n", + "Entity 'http://edamontology.org/topic_2846' - Label 'Gene regulatory networks'\n", + "Entity 'http://edamontology.org/topic_2847' - Label 'Disease (specific)'\n", + "Entity 'http://edamontology.org/topic_2867' - Label 'VNTR'\n", + "Entity 'http://edamontology.org/topic_2868' - Label 'Microsatellites'\n", + "Entity 'http://edamontology.org/topic_2869' - Label 'RFLP'\n", + "Entity 'http://edamontology.org/topic_2953' - Label 'Nucleic acid design'\n", + "Entity 'http://edamontology.org/topic_3032' - Label 'Primer or probe design'\n", + "Entity 'http://edamontology.org/topic_3038' - Label 'Structure databases'\n", + "Entity 'http://edamontology.org/topic_3039' - Label 'Nucleic acid structure'\n", + "Entity 'http://edamontology.org/topic_3041' - Label 'Sequence databases'\n", + "Entity 'http://edamontology.org/topic_3042' - Label 'Nucleic acid sequences'\n", + "Entity 'http://edamontology.org/topic_3043' - Label 'Protein sequences'\n", + "Entity 'http://edamontology.org/topic_3044' - Label 'Protein interaction networks'\n", + "Entity 'http://edamontology.org/topic_3048' - Label 'Mammals'\n", + "Entity 'http://edamontology.org/topic_3052' - Label 'Sequence clusters and classification'\n", + "Entity 'http://edamontology.org/topic_3060' - Label 'Regulatory RNA'\n", + "Entity 'http://edamontology.org/topic_3061' - Label 'Documentation and help'\n", + "Entity 'http://edamontology.org/topic_3062' - Label 'Genetic organisation'\n", + "Entity 'http://edamontology.org/topic_3072' - Label 'Sequence feature detection'\n", + "Entity 'http://edamontology.org/topic_3073' - Label 'Nucleic acid feature detection'\n", + "Entity 'http://edamontology.org/topic_3074' - Label 'Protein feature detection'\n", + "Entity 'http://edamontology.org/topic_3075' - Label 'Biological system modelling'\n", + "Entity 'http://edamontology.org/topic_3078' - Label 'Genes and proteins resources'\n", + "Entity 'http://edamontology.org/topic_3118' - Label 'Protein topological domains'\n", + "Entity 'http://edamontology.org/topic_3123' - Label 'Expression signals'\n", + "Entity 'http://edamontology.org/topic_3126' - Label 'Nucleic acid repeats'\n", + "Entity 'http://edamontology.org/topic_3135' - Label 'Signal or transit peptide'\n", + "Entity 'http://edamontology.org/topic_3139' - Label 'Sequence tagged sites'\n", + "Entity 'http://edamontology.org/topic_3171' - Label 'DNA methylation'\n", + "Entity 'http://edamontology.org/topic_3177' - Label 'DNA-Seq'\n", + "Entity 'http://edamontology.org/topic_3178' - Label 'RNA-Seq alignment'\n", + "Entity 'http://edamontology.org/topic_3323' - Label 'Metabolic disease'\n", + "Entity 'http://edamontology.org/topic_3346' - Label 'Sequence search'\n", + "Entity 'http://edamontology.org/topic_3413' - Label 'Infectious tropical disease'\n", + "Entity 'http://edamontology.org/topic_3514' - Label 'Protein-ligand interactions'\n", + "Entity 'http://edamontology.org/topic_3515' - Label 'Protein-drug interactions'\n", + "Entity 'http://edamontology.org/topic_3521' - Label '2D PAGE experiment'\n", + "Entity 'http://edamontology.org/topic_3522' - Label 'Northern blot experiment'\n", + "Entity 'http://edamontology.org/topic_3525' - Label 'Protein-nucleic acid interactions'\n", + "Entity 'http://edamontology.org/topic_3526' - Label 'Protein-protein interactions'\n", + "Entity 'http://edamontology.org/topic_3527' - Label 'Cellular process pathways'\n", + "Entity 'http://edamontology.org/topic_3528' - Label 'Disease pathways'\n", + "Entity 'http://edamontology.org/topic_3529' - Label 'Environmental information processing pathways'\n", + "Entity 'http://edamontology.org/topic_3530' - Label 'Genetic information processing pathways'\n", + "Entity 'http://edamontology.org/topic_3531' - Label 'Protein super-secondary structure'\n", + "Entity 'http://edamontology.org/topic_3533' - Label 'Protein active sites'\n", + "Entity 'http://edamontology.org/topic_3535' - Label 'Protein-nucleic acid binding sites'\n", + "Entity 'http://edamontology.org/topic_3536' - Label 'Protein cleavage sites'\n", + "Entity 'http://edamontology.org/topic_3537' - Label 'Protein chemical modifications'\n", + "Entity 'http://edamontology.org/topic_3539' - Label 'Protein domains'\n", + "Entity 'http://edamontology.org/topic_3540' - Label 'Protein key folding sites'\n", + "Entity 'http://edamontology.org/topic_3541' - Label 'Protein post-translational modifications'\n", + "Entity 'http://edamontology.org/topic_3543' - Label 'Protein sequence repeats'\n", + "Entity 'http://edamontology.org/topic_3544' - Label 'Protein signal peptides'\n", + "Entity 'http://www.geneontology.org/formats/oboInOwl#ObsoleteClass' - Label 'Obsolete concept (EDAM)'\n" + ] + } + ], + "source": [ + "query=\"\"\"\n", + "SELECT DISTINCT ?entity ?label WHERE {\n", + "\n", + " ?entity a owl:Class;\n", + " owl:deprecated true .\n", + " FILTER NOT EXISTS { ?entity oboInOwl:replacedBy|oboInOwl:consider ?repl1 .} \n", + " ?entity rdfs:label ?label .\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T16:53:27.979393Z", + "start_time": "2024-02-13T16:53:27.963669Z" + } + }, + "execution_count": 14 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Entity 'http://edamontology.org/data_2539' - Label 'Alignment data'\n", + "Entity 'http://edamontology.org/topic_0747' - Label 'Nucleic acid sites and features'\n", + "Entity 'http://edamontology.org/topic_0748' - Label 'Protein sites and features'\n", + "Entity 'http://edamontology.org/topic_0751' - Label 'Phosphorylation sites'\n", + "Entity 'http://edamontology.org/topic_2280' - Label 'Nucleic acid structure comparison'\n" + ] + } + ], + "source": [ + "query=\"\"\"\n", + "SELECT DISTINCT ?entity ?label ?property ?replacement WHERE {\n", + " VALUES ?property { oboInOwl:replacedBy\n", + " oboInOwl:consider }\n", + " ?entity ?property ?replacement .\n", + " ?entity rdfs:label ?label .\n", + " ?replacement owl:deprecated true .\n", + " \n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T16:54:56.393383Z", + "start_time": "2024-02-13T16:54:56.354587Z" + } + }, + "execution_count": 15 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Exception ignored in: >\n", + "Traceback (most recent call last):\n", + " File \"/Users/rioualen/mambaforge/lib/python3.10/site-packages/ipykernel/ipkernel.py\", line 770, in _clean_thread_parent_frames\n", + " def _clean_thread_parent_frames(\n", + "KeyboardInterrupt: \n" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001B[0;31m---------------------------------------------------------------------------\u001B[0m", + "\u001B[0;31mKeyboardInterrupt\u001B[0m Traceback (most recent call last)", + "Cell \u001B[0;32mIn[16], line 40\u001B[0m\n\u001B[1;32m 1\u001B[0m query\u001B[38;5;241m=\u001B[39m\u001B[38;5;124m\"\"\"\u001B[39m\n\u001B[1;32m 2\u001B[0m \u001B[38;5;124mSELECT DISTINCT ?entity ?label ?property ?entity2 ?label2 ?property2 ?value WHERE \u001B[39m\u001B[38;5;124m{\u001B[39m\u001B[38;5;124m \u001B[39m\n\u001B[1;32m 3\u001B[0m \u001B[38;5;124m VALUES ?property \u001B[39m\u001B[38;5;124m{\u001B[39m\n\u001B[0;32m (...)\u001B[0m\n\u001B[1;32m 35\u001B[0m \u001B[38;5;124mORDER BY ?value\u001B[39m\n\u001B[1;32m 36\u001B[0m \u001B[38;5;124m\"\"\"\u001B[39m\n\u001B[1;32m 38\u001B[0m results \u001B[38;5;241m=\u001B[39m kg\u001B[38;5;241m.\u001B[39mquery(query)\n\u001B[0;32m---> 40\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m r \u001B[38;5;129;01min\u001B[39;00m results :\n\u001B[1;32m 41\u001B[0m \u001B[38;5;28mprint\u001B[39m(\u001B[38;5;124mf\u001B[39m\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mEntity \u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;132;01m{\u001B[39;00mr[\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mentity\u001B[39m\u001B[38;5;124m'\u001B[39m]\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m - Label \u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;132;01m{\u001B[39;00mr[\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mlabel\u001B[39m\u001B[38;5;124m'\u001B[39m]\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m\"\u001B[39m) \n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/query.py:373\u001B[0m, in \u001B[0;36mResult.__iter__\u001B[0;34m(self)\u001B[0m\n\u001B[1;32m 369\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mtype \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mSELECT\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[1;32m 370\u001B[0m \u001B[38;5;66;03m# this iterates over ResultRows of variable bindings\u001B[39;00m\n\u001B[1;32m 372\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_genbindings:\n\u001B[0;32m--> 373\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m b \u001B[38;5;129;01min\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_genbindings:\n\u001B[1;32m 374\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m b: \u001B[38;5;66;03m# don't add a result row in case of empty binding {}\u001B[39;00m\n\u001B[1;32m 375\u001B[0m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_bindings\u001B[38;5;241m.\u001B[39mappend(b)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:551\u001B[0m, in \u001B[0;36mevalDistinct\u001B[0;34m(ctx, part)\u001B[0m\n\u001B[1;32m 548\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21mevalDistinct\u001B[39m(\n\u001B[1;32m 549\u001B[0m ctx: QueryContext, part: CompValue\n\u001B[1;32m 550\u001B[0m ) \u001B[38;5;241m-\u001B[39m\u001B[38;5;241m>\u001B[39m Generator[FrozenBindings, \u001B[38;5;28;01mNone\u001B[39;00m, \u001B[38;5;28;01mNone\u001B[39;00m]:\n\u001B[0;32m--> 551\u001B[0m res \u001B[38;5;241m=\u001B[39m \u001B[43mevalPart\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mpart\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mp\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 553\u001B[0m done \u001B[38;5;241m=\u001B[39m \u001B[38;5;28mset\u001B[39m()\n\u001B[1;32m 554\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m x \u001B[38;5;129;01min\u001B[39;00m res:\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:303\u001B[0m, in \u001B[0;36mevalPart\u001B[0;34m(ctx, part)\u001B[0m\n\u001B[1;32m 300\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalMinus(ctx, part)\n\u001B[1;32m 302\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mProject\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[0;32m--> 303\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mevalProject\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mpart\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 304\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mSlice\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[1;32m 305\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalSlice(ctx, part)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:561\u001B[0m, in \u001B[0;36mevalProject\u001B[0;34m(ctx, project)\u001B[0m\n\u001B[1;32m 560\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21mevalProject\u001B[39m(ctx: QueryContext, project: CompValue):\n\u001B[0;32m--> 561\u001B[0m res \u001B[38;5;241m=\u001B[39m \u001B[43mevalPart\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mproject\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mp\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 562\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m (row\u001B[38;5;241m.\u001B[39mproject(project\u001B[38;5;241m.\u001B[39mPV) \u001B[38;5;28;01mfor\u001B[39;00m row \u001B[38;5;129;01min\u001B[39;00m res)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:312\u001B[0m, in \u001B[0;36mevalPart\u001B[0;34m(ctx, part)\u001B[0m\n\u001B[1;32m 309\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalReduced(ctx, part)\n\u001B[1;32m 311\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mOrderBy\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[0;32m--> 312\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mevalOrderBy\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mpart\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 313\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mGroup\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[1;32m 314\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalGroup(ctx, part)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:491\u001B[0m, in \u001B[0;36mevalOrderBy\u001B[0;34m(ctx, part)\u001B[0m\n\u001B[1;32m 489\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m e \u001B[38;5;129;01min\u001B[39;00m \u001B[38;5;28mreversed\u001B[39m(part\u001B[38;5;241m.\u001B[39mexpr):\n\u001B[1;32m 490\u001B[0m reverse \u001B[38;5;241m=\u001B[39m \u001B[38;5;28mbool\u001B[39m(e\u001B[38;5;241m.\u001B[39morder \u001B[38;5;129;01mand\u001B[39;00m e\u001B[38;5;241m.\u001B[39morder \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mDESC\u001B[39m\u001B[38;5;124m\"\u001B[39m)\n\u001B[0;32m--> 491\u001B[0m res \u001B[38;5;241m=\u001B[39m \u001B[38;5;28;43msorted\u001B[39;49m\u001B[43m(\u001B[49m\n\u001B[1;32m 492\u001B[0m \u001B[43m \u001B[49m\u001B[43mres\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mkey\u001B[49m\u001B[38;5;241;43m=\u001B[39;49m\u001B[38;5;28;43;01mlambda\u001B[39;49;00m\u001B[43m \u001B[49m\u001B[43mx\u001B[49m\u001B[43m:\u001B[49m\u001B[43m \u001B[49m\u001B[43m_val\u001B[49m\u001B[43m(\u001B[49m\u001B[43mvalue\u001B[49m\u001B[43m(\u001B[49m\u001B[43mx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43me\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mexpr\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mvariables\u001B[49m\u001B[38;5;241;43m=\u001B[39;49m\u001B[38;5;28;43;01mTrue\u001B[39;49;00m\u001B[43m)\u001B[49m\u001B[43m)\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mreverse\u001B[49m\u001B[38;5;241;43m=\u001B[39;49m\u001B[43mreverse\u001B[49m\n\u001B[1;32m 493\u001B[0m \u001B[43m \u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 495\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m res\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:204\u001B[0m, in \u001B[0;36mevalFilter\u001B[0;34m(ctx, part)\u001B[0m\n\u001B[1;32m 200\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21mevalFilter\u001B[39m(\n\u001B[1;32m 201\u001B[0m ctx: QueryContext, part: CompValue\n\u001B[1;32m 202\u001B[0m ) \u001B[38;5;241m-\u001B[39m\u001B[38;5;241m>\u001B[39m Generator[FrozenBindings, \u001B[38;5;28;01mNone\u001B[39;00m, \u001B[38;5;28;01mNone\u001B[39;00m]:\n\u001B[1;32m 203\u001B[0m \u001B[38;5;66;03m# TODO: Deal with dict returned from evalPart!\u001B[39;00m\n\u001B[0;32m--> 204\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m c \u001B[38;5;129;01min\u001B[39;00m \u001B[43mevalPart\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mpart\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mp\u001B[49m\u001B[43m)\u001B[49m:\n\u001B[1;32m 205\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m _ebv(\n\u001B[1;32m 206\u001B[0m part\u001B[38;5;241m.\u001B[39mexpr,\n\u001B[1;32m 207\u001B[0m c\u001B[38;5;241m.\u001B[39mforget(ctx, _except\u001B[38;5;241m=\u001B[39mpart\u001B[38;5;241m.\u001B[39m_vars) \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;129;01mnot\u001B[39;00m part\u001B[38;5;241m.\u001B[39mno_isolated_scope \u001B[38;5;28;01melse\u001B[39;00m c,\n\u001B[1;32m 208\u001B[0m ):\n\u001B[1;32m 209\u001B[0m \u001B[38;5;28;01myield\u001B[39;00m c\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:288\u001B[0m, in \u001B[0;36mevalPart\u001B[0;34m(ctx, part)\u001B[0m\n\u001B[1;32m 286\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalFilter(ctx, part)\n\u001B[1;32m 287\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mJoin\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[0;32m--> 288\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mevalJoin\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mpart\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 289\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mLeftJoin\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[1;32m 290\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalLeftJoin(ctx, part)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:156\u001B[0m, in \u001B[0;36mevalJoin\u001B[0;34m(ctx, join)\u001B[0m\n\u001B[1;32m 154\u001B[0m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[1;32m 155\u001B[0m a \u001B[38;5;241m=\u001B[39m evalPart(ctx, join\u001B[38;5;241m.\u001B[39mp1)\n\u001B[0;32m--> 156\u001B[0m b \u001B[38;5;241m=\u001B[39m \u001B[38;5;28;43mset\u001B[39;49m\u001B[43m(\u001B[49m\u001B[43mevalPart\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mjoin\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mp2\u001B[49m\u001B[43m)\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 157\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m _join(a, b)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:112\u001B[0m, in \u001B[0;36mevalBGP\u001B[0;34m(ctx, bgp)\u001B[0m\n\u001B[1;32m 109\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m AlreadyBound:\n\u001B[1;32m 110\u001B[0m \u001B[38;5;28;01mcontinue\u001B[39;00m\n\u001B[0;32m--> 112\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m x \u001B[38;5;129;01min\u001B[39;00m evalBGP(c, bgp[\u001B[38;5;241m1\u001B[39m:]):\n\u001B[1;32m 113\u001B[0m \u001B[38;5;28;01myield\u001B[39;00m x\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:112\u001B[0m, in \u001B[0;36mevalBGP\u001B[0;34m(ctx, bgp)\u001B[0m\n\u001B[1;32m 109\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m AlreadyBound:\n\u001B[1;32m 110\u001B[0m \u001B[38;5;28;01mcontinue\u001B[39;00m\n\u001B[0;32m--> 112\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m x \u001B[38;5;129;01min\u001B[39;00m evalBGP(c, bgp[\u001B[38;5;241m1\u001B[39m:]):\n\u001B[1;32m 113\u001B[0m \u001B[38;5;28;01myield\u001B[39;00m x\n", + " \u001B[0;31m[... skipping similar frames: evalBGP at line 112 (2 times)]\u001B[0m\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:112\u001B[0m, in \u001B[0;36mevalBGP\u001B[0;34m(ctx, bgp)\u001B[0m\n\u001B[1;32m 109\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m AlreadyBound:\n\u001B[1;32m 110\u001B[0m \u001B[38;5;28;01mcontinue\u001B[39;00m\n\u001B[0;32m--> 112\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m x \u001B[38;5;129;01min\u001B[39;00m evalBGP(c, bgp[\u001B[38;5;241m1\u001B[39m:]):\n\u001B[1;32m 113\u001B[0m \u001B[38;5;28;01myield\u001B[39;00m x\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:84\u001B[0m, in \u001B[0;36mevalBGP\u001B[0;34m(ctx, bgp)\u001B[0m\n\u001B[1;32m 82\u001B[0m _s \u001B[38;5;241m=\u001B[39m ctx[s]\n\u001B[1;32m 83\u001B[0m _p \u001B[38;5;241m=\u001B[39m ctx[p]\n\u001B[0;32m---> 84\u001B[0m _o \u001B[38;5;241m=\u001B[39m \u001B[43mctx\u001B[49m\u001B[43m[\u001B[49m\u001B[43mo\u001B[49m\u001B[43m]\u001B[49m\n\u001B[1;32m 86\u001B[0m \u001B[38;5;66;03m# type error: Item \"None\" of \"Optional[Graph]\" has no attribute \"triples\"\u001B[39;00m\n\u001B[1;32m 87\u001B[0m \u001B[38;5;66;03m# type Argument 1 to \"triples\" of \"Graph\" has incompatible type \"Tuple[Union[str, Path, None], Union[str, Path, None], Union[str, Path, None]]\"; expected \"Tuple[Optional[Node], Optional[Node], Optional[Node]]\"\u001B[39;00m\n\u001B[1;32m 88\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m ss, sp, so \u001B[38;5;129;01min\u001B[39;00m ctx\u001B[38;5;241m.\u001B[39mgraph\u001B[38;5;241m.\u001B[39mtriples((_s, _p, _o)): \u001B[38;5;66;03m# type: ignore[union-attr, arg-type]\u001B[39;00m\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/sparql.py:363\u001B[0m, in \u001B[0;36mQueryContext.__getitem__\u001B[0;34m(self, key)\u001B[0m\n\u001B[1;32m 361\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m key\n\u001B[1;32m 362\u001B[0m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[0;32m--> 363\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mbindings\u001B[49m\u001B[43m[\u001B[49m\u001B[43mkey\u001B[49m\u001B[43m]\u001B[49m\n\u001B[1;32m 364\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mKeyError\u001B[39;00m:\n\u001B[1;32m 365\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;01mNone\u001B[39;00m\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/sparql.py:76\u001B[0m, in \u001B[0;36mBindings.__getitem__\u001B[0;34m(self, key)\u001B[0m\n\u001B[1;32m 74\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21m__getitem__\u001B[39m(\u001B[38;5;28mself\u001B[39m, key: \u001B[38;5;28mstr\u001B[39m) \u001B[38;5;241m-\u001B[39m\u001B[38;5;241m>\u001B[39m \u001B[38;5;28mstr\u001B[39m:\n\u001B[1;32m 75\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m key \u001B[38;5;129;01min\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_d:\n\u001B[0;32m---> 76\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43m_d\u001B[49m\u001B[43m[\u001B[49m\u001B[43mkey\u001B[49m\u001B[43m]\u001B[49m\n\u001B[1;32m 78\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;129;01mnot\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mouter:\n\u001B[1;32m 79\u001B[0m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mKeyError\u001B[39;00m()\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/term.py:184\u001B[0m, in \u001B[0;36mIdentifier.__eq__\u001B[0;34m(self, other)\u001B[0m\n\u001B[1;32m 164\u001B[0m \u001B[38;5;250m\u001B[39m\u001B[38;5;124;03m\"\"\"\u001B[39;00m\n\u001B[1;32m 165\u001B[0m \u001B[38;5;124;03mEquality for Nodes.\u001B[39;00m\n\u001B[1;32m 166\u001B[0m \n\u001B[0;32m (...)\u001B[0m\n\u001B[1;32m 180\u001B[0m \u001B[38;5;124;03mFalse\u001B[39;00m\n\u001B[1;32m 181\u001B[0m \u001B[38;5;124;03m\"\"\"\u001B[39;00m\n\u001B[1;32m 183\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28mtype\u001B[39m(\u001B[38;5;28mself\u001B[39m) \u001B[38;5;241m==\u001B[39m \u001B[38;5;28mtype\u001B[39m(other):\n\u001B[0;32m--> 184\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mstr\u001B[39;49m\u001B[43m(\u001B[49m\u001B[38;5;28;43mself\u001B[39;49m\u001B[43m)\u001B[49m \u001B[38;5;241m==\u001B[39m \u001B[38;5;28mstr\u001B[39m(other)\n\u001B[1;32m 185\u001B[0m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[1;32m 186\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;01mFalse\u001B[39;00m\n", + "\u001B[0;31mKeyboardInterrupt\u001B[0m: " + ] + } + ], + "source": [ + "query=\"\"\"\n", + "SELECT DISTINCT ?entity ?label ?property ?entity2 ?label2 ?property2 ?value WHERE { \n", + " VALUES ?property {\n", + " oboInOwl:hasDefinition\n", + " oboInOwl:hasExactSynonym\n", + " oboInOwl:hasNarrowSynonym\n", + " #oboInOwl:hasBroadSynonym\n", + " #rdfs:comment\n", + " rdfs:label\n", + " }\n", + " VALUES ?property2 {\n", + " oboInOwl:hasDefinition\n", + " oboInOwl:hasExactSynonym\n", + " oboInOwl:hasNarrowSynonym\n", + " #oboInOwl:hasBroadSynonym\n", + " #rdfs:comment\n", + " #rdfs:label\n", + " }\n", + " \n", + " \n", + " ?entity a owl:Class . \n", + " ?entity2 a owl:Class . \n", + " ?entity ?property ?value .\n", + " \n", + " ?entity2 ?property2 ?value .\n", + "\n", + " #?entity2 ?property2 ?value2 . \n", + " #FILTER ( UCASE(str(?value)) = UCASE(str(?value2)) ) \n", + " \n", + " FILTER (?entity != ?entity2)\n", + " ?entity rdfs:label ?label .\n", + " ?entity2 rdfs:label ?label2 .\n", + " \n", + "}\n", + "ORDER BY ?value\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:14:02.239656Z", + "start_time": "2024-02-13T17:10:00.845188Z" + } + }, + "execution_count": 16 + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query=\"\"\"\n", + "PREFIX edam:\n", + "\n", + "SELECT DISTINCT ?entity ?property ?property2 ?value ?label WHERE {\n", + " VALUES ?property {oboInOwl:hasDefinition\n", + " oboInOwl:hasExactSynonym\n", + " oboInOwl:hasNarrowSynonym\n", + " oboInOwl:hasBroadSynonym\n", + " rdfs:comment\n", + " rdfs:label\n", + " edam:documentation\n", + " }\n", + " VALUES ?property2 {oboInOwl:hasDefinition\n", + " oboInOwl:hasExactSynonym\n", + " oboInOwl:hasNarrowSynonym\n", + " oboInOwl:hasBroadSynonym\n", + " rdfs:comment\n", + " rdfs:label\n", + " edam:documentation\n", + " }\n", + "\n", + " ?entity a owl:Class . \n", + " ?entity ?property ?value .\n", + " ?entity ?property2 ?value2 .\n", + "# FILTER (?value = ?value2)\n", + " FILTER ( UCASE(str(?value)) = UCASE(str(?value2)) )\n", + "\n", + " FILTER (?property != ?property2) \n", + " ?entity rdfs:label ?label .\n", + " \n", + "}\n", + "ORDER BY ?value\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:15:39.485823Z", + "start_time": "2024-02-13T17:15:00.501498Z" + } + }, + "execution_count": 18 + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query=\"\"\"\n", + "SELECT DISTINCT ?entity ?property ?value ?label WHERE {\n", + "?entity a owl:Class .\n", + "?entity ?property ?value . \n", + " FILTER REGEX (?value, \"^(.{0})$\").\n", + "?entity rdfs:label ?label\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:20:02.693754Z", + "start_time": "2024-02-13T17:20:01.684744Z" + } + }, + "execution_count": 22 + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query=\"\"\"\n", + "SELECT DISTINCT ?entity ?property ?def ?label WHERE {\n", + " VALUES ?property {oboInOwl:hasDefinition} \n", + " ?entity ?property ?def .\n", + " ?entity rdfs:label ?label .\n", + "\n", + " FILTER NOT EXISTS {\n", + " FILTER REGEX(str(?def), \"['.']+$\")\n", + " }\n", + " FILTER (!isBlank(?def))\n", + "\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:18:34.478418Z", + "start_time": "2024-02-13T17:18:34.209768Z" + } + }, + "execution_count": 20 + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query=\"\"\"\n", + "SELECT DISTINCT ?entity ?property ?value ?label WHERE {\n", + " VALUES ?property {rdfs:label} \n", + " ?entity ?property ?value .\n", + " ?entity rdfs:label ?label .\n", + "\n", + " FILTER REGEX(str(?value), \"['.']+$\")\n", + " FILTER (!isBlank(?entity))\n", + "\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:19:17.268386Z", + "start_time": "2024-02-13T17:19:17.046386Z" + } + }, + "execution_count": 21 + }, + { + "cell_type": "code", + "outputs": [ + { + "ename": "ParseException", + "evalue": "Expected SelectQuery, found ']' (at char 155), (line:7, col:1)", + "output_type": "error", + "traceback": [ + "\u001B[0;31m---------------------------------------------------------------------------\u001B[0m", + "\u001B[0;31mParseException\u001B[0m Traceback (most recent call last)", + "Cell \u001B[0;32mIn[26], line 13\u001B[0m\n\u001B[1;32m 1\u001B[0m query\u001B[38;5;241m=\u001B[39m\u001B[38;5;124m\"\"\"\u001B[39m\n\u001B[1;32m 2\u001B[0m \u001B[38;5;124mSELECT DISTINCT ?entity ?property ?value ?label WHERE \u001B[39m\u001B[38;5;124m{\u001B[39m\n\u001B[1;32m 3\u001B[0m \u001B[38;5;124m ?entity ?property ?value .\u001B[39m\n\u001B[0;32m (...)\u001B[0m\n\u001B[1;32m 10\u001B[0m \u001B[38;5;124mORDER BY ?entity\u001B[39m\n\u001B[1;32m 11\u001B[0m \u001B[38;5;124m\"\"\"\u001B[39m\n\u001B[0;32m---> 13\u001B[0m results \u001B[38;5;241m=\u001B[39m \u001B[43mkg\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mquery\u001B[49m\u001B[43m(\u001B[49m\u001B[43mquery\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 15\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m r \u001B[38;5;129;01min\u001B[39;00m results :\n\u001B[1;32m 16\u001B[0m \u001B[38;5;28mprint\u001B[39m(\u001B[38;5;124mf\u001B[39m\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mEntity \u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;132;01m{\u001B[39;00mr[\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mentity\u001B[39m\u001B[38;5;124m'\u001B[39m]\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m - Label \u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;132;01m{\u001B[39;00mr[\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mlabel\u001B[39m\u001B[38;5;124m'\u001B[39m]\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m\"\u001B[39m) \n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/graph.py:1565\u001B[0m, in \u001B[0;36mGraph.query\u001B[0;34m(self, query_object, processor, result, initNs, initBindings, use_store_provided, **kwargs)\u001B[0m\n\u001B[1;32m 1562\u001B[0m processor \u001B[38;5;241m=\u001B[39m plugin\u001B[38;5;241m.\u001B[39mget(processor, query\u001B[38;5;241m.\u001B[39mProcessor)(\u001B[38;5;28mself\u001B[39m)\n\u001B[1;32m 1564\u001B[0m \u001B[38;5;66;03m# type error: Argument 1 to \"Result\" has incompatible type \"Mapping[str, Any]\"; expected \"str\"\u001B[39;00m\n\u001B[0;32m-> 1565\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m result(\u001B[43mprocessor\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mquery\u001B[49m\u001B[43m(\u001B[49m\u001B[43mquery_object\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43minitBindings\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43minitNs\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[43mkwargs\u001B[49m\u001B[43m)\u001B[49m)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/processor.py:144\u001B[0m, in \u001B[0;36mSPARQLProcessor.query\u001B[0;34m(self, strOrQuery, initBindings, initNs, base, DEBUG)\u001B[0m\n\u001B[1;32m 124\u001B[0m \u001B[38;5;250m\u001B[39m\u001B[38;5;124;03m\"\"\"\u001B[39;00m\n\u001B[1;32m 125\u001B[0m \u001B[38;5;124;03mEvaluate a query with the given initial bindings, and initial\u001B[39;00m\n\u001B[1;32m 126\u001B[0m \u001B[38;5;124;03mnamespaces. The given base is used to resolve relative URIs in\u001B[39;00m\n\u001B[0;32m (...)\u001B[0m\n\u001B[1;32m 140\u001B[0m \u001B[38;5;124;03m documentation.\u001B[39;00m\n\u001B[1;32m 141\u001B[0m \u001B[38;5;124;03m\"\"\"\u001B[39;00m\n\u001B[1;32m 143\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(strOrQuery, \u001B[38;5;28mstr\u001B[39m):\n\u001B[0;32m--> 144\u001B[0m strOrQuery \u001B[38;5;241m=\u001B[39m translateQuery(\u001B[43mparseQuery\u001B[49m\u001B[43m(\u001B[49m\u001B[43mstrOrQuery\u001B[49m\u001B[43m)\u001B[49m, base, initNs)\n\u001B[1;32m 146\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalQuery(\u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mgraph, strOrQuery, initBindings, base)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/parser.py:1542\u001B[0m, in \u001B[0;36mparseQuery\u001B[0;34m(q)\u001B[0m\n\u001B[1;32m 1539\u001B[0m q \u001B[38;5;241m=\u001B[39m q\u001B[38;5;241m.\u001B[39mdecode(\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mutf-8\u001B[39m\u001B[38;5;124m\"\u001B[39m)\n\u001B[1;32m 1541\u001B[0m q \u001B[38;5;241m=\u001B[39m expandUnicodeEscapes(q)\n\u001B[0;32m-> 1542\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mQuery\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mparseString\u001B[49m\u001B[43m(\u001B[49m\u001B[43mq\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mparseAll\u001B[49m\u001B[38;5;241;43m=\u001B[39;49m\u001B[38;5;28;43;01mTrue\u001B[39;49;00m\u001B[43m)\u001B[49m\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/pyparsing/util.py:256\u001B[0m, in \u001B[0;36m_make_synonym_function.._inner\u001B[0;34m(self, *args, **kwargs)\u001B[0m\n\u001B[1;32m 251\u001B[0m \u001B[38;5;129m@wraps\u001B[39m(fn)\n\u001B[1;32m 252\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21m_inner\u001B[39m(\u001B[38;5;28mself\u001B[39m, \u001B[38;5;241m*\u001B[39margs, \u001B[38;5;241m*\u001B[39m\u001B[38;5;241m*\u001B[39mkwargs):\n\u001B[1;32m 253\u001B[0m \u001B[38;5;66;03m# warnings.warn(\u001B[39;00m\n\u001B[1;32m 254\u001B[0m \u001B[38;5;66;03m# f\"Deprecated - use {fn.__name__}\", DeprecationWarning, stacklevel=3\u001B[39;00m\n\u001B[1;32m 255\u001B[0m \u001B[38;5;66;03m# )\u001B[39;00m\n\u001B[0;32m--> 256\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mfn\u001B[49m\u001B[43m(\u001B[49m\u001B[38;5;28;43mself\u001B[39;49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[43margs\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[43mkwargs\u001B[49m\u001B[43m)\u001B[49m\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/pyparsing/core.py:1197\u001B[0m, in \u001B[0;36mParserElement.parse_string\u001B[0;34m(self, instring, parse_all, parseAll)\u001B[0m\n\u001B[1;32m 1194\u001B[0m \u001B[38;5;28;01mraise\u001B[39;00m\n\u001B[1;32m 1195\u001B[0m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[1;32m 1196\u001B[0m \u001B[38;5;66;03m# catch and re-raise exception from here, clearing out pyparsing internal stack trace\u001B[39;00m\n\u001B[0;32m-> 1197\u001B[0m \u001B[38;5;28;01mraise\u001B[39;00m exc\u001B[38;5;241m.\u001B[39mwith_traceback(\u001B[38;5;28;01mNone\u001B[39;00m)\n\u001B[1;32m 1198\u001B[0m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[1;32m 1199\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m tokens\n", + "\u001B[0;31mParseException\u001B[0m: Expected SelectQuery, found ']' (at char 155), (line:7, col:1)" + ] + } + ], + "source": [ + "query=\"\"\"\n", + "SELECT DISTINCT ?entity ?property ?value ?label WHERE {\n", + " ?entity ?property ?value .\n", + " ?entity rdfs:label ?label .\n", + "\n", + " #FILTER REGEX(str(?value), \"[\\\\s\\r\\n]+$\")\n", + " #FILTER (!isBlank(?entity))\n", + "\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:22:06.994601Z", + "start_time": "2024-02-13T17:22:06.949433Z" + } + }, + "execution_count": 26 + }, + { + "cell_type": "code", + "outputs": [ + { + "ename": "ParseException", + "evalue": "Expected SelectQuery, found 'FILTER' (at char 126), (line:6, col:4)", + "output_type": "error", + "traceback": [ + "\u001B[0;31m---------------------------------------------------------------------------\u001B[0m", + "\u001B[0;31mParseException\u001B[0m Traceback (most recent call last)", + "Cell \u001B[0;32mIn[28], line 13\u001B[0m\n\u001B[1;32m 1\u001B[0m query\u001B[38;5;241m=\u001B[39m\u001B[38;5;124m\"\"\"\u001B[39m\n\u001B[1;32m 2\u001B[0m \u001B[38;5;124mSELECT DISTINCT ?entity ?property ?value ?label \u001B[39m\n\u001B[1;32m 3\u001B[0m \u001B[38;5;124mWHERE \u001B[39m\u001B[38;5;124m{\u001B[39m\n\u001B[0;32m (...)\u001B[0m\n\u001B[1;32m 10\u001B[0m \u001B[38;5;124mORDER BY ?entity\u001B[39m\n\u001B[1;32m 11\u001B[0m \u001B[38;5;124m\"\"\"\u001B[39m\n\u001B[0;32m---> 13\u001B[0m results \u001B[38;5;241m=\u001B[39m \u001B[43mkg\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mquery\u001B[49m\u001B[43m(\u001B[49m\u001B[43mquery\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 15\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m r \u001B[38;5;129;01min\u001B[39;00m results :\n\u001B[1;32m 16\u001B[0m \u001B[38;5;28mprint\u001B[39m(\u001B[38;5;124mf\u001B[39m\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mEntity \u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;132;01m{\u001B[39;00mr[\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mentity\u001B[39m\u001B[38;5;124m'\u001B[39m]\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m - Label \u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;132;01m{\u001B[39;00mr[\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mlabel\u001B[39m\u001B[38;5;124m'\u001B[39m]\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m\"\u001B[39m) \n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/graph.py:1565\u001B[0m, in \u001B[0;36mGraph.query\u001B[0;34m(self, query_object, processor, result, initNs, initBindings, use_store_provided, **kwargs)\u001B[0m\n\u001B[1;32m 1562\u001B[0m processor \u001B[38;5;241m=\u001B[39m plugin\u001B[38;5;241m.\u001B[39mget(processor, query\u001B[38;5;241m.\u001B[39mProcessor)(\u001B[38;5;28mself\u001B[39m)\n\u001B[1;32m 1564\u001B[0m \u001B[38;5;66;03m# type error: Argument 1 to \"Result\" has incompatible type \"Mapping[str, Any]\"; expected \"str\"\u001B[39;00m\n\u001B[0;32m-> 1565\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m result(\u001B[43mprocessor\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mquery\u001B[49m\u001B[43m(\u001B[49m\u001B[43mquery_object\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43minitBindings\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43minitNs\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[43mkwargs\u001B[49m\u001B[43m)\u001B[49m)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/processor.py:144\u001B[0m, in \u001B[0;36mSPARQLProcessor.query\u001B[0;34m(self, strOrQuery, initBindings, initNs, base, DEBUG)\u001B[0m\n\u001B[1;32m 124\u001B[0m \u001B[38;5;250m\u001B[39m\u001B[38;5;124;03m\"\"\"\u001B[39;00m\n\u001B[1;32m 125\u001B[0m \u001B[38;5;124;03mEvaluate a query with the given initial bindings, and initial\u001B[39;00m\n\u001B[1;32m 126\u001B[0m \u001B[38;5;124;03mnamespaces. The given base is used to resolve relative URIs in\u001B[39;00m\n\u001B[0;32m (...)\u001B[0m\n\u001B[1;32m 140\u001B[0m \u001B[38;5;124;03m documentation.\u001B[39;00m\n\u001B[1;32m 141\u001B[0m \u001B[38;5;124;03m\"\"\"\u001B[39;00m\n\u001B[1;32m 143\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(strOrQuery, \u001B[38;5;28mstr\u001B[39m):\n\u001B[0;32m--> 144\u001B[0m strOrQuery \u001B[38;5;241m=\u001B[39m translateQuery(\u001B[43mparseQuery\u001B[49m\u001B[43m(\u001B[49m\u001B[43mstrOrQuery\u001B[49m\u001B[43m)\u001B[49m, base, initNs)\n\u001B[1;32m 146\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalQuery(\u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mgraph, strOrQuery, initBindings, base)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/parser.py:1542\u001B[0m, in \u001B[0;36mparseQuery\u001B[0;34m(q)\u001B[0m\n\u001B[1;32m 1539\u001B[0m q \u001B[38;5;241m=\u001B[39m q\u001B[38;5;241m.\u001B[39mdecode(\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mutf-8\u001B[39m\u001B[38;5;124m\"\u001B[39m)\n\u001B[1;32m 1541\u001B[0m q \u001B[38;5;241m=\u001B[39m expandUnicodeEscapes(q)\n\u001B[0;32m-> 1542\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mQuery\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mparseString\u001B[49m\u001B[43m(\u001B[49m\u001B[43mq\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mparseAll\u001B[49m\u001B[38;5;241;43m=\u001B[39;49m\u001B[38;5;28;43;01mTrue\u001B[39;49;00m\u001B[43m)\u001B[49m\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/pyparsing/util.py:256\u001B[0m, in \u001B[0;36m_make_synonym_function.._inner\u001B[0;34m(self, *args, **kwargs)\u001B[0m\n\u001B[1;32m 251\u001B[0m \u001B[38;5;129m@wraps\u001B[39m(fn)\n\u001B[1;32m 252\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21m_inner\u001B[39m(\u001B[38;5;28mself\u001B[39m, \u001B[38;5;241m*\u001B[39margs, \u001B[38;5;241m*\u001B[39m\u001B[38;5;241m*\u001B[39mkwargs):\n\u001B[1;32m 253\u001B[0m \u001B[38;5;66;03m# warnings.warn(\u001B[39;00m\n\u001B[1;32m 254\u001B[0m \u001B[38;5;66;03m# f\"Deprecated - use {fn.__name__}\", DeprecationWarning, stacklevel=3\u001B[39;00m\n\u001B[1;32m 255\u001B[0m \u001B[38;5;66;03m# )\u001B[39;00m\n\u001B[0;32m--> 256\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mfn\u001B[49m\u001B[43m(\u001B[49m\u001B[38;5;28;43mself\u001B[39;49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[43margs\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[43mkwargs\u001B[49m\u001B[43m)\u001B[49m\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/pyparsing/core.py:1197\u001B[0m, in \u001B[0;36mParserElement.parse_string\u001B[0;34m(self, instring, parse_all, parseAll)\u001B[0m\n\u001B[1;32m 1194\u001B[0m \u001B[38;5;28;01mraise\u001B[39;00m\n\u001B[1;32m 1195\u001B[0m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[1;32m 1196\u001B[0m \u001B[38;5;66;03m# catch and re-raise exception from here, clearing out pyparsing internal stack trace\u001B[39;00m\n\u001B[0;32m-> 1197\u001B[0m \u001B[38;5;28;01mraise\u001B[39;00m exc\u001B[38;5;241m.\u001B[39mwith_traceback(\u001B[38;5;28;01mNone\u001B[39;00m)\n\u001B[1;32m 1198\u001B[0m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[1;32m 1199\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m tokens\n", + "\u001B[0;31mParseException\u001B[0m: Expected SelectQuery, found 'FILTER' (at char 126), (line:6, col:4)" + ] + } + ], + "source": [ + "query=\"\"\"\n", + "SELECT DISTINCT ?entity ?property ?value ?label \n", + "WHERE {\n", + " ?entity ?property ?value .\n", + " ?entity rdfs:label ?label . \n", + " FILTER regex(?value, \"\\n\")\n", + " FILTER (!isBlank(?entity))\n", + "\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:25:17.173205Z", + "start_time": "2024-02-13T17:25:17.140331Z" + } + }, + "execution_count": 28 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Entity 'http://edamontology.org/format_1196' - Label 'SMILES'\n", + "Entity 'http://edamontology.org/format_1197' - Label 'InChI'\n", + "Entity 'http://edamontology.org/format_1197' - Label 'InChI'\n", + "Entity 'http://edamontology.org/format_1198' - Label 'mf'\n", + "Entity 'http://edamontology.org/format_1198' - Label 'mf'\n", + "Entity 'http://edamontology.org/format_1199' - Label 'InChIKey'\n", + "Entity 'http://edamontology.org/format_1199' - Label 'InChIKey'\n", + "Entity 'http://edamontology.org/format_1200' - Label 'smarts'\n", + "Entity 'http://edamontology.org/format_1200' - Label 'smarts'\n", + "Entity 'http://edamontology.org/format_1206' - Label 'unambiguous pure'\n", + "Entity 'http://edamontology.org/format_1206' - Label 'unambiguous pure'\n", + "Entity 'http://edamontology.org/format_1207' - Label 'nucleotide'\n", + "Entity 'http://edamontology.org/format_1207' - Label 'nucleotide'\n", + "Entity 'http://edamontology.org/format_1208' - Label 'protein'\n", + "Entity 'http://edamontology.org/format_1208' - Label 'protein'\n", + "Entity 'http://edamontology.org/format_1209' - Label 'consensus'\n", + "Entity 'http://edamontology.org/format_1209' - Label 'consensus'\n", + "Entity 'http://edamontology.org/format_1210' - Label 'pure nucleotide'\n", + "Entity 'http://edamontology.org/format_1210' - Label 'pure nucleotide'\n", + "Entity 'http://edamontology.org/format_1211' - Label 'unambiguous pure nucleotide'\n", + "Entity 'http://edamontology.org/format_1211' - Label 'unambiguous pure nucleotide'\n", + "Entity 'http://edamontology.org/format_1212' - Label 'dna'\n", + "Entity 'http://edamontology.org/format_1212' - Label 'dna'\n", + "Entity 'http://edamontology.org/format_1213' - Label 'rna'\n", + "Entity 'http://edamontology.org/format_1213' - Label 'rna'\n", + "Entity 'http://edamontology.org/format_1214' - Label 'unambiguous pure dna'\n", + "Entity 'http://edamontology.org/format_1214' - Label 'unambiguous pure dna'\n", + "Entity 'http://edamontology.org/format_1215' - Label 'pure dna'\n", + "Entity 'http://edamontology.org/format_1215' - Label 'pure dna'\n", + "Entity 'http://edamontology.org/format_1216' - Label 'unambiguous pure rna sequence'\n", + "Entity 'http://edamontology.org/format_1216' - Label 'unambiguous pure rna sequence'\n", + "Entity 'http://edamontology.org/format_1217' - Label 'pure rna'\n", + "Entity 'http://edamontology.org/format_1217' - Label 'pure rna'\n", + "Entity 'http://edamontology.org/format_1218' - Label 'unambiguous pure protein'\n", + "Entity 'http://edamontology.org/format_1218' - Label 'unambiguous pure protein'\n", + "Entity 'http://edamontology.org/format_1219' - Label 'pure protein'\n", + "Entity 'http://edamontology.org/format_1219' - Label 'pure protein'\n", + "Entity 'http://edamontology.org/format_1248' - Label 'EMBL feature location'\n", + "Entity 'http://edamontology.org/format_1248' - Label 'EMBL feature location'\n", + "Entity 'http://edamontology.org/format_1295' - Label 'quicktandem'\n", + "Entity 'http://edamontology.org/format_1295' - Label 'quicktandem'\n", + "Entity 'http://edamontology.org/format_1296' - Label 'Sanger inverted repeats'\n", + "Entity 'http://edamontology.org/format_1296' - Label 'Sanger inverted repeats'\n", + "Entity 'http://edamontology.org/format_1297' - Label 'EMBOSS repeat'\n", + "Entity 'http://edamontology.org/format_1297' - Label 'EMBOSS repeat'\n", + "Entity 'http://edamontology.org/format_1316' - Label 'est2genome format'\n", + "Entity 'http://edamontology.org/format_1316' - Label 'est2genome format'\n", + "Entity 'http://edamontology.org/format_1318' - Label 'restrict format'\n", + "Entity 'http://edamontology.org/format_1318' - Label 'restrict format'\n", + "Entity 'http://edamontology.org/format_1319' - Label 'restover format'\n", + "Entity 'http://edamontology.org/format_1319' - Label 'restover format'\n", + "Entity 'http://edamontology.org/format_1320' - Label 'REBASE restriction sites'\n", + "Entity 'http://edamontology.org/format_1320' - Label 'REBASE restriction sites'\n", + "Entity 'http://edamontology.org/format_1332' - Label 'FASTA search results format'\n", + "Entity 'http://edamontology.org/format_1332' - Label 'FASTA search results format'\n", + "Entity 'http://edamontology.org/format_1333' - Label 'BLAST results'\n", + "Entity 'http://edamontology.org/format_1333' - Label 'BLAST results'\n", + "Entity 'http://edamontology.org/format_1334' - Label 'mspcrunch'\n", + "Entity 'http://edamontology.org/format_1334' - Label 'mspcrunch'\n", + "Entity 'http://edamontology.org/format_1335' - Label 'Smith-Waterman format'\n", + "Entity 'http://edamontology.org/format_1335' - Label 'Smith-Waterman format'\n", + "Entity 'http://edamontology.org/format_1336' - Label 'dhf'\n", + "Entity 'http://edamontology.org/format_1336' - Label 'dhf'\n", + "Entity 'http://edamontology.org/format_1337' - Label 'lhf'\n", + "Entity 'http://edamontology.org/format_1337' - Label 'lhf'\n", + "Entity 'http://edamontology.org/format_1341' - Label 'InterPro hits format'\n", + "Entity 'http://edamontology.org/format_1341' - Label 'InterPro hits format'\n", + "Entity 'http://edamontology.org/format_1342' - Label 'InterPro protein view report format'\n", + "Entity 'http://edamontology.org/format_1342' - Label 'InterPro protein view report format'\n", + "Entity 'http://edamontology.org/format_1343' - Label 'InterPro match table format'\n", + "Entity 'http://edamontology.org/format_1343' - Label 'InterPro match table format'\n", + "Entity 'http://edamontology.org/format_1349' - Label 'HMMER Dirichlet prior'\n", + "Entity 'http://edamontology.org/format_1349' - Label 'HMMER Dirichlet prior'\n", + "Entity 'http://edamontology.org/format_1350' - Label 'MEME Dirichlet prior'\n", + "Entity 'http://edamontology.org/format_1350' - Label 'MEME Dirichlet prior'\n", + "Entity 'http://edamontology.org/format_1351' - Label 'HMMER emission and transition'\n", + "Entity 'http://edamontology.org/format_1351' - Label 'HMMER emission and transition'\n", + "Entity 'http://edamontology.org/format_1356' - Label 'prosite-pattern'\n", + "Entity 'http://edamontology.org/format_1356' - Label 'prosite-pattern'\n", + "Entity 'http://edamontology.org/format_1357' - Label 'EMBOSS sequence pattern'\n", + "Entity 'http://edamontology.org/format_1357' - Label 'EMBOSS sequence pattern'\n", + "Entity 'http://edamontology.org/format_1360' - Label 'meme-motif'\n", + "Entity 'http://edamontology.org/format_1360' - Label 'meme-motif'\n", + "Entity 'http://edamontology.org/format_1366' - Label 'prosite-profile'\n", + "Entity 'http://edamontology.org/format_1366' - Label 'prosite-profile'\n", + "Entity 'http://edamontology.org/format_1367' - Label 'JASPAR format'\n", + "Entity 'http://edamontology.org/format_1367' - Label 'JASPAR format'\n", + "Entity 'http://edamontology.org/format_1369' - Label 'MEME background Markov model'\n", + "Entity 'http://edamontology.org/format_1369' - Label 'MEME background Markov model'\n", + "Entity 'http://edamontology.org/format_1370' - Label 'HMMER format'\n", + "Entity 'http://edamontology.org/format_1370' - Label 'HMMER format'\n", + "Entity 'http://edamontology.org/format_1391' - Label 'HMMER-aln'\n", + "Entity 'http://edamontology.org/format_1391' - Label 'HMMER-aln'\n", + "Entity 'http://edamontology.org/format_1392' - Label 'DIALIGN format'\n", + "Entity 'http://edamontology.org/format_1392' - Label 'DIALIGN format'\n", + "Entity 'http://edamontology.org/format_1393' - Label 'daf'\n", + "Entity 'http://edamontology.org/format_1393' - Label 'daf'\n", + "Entity 'http://edamontology.org/format_1419' - Label 'Sequence-MEME profile alignment'\n", + "Entity 'http://edamontology.org/format_1419' - Label 'Sequence-MEME profile alignment'\n", + "Entity 'http://edamontology.org/format_1421' - Label 'HMMER profile alignment (sequences versus HMMs)'\n", + "Entity 'http://edamontology.org/format_1421' - Label 'HMMER profile alignment (sequences versus HMMs)'\n", + "Entity 'http://edamontology.org/format_1422' - Label 'HMMER profile alignment (HMM versus sequences)'\n", + "Entity 'http://edamontology.org/format_1422' - Label 'HMMER profile alignment (HMM versus sequences)'\n", + "Entity 'http://edamontology.org/format_1423' - Label 'Phylip distance matrix'\n", + "Entity 'http://edamontology.org/format_1423' - Label 'Phylip distance matrix'\n", + "Entity 'http://edamontology.org/format_1424' - Label 'ClustalW dendrogram'\n", + "Entity 'http://edamontology.org/format_1424' - Label 'ClustalW dendrogram'\n", + "Entity 'http://edamontology.org/format_1425' - Label 'Phylip tree raw'\n", + "Entity 'http://edamontology.org/format_1425' - Label 'Phylip tree raw'\n", + "Entity 'http://edamontology.org/format_1430' - Label 'Phylip continuous quantitative characters'\n", + "Entity 'http://edamontology.org/format_1430' - Label 'Phylip continuous quantitative characters'\n", + "Entity 'http://edamontology.org/format_1432' - Label 'Phylip character frequencies format'\n", + "Entity 'http://edamontology.org/format_1432' - Label 'Phylip character frequencies format'\n", + "Entity 'http://edamontology.org/format_1433' - Label 'Phylip discrete states format'\n", + "Entity 'http://edamontology.org/format_1433' - Label 'Phylip discrete states format'\n", + "Entity 'http://edamontology.org/format_1434' - Label 'Phylip cliques format'\n", + "Entity 'http://edamontology.org/format_1434' - Label 'Phylip cliques format'\n", + "Entity 'http://edamontology.org/format_1435' - Label 'Phylip tree format'\n", + "Entity 'http://edamontology.org/format_1435' - Label 'Phylip tree format'\n", + "Entity 'http://edamontology.org/format_1436' - Label 'TreeBASE format'\n", + "Entity 'http://edamontology.org/format_1436' - Label 'TreeBASE format'\n", + "Entity 'http://edamontology.org/format_1437' - Label 'TreeFam format'\n", + "Entity 'http://edamontology.org/format_1437' - Label 'TreeFam format'\n", + "Entity 'http://edamontology.org/format_1445' - Label 'Phylip tree distance format'\n", + "Entity 'http://edamontology.org/format_1445' - Label 'Phylip tree distance format'\n", + "Entity 'http://edamontology.org/format_1454' - Label 'dssp'\n", + "Entity 'http://edamontology.org/format_1454' - Label 'dssp'\n", + "Entity 'http://edamontology.org/format_1455' - Label 'hssp'\n", + "Entity 'http://edamontology.org/format_1455' - Label 'hssp'\n", + "Entity 'http://edamontology.org/format_1457' - Label 'Dot-bracket format'\n", + "Entity 'http://edamontology.org/format_1457' - Label 'Dot-bracket format'\n", + "Entity 'http://edamontology.org/format_1458' - Label 'Vienna local RNA secondary structure format'\n", + "Entity 'http://edamontology.org/format_1458' - Label 'Vienna local RNA secondary structure format'\n", + "Entity 'http://edamontology.org/format_1475' - Label 'PDB database entry format'\n", + "Entity 'http://edamontology.org/format_1476' - Label 'PDB'\n", + "Entity 'http://edamontology.org/format_1476' - Label 'PDB'\n", + "Entity 'http://edamontology.org/format_1477' - Label 'mmCIF'\n", + "Entity 'http://edamontology.org/format_1477' - Label 'mmCIF'\n", + "Entity 'http://edamontology.org/format_1478' - Label 'PDBML'\n", + "Entity 'http://edamontology.org/format_1478' - Label 'PDBML'\n", + "Entity 'http://edamontology.org/format_1504' - Label 'aaindex'\n", + "Entity 'http://edamontology.org/format_1504' - Label 'aaindex'\n", + "Entity 'http://edamontology.org/format_1551' - Label 'Pcons report format'\n", + "Entity 'http://edamontology.org/format_1551' - Label 'Pcons report format'\n", + "Entity 'http://edamontology.org/format_1552' - Label 'ProQ report format'\n", + "Entity 'http://edamontology.org/format_1552' - Label 'ProQ report format'\n", + "Entity 'http://edamontology.org/format_1582' - Label 'findkm'\n", + "Entity 'http://edamontology.org/format_1582' - Label 'findkm'\n", + "Entity 'http://edamontology.org/format_1627' - Label 'Primer3 primer'\n", + "Entity 'http://edamontology.org/format_1627' - Label 'Primer3 primer'\n", + "Entity 'http://edamontology.org/format_1628' - Label 'ABI'\n", + "Entity 'http://edamontology.org/format_1628' - Label 'ABI'\n", + "Entity 'http://edamontology.org/format_1629' - Label 'mira'\n", + "Entity 'http://edamontology.org/format_1629' - Label 'mira'\n", + "Entity 'http://edamontology.org/format_1630' - Label 'CAF'\n", + "Entity 'http://edamontology.org/format_1631' - Label 'EXP'\n", + "Entity 'http://edamontology.org/format_1632' - Label 'SCF'\n", + "Entity 'http://edamontology.org/format_1633' - Label 'PHD'\n", + "Entity 'http://edamontology.org/format_1637' - Label 'dat'\n", + "Entity 'http://edamontology.org/format_1638' - Label 'cel'\n", + "Entity 'http://edamontology.org/format_1639' - Label 'affymetrix'\n", + "Entity 'http://edamontology.org/format_1639' - Label 'affymetrix'\n", + "Entity 'http://edamontology.org/format_1641' - Label 'affymetrix-exp'\n", + "Entity 'http://edamontology.org/format_1641' - Label 'affymetrix-exp'\n", + "Entity 'http://edamontology.org/format_1665' - Label 'Taverna workflow format'\n", + "Entity 'http://edamontology.org/format_1665' - Label 'Taverna workflow format'\n", + "Entity 'http://edamontology.org/format_1705' - Label 'HET group dictionary entry format'\n", + "Entity 'http://edamontology.org/format_1705' - Label 'HET group dictionary entry format'\n", + "Entity 'http://edamontology.org/format_1734' - Label 'PubMed citation'\n", + "Entity 'http://edamontology.org/format_1734' - Label 'PubMed citation'\n", + "Entity 'http://edamontology.org/format_1735' - Label 'Medline Display Format'\n", + "Entity 'http://edamontology.org/format_1735' - Label 'Medline Display Format'\n", + "Entity 'http://edamontology.org/format_1736' - Label 'CiteXplore-core'\n", + "Entity 'http://edamontology.org/format_1736' - Label 'CiteXplore-core'\n", + "Entity 'http://edamontology.org/format_1737' - Label 'CiteXplore-all'\n", + "Entity 'http://edamontology.org/format_1737' - Label 'CiteXplore-all'\n", + "Entity 'http://edamontology.org/format_1739' - Label 'pmc'\n", + "Entity 'http://edamontology.org/format_1739' - Label 'pmc'\n", + "Entity 'http://edamontology.org/format_1740' - Label 'iHOP format'\n", + "Entity 'http://edamontology.org/format_1740' - Label 'iHOP format'\n", + "Entity 'http://edamontology.org/format_1741' - Label 'OSCAR format'\n", + "Entity 'http://edamontology.org/format_1741' - Label 'OSCAR format'\n", + "Entity 'http://edamontology.org/format_1861' - Label 'PlasMapper TextMap'\n", + "Entity 'http://edamontology.org/format_1861' - Label 'PlasMapper TextMap'\n", + "Entity 'http://edamontology.org/format_1910' - Label 'newick'\n", + "Entity 'http://edamontology.org/format_1910' - Label 'newick'\n", + "Entity 'http://edamontology.org/format_1911' - Label 'TreeCon format'\n", + "Entity 'http://edamontology.org/format_1911' - Label 'TreeCon format'\n", + "Entity 'http://edamontology.org/format_1912' - Label 'Nexus format'\n", + "Entity 'http://edamontology.org/format_1912' - Label 'Nexus format'\n", + "Entity 'http://edamontology.org/format_1919' - Label 'Sequence record format'\n", + "Entity 'http://edamontology.org/format_1920' - Label 'Sequence feature annotation format'\n", + "Entity 'http://edamontology.org/format_1921' - Label 'Alignment format'\n", + "Entity 'http://edamontology.org/format_1923' - Label 'acedb'\n", + "Entity 'http://edamontology.org/format_1923' - Label 'acedb'\n", + "Entity 'http://edamontology.org/format_1925' - Label 'codata'\n", + "Entity 'http://edamontology.org/format_1925' - Label 'codata'\n", + "Entity 'http://edamontology.org/format_1926' - Label 'dbid'\n", + "Entity 'http://edamontology.org/format_1926' - Label 'dbid'\n", + "Entity 'http://edamontology.org/format_1927' - Label 'EMBL format'\n", + "Entity 'http://edamontology.org/format_1927' - Label 'EMBL format'\n", + "Entity 'http://edamontology.org/format_1928' - Label 'Staden experiment format'\n", + "Entity 'http://edamontology.org/format_1928' - Label 'Staden experiment format'\n", + "Entity 'http://edamontology.org/format_1929' - Label 'FASTA'\n", + "Entity 'http://edamontology.org/format_1929' - Label 'FASTA'\n", + "Entity 'http://edamontology.org/format_1930' - Label 'FASTQ'\n", + "Entity 'http://edamontology.org/format_1930' - Label 'FASTQ'\n", + "Entity 'http://edamontology.org/format_1931' - Label 'FASTQ-illumina'\n", + "Entity 'http://edamontology.org/format_1931' - Label 'FASTQ-illumina'\n", + "Entity 'http://edamontology.org/format_1932' - Label 'FASTQ-sanger'\n", + "Entity 'http://edamontology.org/format_1932' - Label 'FASTQ-sanger'\n", + "Entity 'http://edamontology.org/format_1933' - Label 'FASTQ-solexa'\n", + "Entity 'http://edamontology.org/format_1933' - Label 'FASTQ-solexa'\n", + "Entity 'http://edamontology.org/format_1934' - Label 'fitch program'\n", + "Entity 'http://edamontology.org/format_1934' - Label 'fitch program'\n", + "Entity 'http://edamontology.org/format_1935' - Label 'GCG'\n", + "Entity 'http://edamontology.org/format_1935' - Label 'GCG'\n", + "Entity 'http://edamontology.org/format_1936' - Label 'GenBank format'\n", + "Entity 'http://edamontology.org/format_1936' - Label 'GenBank format'\n", + "Entity 'http://edamontology.org/format_1937' - Label 'genpept'\n", + "Entity 'http://edamontology.org/format_1937' - Label 'genpept'\n", + "Entity 'http://edamontology.org/format_1938' - Label 'GFF2-seq'\n", + "Entity 'http://edamontology.org/format_1938' - Label 'GFF2-seq'\n", + "Entity 'http://edamontology.org/format_1939' - Label 'GFF3-seq'\n", + "Entity 'http://edamontology.org/format_1939' - Label 'GFF3-seq'\n", + "Entity 'http://edamontology.org/format_1940' - Label 'giFASTA format'\n", + "Entity 'http://edamontology.org/format_1940' - Label 'giFASTA format'\n", + "Entity 'http://edamontology.org/format_1941' - Label 'hennig86'\n", + "Entity 'http://edamontology.org/format_1941' - Label 'hennig86'\n", + "Entity 'http://edamontology.org/format_1942' - Label 'ig'\n", + "Entity 'http://edamontology.org/format_1942' - Label 'ig'\n", + "Entity 'http://edamontology.org/format_1943' - Label 'igstrict'\n", + "Entity 'http://edamontology.org/format_1943' - Label 'igstrict'\n", + "Entity 'http://edamontology.org/format_1944' - Label 'jackknifer'\n", + "Entity 'http://edamontology.org/format_1944' - Label 'jackknifer'\n", + "Entity 'http://edamontology.org/format_1945' - Label 'mase format'\n", + "Entity 'http://edamontology.org/format_1945' - Label 'mase format'\n", + "Entity 'http://edamontology.org/format_1946' - Label 'mega-seq'\n", + "Entity 'http://edamontology.org/format_1946' - Label 'mega-seq'\n", + "Entity 'http://edamontology.org/format_1947' - Label 'GCG MSF'\n", + "Entity 'http://edamontology.org/format_1947' - Label 'GCG MSF'\n", + "Entity 'http://edamontology.org/format_1948' - Label 'nbrf/pir'\n", + "Entity 'http://edamontology.org/format_1948' - Label 'nbrf/pir'\n", + "Entity 'http://edamontology.org/format_1949' - Label 'nexus-seq'\n", + "Entity 'http://edamontology.org/format_1949' - Label 'nexus-seq'\n", + "Entity 'http://edamontology.org/format_1950' - Label 'pdbatom'\n", + "Entity 'http://edamontology.org/format_1950' - Label 'pdbatom'\n", + "Entity 'http://edamontology.org/format_1951' - Label 'pdbatomnuc'\n", + "Entity 'http://edamontology.org/format_1951' - Label 'pdbatomnuc'\n", + "Entity 'http://edamontology.org/format_1952' - Label 'pdbseqresnuc'\n", + "Entity 'http://edamontology.org/format_1952' - Label 'pdbseqresnuc'\n", + "Entity 'http://edamontology.org/format_1953' - Label 'pdbseqres'\n", + "Entity 'http://edamontology.org/format_1953' - Label 'pdbseqres'\n", + "Entity 'http://edamontology.org/format_1954' - Label 'Pearson format'\n", + "Entity 'http://edamontology.org/format_1954' - Label 'Pearson format'\n", + "Entity 'http://edamontology.org/format_1957' - Label 'raw'\n", + "Entity 'http://edamontology.org/format_1957' - Label 'raw'\n", + "Entity 'http://edamontology.org/format_1958' - Label 'refseqp'\n", + "Entity 'http://edamontology.org/format_1958' - Label 'refseqp'\n", + "Entity 'http://edamontology.org/format_1960' - Label 'Staden format'\n", + "Entity 'http://edamontology.org/format_1961' - Label 'Stockholm format'\n", + "Entity 'http://edamontology.org/format_1962' - Label 'strider format'\n", + "Entity 'http://edamontology.org/format_1962' - Label 'strider format'\n", + "Entity 'http://edamontology.org/format_1963' - Label 'UniProtKB format'\n", + "Entity 'http://edamontology.org/format_1963' - Label 'UniProtKB format'\n", + "Entity 'http://edamontology.org/format_1964' - Label 'plain text format (unformatted)'\n", + "Entity 'http://edamontology.org/format_1964' - Label 'plain text format (unformatted)'\n", + "Entity 'http://edamontology.org/format_1966' - Label 'ASN.1 sequence format'\n", + "Entity 'http://edamontology.org/format_1966' - Label 'ASN.1 sequence format'\n", + "Entity 'http://edamontology.org/format_1967' - Label 'DAS format'\n", + "Entity 'http://edamontology.org/format_1967' - Label 'DAS format'\n", + "Entity 'http://edamontology.org/format_1968' - Label 'dasdna'\n", + "Entity 'http://edamontology.org/format_1968' - Label 'dasdna'\n", + "Entity 'http://edamontology.org/format_1969' - Label 'debug-seq'\n", + "Entity 'http://edamontology.org/format_1969' - Label 'debug-seq'\n", + "Entity 'http://edamontology.org/format_1970' - Label 'jackknifernon'\n", + "Entity 'http://edamontology.org/format_1970' - Label 'jackknifernon'\n", + "Entity 'http://edamontology.org/format_1972' - Label 'NCBI format'\n", + "Entity 'http://edamontology.org/format_1972' - Label 'NCBI format'\n", + "Entity 'http://edamontology.org/format_1973' - Label 'nexusnon'\n", + "Entity 'http://edamontology.org/format_1973' - Label 'nexusnon'\n", + "Entity 'http://edamontology.org/format_1974' - Label 'GFF2'\n", + "Entity 'http://edamontology.org/format_1975' - Label 'GFF3'\n", + "Entity 'http://edamontology.org/format_1978' - Label 'DASGFF'\n", + "Entity 'http://edamontology.org/format_1978' - Label 'DASGFF'\n", + "Entity 'http://edamontology.org/format_1979' - Label 'debug-feat'\n", + "Entity 'http://edamontology.org/format_1979' - Label 'debug-feat'\n", + "Entity 'http://edamontology.org/format_1982' - Label 'ClustalW format'\n", + "Entity 'http://edamontology.org/format_1982' - Label 'ClustalW format'\n", + "Entity 'http://edamontology.org/format_1983' - Label 'debug'\n", + "Entity 'http://edamontology.org/format_1983' - Label 'debug'\n", + "Entity 'http://edamontology.org/format_1984' - Label 'FASTA-aln'\n", + "Entity 'http://edamontology.org/format_1984' - Label 'FASTA-aln'\n", + "Entity 'http://edamontology.org/format_1985' - Label 'markx0'\n", + "Entity 'http://edamontology.org/format_1985' - Label 'markx0'\n", + "Entity 'http://edamontology.org/format_1986' - Label 'markx1'\n", + "Entity 'http://edamontology.org/format_1986' - Label 'markx1'\n", + "Entity 'http://edamontology.org/format_1987' - Label 'markx10'\n", + "Entity 'http://edamontology.org/format_1987' - Label 'markx10'\n", + "Entity 'http://edamontology.org/format_1988' - Label 'markx2'\n", + "Entity 'http://edamontology.org/format_1988' - Label 'markx2'\n", + "Entity 'http://edamontology.org/format_1989' - Label 'markx3'\n", + "Entity 'http://edamontology.org/format_1989' - Label 'markx3'\n", + "Entity 'http://edamontology.org/format_1990' - Label 'match'\n", + "Entity 'http://edamontology.org/format_1990' - Label 'match'\n", + "Entity 'http://edamontology.org/format_1991' - Label 'mega'\n", + "Entity 'http://edamontology.org/format_1991' - Label 'mega'\n", + "Entity 'http://edamontology.org/format_1992' - Label 'meganon'\n", + "Entity 'http://edamontology.org/format_1992' - Label 'meganon'\n", + "Entity 'http://edamontology.org/format_1996' - Label 'pair'\n", + "Entity 'http://edamontology.org/format_1996' - Label 'pair'\n", + "Entity 'http://edamontology.org/format_1997' - Label 'PHYLIP format'\n", + "Entity 'http://edamontology.org/format_1998' - Label 'PHYLIP sequential'\n", + "Entity 'http://edamontology.org/format_1999' - Label 'scores format'\n", + "Entity 'http://edamontology.org/format_1999' - Label 'scores format'\n", + "Entity 'http://edamontology.org/format_2000' - Label 'selex'\n", + "Entity 'http://edamontology.org/format_2000' - Label 'selex'\n", + "Entity 'http://edamontology.org/format_2001' - Label 'EMBOSS simple format'\n", + "Entity 'http://edamontology.org/format_2001' - Label 'EMBOSS simple format'\n", + "Entity 'http://edamontology.org/format_2002' - Label 'srs format'\n", + "Entity 'http://edamontology.org/format_2002' - Label 'srs format'\n", + "Entity 'http://edamontology.org/format_2003' - Label 'srspair'\n", + "Entity 'http://edamontology.org/format_2003' - Label 'srspair'\n", + "Entity 'http://edamontology.org/format_2004' - Label 'T-Coffee format'\n", + "Entity 'http://edamontology.org/format_2004' - Label 'T-Coffee format'\n", + "Entity 'http://edamontology.org/format_2005' - Label 'TreeCon-seq'\n", + "Entity 'http://edamontology.org/format_2005' - Label 'TreeCon-seq'\n", + "Entity 'http://edamontology.org/format_2006' - Label 'Phylogenetic tree format'\n", + "Entity 'http://edamontology.org/format_2013' - Label 'Biological pathway or network format'\n", + "Entity 'http://edamontology.org/format_2014' - Label 'Sequence-profile alignment format'\n", + "Entity 'http://edamontology.org/format_2017' - Label 'Amino acid index format'\n", + "Entity 'http://edamontology.org/format_2020' - Label 'Article format'\n", + "Entity 'http://edamontology.org/format_2021' - Label 'Text mining report format'\n", + "Entity 'http://edamontology.org/format_2027' - Label 'Enzyme kinetics report format'\n", + "Entity 'http://edamontology.org/format_2030' - Label 'Chemical data format'\n", + "Entity 'http://edamontology.org/format_2031' - Label 'Gene annotation format'\n", + "Entity 'http://edamontology.org/format_2032' - Label 'Workflow format'\n", + "Entity 'http://edamontology.org/format_2032' - Label 'Workflow format'\n", + "Entity 'http://edamontology.org/format_2033' - Label 'Tertiary structure format'\n", + "Entity 'http://edamontology.org/format_2033' - Label 'Tertiary structure format'\n", + "Entity 'http://edamontology.org/format_2035' - Label 'Chemical formula format'\n", + "Entity 'http://edamontology.org/format_2036' - Label 'Phylogenetic character data format'\n", + "Entity 'http://edamontology.org/format_2037' - Label 'Phylogenetic continuous quantitative character format'\n", + "Entity 'http://edamontology.org/format_2038' - Label 'Phylogenetic discrete states format'\n", + "Entity 'http://edamontology.org/format_2039' - Label 'Phylogenetic tree report (cliques) format'\n", + "Entity 'http://edamontology.org/format_2040' - Label 'Phylogenetic tree report (invariants) format'\n", + "Entity 'http://edamontology.org/format_2049' - Label 'Phylogenetic tree report (tree distances) format'\n", + "Entity 'http://edamontology.org/format_2052' - Label 'Protein family report format'\n", + "Entity 'http://edamontology.org/format_2054' - Label 'Protein interaction format'\n", + "Entity 'http://edamontology.org/format_2055' - Label 'Sequence assembly format'\n", + "Entity 'http://edamontology.org/format_2056' - Label 'Microarray experiment data format'\n", + "Entity 'http://edamontology.org/format_2056' - Label 'Microarray experiment data format'\n", + "Entity 'http://edamontology.org/format_2057' - Label 'Sequence trace format'\n", + "Entity 'http://edamontology.org/format_2058' - Label 'Gene expression report format'\n", + "Entity 'http://edamontology.org/format_2060' - Label 'Map format'\n", + "Entity 'http://edamontology.org/format_2061' - Label 'Nucleic acid features (primers) format'\n", + "Entity 'http://edamontology.org/format_2061' - Label 'Nucleic acid features (primers) format'\n", + "Entity 'http://edamontology.org/format_2062' - Label 'Protein report format'\n", + "Entity 'http://edamontology.org/format_2064' - Label '3D-1D scoring matrix format'\n", + "Entity 'http://edamontology.org/format_2065' - Label 'Protein structure report (quality evaluation) format'\n", + "Entity 'http://edamontology.org/format_2066' - Label 'Database hits (sequence) format'\n", + "Entity 'http://edamontology.org/format_2067' - Label 'Sequence distance matrix format'\n", + "Entity 'http://edamontology.org/format_2068' - Label 'Sequence motif format'\n", + "Entity 'http://edamontology.org/format_2069' - Label 'Sequence profile format'\n", + "Entity 'http://edamontology.org/format_2072' - Label 'Hidden Markov model format'\n", + "Entity 'http://edamontology.org/format_2074' - Label 'Dirichlet distribution format'\n", + "Entity 'http://edamontology.org/format_2075' - Label 'HMM emission and transition counts format'\n", + "Entity 'http://edamontology.org/format_2076' - Label 'RNA secondary structure format'\n", + "Entity 'http://edamontology.org/format_2077' - Label 'Protein secondary structure format'\n", + "Entity 'http://edamontology.org/format_2077' - Label 'Protein secondary structure format'\n", + "Entity 'http://edamontology.org/format_2078' - Label 'Sequence range format'\n", + "Entity 'http://edamontology.org/format_2094' - Label 'pure'\n", + "Entity 'http://edamontology.org/format_2094' - Label 'pure'\n", + "Entity 'http://edamontology.org/format_2095' - Label 'unpure'\n", + "Entity 'http://edamontology.org/format_2095' - Label 'unpure'\n", + "Entity 'http://edamontology.org/format_2096' - Label 'unambiguous sequence'\n", + "Entity 'http://edamontology.org/format_2096' - Label 'unambiguous sequence'\n", + "Entity 'http://edamontology.org/format_2097' - Label 'ambiguous'\n", + "Entity 'http://edamontology.org/format_2097' - Label 'ambiguous'\n", + "Entity 'http://edamontology.org/format_2155' - Label 'Sequence features (repeats) format'\n", + "Entity 'http://edamontology.org/format_2155' - Label 'Sequence features (repeats) format'\n", + "Entity 'http://edamontology.org/format_2158' - Label 'Nucleic acid features (restriction sites) format'\n", + "Entity 'http://edamontology.org/format_2158' - Label 'Nucleic acid features (restriction sites) format'\n", + "Entity 'http://edamontology.org/format_2170' - Label 'Sequence cluster format'\n", + "Entity 'http://edamontology.org/format_2171' - Label 'Sequence cluster format (protein)'\n", + "Entity 'http://edamontology.org/format_2171' - Label 'Sequence cluster format (protein)'\n", + "Entity 'http://edamontology.org/format_2172' - Label 'Sequence cluster format (nucleic acid)'\n", + "Entity 'http://edamontology.org/format_2172' - Label 'Sequence cluster format (nucleic acid)'\n", + "Entity 'http://edamontology.org/format_2181' - Label 'EMBL-like (text)'\n", + "Entity 'http://edamontology.org/format_2181' - Label 'EMBL-like (text)'\n", + "Entity 'http://edamontology.org/format_2182' - Label 'FASTQ-like format (text)'\n", + "Entity 'http://edamontology.org/format_2182' - Label 'FASTQ-like format (text)'\n", + "Entity 'http://edamontology.org/format_2183' - Label 'EMBLXML'\n", + "Entity 'http://edamontology.org/format_2184' - Label 'cdsxml'\n", + "Entity 'http://edamontology.org/format_2185' - Label 'INSDSeq'\n", + "Entity 'http://edamontology.org/format_2186' - Label 'geneseq'\n", + "Entity 'http://edamontology.org/format_2186' - Label 'geneseq'\n", + "Entity 'http://edamontology.org/format_2187' - Label 'UniProt-like (text)'\n", + "Entity 'http://edamontology.org/format_2187' - Label 'UniProt-like (text)'\n", + "Entity 'http://edamontology.org/format_2194' - Label 'medline'\n", + "Entity 'http://edamontology.org/format_2194' - Label 'medline'\n", + "Entity 'http://edamontology.org/format_2195' - Label 'Ontology format'\n", + "Entity 'http://edamontology.org/format_2196' - Label 'OBO format'\n", + "Entity 'http://edamontology.org/format_2196' - Label 'OBO format'\n", + "Entity 'http://edamontology.org/format_2197' - Label 'OWL format'\n", + "Entity 'http://edamontology.org/format_2197' - Label 'OWL format'\n", + "Entity 'http://edamontology.org/format_2200' - Label 'FASTA-like (text)'\n", + "Entity 'http://edamontology.org/format_2200' - Label 'FASTA-like (text)'\n", + "Entity 'http://edamontology.org/format_2204' - Label 'EMBL format (XML)'\n", + "Entity 'http://edamontology.org/format_2204' - Label 'EMBL format (XML)'\n", + "Entity 'http://edamontology.org/format_2205' - Label 'GenBank-like format (text)'\n", + "Entity 'http://edamontology.org/format_2205' - Label 'GenBank-like format (text)'\n", + "Entity 'http://edamontology.org/format_2206' - Label 'Sequence feature table format (text)'\n", + "Entity 'http://edamontology.org/format_2206' - Label 'Sequence feature table format (text)'\n", + "Entity 'http://edamontology.org/format_2304' - Label 'STRING entry format (XML)'\n", + "Entity 'http://edamontology.org/format_2304' - Label 'STRING entry format (XML)'\n", + "Entity 'http://edamontology.org/format_2305' - Label 'GFF'\n", + "Entity 'http://edamontology.org/format_2305' - Label 'GFF'\n", + "Entity 'http://edamontology.org/format_2306' - Label 'GTF'\n", + "Entity 'http://edamontology.org/format_2310' - Label 'FASTA-HTML'\n", + "Entity 'http://edamontology.org/format_2310' - Label 'FASTA-HTML'\n", + "Entity 'http://edamontology.org/format_2311' - Label 'EMBL-HTML'\n", + "Entity 'http://edamontology.org/format_2311' - Label 'EMBL-HTML'\n", + "Entity 'http://edamontology.org/format_2330' - Label 'Textual format'\n", + "Entity 'http://edamontology.org/format_2330' - Label 'Textual format'\n", + "Entity 'http://edamontology.org/format_2331' - Label 'HTML'\n", + "Entity 'http://edamontology.org/format_2332' - Label 'XML'\n", + "Entity 'http://edamontology.org/format_2332' - Label 'XML'\n", + "Entity 'http://edamontology.org/format_2333' - Label 'Binary format'\n", + "Entity 'http://edamontology.org/format_2333' - Label 'Binary format'\n", + "Entity 'http://edamontology.org/format_2350' - Label 'Format (by type of data)'\n", + "Entity 'http://edamontology.org/format_2350' - Label 'Format (by type of data)'\n", + "Entity 'http://edamontology.org/format_2376' - Label 'RDF format'\n", + "Entity 'http://edamontology.org/format_2376' - Label 'RDF format'\n", + "Entity 'http://edamontology.org/format_2532' - Label 'GenBank-HTML'\n", + "Entity 'http://edamontology.org/format_2532' - Label 'GenBank-HTML'\n", + "Entity 'http://edamontology.org/format_2543' - Label 'EMBL-like format'\n", + "Entity 'http://edamontology.org/format_2543' - Label 'EMBL-like format'\n", + "Entity 'http://edamontology.org/format_2545' - Label 'FASTQ-like format'\n", + "Entity 'http://edamontology.org/format_2545' - Label 'FASTQ-like format'\n", + "Entity 'http://edamontology.org/format_2546' - Label 'FASTA-like'\n", + "Entity 'http://edamontology.org/format_2546' - Label 'FASTA-like'\n", + "Entity 'http://edamontology.org/format_2547' - Label 'uniprotkb-like format'\n", + "Entity 'http://edamontology.org/format_2547' - Label 'uniprotkb-like format'\n", + "Entity 'http://edamontology.org/format_2548' - Label 'Sequence feature table format'\n", + "Entity 'http://edamontology.org/format_2549' - Label 'OBO'\n", + "Entity 'http://edamontology.org/format_2549' - Label 'OBO'\n", + "Entity 'http://edamontology.org/format_2550' - Label 'OBO-XML'\n", + "Entity 'http://edamontology.org/format_2550' - Label 'OBO-XML'\n", + "Entity 'http://edamontology.org/format_2551' - Label 'Sequence record format (text)'\n", + "Entity 'http://edamontology.org/format_2551' - Label 'Sequence record format (text)'\n", + "Entity 'http://edamontology.org/format_2552' - Label 'Sequence record format (XML)'\n", + "Entity 'http://edamontology.org/format_2552' - Label 'Sequence record format (XML)'\n", + "Entity 'http://edamontology.org/format_2553' - Label 'Sequence feature table format (XML)'\n", + "Entity 'http://edamontology.org/format_2553' - Label 'Sequence feature table format (XML)'\n", + "Entity 'http://edamontology.org/format_2554' - Label 'Alignment format (text)'\n", + "Entity 'http://edamontology.org/format_2554' - Label 'Alignment format (text)'\n", + "Entity 'http://edamontology.org/format_2555' - Label 'Alignment format (XML)'\n", + "Entity 'http://edamontology.org/format_2555' - Label 'Alignment format (XML)'\n", + "Entity 'http://edamontology.org/format_2556' - Label 'Phylogenetic tree format (text)'\n", + "Entity 'http://edamontology.org/format_2556' - Label 'Phylogenetic tree format (text)'\n", + "Entity 'http://edamontology.org/format_2557' - Label 'Phylogenetic tree format (XML)'\n", + "Entity 'http://edamontology.org/format_2557' - Label 'Phylogenetic tree format (XML)'\n", + "Entity 'http://edamontology.org/format_2558' - Label 'EMBL-like (XML)'\n", + "Entity 'http://edamontology.org/format_2558' - Label 'EMBL-like (XML)'\n", + "Entity 'http://edamontology.org/format_2559' - Label 'GenBank-like format'\n", + "Entity 'http://edamontology.org/format_2559' - Label 'GenBank-like format'\n", + "Entity 'http://edamontology.org/format_2561' - Label 'Sequence assembly format (text)'\n", + "Entity 'http://edamontology.org/format_2561' - Label 'Sequence assembly format (text)'\n", + "Entity 'http://edamontology.org/format_2566' - Label 'completely unambiguous'\n", + "Entity 'http://edamontology.org/format_2566' - Label 'completely unambiguous'\n", + "Entity 'http://edamontology.org/format_2567' - Label 'completely unambiguous pure'\n", + "Entity 'http://edamontology.org/format_2567' - Label 'completely unambiguous pure'\n", + "Entity 'http://edamontology.org/format_2568' - Label 'completely unambiguous pure nucleotide'\n", + "Entity 'http://edamontology.org/format_2568' - Label 'completely unambiguous pure nucleotide'\n", + "Entity 'http://edamontology.org/format_2569' - Label 'completely unambiguous pure dna'\n", + "Entity 'http://edamontology.org/format_2569' - Label 'completely unambiguous pure dna'\n", + "Entity 'http://edamontology.org/format_2570' - Label 'completely unambiguous pure rna sequence'\n", + "Entity 'http://edamontology.org/format_2570' - Label 'completely unambiguous pure rna sequence'\n", + "Entity 'http://edamontology.org/format_2571' - Label 'Raw sequence format'\n", + "Entity 'http://edamontology.org/format_2572' - Label 'BAM'\n", + "Entity 'http://edamontology.org/format_2573' - Label 'SAM'\n", + "Entity 'http://edamontology.org/format_2585' - Label 'SBML'\n", + "Entity 'http://edamontology.org/format_2607' - Label 'completely unambiguous pure protein'\n", + "Entity 'http://edamontology.org/format_2607' - Label 'completely unambiguous pure protein'\n", + "Entity 'http://edamontology.org/format_2848' - Label 'Bibliographic reference format'\n", + "Entity 'http://edamontology.org/format_2919' - Label 'Sequence annotation track format'\n", + "Entity 'http://edamontology.org/format_2920' - Label 'Alignment format (pair only)'\n", + "Entity 'http://edamontology.org/format_2921' - Label 'Sequence variation annotation format'\n", + "Entity 'http://edamontology.org/format_2922' - Label 'markx0 variant'\n", + "Entity 'http://edamontology.org/format_2922' - Label 'markx0 variant'\n", + "Entity 'http://edamontology.org/format_2923' - Label 'mega variant'\n", + "Entity 'http://edamontology.org/format_2923' - Label 'mega variant'\n", + "Entity 'http://edamontology.org/format_2924' - Label 'Phylip format variant'\n", + "Entity 'http://edamontology.org/format_2924' - Label 'Phylip format variant'\n", + "Entity 'http://edamontology.org/format_3000' - Label 'AB1'\n", + "Entity 'http://edamontology.org/format_3000' - Label 'AB1'\n", + "Entity 'http://edamontology.org/format_3001' - Label 'ACE'\n", + "Entity 'http://edamontology.org/format_3003' - Label 'BED'\n", + "Entity 'http://edamontology.org/format_3004' - Label 'bigBed'\n", + "Entity 'http://edamontology.org/format_3005' - Label 'WIG'\n", + "Entity 'http://edamontology.org/format_3006' - Label 'bigWig'\n", + "Entity 'http://edamontology.org/format_3007' - Label 'PSL'\n", + "Entity 'http://edamontology.org/format_3008' - Label 'MAF'\n", + "Entity 'http://edamontology.org/format_3009' - Label '2bit'\n", + "Entity 'http://edamontology.org/format_3010' - Label '.nib'\n", + "Entity 'http://edamontology.org/format_3011' - Label 'genePred'\n", + "Entity 'http://edamontology.org/format_3012' - Label 'pgSnp'\n", + "Entity 'http://edamontology.org/format_3013' - Label 'axt'\n", + "Entity 'http://edamontology.org/format_3014' - Label 'LAV'\n", + "Entity 'http://edamontology.org/format_3015' - Label 'Pileup'\n", + "Entity 'http://edamontology.org/format_3016' - Label 'VCF'\n", + "Entity 'http://edamontology.org/format_3017' - Label 'SRF'\n", + "Entity 'http://edamontology.org/format_3018' - Label 'ZTR'\n", + "Entity 'http://edamontology.org/format_3019' - Label 'GVF'\n", + "Entity 'http://edamontology.org/format_3020' - Label 'BCF'\n", + "Entity 'http://edamontology.org/format_3033' - Label 'Matrix format'\n", + "Entity 'http://edamontology.org/format_3097' - Label 'Protein domain classification format'\n", + "Entity 'http://edamontology.org/format_3098' - Label 'Raw SCOP domain classification format'\n", + "Entity 'http://edamontology.org/format_3098' - Label 'Raw SCOP domain classification format'\n", + "Entity 'http://edamontology.org/format_3099' - Label 'Raw CATH domain classification format'\n", + "Entity 'http://edamontology.org/format_3099' - Label 'Raw CATH domain classification format'\n", + "Entity 'http://edamontology.org/format_3100' - Label 'CATH domain report format'\n", + "Entity 'http://edamontology.org/format_3100' - Label 'CATH domain report format'\n", + "Entity 'http://edamontology.org/format_3155' - Label 'SBRML'\n", + "Entity 'http://edamontology.org/format_3156' - Label 'BioPAX'\n", + "Entity 'http://edamontology.org/format_3157' - Label 'EBI Application Result XML'\n", + "Entity 'http://edamontology.org/format_3158' - Label 'PSI MI XML (MIF)'\n", + "Entity 'http://edamontology.org/format_3159' - Label 'phyloXML'\n", + "Entity 'http://edamontology.org/format_3160' - Label 'NeXML'\n", + "Entity 'http://edamontology.org/format_3163' - Label 'GCDML'\n", + "Entity 'http://edamontology.org/format_3164' - Label 'GTrack'\n", + "Entity 'http://edamontology.org/format_3166' - Label 'Biological pathway or network report format'\n", + "Entity 'http://edamontology.org/format_3167' - Label 'Experiment annotation format'\n", + "Entity 'http://edamontology.org/format_3239' - Label 'CopasiML'\n", + "Entity 'http://edamontology.org/format_3240' - Label 'CellML'\n", + "Entity 'http://edamontology.org/format_3242' - Label 'PSI MI TAB (MITAB)'\n", + "Entity 'http://edamontology.org/format_3243' - Label 'PSI-PAR'\n", + "Entity 'http://edamontology.org/format_3244' - Label 'mzML'\n", + "Entity 'http://edamontology.org/format_3245' - Label 'Mass spectrometry data format'\n", + "Entity 'http://edamontology.org/format_3246' - Label 'TraML'\n", + "Entity 'http://edamontology.org/format_3247' - Label 'mzIdentML'\n", + "Entity 'http://edamontology.org/format_3248' - Label 'mzQuantML'\n", + "Entity 'http://edamontology.org/format_3249' - Label 'GelML'\n", + "Entity 'http://edamontology.org/format_3250' - Label 'spML'\n", + "Entity 'http://edamontology.org/format_3252' - Label 'OWL Functional Syntax'\n", + "Entity 'http://edamontology.org/format_3252' - Label 'OWL Functional Syntax'\n", + "Entity 'http://edamontology.org/format_3253' - Label 'Manchester OWL Syntax'\n", + "Entity 'http://edamontology.org/format_3253' - Label 'Manchester OWL Syntax'\n", + "Entity 'http://edamontology.org/format_3254' - Label 'KRSS2 Syntax'\n", + "Entity 'http://edamontology.org/format_3254' - Label 'KRSS2 Syntax'\n", + "Entity 'http://edamontology.org/format_3255' - Label 'Turtle'\n", + "Entity 'http://edamontology.org/format_3255' - Label 'Turtle'\n", + "Entity 'http://edamontology.org/format_3256' - Label 'N-Triples'\n", + "Entity 'http://edamontology.org/format_3256' - Label 'N-Triples'\n", + "Entity 'http://edamontology.org/format_3257' - Label 'Notation3'\n", + "Entity 'http://edamontology.org/format_3257' - Label 'Notation3'\n", + "Entity 'http://edamontology.org/format_3261' - Label 'RDF/XML'\n", + "Entity 'http://edamontology.org/format_3261' - Label 'RDF/XML'\n", + "Entity 'http://edamontology.org/format_3262' - Label 'OWL/XML'\n", + "Entity 'http://edamontology.org/format_3262' - Label 'OWL/XML'\n", + "Entity 'http://edamontology.org/format_3281' - Label 'A2M'\n", + "Entity 'http://edamontology.org/format_3284' - Label 'SFF'\n", + "Entity 'http://edamontology.org/format_3285' - Label 'MAP'\n", + "Entity 'http://edamontology.org/format_3286' - Label 'PED'\n", + "Entity 'http://edamontology.org/format_3287' - Label 'Individual genetic data format'\n", + "Entity 'http://edamontology.org/format_3287' - Label 'Individual genetic data format'\n", + "Entity 'http://edamontology.org/format_3288' - Label 'PED/MAP'\n", + "Entity 'http://edamontology.org/format_3309' - Label 'CT'\n", + "Entity 'http://edamontology.org/format_3310' - Label 'SS'\n", + "Entity 'http://edamontology.org/format_3311' - Label 'RNAML'\n", + "Entity 'http://edamontology.org/format_3312' - Label 'GDE'\n", + "Entity 'http://edamontology.org/format_3313' - Label 'BLC'\n", + "Entity 'http://edamontology.org/format_3326' - Label 'Data index format'\n", + "Entity 'http://edamontology.org/format_3328' - Label 'HMMER2'\n", + "Entity 'http://edamontology.org/format_3329' - Label 'HMMER3'\n", + "Entity 'http://edamontology.org/format_3330' - Label 'PO'\n", + "Entity 'http://edamontology.org/format_3331' - Label 'BLAST XML results format'\n", + "Entity 'http://edamontology.org/format_3331' - Label 'BLAST XML results format'\n", + "Entity 'http://edamontology.org/format_3462' - Label 'CRAM'\n", + "Entity 'http://edamontology.org/format_3464' - Label 'JSON'\n", + "Entity 'http://edamontology.org/format_3464' - Label 'JSON'\n", + "Entity 'http://edamontology.org/format_3466' - Label 'EPS'\n", + "Entity 'http://edamontology.org/format_3466' - Label 'EPS'\n", + "Entity 'http://edamontology.org/format_3467' - Label 'GIF'\n", + "Entity 'http://edamontology.org/format_3467' - Label 'GIF'\n", + "Entity 'http://edamontology.org/format_3468' - Label 'xls'\n", + "Entity 'http://edamontology.org/format_3468' - Label 'xls'\n", + "Entity 'http://edamontology.org/format_3475' - Label 'TSV'\n", + "Entity 'http://edamontology.org/format_3475' - Label 'TSV'\n", + "Entity 'http://edamontology.org/format_3477' - Label 'Cytoscape input file format'\n", + "Entity 'http://edamontology.org/format_3477' - Label 'Cytoscape input file format'\n", + "Entity 'http://edamontology.org/format_3485' - Label 'RSF'\n", + "Entity 'http://edamontology.org/format_3486' - Label 'GCG format variant'\n", + "Entity 'http://edamontology.org/format_3486' - Label 'GCG format variant'\n", + "Entity 'http://edamontology.org/format_3487' - Label 'BSML'\n", + "Entity 'http://edamontology.org/format_3499' - Label 'Ensembl variation file format'\n", + "Entity 'http://edamontology.org/format_3499' - Label 'Ensembl variation file format'\n", + "Entity 'http://edamontology.org/format_3506' - Label 'docx'\n", + "Entity 'http://edamontology.org/format_3506' - Label 'docx'\n", + "Entity 'http://edamontology.org/format_3507' - Label 'Document format'\n", + "Entity 'http://edamontology.org/format_3507' - Label 'Document format'\n", + "Entity 'http://edamontology.org/format_3508' - Label 'PDF'\n", + "Entity 'http://edamontology.org/format_3508' - Label 'PDF'\n", + "Entity 'http://edamontology.org/format_3547' - Label 'Image format'\n", + "Entity 'http://edamontology.org/format_3548' - Label 'DICOM format'\n", + "Entity 'http://edamontology.org/format_3549' - Label 'nii'\n", + "Entity 'http://edamontology.org/format_3550' - Label 'mhd'\n", + "Entity 'http://edamontology.org/format_3551' - Label 'nrrd'\n", + "Entity 'http://edamontology.org/format_3554' - Label 'R file format'\n", + "Entity 'http://edamontology.org/format_3554' - Label 'R file format'\n", + "Entity 'http://edamontology.org/format_3555' - Label 'SPSS'\n", + "Entity 'http://edamontology.org/format_3555' - Label 'SPSS'\n", + "Entity 'http://edamontology.org/format_3556' - Label 'MHTML'\n", + "Entity 'http://edamontology.org/format_3578' - Label 'IDAT'\n", + "Entity 'http://edamontology.org/format_3579' - Label 'JPG'\n", + "Entity 'http://edamontology.org/format_3580' - Label 'rcc'\n", + "Entity 'http://edamontology.org/format_3580' - Label 'rcc'\n", + "Entity 'http://edamontology.org/format_3581' - Label 'arff'\n", + "Entity 'http://edamontology.org/format_3582' - Label 'afg'\n", + "Entity 'http://edamontology.org/format_3583' - Label 'bedgraph'\n", + "Entity 'http://edamontology.org/format_3584' - Label 'bedstrict'\n", + "Entity 'http://edamontology.org/format_3585' - Label 'bed6'\n", + "Entity 'http://edamontology.org/format_3586' - Label 'bed12'\n", + "Entity 'http://edamontology.org/format_3587' - Label 'chrominfo'\n", + "Entity 'http://edamontology.org/format_3588' - Label 'customtrack'\n", + "Entity 'http://edamontology.org/format_3589' - Label 'csfasta'\n", + "Entity 'http://edamontology.org/format_3590' - Label 'HDF5'\n", + "Entity 'http://edamontology.org/format_3591' - Label 'TIFF'\n", + "Entity 'http://edamontology.org/format_3592' - Label 'BMP'\n", + "Entity 'http://edamontology.org/format_3593' - Label 'im'\n", + "Entity 'http://edamontology.org/format_3594' - Label 'pcd'\n", + "Entity 'http://edamontology.org/format_3595' - Label 'pcx'\n", + "Entity 'http://edamontology.org/format_3596' - Label 'ppm'\n", + "Entity 'http://edamontology.org/format_3597' - Label 'psd'\n", + "Entity 'http://edamontology.org/format_3598' - Label 'xbm'\n", + "Entity 'http://edamontology.org/format_3599' - Label 'xpm'\n", + "Entity 'http://edamontology.org/format_3600' - Label 'rgb'\n", + "Entity 'http://edamontology.org/format_3601' - Label 'pbm'\n", + "Entity 'http://edamontology.org/format_3602' - Label 'pgm'\n", + "Entity 'http://edamontology.org/format_3603' - Label 'PNG'\n", + "Entity 'http://edamontology.org/format_3604' - Label 'SVG'\n", + "Entity 'http://edamontology.org/format_3605' - Label 'rast'\n", + "Entity 'http://edamontology.org/format_3606' - Label 'Sequence quality report format (text)'\n", + "Entity 'http://edamontology.org/format_3607' - Label 'qual'\n", + "Entity 'http://edamontology.org/format_3608' - Label 'qualsolexa'\n", + "Entity 'http://edamontology.org/format_3608' - Label 'qualsolexa'\n", + "Entity 'http://edamontology.org/format_3609' - Label 'qualillumina'\n", + "Entity 'http://edamontology.org/format_3610' - Label 'qualsolid'\n", + "Entity 'http://edamontology.org/format_3611' - Label 'qual454'\n", + "Entity 'http://edamontology.org/format_3612' - Label 'ENCODE peak format'\n", + "Entity 'http://edamontology.org/format_3613' - Label 'ENCODE narrow peak format'\n", + "Entity 'http://edamontology.org/format_3614' - Label 'ENCODE broad peak format'\n", + "Entity 'http://edamontology.org/format_3615' - Label 'bgzip'\n", + "Entity 'http://edamontology.org/format_3616' - Label 'tabix'\n", + "Entity 'http://edamontology.org/format_3617' - Label 'Graph format'\n", + "Entity 'http://edamontology.org/format_3617' - Label 'Graph format'\n", + "Entity 'http://edamontology.org/format_3618' - Label 'xgmml'\n", + "Entity 'http://edamontology.org/format_3619' - Label 'sif'\n", + "Entity 'http://edamontology.org/format_3620' - Label 'xlsx'\n", + "Entity 'http://edamontology.org/format_3620' - Label 'xlsx'\n", + "Entity 'http://edamontology.org/format_3621' - Label 'SQLite format'\n", + "Entity 'http://edamontology.org/format_3622' - Label 'Gemini SQLite format'\n", + "Entity 'http://edamontology.org/format_3624' - Label 'snpeffdb'\n", + "Entity 'http://edamontology.org/format_3624' - Label 'snpeffdb'\n", + "Entity 'http://edamontology.org/format_3650' - Label 'netCDF'\n", + "Entity 'http://edamontology.org/format_3651' - Label 'MGF'\n", + "Entity 'http://edamontology.org/format_3651' - Label 'MGF'\n", + "Entity 'http://edamontology.org/format_3652' - Label 'dta'\n", + "Entity 'http://edamontology.org/format_3652' - Label 'dta'\n", + "Entity 'http://edamontology.org/format_3653' - Label 'pkl'\n", + "Entity 'http://edamontology.org/format_3653' - Label 'pkl'\n", + "Entity 'http://edamontology.org/format_3654' - Label 'mzXML'\n", + "Entity 'http://edamontology.org/format_3655' - Label 'pepXML'\n", + "Entity 'http://edamontology.org/format_3657' - Label 'GPML'\n", + "Entity 'http://edamontology.org/format_3665' - Label 'K-mer countgraph'\n", + "Entity 'http://edamontology.org/format_3681' - Label 'mzTab'\n", + "Entity 'http://edamontology.org/format_3682' - Label 'imzML metadata file'\n", + "Entity 'http://edamontology.org/format_3683' - Label 'qcML'\n", + "Entity 'http://edamontology.org/format_3684' - Label 'PRIDE XML'\n", + "Entity 'http://edamontology.org/format_3685' - Label 'SED-ML'\n", + "Entity 'http://edamontology.org/format_3686' - Label 'COMBINE OMEX'\n", + "Entity 'http://edamontology.org/format_3687' - Label 'ISA-TAB'\n", + "Entity 'http://edamontology.org/format_3688' - Label 'SBtab'\n", + "Entity 'http://edamontology.org/format_3689' - Label 'BCML'\n", + "Entity 'http://edamontology.org/format_3690' - Label 'BDML'\n", + "Entity 'http://edamontology.org/format_3691' - Label 'BEL'\n", + "Entity 'http://edamontology.org/format_3692' - Label 'SBGN-ML'\n", + "Entity 'http://edamontology.org/format_3693' - Label 'AGP'\n", + "Entity 'http://edamontology.org/format_3696' - Label 'PS'\n", + "Entity 'http://edamontology.org/format_3696' - Label 'PS'\n", + "Entity 'http://edamontology.org/format_3698' - Label 'SRA format'\n", + "Entity 'http://edamontology.org/format_3699' - Label 'VDB'\n", + "Entity 'http://edamontology.org/format_3701' - Label 'Sequin format'\n", + "Entity 'http://edamontology.org/format_3701' - Label 'Sequin format'\n", + "Entity 'http://edamontology.org/format_3702' - Label 'MSF'\n", + "Entity 'http://edamontology.org/format_3702' - Label 'MSF'\n", + "Entity 'http://edamontology.org/format_3706' - Label 'Biodiversity data format'\n", + "Entity 'http://edamontology.org/format_3709' - Label 'GCT/Res format'\n", + "Entity 'http://edamontology.org/format_3709' - Label 'GCT/Res format'\n", + "Entity 'http://edamontology.org/format_3710' - Label 'WIFF format'\n", + "Entity 'http://edamontology.org/format_3710' - Label 'WIFF format'\n", + "Entity 'http://edamontology.org/format_3711' - Label 'X!Tandem XML'\n", + "Entity 'http://edamontology.org/format_3712' - Label 'Thermo RAW'\n", + "Entity 'http://edamontology.org/format_3712' - Label 'Thermo RAW'\n", + "Entity 'http://edamontology.org/format_3713' - Label 'Mascot .dat file'\n", + "Entity 'http://edamontology.org/format_3714' - Label 'MaxQuant APL peaklist format'\n", + "Entity 'http://edamontology.org/format_3725' - Label 'SBOL'\n", + "Entity 'http://edamontology.org/format_3726' - Label 'PMML'\n", + "Entity 'http://edamontology.org/format_3727' - Label 'OME-TIFF'\n", + "Entity 'http://edamontology.org/format_3728' - Label 'LocARNA PP'\n", + "Entity 'http://edamontology.org/format_3729' - Label 'dbGaP format'\n", + "Entity 'http://edamontology.org/format_3746' - Label 'BIOM format'\n", + "Entity 'http://edamontology.org/format_3747' - Label 'protXML'\n", + "Entity 'http://edamontology.org/format_3748' - Label 'Linked data format'\n", + "Entity 'http://edamontology.org/format_3748' - Label 'Linked data format'\n", + "Entity 'http://edamontology.org/format_3749' - Label 'JSON-LD'\n", + "Entity 'http://edamontology.org/format_3750' - Label 'YAML'\n", + "Entity 'http://edamontology.org/format_3751' - Label 'DSV'\n", + "Entity 'http://edamontology.org/format_3751' - Label 'DSV'\n", + "Entity 'http://edamontology.org/format_3752' - Label 'CSV'\n", + "Entity 'http://edamontology.org/format_3752' - Label 'CSV'\n", + "Entity 'http://edamontology.org/format_3758' - Label 'SEQUEST .out file'\n", + "Entity 'http://edamontology.org/format_3758' - Label 'SEQUEST .out file'\n", + "Entity 'http://edamontology.org/format_3764' - Label 'idXML'\n", + "Entity 'http://edamontology.org/format_3765' - Label 'KNIME datatable format'\n", + "Entity 'http://edamontology.org/format_3765' - Label 'KNIME datatable format'\n", + "Entity 'http://edamontology.org/format_3770' - Label 'UniProtKB XML'\n", + "Entity 'http://edamontology.org/format_3771' - Label 'UniProtKB RDF'\n", + "Entity 'http://edamontology.org/format_3775' - Label 'GSuite'\n", + "Entity 'http://edamontology.org/format_3776' - Label 'BTrack'\n", + "Entity 'http://edamontology.org/format_3776' - Label 'BTrack'\n", + "Entity 'http://edamontology.org/format_3780' - Label 'Annotated text format'\n", + "Entity 'http://edamontology.org/format_3781' - Label 'PubAnnotation format'\n", + "Entity 'http://edamontology.org/format_3782' - Label 'BioC'\n", + "Entity 'http://edamontology.org/format_3783' - Label 'PubTator format'\n", + "Entity 'http://edamontology.org/format_3784' - Label 'Open Annotation format'\n", + "Entity 'http://edamontology.org/format_3785' - Label 'BioNLP Shared Task format'\n", + "Entity 'http://edamontology.org/format_3787' - Label 'Query language'\n", + "Entity 'http://edamontology.org/format_3788' - Label 'SQL'\n", + "Entity 'http://edamontology.org/format_3788' - Label 'SQL'\n", + "Entity 'http://edamontology.org/format_3789' - Label 'XQuery'\n", + "Entity 'http://edamontology.org/format_3790' - Label 'SPARQL'\n", + "Entity 'http://edamontology.org/format_3804' - Label 'xsd'\n", + "Entity 'http://edamontology.org/format_3804' - Label 'xsd'\n", + "Entity 'http://edamontology.org/format_3811' - Label 'XMFA'\n", + "Entity 'http://edamontology.org/format_3812' - Label 'GEN'\n", + "Entity 'http://edamontology.org/format_3813' - Label 'SAMPLE file format'\n", + "Entity 'http://edamontology.org/format_3814' - Label 'SDF'\n", + "Entity 'http://edamontology.org/format_3815' - Label 'Molfile'\n", + "Entity 'http://edamontology.org/format_3816' - Label 'Mol2'\n", + "Entity 'http://edamontology.org/format_3817' - Label 'latex'\n", + "Entity 'http://edamontology.org/format_3818' - Label 'ELAND format'\n", + "Entity 'http://edamontology.org/format_3819' - Label 'Relaxed PHYLIP Interleaved'\n", + "Entity 'http://edamontology.org/format_3820' - Label 'Relaxed PHYLIP Sequential'\n", + "Entity 'http://edamontology.org/format_3821' - Label 'VisML'\n", + "Entity 'http://edamontology.org/format_3822' - Label 'GML'\n", + "Entity 'http://edamontology.org/format_3823' - Label 'FASTG'\n", + "Entity 'http://edamontology.org/format_3824' - Label 'NMR data format'\n", + "Entity 'http://edamontology.org/format_3825' - Label 'nmrML'\n", + "Entity 'http://edamontology.org/format_3826' - Label 'proBAM'\n", + "Entity 'http://edamontology.org/format_3827' - Label 'proBED'\n", + "Entity 'http://edamontology.org/format_3828' - Label 'Raw microarray data format'\n", + "Entity 'http://edamontology.org/format_3829' - Label 'GPR'\n", + "Entity 'http://edamontology.org/format_3830' - Label 'ARB'\n", + "Entity 'http://edamontology.org/format_3830' - Label 'ARB'\n", + "Entity 'http://edamontology.org/format_3832' - Label 'consensusXML'\n", + "Entity 'http://edamontology.org/format_3833' - Label 'featureXML'\n", + "Entity 'http://edamontology.org/format_3834' - Label 'mzData'\n", + "Entity 'http://edamontology.org/format_3835' - Label 'TIDE TXT'\n", + "Entity 'http://edamontology.org/format_3836' - Label 'BLAST XML v2 results format'\n", + "Entity 'http://edamontology.org/format_3838' - Label 'pptx'\n", + "Entity 'http://edamontology.org/format_3839' - Label 'ibd'\n", + "Entity 'http://edamontology.org/format_3841' - Label 'NLP format'\n", + "Entity 'http://edamontology.org/format_3841' - Label 'NLP format'\n", + "Entity 'http://edamontology.org/format_3843' - Label 'BEAST'\n", + "Entity 'http://edamontology.org/format_3844' - Label 'Chado-XML'\n", + "Entity 'http://edamontology.org/format_3845' - Label 'HSAML'\n", + "Entity 'http://edamontology.org/format_3846' - Label 'InterProScan XML'\n", + "Entity 'http://edamontology.org/format_3847' - Label 'KGML'\n", + "Entity 'http://edamontology.org/format_3847' - Label 'KGML'\n", + "Entity 'http://edamontology.org/format_3848' - Label 'PubMed XML'\n", + "Entity 'http://edamontology.org/format_3848' - Label 'PubMed XML'\n", + "Entity 'http://edamontology.org/format_3849' - Label 'MSAML'\n", + "Entity 'http://edamontology.org/format_3850' - Label 'OrthoXML'\n", + "Entity 'http://edamontology.org/format_3851' - Label 'PSDML'\n", + "Entity 'http://edamontology.org/format_3852' - Label 'SeqXML'\n", + "Entity 'http://edamontology.org/format_3853' - Label 'UniParc XML'\n", + "Entity 'http://edamontology.org/format_3854' - Label 'UniRef XML'\n", + "Entity 'http://edamontology.org/format_3857' - Label 'CWL'\n", + "Entity 'http://edamontology.org/format_3858' - Label 'Waters RAW'\n", + "Entity 'http://edamontology.org/format_3858' - Label 'Waters RAW'\n", + "Entity 'http://edamontology.org/format_3859' - Label 'JCAMP-DX'\n", + "Entity 'http://edamontology.org/format_3862' - Label 'NLP annotation format'\n", + "Entity 'http://edamontology.org/format_3862' - Label 'NLP annotation format'\n", + "Entity 'http://edamontology.org/format_3863' - Label 'NLP corpus format'\n", + "Entity 'http://edamontology.org/format_3863' - Label 'NLP corpus format'\n", + "Entity 'http://edamontology.org/format_3864' - Label 'mirGFF3'\n", + "Entity 'http://edamontology.org/format_3865' - Label 'RNA annotation format'\n", + "Entity 'http://edamontology.org/format_3865' - Label 'RNA annotation format'\n", + "Entity 'http://edamontology.org/format_3866' - Label 'Trajectory format'\n", + "Entity 'http://edamontology.org/format_3867' - Label 'Trajectory format (binary)'\n", + "Entity 'http://edamontology.org/format_3867' - Label 'Trajectory format (binary)'\n", + "Entity 'http://edamontology.org/format_3868' - Label 'Trajectory format (text)'\n", + "Entity 'http://edamontology.org/format_3868' - Label 'Trajectory format (text)'\n", + "Entity 'http://edamontology.org/format_3873' - Label 'HDF'\n", + "Entity 'http://edamontology.org/format_3873' - Label 'HDF'\n", + "Entity 'http://edamontology.org/format_3874' - Label 'PCAzip'\n", + "Entity 'http://edamontology.org/format_3874' - Label 'PCAzip'\n", + "Entity 'http://edamontology.org/format_3875' - Label 'XTC'\n", + "Entity 'http://edamontology.org/format_3875' - Label 'XTC'\n", + "Entity 'http://edamontology.org/format_3876' - Label 'TNG'\n", + "Entity 'http://edamontology.org/format_3876' - Label 'TNG'\n", + "Entity 'http://edamontology.org/format_3877' - Label 'XYZ'\n", + "Entity 'http://edamontology.org/format_3877' - Label 'XYZ'\n", + "Entity 'http://edamontology.org/format_3878' - Label 'mdcrd'\n", + "Entity 'http://edamontology.org/format_3879' - Label 'Topology format'\n", + "Entity 'http://edamontology.org/format_3880' - Label 'GROMACS top'\n", + "Entity 'http://edamontology.org/format_3881' - Label 'AMBER top'\n", + "Entity 'http://edamontology.org/format_3882' - Label 'PSF'\n", + "Entity 'http://edamontology.org/format_3883' - Label 'GROMACS itp'\n", + "Entity 'http://edamontology.org/format_3884' - Label 'FF parameter format'\n", + "Entity 'http://edamontology.org/format_3885' - Label 'BinPos'\n", + "Entity 'http://edamontology.org/format_3885' - Label 'BinPos'\n", + "Entity 'http://edamontology.org/format_3886' - Label 'RST'\n", + "Entity 'http://edamontology.org/format_3887' - Label 'CHARMM rtf'\n", + "Entity 'http://edamontology.org/format_3887' - Label 'CHARMM rtf'\n", + "Entity 'http://edamontology.org/format_3888' - Label 'AMBER frcmod'\n", + "Entity 'http://edamontology.org/format_3889' - Label 'AMBER off'\n", + "Entity 'http://edamontology.org/format_3906' - Label 'NMReDATA'\n", + "Entity 'http://edamontology.org/format_3906' - Label 'NMReDATA'\n", + "Entity 'http://edamontology.org/format_3910' - Label 'trr'\n", + "Entity 'http://edamontology.org/format_3951' - Label 'BcForms'\n", + "Entity 'http://edamontology.org/format_3956' - Label 'N-Quads'\n", + "Entity 'http://edamontology.org/format_3969' - Label 'Vega'\n", + "Entity 'http://edamontology.org/format_3970' - Label 'Vega-lite'\n", + "Entity 'http://edamontology.org/format_3973' - Label 'Docker image'\n", + "Entity 'http://edamontology.org/format_3975' - Label 'GFA 1'\n", + "Entity 'http://edamontology.org/format_3976' - Label 'GFA 2'\n", + "Entity 'http://edamontology.org/format_3977' - Label 'ObjTables'\n", + "Entity 'http://edamontology.org/format_3978' - Label 'CONTIG'\n", + "Entity 'http://edamontology.org/format_3978' - Label 'CONTIG'\n", + "Entity 'http://edamontology.org/format_3979' - Label 'WEGO'\n", + "Entity 'http://edamontology.org/format_3979' - Label 'WEGO'\n", + "Entity 'http://edamontology.org/format_3980' - Label 'RPKM'\n", + "Entity 'http://edamontology.org/format_3980' - Label 'RPKM'\n", + "Entity 'http://edamontology.org/format_3981' - Label 'TAR format'\n", + "Entity 'http://edamontology.org/format_3981' - Label 'TAR format'\n", + "Entity 'http://edamontology.org/format_3982' - Label 'CHAIN'\n", + "Entity 'http://edamontology.org/format_3982' - Label 'CHAIN'\n", + "Entity 'http://edamontology.org/format_3983' - Label 'NET'\n", + "Entity 'http://edamontology.org/format_3983' - Label 'NET'\n", + "Entity 'http://edamontology.org/format_3984' - Label 'QMAP'\n", + "Entity 'http://edamontology.org/format_3984' - Label 'QMAP'\n", + "Entity 'http://edamontology.org/format_3985' - Label 'gxformat2'\n", + "Entity 'http://edamontology.org/format_3985' - Label 'gxformat2'\n", + "Entity 'http://edamontology.org/format_3986' - Label 'WMV'\n", + "Entity 'http://edamontology.org/format_3986' - Label 'WMV'\n", + "Entity 'http://edamontology.org/format_3987' - Label 'ZIP format'\n", + "Entity 'http://edamontology.org/format_3987' - Label 'ZIP format'\n", + "Entity 'http://edamontology.org/format_3988' - Label 'LSM'\n", + "Entity 'http://edamontology.org/format_3988' - Label 'LSM'\n", + "Entity 'http://edamontology.org/format_3989' - Label 'GZIP format'\n", + "Entity 'http://edamontology.org/format_3989' - Label 'GZIP format'\n", + "Entity 'http://edamontology.org/format_3990' - Label 'AVI'\n", + "Entity 'http://edamontology.org/format_3990' - Label 'AVI'\n", + "Entity 'http://edamontology.org/format_3991' - Label 'TrackDB'\n", + "Entity 'http://edamontology.org/format_3991' - Label 'TrackDB'\n", + "Entity 'http://edamontology.org/format_3992' - Label 'CIGAR format'\n", + "Entity 'http://edamontology.org/format_3992' - Label 'CIGAR format'\n", + "Entity 'http://edamontology.org/format_3993' - Label 'Stereolithography format'\n", + "Entity 'http://edamontology.org/format_3993' - Label 'Stereolithography format'\n", + "Entity 'http://edamontology.org/format_3994' - Label 'U3D'\n", + "Entity 'http://edamontology.org/format_3994' - Label 'U3D'\n", + "Entity 'http://edamontology.org/format_3995' - Label 'Texture file format'\n", + "Entity 'http://edamontology.org/format_3995' - Label 'Texture file format'\n", + "Entity 'http://edamontology.org/format_3996' - Label 'Python script'\n", + "Entity 'http://edamontology.org/format_3996' - Label 'Python script'\n", + "Entity 'http://edamontology.org/format_3997' - Label 'MPEG-4'\n", + "Entity 'http://edamontology.org/format_3997' - Label 'MPEG-4'\n", + "Entity 'http://edamontology.org/format_3998' - Label 'Perl script'\n", + "Entity 'http://edamontology.org/format_3998' - Label 'Perl script'\n", + "Entity 'http://edamontology.org/format_3999' - Label 'R script'\n", + "Entity 'http://edamontology.org/format_3999' - Label 'R script'\n", + "Entity 'http://edamontology.org/format_4000' - Label 'R markdown'\n", + "Entity 'http://edamontology.org/format_4000' - Label 'R markdown'\n", + "Entity 'http://edamontology.org/format_4002' - Label 'pickle'\n", + "Entity 'http://edamontology.org/format_4002' - Label 'pickle'\n", + "Entity 'http://edamontology.org/format_4003' - Label 'NumPy format'\n", + "Entity 'http://edamontology.org/format_4003' - Label 'NumPy format'\n", + "Entity 'http://edamontology.org/format_4004' - Label 'SimTools repertoire file format'\n", + "Entity 'http://edamontology.org/format_4004' - Label 'SimTools repertoire file format'\n", + "Entity 'http://edamontology.org/format_4005' - Label 'Configuration file format'\n", + "Entity 'http://edamontology.org/format_4005' - Label 'Configuration file format'\n", + "Entity 'http://edamontology.org/format_4006' - Label 'Zstandard format'\n", + "Entity 'http://edamontology.org/format_4006' - Label 'Zstandard format'\n", + "Entity 'http://edamontology.org/format_4007' - Label 'MATLAB script'\n", + "Entity 'http://edamontology.org/format_4007' - Label 'MATLAB script'\n", + "Entity 'http://edamontology.org/format_4018' - Label 'gVCF'\n", + "Entity 'http://edamontology.org/format_4023' - Label 'cml'\n", + "Entity 'http://edamontology.org/format_4025' - Label 'BioSimulators format for the specifications of biosimulation tools'\n", + "Entity 'http://edamontology.org/format_4026' - Label 'BioSimulators standard for command-line interfaces for biosimulation tools'\n", + "Entity 'http://edamontology.org/format_4035' - Label 'PQR'\n", + "Entity 'http://edamontology.org/format_4035' - Label 'PQR'\n", + "Entity 'http://edamontology.org/format_4036' - Label 'PDBQT'\n", + "Entity 'http://edamontology.org/format_4036' - Label 'PDBQT'\n", + "Entity 'http://edamontology.org/format_4039' - Label 'MSP'\n" + ] + } + ], + "source": [ + "query=\"\"\"\n", + "PREFIX edam:\n", + "\n", + "SELECT ?entity ?label ?property WHERE\n", + "{\n", + " \n", + " ?entity rdfs:subClassOf+ edam:format_1915 .\n", + " ?entity rdfs:label ?label .\n", + " {\n", + " VALUES ?property { edam:documentation }\n", + " FILTER NOT EXISTS {?entity ?property ?value .}\n", + " }\n", + " UNION\n", + " {\n", + " VALUES ?property { edam:is_format_of }\n", + " FILTER NOT EXISTS { \n", + " ?entity rdfs:subClassOf ?restriction . \n", + " ?restriction rdf:type owl:Restriction ; \n", + " owl:onProperty ?property ; \n", + " owl:someValuesFrom ?data.}\n", + " }\n", + "}ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:27:04.998163Z", + "start_time": "2024-02-13T17:27:02.325188Z" + } + }, + "execution_count": 30 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Entity 'http://edamontology.org/data_0005' - Label 'Resource type'\n", + "Entity 'http://edamontology.org/data_0006' - Label 'Data'\n", + "Entity 'http://edamontology.org/data_0007' - Label 'Tool'\n", + "Entity 'http://edamontology.org/data_0581' - Label 'Database'\n", + "Entity 'http://edamontology.org/data_0582' - Label 'Ontology'\n", + "Entity 'http://edamontology.org/data_0583' - Label 'Directory metadata'\n", + "Entity 'http://edamontology.org/data_0831' - Label 'MeSH vocabulary'\n", + "Entity 'http://edamontology.org/data_0832' - Label 'HGNC vocabulary'\n", + "Entity 'http://edamontology.org/data_0835' - Label 'UMLS vocabulary'\n", + "Entity 'http://edamontology.org/data_0842' - Label 'Identifier'\n", + "Entity 'http://edamontology.org/data_0843' - Label 'Database entry'\n", + "Entity 'http://edamontology.org/data_0844' - Label 'Molecular mass'\n", + "Entity 'http://edamontology.org/data_0845' - Label 'Molecular charge'\n", + "Entity 'http://edamontology.org/data_0846' - Label 'Chemical formula'\n", + "Entity 'http://edamontology.org/data_0847' - Label 'QSAR descriptor'\n", + "Entity 'http://edamontology.org/data_0848' - Label 'Raw sequence'\n", + "Entity 'http://edamontology.org/data_0849' - Label 'Sequence record'\n", + "Entity 'http://edamontology.org/data_0850' - Label 'Sequence set'\n", + "Entity 'http://edamontology.org/data_0851' - Label 'Sequence mask character'\n", + "Entity 'http://edamontology.org/data_0852' - Label 'Sequence mask type'\n", + "Entity 'http://edamontology.org/data_0853' - Label 'DNA sense specification'\n", + "Entity 'http://edamontology.org/data_0854' - Label 'Sequence length specification'\n", + "Entity 'http://edamontology.org/data_0855' - Label 'Sequence metadata'\n", + "Entity 'http://edamontology.org/data_0856' - Label 'Sequence feature source'\n", + "Entity 'http://edamontology.org/data_0857' - Label 'Sequence search results'\n", + "Entity 'http://edamontology.org/data_0858' - Label 'Sequence signature matches'\n", + "Entity 'http://edamontology.org/data_0859' - Label 'Sequence signature model'\n", + "Entity 'http://edamontology.org/data_0860' - Label 'Sequence signature data'\n", + "Entity 'http://edamontology.org/data_0861' - Label 'Sequence alignment (words)'\n", + "Entity 'http://edamontology.org/data_0862' - Label 'Dotplot'\n", + "Entity 'http://edamontology.org/data_0863' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/data_0864' - Label 'Sequence alignment parameter'\n", + "Entity 'http://edamontology.org/data_0865' - Label 'Sequence similarity score'\n", + "Entity 'http://edamontology.org/data_0866' - Label 'Sequence alignment metadata'\n", + "Entity 'http://edamontology.org/data_0867' - Label 'Sequence alignment report'\n", + "Entity 'http://edamontology.org/data_0868' - Label 'Profile-profile alignment'\n", + "Entity 'http://edamontology.org/data_0869' - Label 'Sequence-profile alignment'\n", + "Entity 'http://edamontology.org/data_0870' - Label 'Sequence distance matrix'\n", + "Entity 'http://edamontology.org/data_0871' - Label 'Phylogenetic character data'\n", + "Entity 'http://edamontology.org/data_0872' - Label 'Phylogenetic tree'\n", + "Entity 'http://edamontology.org/data_0874' - Label 'Comparison matrix'\n", + "Entity 'http://edamontology.org/data_0875' - Label 'Protein topology'\n", + "Entity 'http://edamontology.org/data_0876' - Label 'Protein features report (secondary structure)'\n", + "Entity 'http://edamontology.org/data_0877' - Label 'Protein features report (super-secondary)'\n", + "Entity 'http://edamontology.org/data_0878' - Label 'Protein secondary structure alignment'\n", + "Entity 'http://edamontology.org/data_0879' - Label 'Secondary structure alignment metadata (protein)'\n", + "Entity 'http://edamontology.org/data_0880' - Label 'RNA secondary structure'\n", + "Entity 'http://edamontology.org/data_0881' - Label 'RNA secondary structure alignment'\n", + "Entity 'http://edamontology.org/data_0882' - Label 'Secondary structure alignment metadata (RNA)'\n", + "Entity 'http://edamontology.org/data_0883' - Label 'Structure'\n", + "Entity 'http://edamontology.org/data_0884' - Label 'Tertiary structure record'\n", + "Entity 'http://edamontology.org/data_0885' - Label 'Structure database search results'\n", + "Entity 'http://edamontology.org/data_0886' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/data_0887' - Label 'Structure alignment report'\n", + "Entity 'http://edamontology.org/data_0888' - Label 'Structure similarity score'\n", + "Entity 'http://edamontology.org/data_0889' - Label 'Structural profile'\n", + "Entity 'http://edamontology.org/data_0890' - Label 'Structural (3D) profile alignment'\n", + "Entity 'http://edamontology.org/data_0891' - Label 'Sequence-3D profile alignment'\n", + "Entity 'http://edamontology.org/data_0892' - Label 'Protein sequence-structure scoring matrix'\n", + "Entity 'http://edamontology.org/data_0893' - Label 'Sequence-structure alignment'\n", + "Entity 'http://edamontology.org/data_0894' - Label 'Amino acid annotation'\n", + "Entity 'http://edamontology.org/data_0895' - Label 'Peptide annotation'\n", + "Entity 'http://edamontology.org/data_0896' - Label 'Protein report'\n", + "Entity 'http://edamontology.org/data_0897' - Label 'Protein property'\n", + "Entity 'http://edamontology.org/data_0899' - Label 'Protein structural motifs and surfaces'\n", + "Entity 'http://edamontology.org/data_0900' - Label 'Protein domain classification'\n", + "Entity 'http://edamontology.org/data_0901' - Label 'Protein features report (domains)'\n", + "Entity 'http://edamontology.org/data_0902' - Label 'Protein architecture report'\n", + "Entity 'http://edamontology.org/data_0903' - Label 'Protein folding report'\n", + "Entity 'http://edamontology.org/data_0904' - Label 'Protein features (mutation)'\n", + "Entity 'http://edamontology.org/data_0905' - Label 'Protein interaction raw data'\n", + "Entity 'http://edamontology.org/data_0906' - Label 'Protein interaction data'\n", + "Entity 'http://edamontology.org/data_0907' - Label 'Protein family report'\n", + "Entity 'http://edamontology.org/data_0909' - Label 'Vmax'\n", + "Entity 'http://edamontology.org/data_0910' - Label 'Km'\n", + "Entity 'http://edamontology.org/data_0911' - Label 'Nucleotide base annotation'\n", + "Entity 'http://edamontology.org/data_0912' - Label 'Nucleic acid property'\n", + "Entity 'http://edamontology.org/data_0914' - Label 'Codon usage data'\n", + "Entity 'http://edamontology.org/data_0916' - Label 'Gene report'\n", + "Entity 'http://edamontology.org/data_0917' - Label 'Gene classification'\n", + "Entity 'http://edamontology.org/data_0918' - Label 'DNA variation'\n", + "Entity 'http://edamontology.org/data_0919' - Label 'Chromosome report'\n", + "Entity 'http://edamontology.org/data_0920' - Label 'Genotype/phenotype report'\n", + "Entity 'http://edamontology.org/data_0923' - Label 'PCR experiment report'\n", + "Entity 'http://edamontology.org/data_0924' - Label 'Sequence trace'\n", + "Entity 'http://edamontology.org/data_0925' - Label 'Sequence assembly'\n", + "Entity 'http://edamontology.org/data_0926' - Label 'RH scores'\n", + "Entity 'http://edamontology.org/data_0927' - Label 'Genetic linkage report'\n", + "Entity 'http://edamontology.org/data_0928' - Label 'Gene expression profile'\n", + "Entity 'http://edamontology.org/data_0931' - Label 'Microarray experiment report'\n", + "Entity 'http://edamontology.org/data_0932' - Label 'Oligonucleotide probe data'\n", + "Entity 'http://edamontology.org/data_0933' - Label 'SAGE experimental data'\n", + "Entity 'http://edamontology.org/data_0934' - Label 'MPSS experimental data'\n", + "Entity 'http://edamontology.org/data_0935' - Label 'SBS experimental data'\n", + "Entity 'http://edamontology.org/data_0936' - Label 'Sequence tag profile (with gene assignment)'\n", + "Entity 'http://edamontology.org/data_0937' - Label 'Electron density map'\n", + "Entity 'http://edamontology.org/data_0938' - Label 'Raw NMR data'\n", + "Entity 'http://edamontology.org/data_0939' - Label 'CD spectra'\n", + "Entity 'http://edamontology.org/data_0940' - Label 'Volume map'\n", + "Entity 'http://edamontology.org/data_0941' - Label 'Electron microscopy model'\n", + "Entity 'http://edamontology.org/data_0942' - Label '2D PAGE image'\n", + "Entity 'http://edamontology.org/data_0943' - Label 'Mass spectrum'\n", + "Entity 'http://edamontology.org/data_0944' - Label 'Peptide mass fingerprint'\n", + "Entity 'http://edamontology.org/data_0945' - Label 'Peptide identification'\n", + "Entity 'http://edamontology.org/data_0946' - Label 'Pathway or network annotation'\n", + "Entity 'http://edamontology.org/data_0947' - Label 'Biological pathway map'\n", + "Entity 'http://edamontology.org/data_0948' - Label 'Data resource definition'\n", + "Entity 'http://edamontology.org/data_0949' - Label 'Workflow metadata'\n", + "Entity 'http://edamontology.org/data_0950' - Label 'Mathematical model'\n", + "Entity 'http://edamontology.org/data_0951' - Label 'Statistical estimate score'\n", + "Entity 'http://edamontology.org/data_0952' - Label 'EMBOSS database resource definition'\n", + "Entity 'http://edamontology.org/data_0953' - Label 'Version information'\n", + "Entity 'http://edamontology.org/data_0954' - Label 'Database cross-mapping'\n", + "Entity 'http://edamontology.org/data_0955' - Label 'Data index'\n", + "Entity 'http://edamontology.org/data_0956' - Label 'Data index report'\n", + "Entity 'http://edamontology.org/data_0957' - Label 'Database metadata'\n", + "Entity 'http://edamontology.org/data_0958' - Label 'Tool metadata'\n", + "Entity 'http://edamontology.org/data_0959' - Label 'Job metadata'\n", + "Entity 'http://edamontology.org/data_0960' - Label 'User metadata'\n", + "Entity 'http://edamontology.org/data_0962' - Label 'Small molecule report'\n", + "Entity 'http://edamontology.org/data_0963' - Label 'Cell line report'\n", + "Entity 'http://edamontology.org/data_0964' - Label 'Scent annotation'\n", + "Entity 'http://edamontology.org/data_0966' - Label 'Ontology term'\n", + "Entity 'http://edamontology.org/data_0967' - Label 'Ontology concept data'\n", + "Entity 'http://edamontology.org/data_0968' - Label 'Keyword'\n", + "Entity 'http://edamontology.org/data_0970' - Label 'Citation'\n", + "Entity 'http://edamontology.org/data_0971' - Label 'Article'\n", + "Entity 'http://edamontology.org/data_0972' - Label 'Text mining report'\n", + "Entity 'http://edamontology.org/data_0974' - Label 'Entity identifier'\n", + "Entity 'http://edamontology.org/data_0975' - Label 'Data resource identifier'\n", + "Entity 'http://edamontology.org/data_0976' - Label 'Identifier (by type of entity)'\n", + "Entity 'http://edamontology.org/data_0977' - Label 'Tool identifier'\n", + "Entity 'http://edamontology.org/data_0978' - Label 'Discrete entity identifier'\n", + "Entity 'http://edamontology.org/data_0979' - Label 'Entity feature identifier'\n", + "Entity 'http://edamontology.org/data_0980' - Label 'Entity collection identifier'\n", + "Entity 'http://edamontology.org/data_0981' - Label 'Phenomenon identifier'\n", + "Entity 'http://edamontology.org/data_0982' - Label 'Molecule identifier'\n", + "Entity 'http://edamontology.org/data_0983' - Label 'Atom ID'\n", + "Entity 'http://edamontology.org/data_0984' - Label 'Molecule name'\n", + "Entity 'http://edamontology.org/data_0985' - Label 'Molecule type'\n", + "Entity 'http://edamontology.org/data_0986' - Label 'Chemical identifier'\n", + "Entity 'http://edamontology.org/data_0987' - Label 'Chromosome name'\n", + "Entity 'http://edamontology.org/data_0988' - Label 'Peptide identifier'\n", + "Entity 'http://edamontology.org/data_0989' - Label 'Protein identifier'\n", + "Entity 'http://edamontology.org/data_0990' - Label 'Compound name'\n", + "Entity 'http://edamontology.org/data_0991' - Label 'Chemical registry number'\n", + "Entity 'http://edamontology.org/data_0992' - Label 'Ligand identifier'\n", + "Entity 'http://edamontology.org/data_0993' - Label 'Drug identifier'\n", + "Entity 'http://edamontology.org/data_0994' - Label 'Amino acid identifier'\n", + "Entity 'http://edamontology.org/data_0995' - Label 'Nucleotide identifier'\n", + "Entity 'http://edamontology.org/data_0996' - Label 'Monosaccharide identifier'\n", + "Entity 'http://edamontology.org/data_0997' - Label 'Chemical name (ChEBI)'\n", + "Entity 'http://edamontology.org/data_0998' - Label 'Chemical name (IUPAC)'\n", + "Entity 'http://edamontology.org/data_0999' - Label 'Chemical name (INN)'\n", + "Entity 'http://edamontology.org/data_1000' - Label 'Chemical name (brand)'\n", + "Entity 'http://edamontology.org/data_1001' - Label 'Chemical name (synonymous)'\n", + "Entity 'http://edamontology.org/data_1002' - Label 'CAS number'\n", + "Entity 'http://edamontology.org/data_1003' - Label 'Chemical registry number (Beilstein)'\n", + "Entity 'http://edamontology.org/data_1004' - Label 'Chemical registry number (Gmelin)'\n", + "Entity 'http://edamontology.org/data_1005' - Label 'HET group name'\n", + "Entity 'http://edamontology.org/data_1006' - Label 'Amino acid name'\n", + "Entity 'http://edamontology.org/data_1007' - Label 'Nucleotide code'\n", + "Entity 'http://edamontology.org/data_1008' - Label 'Polypeptide chain ID'\n", + "Entity 'http://edamontology.org/data_1009' - Label 'Protein name'\n", + "Entity 'http://edamontology.org/data_1010' - Label 'Enzyme identifier'\n", + "Entity 'http://edamontology.org/data_1011' - Label 'EC number'\n", + "Entity 'http://edamontology.org/data_1012' - Label 'Enzyme name'\n", + "Entity 'http://edamontology.org/data_1013' - Label 'Restriction enzyme name'\n", + "Entity 'http://edamontology.org/data_1014' - Label 'Sequence position specification'\n", + "Entity 'http://edamontology.org/data_1015' - Label 'Sequence feature ID'\n", + "Entity 'http://edamontology.org/data_1016' - Label 'Sequence position'\n", + "Entity 'http://edamontology.org/data_1017' - Label 'Sequence range'\n", + "Entity 'http://edamontology.org/data_1018' - Label 'Nucleic acid feature identifier'\n", + "Entity 'http://edamontology.org/data_1019' - Label 'Protein feature identifier'\n", + "Entity 'http://edamontology.org/data_1020' - Label 'Sequence feature key'\n", + "Entity 'http://edamontology.org/data_1021' - Label 'Sequence feature qualifier'\n", + "Entity 'http://edamontology.org/data_1022' - Label 'Sequence feature label'\n", + "Entity 'http://edamontology.org/data_1023' - Label 'EMBOSS Uniform Feature Object'\n", + "Entity 'http://edamontology.org/data_1024' - Label 'Codon name'\n", + "Entity 'http://edamontology.org/data_1025' - Label 'Gene identifier'\n", + "Entity 'http://edamontology.org/data_1026' - Label 'Gene symbol'\n", + "Entity 'http://edamontology.org/data_1027' - Label 'Gene ID (NCBI)'\n", + "Entity 'http://edamontology.org/data_1028' - Label 'Gene identifier (NCBI RefSeq)'\n", + "Entity 'http://edamontology.org/data_1029' - Label 'Gene identifier (NCBI UniGene)'\n", + "Entity 'http://edamontology.org/data_1030' - Label 'Gene identifier (Entrez)'\n", + "Entity 'http://edamontology.org/data_1031' - Label 'Gene ID (CGD)'\n", + "Entity 'http://edamontology.org/data_1032' - Label 'Gene ID (DictyBase)'\n", + "Entity 'http://edamontology.org/data_1033' - Label 'Ensembl gene ID'\n", + "Entity 'http://edamontology.org/data_1034' - Label 'Gene ID (SGD)'\n", + "Entity 'http://edamontology.org/data_1035' - Label 'Gene ID (GeneDB)'\n", + "Entity 'http://edamontology.org/data_1036' - Label 'TIGR identifier'\n", + "Entity 'http://edamontology.org/data_1037' - Label 'TAIR accession (gene)'\n", + "Entity 'http://edamontology.org/data_1038' - Label 'Protein domain ID'\n", + "Entity 'http://edamontology.org/data_1039' - Label 'SCOP domain identifier'\n", + "Entity 'http://edamontology.org/data_1040' - Label 'CATH domain ID'\n", + "Entity 'http://edamontology.org/data_1041' - Label 'SCOP concise classification string (sccs)'\n", + "Entity 'http://edamontology.org/data_1042' - Label 'SCOP sunid'\n", + "Entity 'http://edamontology.org/data_1043' - Label 'CATH node ID'\n", + "Entity 'http://edamontology.org/data_1044' - Label 'Kingdom name'\n", + "Entity 'http://edamontology.org/data_1045' - Label 'Species name'\n", + "Entity 'http://edamontology.org/data_1046' - Label 'Strain name'\n", + "Entity 'http://edamontology.org/data_1047' - Label 'URI'\n", + "Entity 'http://edamontology.org/data_1048' - Label 'Database ID'\n", + "Entity 'http://edamontology.org/data_1049' - Label 'Directory name'\n", + "Entity 'http://edamontology.org/data_1050' - Label 'File name'\n", + "Entity 'http://edamontology.org/data_1051' - Label 'Ontology name'\n", + "Entity 'http://edamontology.org/data_1052' - Label 'URL'\n", + "Entity 'http://edamontology.org/data_1053' - Label 'URN'\n", + "Entity 'http://edamontology.org/data_1055' - Label 'LSID'\n", + "Entity 'http://edamontology.org/data_1056' - Label 'Database name'\n", + "Entity 'http://edamontology.org/data_1057' - Label 'Sequence database name'\n", + "Entity 'http://edamontology.org/data_1058' - Label 'Enumerated file name'\n", + "Entity 'http://edamontology.org/data_1059' - Label 'File name extension'\n", + "Entity 'http://edamontology.org/data_1060' - Label 'File base name'\n", + "Entity 'http://edamontology.org/data_1061' - Label 'QSAR descriptor name'\n", + "Entity 'http://edamontology.org/data_1062' - Label 'Database entry identifier'\n", + "Entity 'http://edamontology.org/data_1063' - Label 'Sequence identifier'\n", + "Entity 'http://edamontology.org/data_1064' - Label 'Sequence set ID'\n", + "Entity 'http://edamontology.org/data_1065' - Label 'Sequence signature identifier'\n", + "Entity 'http://edamontology.org/data_1066' - Label 'Sequence alignment ID'\n", + "Entity 'http://edamontology.org/data_1067' - Label 'Phylogenetic distance matrix identifier'\n", + "Entity 'http://edamontology.org/data_1068' - Label 'Phylogenetic tree ID'\n", + "Entity 'http://edamontology.org/data_1069' - Label 'Comparison matrix identifier'\n", + "Entity 'http://edamontology.org/data_1070' - Label 'Structure ID'\n", + "Entity 'http://edamontology.org/data_1071' - Label 'Structural (3D) profile ID'\n", + "Entity 'http://edamontology.org/data_1072' - Label 'Structure alignment ID'\n", + "Entity 'http://edamontology.org/data_1073' - Label 'Amino acid index ID'\n", + "Entity 'http://edamontology.org/data_1074' - Label 'Protein interaction ID'\n", + "Entity 'http://edamontology.org/data_1075' - Label 'Protein family identifier'\n", + "Entity 'http://edamontology.org/data_1076' - Label 'Codon usage table name'\n", + "Entity 'http://edamontology.org/data_1077' - Label 'Transcription factor identifier'\n", + "Entity 'http://edamontology.org/data_1078' - Label 'Experiment annotation ID'\n", + "Entity 'http://edamontology.org/data_1079' - Label 'Electron microscopy model ID'\n", + "Entity 'http://edamontology.org/data_1080' - Label 'Gene expression report ID'\n", + "Entity 'http://edamontology.org/data_1081' - Label 'Genotype and phenotype annotation ID'\n", + "Entity 'http://edamontology.org/data_1082' - Label 'Pathway or network identifier'\n", + "Entity 'http://edamontology.org/data_1083' - Label 'Workflow ID'\n", + "Entity 'http://edamontology.org/data_1084' - Label 'Data resource definition ID'\n", + "Entity 'http://edamontology.org/data_1085' - Label 'Biological model ID'\n", + "Entity 'http://edamontology.org/data_1086' - Label 'Compound identifier'\n", + "Entity 'http://edamontology.org/data_1087' - Label 'Ontology concept ID'\n", + "Entity 'http://edamontology.org/data_1088' - Label 'Article ID'\n", + "Entity 'http://edamontology.org/data_1089' - Label 'FlyBase ID'\n", + "Entity 'http://edamontology.org/data_1091' - Label 'WormBase name'\n", + "Entity 'http://edamontology.org/data_1092' - Label 'WormBase class'\n", + "Entity 'http://edamontology.org/data_1093' - Label 'Sequence accession'\n", + "Entity 'http://edamontology.org/data_1094' - Label 'Sequence type'\n", + "Entity 'http://edamontology.org/data_1095' - Label 'EMBOSS Uniform Sequence Address'\n", + "Entity 'http://edamontology.org/data_1096' - Label 'Sequence accession (protein)'\n", + "Entity 'http://edamontology.org/data_1097' - Label 'Sequence accession (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1098' - Label 'RefSeq accession'\n", + "Entity 'http://edamontology.org/data_1099' - Label 'UniProt accession (extended)'\n", + "Entity 'http://edamontology.org/data_1100' - Label 'PIR identifier'\n", + "Entity 'http://edamontology.org/data_1101' - Label 'TREMBL accession'\n", + "Entity 'http://edamontology.org/data_1102' - Label 'Gramene primary identifier'\n", + "Entity 'http://edamontology.org/data_1103' - Label 'EMBL/GenBank/DDBJ ID'\n", + "Entity 'http://edamontology.org/data_1104' - Label 'Sequence cluster ID (UniGene)'\n", + "Entity 'http://edamontology.org/data_1105' - Label 'dbEST accession'\n", + "Entity 'http://edamontology.org/data_1106' - Label 'dbSNP ID'\n", + "Entity 'http://edamontology.org/data_1110' - Label 'EMBOSS sequence type'\n", + "Entity 'http://edamontology.org/data_1111' - Label 'EMBOSS listfile'\n", + "Entity 'http://edamontology.org/data_1112' - Label 'Sequence cluster ID'\n", + "Entity 'http://edamontology.org/data_1113' - Label 'Sequence cluster ID (COG)'\n", + "Entity 'http://edamontology.org/data_1114' - Label 'Sequence motif identifier'\n", + "Entity 'http://edamontology.org/data_1115' - Label 'Sequence profile ID'\n", + "Entity 'http://edamontology.org/data_1116' - Label 'ELM ID'\n", + "Entity 'http://edamontology.org/data_1117' - Label 'Prosite accession number'\n", + "Entity 'http://edamontology.org/data_1118' - Label 'HMMER hidden Markov model ID'\n", + "Entity 'http://edamontology.org/data_1119' - Label 'JASPAR profile ID'\n", + "Entity 'http://edamontology.org/data_1120' - Label 'Sequence alignment type'\n", + "Entity 'http://edamontology.org/data_1121' - Label 'BLAST sequence alignment type'\n", + "Entity 'http://edamontology.org/data_1122' - Label 'Phylogenetic tree type'\n", + "Entity 'http://edamontology.org/data_1123' - Label 'TreeBASE study accession number'\n", + "Entity 'http://edamontology.org/data_1124' - Label 'TreeFam accession number'\n", + "Entity 'http://edamontology.org/data_1125' - Label 'Comparison matrix type'\n", + "Entity 'http://edamontology.org/data_1126' - Label 'Comparison matrix name'\n", + "Entity 'http://edamontology.org/data_1127' - Label 'PDB ID'\n", + "Entity 'http://edamontology.org/data_1128' - Label 'AAindex ID'\n", + "Entity 'http://edamontology.org/data_1129' - Label 'BIND accession number'\n", + "Entity 'http://edamontology.org/data_1130' - Label 'IntAct accession number'\n", + "Entity 'http://edamontology.org/data_1131' - Label 'Protein family name'\n", + "Entity 'http://edamontology.org/data_1132' - Label 'InterPro entry name'\n", + "Entity 'http://edamontology.org/data_1133' - Label 'InterPro accession'\n", + "Entity 'http://edamontology.org/data_1134' - Label 'InterPro secondary accession'\n", + "Entity 'http://edamontology.org/data_1135' - Label 'Gene3D ID'\n", + "Entity 'http://edamontology.org/data_1136' - Label 'PIRSF ID'\n", + "Entity 'http://edamontology.org/data_1137' - Label 'PRINTS code'\n", + "Entity 'http://edamontology.org/data_1138' - Label 'Pfam accession number'\n", + "Entity 'http://edamontology.org/data_1139' - Label 'SMART accession number'\n", + "Entity 'http://edamontology.org/data_1140' - Label 'Superfamily hidden Markov model number'\n", + "Entity 'http://edamontology.org/data_1141' - Label 'TIGRFam ID'\n", + "Entity 'http://edamontology.org/data_1142' - Label 'ProDom accession number'\n", + "Entity 'http://edamontology.org/data_1143' - Label 'TRANSFAC accession number'\n", + "Entity 'http://edamontology.org/data_1144' - Label 'ArrayExpress accession number'\n", + "Entity 'http://edamontology.org/data_1145' - Label 'PRIDE experiment accession number'\n", + "Entity 'http://edamontology.org/data_1146' - Label 'EMDB ID'\n", + "Entity 'http://edamontology.org/data_1147' - Label 'GEO accession number'\n", + "Entity 'http://edamontology.org/data_1148' - Label 'GermOnline ID'\n", + "Entity 'http://edamontology.org/data_1149' - Label 'EMAGE ID'\n", + "Entity 'http://edamontology.org/data_1150' - Label 'Disease ID'\n", + "Entity 'http://edamontology.org/data_1151' - Label 'HGVbase ID'\n", + "Entity 'http://edamontology.org/data_1152' - Label 'HIVDB identifier'\n", + "Entity 'http://edamontology.org/data_1153' - Label 'OMIM ID'\n", + "Entity 'http://edamontology.org/data_1154' - Label 'KEGG object identifier'\n", + "Entity 'http://edamontology.org/data_1155' - Label 'Pathway ID (reactome)'\n", + "Entity 'http://edamontology.org/data_1156' - Label 'Pathway ID (aMAZE)'\n", + "Entity 'http://edamontology.org/data_1157' - Label 'Pathway ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_1158' - Label 'Pathway ID (INOH)'\n", + "Entity 'http://edamontology.org/data_1159' - Label 'Pathway ID (PATIKA)'\n", + "Entity 'http://edamontology.org/data_1160' - Label 'Pathway ID (CPDB)'\n", + "Entity 'http://edamontology.org/data_1161' - Label 'Pathway ID (Panther)'\n", + "Entity 'http://edamontology.org/data_1162' - Label 'MIRIAM identifier'\n", + "Entity 'http://edamontology.org/data_1163' - Label 'MIRIAM data type name'\n", + "Entity 'http://edamontology.org/data_1164' - Label 'MIRIAM URI'\n", + "Entity 'http://edamontology.org/data_1165' - Label 'MIRIAM data type primary name'\n", + "Entity 'http://edamontology.org/data_1166' - Label 'MIRIAM data type synonymous name'\n", + "Entity 'http://edamontology.org/data_1167' - Label 'Taverna workflow ID'\n", + "Entity 'http://edamontology.org/data_1170' - Label 'Biological model name'\n", + "Entity 'http://edamontology.org/data_1171' - Label 'BioModel ID'\n", + "Entity 'http://edamontology.org/data_1172' - Label 'PubChem CID'\n", + "Entity 'http://edamontology.org/data_1173' - Label 'ChemSpider ID'\n", + "Entity 'http://edamontology.org/data_1174' - Label 'ChEBI ID'\n", + "Entity 'http://edamontology.org/data_1175' - Label 'BioPax concept ID'\n", + "Entity 'http://edamontology.org/data_1176' - Label 'GO concept ID'\n", + "Entity 'http://edamontology.org/data_1177' - Label 'MeSH concept ID'\n", + "Entity 'http://edamontology.org/data_1178' - Label 'HGNC concept ID'\n", + "Entity 'http://edamontology.org/data_1179' - Label 'NCBI taxonomy ID'\n", + "Entity 'http://edamontology.org/data_1180' - Label 'Plant Ontology concept ID'\n", + "Entity 'http://edamontology.org/data_1181' - Label 'UMLS concept ID'\n", + "Entity 'http://edamontology.org/data_1182' - Label 'FMA concept ID'\n", + "Entity 'http://edamontology.org/data_1183' - Label 'EMAP concept ID'\n", + "Entity 'http://edamontology.org/data_1184' - Label 'ChEBI concept ID'\n", + "Entity 'http://edamontology.org/data_1185' - Label 'MGED concept ID'\n", + "Entity 'http://edamontology.org/data_1186' - Label 'myGrid concept ID'\n", + "Entity 'http://edamontology.org/data_1187' - Label 'PubMed ID'\n", + "Entity 'http://edamontology.org/data_1188' - Label 'DOI'\n", + "Entity 'http://edamontology.org/data_1189' - Label 'Medline UI'\n", + "Entity 'http://edamontology.org/data_1190' - Label 'Tool name'\n", + "Entity 'http://edamontology.org/data_1191' - Label 'Tool name (signature)'\n", + "Entity 'http://edamontology.org/data_1192' - Label 'Tool name (BLAST)'\n", + "Entity 'http://edamontology.org/data_1193' - Label 'Tool name (FASTA)'\n", + "Entity 'http://edamontology.org/data_1194' - Label 'Tool name (EMBOSS)'\n", + "Entity 'http://edamontology.org/data_1195' - Label 'Tool name (EMBASSY package)'\n", + "Entity 'http://edamontology.org/data_1201' - Label 'QSAR descriptor (constitutional)'\n", + "Entity 'http://edamontology.org/data_1202' - Label 'QSAR descriptor (electronic)'\n", + "Entity 'http://edamontology.org/data_1203' - Label 'QSAR descriptor (geometrical)'\n", + "Entity 'http://edamontology.org/data_1204' - Label 'QSAR descriptor (topological)'\n", + "Entity 'http://edamontology.org/data_1205' - Label 'QSAR descriptor (molecular)'\n", + "Entity 'http://edamontology.org/data_1233' - Label 'Sequence set (protein)'\n", + "Entity 'http://edamontology.org/data_1234' - Label 'Sequence set (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1235' - Label 'Sequence cluster'\n", + "Entity 'http://edamontology.org/data_1236' - Label 'Psiblast checkpoint file'\n", + "Entity 'http://edamontology.org/data_1237' - Label 'HMMER synthetic sequences set'\n", + "Entity 'http://edamontology.org/data_1238' - Label 'Proteolytic digest'\n", + "Entity 'http://edamontology.org/data_1239' - Label 'Restriction digest'\n", + "Entity 'http://edamontology.org/data_1240' - Label 'PCR primers'\n", + "Entity 'http://edamontology.org/data_1241' - Label 'vectorstrip cloning vector definition file'\n", + "Entity 'http://edamontology.org/data_1242' - Label 'Primer3 internal oligo mishybridizing library'\n", + "Entity 'http://edamontology.org/data_1243' - Label 'Primer3 mispriming library file'\n", + "Entity 'http://edamontology.org/data_1244' - Label 'primersearch primer pairs sequence record'\n", + "Entity 'http://edamontology.org/data_1245' - Label 'Sequence cluster (protein)'\n", + "Entity 'http://edamontology.org/data_1246' - Label 'Sequence cluster (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1249' - Label 'Sequence length'\n", + "Entity 'http://edamontology.org/data_1250' - Label 'Word size'\n", + "Entity 'http://edamontology.org/data_1251' - Label 'Window size'\n", + "Entity 'http://edamontology.org/data_1252' - Label 'Sequence length range'\n", + "Entity 'http://edamontology.org/data_1253' - Label 'Sequence information report'\n", + "Entity 'http://edamontology.org/data_1254' - Label 'Sequence property'\n", + "Entity 'http://edamontology.org/data_1255' - Label 'Sequence features'\n", + "Entity 'http://edamontology.org/data_1256' - Label 'Sequence features (comparative)'\n", + "Entity 'http://edamontology.org/data_1257' - Label 'Sequence property (protein)'\n", + "Entity 'http://edamontology.org/data_1258' - Label 'Sequence property (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1259' - Label 'Sequence complexity report'\n", + "Entity 'http://edamontology.org/data_1260' - Label 'Sequence ambiguity report'\n", + "Entity 'http://edamontology.org/data_1261' - Label 'Sequence composition report'\n", + "Entity 'http://edamontology.org/data_1262' - Label 'Peptide molecular weight hits'\n", + "Entity 'http://edamontology.org/data_1263' - Label 'Base position variability plot'\n", + "Entity 'http://edamontology.org/data_1264' - Label 'Sequence composition table'\n", + "Entity 'http://edamontology.org/data_1265' - Label 'Base frequencies table'\n", + "Entity 'http://edamontology.org/data_1266' - Label 'Base word frequencies table'\n", + "Entity 'http://edamontology.org/data_1267' - Label 'Amino acid frequencies table'\n", + "Entity 'http://edamontology.org/data_1268' - Label 'Amino acid word frequencies table'\n", + "Entity 'http://edamontology.org/data_1269' - Label 'DAS sequence feature annotation'\n", + "Entity 'http://edamontology.org/data_1270' - Label 'Feature table'\n", + "Entity 'http://edamontology.org/data_1274' - Label 'Map'\n", + "Entity 'http://edamontology.org/data_1276' - Label 'Nucleic acid features'\n", + "Entity 'http://edamontology.org/data_1277' - Label 'Protein features'\n", + "Entity 'http://edamontology.org/data_1278' - Label 'Genetic map'\n", + "Entity 'http://edamontology.org/data_1279' - Label 'Sequence map'\n", + "Entity 'http://edamontology.org/data_1280' - Label 'Physical map'\n", + "Entity 'http://edamontology.org/data_1281' - Label 'Sequence signature map'\n", + "Entity 'http://edamontology.org/data_1283' - Label 'Cytogenetic map'\n", + "Entity 'http://edamontology.org/data_1284' - Label 'DNA transduction map'\n", + "Entity 'http://edamontology.org/data_1285' - Label 'Gene map'\n", + "Entity 'http://edamontology.org/data_1286' - Label 'Plasmid map'\n", + "Entity 'http://edamontology.org/data_1288' - Label 'Genome map'\n", + "Entity 'http://edamontology.org/data_1289' - Label 'Restriction map'\n", + "Entity 'http://edamontology.org/data_1290' - Label 'InterPro compact match image'\n", + "Entity 'http://edamontology.org/data_1291' - Label 'InterPro detailed match image'\n", + "Entity 'http://edamontology.org/data_1292' - Label 'InterPro architecture image'\n", + "Entity 'http://edamontology.org/data_1293' - Label 'SMART protein schematic'\n", + "Entity 'http://edamontology.org/data_1294' - Label 'GlobPlot domain image'\n", + "Entity 'http://edamontology.org/data_1298' - Label 'Sequence motif matches'\n", + "Entity 'http://edamontology.org/data_1299' - Label 'Sequence features (repeats)'\n", + "Entity 'http://edamontology.org/data_1300' - Label 'Gene and transcript structure (report)'\n", + "Entity 'http://edamontology.org/data_1301' - Label 'Mobile genetic elements'\n", + "Entity 'http://edamontology.org/data_1303' - Label 'Nucleic acid features (quadruplexes)'\n", + "Entity 'http://edamontology.org/data_1306' - Label 'Nucleosome exclusion sequences'\n", + "Entity 'http://edamontology.org/data_1309' - Label 'Gene features (exonic splicing enhancer)'\n", + "Entity 'http://edamontology.org/data_1310' - Label 'Nucleic acid features (microRNA)'\n", + "Entity 'http://edamontology.org/data_1313' - Label 'Coding region'\n", + "Entity 'http://edamontology.org/data_1314' - Label 'Gene features (SECIS element)'\n", + "Entity 'http://edamontology.org/data_1315' - Label 'Transcription factor binding sites'\n", + "Entity 'http://edamontology.org/data_1321' - Label 'Protein features (sites)'\n", + "Entity 'http://edamontology.org/data_1322' - Label 'Protein features report (signal peptides)'\n", + "Entity 'http://edamontology.org/data_1323' - Label 'Protein features report (cleavage sites)'\n", + "Entity 'http://edamontology.org/data_1324' - Label 'Protein features (post-translation modifications)'\n", + "Entity 'http://edamontology.org/data_1325' - Label 'Protein features report (active sites)'\n", + "Entity 'http://edamontology.org/data_1326' - Label 'Protein features report (binding sites)'\n", + "Entity 'http://edamontology.org/data_1327' - Label 'Protein features (epitopes)'\n", + "Entity 'http://edamontology.org/data_1328' - Label 'Protein features report (nucleic acid binding sites)'\n", + "Entity 'http://edamontology.org/data_1329' - Label 'MHC Class I epitopes report'\n", + "Entity 'http://edamontology.org/data_1330' - Label 'MHC Class II epitopes report'\n", + "Entity 'http://edamontology.org/data_1331' - Label 'Protein features (PEST sites)'\n", + "Entity 'http://edamontology.org/data_1338' - Label 'Sequence database hits scores list'\n", + "Entity 'http://edamontology.org/data_1339' - Label 'Sequence database hits alignments list'\n", + "Entity 'http://edamontology.org/data_1340' - Label 'Sequence database hits evaluation data'\n", + "Entity 'http://edamontology.org/data_1344' - Label 'MEME motif alphabet'\n", + "Entity 'http://edamontology.org/data_1345' - Label 'MEME background frequencies file'\n", + "Entity 'http://edamontology.org/data_1346' - Label 'MEME motifs directive file'\n", + "Entity 'http://edamontology.org/data_1347' - Label 'Dirichlet distribution'\n", + "Entity 'http://edamontology.org/data_1348' - Label 'HMM emission and transition counts'\n", + "Entity 'http://edamontology.org/data_1352' - Label 'Regular expression'\n", + "Entity 'http://edamontology.org/data_1353' - Label 'Sequence motif'\n", + "Entity 'http://edamontology.org/data_1354' - Label 'Sequence profile'\n", + "Entity 'http://edamontology.org/data_1355' - Label 'Protein signature'\n", + "Entity 'http://edamontology.org/data_1358' - Label 'Prosite nucleotide pattern'\n", + "Entity 'http://edamontology.org/data_1359' - Label 'Prosite protein pattern'\n", + "Entity 'http://edamontology.org/data_1361' - Label 'Position frequency matrix'\n", + "Entity 'http://edamontology.org/data_1362' - Label 'Position weight matrix'\n", + "Entity 'http://edamontology.org/data_1363' - Label 'Information content matrix'\n", + "Entity 'http://edamontology.org/data_1364' - Label 'Hidden Markov model'\n", + "Entity 'http://edamontology.org/data_1365' - Label 'Fingerprint'\n", + "Entity 'http://edamontology.org/data_1368' - Label 'Domainatrix signature'\n", + "Entity 'http://edamontology.org/data_1371' - Label 'HMMER NULL hidden Markov model'\n", + "Entity 'http://edamontology.org/data_1372' - Label 'Protein family signature'\n", + "Entity 'http://edamontology.org/data_1373' - Label 'Protein domain signature'\n", + "Entity 'http://edamontology.org/data_1374' - Label 'Protein region signature'\n", + "Entity 'http://edamontology.org/data_1375' - Label 'Protein repeat signature'\n", + "Entity 'http://edamontology.org/data_1376' - Label 'Protein site signature'\n", + "Entity 'http://edamontology.org/data_1377' - Label 'Protein conserved site signature'\n", + "Entity 'http://edamontology.org/data_1378' - Label 'Protein active site signature'\n", + "Entity 'http://edamontology.org/data_1379' - Label 'Protein binding site signature'\n", + "Entity 'http://edamontology.org/data_1380' - Label 'Protein post-translational modification signature'\n", + "Entity 'http://edamontology.org/data_1381' - Label 'Pair sequence alignment'\n", + "Entity 'http://edamontology.org/data_1382' - Label 'Sequence alignment (multiple)'\n", + "Entity 'http://edamontology.org/data_1383' - Label 'Nucleic acid sequence alignment'\n", + "Entity 'http://edamontology.org/data_1384' - Label 'Protein sequence alignment'\n", + "Entity 'http://edamontology.org/data_1385' - Label 'Hybrid sequence alignment'\n", + "Entity 'http://edamontology.org/data_1386' - Label 'Sequence alignment (nucleic acid pair)'\n", + "Entity 'http://edamontology.org/data_1387' - Label 'Sequence alignment (protein pair)'\n", + "Entity 'http://edamontology.org/data_1388' - Label 'Hybrid sequence alignment (pair)'\n", + "Entity 'http://edamontology.org/data_1389' - Label 'Multiple nucleotide sequence alignment'\n", + "Entity 'http://edamontology.org/data_1390' - Label 'Multiple protein sequence alignment'\n", + "Entity 'http://edamontology.org/data_1394' - Label 'Alignment score or penalty'\n", + "Entity 'http://edamontology.org/data_1395' - Label 'Score end gaps control'\n", + "Entity 'http://edamontology.org/data_1396' - Label 'Aligned sequence order'\n", + "Entity 'http://edamontology.org/data_1397' - Label 'Gap opening penalty'\n", + "Entity 'http://edamontology.org/data_1398' - Label 'Gap extension penalty'\n", + "Entity 'http://edamontology.org/data_1399' - Label 'Gap separation penalty'\n", + "Entity 'http://edamontology.org/data_1400' - Label 'Terminal gap penalty'\n", + "Entity 'http://edamontology.org/data_1401' - Label 'Match reward score'\n", + "Entity 'http://edamontology.org/data_1402' - Label 'Mismatch penalty score'\n", + "Entity 'http://edamontology.org/data_1403' - Label 'Drop off score'\n", + "Entity 'http://edamontology.org/data_1404' - Label 'Gap opening penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1405' - Label 'Gap opening penalty (float)'\n", + "Entity 'http://edamontology.org/data_1406' - Label 'Gap extension penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1407' - Label 'Gap extension penalty (float)'\n", + "Entity 'http://edamontology.org/data_1408' - Label 'Gap separation penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1409' - Label 'Gap separation penalty (float)'\n", + "Entity 'http://edamontology.org/data_1410' - Label 'Terminal gap opening penalty'\n", + "Entity 'http://edamontology.org/data_1411' - Label 'Terminal gap extension penalty'\n", + "Entity 'http://edamontology.org/data_1412' - Label 'Sequence identity'\n", + "Entity 'http://edamontology.org/data_1413' - Label 'Sequence similarity'\n", + "Entity 'http://edamontology.org/data_1414' - Label 'Sequence alignment metadata (quality report)'\n", + "Entity 'http://edamontology.org/data_1415' - Label 'Sequence alignment report (site conservation)'\n", + "Entity 'http://edamontology.org/data_1416' - Label 'Sequence alignment report (site correlation)'\n", + "Entity 'http://edamontology.org/data_1417' - Label 'Sequence-profile alignment (Domainatrix signature)'\n", + "Entity 'http://edamontology.org/data_1418' - Label 'Sequence-profile alignment (HMM)'\n", + "Entity 'http://edamontology.org/data_1420' - Label 'Sequence-profile alignment (fingerprint)'\n", + "Entity 'http://edamontology.org/data_1426' - Label 'Phylogenetic continuous quantitative data'\n", + "Entity 'http://edamontology.org/data_1427' - Label 'Phylogenetic discrete data'\n", + "Entity 'http://edamontology.org/data_1428' - Label 'Phylogenetic character cliques'\n", + "Entity 'http://edamontology.org/data_1429' - Label 'Phylogenetic invariants'\n", + "Entity 'http://edamontology.org/data_1438' - Label 'Phylogenetic report'\n", + "Entity 'http://edamontology.org/data_1439' - Label 'DNA substitution model'\n", + "Entity 'http://edamontology.org/data_1440' - Label 'Phylogenetic tree report (tree shape)'\n", + "Entity 'http://edamontology.org/data_1441' - Label 'Phylogenetic tree report (tree evaluation)'\n", + "Entity 'http://edamontology.org/data_1442' - Label 'Phylogenetic tree distances'\n", + "Entity 'http://edamontology.org/data_1443' - Label 'Phylogenetic tree report (tree stratigraphic)'\n", + "Entity 'http://edamontology.org/data_1444' - Label 'Phylogenetic character contrasts'\n", + "Entity 'http://edamontology.org/data_1446' - Label 'Comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1447' - Label 'Comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1448' - Label 'Comparison matrix (nucleotide)'\n", + "Entity 'http://edamontology.org/data_1449' - Label 'Comparison matrix (amino acid)'\n", + "Entity 'http://edamontology.org/data_1450' - Label 'Nucleotide comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1451' - Label 'Nucleotide comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1452' - Label 'Amino acid comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1453' - Label 'Amino acid comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1459' - Label 'Nucleic acid structure'\n", + "Entity 'http://edamontology.org/data_1460' - Label 'Protein structure'\n", + "Entity 'http://edamontology.org/data_1461' - Label 'Protein-ligand complex'\n", + "Entity 'http://edamontology.org/data_1462' - Label 'Carbohydrate structure'\n", + "Entity 'http://edamontology.org/data_1463' - Label 'Small molecule structure'\n", + "Entity 'http://edamontology.org/data_1464' - Label 'DNA structure'\n", + "Entity 'http://edamontology.org/data_1465' - Label 'RNA structure'\n", + "Entity 'http://edamontology.org/data_1466' - Label 'tRNA structure'\n", + "Entity 'http://edamontology.org/data_1467' - Label 'Protein chain'\n", + "Entity 'http://edamontology.org/data_1468' - Label 'Protein domain'\n", + "Entity 'http://edamontology.org/data_1469' - Label 'Protein structure (all atoms)'\n", + "Entity 'http://edamontology.org/data_1470' - Label 'C-alpha trace'\n", + "Entity 'http://edamontology.org/data_1471' - Label 'Protein chain (all atoms)'\n", + "Entity 'http://edamontology.org/data_1472' - Label 'Protein chain (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1473' - Label 'Protein domain (all atoms)'\n", + "Entity 'http://edamontology.org/data_1474' - Label 'Protein domain (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1479' - Label 'Structure alignment (pair)'\n", + "Entity 'http://edamontology.org/data_1480' - Label 'Structure alignment (multiple)'\n", + "Entity 'http://edamontology.org/data_1481' - Label 'Protein structure alignment'\n", + "Entity 'http://edamontology.org/data_1482' - Label 'Nucleic acid structure alignment'\n", + "Entity 'http://edamontology.org/data_1483' - Label 'Structure alignment (protein pair)'\n", + "Entity 'http://edamontology.org/data_1484' - Label 'Multiple protein tertiary structure alignment'\n", + "Entity 'http://edamontology.org/data_1485' - Label 'Structure alignment (protein all atoms)'\n", + "Entity 'http://edamontology.org/data_1486' - Label 'Structure alignment (protein C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1487' - Label 'Pairwise protein tertiary structure alignment (all atoms)'\n", + "Entity 'http://edamontology.org/data_1488' - Label 'Pairwise protein tertiary structure alignment (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1489' - Label 'Multiple protein tertiary structure alignment (all atoms)'\n", + "Entity 'http://edamontology.org/data_1490' - Label 'Multiple protein tertiary structure alignment (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1491' - Label 'Structure alignment (nucleic acid pair)'\n", + "Entity 'http://edamontology.org/data_1492' - Label 'Multiple nucleic acid tertiary structure alignment'\n", + "Entity 'http://edamontology.org/data_1493' - Label 'RNA structure alignment'\n", + "Entity 'http://edamontology.org/data_1494' - Label 'Structural transformation matrix'\n", + "Entity 'http://edamontology.org/data_1495' - Label 'DaliLite hit table'\n", + "Entity 'http://edamontology.org/data_1496' - Label 'Molecular similarity score'\n", + "Entity 'http://edamontology.org/data_1497' - Label 'Root-mean-square deviation'\n", + "Entity 'http://edamontology.org/data_1498' - Label 'Tanimoto similarity score'\n", + "Entity 'http://edamontology.org/data_1499' - Label '3D-1D scoring matrix'\n", + "Entity 'http://edamontology.org/data_1501' - Label 'Amino acid index'\n", + "Entity 'http://edamontology.org/data_1502' - Label 'Amino acid index (chemical classes)'\n", + "Entity 'http://edamontology.org/data_1503' - Label 'Amino acid pair-wise contact potentials'\n", + "Entity 'http://edamontology.org/data_1505' - Label 'Amino acid index (molecular weight)'\n", + "Entity 'http://edamontology.org/data_1506' - Label 'Amino acid index (hydropathy)'\n", + "Entity 'http://edamontology.org/data_1507' - Label 'Amino acid index (White-Wimley data)'\n", + "Entity 'http://edamontology.org/data_1508' - Label 'Amino acid index (van der Waals radii)'\n", + "Entity 'http://edamontology.org/data_1509' - Label 'Enzyme report'\n", + "Entity 'http://edamontology.org/data_1517' - Label 'Restriction enzyme report'\n", + "Entity 'http://edamontology.org/data_1519' - Label 'Peptide molecular weights'\n", + "Entity 'http://edamontology.org/data_1520' - Label 'Peptide hydrophobic moment'\n", + "Entity 'http://edamontology.org/data_1521' - Label 'Protein aliphatic index'\n", + "Entity 'http://edamontology.org/data_1522' - Label 'Protein sequence hydropathy plot'\n", + "Entity 'http://edamontology.org/data_1523' - Label 'Protein charge plot'\n", + "Entity 'http://edamontology.org/data_1524' - Label 'Protein solubility'\n", + "Entity 'http://edamontology.org/data_1525' - Label 'Protein crystallizability'\n", + "Entity 'http://edamontology.org/data_1526' - Label 'Protein globularity'\n", + "Entity 'http://edamontology.org/data_1527' - Label 'Protein titration curve'\n", + "Entity 'http://edamontology.org/data_1528' - Label 'Protein isoelectric point'\n", + "Entity 'http://edamontology.org/data_1529' - Label 'Protein pKa value'\n", + "Entity 'http://edamontology.org/data_1530' - Label 'Protein hydrogen exchange rate'\n", + "Entity 'http://edamontology.org/data_1531' - Label 'Protein extinction coefficient'\n", + "Entity 'http://edamontology.org/data_1532' - Label 'Protein optical density'\n", + "Entity 'http://edamontology.org/data_1533' - Label 'Protein subcellular localisation'\n", + "Entity 'http://edamontology.org/data_1534' - Label 'Peptide immunogenicity data'\n", + "Entity 'http://edamontology.org/data_1536' - Label 'MHC peptide immunogenicity report'\n", + "Entity 'http://edamontology.org/data_1537' - Label 'Protein structure report'\n", + "Entity 'http://edamontology.org/data_1539' - Label 'Protein structural quality report'\n", + "Entity 'http://edamontology.org/data_1540' - Label 'Protein non-covalent interactions report'\n", + "Entity 'http://edamontology.org/data_1541' - Label 'Protein flexibility or motion report'\n", + "Entity 'http://edamontology.org/data_1542' - Label 'Protein solvent accessibility'\n", + "Entity 'http://edamontology.org/data_1543' - Label 'Protein surface report'\n", + "Entity 'http://edamontology.org/data_1544' - Label 'Ramachandran plot'\n", + "Entity 'http://edamontology.org/data_1545' - Label 'Protein dipole moment'\n", + "Entity 'http://edamontology.org/data_1546' - Label 'Protein distance matrix'\n", + "Entity 'http://edamontology.org/data_1547' - Label 'Protein contact map'\n", + "Entity 'http://edamontology.org/data_1548' - Label 'Protein residue 3D cluster'\n", + "Entity 'http://edamontology.org/data_1549' - Label 'Protein hydrogen bonds'\n", + "Entity 'http://edamontology.org/data_1550' - Label 'Protein non-canonical interactions'\n", + "Entity 'http://edamontology.org/data_1553' - Label 'CATH node'\n", + "Entity 'http://edamontology.org/data_1554' - Label 'SCOP node'\n", + "Entity 'http://edamontology.org/data_1555' - Label 'EMBASSY domain classification'\n", + "Entity 'http://edamontology.org/data_1556' - Label 'CATH class'\n", + "Entity 'http://edamontology.org/data_1557' - Label 'CATH architecture'\n", + "Entity 'http://edamontology.org/data_1558' - Label 'CATH topology'\n", + "Entity 'http://edamontology.org/data_1559' - Label 'CATH homologous superfamily'\n", + "Entity 'http://edamontology.org/data_1560' - Label 'CATH structurally similar group'\n", + "Entity 'http://edamontology.org/data_1561' - Label 'CATH functional category'\n", + "Entity 'http://edamontology.org/data_1564' - Label 'Protein fold recognition report'\n", + "Entity 'http://edamontology.org/data_1565' - Label 'Protein-protein interaction report'\n", + "Entity 'http://edamontology.org/data_1566' - Label 'Protein-ligand interaction report'\n", + "Entity 'http://edamontology.org/data_1567' - Label 'Protein-nucleic acid interactions report'\n", + "Entity 'http://edamontology.org/data_1583' - Label 'Nucleic acid melting profile'\n", + "Entity 'http://edamontology.org/data_1584' - Label 'Nucleic acid enthalpy'\n", + "Entity 'http://edamontology.org/data_1585' - Label 'Nucleic acid entropy'\n", + "Entity 'http://edamontology.org/data_1586' - Label 'Nucleic acid melting temperature'\n", + "Entity 'http://edamontology.org/data_1587' - Label 'Nucleic acid stitch profile'\n", + "Entity 'http://edamontology.org/data_1588' - Label 'DNA base pair stacking energies data'\n", + "Entity 'http://edamontology.org/data_1589' - Label 'DNA base pair twist angle data'\n", + "Entity 'http://edamontology.org/data_1590' - Label 'DNA base trimer roll angles data'\n", + "Entity 'http://edamontology.org/data_1591' - Label 'Vienna RNA parameters'\n", + "Entity 'http://edamontology.org/data_1592' - Label 'Vienna RNA structure constraints'\n", + "Entity 'http://edamontology.org/data_1593' - Label 'Vienna RNA concentration data'\n", + "Entity 'http://edamontology.org/data_1594' - Label 'Vienna RNA calculated energy'\n", + "Entity 'http://edamontology.org/data_1595' - Label 'Base pairing probability matrix dotplot'\n", + "Entity 'http://edamontology.org/data_1596' - Label 'Nucleic acid folding report'\n", + "Entity 'http://edamontology.org/data_1597' - Label 'Codon usage table'\n", + "Entity 'http://edamontology.org/data_1598' - Label 'Genetic code'\n", + "Entity 'http://edamontology.org/data_1599' - Label 'Codon adaptation index'\n", + "Entity 'http://edamontology.org/data_1600' - Label 'Codon usage bias plot'\n", + "Entity 'http://edamontology.org/data_1601' - Label 'Nc statistic'\n", + "Entity 'http://edamontology.org/data_1602' - Label 'Codon usage fraction difference'\n", + "Entity 'http://edamontology.org/data_1621' - Label 'Pharmacogenomic test report'\n", + "Entity 'http://edamontology.org/data_1622' - Label 'Disease report'\n", + "Entity 'http://edamontology.org/data_1634' - Label 'Linkage disequilibrium (report)'\n", + "Entity 'http://edamontology.org/data_1636' - Label 'Heat map'\n", + "Entity 'http://edamontology.org/data_1642' - Label 'Affymetrix probe sets library file'\n", + "Entity 'http://edamontology.org/data_1643' - Label 'Affymetrix probe sets information library file'\n", + "Entity 'http://edamontology.org/data_1646' - Label 'Molecular weights standard fingerprint'\n", + "Entity 'http://edamontology.org/data_1656' - Label 'Metabolic pathway report'\n", + "Entity 'http://edamontology.org/data_1657' - Label 'Genetic information processing pathway report'\n", + "Entity 'http://edamontology.org/data_1658' - Label 'Environmental information processing pathway report'\n", + "Entity 'http://edamontology.org/data_1659' - Label 'Signal transduction pathway report'\n", + "Entity 'http://edamontology.org/data_1660' - Label 'Cellular process pathways report'\n", + "Entity 'http://edamontology.org/data_1661' - Label 'Disease pathway or network report'\n", + "Entity 'http://edamontology.org/data_1662' - Label 'Drug structure relationship map'\n", + "Entity 'http://edamontology.org/data_1663' - Label 'Protein interaction networks'\n", + "Entity 'http://edamontology.org/data_1664' - Label 'MIRIAM datatype'\n", + "Entity 'http://edamontology.org/data_1667' - Label 'E-value'\n", + "Entity 'http://edamontology.org/data_1668' - Label 'Z-value'\n", + "Entity 'http://edamontology.org/data_1669' - Label 'P-value'\n", + "Entity 'http://edamontology.org/data_1670' - Label 'Database version information'\n", + "Entity 'http://edamontology.org/data_1671' - Label 'Tool version information'\n", + "Entity 'http://edamontology.org/data_1672' - Label 'CATH version information'\n", + "Entity 'http://edamontology.org/data_1673' - Label 'Swiss-Prot to PDB mapping'\n", + "Entity 'http://edamontology.org/data_1674' - Label 'Sequence database cross-references'\n", + "Entity 'http://edamontology.org/data_1675' - Label 'Job status'\n", + "Entity 'http://edamontology.org/data_1676' - Label 'Job ID'\n", + "Entity 'http://edamontology.org/data_1677' - Label 'Job type'\n", + "Entity 'http://edamontology.org/data_1678' - Label 'Tool log'\n", + "Entity 'http://edamontology.org/data_1679' - Label 'DaliLite log file'\n", + "Entity 'http://edamontology.org/data_1680' - Label 'STRIDE log file'\n", + "Entity 'http://edamontology.org/data_1681' - Label 'NACCESS log file'\n", + "Entity 'http://edamontology.org/data_1682' - Label 'EMBOSS wordfinder log file'\n", + "Entity 'http://edamontology.org/data_1683' - Label 'EMBOSS domainatrix log file'\n", + "Entity 'http://edamontology.org/data_1684' - Label 'EMBOSS sites log file'\n", + "Entity 'http://edamontology.org/data_1685' - Label 'EMBOSS supermatcher error file'\n", + "Entity 'http://edamontology.org/data_1686' - Label 'EMBOSS megamerger log file'\n", + "Entity 'http://edamontology.org/data_1687' - Label 'EMBOSS whichdb log file'\n", + "Entity 'http://edamontology.org/data_1688' - Label 'EMBOSS vectorstrip log file'\n", + "Entity 'http://edamontology.org/data_1689' - Label 'Username'\n", + "Entity 'http://edamontology.org/data_1690' - Label 'Password'\n", + "Entity 'http://edamontology.org/data_1691' - Label 'Email address'\n", + "Entity 'http://edamontology.org/data_1692' - Label 'Person name'\n", + "Entity 'http://edamontology.org/data_1693' - Label 'Number of iterations'\n", + "Entity 'http://edamontology.org/data_1694' - Label 'Number of output entities'\n", + "Entity 'http://edamontology.org/data_1695' - Label 'Hit sort order'\n", + "Entity 'http://edamontology.org/data_1696' - Label 'Drug report'\n", + "Entity 'http://edamontology.org/data_1707' - Label 'Phylogenetic tree image'\n", + "Entity 'http://edamontology.org/data_1708' - Label 'RNA secondary structure image'\n", + "Entity 'http://edamontology.org/data_1709' - Label 'Protein secondary structure image'\n", + "Entity 'http://edamontology.org/data_1710' - Label 'Structure image'\n", + "Entity 'http://edamontology.org/data_1711' - Label 'Sequence alignment image'\n", + "Entity 'http://edamontology.org/data_1712' - Label 'Chemical structure image'\n", + "Entity 'http://edamontology.org/data_1713' - Label 'Fate map'\n", + "Entity 'http://edamontology.org/data_1714' - Label 'Microarray spots image'\n", + "Entity 'http://edamontology.org/data_1715' - Label 'BioPax term'\n", + "Entity 'http://edamontology.org/data_1716' - Label 'GO'\n", + "Entity 'http://edamontology.org/data_1717' - Label 'MeSH'\n", + "Entity 'http://edamontology.org/data_1718' - Label 'HGNC'\n", + "Entity 'http://edamontology.org/data_1719' - Label 'NCBI taxonomy vocabulary'\n", + "Entity 'http://edamontology.org/data_1720' - Label 'Plant ontology term'\n", + "Entity 'http://edamontology.org/data_1721' - Label 'UMLS'\n", + "Entity 'http://edamontology.org/data_1722' - Label 'FMA'\n", + "Entity 'http://edamontology.org/data_1723' - Label 'EMAP'\n", + "Entity 'http://edamontology.org/data_1724' - Label 'ChEBI'\n", + "Entity 'http://edamontology.org/data_1725' - Label 'MGED'\n", + "Entity 'http://edamontology.org/data_1726' - Label 'myGrid'\n", + "Entity 'http://edamontology.org/data_1727' - Label 'GO (biological process)'\n", + "Entity 'http://edamontology.org/data_1728' - Label 'GO (molecular function)'\n", + "Entity 'http://edamontology.org/data_1729' - Label 'GO (cellular component)'\n", + "Entity 'http://edamontology.org/data_1730' - Label 'Ontology relation type'\n", + "Entity 'http://edamontology.org/data_1731' - Label 'Ontology concept definition'\n", + "Entity 'http://edamontology.org/data_1732' - Label 'Ontology concept comment'\n", + "Entity 'http://edamontology.org/data_1733' - Label 'Ontology concept reference'\n", + "Entity 'http://edamontology.org/data_1738' - Label 'doc2loc document information'\n", + "Entity 'http://edamontology.org/data_1742' - Label 'PDB residue number'\n", + "Entity 'http://edamontology.org/data_1743' - Label 'Atomic coordinate'\n", + "Entity 'http://edamontology.org/data_1744' - Label 'Atomic x coordinate'\n", + "Entity 'http://edamontology.org/data_1745' - Label 'Atomic y coordinate'\n", + "Entity 'http://edamontology.org/data_1746' - Label 'Atomic z coordinate'\n", + "Entity 'http://edamontology.org/data_1748' - Label 'PDB atom name'\n", + "Entity 'http://edamontology.org/data_1755' - Label 'Protein atom'\n", + "Entity 'http://edamontology.org/data_1756' - Label 'Protein residue'\n", + "Entity 'http://edamontology.org/data_1757' - Label 'Atom name'\n", + "Entity 'http://edamontology.org/data_1758' - Label 'PDB residue name'\n", + "Entity 'http://edamontology.org/data_1759' - Label 'PDB model number'\n", + "Entity 'http://edamontology.org/data_1762' - Label 'CATH domain report'\n", + "Entity 'http://edamontology.org/data_1764' - Label 'CATH representative domain sequences (ATOM)'\n", + "Entity 'http://edamontology.org/data_1765' - Label 'CATH representative domain sequences (COMBS)'\n", + "Entity 'http://edamontology.org/data_1766' - Label 'CATH domain sequences (ATOM)'\n", + "Entity 'http://edamontology.org/data_1767' - Label 'CATH domain sequences (COMBS)'\n", + "Entity 'http://edamontology.org/data_1771' - Label 'Sequence version'\n", + "Entity 'http://edamontology.org/data_1772' - Label 'Score'\n", + "Entity 'http://edamontology.org/data_1776' - Label 'Protein report (function)'\n", + "Entity 'http://edamontology.org/data_1783' - Label 'Gene name (ASPGD)'\n", + "Entity 'http://edamontology.org/data_1784' - Label 'Gene name (CGD)'\n", + "Entity 'http://edamontology.org/data_1785' - Label 'Gene name (dictyBase)'\n", + "Entity 'http://edamontology.org/data_1786' - Label 'Gene name (EcoGene primary)'\n", + "Entity 'http://edamontology.org/data_1787' - Label 'Gene name (MaizeGDB)'\n", + "Entity 'http://edamontology.org/data_1788' - Label 'Gene name (SGD)'\n", + "Entity 'http://edamontology.org/data_1789' - Label 'Gene name (TGD)'\n", + "Entity 'http://edamontology.org/data_1790' - Label 'Gene name (CGSC)'\n", + "Entity 'http://edamontology.org/data_1791' - Label 'Gene name (HGNC)'\n", + "Entity 'http://edamontology.org/data_1792' - Label 'Gene name (MGD)'\n", + "Entity 'http://edamontology.org/data_1793' - Label 'Gene name (Bacillus subtilis)'\n", + "Entity 'http://edamontology.org/data_1794' - Label 'Gene ID (PlasmoDB)'\n", + "Entity 'http://edamontology.org/data_1795' - Label 'Gene ID (EcoGene)'\n", + "Entity 'http://edamontology.org/data_1796' - Label 'Gene ID (FlyBase)'\n", + "Entity 'http://edamontology.org/data_1797' - Label 'Gene ID (GeneDB Glossina morsitans)'\n", + "Entity 'http://edamontology.org/data_1798' - Label 'Gene ID (GeneDB Leishmania major)'\n", + "Entity 'http://edamontology.org/data_1799' - Label 'Gene ID (GeneDB Plasmodium falciparum)'\n", + "Entity 'http://edamontology.org/data_1800' - Label 'Gene ID (GeneDB Schizosaccharomyces pombe)'\n", + "Entity 'http://edamontology.org/data_1801' - Label 'Gene ID (GeneDB Trypanosoma brucei)'\n", + "Entity 'http://edamontology.org/data_1802' - Label 'Gene ID (Gramene)'\n", + "Entity 'http://edamontology.org/data_1803' - Label 'Gene ID (Virginia microbial)'\n", + "Entity 'http://edamontology.org/data_1804' - Label 'Gene ID (SGN)'\n", + "Entity 'http://edamontology.org/data_1805' - Label 'Gene ID (WormBase)'\n", + "Entity 'http://edamontology.org/data_1806' - Label 'Gene synonym'\n", + "Entity 'http://edamontology.org/data_1807' - Label 'ORF name'\n", + "Entity 'http://edamontology.org/data_1852' - Label 'Sequence assembly component'\n", + "Entity 'http://edamontology.org/data_1853' - Label 'Chromosome annotation (aberration)'\n", + "Entity 'http://edamontology.org/data_1855' - Label 'Clone ID'\n", + "Entity 'http://edamontology.org/data_1856' - Label 'PDB insertion code'\n", + "Entity 'http://edamontology.org/data_1857' - Label 'Atomic occupancy'\n", + "Entity 'http://edamontology.org/data_1858' - Label 'Isotropic B factor'\n", + "Entity 'http://edamontology.org/data_1859' - Label 'Deletion map'\n", + "Entity 'http://edamontology.org/data_1860' - Label 'QTL map'\n", + "Entity 'http://edamontology.org/data_1863' - Label 'Haplotype map'\n", + "Entity 'http://edamontology.org/data_1864' - Label 'Map set data'\n", + "Entity 'http://edamontology.org/data_1865' - Label 'Map feature'\n", + "Entity 'http://edamontology.org/data_1866' - Label 'Map type'\n", + "Entity 'http://edamontology.org/data_1867' - Label 'Protein fold name'\n", + "Entity 'http://edamontology.org/data_1868' - Label 'Taxon'\n", + "Entity 'http://edamontology.org/data_1869' - Label 'Organism identifier'\n", + "Entity 'http://edamontology.org/data_1870' - Label 'Genus name'\n", + "Entity 'http://edamontology.org/data_1872' - Label 'Taxonomic classification'\n", + "Entity 'http://edamontology.org/data_1873' - Label 'iHOP organism ID'\n", + "Entity 'http://edamontology.org/data_1874' - Label 'Genbank common name'\n", + "Entity 'http://edamontology.org/data_1875' - Label 'NCBI taxon'\n", + "Entity 'http://edamontology.org/data_1877' - Label 'Synonym'\n", + "Entity 'http://edamontology.org/data_1878' - Label 'Misspelling'\n", + "Entity 'http://edamontology.org/data_1879' - Label 'Acronym'\n", + "Entity 'http://edamontology.org/data_1880' - Label 'Misnomer'\n", + "Entity 'http://edamontology.org/data_1881' - Label 'Author ID'\n", + "Entity 'http://edamontology.org/data_1882' - Label 'DragonDB author identifier'\n", + "Entity 'http://edamontology.org/data_1883' - Label 'Annotated URI'\n", + "Entity 'http://edamontology.org/data_1884' - Label 'UniProt keywords'\n", + "Entity 'http://edamontology.org/data_1885' - Label 'Gene ID (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_1886' - Label 'Blattner number'\n", + "Entity 'http://edamontology.org/data_1887' - Label 'Gene ID (MIPS Maize)'\n", + "Entity 'http://edamontology.org/data_1888' - Label 'Gene ID (MIPS Medicago)'\n", + "Entity 'http://edamontology.org/data_1889' - Label 'Gene name (DragonDB)'\n", + "Entity 'http://edamontology.org/data_1890' - Label 'Gene name (Arabidopsis)'\n", + "Entity 'http://edamontology.org/data_1891' - Label 'iHOP symbol'\n", + "Entity 'http://edamontology.org/data_1892' - Label 'Gene name (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_1893' - Label 'Locus ID'\n", + "Entity 'http://edamontology.org/data_1895' - Label 'Locus ID (AGI)'\n", + "Entity 'http://edamontology.org/data_1896' - Label 'Locus ID (ASPGD)'\n", + "Entity 'http://edamontology.org/data_1897' - Label 'Locus ID (MGG)'\n", + "Entity 'http://edamontology.org/data_1898' - Label 'Locus ID (CGD)'\n", + "Entity 'http://edamontology.org/data_1899' - Label 'Locus ID (CMR)'\n", + "Entity 'http://edamontology.org/data_1900' - Label 'NCBI locus tag'\n", + "Entity 'http://edamontology.org/data_1901' - Label 'Locus ID (SGD)'\n", + "Entity 'http://edamontology.org/data_1902' - Label 'Locus ID (MMP)'\n", + "Entity 'http://edamontology.org/data_1903' - Label 'Locus ID (DictyBase)'\n", + "Entity 'http://edamontology.org/data_1904' - Label 'Locus ID (EntrezGene)'\n", + "Entity 'http://edamontology.org/data_1905' - Label 'Locus ID (MaizeGDB)'\n", + "Entity 'http://edamontology.org/data_1906' - Label 'Quantitative trait locus'\n", + "Entity 'http://edamontology.org/data_1907' - Label 'Gene ID (KOME)'\n", + "Entity 'http://edamontology.org/data_1908' - Label 'Locus ID (Tropgene)'\n", + "Entity 'http://edamontology.org/data_1916' - Label 'Alignment'\n", + "Entity 'http://edamontology.org/data_1917' - Label 'Atomic property'\n", + "Entity 'http://edamontology.org/data_2007' - Label 'UniProt keyword'\n", + "Entity 'http://edamontology.org/data_2009' - Label 'Ordered locus name'\n", + "Entity 'http://edamontology.org/data_2012' - Label 'Sequence coordinates'\n", + "Entity 'http://edamontology.org/data_2016' - Label 'Amino acid property'\n", + "Entity 'http://edamontology.org/data_2018' - Label 'Annotation'\n", + "Entity 'http://edamontology.org/data_2019' - Label 'Map data'\n", + "Entity 'http://edamontology.org/data_2022' - Label 'Vienna RNA structural data'\n", + "Entity 'http://edamontology.org/data_2023' - Label 'Sequence mask parameter'\n", + "Entity 'http://edamontology.org/data_2024' - Label 'Enzyme kinetics data'\n", + "Entity 'http://edamontology.org/data_2025' - Label 'Michaelis Menten plot'\n", + "Entity 'http://edamontology.org/data_2026' - Label 'Hanes Woolf plot'\n", + "Entity 'http://edamontology.org/data_2028' - Label 'Experimental data'\n", + "Entity 'http://edamontology.org/data_2041' - Label 'Genome version information'\n", + "Entity 'http://edamontology.org/data_2042' - Label 'Evidence'\n", + "Entity 'http://edamontology.org/data_2043' - Label 'Sequence record lite'\n", + "Entity 'http://edamontology.org/data_2044' - Label 'Sequence'\n", + "Entity 'http://edamontology.org/data_2046' - Label 'Nucleic acid sequence record (lite)'\n", + "Entity 'http://edamontology.org/data_2047' - Label 'Protein sequence record (lite)'\n", + "Entity 'http://edamontology.org/data_2048' - Label 'Report'\n", + "Entity 'http://edamontology.org/data_2050' - Label 'Molecular property (general)'\n", + "Entity 'http://edamontology.org/data_2053' - Label 'Structural data'\n", + "Entity 'http://edamontology.org/data_2070' - Label 'Sequence motif (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_2071' - Label 'Sequence motif (protein)'\n", + "Entity 'http://edamontology.org/data_2079' - Label 'Search parameter'\n", + "Entity 'http://edamontology.org/data_2080' - Label 'Database search results'\n", + "Entity 'http://edamontology.org/data_2081' - Label 'Secondary structure'\n", + "Entity 'http://edamontology.org/data_2082' - Label 'Matrix'\n", + "Entity 'http://edamontology.org/data_2083' - Label 'Alignment data'\n", + "Entity 'http://edamontology.org/data_2084' - Label 'Nucleic acid report'\n", + "Entity 'http://edamontology.org/data_2085' - Label 'Structure report'\n", + "Entity 'http://edamontology.org/data_2086' - Label 'Nucleic acid structure data'\n", + "Entity 'http://edamontology.org/data_2087' - Label 'Molecular property'\n", + "Entity 'http://edamontology.org/data_2088' - Label 'DNA base structural data'\n", + "Entity 'http://edamontology.org/data_2090' - Label 'Database entry version information'\n", + "Entity 'http://edamontology.org/data_2091' - Label 'Accession'\n", + "Entity 'http://edamontology.org/data_2092' - Label 'SNP'\n", + "Entity 'http://edamontology.org/data_2093' - Label 'Data reference'\n", + "Entity 'http://edamontology.org/data_2098' - Label 'Job identifier'\n", + "Entity 'http://edamontology.org/data_2099' - Label 'Name'\n", + "Entity 'http://edamontology.org/data_2100' - Label 'Type'\n", + "Entity 'http://edamontology.org/data_2101' - Label 'Account authentication'\n", + "Entity 'http://edamontology.org/data_2102' - Label 'KEGG organism code'\n", + "Entity 'http://edamontology.org/data_2103' - Label 'Gene name (KEGG GENES)'\n", + "Entity 'http://edamontology.org/data_2104' - Label 'BioCyc ID'\n", + "Entity 'http://edamontology.org/data_2105' - Label 'Compound ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2106' - Label 'Reaction ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2107' - Label 'Enzyme ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2108' - Label 'Reaction ID'\n", + "Entity 'http://edamontology.org/data_2109' - Label 'Identifier (hybrid)'\n", + "Entity 'http://edamontology.org/data_2110' - Label 'Molecular property identifier'\n", + "Entity 'http://edamontology.org/data_2111' - Label 'Codon usage table ID'\n", + "Entity 'http://edamontology.org/data_2112' - Label 'FlyBase primary identifier'\n", + "Entity 'http://edamontology.org/data_2113' - Label 'WormBase identifier'\n", + "Entity 'http://edamontology.org/data_2114' - Label 'WormBase wormpep ID'\n", + "Entity 'http://edamontology.org/data_2116' - Label 'Nucleic acid features (codon)'\n", + "Entity 'http://edamontology.org/data_2117' - Label 'Map identifier'\n", + "Entity 'http://edamontology.org/data_2118' - Label 'Person identifier'\n", + "Entity 'http://edamontology.org/data_2119' - Label 'Nucleic acid identifier'\n", + "Entity 'http://edamontology.org/data_2126' - Label 'Translation frame specification'\n", + "Entity 'http://edamontology.org/data_2127' - Label 'Genetic code identifier'\n", + "Entity 'http://edamontology.org/data_2128' - Label 'Genetic code name'\n", + "Entity 'http://edamontology.org/data_2129' - Label 'File format name'\n", + "Entity 'http://edamontology.org/data_2130' - Label 'Sequence profile type'\n", + "Entity 'http://edamontology.org/data_2131' - Label 'Operating system name'\n", + "Entity 'http://edamontology.org/data_2132' - Label 'Mutation type'\n", + "Entity 'http://edamontology.org/data_2133' - Label 'Logical operator'\n", + "Entity 'http://edamontology.org/data_2134' - Label 'Results sort order'\n", + "Entity 'http://edamontology.org/data_2135' - Label 'Toggle'\n", + "Entity 'http://edamontology.org/data_2136' - Label 'Sequence width'\n", + "Entity 'http://edamontology.org/data_2137' - Label 'Gap penalty'\n", + "Entity 'http://edamontology.org/data_2139' - Label 'Nucleic acid melting temperature'\n", + "Entity 'http://edamontology.org/data_2140' - Label 'Concentration'\n", + "Entity 'http://edamontology.org/data_2141' - Label 'Window step size'\n", + "Entity 'http://edamontology.org/data_2142' - Label 'EMBOSS graph'\n", + "Entity 'http://edamontology.org/data_2143' - Label 'EMBOSS report'\n", + "Entity 'http://edamontology.org/data_2145' - Label 'Sequence offset'\n", + "Entity 'http://edamontology.org/data_2146' - Label 'Threshold'\n", + "Entity 'http://edamontology.org/data_2147' - Label 'Protein report (transcription factor)'\n", + "Entity 'http://edamontology.org/data_2149' - Label 'Database category name'\n", + "Entity 'http://edamontology.org/data_2150' - Label 'Sequence profile name'\n", + "Entity 'http://edamontology.org/data_2151' - Label 'Color'\n", + "Entity 'http://edamontology.org/data_2152' - Label 'Rendering parameter'\n", + "Entity 'http://edamontology.org/data_2154' - Label 'Sequence name'\n", + "Entity 'http://edamontology.org/data_2156' - Label 'Date'\n", + "Entity 'http://edamontology.org/data_2157' - Label 'Word composition'\n", + "Entity 'http://edamontology.org/data_2160' - Label 'Fickett testcode plot'\n", + "Entity 'http://edamontology.org/data_2161' - Label 'Sequence similarity plot'\n", + "Entity 'http://edamontology.org/data_2162' - Label 'Helical wheel'\n", + "Entity 'http://edamontology.org/data_2163' - Label 'Helical net'\n", + "Entity 'http://edamontology.org/data_2164' - Label 'Protein sequence properties plot'\n", + "Entity 'http://edamontology.org/data_2165' - Label 'Protein ionisation curve'\n", + "Entity 'http://edamontology.org/data_2166' - Label 'Sequence composition plot'\n", + "Entity 'http://edamontology.org/data_2167' - Label 'Nucleic acid density plot'\n", + "Entity 'http://edamontology.org/data_2168' - Label 'Sequence trace image'\n", + "Entity 'http://edamontology.org/data_2169' - Label 'Nucleic acid features (siRNA)'\n", + "Entity 'http://edamontology.org/data_2173' - Label 'Sequence set (stream)'\n", + "Entity 'http://edamontology.org/data_2174' - Label 'FlyBase secondary identifier'\n", + "Entity 'http://edamontology.org/data_2176' - Label 'Cardinality'\n", + "Entity 'http://edamontology.org/data_2177' - Label 'Exactly 1'\n", + "Entity 'http://edamontology.org/data_2178' - Label '1 or more'\n", + "Entity 'http://edamontology.org/data_2179' - Label 'Exactly 2'\n", + "Entity 'http://edamontology.org/data_2180' - Label '2 or more'\n", + "Entity 'http://edamontology.org/data_2190' - Label 'Sequence checksum'\n", + "Entity 'http://edamontology.org/data_2191' - Label 'Protein features report (chemical modifications)'\n", + "Entity 'http://edamontology.org/data_2192' - Label 'Error'\n", + "Entity 'http://edamontology.org/data_2193' - Label 'Database entry metadata'\n", + "Entity 'http://edamontology.org/data_2198' - Label 'Gene cluster'\n", + "Entity 'http://edamontology.org/data_2201' - Label 'Sequence record full'\n", + "Entity 'http://edamontology.org/data_2208' - Label 'Plasmid identifier'\n", + "Entity 'http://edamontology.org/data_2209' - Label 'Mutation ID'\n", + "Entity 'http://edamontology.org/data_2212' - Label 'Mutation annotation (basic)'\n", + "Entity 'http://edamontology.org/data_2213' - Label 'Mutation annotation (prevalence)'\n", + "Entity 'http://edamontology.org/data_2214' - Label 'Mutation annotation (prognostic)'\n", + "Entity 'http://edamontology.org/data_2215' - Label 'Mutation annotation (functional)'\n", + "Entity 'http://edamontology.org/data_2216' - Label 'Codon number'\n", + "Entity 'http://edamontology.org/data_2217' - Label 'Tumor annotation'\n", + "Entity 'http://edamontology.org/data_2218' - Label 'Server metadata'\n", + "Entity 'http://edamontology.org/data_2219' - Label 'Database field name'\n", + "Entity 'http://edamontology.org/data_2220' - Label 'Sequence cluster ID (SYSTERS)'\n", + "Entity 'http://edamontology.org/data_2223' - Label 'Ontology metadata'\n", + "Entity 'http://edamontology.org/data_2235' - Label 'Raw SCOP domain classification'\n", + "Entity 'http://edamontology.org/data_2236' - Label 'Raw CATH domain classification'\n", + "Entity 'http://edamontology.org/data_2240' - Label 'Heterogen annotation'\n", + "Entity 'http://edamontology.org/data_2242' - Label 'Phylogenetic property values'\n", + "Entity 'http://edamontology.org/data_2245' - Label 'Sequence set (bootstrapped)'\n", + "Entity 'http://edamontology.org/data_2247' - Label 'Phylogenetic consensus tree'\n", + "Entity 'http://edamontology.org/data_2248' - Label 'Schema'\n", + "Entity 'http://edamontology.org/data_2249' - Label 'DTD'\n", + "Entity 'http://edamontology.org/data_2250' - Label 'XML Schema'\n", + "Entity 'http://edamontology.org/data_2251' - Label 'Relax-NG schema'\n", + "Entity 'http://edamontology.org/data_2252' - Label 'XSLT stylesheet'\n", + "Entity 'http://edamontology.org/data_2253' - Label 'Data resource definition name'\n", + "Entity 'http://edamontology.org/data_2254' - Label 'OBO file format name'\n", + "Entity 'http://edamontology.org/data_2285' - Label 'Gene ID (MIPS)'\n", + "Entity 'http://edamontology.org/data_2288' - Label 'Sequence identifier (protein)'\n", + "Entity 'http://edamontology.org/data_2289' - Label 'Sequence identifier (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_2290' - Label 'EMBL accession'\n", + "Entity 'http://edamontology.org/data_2291' - Label 'UniProt ID'\n", + "Entity 'http://edamontology.org/data_2292' - Label 'GenBank accession'\n", + "Entity 'http://edamontology.org/data_2293' - Label 'Gramene secondary identifier'\n", + "Entity 'http://edamontology.org/data_2294' - Label 'Sequence variation ID'\n", + "Entity 'http://edamontology.org/data_2295' - Label 'Gene ID'\n", + "Entity 'http://edamontology.org/data_2296' - Label 'Gene name (AceView)'\n", + "Entity 'http://edamontology.org/data_2297' - Label 'Gene ID (ECK)'\n", + "Entity 'http://edamontology.org/data_2298' - Label 'Gene ID (HGNC)'\n", + "Entity 'http://edamontology.org/data_2299' - Label 'Gene name'\n", + "Entity 'http://edamontology.org/data_2300' - Label 'Gene name (NCBI)'\n", + "Entity 'http://edamontology.org/data_2301' - Label 'SMILES string'\n", + "Entity 'http://edamontology.org/data_2302' - Label 'STRING ID'\n", + "Entity 'http://edamontology.org/data_2307' - Label 'Virus annotation'\n", + "Entity 'http://edamontology.org/data_2308' - Label 'Virus annotation (taxonomy)'\n", + "Entity 'http://edamontology.org/data_2309' - Label 'Reaction ID (SABIO-RK)'\n", + "Entity 'http://edamontology.org/data_2313' - Label 'Carbohydrate report'\n", + "Entity 'http://edamontology.org/data_2314' - Label 'GI number'\n", + "Entity 'http://edamontology.org/data_2315' - Label 'NCBI version'\n", + "Entity 'http://edamontology.org/data_2316' - Label 'Cell line name'\n", + "Entity 'http://edamontology.org/data_2317' - Label 'Cell line name (exact)'\n", + "Entity 'http://edamontology.org/data_2318' - Label 'Cell line name (truncated)'\n", + "Entity 'http://edamontology.org/data_2319' - Label 'Cell line name (no punctuation)'\n", + "Entity 'http://edamontology.org/data_2320' - Label 'Cell line name (assonant)'\n", + "Entity 'http://edamontology.org/data_2321' - Label 'Enzyme ID'\n", + "Entity 'http://edamontology.org/data_2325' - Label 'REBASE enzyme number'\n", + "Entity 'http://edamontology.org/data_2326' - Label 'DrugBank ID'\n", + "Entity 'http://edamontology.org/data_2327' - Label 'GI number (protein)'\n", + "Entity 'http://edamontology.org/data_2335' - Label 'Bit score'\n", + "Entity 'http://edamontology.org/data_2336' - Label 'Translation phase specification'\n", + "Entity 'http://edamontology.org/data_2337' - Label 'Resource metadata'\n", + "Entity 'http://edamontology.org/data_2338' - Label 'Ontology identifier'\n", + "Entity 'http://edamontology.org/data_2339' - Label 'Ontology concept name'\n", + "Entity 'http://edamontology.org/data_2340' - Label 'Genome build identifier'\n", + "Entity 'http://edamontology.org/data_2342' - Label 'Pathway or network name'\n", + "Entity 'http://edamontology.org/data_2343' - Label 'Pathway ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2344' - Label 'Pathway ID (NCI-Nature)'\n", + "Entity 'http://edamontology.org/data_2345' - Label 'Pathway ID (ConsensusPathDB)'\n", + "Entity 'http://edamontology.org/data_2346' - Label 'Sequence cluster ID (UniRef)'\n", + "Entity 'http://edamontology.org/data_2347' - Label 'Sequence cluster ID (UniRef100)'\n", + "Entity 'http://edamontology.org/data_2348' - Label 'Sequence cluster ID (UniRef90)'\n", + "Entity 'http://edamontology.org/data_2349' - Label 'Sequence cluster ID (UniRef50)'\n", + "Entity 'http://edamontology.org/data_2353' - Label 'Ontology data'\n", + "Entity 'http://edamontology.org/data_2354' - Label 'RNA family report'\n", + "Entity 'http://edamontology.org/data_2355' - Label 'RNA family identifier'\n", + "Entity 'http://edamontology.org/data_2356' - Label 'RFAM accession'\n", + "Entity 'http://edamontology.org/data_2357' - Label 'Protein signature type'\n", + "Entity 'http://edamontology.org/data_2358' - Label 'Domain-nucleic acid interaction report'\n", + "Entity 'http://edamontology.org/data_2359' - Label 'Domain-domain interactions'\n", + "Entity 'http://edamontology.org/data_2360' - Label 'Domain-domain interaction (indirect)'\n", + "Entity 'http://edamontology.org/data_2362' - Label 'Sequence accession (hybrid)'\n", + "Entity 'http://edamontology.org/data_2363' - Label '2D PAGE data'\n", + "Entity 'http://edamontology.org/data_2364' - Label '2D PAGE report'\n", + "Entity 'http://edamontology.org/data_2365' - Label 'Pathway or network accession'\n", + "Entity 'http://edamontology.org/data_2366' - Label 'Secondary structure alignment'\n", + "Entity 'http://edamontology.org/data_2367' - Label 'ASTD ID'\n", + "Entity 'http://edamontology.org/data_2368' - Label 'ASTD ID (exon)'\n", + "Entity 'http://edamontology.org/data_2369' - Label 'ASTD ID (intron)'\n", + "Entity 'http://edamontology.org/data_2370' - Label 'ASTD ID (polya)'\n", + "Entity 'http://edamontology.org/data_2371' - Label 'ASTD ID (tss)'\n", + "Entity 'http://edamontology.org/data_2372' - Label '2D PAGE spot report'\n", + "Entity 'http://edamontology.org/data_2373' - Label 'Spot ID'\n", + "Entity 'http://edamontology.org/data_2374' - Label 'Spot serial number'\n", + "Entity 'http://edamontology.org/data_2375' - Label 'Spot ID (HSC-2DPAGE)'\n", + "Entity 'http://edamontology.org/data_2378' - Label 'Protein-motif interaction'\n", + "Entity 'http://edamontology.org/data_2379' - Label 'Strain identifier'\n", + "Entity 'http://edamontology.org/data_2380' - Label 'CABRI accession'\n", + "Entity 'http://edamontology.org/data_2381' - Label 'Experiment report (genotyping)'\n", + "Entity 'http://edamontology.org/data_2382' - Label 'Genotype experiment ID'\n", + "Entity 'http://edamontology.org/data_2383' - Label 'EGA accession'\n", + "Entity 'http://edamontology.org/data_2384' - Label 'IPI protein ID'\n", + "Entity 'http://edamontology.org/data_2385' - Label 'RefSeq accession (protein)'\n", + "Entity 'http://edamontology.org/data_2386' - Label 'EPD ID'\n", + "Entity 'http://edamontology.org/data_2387' - Label 'TAIR accession'\n", + "Entity 'http://edamontology.org/data_2388' - Label 'TAIR accession (At gene)'\n", + "Entity 'http://edamontology.org/data_2389' - Label 'UniSTS accession'\n", + "Entity 'http://edamontology.org/data_2390' - Label 'UNITE accession'\n", + "Entity 'http://edamontology.org/data_2391' - Label 'UTR accession'\n", + "Entity 'http://edamontology.org/data_2392' - Label 'UniParc accession'\n", + "Entity 'http://edamontology.org/data_2393' - Label 'mFLJ/mKIAA number'\n", + "Entity 'http://edamontology.org/data_2395' - Label 'Fungi annotation'\n", + "Entity 'http://edamontology.org/data_2396' - Label 'Fungi annotation (anamorph)'\n", + "Entity 'http://edamontology.org/data_2398' - Label 'Ensembl protein ID'\n", + "Entity 'http://edamontology.org/data_2400' - Label 'Toxin annotation'\n", + "Entity 'http://edamontology.org/data_2401' - Label 'Protein report (membrane protein)'\n", + "Entity 'http://edamontology.org/data_2402' - Label 'Protein-drug interaction report'\n", + "Entity 'http://edamontology.org/data_2522' - Label 'Map data'\n", + "Entity 'http://edamontology.org/data_2523' - Label 'Phylogenetic data'\n", + "Entity 'http://edamontology.org/data_2524' - Label 'Protein data'\n", + "Entity 'http://edamontology.org/data_2525' - Label 'Nucleic acid data'\n", + "Entity 'http://edamontology.org/data_2526' - Label 'Text data'\n", + "Entity 'http://edamontology.org/data_2527' - Label 'Parameter'\n", + "Entity 'http://edamontology.org/data_2528' - Label 'Molecular data'\n", + "Entity 'http://edamontology.org/data_2529' - Label 'Molecule report'\n", + "Entity 'http://edamontology.org/data_2530' - Label 'Organism report'\n", + "Entity 'http://edamontology.org/data_2531' - Label 'Protocol'\n", + "Entity 'http://edamontology.org/data_2534' - Label 'Sequence attribute'\n", + "Entity 'http://edamontology.org/data_2535' - Label 'Sequence tag profile'\n", + "Entity 'http://edamontology.org/data_2536' - Label 'Mass spectrometry data'\n", + "Entity 'http://edamontology.org/data_2537' - Label 'Protein structure raw data'\n", + "Entity 'http://edamontology.org/data_2538' - Label 'Mutation identifier'\n", + "Entity 'http://edamontology.org/data_2539' - Label 'Alignment data'\n", + "Entity 'http://edamontology.org/data_2540' - Label 'Data index data'\n", + "Entity 'http://edamontology.org/data_2563' - Label 'Amino acid name (single letter)'\n", + "Entity 'http://edamontology.org/data_2564' - Label 'Amino acid name (three letter)'\n", + "Entity 'http://edamontology.org/data_2565' - Label 'Amino acid name (full name)'\n", + "Entity 'http://edamontology.org/data_2576' - Label 'Toxin identifier'\n", + "Entity 'http://edamontology.org/data_2578' - Label 'ArachnoServer ID'\n", + "Entity 'http://edamontology.org/data_2579' - Label 'Expressed gene list'\n", + "Entity 'http://edamontology.org/data_2580' - Label 'BindingDB Monomer ID'\n", + "Entity 'http://edamontology.org/data_2581' - Label 'GO concept name'\n", + "Entity 'http://edamontology.org/data_2582' - Label 'GO concept ID (biological process)'\n", + "Entity 'http://edamontology.org/data_2583' - Label 'GO concept ID (molecular function)'\n", + "Entity 'http://edamontology.org/data_2584' - Label 'GO concept name (cellular component)'\n", + "Entity 'http://edamontology.org/data_2586' - Label 'Northern blot image'\n", + "Entity 'http://edamontology.org/data_2587' - Label 'Blot ID'\n", + "Entity 'http://edamontology.org/data_2588' - Label 'BlotBase blot ID'\n", + "Entity 'http://edamontology.org/data_2589' - Label 'Hierarchy'\n", + "Entity 'http://edamontology.org/data_2590' - Label 'Hierarchy identifier'\n", + "Entity 'http://edamontology.org/data_2591' - Label 'Brite hierarchy ID'\n", + "Entity 'http://edamontology.org/data_2592' - Label 'Cancer type'\n", + "Entity 'http://edamontology.org/data_2593' - Label 'BRENDA organism ID'\n", + "Entity 'http://edamontology.org/data_2594' - Label 'UniGene taxon'\n", + "Entity 'http://edamontology.org/data_2595' - Label 'UTRdb taxon'\n", + "Entity 'http://edamontology.org/data_2596' - Label 'Catalogue ID'\n", + "Entity 'http://edamontology.org/data_2597' - Label 'CABRI catalogue name'\n", + "Entity 'http://edamontology.org/data_2598' - Label 'Secondary structure alignment metadata'\n", + "Entity 'http://edamontology.org/data_2599' - Label 'Molecule interaction report'\n", + "Entity 'http://edamontology.org/data_2600' - Label 'Pathway or network'\n", + "Entity 'http://edamontology.org/data_2601' - Label 'Small molecule data'\n", + "Entity 'http://edamontology.org/data_2602' - Label 'Genotype and phenotype data'\n", + "Entity 'http://edamontology.org/data_2603' - Label 'Expression data'\n", + "Entity 'http://edamontology.org/data_2605' - Label 'Compound ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2606' - Label 'RFAM name'\n", + "Entity 'http://edamontology.org/data_2608' - Label 'Reaction ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2609' - Label 'Drug ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2610' - Label 'Ensembl ID'\n", + "Entity 'http://edamontology.org/data_2611' - Label 'ICD identifier'\n", + "Entity 'http://edamontology.org/data_2612' - Label 'Sequence cluster ID (CluSTr)'\n", + "Entity 'http://edamontology.org/data_2613' - Label 'KEGG Glycan ID'\n", + "Entity 'http://edamontology.org/data_2614' - Label 'TCDB ID'\n", + "Entity 'http://edamontology.org/data_2615' - Label 'MINT ID'\n", + "Entity 'http://edamontology.org/data_2616' - Label 'DIP ID'\n", + "Entity 'http://edamontology.org/data_2617' - Label 'Signaling Gateway protein ID'\n", + "Entity 'http://edamontology.org/data_2618' - Label 'Protein modification ID'\n", + "Entity 'http://edamontology.org/data_2619' - Label 'RESID ID'\n", + "Entity 'http://edamontology.org/data_2620' - Label 'RGD ID'\n", + "Entity 'http://edamontology.org/data_2621' - Label 'TAIR accession (protein)'\n", + "Entity 'http://edamontology.org/data_2622' - Label 'Compound ID (HMDB)'\n", + "Entity 'http://edamontology.org/data_2625' - Label 'LIPID MAPS ID'\n", + "Entity 'http://edamontology.org/data_2626' - Label 'PeptideAtlas ID'\n", + "Entity 'http://edamontology.org/data_2627' - Label 'Molecular interaction ID'\n", + "Entity 'http://edamontology.org/data_2628' - Label 'BioGRID interaction ID'\n", + "Entity 'http://edamontology.org/data_2629' - Label 'Enzyme ID (MEROPS)'\n", + "Entity 'http://edamontology.org/data_2630' - Label 'Mobile genetic element ID'\n", + "Entity 'http://edamontology.org/data_2631' - Label 'ACLAME ID'\n", + "Entity 'http://edamontology.org/data_2632' - Label 'SGD ID'\n", + "Entity 'http://edamontology.org/data_2633' - Label 'Book ID'\n", + "Entity 'http://edamontology.org/data_2634' - Label 'ISBN'\n", + "Entity 'http://edamontology.org/data_2635' - Label 'Compound ID (3DMET)'\n", + "Entity 'http://edamontology.org/data_2636' - Label 'MatrixDB interaction ID'\n", + "Entity 'http://edamontology.org/data_2637' - Label 'cPath ID'\n", + "Entity 'http://edamontology.org/data_2638' - Label 'PubChem bioassay ID'\n", + "Entity 'http://edamontology.org/data_2639' - Label 'PubChem ID'\n", + "Entity 'http://edamontology.org/data_2641' - Label 'Reaction ID (MACie)'\n", + "Entity 'http://edamontology.org/data_2642' - Label 'Gene ID (miRBase)'\n", + "Entity 'http://edamontology.org/data_2643' - Label 'Gene ID (ZFIN)'\n", + "Entity 'http://edamontology.org/data_2644' - Label 'Reaction ID (Rhea)'\n", + "Entity 'http://edamontology.org/data_2645' - Label 'Pathway ID (Unipathway)'\n", + "Entity 'http://edamontology.org/data_2646' - Label 'Compound ID (ChEMBL)'\n", + "Entity 'http://edamontology.org/data_2647' - Label 'LGICdb identifier'\n", + "Entity 'http://edamontology.org/data_2648' - Label 'Reaction kinetics ID (SABIO-RK)'\n", + "Entity 'http://edamontology.org/data_2649' - Label 'PharmGKB ID'\n", + "Entity 'http://edamontology.org/data_2650' - Label 'Pathway ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2651' - Label 'Disease ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2652' - Label 'Drug ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2653' - Label 'Drug ID (TTD)'\n", + "Entity 'http://edamontology.org/data_2654' - Label 'Target ID (TTD)'\n", + "Entity 'http://edamontology.org/data_2655' - Label 'Cell type identifier'\n", + "Entity 'http://edamontology.org/data_2656' - Label 'NeuronDB ID'\n", + "Entity 'http://edamontology.org/data_2657' - Label 'NeuroMorpho ID'\n", + "Entity 'http://edamontology.org/data_2658' - Label 'Compound ID (ChemIDplus)'\n", + "Entity 'http://edamontology.org/data_2659' - Label 'Pathway ID (SMPDB)'\n", + "Entity 'http://edamontology.org/data_2660' - Label 'BioNumbers ID'\n", + "Entity 'http://edamontology.org/data_2662' - Label 'T3DB ID'\n", + "Entity 'http://edamontology.org/data_2663' - Label 'Carbohydrate identifier'\n", + "Entity 'http://edamontology.org/data_2664' - Label 'GlycomeDB ID'\n", + "Entity 'http://edamontology.org/data_2665' - Label 'LipidBank ID'\n", + "Entity 'http://edamontology.org/data_2666' - Label 'CDD ID'\n", + "Entity 'http://edamontology.org/data_2667' - Label 'MMDB ID'\n", + "Entity 'http://edamontology.org/data_2668' - Label 'iRefIndex ID'\n", + "Entity 'http://edamontology.org/data_2669' - Label 'ModelDB ID'\n", + "Entity 'http://edamontology.org/data_2670' - Label 'Pathway ID (DQCS)'\n", + "Entity 'http://edamontology.org/data_2671' - Label 'Ensembl ID (Homo sapiens)'\n", + "Entity 'http://edamontology.org/data_2672' - Label 'Ensembl ID ('Bos taurus')'\n", + "Entity 'http://edamontology.org/data_2673' - Label 'Ensembl ID ('Canis familiaris')'\n", + "Entity 'http://edamontology.org/data_2674' - Label 'Ensembl ID ('Cavia porcellus')'\n", + "Entity 'http://edamontology.org/data_2675' - Label 'Ensembl ID ('Ciona intestinalis')'\n", + "Entity 'http://edamontology.org/data_2676' - Label 'Ensembl ID ('Ciona savignyi')'\n", + "Entity 'http://edamontology.org/data_2677' - Label 'Ensembl ID ('Danio rerio')'\n", + "Entity 'http://edamontology.org/data_2678' - Label 'Ensembl ID ('Dasypus novemcinctus')'\n", + "Entity 'http://edamontology.org/data_2679' - Label 'Ensembl ID ('Echinops telfairi')'\n", + "Entity 'http://edamontology.org/data_2680' - Label 'Ensembl ID ('Erinaceus europaeus')'\n", + "Entity 'http://edamontology.org/data_2681' - Label 'Ensembl ID ('Felis catus')'\n", + "Entity 'http://edamontology.org/data_2682' - Label 'Ensembl ID ('Gallus gallus')'\n", + "Entity 'http://edamontology.org/data_2683' - Label 'Ensembl ID ('Gasterosteus aculeatus')'\n", + "Entity 'http://edamontology.org/data_2684' - Label 'Ensembl ID ('Homo sapiens')'\n", + "Entity 'http://edamontology.org/data_2685' - Label 'Ensembl ID ('Loxodonta africana')'\n", + "Entity 'http://edamontology.org/data_2686' - Label 'Ensembl ID ('Macaca mulatta')'\n", + "Entity 'http://edamontology.org/data_2687' - Label 'Ensembl ID ('Monodelphis domestica')'\n", + "Entity 'http://edamontology.org/data_2688' - Label 'Ensembl ID ('Mus musculus')'\n", + "Entity 'http://edamontology.org/data_2689' - Label 'Ensembl ID ('Myotis lucifugus')'\n", + "Entity 'http://edamontology.org/data_2690' - Label 'Ensembl ID (\"Ornithorhynchus anatinus\")'\n", + "Entity 'http://edamontology.org/data_2691' - Label 'Ensembl ID ('Oryctolagus cuniculus')'\n", + "Entity 'http://edamontology.org/data_2692' - Label 'Ensembl ID ('Oryzias latipes')'\n", + "Entity 'http://edamontology.org/data_2693' - Label 'Ensembl ID ('Otolemur garnettii')'\n", + "Entity 'http://edamontology.org/data_2694' - Label 'Ensembl ID ('Pan troglodytes')'\n", + "Entity 'http://edamontology.org/data_2695' - Label 'Ensembl ID ('Rattus norvegicus')'\n", + "Entity 'http://edamontology.org/data_2696' - Label 'Ensembl ID ('Spermophilus tridecemlineatus')'\n", + "Entity 'http://edamontology.org/data_2697' - Label 'Ensembl ID ('Takifugu rubripes')'\n", + "Entity 'http://edamontology.org/data_2698' - Label 'Ensembl ID ('Tupaia belangeri')'\n", + "Entity 'http://edamontology.org/data_2699' - Label 'Ensembl ID ('Xenopus tropicalis')'\n", + "Entity 'http://edamontology.org/data_2700' - Label 'CATH identifier'\n", + "Entity 'http://edamontology.org/data_2701' - Label 'CATH node ID (family)'\n", + "Entity 'http://edamontology.org/data_2702' - Label 'Enzyme ID (CAZy)'\n", + "Entity 'http://edamontology.org/data_2704' - Label 'Clone ID (IMAGE)'\n", + "Entity 'http://edamontology.org/data_2705' - Label 'GO concept ID (cellular component)'\n", + "Entity 'http://edamontology.org/data_2706' - Label 'Chromosome name (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2709' - Label 'CleanEx entry name'\n", + "Entity 'http://edamontology.org/data_2710' - Label 'CleanEx dataset code'\n", + "Entity 'http://edamontology.org/data_2711' - Label 'Genome report'\n", + "Entity 'http://edamontology.org/data_2713' - Label 'Protein ID (CORUM)'\n", + "Entity 'http://edamontology.org/data_2714' - Label 'CDD PSSM-ID'\n", + "Entity 'http://edamontology.org/data_2715' - Label 'Protein ID (CuticleDB)'\n", + "Entity 'http://edamontology.org/data_2716' - Label 'DBD ID'\n", + "Entity 'http://edamontology.org/data_2717' - Label 'Oligonucleotide probe annotation'\n", + "Entity 'http://edamontology.org/data_2718' - Label 'Oligonucleotide ID'\n", + "Entity 'http://edamontology.org/data_2719' - Label 'dbProbe ID'\n", + "Entity 'http://edamontology.org/data_2720' - Label 'Dinucleotide property'\n", + "Entity 'http://edamontology.org/data_2721' - Label 'DiProDB ID'\n", + "Entity 'http://edamontology.org/data_2722' - Label 'Protein features report (disordered structure)'\n", + "Entity 'http://edamontology.org/data_2723' - Label 'Protein ID (DisProt)'\n", + "Entity 'http://edamontology.org/data_2724' - Label 'Embryo report'\n", + "Entity 'http://edamontology.org/data_2725' - Label 'Ensembl transcript ID'\n", + "Entity 'http://edamontology.org/data_2726' - Label 'Inhibitor annotation'\n", + "Entity 'http://edamontology.org/data_2727' - Label 'Promoter ID'\n", + "Entity 'http://edamontology.org/data_2728' - Label 'EST accession'\n", + "Entity 'http://edamontology.org/data_2729' - Label 'COGEME EST ID'\n", + "Entity 'http://edamontology.org/data_2730' - Label 'COGEME unisequence ID'\n", + "Entity 'http://edamontology.org/data_2731' - Label 'Protein family ID (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_2732' - Label 'Family name'\n", + "Entity 'http://edamontology.org/data_2733' - Label 'Genus name (virus)'\n", + "Entity 'http://edamontology.org/data_2734' - Label 'Family name (virus)'\n", + "Entity 'http://edamontology.org/data_2735' - Label 'Database name (SwissRegulon)'\n", + "Entity 'http://edamontology.org/data_2736' - Label 'Sequence feature ID (SwissRegulon)'\n", + "Entity 'http://edamontology.org/data_2737' - Label 'FIG ID'\n", + "Entity 'http://edamontology.org/data_2738' - Label 'Gene ID (Xenbase)'\n", + "Entity 'http://edamontology.org/data_2739' - Label 'Gene ID (Genolist)'\n", + "Entity 'http://edamontology.org/data_2740' - Label 'Gene name (Genolist)'\n", + "Entity 'http://edamontology.org/data_2741' - Label 'ABS ID'\n", + "Entity 'http://edamontology.org/data_2742' - Label 'AraC-XylS ID'\n", + "Entity 'http://edamontology.org/data_2743' - Label 'Gene name (HUGO)'\n", + "Entity 'http://edamontology.org/data_2744' - Label 'Locus ID (PseudoCAP)'\n", + "Entity 'http://edamontology.org/data_2745' - Label 'Locus ID (UTR)'\n", + "Entity 'http://edamontology.org/data_2746' - Label 'MonosaccharideDB ID'\n", + "Entity 'http://edamontology.org/data_2747' - Label 'Database name (CMD)'\n", + "Entity 'http://edamontology.org/data_2748' - Label 'Database name (Osteogenesis)'\n", + "Entity 'http://edamontology.org/data_2749' - Label 'Genome identifier'\n", + "Entity 'http://edamontology.org/data_2751' - Label 'GenomeReviews ID'\n", + "Entity 'http://edamontology.org/data_2752' - Label 'GlycoMap ID'\n", + "Entity 'http://edamontology.org/data_2753' - Label 'Carbohydrate conformational map'\n", + "Entity 'http://edamontology.org/data_2755' - Label 'Transcription factor name'\n", + "Entity 'http://edamontology.org/data_2756' - Label 'TCID'\n", + "Entity 'http://edamontology.org/data_2757' - Label 'Pfam domain name'\n", + "Entity 'http://edamontology.org/data_2758' - Label 'Pfam clan ID'\n", + "Entity 'http://edamontology.org/data_2759' - Label 'Gene ID (VectorBase)'\n", + "Entity 'http://edamontology.org/data_2761' - Label 'UTRSite ID'\n", + "Entity 'http://edamontology.org/data_2762' - Label 'Sequence signature report'\n", + "Entity 'http://edamontology.org/data_2763' - Label 'Locus annotation'\n", + "Entity 'http://edamontology.org/data_2764' - Label 'Protein name (UniProt)'\n", + "Entity 'http://edamontology.org/data_2765' - Label 'Term ID list'\n", + "Entity 'http://edamontology.org/data_2766' - Label 'HAMAP ID'\n", + "Entity 'http://edamontology.org/data_2767' - Label 'Identifier with metadata'\n", + "Entity 'http://edamontology.org/data_2768' - Label 'Gene symbol annotation'\n", + "Entity 'http://edamontology.org/data_2769' - Label 'Transcript ID'\n", + "Entity 'http://edamontology.org/data_2770' - Label 'HIT ID'\n", + "Entity 'http://edamontology.org/data_2771' - Label 'HIX ID'\n", + "Entity 'http://edamontology.org/data_2772' - Label 'HPA antibody id'\n", + "Entity 'http://edamontology.org/data_2773' - Label 'IMGT/HLA ID'\n", + "Entity 'http://edamontology.org/data_2774' - Label 'Gene ID (JCVI)'\n", + "Entity 'http://edamontology.org/data_2775' - Label 'Kinase name'\n", + "Entity 'http://edamontology.org/data_2776' - Label 'ConsensusPathDB entity ID'\n", + "Entity 'http://edamontology.org/data_2777' - Label 'ConsensusPathDB entity name'\n", + "Entity 'http://edamontology.org/data_2778' - Label 'CCAP strain number'\n", + "Entity 'http://edamontology.org/data_2779' - Label 'Stock number'\n", + "Entity 'http://edamontology.org/data_2780' - Label 'Stock number (TAIR)'\n", + "Entity 'http://edamontology.org/data_2781' - Label 'REDIdb ID'\n", + "Entity 'http://edamontology.org/data_2782' - Label 'SMART domain name'\n", + "Entity 'http://edamontology.org/data_2783' - Label 'Protein family ID (PANTHER)'\n", + "Entity 'http://edamontology.org/data_2784' - Label 'RNAVirusDB ID'\n", + "Entity 'http://edamontology.org/data_2785' - Label 'Virus identifier'\n", + "Entity 'http://edamontology.org/data_2786' - Label 'NCBI Genome Project ID'\n", + "Entity 'http://edamontology.org/data_2787' - Label 'NCBI genome accession'\n", + "Entity 'http://edamontology.org/data_2788' - Label 'Sequence profile data'\n", + "Entity 'http://edamontology.org/data_2789' - Label 'Protein ID (TopDB)'\n", + "Entity 'http://edamontology.org/data_2790' - Label 'Gel ID'\n", + "Entity 'http://edamontology.org/data_2791' - Label 'Reference map name (SWISS-2DPAGE)'\n", + "Entity 'http://edamontology.org/data_2792' - Label 'Protein ID (PeroxiBase)'\n", + "Entity 'http://edamontology.org/data_2793' - Label 'SISYPHUS ID'\n", + "Entity 'http://edamontology.org/data_2794' - Label 'ORF ID'\n", + "Entity 'http://edamontology.org/data_2795' - Label 'ORF identifier'\n", + "Entity 'http://edamontology.org/data_2796' - Label 'LINUCS ID'\n", + "Entity 'http://edamontology.org/data_2797' - Label 'Protein ID (LGICdb)'\n", + "Entity 'http://edamontology.org/data_2798' - Label 'MaizeDB ID'\n", + "Entity 'http://edamontology.org/data_2799' - Label 'Gene ID (MfunGD)'\n", + "Entity 'http://edamontology.org/data_2800' - Label 'Orpha number'\n", + "Entity 'http://edamontology.org/data_2802' - Label 'Protein ID (EcID)'\n", + "Entity 'http://edamontology.org/data_2803' - Label 'Clone ID (RefSeq)'\n", + "Entity 'http://edamontology.org/data_2804' - Label 'Protein ID (ConoServer)'\n", + "Entity 'http://edamontology.org/data_2805' - Label 'GeneSNP ID'\n", + "Entity 'http://edamontology.org/data_2812' - Label 'Lipid identifier'\n", + "Entity 'http://edamontology.org/data_2831' - Label 'Databank'\n", + "Entity 'http://edamontology.org/data_2832' - Label 'Web portal'\n", + "Entity 'http://edamontology.org/data_2835' - Label 'Gene ID (VBASE2)'\n", + "Entity 'http://edamontology.org/data_2836' - Label 'DPVweb ID'\n", + "Entity 'http://edamontology.org/data_2837' - Label 'Pathway ID (BioSystems)'\n", + "Entity 'http://edamontology.org/data_2838' - Label 'Experimental data (proteomics)'\n", + "Entity 'http://edamontology.org/data_2849' - Label 'Abstract'\n", + "Entity 'http://edamontology.org/data_2850' - Label 'Lipid structure'\n", + "Entity 'http://edamontology.org/data_2851' - Label 'Drug structure'\n", + "Entity 'http://edamontology.org/data_2852' - Label 'Toxin structure'\n", + "Entity 'http://edamontology.org/data_2854' - Label 'Position-specific scoring matrix'\n", + "Entity 'http://edamontology.org/data_2855' - Label 'Distance matrix'\n", + "Entity 'http://edamontology.org/data_2856' - Label 'Structural distance matrix'\n", + "Entity 'http://edamontology.org/data_2857' - Label 'Article metadata'\n", + "Entity 'http://edamontology.org/data_2858' - Label 'Ontology concept'\n", + "Entity 'http://edamontology.org/data_2865' - Label 'Codon usage bias'\n", + "Entity 'http://edamontology.org/data_2866' - Label 'Northern blot report'\n", + "Entity 'http://edamontology.org/data_2870' - Label 'Radiation hybrid map'\n", + "Entity 'http://edamontology.org/data_2872' - Label 'ID list'\n", + "Entity 'http://edamontology.org/data_2873' - Label 'Phylogenetic gene frequencies data'\n", + "Entity 'http://edamontology.org/data_2874' - Label 'Sequence set (polymorphic)'\n", + "Entity 'http://edamontology.org/data_2875' - Label 'DRCAT resource'\n", + "Entity 'http://edamontology.org/data_2877' - Label 'Protein complex'\n", + "Entity 'http://edamontology.org/data_2878' - Label 'Protein structural motif'\n", + "Entity 'http://edamontology.org/data_2879' - Label 'Lipid report'\n", + "Entity 'http://edamontology.org/data_2880' - Label 'Secondary structure image'\n", + "Entity 'http://edamontology.org/data_2881' - Label 'Secondary structure report'\n", + "Entity 'http://edamontology.org/data_2882' - Label 'DNA features'\n", + "Entity 'http://edamontology.org/data_2883' - Label 'RNA features report'\n", + "Entity 'http://edamontology.org/data_2884' - Label 'Plot'\n", + "Entity 'http://edamontology.org/data_2886' - Label 'Protein sequence record'\n", + "Entity 'http://edamontology.org/data_2887' - Label 'Nucleic acid sequence record'\n", + "Entity 'http://edamontology.org/data_2888' - Label 'Protein sequence record (full)'\n", + "Entity 'http://edamontology.org/data_2889' - Label 'Nucleic acid sequence record (full)'\n", + "Entity 'http://edamontology.org/data_2891' - Label 'Biological model accession'\n", + "Entity 'http://edamontology.org/data_2892' - Label 'Cell type name'\n", + "Entity 'http://edamontology.org/data_2893' - Label 'Cell type accession'\n", + "Entity 'http://edamontology.org/data_2894' - Label 'Compound accession'\n", + "Entity 'http://edamontology.org/data_2895' - Label 'Drug accession'\n", + "Entity 'http://edamontology.org/data_2896' - Label 'Toxin name'\n", + "Entity 'http://edamontology.org/data_2897' - Label 'Toxin accession'\n", + "Entity 'http://edamontology.org/data_2898' - Label 'Monosaccharide accession'\n", + "Entity 'http://edamontology.org/data_2899' - Label 'Drug name'\n", + "Entity 'http://edamontology.org/data_2900' - Label 'Carbohydrate accession'\n", + "Entity 'http://edamontology.org/data_2901' - Label 'Molecule accession'\n", + "Entity 'http://edamontology.org/data_2902' - Label 'Data resource definition accession'\n", + "Entity 'http://edamontology.org/data_2903' - Label 'Genome accession'\n", + "Entity 'http://edamontology.org/data_2904' - Label 'Map accession'\n", + "Entity 'http://edamontology.org/data_2905' - Label 'Lipid accession'\n", + "Entity 'http://edamontology.org/data_2906' - Label 'Peptide ID'\n", + "Entity 'http://edamontology.org/data_2907' - Label 'Protein accession'\n", + "Entity 'http://edamontology.org/data_2908' - Label 'Organism accession'\n", + "Entity 'http://edamontology.org/data_2909' - Label 'Organism name'\n", + "Entity 'http://edamontology.org/data_2910' - Label 'Protein family accession'\n", + "Entity 'http://edamontology.org/data_2911' - Label 'Transcription factor accession'\n", + "Entity 'http://edamontology.org/data_2912' - Label 'Strain accession'\n", + "Entity 'http://edamontology.org/data_2913' - Label 'Virus identifier'\n", + "Entity 'http://edamontology.org/data_2914' - Label 'Sequence features metadata'\n", + "Entity 'http://edamontology.org/data_2915' - Label 'Gramene identifier'\n", + "Entity 'http://edamontology.org/data_2916' - Label 'DDBJ accession'\n", + "Entity 'http://edamontology.org/data_2917' - Label 'ConsensusPathDB identifier'\n", + "Entity 'http://edamontology.org/data_2925' - Label 'Sequence data'\n", + "Entity 'http://edamontology.org/data_2927' - Label 'Codon usage'\n", + "Entity 'http://edamontology.org/data_2954' - Label 'Article report'\n", + "Entity 'http://edamontology.org/data_2955' - Label 'Sequence report'\n", + "Entity 'http://edamontology.org/data_2956' - Label 'Protein secondary structure'\n", + "Entity 'http://edamontology.org/data_2957' - Label 'Hopp and Woods plot'\n", + "Entity 'http://edamontology.org/data_2958' - Label 'Nucleic acid melting curve'\n", + "Entity 'http://edamontology.org/data_2959' - Label 'Nucleic acid probability profile'\n", + "Entity 'http://edamontology.org/data_2960' - Label 'Nucleic acid temperature profile'\n", + "Entity 'http://edamontology.org/data_2961' - Label 'Gene regulatory network report'\n", + "Entity 'http://edamontology.org/data_2965' - Label '2D PAGE gel report'\n", + "Entity 'http://edamontology.org/data_2966' - Label 'Oligonucleotide probe sets annotation'\n", + "Entity 'http://edamontology.org/data_2967' - Label 'Microarray image'\n", + "Entity 'http://edamontology.org/data_2968' - Label 'Image'\n", + "Entity 'http://edamontology.org/data_2969' - Label 'Sequence image'\n", + "Entity 'http://edamontology.org/data_2970' - Label 'Protein hydropathy data'\n", + "Entity 'http://edamontology.org/data_2971' - Label 'Workflow data'\n", + "Entity 'http://edamontology.org/data_2972' - Label 'Workflow'\n", + "Entity 'http://edamontology.org/data_2973' - Label 'Secondary structure data'\n", + "Entity 'http://edamontology.org/data_2974' - Label 'Protein sequence (raw)'\n", + "Entity 'http://edamontology.org/data_2975' - Label 'Nucleic acid sequence (raw)'\n", + "Entity 'http://edamontology.org/data_2976' - Label 'Protein sequence'\n", + "Entity 'http://edamontology.org/data_2977' - Label 'Nucleic acid sequence'\n", + "Entity 'http://edamontology.org/data_2978' - Label 'Reaction data'\n", + "Entity 'http://edamontology.org/data_2979' - Label 'Peptide property'\n", + "Entity 'http://edamontology.org/data_2980' - Label 'Protein classification'\n", + "Entity 'http://edamontology.org/data_2981' - Label 'Sequence motif data'\n", + "Entity 'http://edamontology.org/data_2982' - Label 'Sequence profile data'\n", + "Entity 'http://edamontology.org/data_2983' - Label 'Pathway or network data'\n", + "Entity 'http://edamontology.org/data_2984' - Label 'Pathway or network report'\n", + "Entity 'http://edamontology.org/data_2985' - Label 'Nucleic acid thermodynamic data'\n", + "Entity 'http://edamontology.org/data_2986' - Label 'Nucleic acid classification'\n", + "Entity 'http://edamontology.org/data_2987' - Label 'Classification report'\n", + "Entity 'http://edamontology.org/data_2989' - Label 'Protein features report (key folding sites)'\n", + "Entity 'http://edamontology.org/data_2991' - Label 'Protein geometry data'\n", + "Entity 'http://edamontology.org/data_2992' - Label 'Protein structure image'\n", + "Entity 'http://edamontology.org/data_2994' - Label 'Phylogenetic character weights'\n", + "Entity 'http://edamontology.org/data_3002' - Label 'Annotation track'\n", + "Entity 'http://edamontology.org/data_3021' - Label 'UniProt accession'\n", + "Entity 'http://edamontology.org/data_3022' - Label 'NCBI genetic code ID'\n", + "Entity 'http://edamontology.org/data_3025' - Label 'Ontology concept identifier'\n", + "Entity 'http://edamontology.org/data_3026' - Label 'GO concept name (biological process)'\n", + "Entity 'http://edamontology.org/data_3027' - Label 'GO concept name (molecular function)'\n", + "Entity 'http://edamontology.org/data_3028' - Label 'Taxonomy'\n", + "Entity 'http://edamontology.org/data_3029' - Label 'Protein ID (EMBL/GenBank/DDBJ)'\n", + "Entity 'http://edamontology.org/data_3031' - Label 'Core data'\n", + "Entity 'http://edamontology.org/data_3034' - Label 'Sequence feature identifier'\n", + "Entity 'http://edamontology.org/data_3035' - Label 'Structure identifier'\n", + "Entity 'http://edamontology.org/data_3036' - Label 'Matrix identifier'\n", + "Entity 'http://edamontology.org/data_3085' - Label 'Protein sequence composition'\n", + "Entity 'http://edamontology.org/data_3086' - Label 'Nucleic acid sequence composition (report)'\n", + "Entity 'http://edamontology.org/data_3101' - Label 'Protein domain classification node'\n", + "Entity 'http://edamontology.org/data_3102' - Label 'CAS number'\n", + "Entity 'http://edamontology.org/data_3103' - Label 'ATC code'\n", + "Entity 'http://edamontology.org/data_3104' - Label 'UNII'\n", + "Entity 'http://edamontology.org/data_3105' - Label 'Geotemporal metadata'\n", + "Entity 'http://edamontology.org/data_3106' - Label 'System metadata'\n", + "Entity 'http://edamontology.org/data_3107' - Label 'Sequence feature name'\n", + "Entity 'http://edamontology.org/data_3108' - Label 'Experimental measurement'\n", + "Entity 'http://edamontology.org/data_3110' - Label 'Raw microarray data'\n", + "Entity 'http://edamontology.org/data_3111' - Label 'Processed microarray data'\n", + "Entity 'http://edamontology.org/data_3112' - Label 'Gene expression matrix'\n", + "Entity 'http://edamontology.org/data_3113' - Label 'Sample annotation'\n", + "Entity 'http://edamontology.org/data_3115' - Label 'Microarray metadata'\n", + "Entity 'http://edamontology.org/data_3116' - Label 'Microarray protocol annotation'\n", + "Entity 'http://edamontology.org/data_3117' - Label 'Microarray hybridisation data'\n", + "Entity 'http://edamontology.org/data_3119' - Label 'Sequence features (compositionally-biased regions)'\n", + "Entity 'http://edamontology.org/data_3122' - Label 'Nucleic acid features (difference and change)'\n", + "Entity 'http://edamontology.org/data_3128' - Label 'Nucleic acid structure report'\n", + "Entity 'http://edamontology.org/data_3129' - Label 'Protein features report (repeats)'\n", + "Entity 'http://edamontology.org/data_3130' - Label 'Sequence motif matches (protein)'\n", + "Entity 'http://edamontology.org/data_3131' - Label 'Sequence motif matches (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_3132' - Label 'Nucleic acid features (d-loop)'\n", + "Entity 'http://edamontology.org/data_3133' - Label 'Nucleic acid features (stem loop)'\n", + "Entity 'http://edamontology.org/data_3134' - Label 'Gene transcript report'\n", + "Entity 'http://edamontology.org/data_3137' - Label 'Non-coding RNA'\n", + "Entity 'http://edamontology.org/data_3138' - Label 'Transcriptional features (report)'\n", + "Entity 'http://edamontology.org/data_3140' - Label 'Nucleic acid features (immunoglobulin gene structure)'\n", + "Entity 'http://edamontology.org/data_3141' - Label 'SCOP class'\n", + "Entity 'http://edamontology.org/data_3142' - Label 'SCOP fold'\n", + "Entity 'http://edamontology.org/data_3143' - Label 'SCOP superfamily'\n", + "Entity 'http://edamontology.org/data_3144' - Label 'SCOP family'\n", + "Entity 'http://edamontology.org/data_3145' - Label 'SCOP protein'\n", + "Entity 'http://edamontology.org/data_3146' - Label 'SCOP species'\n", + "Entity 'http://edamontology.org/data_3147' - Label 'Mass spectrometry experiment'\n", + "Entity 'http://edamontology.org/data_3148' - Label 'Gene family report'\n", + "Entity 'http://edamontology.org/data_3153' - Label 'Protein image'\n", + "Entity 'http://edamontology.org/data_3154' - Label 'Protein alignment'\n", + "Entity 'http://edamontology.org/data_3165' - Label 'NGS experiment'\n", + "Entity 'http://edamontology.org/data_3181' - Label 'Sequence assembly report'\n", + "Entity 'http://edamontology.org/data_3210' - Label 'Genome index'\n", + "Entity 'http://edamontology.org/data_3231' - Label 'GWAS report'\n", + "Entity 'http://edamontology.org/data_3236' - Label 'Cytoband position'\n", + "Entity 'http://edamontology.org/data_3238' - Label 'Cell type ontology ID'\n", + "Entity 'http://edamontology.org/data_3241' - Label 'Kinetic model'\n", + "Entity 'http://edamontology.org/data_3264' - Label 'COSMIC ID'\n", + "Entity 'http://edamontology.org/data_3265' - Label 'HGMD ID'\n", + "Entity 'http://edamontology.org/data_3266' - Label 'Sequence assembly ID'\n", + "Entity 'http://edamontology.org/data_3268' - Label 'Sequence feature type'\n", + "Entity 'http://edamontology.org/data_3269' - Label 'Gene homology (report)'\n", + "Entity 'http://edamontology.org/data_3270' - Label 'Ensembl gene tree ID'\n", + "Entity 'http://edamontology.org/data_3271' - Label 'Gene tree'\n", + "Entity 'http://edamontology.org/data_3272' - Label 'Species tree'\n", + "Entity 'http://edamontology.org/data_3273' - Label 'Sample ID'\n", + "Entity 'http://edamontology.org/data_3274' - Label 'MGI accession'\n", + "Entity 'http://edamontology.org/data_3275' - Label 'Phenotype name'\n", + "Entity 'http://edamontology.org/data_3354' - Label 'Transition matrix'\n", + "Entity 'http://edamontology.org/data_3355' - Label 'Emission matrix'\n", + "Entity 'http://edamontology.org/data_3356' - Label 'Hidden Markov model'\n", + "Entity 'http://edamontology.org/data_3358' - Label 'Format identifier'\n", + "Entity 'http://edamontology.org/data_3424' - Label 'Raw image'\n", + "Entity 'http://edamontology.org/data_3425' - Label 'Carbohydrate property'\n", + "Entity 'http://edamontology.org/data_3426' - Label 'Proteomics experiment report'\n", + "Entity 'http://edamontology.org/data_3427' - Label 'RNAi report'\n", + "Entity 'http://edamontology.org/data_3428' - Label 'Simulation experiment report'\n", + "Entity 'http://edamontology.org/data_3442' - Label 'MRI image'\n", + "Entity 'http://edamontology.org/data_3449' - Label 'Cell migration track image'\n", + "Entity 'http://edamontology.org/data_3451' - Label 'Rate of association'\n", + "Entity 'http://edamontology.org/data_3479' - Label 'Gene order'\n", + "Entity 'http://edamontology.org/data_3483' - Label 'Spectrum'\n", + "Entity 'http://edamontology.org/data_3488' - Label 'NMR spectrum'\n", + "Entity 'http://edamontology.org/data_3490' - Label 'Chemical structure sketch'\n", + "Entity 'http://edamontology.org/data_3492' - Label 'Nucleic acid signature'\n", + "Entity 'http://edamontology.org/data_3494' - Label 'DNA sequence'\n", + "Entity 'http://edamontology.org/data_3495' - Label 'RNA sequence'\n", + "Entity 'http://edamontology.org/data_3496' - Label 'RNA sequence (raw)'\n", + "Entity 'http://edamontology.org/data_3497' - Label 'DNA sequence (raw)'\n", + "Entity 'http://edamontology.org/data_3498' - Label 'Sequence variations'\n", + "Entity 'http://edamontology.org/data_3505' - Label 'Bibliography'\n", + "Entity 'http://edamontology.org/data_3509' - Label 'Ontology mapping'\n", + "Entity 'http://edamontology.org/data_3546' - Label 'Image metadata'\n", + "Entity 'http://edamontology.org/data_3558' - Label 'Clinical trial report'\n", + "Entity 'http://edamontology.org/data_3567' - Label 'Reference sample report'\n", + "Entity 'http://edamontology.org/data_3568' - Label 'Gene Expression Atlas Experiment ID'\n", + "Entity 'http://edamontology.org/data_3667' - Label 'Disease identifier'\n", + "Entity 'http://edamontology.org/data_3668' - Label 'Disease name'\n", + "Entity 'http://edamontology.org/data_3669' - Label 'Training material'\n", + "Entity 'http://edamontology.org/data_3670' - Label 'Online course'\n", + "Entity 'http://edamontology.org/data_3671' - Label 'Text'\n", + "Entity 'http://edamontology.org/data_3707' - Label 'Biodiversity data'\n", + "Entity 'http://edamontology.org/data_3716' - Label 'Biosafety report'\n", + "Entity 'http://edamontology.org/data_3717' - Label 'Isolation report'\n", + "Entity 'http://edamontology.org/data_3718' - Label 'Pathogenicity report'\n", + "Entity 'http://edamontology.org/data_3719' - Label 'Biosafety classification'\n", + "Entity 'http://edamontology.org/data_3720' - Label 'Geographic location'\n", + "Entity 'http://edamontology.org/data_3721' - Label 'Isolation source'\n", + "Entity 'http://edamontology.org/data_3722' - Label 'Physiology parameter'\n", + "Entity 'http://edamontology.org/data_3723' - Label 'Morphology parameter'\n", + "Entity 'http://edamontology.org/data_3724' - Label 'Cultivation parameter'\n", + "Entity 'http://edamontology.org/data_3732' - Label 'Sequencing metadata name'\n", + "Entity 'http://edamontology.org/data_3733' - Label 'Flow cell identifier'\n", + "Entity 'http://edamontology.org/data_3734' - Label 'Lane identifier'\n", + "Entity 'http://edamontology.org/data_3735' - Label 'Run number'\n", + "Entity 'http://edamontology.org/data_3736' - Label 'Ecological data'\n", + "Entity 'http://edamontology.org/data_3737' - Label 'Alpha diversity data'\n", + "Entity 'http://edamontology.org/data_3738' - Label 'Beta diversity data'\n", + "Entity 'http://edamontology.org/data_3739' - Label 'Gamma diversity data'\n", + "Entity 'http://edamontology.org/data_3743' - Label 'Ordination plot'\n", + "Entity 'http://edamontology.org/data_3753' - Label 'Over-representation data'\n", + "Entity 'http://edamontology.org/data_3754' - Label 'GO-term enrichment data'\n", + "Entity 'http://edamontology.org/data_3756' - Label 'Localisation score'\n", + "Entity 'http://edamontology.org/data_3757' - Label 'Unimod ID'\n", + "Entity 'http://edamontology.org/data_3759' - Label 'ProteomeXchange ID'\n", + "Entity 'http://edamontology.org/data_3768' - Label 'Clustered expression profiles'\n", + "Entity 'http://edamontology.org/data_3769' - Label 'BRENDA ontology concept ID'\n", + "Entity 'http://edamontology.org/data_3779' - Label 'Annotated text'\n", + "Entity 'http://edamontology.org/data_3786' - Label 'Query script'\n", + "Entity 'http://edamontology.org/data_3805' - Label '3D EM Map'\n", + "Entity 'http://edamontology.org/data_3806' - Label '3D EM Mask'\n", + "Entity 'http://edamontology.org/data_3807' - Label 'EM Movie'\n", + "Entity 'http://edamontology.org/data_3808' - Label 'EM Micrograph'\n", + "Entity 'http://edamontology.org/data_3842' - Label 'Molecular simulation data'\n", + "Entity 'http://edamontology.org/data_3856' - Label 'RNA central ID'\n", + "Entity 'http://edamontology.org/data_3861' - Label 'Electronic health record'\n", + "Entity 'http://edamontology.org/data_3869' - Label 'Simulation'\n", + "Entity 'http://edamontology.org/data_3870' - Label 'Trajectory data'\n", + "Entity 'http://edamontology.org/data_3871' - Label 'Forcefield parameters'\n", + "Entity 'http://edamontology.org/data_3872' - Label 'Topology data'\n", + "Entity 'http://edamontology.org/data_3905' - Label 'Histogram'\n", + "Entity 'http://edamontology.org/data_3914' - Label 'Quality control report'\n", + "Entity 'http://edamontology.org/data_3917' - Label 'Count matrix'\n", + "Entity 'http://edamontology.org/data_3924' - Label 'DNA structure alignment'\n", + "Entity 'http://edamontology.org/data_3932' - Label 'Q-value'\n", + "Entity 'http://edamontology.org/data_3949' - Label 'Profile HMM'\n", + "Entity 'http://edamontology.org/data_3952' - Label 'Pathway ID (WikiPathways)'\n", + "Entity 'http://edamontology.org/data_3953' - Label 'Pathway overrepresentation data'\n", + "Entity 'http://edamontology.org/data_4022' - Label 'ORCID Identifier'\n", + "Entity 'http://edamontology.org/format_1196' - Label 'SMILES'\n", + "Entity 'http://edamontology.org/format_1197' - Label 'InChI'\n", + "Entity 'http://edamontology.org/format_1198' - Label 'mf'\n", + "Entity 'http://edamontology.org/format_1199' - Label 'InChIKey'\n", + "Entity 'http://edamontology.org/format_1200' - Label 'smarts'\n", + "Entity 'http://edamontology.org/format_1206' - Label 'unambiguous pure'\n", + "Entity 'http://edamontology.org/format_1207' - Label 'nucleotide'\n", + "Entity 'http://edamontology.org/format_1208' - Label 'protein'\n", + "Entity 'http://edamontology.org/format_1209' - Label 'consensus'\n", + "Entity 'http://edamontology.org/format_1210' - Label 'pure nucleotide'\n", + "Entity 'http://edamontology.org/format_1211' - Label 'unambiguous pure nucleotide'\n", + "Entity 'http://edamontology.org/format_1212' - Label 'dna'\n", + "Entity 'http://edamontology.org/format_1213' - Label 'rna'\n", + "Entity 'http://edamontology.org/format_1214' - Label 'unambiguous pure dna'\n", + "Entity 'http://edamontology.org/format_1215' - Label 'pure dna'\n", + "Entity 'http://edamontology.org/format_1216' - Label 'unambiguous pure rna sequence'\n", + "Entity 'http://edamontology.org/format_1217' - Label 'pure rna'\n", + "Entity 'http://edamontology.org/format_1218' - Label 'unambiguous pure protein'\n", + "Entity 'http://edamontology.org/format_1219' - Label 'pure protein'\n", + "Entity 'http://edamontology.org/format_1228' - Label 'UniGene entry format'\n", + "Entity 'http://edamontology.org/format_1247' - Label 'COG sequence cluster format'\n", + "Entity 'http://edamontology.org/format_1248' - Label 'EMBL feature location'\n", + "Entity 'http://edamontology.org/format_1295' - Label 'quicktandem'\n", + "Entity 'http://edamontology.org/format_1296' - Label 'Sanger inverted repeats'\n", + "Entity 'http://edamontology.org/format_1297' - Label 'EMBOSS repeat'\n", + "Entity 'http://edamontology.org/format_1316' - Label 'est2genome format'\n", + "Entity 'http://edamontology.org/format_1318' - Label 'restrict format'\n", + "Entity 'http://edamontology.org/format_1319' - Label 'restover format'\n", + "Entity 'http://edamontology.org/format_1320' - Label 'REBASE restriction sites'\n", + "Entity 'http://edamontology.org/format_1332' - Label 'FASTA search results format'\n", + "Entity 'http://edamontology.org/format_1333' - Label 'BLAST results'\n", + "Entity 'http://edamontology.org/format_1334' - Label 'mspcrunch'\n", + "Entity 'http://edamontology.org/format_1335' - Label 'Smith-Waterman format'\n", + "Entity 'http://edamontology.org/format_1336' - Label 'dhf'\n", + "Entity 'http://edamontology.org/format_1337' - Label 'lhf'\n", + "Entity 'http://edamontology.org/format_1341' - Label 'InterPro hits format'\n", + "Entity 'http://edamontology.org/format_1342' - Label 'InterPro protein view report format'\n", + "Entity 'http://edamontology.org/format_1343' - Label 'InterPro match table format'\n", + "Entity 'http://edamontology.org/format_1349' - Label 'HMMER Dirichlet prior'\n", + "Entity 'http://edamontology.org/format_1350' - Label 'MEME Dirichlet prior'\n", + "Entity 'http://edamontology.org/format_1351' - Label 'HMMER emission and transition'\n", + "Entity 'http://edamontology.org/format_1356' - Label 'prosite-pattern'\n", + "Entity 'http://edamontology.org/format_1357' - Label 'EMBOSS sequence pattern'\n", + "Entity 'http://edamontology.org/format_1360' - Label 'meme-motif'\n", + "Entity 'http://edamontology.org/format_1366' - Label 'prosite-profile'\n", + "Entity 'http://edamontology.org/format_1367' - Label 'JASPAR format'\n", + "Entity 'http://edamontology.org/format_1369' - Label 'MEME background Markov model'\n", + "Entity 'http://edamontology.org/format_1370' - Label 'HMMER format'\n", + "Entity 'http://edamontology.org/format_1391' - Label 'HMMER-aln'\n", + "Entity 'http://edamontology.org/format_1392' - Label 'DIALIGN format'\n", + "Entity 'http://edamontology.org/format_1393' - Label 'daf'\n", + "Entity 'http://edamontology.org/format_1419' - Label 'Sequence-MEME profile alignment'\n", + "Entity 'http://edamontology.org/format_1421' - Label 'HMMER profile alignment (sequences versus HMMs)'\n", + "Entity 'http://edamontology.org/format_1422' - Label 'HMMER profile alignment (HMM versus sequences)'\n", + "Entity 'http://edamontology.org/format_1423' - Label 'Phylip distance matrix'\n", + "Entity 'http://edamontology.org/format_1424' - Label 'ClustalW dendrogram'\n", + "Entity 'http://edamontology.org/format_1425' - Label 'Phylip tree raw'\n", + "Entity 'http://edamontology.org/format_1430' - Label 'Phylip continuous quantitative characters'\n", + "Entity 'http://edamontology.org/format_1431' - Label 'Phylogenetic property values format'\n", + "Entity 'http://edamontology.org/format_1432' - Label 'Phylip character frequencies format'\n", + "Entity 'http://edamontology.org/format_1433' - Label 'Phylip discrete states format'\n", + "Entity 'http://edamontology.org/format_1434' - Label 'Phylip cliques format'\n", + "Entity 'http://edamontology.org/format_1435' - Label 'Phylip tree format'\n", + "Entity 'http://edamontology.org/format_1436' - Label 'TreeBASE format'\n", + "Entity 'http://edamontology.org/format_1437' - Label 'TreeFam format'\n", + "Entity 'http://edamontology.org/format_1445' - Label 'Phylip tree distance format'\n", + "Entity 'http://edamontology.org/format_1454' - Label 'dssp'\n", + "Entity 'http://edamontology.org/format_1455' - Label 'hssp'\n", + "Entity 'http://edamontology.org/format_1457' - Label 'Dot-bracket format'\n", + "Entity 'http://edamontology.org/format_1458' - Label 'Vienna local RNA secondary structure format'\n", + "Entity 'http://edamontology.org/format_1475' - Label 'PDB database entry format'\n", + "Entity 'http://edamontology.org/format_1476' - Label 'PDB'\n", + "Entity 'http://edamontology.org/format_1477' - Label 'mmCIF'\n", + "Entity 'http://edamontology.org/format_1478' - Label 'PDBML'\n", + "Entity 'http://edamontology.org/format_1500' - Label 'Domainatrix 3D-1D scoring matrix format'\n", + "Entity 'http://edamontology.org/format_1504' - Label 'aaindex'\n", + "Entity 'http://edamontology.org/format_1511' - Label 'IntEnz enzyme report format'\n", + "Entity 'http://edamontology.org/format_1512' - Label 'BRENDA enzyme report format'\n", + "Entity 'http://edamontology.org/format_1513' - Label 'KEGG REACTION enzyme report format'\n", + "Entity 'http://edamontology.org/format_1514' - Label 'KEGG ENZYME enzyme report format'\n", + "Entity 'http://edamontology.org/format_1515' - Label 'REBASE proto enzyme report format'\n", + "Entity 'http://edamontology.org/format_1516' - Label 'REBASE withrefm enzyme report format'\n", + "Entity 'http://edamontology.org/format_1551' - Label 'Pcons report format'\n", + "Entity 'http://edamontology.org/format_1552' - Label 'ProQ report format'\n", + "Entity 'http://edamontology.org/format_1563' - Label 'SMART domain assignment report format'\n", + "Entity 'http://edamontology.org/format_1568' - Label 'BIND entry format'\n", + "Entity 'http://edamontology.org/format_1569' - Label 'IntAct entry format'\n", + "Entity 'http://edamontology.org/format_1570' - Label 'InterPro entry format'\n", + "Entity 'http://edamontology.org/format_1571' - Label 'InterPro entry abstract format'\n", + "Entity 'http://edamontology.org/format_1572' - Label 'Gene3D entry format'\n", + "Entity 'http://edamontology.org/format_1573' - Label 'PIRSF entry format'\n", + "Entity 'http://edamontology.org/format_1574' - Label 'PRINTS entry format'\n", + "Entity 'http://edamontology.org/format_1575' - Label 'Panther Families and HMMs entry format'\n", + "Entity 'http://edamontology.org/format_1576' - Label 'Pfam entry format'\n", + "Entity 'http://edamontology.org/format_1577' - Label 'SMART entry format'\n", + "Entity 'http://edamontology.org/format_1578' - Label 'Superfamily entry format'\n", + "Entity 'http://edamontology.org/format_1579' - Label 'TIGRFam entry format'\n", + "Entity 'http://edamontology.org/format_1580' - Label 'ProDom entry format'\n", + "Entity 'http://edamontology.org/format_1581' - Label 'FSSP entry format'\n", + "Entity 'http://edamontology.org/format_1582' - Label 'findkm'\n", + "Entity 'http://edamontology.org/format_1603' - Label 'Ensembl gene report format'\n", + "Entity 'http://edamontology.org/format_1604' - Label 'DictyBase gene report format'\n", + "Entity 'http://edamontology.org/format_1605' - Label 'CGD gene report format'\n", + "Entity 'http://edamontology.org/format_1606' - Label 'DragonDB gene report format'\n", + "Entity 'http://edamontology.org/format_1607' - Label 'EcoCyc gene report format'\n", + "Entity 'http://edamontology.org/format_1608' - Label 'FlyBase gene report format'\n", + "Entity 'http://edamontology.org/format_1609' - Label 'Gramene gene report format'\n", + "Entity 'http://edamontology.org/format_1610' - Label 'KEGG GENES gene report format'\n", + "Entity 'http://edamontology.org/format_1611' - Label 'MaizeGDB gene report format'\n", + "Entity 'http://edamontology.org/format_1612' - Label 'MGD gene report format'\n", + "Entity 'http://edamontology.org/format_1613' - Label 'RGD gene report format'\n", + "Entity 'http://edamontology.org/format_1614' - Label 'SGD gene report format'\n", + "Entity 'http://edamontology.org/format_1615' - Label 'GeneDB gene report format'\n", + "Entity 'http://edamontology.org/format_1616' - Label 'TAIR gene report format'\n", + "Entity 'http://edamontology.org/format_1617' - Label 'WormBase gene report format'\n", + "Entity 'http://edamontology.org/format_1618' - Label 'ZFIN gene report format'\n", + "Entity 'http://edamontology.org/format_1619' - Label 'TIGR gene report format'\n", + "Entity 'http://edamontology.org/format_1620' - Label 'dbSNP polymorphism report format'\n", + "Entity 'http://edamontology.org/format_1623' - Label 'OMIM entry format'\n", + "Entity 'http://edamontology.org/format_1624' - Label 'HGVbase entry format'\n", + "Entity 'http://edamontology.org/format_1625' - Label 'HIVDB entry format'\n", + "Entity 'http://edamontology.org/format_1626' - Label 'KEGG DISEASE entry format'\n", + "Entity 'http://edamontology.org/format_1627' - Label 'Primer3 primer'\n", + "Entity 'http://edamontology.org/format_1628' - Label 'ABI'\n", + "Entity 'http://edamontology.org/format_1629' - Label 'mira'\n", + "Entity 'http://edamontology.org/format_1630' - Label 'CAF'\n", + "Entity 'http://edamontology.org/format_1631' - Label 'EXP'\n", + "Entity 'http://edamontology.org/format_1632' - Label 'SCF'\n", + "Entity 'http://edamontology.org/format_1633' - Label 'PHD'\n", + "Entity 'http://edamontology.org/format_1637' - Label 'dat'\n", + "Entity 'http://edamontology.org/format_1638' - Label 'cel'\n", + "Entity 'http://edamontology.org/format_1639' - Label 'affymetrix'\n", + "Entity 'http://edamontology.org/format_1640' - Label 'ArrayExpress entry format'\n", + "Entity 'http://edamontology.org/format_1641' - Label 'affymetrix-exp'\n", + "Entity 'http://edamontology.org/format_1644' - Label 'CHP'\n", + "Entity 'http://edamontology.org/format_1645' - Label 'EMDB entry format'\n", + "Entity 'http://edamontology.org/format_1647' - Label 'KEGG PATHWAY entry format'\n", + "Entity 'http://edamontology.org/format_1648' - Label 'MetaCyc entry format'\n", + "Entity 'http://edamontology.org/format_1649' - Label 'HumanCyc entry format'\n", + "Entity 'http://edamontology.org/format_1650' - Label 'INOH entry format'\n", + "Entity 'http://edamontology.org/format_1651' - Label 'PATIKA entry format'\n", + "Entity 'http://edamontology.org/format_1652' - Label 'Reactome entry format'\n", + "Entity 'http://edamontology.org/format_1653' - Label 'aMAZE entry format'\n", + "Entity 'http://edamontology.org/format_1654' - Label 'CPDB entry format'\n", + "Entity 'http://edamontology.org/format_1655' - Label 'Panther Pathways entry format'\n", + "Entity 'http://edamontology.org/format_1665' - Label 'Taverna workflow format'\n", + "Entity 'http://edamontology.org/format_1666' - Label 'BioModel mathematical model format'\n", + "Entity 'http://edamontology.org/format_1697' - Label 'KEGG LIGAND entry format'\n", + "Entity 'http://edamontology.org/format_1698' - Label 'KEGG COMPOUND entry format'\n", + "Entity 'http://edamontology.org/format_1699' - Label 'KEGG PLANT entry format'\n", + "Entity 'http://edamontology.org/format_1700' - Label 'KEGG GLYCAN entry format'\n", + "Entity 'http://edamontology.org/format_1701' - Label 'PubChem entry format'\n", + "Entity 'http://edamontology.org/format_1702' - Label 'ChemSpider entry format'\n", + "Entity 'http://edamontology.org/format_1703' - Label 'ChEBI entry format'\n", + "Entity 'http://edamontology.org/format_1704' - Label 'MSDchem ligand dictionary entry format'\n", + "Entity 'http://edamontology.org/format_1705' - Label 'HET group dictionary entry format'\n", + "Entity 'http://edamontology.org/format_1706' - Label 'KEGG DRUG entry format'\n", + "Entity 'http://edamontology.org/format_1734' - Label 'PubMed citation'\n", + "Entity 'http://edamontology.org/format_1735' - Label 'Medline Display Format'\n", + "Entity 'http://edamontology.org/format_1736' - Label 'CiteXplore-core'\n", + "Entity 'http://edamontology.org/format_1737' - Label 'CiteXplore-all'\n", + "Entity 'http://edamontology.org/format_1739' - Label 'pmc'\n", + "Entity 'http://edamontology.org/format_1740' - Label 'iHOP format'\n", + "Entity 'http://edamontology.org/format_1741' - Label 'OSCAR format'\n", + "Entity 'http://edamontology.org/format_1747' - Label 'PDB atom record format'\n", + "Entity 'http://edamontology.org/format_1760' - Label 'CATH chain report format'\n", + "Entity 'http://edamontology.org/format_1761' - Label 'CATH PDB report format'\n", + "Entity 'http://edamontology.org/format_1782' - Label 'NCBI gene report format'\n", + "Entity 'http://edamontology.org/format_1808' - Label 'GeneIlluminator gene report format'\n", + "Entity 'http://edamontology.org/format_1809' - Label 'BacMap gene card format'\n", + "Entity 'http://edamontology.org/format_1810' - Label 'ColiCard report format'\n", + "Entity 'http://edamontology.org/format_1861' - Label 'PlasMapper TextMap'\n", + "Entity 'http://edamontology.org/format_1910' - Label 'newick'\n", + "Entity 'http://edamontology.org/format_1911' - Label 'TreeCon format'\n", + "Entity 'http://edamontology.org/format_1912' - Label 'Nexus format'\n", + "Entity 'http://edamontology.org/format_1915' - Label 'Format'\n", + "Entity 'http://edamontology.org/format_1918' - Label 'Atomic data format'\n", + "Entity 'http://edamontology.org/format_1919' - Label 'Sequence record format'\n", + "Entity 'http://edamontology.org/format_1920' - Label 'Sequence feature annotation format'\n", + "Entity 'http://edamontology.org/format_1921' - Label 'Alignment format'\n", + "Entity 'http://edamontology.org/format_1923' - Label 'acedb'\n", + "Entity 'http://edamontology.org/format_1924' - Label 'clustal sequence format'\n", + "Entity 'http://edamontology.org/format_1925' - Label 'codata'\n", + "Entity 'http://edamontology.org/format_1926' - Label 'dbid'\n", + "Entity 'http://edamontology.org/format_1927' - Label 'EMBL format'\n", + "Entity 'http://edamontology.org/format_1928' - Label 'Staden experiment format'\n", + "Entity 'http://edamontology.org/format_1929' - Label 'FASTA'\n", + "Entity 'http://edamontology.org/format_1930' - Label 'FASTQ'\n", + "Entity 'http://edamontology.org/format_1931' - Label 'FASTQ-illumina'\n", + "Entity 'http://edamontology.org/format_1932' - Label 'FASTQ-sanger'\n", + "Entity 'http://edamontology.org/format_1933' - Label 'FASTQ-solexa'\n", + "Entity 'http://edamontology.org/format_1934' - Label 'fitch program'\n", + "Entity 'http://edamontology.org/format_1935' - Label 'GCG'\n", + "Entity 'http://edamontology.org/format_1936' - Label 'GenBank format'\n", + "Entity 'http://edamontology.org/format_1937' - Label 'genpept'\n", + "Entity 'http://edamontology.org/format_1938' - Label 'GFF2-seq'\n", + "Entity 'http://edamontology.org/format_1939' - Label 'GFF3-seq'\n", + "Entity 'http://edamontology.org/format_1940' - Label 'giFASTA format'\n", + "Entity 'http://edamontology.org/format_1941' - Label 'hennig86'\n", + "Entity 'http://edamontology.org/format_1942' - Label 'ig'\n", + "Entity 'http://edamontology.org/format_1943' - Label 'igstrict'\n", + "Entity 'http://edamontology.org/format_1944' - Label 'jackknifer'\n", + "Entity 'http://edamontology.org/format_1945' - Label 'mase format'\n", + "Entity 'http://edamontology.org/format_1946' - Label 'mega-seq'\n", + "Entity 'http://edamontology.org/format_1947' - Label 'GCG MSF'\n", + "Entity 'http://edamontology.org/format_1948' - Label 'nbrf/pir'\n", + "Entity 'http://edamontology.org/format_1949' - Label 'nexus-seq'\n", + "Entity 'http://edamontology.org/format_1950' - Label 'pdbatom'\n", + "Entity 'http://edamontology.org/format_1951' - Label 'pdbatomnuc'\n", + "Entity 'http://edamontology.org/format_1952' - Label 'pdbseqresnuc'\n", + "Entity 'http://edamontology.org/format_1953' - Label 'pdbseqres'\n", + "Entity 'http://edamontology.org/format_1954' - Label 'Pearson format'\n", + "Entity 'http://edamontology.org/format_1955' - Label 'phylip sequence format'\n", + "Entity 'http://edamontology.org/format_1956' - Label 'phylipnon sequence format'\n", + "Entity 'http://edamontology.org/format_1957' - Label 'raw'\n", + "Entity 'http://edamontology.org/format_1958' - Label 'refseqp'\n", + "Entity 'http://edamontology.org/format_1959' - Label 'selex sequence format'\n", + "Entity 'http://edamontology.org/format_1960' - Label 'Staden format'\n", + "Entity 'http://edamontology.org/format_1961' - Label 'Stockholm format'\n", + "Entity 'http://edamontology.org/format_1962' - Label 'strider format'\n", + "Entity 'http://edamontology.org/format_1963' - Label 'UniProtKB format'\n", + "Entity 'http://edamontology.org/format_1964' - Label 'plain text format (unformatted)'\n", + "Entity 'http://edamontology.org/format_1965' - Label 'treecon sequence format'\n", + "Entity 'http://edamontology.org/format_1966' - Label 'ASN.1 sequence format'\n", + "Entity 'http://edamontology.org/format_1967' - Label 'DAS format'\n", + "Entity 'http://edamontology.org/format_1968' - Label 'dasdna'\n", + "Entity 'http://edamontology.org/format_1969' - Label 'debug-seq'\n", + "Entity 'http://edamontology.org/format_1970' - Label 'jackknifernon'\n", + "Entity 'http://edamontology.org/format_1971' - Label 'meganon sequence format'\n", + "Entity 'http://edamontology.org/format_1972' - Label 'NCBI format'\n", + "Entity 'http://edamontology.org/format_1973' - Label 'nexusnon'\n", + "Entity 'http://edamontology.org/format_1974' - Label 'GFF2'\n", + "Entity 'http://edamontology.org/format_1975' - Label 'GFF3'\n", + "Entity 'http://edamontology.org/format_1976' - Label 'pir'\n", + "Entity 'http://edamontology.org/format_1977' - Label 'swiss feature'\n", + "Entity 'http://edamontology.org/format_1978' - Label 'DASGFF'\n", + "Entity 'http://edamontology.org/format_1979' - Label 'debug-feat'\n", + "Entity 'http://edamontology.org/format_1980' - Label 'EMBL feature'\n", + "Entity 'http://edamontology.org/format_1981' - Label 'GenBank feature'\n", + "Entity 'http://edamontology.org/format_1982' - Label 'ClustalW format'\n", + "Entity 'http://edamontology.org/format_1983' - Label 'debug'\n", + "Entity 'http://edamontology.org/format_1984' - Label 'FASTA-aln'\n", + "Entity 'http://edamontology.org/format_1985' - Label 'markx0'\n", + "Entity 'http://edamontology.org/format_1986' - Label 'markx1'\n", + "Entity 'http://edamontology.org/format_1987' - Label 'markx10'\n", + "Entity 'http://edamontology.org/format_1988' - Label 'markx2'\n", + "Entity 'http://edamontology.org/format_1989' - Label 'markx3'\n", + "Entity 'http://edamontology.org/format_1990' - Label 'match'\n", + "Entity 'http://edamontology.org/format_1991' - Label 'mega'\n", + "Entity 'http://edamontology.org/format_1992' - Label 'meganon'\n", + "Entity 'http://edamontology.org/format_1993' - Label 'msf alignment format'\n", + "Entity 'http://edamontology.org/format_1994' - Label 'nexus alignment format'\n", + "Entity 'http://edamontology.org/format_1995' - Label 'nexusnon alignment format'\n", + "Entity 'http://edamontology.org/format_1996' - Label 'pair'\n", + "Entity 'http://edamontology.org/format_1997' - Label 'PHYLIP format'\n", + "Entity 'http://edamontology.org/format_1998' - Label 'PHYLIP sequential'\n", + "Entity 'http://edamontology.org/format_1999' - Label 'scores format'\n", + "Entity 'http://edamontology.org/format_2000' - Label 'selex'\n", + "Entity 'http://edamontology.org/format_2001' - Label 'EMBOSS simple format'\n", + "Entity 'http://edamontology.org/format_2002' - Label 'srs format'\n", + "Entity 'http://edamontology.org/format_2003' - Label 'srspair'\n", + "Entity 'http://edamontology.org/format_2004' - Label 'T-Coffee format'\n", + "Entity 'http://edamontology.org/format_2005' - Label 'TreeCon-seq'\n", + "Entity 'http://edamontology.org/format_2006' - Label 'Phylogenetic tree format'\n", + "Entity 'http://edamontology.org/format_2013' - Label 'Biological pathway or network format'\n", + "Entity 'http://edamontology.org/format_2014' - Label 'Sequence-profile alignment format'\n", + "Entity 'http://edamontology.org/format_2015' - Label 'Sequence-profile alignment (HMM) format'\n", + "Entity 'http://edamontology.org/format_2017' - Label 'Amino acid index format'\n", + "Entity 'http://edamontology.org/format_2020' - Label 'Article format'\n", + "Entity 'http://edamontology.org/format_2021' - Label 'Text mining report format'\n", + "Entity 'http://edamontology.org/format_2027' - Label 'Enzyme kinetics report format'\n", + "Entity 'http://edamontology.org/format_2030' - Label 'Chemical data format'\n", + "Entity 'http://edamontology.org/format_2031' - Label 'Gene annotation format'\n", + "Entity 'http://edamontology.org/format_2032' - Label 'Workflow format'\n", + "Entity 'http://edamontology.org/format_2033' - Label 'Tertiary structure format'\n", + "Entity 'http://edamontology.org/format_2034' - Label 'Biological model format'\n", + "Entity 'http://edamontology.org/format_2035' - Label 'Chemical formula format'\n", + "Entity 'http://edamontology.org/format_2036' - Label 'Phylogenetic character data format'\n", + "Entity 'http://edamontology.org/format_2037' - Label 'Phylogenetic continuous quantitative character format'\n", + "Entity 'http://edamontology.org/format_2038' - Label 'Phylogenetic discrete states format'\n", + "Entity 'http://edamontology.org/format_2039' - Label 'Phylogenetic tree report (cliques) format'\n", + "Entity 'http://edamontology.org/format_2040' - Label 'Phylogenetic tree report (invariants) format'\n", + "Entity 'http://edamontology.org/format_2045' - Label 'Electron microscopy model format'\n", + "Entity 'http://edamontology.org/format_2049' - Label 'Phylogenetic tree report (tree distances) format'\n", + "Entity 'http://edamontology.org/format_2051' - Label 'Polymorphism report format'\n", + "Entity 'http://edamontology.org/format_2052' - Label 'Protein family report format'\n", + "Entity 'http://edamontology.org/format_2054' - Label 'Protein interaction format'\n", + "Entity 'http://edamontology.org/format_2055' - Label 'Sequence assembly format'\n", + "Entity 'http://edamontology.org/format_2056' - Label 'Microarray experiment data format'\n", + "Entity 'http://edamontology.org/format_2057' - Label 'Sequence trace format'\n", + "Entity 'http://edamontology.org/format_2058' - Label 'Gene expression report format'\n", + "Entity 'http://edamontology.org/format_2059' - Label 'Genotype and phenotype annotation format'\n", + "Entity 'http://edamontology.org/format_2060' - Label 'Map format'\n", + "Entity 'http://edamontology.org/format_2061' - Label 'Nucleic acid features (primers) format'\n", + "Entity 'http://edamontology.org/format_2062' - Label 'Protein report format'\n", + "Entity 'http://edamontology.org/format_2063' - Label 'Protein report (enzyme) format'\n", + "Entity 'http://edamontology.org/format_2064' - Label '3D-1D scoring matrix format'\n", + "Entity 'http://edamontology.org/format_2065' - Label 'Protein structure report (quality evaluation) format'\n", + "Entity 'http://edamontology.org/format_2066' - Label 'Database hits (sequence) format'\n", + "Entity 'http://edamontology.org/format_2067' - Label 'Sequence distance matrix format'\n", + "Entity 'http://edamontology.org/format_2068' - Label 'Sequence motif format'\n", + "Entity 'http://edamontology.org/format_2069' - Label 'Sequence profile format'\n", + "Entity 'http://edamontology.org/format_2072' - Label 'Hidden Markov model format'\n", + "Entity 'http://edamontology.org/format_2074' - Label 'Dirichlet distribution format'\n", + "Entity 'http://edamontology.org/format_2075' - Label 'HMM emission and transition counts format'\n", + "Entity 'http://edamontology.org/format_2076' - Label 'RNA secondary structure format'\n", + "Entity 'http://edamontology.org/format_2077' - Label 'Protein secondary structure format'\n", + "Entity 'http://edamontology.org/format_2078' - Label 'Sequence range format'\n", + "Entity 'http://edamontology.org/format_2094' - Label 'pure'\n", + "Entity 'http://edamontology.org/format_2095' - Label 'unpure'\n", + "Entity 'http://edamontology.org/format_2096' - Label 'unambiguous sequence'\n", + "Entity 'http://edamontology.org/format_2097' - Label 'ambiguous'\n", + "Entity 'http://edamontology.org/format_2155' - Label 'Sequence features (repeats) format'\n", + "Entity 'http://edamontology.org/format_2158' - Label 'Nucleic acid features (restriction sites) format'\n", + "Entity 'http://edamontology.org/format_2159' - Label 'Gene features (coding region) format'\n", + "Entity 'http://edamontology.org/format_2170' - Label 'Sequence cluster format'\n", + "Entity 'http://edamontology.org/format_2171' - Label 'Sequence cluster format (protein)'\n", + "Entity 'http://edamontology.org/format_2172' - Label 'Sequence cluster format (nucleic acid)'\n", + "Entity 'http://edamontology.org/format_2175' - Label 'Gene cluster format'\n", + "Entity 'http://edamontology.org/format_2181' - Label 'EMBL-like (text)'\n", + "Entity 'http://edamontology.org/format_2182' - Label 'FASTQ-like format (text)'\n", + "Entity 'http://edamontology.org/format_2183' - Label 'EMBLXML'\n", + "Entity 'http://edamontology.org/format_2184' - Label 'cdsxml'\n", + "Entity 'http://edamontology.org/format_2185' - Label 'INSDSeq'\n", + "Entity 'http://edamontology.org/format_2186' - Label 'geneseq'\n", + "Entity 'http://edamontology.org/format_2187' - Label 'UniProt-like (text)'\n", + "Entity 'http://edamontology.org/format_2188' - Label 'UniProt format'\n", + "Entity 'http://edamontology.org/format_2189' - Label 'ipi'\n", + "Entity 'http://edamontology.org/format_2194' - Label 'medline'\n", + "Entity 'http://edamontology.org/format_2195' - Label 'Ontology format'\n", + "Entity 'http://edamontology.org/format_2196' - Label 'OBO format'\n", + "Entity 'http://edamontology.org/format_2197' - Label 'OWL format'\n", + "Entity 'http://edamontology.org/format_2200' - Label 'FASTA-like (text)'\n", + "Entity 'http://edamontology.org/format_2202' - Label 'Sequence record full format'\n", + "Entity 'http://edamontology.org/format_2203' - Label 'Sequence record lite format'\n", + "Entity 'http://edamontology.org/format_2204' - Label 'EMBL format (XML)'\n", + "Entity 'http://edamontology.org/format_2205' - Label 'GenBank-like format (text)'\n", + "Entity 'http://edamontology.org/format_2206' - Label 'Sequence feature table format (text)'\n", + "Entity 'http://edamontology.org/format_2210' - Label 'Strain data format'\n", + "Entity 'http://edamontology.org/format_2211' - Label 'CIP strain data format'\n", + "Entity 'http://edamontology.org/format_2243' - Label 'phylip property values'\n", + "Entity 'http://edamontology.org/format_2303' - Label 'STRING entry format (HTML)'\n", + "Entity 'http://edamontology.org/format_2304' - Label 'STRING entry format (XML)'\n", + "Entity 'http://edamontology.org/format_2305' - Label 'GFF'\n", + "Entity 'http://edamontology.org/format_2306' - Label 'GTF'\n", + "Entity 'http://edamontology.org/format_2310' - Label 'FASTA-HTML'\n", + "Entity 'http://edamontology.org/format_2311' - Label 'EMBL-HTML'\n", + "Entity 'http://edamontology.org/format_2322' - Label 'BioCyc enzyme report format'\n", + "Entity 'http://edamontology.org/format_2323' - Label 'ENZYME enzyme report format'\n", + "Entity 'http://edamontology.org/format_2328' - Label 'PseudoCAP gene report format'\n", + "Entity 'http://edamontology.org/format_2329' - Label 'GeneCards gene report format'\n", + "Entity 'http://edamontology.org/format_2330' - Label 'Textual format'\n", + "Entity 'http://edamontology.org/format_2331' - Label 'HTML'\n", + "Entity 'http://edamontology.org/format_2332' - Label 'XML'\n", + "Entity 'http://edamontology.org/format_2333' - Label 'Binary format'\n", + "Entity 'http://edamontology.org/format_2334' - Label 'URI format'\n", + "Entity 'http://edamontology.org/format_2341' - Label 'NCI-Nature pathway entry format'\n", + "Entity 'http://edamontology.org/format_2350' - Label 'Format (by type of data)'\n", + "Entity 'http://edamontology.org/format_2352' - Label 'BioXSD (XML)'\n", + "Entity 'http://edamontology.org/format_2376' - Label 'RDF format'\n", + "Entity 'http://edamontology.org/format_2532' - Label 'GenBank-HTML'\n", + "Entity 'http://edamontology.org/format_2542' - Label 'Protein features (domains) format'\n", + "Entity 'http://edamontology.org/format_2543' - Label 'EMBL-like format'\n", + "Entity 'http://edamontology.org/format_2545' - Label 'FASTQ-like format'\n", + "Entity 'http://edamontology.org/format_2546' - Label 'FASTA-like'\n", + "Entity 'http://edamontology.org/format_2547' - Label 'uniprotkb-like format'\n", + "Entity 'http://edamontology.org/format_2548' - Label 'Sequence feature table format'\n", + "Entity 'http://edamontology.org/format_2549' - Label 'OBO'\n", + "Entity 'http://edamontology.org/format_2550' - Label 'OBO-XML'\n", + "Entity 'http://edamontology.org/format_2551' - Label 'Sequence record format (text)'\n", + "Entity 'http://edamontology.org/format_2552' - Label 'Sequence record format (XML)'\n", + "Entity 'http://edamontology.org/format_2553' - Label 'Sequence feature table format (XML)'\n", + "Entity 'http://edamontology.org/format_2554' - Label 'Alignment format (text)'\n", + "Entity 'http://edamontology.org/format_2555' - Label 'Alignment format (XML)'\n", + "Entity 'http://edamontology.org/format_2556' - Label 'Phylogenetic tree format (text)'\n", + "Entity 'http://edamontology.org/format_2557' - Label 'Phylogenetic tree format (XML)'\n", + "Entity 'http://edamontology.org/format_2558' - Label 'EMBL-like (XML)'\n", + "Entity 'http://edamontology.org/format_2559' - Label 'GenBank-like format'\n", + "Entity 'http://edamontology.org/format_2560' - Label 'STRING entry format'\n", + "Entity 'http://edamontology.org/format_2561' - Label 'Sequence assembly format (text)'\n", + "Entity 'http://edamontology.org/format_2562' - Label 'Amino acid identifier format'\n", + "Entity 'http://edamontology.org/format_2566' - Label 'completely unambiguous'\n", + "Entity 'http://edamontology.org/format_2567' - Label 'completely unambiguous pure'\n", + "Entity 'http://edamontology.org/format_2568' - Label 'completely unambiguous pure nucleotide'\n", + "Entity 'http://edamontology.org/format_2569' - Label 'completely unambiguous pure dna'\n", + "Entity 'http://edamontology.org/format_2570' - Label 'completely unambiguous pure rna sequence'\n", + "Entity 'http://edamontology.org/format_2571' - Label 'Raw sequence format'\n", + "Entity 'http://edamontology.org/format_2572' - Label 'BAM'\n", + "Entity 'http://edamontology.org/format_2573' - Label 'SAM'\n", + "Entity 'http://edamontology.org/format_2585' - Label 'SBML'\n", + "Entity 'http://edamontology.org/format_2607' - Label 'completely unambiguous pure protein'\n", + "Entity 'http://edamontology.org/format_2848' - Label 'Bibliographic reference format'\n", + "Entity 'http://edamontology.org/format_2919' - Label 'Sequence annotation track format'\n", + "Entity 'http://edamontology.org/format_2920' - Label 'Alignment format (pair only)'\n", + "Entity 'http://edamontology.org/format_2921' - Label 'Sequence variation annotation format'\n", + "Entity 'http://edamontology.org/format_2922' - Label 'markx0 variant'\n", + "Entity 'http://edamontology.org/format_2923' - Label 'mega variant'\n", + "Entity 'http://edamontology.org/format_2924' - Label 'Phylip format variant'\n", + "Entity 'http://edamontology.org/format_3000' - Label 'AB1'\n", + "Entity 'http://edamontology.org/format_3001' - Label 'ACE'\n", + "Entity 'http://edamontology.org/format_3003' - Label 'BED'\n", + "Entity 'http://edamontology.org/format_3004' - Label 'bigBed'\n", + "Entity 'http://edamontology.org/format_3005' - Label 'WIG'\n", + "Entity 'http://edamontology.org/format_3006' - Label 'bigWig'\n", + "Entity 'http://edamontology.org/format_3007' - Label 'PSL'\n", + "Entity 'http://edamontology.org/format_3008' - Label 'MAF'\n", + "Entity 'http://edamontology.org/format_3009' - Label '2bit'\n", + "Entity 'http://edamontology.org/format_3010' - Label '.nib'\n", + "Entity 'http://edamontology.org/format_3011' - Label 'genePred'\n", + "Entity 'http://edamontology.org/format_3012' - Label 'pgSnp'\n", + "Entity 'http://edamontology.org/format_3013' - Label 'axt'\n", + "Entity 'http://edamontology.org/format_3014' - Label 'LAV'\n", + "Entity 'http://edamontology.org/format_3015' - Label 'Pileup'\n", + "Entity 'http://edamontology.org/format_3016' - Label 'VCF'\n", + "Entity 'http://edamontology.org/format_3017' - Label 'SRF'\n", + "Entity 'http://edamontology.org/format_3018' - Label 'ZTR'\n", + "Entity 'http://edamontology.org/format_3019' - Label 'GVF'\n", + "Entity 'http://edamontology.org/format_3020' - Label 'BCF'\n", + "Entity 'http://edamontology.org/format_3033' - Label 'Matrix format'\n", + "Entity 'http://edamontology.org/format_3097' - Label 'Protein domain classification format'\n", + "Entity 'http://edamontology.org/format_3098' - Label 'Raw SCOP domain classification format'\n", + "Entity 'http://edamontology.org/format_3099' - Label 'Raw CATH domain classification format'\n", + "Entity 'http://edamontology.org/format_3100' - Label 'CATH domain report format'\n", + "Entity 'http://edamontology.org/format_3155' - Label 'SBRML'\n", + "Entity 'http://edamontology.org/format_3156' - Label 'BioPAX'\n", + "Entity 'http://edamontology.org/format_3157' - Label 'EBI Application Result XML'\n", + "Entity 'http://edamontology.org/format_3158' - Label 'PSI MI XML (MIF)'\n", + "Entity 'http://edamontology.org/format_3159' - Label 'phyloXML'\n", + "Entity 'http://edamontology.org/format_3160' - Label 'NeXML'\n", + "Entity 'http://edamontology.org/format_3161' - Label 'MAGE-ML'\n", + "Entity 'http://edamontology.org/format_3162' - Label 'MAGE-TAB'\n", + "Entity 'http://edamontology.org/format_3163' - Label 'GCDML'\n", + "Entity 'http://edamontology.org/format_3164' - Label 'GTrack'\n", + "Entity 'http://edamontology.org/format_3166' - Label 'Biological pathway or network report format'\n", + "Entity 'http://edamontology.org/format_3167' - Label 'Experiment annotation format'\n", + "Entity 'http://edamontology.org/format_3235' - Label 'Cytoband format'\n", + "Entity 'http://edamontology.org/format_3239' - Label 'CopasiML'\n", + "Entity 'http://edamontology.org/format_3240' - Label 'CellML'\n", + "Entity 'http://edamontology.org/format_3242' - Label 'PSI MI TAB (MITAB)'\n", + "Entity 'http://edamontology.org/format_3243' - Label 'PSI-PAR'\n", + "Entity 'http://edamontology.org/format_3244' - Label 'mzML'\n", + "Entity 'http://edamontology.org/format_3245' - Label 'Mass spectrometry data format'\n", + "Entity 'http://edamontology.org/format_3246' - Label 'TraML'\n", + "Entity 'http://edamontology.org/format_3247' - Label 'mzIdentML'\n", + "Entity 'http://edamontology.org/format_3248' - Label 'mzQuantML'\n", + "Entity 'http://edamontology.org/format_3249' - Label 'GelML'\n", + "Entity 'http://edamontology.org/format_3250' - Label 'spML'\n", + "Entity 'http://edamontology.org/format_3252' - Label 'OWL Functional Syntax'\n", + "Entity 'http://edamontology.org/format_3253' - Label 'Manchester OWL Syntax'\n", + "Entity 'http://edamontology.org/format_3254' - Label 'KRSS2 Syntax'\n", + "Entity 'http://edamontology.org/format_3255' - Label 'Turtle'\n", + "Entity 'http://edamontology.org/format_3256' - Label 'N-Triples'\n", + "Entity 'http://edamontology.org/format_3257' - Label 'Notation3'\n", + "Entity 'http://edamontology.org/format_3261' - Label 'RDF/XML'\n", + "Entity 'http://edamontology.org/format_3262' - Label 'OWL/XML'\n", + "Entity 'http://edamontology.org/format_3281' - Label 'A2M'\n", + "Entity 'http://edamontology.org/format_3284' - Label 'SFF'\n", + "Entity 'http://edamontology.org/format_3285' - Label 'MAP'\n", + "Entity 'http://edamontology.org/format_3286' - Label 'PED'\n", + "Entity 'http://edamontology.org/format_3287' - Label 'Individual genetic data format'\n", + "Entity 'http://edamontology.org/format_3288' - Label 'PED/MAP'\n", + "Entity 'http://edamontology.org/format_3309' - Label 'CT'\n", + "Entity 'http://edamontology.org/format_3310' - Label 'SS'\n", + "Entity 'http://edamontology.org/format_3311' - Label 'RNAML'\n", + "Entity 'http://edamontology.org/format_3312' - Label 'GDE'\n", + "Entity 'http://edamontology.org/format_3313' - Label 'BLC'\n", + "Entity 'http://edamontology.org/format_3326' - Label 'Data index format'\n", + "Entity 'http://edamontology.org/format_3327' - Label 'BAI'\n", + "Entity 'http://edamontology.org/format_3328' - Label 'HMMER2'\n", + "Entity 'http://edamontology.org/format_3329' - Label 'HMMER3'\n", + "Entity 'http://edamontology.org/format_3330' - Label 'PO'\n", + "Entity 'http://edamontology.org/format_3331' - Label 'BLAST XML results format'\n", + "Entity 'http://edamontology.org/format_3462' - Label 'CRAM'\n", + "Entity 'http://edamontology.org/format_3464' - Label 'JSON'\n", + "Entity 'http://edamontology.org/format_3466' - Label 'EPS'\n", + "Entity 'http://edamontology.org/format_3467' - Label 'GIF'\n", + "Entity 'http://edamontology.org/format_3468' - Label 'xls'\n", + "Entity 'http://edamontology.org/format_3475' - Label 'TSV'\n", + "Entity 'http://edamontology.org/format_3476' - Label 'Gene expression data format'\n", + "Entity 'http://edamontology.org/format_3477' - Label 'Cytoscape input file format'\n", + "Entity 'http://edamontology.org/format_3484' - Label 'ebwt'\n", + "Entity 'http://edamontology.org/format_3485' - Label 'RSF'\n", + "Entity 'http://edamontology.org/format_3486' - Label 'GCG format variant'\n", + "Entity 'http://edamontology.org/format_3487' - Label 'BSML'\n", + "Entity 'http://edamontology.org/format_3491' - Label 'ebwtl'\n", + "Entity 'http://edamontology.org/format_3499' - Label 'Ensembl variation file format'\n", + "Entity 'http://edamontology.org/format_3506' - Label 'docx'\n", + "Entity 'http://edamontology.org/format_3507' - Label 'Document format'\n", + "Entity 'http://edamontology.org/format_3508' - Label 'PDF'\n", + "Entity 'http://edamontology.org/format_3547' - Label 'Image format'\n", + "Entity 'http://edamontology.org/format_3548' - Label 'DICOM format'\n", + "Entity 'http://edamontology.org/format_3549' - Label 'nii'\n", + "Entity 'http://edamontology.org/format_3550' - Label 'mhd'\n", + "Entity 'http://edamontology.org/format_3551' - Label 'nrrd'\n", + "Entity 'http://edamontology.org/format_3554' - Label 'R file format'\n", + "Entity 'http://edamontology.org/format_3555' - Label 'SPSS'\n", + "Entity 'http://edamontology.org/format_3556' - Label 'MHTML'\n", + "Entity 'http://edamontology.org/format_3578' - Label 'IDAT'\n", + "Entity 'http://edamontology.org/format_3579' - Label 'JPG'\n", + "Entity 'http://edamontology.org/format_3580' - Label 'rcc'\n", + "Entity 'http://edamontology.org/format_3581' - Label 'arff'\n", + "Entity 'http://edamontology.org/format_3582' - Label 'afg'\n", + "Entity 'http://edamontology.org/format_3583' - Label 'bedgraph'\n", + "Entity 'http://edamontology.org/format_3584' - Label 'bedstrict'\n", + "Entity 'http://edamontology.org/format_3585' - Label 'bed6'\n", + "Entity 'http://edamontology.org/format_3586' - Label 'bed12'\n", + "Entity 'http://edamontology.org/format_3587' - Label 'chrominfo'\n", + "Entity 'http://edamontology.org/format_3588' - Label 'customtrack'\n", + "Entity 'http://edamontology.org/format_3589' - Label 'csfasta'\n", + "Entity 'http://edamontology.org/format_3590' - Label 'HDF5'\n", + "Entity 'http://edamontology.org/format_3591' - Label 'TIFF'\n", + "Entity 'http://edamontology.org/format_3592' - Label 'BMP'\n", + "Entity 'http://edamontology.org/format_3593' - Label 'im'\n", + "Entity 'http://edamontology.org/format_3594' - Label 'pcd'\n", + "Entity 'http://edamontology.org/format_3595' - Label 'pcx'\n", + "Entity 'http://edamontology.org/format_3596' - Label 'ppm'\n", + "Entity 'http://edamontology.org/format_3597' - Label 'psd'\n", + "Entity 'http://edamontology.org/format_3598' - Label 'xbm'\n", + "Entity 'http://edamontology.org/format_3599' - Label 'xpm'\n", + "Entity 'http://edamontology.org/format_3600' - Label 'rgb'\n", + "Entity 'http://edamontology.org/format_3601' - Label 'pbm'\n", + "Entity 'http://edamontology.org/format_3602' - Label 'pgm'\n", + "Entity 'http://edamontology.org/format_3603' - Label 'PNG'\n", + "Entity 'http://edamontology.org/format_3604' - Label 'SVG'\n", + "Entity 'http://edamontology.org/format_3605' - Label 'rast'\n", + "Entity 'http://edamontology.org/format_3606' - Label 'Sequence quality report format (text)'\n", + "Entity 'http://edamontology.org/format_3607' - Label 'qual'\n", + "Entity 'http://edamontology.org/format_3608' - Label 'qualsolexa'\n", + "Entity 'http://edamontology.org/format_3609' - Label 'qualillumina'\n", + "Entity 'http://edamontology.org/format_3610' - Label 'qualsolid'\n", + "Entity 'http://edamontology.org/format_3611' - Label 'qual454'\n", + "Entity 'http://edamontology.org/format_3612' - Label 'ENCODE peak format'\n", + "Entity 'http://edamontology.org/format_3613' - Label 'ENCODE narrow peak format'\n", + "Entity 'http://edamontology.org/format_3614' - Label 'ENCODE broad peak format'\n", + "Entity 'http://edamontology.org/format_3615' - Label 'bgzip'\n", + "Entity 'http://edamontology.org/format_3616' - Label 'tabix'\n", + "Entity 'http://edamontology.org/format_3617' - Label 'Graph format'\n", + "Entity 'http://edamontology.org/format_3618' - Label 'xgmml'\n", + "Entity 'http://edamontology.org/format_3619' - Label 'sif'\n", + "Entity 'http://edamontology.org/format_3620' - Label 'xlsx'\n", + "Entity 'http://edamontology.org/format_3621' - Label 'SQLite format'\n", + "Entity 'http://edamontology.org/format_3622' - Label 'Gemini SQLite format'\n", + "Entity 'http://edamontology.org/format_3623' - Label 'Index format'\n", + "Entity 'http://edamontology.org/format_3624' - Label 'snpeffdb'\n", + "Entity 'http://edamontology.org/format_3626' - Label 'MAT'\n", + "Entity 'http://edamontology.org/format_3650' - Label 'netCDF'\n", + "Entity 'http://edamontology.org/format_3651' - Label 'MGF'\n", + "Entity 'http://edamontology.org/format_3652' - Label 'dta'\n", + "Entity 'http://edamontology.org/format_3653' - Label 'pkl'\n", + "Entity 'http://edamontology.org/format_3654' - Label 'mzXML'\n", + "Entity 'http://edamontology.org/format_3655' - Label 'pepXML'\n", + "Entity 'http://edamontology.org/format_3657' - Label 'GPML'\n", + "Entity 'http://edamontology.org/format_3665' - Label 'K-mer countgraph'\n", + "Entity 'http://edamontology.org/format_3681' - Label 'mzTab'\n", + "Entity 'http://edamontology.org/format_3682' - Label 'imzML metadata file'\n", + "Entity 'http://edamontology.org/format_3683' - Label 'qcML'\n", + "Entity 'http://edamontology.org/format_3684' - Label 'PRIDE XML'\n", + "Entity 'http://edamontology.org/format_3685' - Label 'SED-ML'\n", + "Entity 'http://edamontology.org/format_3686' - Label 'COMBINE OMEX'\n", + "Entity 'http://edamontology.org/format_3687' - Label 'ISA-TAB'\n", + "Entity 'http://edamontology.org/format_3688' - Label 'SBtab'\n", + "Entity 'http://edamontology.org/format_3689' - Label 'BCML'\n", + "Entity 'http://edamontology.org/format_3690' - Label 'BDML'\n", + "Entity 'http://edamontology.org/format_3691' - Label 'BEL'\n", + "Entity 'http://edamontology.org/format_3692' - Label 'SBGN-ML'\n", + "Entity 'http://edamontology.org/format_3693' - Label 'AGP'\n", + "Entity 'http://edamontology.org/format_3696' - Label 'PS'\n", + "Entity 'http://edamontology.org/format_3698' - Label 'SRA format'\n", + "Entity 'http://edamontology.org/format_3699' - Label 'VDB'\n", + "Entity 'http://edamontology.org/format_3700' - Label 'Tabix index file format'\n", + "Entity 'http://edamontology.org/format_3701' - Label 'Sequin format'\n", + "Entity 'http://edamontology.org/format_3702' - Label 'MSF'\n", + "Entity 'http://edamontology.org/format_3706' - Label 'Biodiversity data format'\n", + "Entity 'http://edamontology.org/format_3708' - Label 'ABCD format'\n", + "Entity 'http://edamontology.org/format_3709' - Label 'GCT/Res format'\n", + "Entity 'http://edamontology.org/format_3710' - Label 'WIFF format'\n", + "Entity 'http://edamontology.org/format_3711' - Label 'X!Tandem XML'\n", + "Entity 'http://edamontology.org/format_3712' - Label 'Thermo RAW'\n", + "Entity 'http://edamontology.org/format_3713' - Label 'Mascot .dat file'\n", + "Entity 'http://edamontology.org/format_3714' - Label 'MaxQuant APL peaklist format'\n", + "Entity 'http://edamontology.org/format_3725' - Label 'SBOL'\n", + "Entity 'http://edamontology.org/format_3726' - Label 'PMML'\n", + "Entity 'http://edamontology.org/format_3727' - Label 'OME-TIFF'\n", + "Entity 'http://edamontology.org/format_3728' - Label 'LocARNA PP'\n", + "Entity 'http://edamontology.org/format_3729' - Label 'dbGaP format'\n", + "Entity 'http://edamontology.org/format_3746' - Label 'BIOM format'\n", + "Entity 'http://edamontology.org/format_3747' - Label 'protXML'\n", + "Entity 'http://edamontology.org/format_3748' - Label 'Linked data format'\n", + "Entity 'http://edamontology.org/format_3749' - Label 'JSON-LD'\n", + "Entity 'http://edamontology.org/format_3750' - Label 'YAML'\n", + "Entity 'http://edamontology.org/format_3751' - Label 'DSV'\n", + "Entity 'http://edamontology.org/format_3752' - Label 'CSV'\n", + "Entity 'http://edamontology.org/format_3758' - Label 'SEQUEST .out file'\n", + "Entity 'http://edamontology.org/format_3764' - Label 'idXML'\n", + "Entity 'http://edamontology.org/format_3765' - Label 'KNIME datatable format'\n", + "Entity 'http://edamontology.org/format_3770' - Label 'UniProtKB XML'\n", + "Entity 'http://edamontology.org/format_3771' - Label 'UniProtKB RDF'\n", + "Entity 'http://edamontology.org/format_3772' - Label 'BioJSON (BioXSD)'\n", + "Entity 'http://edamontology.org/format_3773' - Label 'BioYAML'\n", + "Entity 'http://edamontology.org/format_3774' - Label 'BioJSON (Jalview)'\n", + "Entity 'http://edamontology.org/format_3775' - Label 'GSuite'\n", + "Entity 'http://edamontology.org/format_3776' - Label 'BTrack'\n", + "Entity 'http://edamontology.org/format_3777' - Label 'MCPD'\n", + "Entity 'http://edamontology.org/format_3780' - Label 'Annotated text format'\n", + "Entity 'http://edamontology.org/format_3781' - Label 'PubAnnotation format'\n", + "Entity 'http://edamontology.org/format_3782' - Label 'BioC'\n", + "Entity 'http://edamontology.org/format_3783' - Label 'PubTator format'\n", + "Entity 'http://edamontology.org/format_3784' - Label 'Open Annotation format'\n", + "Entity 'http://edamontology.org/format_3785' - Label 'BioNLP Shared Task format'\n", + "Entity 'http://edamontology.org/format_3787' - Label 'Query language'\n", + "Entity 'http://edamontology.org/format_3788' - Label 'SQL'\n", + "Entity 'http://edamontology.org/format_3789' - Label 'XQuery'\n", + "Entity 'http://edamontology.org/format_3790' - Label 'SPARQL'\n", + "Entity 'http://edamontology.org/format_3804' - Label 'xsd'\n", + "Entity 'http://edamontology.org/format_3811' - Label 'XMFA'\n", + "Entity 'http://edamontology.org/format_3812' - Label 'GEN'\n", + "Entity 'http://edamontology.org/format_3813' - Label 'SAMPLE file format'\n", + "Entity 'http://edamontology.org/format_3814' - Label 'SDF'\n", + "Entity 'http://edamontology.org/format_3815' - Label 'Molfile'\n", + "Entity 'http://edamontology.org/format_3816' - Label 'Mol2'\n", + "Entity 'http://edamontology.org/format_3817' - Label 'latex'\n", + "Entity 'http://edamontology.org/format_3818' - Label 'ELAND format'\n", + "Entity 'http://edamontology.org/format_3819' - Label 'Relaxed PHYLIP Interleaved'\n", + "Entity 'http://edamontology.org/format_3820' - Label 'Relaxed PHYLIP Sequential'\n", + "Entity 'http://edamontology.org/format_3821' - Label 'VisML'\n", + "Entity 'http://edamontology.org/format_3822' - Label 'GML'\n", + "Entity 'http://edamontology.org/format_3823' - Label 'FASTG'\n", + "Entity 'http://edamontology.org/format_3824' - Label 'NMR data format'\n", + "Entity 'http://edamontology.org/format_3825' - Label 'nmrML'\n", + "Entity 'http://edamontology.org/format_3826' - Label 'proBAM'\n", + "Entity 'http://edamontology.org/format_3827' - Label 'proBED'\n", + "Entity 'http://edamontology.org/format_3828' - Label 'Raw microarray data format'\n", + "Entity 'http://edamontology.org/format_3829' - Label 'GPR'\n", + "Entity 'http://edamontology.org/format_3830' - Label 'ARB'\n", + "Entity 'http://edamontology.org/format_3832' - Label 'consensusXML'\n", + "Entity 'http://edamontology.org/format_3833' - Label 'featureXML'\n", + "Entity 'http://edamontology.org/format_3834' - Label 'mzData'\n", + "Entity 'http://edamontology.org/format_3835' - Label 'TIDE TXT'\n", + "Entity 'http://edamontology.org/format_3836' - Label 'BLAST XML v2 results format'\n", + "Entity 'http://edamontology.org/format_3838' - Label 'pptx'\n", + "Entity 'http://edamontology.org/format_3839' - Label 'ibd'\n", + "Entity 'http://edamontology.org/format_3841' - Label 'NLP format'\n", + "Entity 'http://edamontology.org/format_3843' - Label 'BEAST'\n", + "Entity 'http://edamontology.org/format_3844' - Label 'Chado-XML'\n", + "Entity 'http://edamontology.org/format_3845' - Label 'HSAML'\n", + "Entity 'http://edamontology.org/format_3846' - Label 'InterProScan XML'\n", + "Entity 'http://edamontology.org/format_3847' - Label 'KGML'\n", + "Entity 'http://edamontology.org/format_3848' - Label 'PubMed XML'\n", + "Entity 'http://edamontology.org/format_3849' - Label 'MSAML'\n", + "Entity 'http://edamontology.org/format_3850' - Label 'OrthoXML'\n", + "Entity 'http://edamontology.org/format_3851' - Label 'PSDML'\n", + "Entity 'http://edamontology.org/format_3852' - Label 'SeqXML'\n", + "Entity 'http://edamontology.org/format_3853' - Label 'UniParc XML'\n", + "Entity 'http://edamontology.org/format_3854' - Label 'UniRef XML'\n", + "Entity 'http://edamontology.org/format_3857' - Label 'CWL'\n", + "Entity 'http://edamontology.org/format_3858' - Label 'Waters RAW'\n", + "Entity 'http://edamontology.org/format_3859' - Label 'JCAMP-DX'\n", + "Entity 'http://edamontology.org/format_3862' - Label 'NLP annotation format'\n", + "Entity 'http://edamontology.org/format_3863' - Label 'NLP corpus format'\n", + "Entity 'http://edamontology.org/format_3864' - Label 'mirGFF3'\n", + "Entity 'http://edamontology.org/format_3865' - Label 'RNA annotation format'\n", + "Entity 'http://edamontology.org/format_3866' - Label 'Trajectory format'\n", + "Entity 'http://edamontology.org/format_3867' - Label 'Trajectory format (binary)'\n", + "Entity 'http://edamontology.org/format_3868' - Label 'Trajectory format (text)'\n", + "Entity 'http://edamontology.org/format_3873' - Label 'HDF'\n", + "Entity 'http://edamontology.org/format_3874' - Label 'PCAzip'\n", + "Entity 'http://edamontology.org/format_3875' - Label 'XTC'\n", + "Entity 'http://edamontology.org/format_3876' - Label 'TNG'\n", + "Entity 'http://edamontology.org/format_3877' - Label 'XYZ'\n", + "Entity 'http://edamontology.org/format_3878' - Label 'mdcrd'\n", + "Entity 'http://edamontology.org/format_3879' - Label 'Topology format'\n", + "Entity 'http://edamontology.org/format_3880' - Label 'GROMACS top'\n", + "Entity 'http://edamontology.org/format_3881' - Label 'AMBER top'\n", + "Entity 'http://edamontology.org/format_3882' - Label 'PSF'\n", + "Entity 'http://edamontology.org/format_3883' - Label 'GROMACS itp'\n", + "Entity 'http://edamontology.org/format_3884' - Label 'FF parameter format'\n", + "Entity 'http://edamontology.org/format_3885' - Label 'BinPos'\n", + "Entity 'http://edamontology.org/format_3886' - Label 'RST'\n", + "Entity 'http://edamontology.org/format_3887' - Label 'CHARMM rtf'\n", + "Entity 'http://edamontology.org/format_3888' - Label 'AMBER frcmod'\n", + "Entity 'http://edamontology.org/format_3889' - Label 'AMBER off'\n", + "Entity 'http://edamontology.org/format_3906' - Label 'NMReDATA'\n", + "Entity 'http://edamontology.org/format_3909' - Label 'BpForms'\n", + "Entity 'http://edamontology.org/format_3910' - Label 'trr'\n", + "Entity 'http://edamontology.org/format_3911' - Label 'msh'\n", + "Entity 'http://edamontology.org/format_3913' - Label 'Loom'\n", + "Entity 'http://edamontology.org/format_3915' - Label 'Zarr'\n", + "Entity 'http://edamontology.org/format_3916' - Label 'MTX'\n", + "Entity 'http://edamontology.org/format_3951' - Label 'BcForms'\n", + "Entity 'http://edamontology.org/format_3956' - Label 'N-Quads'\n", + "Entity 'http://edamontology.org/format_3969' - Label 'Vega'\n", + "Entity 'http://edamontology.org/format_3970' - Label 'Vega-lite'\n", + "Entity 'http://edamontology.org/format_3971' - Label 'NeuroML'\n", + "Entity 'http://edamontology.org/format_3972' - Label 'BNGL'\n", + "Entity 'http://edamontology.org/format_3973' - Label 'Docker image'\n", + "Entity 'http://edamontology.org/format_3975' - Label 'GFA 1'\n", + "Entity 'http://edamontology.org/format_3976' - Label 'GFA 2'\n", + "Entity 'http://edamontology.org/format_3977' - Label 'ObjTables'\n", + "Entity 'http://edamontology.org/format_3978' - Label 'CONTIG'\n", + "Entity 'http://edamontology.org/format_3979' - Label 'WEGO'\n", + "Entity 'http://edamontology.org/format_3980' - Label 'RPKM'\n", + "Entity 'http://edamontology.org/format_3981' - Label 'TAR format'\n", + "Entity 'http://edamontology.org/format_3982' - Label 'CHAIN'\n", + "Entity 'http://edamontology.org/format_3983' - Label 'NET'\n", + "Entity 'http://edamontology.org/format_3984' - Label 'QMAP'\n", + "Entity 'http://edamontology.org/format_3985' - Label 'gxformat2'\n", + "Entity 'http://edamontology.org/format_3986' - Label 'WMV'\n", + "Entity 'http://edamontology.org/format_3987' - Label 'ZIP format'\n", + "Entity 'http://edamontology.org/format_3988' - Label 'LSM'\n", + "Entity 'http://edamontology.org/format_3989' - Label 'GZIP format'\n", + "Entity 'http://edamontology.org/format_3990' - Label 'AVI'\n", + "Entity 'http://edamontology.org/format_3991' - Label 'TrackDB'\n", + "Entity 'http://edamontology.org/format_3992' - Label 'CIGAR format'\n", + "Entity 'http://edamontology.org/format_3993' - Label 'Stereolithography format'\n", + "Entity 'http://edamontology.org/format_3994' - Label 'U3D'\n", + "Entity 'http://edamontology.org/format_3995' - Label 'Texture file format'\n", + "Entity 'http://edamontology.org/format_3996' - Label 'Python script'\n", + "Entity 'http://edamontology.org/format_3997' - Label 'MPEG-4'\n", + "Entity 'http://edamontology.org/format_3998' - Label 'Perl script'\n", + "Entity 'http://edamontology.org/format_3999' - Label 'R script'\n", + "Entity 'http://edamontology.org/format_4000' - Label 'R markdown'\n", + "Entity 'http://edamontology.org/format_4001' - Label 'NIFTI format'\n", + "Entity 'http://edamontology.org/format_4002' - Label 'pickle'\n", + "Entity 'http://edamontology.org/format_4003' - Label 'NumPy format'\n", + "Entity 'http://edamontology.org/format_4004' - Label 'SimTools repertoire file format'\n", + "Entity 'http://edamontology.org/format_4005' - Label 'Configuration file format'\n", + "Entity 'http://edamontology.org/format_4006' - Label 'Zstandard format'\n", + "Entity 'http://edamontology.org/format_4007' - Label 'MATLAB script'\n", + "Entity 'http://edamontology.org/format_4015' - Label 'PEtab'\n", + "Entity 'http://edamontology.org/format_4018' - Label 'gVCF'\n", + "Entity 'http://edamontology.org/format_4023' - Label 'cml'\n", + "Entity 'http://edamontology.org/format_4024' - Label 'cif'\n", + "Entity 'http://edamontology.org/format_4025' - Label 'BioSimulators format for the specifications of biosimulation tools'\n", + "Entity 'http://edamontology.org/format_4026' - Label 'BioSimulators standard for command-line interfaces for biosimulation tools'\n", + "Entity 'http://edamontology.org/format_4035' - Label 'PQR'\n", + "Entity 'http://edamontology.org/format_4036' - Label 'PDBQT'\n", + "Entity 'http://edamontology.org/format_4039' - Label 'MSP'\n", + "Entity 'http://edamontology.org/operation_0004' - Label 'Operation'\n", + "Entity 'http://edamontology.org/operation_0224' - Label 'Query and retrieval'\n", + "Entity 'http://edamontology.org/operation_0225' - Label 'Data retrieval (database cross-reference)'\n", + "Entity 'http://edamontology.org/operation_0226' - Label 'Annotation'\n", + "Entity 'http://edamontology.org/operation_0227' - Label 'Indexing'\n", + "Entity 'http://edamontology.org/operation_0228' - Label 'Data index analysis'\n", + "Entity 'http://edamontology.org/operation_0229' - Label 'Annotation retrieval (sequence)'\n", + "Entity 'http://edamontology.org/operation_0230' - Label 'Sequence generation'\n", + "Entity 'http://edamontology.org/operation_0231' - Label 'Sequence editing'\n", + "Entity 'http://edamontology.org/operation_0232' - Label 'Sequence merging'\n", + "Entity 'http://edamontology.org/operation_0233' - Label 'Sequence conversion'\n", + "Entity 'http://edamontology.org/operation_0234' - Label 'Sequence complexity calculation'\n", + "Entity 'http://edamontology.org/operation_0235' - Label 'Sequence ambiguity calculation'\n", + "Entity 'http://edamontology.org/operation_0236' - Label 'Sequence composition calculation'\n", + "Entity 'http://edamontology.org/operation_0237' - Label 'Repeat sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0238' - Label 'Sequence motif discovery'\n", + "Entity 'http://edamontology.org/operation_0239' - Label 'Sequence motif recognition'\n", + "Entity 'http://edamontology.org/operation_0240' - Label 'Sequence motif comparison'\n", + "Entity 'http://edamontology.org/operation_0241' - Label 'Transcription regulatory sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0242' - Label 'Conserved transcription regulatory sequence identification'\n", + "Entity 'http://edamontology.org/operation_0243' - Label 'Protein property calculation (from structure)'\n", + "Entity 'http://edamontology.org/operation_0244' - Label 'Simulation analysis'\n", + "Entity 'http://edamontology.org/operation_0245' - Label 'Structural motif discovery'\n", + "Entity 'http://edamontology.org/operation_0246' - Label 'Protein domain recognition'\n", + "Entity 'http://edamontology.org/operation_0247' - Label 'Protein architecture analysis'\n", + "Entity 'http://edamontology.org/operation_0248' - Label 'Residue interaction calculation'\n", + "Entity 'http://edamontology.org/operation_0249' - Label 'Protein geometry calculation'\n", + "Entity 'http://edamontology.org/operation_0250' - Label 'Protein property calculation'\n", + "Entity 'http://edamontology.org/operation_0252' - Label 'Peptide immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0253' - Label 'Sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_0254' - Label 'Data retrieval (feature table)'\n", + "Entity 'http://edamontology.org/operation_0255' - Label 'Feature table query'\n", + "Entity 'http://edamontology.org/operation_0256' - Label 'Sequence feature comparison'\n", + "Entity 'http://edamontology.org/operation_0257' - Label 'Data retrieval (sequence alignment)'\n", + "Entity 'http://edamontology.org/operation_0258' - Label 'Sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_0259' - Label 'Sequence alignment comparison'\n", + "Entity 'http://edamontology.org/operation_0260' - Label 'Sequence alignment conversion'\n", + "Entity 'http://edamontology.org/operation_0261' - Label 'Nucleic acid property processing'\n", + "Entity 'http://edamontology.org/operation_0262' - Label 'Nucleic acid property calculation'\n", + "Entity 'http://edamontology.org/operation_0264' - Label 'Alternative splicing prediction'\n", + "Entity 'http://edamontology.org/operation_0265' - Label 'Frameshift detection'\n", + "Entity 'http://edamontology.org/operation_0266' - Label 'Vector sequence detection'\n", + "Entity 'http://edamontology.org/operation_0267' - Label 'Protein secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0268' - Label 'Protein super-secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0269' - Label 'Transmembrane protein prediction'\n", + "Entity 'http://edamontology.org/operation_0270' - Label 'Transmembrane protein analysis'\n", + "Entity 'http://edamontology.org/operation_0271' - Label 'Structure prediction'\n", + "Entity 'http://edamontology.org/operation_0272' - Label 'Residue contact prediction'\n", + "Entity 'http://edamontology.org/operation_0273' - Label 'Protein interaction raw data analysis'\n", + "Entity 'http://edamontology.org/operation_0274' - Label 'Protein-protein interaction prediction (from protein sequence)'\n", + "Entity 'http://edamontology.org/operation_0275' - Label 'Protein-protein interaction prediction (from protein structure)'\n", + "Entity 'http://edamontology.org/operation_0276' - Label 'Protein interaction network analysis'\n", + "Entity 'http://edamontology.org/operation_0277' - Label 'Pathway or network comparison'\n", + "Entity 'http://edamontology.org/operation_0278' - Label 'RNA secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0279' - Label 'Nucleic acid folding analysis'\n", + "Entity 'http://edamontology.org/operation_0280' - Label 'Data retrieval (restriction enzyme annotation)'\n", + "Entity 'http://edamontology.org/operation_0281' - Label 'Genetic marker identification'\n", + "Entity 'http://edamontology.org/operation_0282' - Label 'Genetic mapping'\n", + "Entity 'http://edamontology.org/operation_0283' - Label 'Linkage analysis'\n", + "Entity 'http://edamontology.org/operation_0284' - Label 'Codon usage table generation'\n", + "Entity 'http://edamontology.org/operation_0285' - Label 'Codon usage table comparison'\n", + "Entity 'http://edamontology.org/operation_0286' - Label 'Codon usage analysis'\n", + "Entity 'http://edamontology.org/operation_0287' - Label 'Base position variability plotting'\n", + "Entity 'http://edamontology.org/operation_0288' - Label 'Sequence word comparison'\n", + "Entity 'http://edamontology.org/operation_0289' - Label 'Sequence distance matrix generation'\n", + "Entity 'http://edamontology.org/operation_0290' - Label 'Sequence redundancy removal'\n", + "Entity 'http://edamontology.org/operation_0291' - Label 'Sequence clustering'\n", + "Entity 'http://edamontology.org/operation_0292' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0293' - Label 'Hybrid sequence alignment construction'\n", + "Entity 'http://edamontology.org/operation_0294' - Label 'Structure-based sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0295' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/operation_0296' - Label 'Sequence profile generation'\n", + "Entity 'http://edamontology.org/operation_0297' - Label '3D profile generation'\n", + "Entity 'http://edamontology.org/operation_0298' - Label 'Profile-profile alignment'\n", + "Entity 'http://edamontology.org/operation_0299' - Label '3D profile-to-3D profile alignment'\n", + "Entity 'http://edamontology.org/operation_0300' - Label 'Sequence profile alignment'\n", + "Entity 'http://edamontology.org/operation_0301' - Label 'Sequence-to-3D-profile alignment'\n", + "Entity 'http://edamontology.org/operation_0302' - Label 'Protein threading'\n", + "Entity 'http://edamontology.org/operation_0303' - Label 'Fold recognition'\n", + "Entity 'http://edamontology.org/operation_0304' - Label 'Metadata retrieval'\n", + "Entity 'http://edamontology.org/operation_0305' - Label 'Literature search'\n", + "Entity 'http://edamontology.org/operation_0306' - Label 'Text mining'\n", + "Entity 'http://edamontology.org/operation_0307' - Label 'Virtual PCR'\n", + "Entity 'http://edamontology.org/operation_0308' - Label 'PCR primer design'\n", + "Entity 'http://edamontology.org/operation_0309' - Label 'Microarray probe design'\n", + "Entity 'http://edamontology.org/operation_0310' - Label 'Sequence assembly'\n", + "Entity 'http://edamontology.org/operation_0311' - Label 'Microarray data standardisation and normalisation'\n", + "Entity 'http://edamontology.org/operation_0312' - Label 'Sequencing-based expression profile data processing'\n", + "Entity 'http://edamontology.org/operation_0313' - Label 'Expression profile clustering'\n", + "Entity 'http://edamontology.org/operation_0314' - Label 'Gene expression profiling'\n", + "Entity 'http://edamontology.org/operation_0315' - Label 'Expression profile comparison'\n", + "Entity 'http://edamontology.org/operation_0316' - Label 'Functional profiling'\n", + "Entity 'http://edamontology.org/operation_0317' - Label 'EST and cDNA sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0318' - Label 'Structural genomics target selection'\n", + "Entity 'http://edamontology.org/operation_0319' - Label 'Protein secondary structure assignment'\n", + "Entity 'http://edamontology.org/operation_0320' - Label 'Protein structure assignment'\n", + "Entity 'http://edamontology.org/operation_0321' - Label 'Protein structure validation'\n", + "Entity 'http://edamontology.org/operation_0322' - Label 'Molecular model refinement'\n", + "Entity 'http://edamontology.org/operation_0323' - Label 'Phylogenetic inference'\n", + "Entity 'http://edamontology.org/operation_0324' - Label 'Phylogenetic analysis'\n", + "Entity 'http://edamontology.org/operation_0325' - Label 'Phylogenetic tree comparison'\n", + "Entity 'http://edamontology.org/operation_0326' - Label 'Phylogenetic tree editing'\n", + "Entity 'http://edamontology.org/operation_0327' - Label 'Phylogenetic footprinting'\n", + "Entity 'http://edamontology.org/operation_0328' - Label 'Protein folding simulation'\n", + "Entity 'http://edamontology.org/operation_0329' - Label 'Protein folding pathway prediction'\n", + "Entity 'http://edamontology.org/operation_0330' - Label 'Protein SNP mapping'\n", + "Entity 'http://edamontology.org/operation_0331' - Label 'Variant effect prediction'\n", + "Entity 'http://edamontology.org/operation_0332' - Label 'Immunogen design'\n", + "Entity 'http://edamontology.org/operation_0333' - Label 'Zinc finger prediction'\n", + "Entity 'http://edamontology.org/operation_0334' - Label 'Enzyme kinetics calculation'\n", + "Entity 'http://edamontology.org/operation_0335' - Label 'Formatting'\n", + "Entity 'http://edamontology.org/operation_0336' - Label 'Format validation'\n", + "Entity 'http://edamontology.org/operation_0337' - Label 'Visualisation'\n", + "Entity 'http://edamontology.org/operation_0338' - Label 'Sequence database search'\n", + "Entity 'http://edamontology.org/operation_0339' - Label 'Structure database search'\n", + "Entity 'http://edamontology.org/operation_0340' - Label 'Protein secondary database search'\n", + "Entity 'http://edamontology.org/operation_0341' - Label 'Motif database search'\n", + "Entity 'http://edamontology.org/operation_0342' - Label 'Sequence profile database search'\n", + "Entity 'http://edamontology.org/operation_0343' - Label 'Transmembrane protein database search'\n", + "Entity 'http://edamontology.org/operation_0344' - Label 'Sequence retrieval (by code)'\n", + "Entity 'http://edamontology.org/operation_0345' - Label 'Sequence retrieval (by keyword)'\n", + "Entity 'http://edamontology.org/operation_0346' - Label 'Sequence similarity search'\n", + "Entity 'http://edamontology.org/operation_0347' - Label 'Sequence database search (by motif or pattern)'\n", + "Entity 'http://edamontology.org/operation_0348' - Label 'Sequence database search (by amino acid composition)'\n", + "Entity 'http://edamontology.org/operation_0349' - Label 'Sequence database search (by property)'\n", + "Entity 'http://edamontology.org/operation_0350' - Label 'Sequence database search (by sequence using word-based methods)'\n", + "Entity 'http://edamontology.org/operation_0351' - Label 'Sequence database search (by sequence using profile-based methods)'\n", + "Entity 'http://edamontology.org/operation_0352' - Label 'Sequence database search (by sequence using local alignment-based methods)'\n", + "Entity 'http://edamontology.org/operation_0353' - Label 'Sequence database search (by sequence using global alignment-based methods)'\n", + "Entity 'http://edamontology.org/operation_0354' - Label 'Sequence database search (by sequence for primer sequences)'\n", + "Entity 'http://edamontology.org/operation_0355' - Label 'Sequence database search (by molecular weight)'\n", + "Entity 'http://edamontology.org/operation_0356' - Label 'Sequence database search (by isoelectric point)'\n", + "Entity 'http://edamontology.org/operation_0357' - Label 'Structure retrieval (by code)'\n", + "Entity 'http://edamontology.org/operation_0358' - Label 'Structure retrieval (by keyword)'\n", + "Entity 'http://edamontology.org/operation_0359' - Label 'Structure database search (by sequence)'\n", + "Entity 'http://edamontology.org/operation_0360' - Label 'Structural similarity search'\n", + "Entity 'http://edamontology.org/operation_0361' - Label 'Sequence annotation'\n", + "Entity 'http://edamontology.org/operation_0362' - Label 'Genome annotation'\n", + "Entity 'http://edamontology.org/operation_0363' - Label 'Reverse complement'\n", + "Entity 'http://edamontology.org/operation_0364' - Label 'Random sequence generation'\n", + "Entity 'http://edamontology.org/operation_0365' - Label 'Restriction digest'\n", + "Entity 'http://edamontology.org/operation_0366' - Label 'Protein sequence cleavage'\n", + "Entity 'http://edamontology.org/operation_0367' - Label 'Sequence mutation and randomisation'\n", + "Entity 'http://edamontology.org/operation_0368' - Label 'Sequence masking'\n", + "Entity 'http://edamontology.org/operation_0369' - Label 'Sequence cutting'\n", + "Entity 'http://edamontology.org/operation_0370' - Label 'Restriction site creation'\n", + "Entity 'http://edamontology.org/operation_0371' - Label 'DNA translation'\n", + "Entity 'http://edamontology.org/operation_0372' - Label 'DNA transcription'\n", + "Entity 'http://edamontology.org/operation_0377' - Label 'Sequence composition calculation (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_0378' - Label 'Sequence composition calculation (protein)'\n", + "Entity 'http://edamontology.org/operation_0379' - Label 'Repeat sequence detection'\n", + "Entity 'http://edamontology.org/operation_0380' - Label 'Repeat sequence organisation analysis'\n", + "Entity 'http://edamontology.org/operation_0383' - Label 'Protein hydropathy calculation (from structure)'\n", + "Entity 'http://edamontology.org/operation_0384' - Label 'Accessible surface calculation'\n", + "Entity 'http://edamontology.org/operation_0385' - Label 'Protein hydropathy cluster calculation'\n", + "Entity 'http://edamontology.org/operation_0386' - Label 'Protein dipole moment calculation'\n", + "Entity 'http://edamontology.org/operation_0387' - Label 'Molecular surface calculation'\n", + "Entity 'http://edamontology.org/operation_0388' - Label 'Protein binding site prediction (from structure)'\n", + "Entity 'http://edamontology.org/operation_0389' - Label 'Protein-nucleic acid interaction analysis'\n", + "Entity 'http://edamontology.org/operation_0390' - Label 'Protein peeling'\n", + "Entity 'http://edamontology.org/operation_0391' - Label 'Protein distance matrix calculation'\n", + "Entity 'http://edamontology.org/operation_0392' - Label 'Contact map calculation'\n", + "Entity 'http://edamontology.org/operation_0393' - Label 'Residue cluster calculation'\n", + "Entity 'http://edamontology.org/operation_0394' - Label 'Hydrogen bond calculation'\n", + "Entity 'http://edamontology.org/operation_0395' - Label 'Residue non-canonical interaction detection'\n", + "Entity 'http://edamontology.org/operation_0396' - Label 'Ramachandran plot calculation'\n", + "Entity 'http://edamontology.org/operation_0397' - Label 'Ramachandran plot validation'\n", + "Entity 'http://edamontology.org/operation_0398' - Label 'Protein molecular weight calculation'\n", + "Entity 'http://edamontology.org/operation_0399' - Label 'Protein extinction coefficient calculation'\n", + "Entity 'http://edamontology.org/operation_0400' - Label 'Protein pKa calculation'\n", + "Entity 'http://edamontology.org/operation_0401' - Label 'Protein hydropathy calculation (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0402' - Label 'Protein titration curve plotting'\n", + "Entity 'http://edamontology.org/operation_0403' - Label 'Protein isoelectric point calculation'\n", + "Entity 'http://edamontology.org/operation_0404' - Label 'Protein hydrogen exchange rate calculation'\n", + "Entity 'http://edamontology.org/operation_0405' - Label 'Protein hydrophobic region calculation'\n", + "Entity 'http://edamontology.org/operation_0406' - Label 'Protein aliphatic index calculation'\n", + "Entity 'http://edamontology.org/operation_0407' - Label 'Protein hydrophobic moment plotting'\n", + "Entity 'http://edamontology.org/operation_0408' - Label 'Protein globularity prediction'\n", + "Entity 'http://edamontology.org/operation_0409' - Label 'Protein solubility prediction'\n", + "Entity 'http://edamontology.org/operation_0410' - Label 'Protein crystallizability prediction'\n", + "Entity 'http://edamontology.org/operation_0411' - Label 'Protein signal peptide detection (eukaryotes)'\n", + "Entity 'http://edamontology.org/operation_0412' - Label 'Protein signal peptide detection (bacteria)'\n", + "Entity 'http://edamontology.org/operation_0413' - Label 'MHC peptide immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0414' - Label 'Protein feature prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0415' - Label 'Nucleic acid feature detection'\n", + "Entity 'http://edamontology.org/operation_0416' - Label 'Epitope mapping'\n", + "Entity 'http://edamontology.org/operation_0417' - Label 'Post-translational modification site prediction'\n", + "Entity 'http://edamontology.org/operation_0418' - Label 'Protein signal peptide detection'\n", + "Entity 'http://edamontology.org/operation_0419' - Label 'Protein binding site prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0420' - Label 'Nucleic acids-binding site prediction'\n", + "Entity 'http://edamontology.org/operation_0421' - Label 'Protein folding site prediction'\n", + "Entity 'http://edamontology.org/operation_0422' - Label 'Protein cleavage site prediction'\n", + "Entity 'http://edamontology.org/operation_0423' - Label 'Epitope mapping (MHC Class I)'\n", + "Entity 'http://edamontology.org/operation_0424' - Label 'Epitope mapping (MHC Class II)'\n", + "Entity 'http://edamontology.org/operation_0425' - Label 'Whole gene prediction'\n", + "Entity 'http://edamontology.org/operation_0426' - Label 'Gene component prediction'\n", + "Entity 'http://edamontology.org/operation_0427' - Label 'Transposon prediction'\n", + "Entity 'http://edamontology.org/operation_0428' - Label 'PolyA signal detection'\n", + "Entity 'http://edamontology.org/operation_0429' - Label 'Quadruplex formation site detection'\n", + "Entity 'http://edamontology.org/operation_0430' - Label 'CpG island and isochore detection'\n", + "Entity 'http://edamontology.org/operation_0431' - Label 'Restriction site recognition'\n", + "Entity 'http://edamontology.org/operation_0432' - Label 'Nucleosome position prediction'\n", + "Entity 'http://edamontology.org/operation_0433' - Label 'Splice site prediction'\n", + "Entity 'http://edamontology.org/operation_0434' - Label 'Integrated gene prediction'\n", + "Entity 'http://edamontology.org/operation_0435' - Label 'Operon prediction'\n", + "Entity 'http://edamontology.org/operation_0436' - Label 'Coding region prediction'\n", + "Entity 'http://edamontology.org/operation_0437' - Label 'SECIS element prediction'\n", + "Entity 'http://edamontology.org/operation_0438' - Label 'Transcriptional regulatory element prediction'\n", + "Entity 'http://edamontology.org/operation_0439' - Label 'Translation initiation site prediction'\n", + "Entity 'http://edamontology.org/operation_0440' - Label 'Promoter prediction'\n", + "Entity 'http://edamontology.org/operation_0441' - Label 'cis-regulatory element prediction'\n", + "Entity 'http://edamontology.org/operation_0442' - Label 'Transcriptional regulatory element prediction (RNA-cis)'\n", + "Entity 'http://edamontology.org/operation_0443' - Label 'trans-regulatory element prediction'\n", + "Entity 'http://edamontology.org/operation_0444' - Label 'S/MAR prediction'\n", + "Entity 'http://edamontology.org/operation_0445' - Label 'Transcription factor binding site prediction'\n", + "Entity 'http://edamontology.org/operation_0446' - Label 'Exonic splicing enhancer prediction'\n", + "Entity 'http://edamontology.org/operation_0447' - Label 'Sequence alignment validation'\n", + "Entity 'http://edamontology.org/operation_0448' - Label 'Sequence alignment analysis (conservation)'\n", + "Entity 'http://edamontology.org/operation_0449' - Label 'Sequence alignment analysis (site correlation)'\n", + "Entity 'http://edamontology.org/operation_0450' - Label 'Chimera detection'\n", + "Entity 'http://edamontology.org/operation_0451' - Label 'Recombination detection'\n", + "Entity 'http://edamontology.org/operation_0452' - Label 'Indel detection'\n", + "Entity 'http://edamontology.org/operation_0453' - Label 'Nucleosome formation potential prediction'\n", + "Entity 'http://edamontology.org/operation_0455' - Label 'Nucleic acid thermodynamic property calculation'\n", + "Entity 'http://edamontology.org/operation_0456' - Label 'Nucleic acid melting profile plotting'\n", + "Entity 'http://edamontology.org/operation_0457' - Label 'Nucleic acid stitch profile plotting'\n", + "Entity 'http://edamontology.org/operation_0458' - Label 'Nucleic acid melting curve plotting'\n", + "Entity 'http://edamontology.org/operation_0459' - Label 'Nucleic acid probability profile plotting'\n", + "Entity 'http://edamontology.org/operation_0460' - Label 'Nucleic acid temperature profile plotting'\n", + "Entity 'http://edamontology.org/operation_0461' - Label 'Nucleic acid curvature calculation'\n", + "Entity 'http://edamontology.org/operation_0463' - Label 'miRNA target prediction'\n", + "Entity 'http://edamontology.org/operation_0464' - Label 'tRNA gene prediction'\n", + "Entity 'http://edamontology.org/operation_0465' - Label 'siRNA binding specificity prediction'\n", + "Entity 'http://edamontology.org/operation_0467' - Label 'Protein secondary structure prediction (integrated)'\n", + "Entity 'http://edamontology.org/operation_0468' - Label 'Protein secondary structure prediction (helices)'\n", + "Entity 'http://edamontology.org/operation_0469' - Label 'Protein secondary structure prediction (turns)'\n", + "Entity 'http://edamontology.org/operation_0470' - Label 'Protein secondary structure prediction (coils)'\n", + "Entity 'http://edamontology.org/operation_0471' - Label 'Disulfide bond prediction'\n", + "Entity 'http://edamontology.org/operation_0472' - Label 'GPCR prediction'\n", + "Entity 'http://edamontology.org/operation_0473' - Label 'GPCR analysis'\n", + "Entity 'http://edamontology.org/operation_0474' - Label 'Protein structure prediction'\n", + "Entity 'http://edamontology.org/operation_0475' - Label 'Nucleic acid structure prediction'\n", + "Entity 'http://edamontology.org/operation_0476' - Label 'Ab initio structure prediction'\n", + "Entity 'http://edamontology.org/operation_0477' - Label 'Protein modelling'\n", + "Entity 'http://edamontology.org/operation_0478' - Label 'Molecular docking'\n", + "Entity 'http://edamontology.org/operation_0479' - Label 'Backbone modelling'\n", + "Entity 'http://edamontology.org/operation_0480' - Label 'Side chain modelling'\n", + "Entity 'http://edamontology.org/operation_0481' - Label 'Loop modelling'\n", + "Entity 'http://edamontology.org/operation_0482' - Label 'Protein-ligand docking'\n", + "Entity 'http://edamontology.org/operation_0483' - Label 'RNA inverse folding'\n", + "Entity 'http://edamontology.org/operation_0484' - Label 'SNP detection'\n", + "Entity 'http://edamontology.org/operation_0485' - Label 'Radiation Hybrid Mapping'\n", + "Entity 'http://edamontology.org/operation_0486' - Label 'Functional mapping'\n", + "Entity 'http://edamontology.org/operation_0487' - Label 'Haplotype mapping'\n", + "Entity 'http://edamontology.org/operation_0488' - Label 'Linkage disequilibrium calculation'\n", + "Entity 'http://edamontology.org/operation_0489' - Label 'Genetic code prediction'\n", + "Entity 'http://edamontology.org/operation_0490' - Label 'Dot plot plotting'\n", + "Entity 'http://edamontology.org/operation_0491' - Label 'Pairwise sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0492' - Label 'Multiple sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0493' - Label 'Pairwise sequence alignment generation (local)'\n", + "Entity 'http://edamontology.org/operation_0494' - Label 'Pairwise sequence alignment generation (global)'\n", + "Entity 'http://edamontology.org/operation_0495' - Label 'Local alignment'\n", + "Entity 'http://edamontology.org/operation_0496' - Label 'Global alignment'\n", + "Entity 'http://edamontology.org/operation_0497' - Label 'Constrained sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0498' - Label 'Consensus-based sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0499' - Label 'Tree-based sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0500' - Label 'Secondary structure alignment generation'\n", + "Entity 'http://edamontology.org/operation_0501' - Label 'Protein secondary structure alignment generation'\n", + "Entity 'http://edamontology.org/operation_0502' - Label 'RNA secondary structure alignment'\n", + "Entity 'http://edamontology.org/operation_0503' - Label 'Pairwise structure alignment'\n", + "Entity 'http://edamontology.org/operation_0504' - Label 'Multiple structure alignment'\n", + "Entity 'http://edamontology.org/operation_0505' - Label 'Structure alignment (protein)'\n", + "Entity 'http://edamontology.org/operation_0506' - Label 'Structure alignment (RNA)'\n", + "Entity 'http://edamontology.org/operation_0507' - Label 'Pairwise structure alignment generation (local)'\n", + "Entity 'http://edamontology.org/operation_0508' - Label 'Pairwise structure alignment generation (global)'\n", + "Entity 'http://edamontology.org/operation_0509' - Label 'Local structure alignment'\n", + "Entity 'http://edamontology.org/operation_0510' - Label 'Global structure alignment'\n", + "Entity 'http://edamontology.org/operation_0511' - Label 'Profile-profile alignment (pairwise)'\n", + "Entity 'http://edamontology.org/operation_0512' - Label 'Sequence alignment generation (multiple profile)'\n", + "Entity 'http://edamontology.org/operation_0513' - Label '3D profile-to-3D profile alignment (pairwise)'\n", + "Entity 'http://edamontology.org/operation_0514' - Label 'Structural profile alignment generation (multiple)'\n", + "Entity 'http://edamontology.org/operation_0515' - Label 'Data retrieval (tool metadata)'\n", + "Entity 'http://edamontology.org/operation_0516' - Label 'Data retrieval (database metadata)'\n", + "Entity 'http://edamontology.org/operation_0517' - Label 'PCR primer design (for large scale sequencing)'\n", + "Entity 'http://edamontology.org/operation_0518' - Label 'PCR primer design (for genotyping polymorphisms)'\n", + "Entity 'http://edamontology.org/operation_0519' - Label 'PCR primer design (for gene transcription profiling)'\n", + "Entity 'http://edamontology.org/operation_0520' - Label 'PCR primer design (for conserved primers)'\n", + "Entity 'http://edamontology.org/operation_0521' - Label 'PCR primer design (based on gene structure)'\n", + "Entity 'http://edamontology.org/operation_0522' - Label 'PCR primer design (for methylation PCRs)'\n", + "Entity 'http://edamontology.org/operation_0523' - Label 'Mapping assembly'\n", + "Entity 'http://edamontology.org/operation_0524' - Label 'De-novo assembly'\n", + "Entity 'http://edamontology.org/operation_0525' - Label 'Genome assembly'\n", + "Entity 'http://edamontology.org/operation_0526' - Label 'EST assembly'\n", + "Entity 'http://edamontology.org/operation_0527' - Label 'Sequence tag mapping'\n", + "Entity 'http://edamontology.org/operation_0528' - Label 'SAGE data processing'\n", + "Entity 'http://edamontology.org/operation_0529' - Label 'MPSS data processing'\n", + "Entity 'http://edamontology.org/operation_0530' - Label 'SBS data processing'\n", + "Entity 'http://edamontology.org/operation_0531' - Label 'Heat map generation'\n", + "Entity 'http://edamontology.org/operation_0532' - Label 'Gene expression profile analysis'\n", + "Entity 'http://edamontology.org/operation_0533' - Label 'Expression profile pathway mapping'\n", + "Entity 'http://edamontology.org/operation_0534' - Label 'Protein secondary structure assignment (from coordinate data)'\n", + "Entity 'http://edamontology.org/operation_0535' - Label 'Protein secondary structure assignment (from CD data)'\n", + "Entity 'http://edamontology.org/operation_0536' - Label 'Protein structure assignment (from X-ray crystallographic data)'\n", + "Entity 'http://edamontology.org/operation_0537' - Label 'Protein structure assignment (from NMR data)'\n", + "Entity 'http://edamontology.org/operation_0538' - Label 'Phylogenetic inference (data centric)'\n", + "Entity 'http://edamontology.org/operation_0539' - Label 'Phylogenetic inference (method centric)'\n", + "Entity 'http://edamontology.org/operation_0540' - Label 'Phylogenetic inference (from molecular sequences)'\n", + "Entity 'http://edamontology.org/operation_0541' - Label 'Phylogenetic inference (from continuous quantitative characters)'\n", + "Entity 'http://edamontology.org/operation_0542' - Label 'Phylogenetic inference (from gene frequencies)'\n", + "Entity 'http://edamontology.org/operation_0543' - Label 'Phylogenetic inference (from polymorphism data)'\n", + "Entity 'http://edamontology.org/operation_0544' - Label 'Species tree construction'\n", + "Entity 'http://edamontology.org/operation_0545' - Label 'Phylogenetic inference (parsimony methods)'\n", + "Entity 'http://edamontology.org/operation_0546' - Label 'Phylogenetic inference (minimum distance methods)'\n", + "Entity 'http://edamontology.org/operation_0547' - Label 'Phylogenetic inference (maximum likelihood and Bayesian methods)'\n", + "Entity 'http://edamontology.org/operation_0548' - Label 'Phylogenetic inference (quartet methods)'\n", + "Entity 'http://edamontology.org/operation_0549' - Label 'Phylogenetic inference (AI methods)'\n", + "Entity 'http://edamontology.org/operation_0550' - Label 'DNA substitution modelling'\n", + "Entity 'http://edamontology.org/operation_0551' - Label 'Phylogenetic tree topology analysis'\n", + "Entity 'http://edamontology.org/operation_0552' - Label 'Phylogenetic tree bootstrapping'\n", + "Entity 'http://edamontology.org/operation_0553' - Label 'Gene tree construction'\n", + "Entity 'http://edamontology.org/operation_0554' - Label 'Allele frequency distribution analysis'\n", + "Entity 'http://edamontology.org/operation_0555' - Label 'Consensus tree construction'\n", + "Entity 'http://edamontology.org/operation_0556' - Label 'Phylogenetic sub/super tree construction'\n", + "Entity 'http://edamontology.org/operation_0557' - Label 'Phylogenetic tree distances calculation'\n", + "Entity 'http://edamontology.org/operation_0558' - Label 'Phylogenetic tree annotation'\n", + "Entity 'http://edamontology.org/operation_0559' - Label 'Immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0560' - Label 'DNA vaccine design'\n", + "Entity 'http://edamontology.org/operation_0561' - Label 'Sequence formatting'\n", + "Entity 'http://edamontology.org/operation_0562' - Label 'Sequence alignment formatting'\n", + "Entity 'http://edamontology.org/operation_0563' - Label 'Codon usage table formatting'\n", + "Entity 'http://edamontology.org/operation_0564' - Label 'Sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_0565' - Label 'Sequence alignment visualisation'\n", + "Entity 'http://edamontology.org/operation_0566' - Label 'Sequence cluster visualisation'\n", + "Entity 'http://edamontology.org/operation_0567' - Label 'Phylogenetic tree visualisation'\n", + "Entity 'http://edamontology.org/operation_0568' - Label 'RNA secondary structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0569' - Label 'Protein secondary structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0570' - Label 'Structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0571' - Label 'Expression data visualisation'\n", + "Entity 'http://edamontology.org/operation_0572' - Label 'Protein interaction network visualisation'\n", + "Entity 'http://edamontology.org/operation_0573' - Label 'Map drawing'\n", + "Entity 'http://edamontology.org/operation_0574' - Label 'Sequence motif rendering'\n", + "Entity 'http://edamontology.org/operation_0575' - Label 'Restriction map drawing'\n", + "Entity 'http://edamontology.org/operation_0577' - Label 'DNA linear map rendering'\n", + "Entity 'http://edamontology.org/operation_0578' - Label 'Plasmid map drawing'\n", + "Entity 'http://edamontology.org/operation_0579' - Label 'Operon drawing'\n", + "Entity 'http://edamontology.org/operation_1768' - Label 'Nucleic acid folding family identification'\n", + "Entity 'http://edamontology.org/operation_1769' - Label 'Nucleic acid folding energy calculation'\n", + "Entity 'http://edamontology.org/operation_1774' - Label 'Annotation retrieval'\n", + "Entity 'http://edamontology.org/operation_1777' - Label 'Protein function prediction'\n", + "Entity 'http://edamontology.org/operation_1778' - Label 'Protein function comparison'\n", + "Entity 'http://edamontology.org/operation_1780' - Label 'Sequence submission'\n", + "Entity 'http://edamontology.org/operation_1781' - Label 'Gene regulatory network analysis'\n", + "Entity 'http://edamontology.org/operation_1812' - Label 'Parsing'\n", + "Entity 'http://edamontology.org/operation_1813' - Label 'Sequence retrieval'\n", + "Entity 'http://edamontology.org/operation_1814' - Label 'Structure retrieval'\n", + "Entity 'http://edamontology.org/operation_1816' - Label 'Surface rendering'\n", + "Entity 'http://edamontology.org/operation_1817' - Label 'Protein atom surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1818' - Label 'Protein atom surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1819' - Label 'Protein residue surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1820' - Label 'Protein residue surface calculation (vacuum accessible)'\n", + "Entity 'http://edamontology.org/operation_1821' - Label 'Protein residue surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1822' - Label 'Protein residue surface calculation (vacuum molecular)'\n", + "Entity 'http://edamontology.org/operation_1823' - Label 'Protein surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1824' - Label 'Protein surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1825' - Label 'Backbone torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1826' - Label 'Full torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1827' - Label 'Cysteine torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1828' - Label 'Tau angle calculation'\n", + "Entity 'http://edamontology.org/operation_1829' - Label 'Cysteine bridge detection'\n", + "Entity 'http://edamontology.org/operation_1830' - Label 'Free cysteine detection'\n", + "Entity 'http://edamontology.org/operation_1831' - Label 'Metal-bound cysteine detection'\n", + "Entity 'http://edamontology.org/operation_1832' - Label 'Residue contact calculation (residue-nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_1834' - Label 'Protein-metal contact calculation'\n", + "Entity 'http://edamontology.org/operation_1835' - Label 'Residue contact calculation (residue-negative ion)'\n", + "Entity 'http://edamontology.org/operation_1836' - Label 'Residue bump detection'\n", + "Entity 'http://edamontology.org/operation_1837' - Label 'Residue symmetry contact calculation'\n", + "Entity 'http://edamontology.org/operation_1838' - Label 'Residue contact calculation (residue-ligand)'\n", + "Entity 'http://edamontology.org/operation_1839' - Label 'Salt bridge calculation'\n", + "Entity 'http://edamontology.org/operation_1841' - Label 'Rotamer likelihood prediction'\n", + "Entity 'http://edamontology.org/operation_1842' - Label 'Proline mutation value calculation'\n", + "Entity 'http://edamontology.org/operation_1843' - Label 'Residue packing validation'\n", + "Entity 'http://edamontology.org/operation_1844' - Label 'Protein geometry validation'\n", + "Entity 'http://edamontology.org/operation_1845' - Label 'PDB file sequence retrieval'\n", + "Entity 'http://edamontology.org/operation_1846' - Label 'HET group detection'\n", + "Entity 'http://edamontology.org/operation_1847' - Label 'DSSP secondary structure assignment'\n", + "Entity 'http://edamontology.org/operation_1848' - Label 'Structure formatting'\n", + "Entity 'http://edamontology.org/operation_1850' - Label 'Protein cysteine and disulfide bond assignment'\n", + "Entity 'http://edamontology.org/operation_1913' - Label 'Residue validation'\n", + "Entity 'http://edamontology.org/operation_1914' - Label 'Structure retrieval (water)'\n", + "Entity 'http://edamontology.org/operation_2008' - Label 'siRNA duplex prediction'\n", + "Entity 'http://edamontology.org/operation_2089' - Label 'Sequence alignment refinement'\n", + "Entity 'http://edamontology.org/operation_2120' - Label 'Listfile processing'\n", + "Entity 'http://edamontology.org/operation_2121' - Label 'Sequence file editing'\n", + "Entity 'http://edamontology.org/operation_2122' - Label 'Sequence alignment file processing'\n", + "Entity 'http://edamontology.org/operation_2123' - Label 'Small molecule data processing'\n", + "Entity 'http://edamontology.org/operation_2222' - Label 'Data retrieval (ontology annotation)'\n", + "Entity 'http://edamontology.org/operation_2224' - Label 'Data retrieval (ontology concept)'\n", + "Entity 'http://edamontology.org/operation_2233' - Label 'Representative sequence identification'\n", + "Entity 'http://edamontology.org/operation_2234' - Label 'Structure file processing'\n", + "Entity 'http://edamontology.org/operation_2237' - Label 'Data retrieval (sequence profile)'\n", + "Entity 'http://edamontology.org/operation_2238' - Label 'Statistical calculation'\n", + "Entity 'http://edamontology.org/operation_2239' - Label '3D-1D scoring matrix generation'\n", + "Entity 'http://edamontology.org/operation_2241' - Label 'Transmembrane protein visualisation'\n", + "Entity 'http://edamontology.org/operation_2246' - Label 'Demonstration'\n", + "Entity 'http://edamontology.org/operation_2264' - Label 'Data retrieval (pathway or network)'\n", + "Entity 'http://edamontology.org/operation_2265' - Label 'Data retrieval (identifier)'\n", + "Entity 'http://edamontology.org/operation_2284' - Label 'Nucleic acid density plotting'\n", + "Entity 'http://edamontology.org/operation_2403' - Label 'Sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2404' - Label 'Sequence motif analysis'\n", + "Entity 'http://edamontology.org/operation_2405' - Label 'Protein interaction data processing'\n", + "Entity 'http://edamontology.org/operation_2406' - Label 'Protein structure analysis'\n", + "Entity 'http://edamontology.org/operation_2407' - Label 'Annotation processing'\n", + "Entity 'http://edamontology.org/operation_2408' - Label 'Sequence feature analysis'\n", + "Entity 'http://edamontology.org/operation_2409' - Label 'Data handling'\n", + "Entity 'http://edamontology.org/operation_2410' - Label 'Gene expression analysis'\n", + "Entity 'http://edamontology.org/operation_2411' - Label 'Structural profile processing'\n", + "Entity 'http://edamontology.org/operation_2412' - Label 'Data index processing'\n", + "Entity 'http://edamontology.org/operation_2413' - Label 'Sequence profile processing'\n", + "Entity 'http://edamontology.org/operation_2414' - Label 'Protein function analysis'\n", + "Entity 'http://edamontology.org/operation_2415' - Label 'Protein folding analysis'\n", + "Entity 'http://edamontology.org/operation_2416' - Label 'Protein secondary structure analysis'\n", + "Entity 'http://edamontology.org/operation_2417' - Label 'Physicochemical property data processing'\n", + "Entity 'http://edamontology.org/operation_2419' - Label 'Primer and probe design'\n", + "Entity 'http://edamontology.org/operation_2420' - Label 'Operation (typed)'\n", + "Entity 'http://edamontology.org/operation_2421' - Label 'Database search'\n", + "Entity 'http://edamontology.org/operation_2422' - Label 'Data retrieval'\n", + "Entity 'http://edamontology.org/operation_2423' - Label 'Prediction and recognition'\n", + "Entity 'http://edamontology.org/operation_2424' - Label 'Comparison'\n", + "Entity 'http://edamontology.org/operation_2425' - Label 'Optimisation and refinement'\n", + "Entity 'http://edamontology.org/operation_2426' - Label 'Modelling and simulation'\n", + "Entity 'http://edamontology.org/operation_2427' - Label 'Data handling'\n", + "Entity 'http://edamontology.org/operation_2428' - Label 'Validation'\n", + "Entity 'http://edamontology.org/operation_2429' - Label 'Mapping'\n", + "Entity 'http://edamontology.org/operation_2430' - Label 'Design'\n", + "Entity 'http://edamontology.org/operation_2432' - Label 'Microarray data processing'\n", + "Entity 'http://edamontology.org/operation_2433' - Label 'Codon usage table processing'\n", + "Entity 'http://edamontology.org/operation_2434' - Label 'Data retrieval (codon usage table)'\n", + "Entity 'http://edamontology.org/operation_2435' - Label 'Gene expression profile processing'\n", + "Entity 'http://edamontology.org/operation_2436' - Label 'Gene-set enrichment analysis'\n", + "Entity 'http://edamontology.org/operation_2437' - Label 'Gene regulatory network prediction'\n", + "Entity 'http://edamontology.org/operation_2438' - Label 'Pathway or network processing'\n", + "Entity 'http://edamontology.org/operation_2439' - Label 'RNA secondary structure analysis'\n", + "Entity 'http://edamontology.org/operation_2440' - Label 'Structure processing (RNA)'\n", + "Entity 'http://edamontology.org/operation_2441' - Label 'RNA structure prediction'\n", + "Entity 'http://edamontology.org/operation_2442' - Label 'DNA structure prediction'\n", + "Entity 'http://edamontology.org/operation_2443' - Label 'Phylogenetic tree processing'\n", + "Entity 'http://edamontology.org/operation_2444' - Label 'Protein secondary structure processing'\n", + "Entity 'http://edamontology.org/operation_2445' - Label 'Protein interaction network processing'\n", + "Entity 'http://edamontology.org/operation_2446' - Label 'Sequence processing'\n", + "Entity 'http://edamontology.org/operation_2447' - Label 'Sequence processing (protein)'\n", + "Entity 'http://edamontology.org/operation_2448' - Label 'Sequence processing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2451' - Label 'Sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2452' - Label 'Sequence cluster processing'\n", + "Entity 'http://edamontology.org/operation_2453' - Label 'Feature table processing'\n", + "Entity 'http://edamontology.org/operation_2454' - Label 'Gene prediction'\n", + "Entity 'http://edamontology.org/operation_2456' - Label 'GPCR classification'\n", + "Entity 'http://edamontology.org/operation_2457' - Label 'GPCR coupling selectivity prediction'\n", + "Entity 'http://edamontology.org/operation_2459' - Label 'Structure processing (protein)'\n", + "Entity 'http://edamontology.org/operation_2460' - Label 'Protein atom surface calculation'\n", + "Entity 'http://edamontology.org/operation_2461' - Label 'Protein residue surface calculation'\n", + "Entity 'http://edamontology.org/operation_2462' - Label 'Protein surface calculation'\n", + "Entity 'http://edamontology.org/operation_2463' - Label 'Sequence alignment processing'\n", + "Entity 'http://edamontology.org/operation_2464' - Label 'Protein-protein binding site prediction'\n", + "Entity 'http://edamontology.org/operation_2465' - Label 'Structure processing'\n", + "Entity 'http://edamontology.org/operation_2466' - Label 'Map annotation'\n", + "Entity 'http://edamontology.org/operation_2467' - Label 'Data retrieval (protein annotation)'\n", + "Entity 'http://edamontology.org/operation_2468' - Label 'Data retrieval (phylogenetic tree)'\n", + "Entity 'http://edamontology.org/operation_2469' - Label 'Data retrieval (protein interaction annotation)'\n", + "Entity 'http://edamontology.org/operation_2470' - Label 'Data retrieval (protein family annotation)'\n", + "Entity 'http://edamontology.org/operation_2471' - Label 'Data retrieval (RNA family annotation)'\n", + "Entity 'http://edamontology.org/operation_2472' - Label 'Data retrieval (gene annotation)'\n", + "Entity 'http://edamontology.org/operation_2473' - Label 'Data retrieval (genotype and phenotype annotation)'\n", + "Entity 'http://edamontology.org/operation_2474' - Label 'Protein architecture comparison'\n", + "Entity 'http://edamontology.org/operation_2475' - Label 'Protein architecture recognition'\n", + "Entity 'http://edamontology.org/operation_2476' - Label 'Molecular dynamics'\n", + "Entity 'http://edamontology.org/operation_2478' - Label 'Nucleic acid sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2479' - Label 'Protein sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2480' - Label 'Structure analysis'\n", + "Entity 'http://edamontology.org/operation_2481' - Label 'Nucleic acid structure analysis'\n", + "Entity 'http://edamontology.org/operation_2482' - Label 'Secondary structure processing'\n", + "Entity 'http://edamontology.org/operation_2483' - Label 'Structure comparison'\n", + "Entity 'http://edamontology.org/operation_2485' - Label 'Helical wheel drawing'\n", + "Entity 'http://edamontology.org/operation_2486' - Label 'Topology diagram drawing'\n", + "Entity 'http://edamontology.org/operation_2487' - Label 'Protein structure comparison'\n", + "Entity 'http://edamontology.org/operation_2488' - Label 'Protein secondary structure comparison'\n", + "Entity 'http://edamontology.org/operation_2489' - Label 'Subcellular localisation prediction'\n", + "Entity 'http://edamontology.org/operation_2490' - Label 'Residue contact calculation (residue-residue)'\n", + "Entity 'http://edamontology.org/operation_2491' - Label 'Hydrogen bond calculation (inter-residue)'\n", + "Entity 'http://edamontology.org/operation_2492' - Label 'Protein interaction prediction'\n", + "Entity 'http://edamontology.org/operation_2493' - Label 'Codon usage data processing'\n", + "Entity 'http://edamontology.org/operation_2495' - Label 'Expression analysis'\n", + "Entity 'http://edamontology.org/operation_2496' - Label 'Gene regulatory network processing'\n", + "Entity 'http://edamontology.org/operation_2497' - Label 'Pathway or network analysis'\n", + "Entity 'http://edamontology.org/operation_2498' - Label 'Sequencing-based expression profile data analysis'\n", + "Entity 'http://edamontology.org/operation_2499' - Label 'Splicing analysis'\n", + "Entity 'http://edamontology.org/operation_2500' - Label 'Microarray raw data analysis'\n", + "Entity 'http://edamontology.org/operation_2501' - Label 'Nucleic acid analysis'\n", + "Entity 'http://edamontology.org/operation_2502' - Label 'Protein analysis'\n", + "Entity 'http://edamontology.org/operation_2503' - Label 'Sequence data processing'\n", + "Entity 'http://edamontology.org/operation_2504' - Label 'Structural data processing'\n", + "Entity 'http://edamontology.org/operation_2505' - Label 'Text processing'\n", + "Entity 'http://edamontology.org/operation_2506' - Label 'Protein sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2507' - Label 'Nucleic acid sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2508' - Label 'Nucleic acid sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2509' - Label 'Protein sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2510' - Label 'DNA back-translation'\n", + "Entity 'http://edamontology.org/operation_2511' - Label 'Sequence editing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2512' - Label 'Sequence editing (protein)'\n", + "Entity 'http://edamontology.org/operation_2513' - Label 'Sequence generation (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2514' - Label 'Sequence generation (protein)'\n", + "Entity 'http://edamontology.org/operation_2515' - Label 'Nucleic acid sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_2516' - Label 'Protein sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_2518' - Label 'Nucleic acid structure comparison'\n", + "Entity 'http://edamontology.org/operation_2519' - Label 'Structure processing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2520' - Label 'DNA mapping'\n", + "Entity 'http://edamontology.org/operation_2521' - Label 'Map data processing'\n", + "Entity 'http://edamontology.org/operation_2574' - Label 'Protein hydropathy calculation'\n", + "Entity 'http://edamontology.org/operation_2575' - Label 'Binding site prediction'\n", + "Entity 'http://edamontology.org/operation_2844' - Label 'Structure clustering'\n", + "Entity 'http://edamontology.org/operation_2871' - Label 'Sequence tagged site (STS) mapping'\n", + "Entity 'http://edamontology.org/operation_2928' - Label 'Alignment'\n", + "Entity 'http://edamontology.org/operation_2929' - Label 'Protein fragment weight comparison'\n", + "Entity 'http://edamontology.org/operation_2930' - Label 'Protein property comparison'\n", + "Entity 'http://edamontology.org/operation_2931' - Label 'Secondary structure comparison'\n", + "Entity 'http://edamontology.org/operation_2932' - Label 'Hopp and Woods plotting'\n", + "Entity 'http://edamontology.org/operation_2934' - Label 'Cluster textual view generation'\n", + "Entity 'http://edamontology.org/operation_2935' - Label 'Clustering profile plotting'\n", + "Entity 'http://edamontology.org/operation_2936' - Label 'Dendrograph plotting'\n", + "Entity 'http://edamontology.org/operation_2937' - Label 'Proximity map plotting'\n", + "Entity 'http://edamontology.org/operation_2938' - Label 'Dendrogram visualisation'\n", + "Entity 'http://edamontology.org/operation_2939' - Label 'Principal component visualisation'\n", + "Entity 'http://edamontology.org/operation_2940' - Label 'Scatter plot plotting'\n", + "Entity 'http://edamontology.org/operation_2941' - Label 'Whole microarray graph plotting'\n", + "Entity 'http://edamontology.org/operation_2942' - Label 'Treemap visualisation'\n", + "Entity 'http://edamontology.org/operation_2943' - Label 'Box-Whisker plot plotting'\n", + "Entity 'http://edamontology.org/operation_2944' - Label 'Physical mapping'\n", + "Entity 'http://edamontology.org/operation_2945' - Label 'Analysis'\n", + "Entity 'http://edamontology.org/operation_2946' - Label 'Alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2947' - Label 'Article analysis'\n", + "Entity 'http://edamontology.org/operation_2948' - Label 'Molecular interaction analysis'\n", + "Entity 'http://edamontology.org/operation_2949' - Label 'Protein-protein interaction analysis'\n", + "Entity 'http://edamontology.org/operation_2950' - Label 'Residue distance calculation'\n", + "Entity 'http://edamontology.org/operation_2951' - Label 'Alignment processing'\n", + "Entity 'http://edamontology.org/operation_2952' - Label 'Structure alignment processing'\n", + "Entity 'http://edamontology.org/operation_2962' - Label 'Codon usage bias calculation'\n", + "Entity 'http://edamontology.org/operation_2963' - Label 'Codon usage bias plotting'\n", + "Entity 'http://edamontology.org/operation_2964' - Label 'Codon usage fraction calculation'\n", + "Entity 'http://edamontology.org/operation_2990' - Label 'Classification'\n", + "Entity 'http://edamontology.org/operation_2993' - Label 'Molecular interaction data processing'\n", + "Entity 'http://edamontology.org/operation_2995' - Label 'Sequence classification'\n", + "Entity 'http://edamontology.org/operation_2996' - Label 'Structure classification'\n", + "Entity 'http://edamontology.org/operation_2997' - Label 'Protein comparison'\n", + "Entity 'http://edamontology.org/operation_2998' - Label 'Nucleic acid comparison'\n", + "Entity 'http://edamontology.org/operation_3023' - Label 'Prediction and recognition (protein)'\n", + "Entity 'http://edamontology.org/operation_3024' - Label 'Prediction and recognition (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_3080' - Label 'Structure editing'\n", + "Entity 'http://edamontology.org/operation_3081' - Label 'Sequence alignment editing'\n", + "Entity 'http://edamontology.org/operation_3083' - Label 'Pathway or network visualisation'\n", + "Entity 'http://edamontology.org/operation_3084' - Label 'Protein function prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_3087' - Label 'Protein sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_3088' - Label 'Protein property calculation (from sequence)'\n", + "Entity 'http://edamontology.org/operation_3090' - Label 'Protein feature prediction (from structure)'\n", + "Entity 'http://edamontology.org/operation_3092' - Label 'Protein feature detection'\n", + "Entity 'http://edamontology.org/operation_3093' - Label 'Database search (by sequence)'\n", + "Entity 'http://edamontology.org/operation_3094' - Label 'Protein interaction network prediction'\n", + "Entity 'http://edamontology.org/operation_3095' - Label 'Nucleic acid design'\n", + "Entity 'http://edamontology.org/operation_3096' - Label 'Editing'\n", + "Entity 'http://edamontology.org/operation_3180' - Label 'Sequence assembly validation'\n", + "Entity 'http://edamontology.org/operation_3182' - Label 'Genome alignment'\n", + "Entity 'http://edamontology.org/operation_3183' - Label 'Localised reassembly'\n", + "Entity 'http://edamontology.org/operation_3184' - Label 'Sequence assembly visualisation'\n", + "Entity 'http://edamontology.org/operation_3185' - Label 'Base-calling'\n", + "Entity 'http://edamontology.org/operation_3186' - Label 'Bisulfite mapping'\n", + "Entity 'http://edamontology.org/operation_3187' - Label 'Sequence contamination filtering'\n", + "Entity 'http://edamontology.org/operation_3189' - Label 'Trim ends'\n", + "Entity 'http://edamontology.org/operation_3190' - Label 'Trim vector'\n", + "Entity 'http://edamontology.org/operation_3191' - Label 'Trim to reference'\n", + "Entity 'http://edamontology.org/operation_3192' - Label 'Sequence trimming'\n", + "Entity 'http://edamontology.org/operation_3194' - Label 'Genome feature comparison'\n", + "Entity 'http://edamontology.org/operation_3195' - Label 'Sequencing error detection'\n", + "Entity 'http://edamontology.org/operation_3196' - Label 'Genotyping'\n", + "Entity 'http://edamontology.org/operation_3197' - Label 'Genetic variation analysis'\n", + "Entity 'http://edamontology.org/operation_3198' - Label 'Read mapping'\n", + "Entity 'http://edamontology.org/operation_3199' - Label 'Split read mapping'\n", + "Entity 'http://edamontology.org/operation_3200' - Label 'DNA barcoding'\n", + "Entity 'http://edamontology.org/operation_3201' - Label 'SNP calling'\n", + "Entity 'http://edamontology.org/operation_3202' - Label 'Polymorphism detection'\n", + "Entity 'http://edamontology.org/operation_3203' - Label 'Chromatogram visualisation'\n", + "Entity 'http://edamontology.org/operation_3204' - Label 'Methylation analysis'\n", + "Entity 'http://edamontology.org/operation_3205' - Label 'Methylation calling'\n", + "Entity 'http://edamontology.org/operation_3206' - Label 'Whole genome methylation analysis'\n", + "Entity 'http://edamontology.org/operation_3207' - Label 'Gene methylation analysis'\n", + "Entity 'http://edamontology.org/operation_3208' - Label 'Genome visualisation'\n", + "Entity 'http://edamontology.org/operation_3209' - Label 'Genome comparison'\n", + "Entity 'http://edamontology.org/operation_3211' - Label 'Genome indexing'\n", + "Entity 'http://edamontology.org/operation_3212' - Label 'Genome indexing (Burrows-Wheeler)'\n", + "Entity 'http://edamontology.org/operation_3213' - Label 'Genome indexing (suffix arrays)'\n", + "Entity 'http://edamontology.org/operation_3214' - Label 'Spectral analysis'\n", + "Entity 'http://edamontology.org/operation_3215' - Label 'Peak detection'\n", + "Entity 'http://edamontology.org/operation_3216' - Label 'Scaffolding'\n", + "Entity 'http://edamontology.org/operation_3217' - Label 'Scaffold gap completion'\n", + "Entity 'http://edamontology.org/operation_3218' - Label 'Sequencing quality control'\n", + "Entity 'http://edamontology.org/operation_3219' - Label 'Read pre-processing'\n", + "Entity 'http://edamontology.org/operation_3221' - Label 'Species frequency estimation'\n", + "Entity 'http://edamontology.org/operation_3222' - Label 'Peak calling'\n", + "Entity 'http://edamontology.org/operation_3223' - Label 'Differential gene expression profiling'\n", + "Entity 'http://edamontology.org/operation_3224' - Label 'Gene set testing'\n", + "Entity 'http://edamontology.org/operation_3225' - Label 'Variant classification'\n", + "Entity 'http://edamontology.org/operation_3226' - Label 'Variant prioritisation'\n", + "Entity 'http://edamontology.org/operation_3227' - Label 'Variant calling'\n", + "Entity 'http://edamontology.org/operation_3228' - Label 'Structural variation detection'\n", + "Entity 'http://edamontology.org/operation_3229' - Label 'Exome assembly'\n", + "Entity 'http://edamontology.org/operation_3230' - Label 'Read depth analysis'\n", + "Entity 'http://edamontology.org/operation_3232' - Label 'Gene expression QTL analysis'\n", + "Entity 'http://edamontology.org/operation_3233' - Label 'Copy number estimation'\n", + "Entity 'http://edamontology.org/operation_3237' - Label 'Primer removal'\n", + "Entity 'http://edamontology.org/operation_3258' - Label 'Transcriptome assembly'\n", + "Entity 'http://edamontology.org/operation_3259' - Label 'Transcriptome assembly (de novo)'\n", + "Entity 'http://edamontology.org/operation_3260' - Label 'Transcriptome assembly (mapping)'\n", + "Entity 'http://edamontology.org/operation_3267' - Label 'Sequence coordinate conversion'\n", + "Entity 'http://edamontology.org/operation_3278' - Label 'Document similarity calculation'\n", + "Entity 'http://edamontology.org/operation_3279' - Label 'Document clustering'\n", + "Entity 'http://edamontology.org/operation_3280' - Label 'Named-entity and concept recognition'\n", + "Entity 'http://edamontology.org/operation_3282' - Label 'ID mapping'\n", + "Entity 'http://edamontology.org/operation_3283' - Label 'Anonymisation'\n", + "Entity 'http://edamontology.org/operation_3289' - Label 'ID retrieval'\n", + "Entity 'http://edamontology.org/operation_3348' - Label 'Sequence checksum generation'\n", + "Entity 'http://edamontology.org/operation_3349' - Label 'Bibliography generation'\n", + "Entity 'http://edamontology.org/operation_3350' - Label 'Protein quaternary structure prediction'\n", + "Entity 'http://edamontology.org/operation_3351' - Label 'Molecular surface analysis'\n", + "Entity 'http://edamontology.org/operation_3352' - Label 'Ontology comparison'\n", + "Entity 'http://edamontology.org/operation_3353' - Label 'Ontology comparison'\n", + "Entity 'http://edamontology.org/operation_3357' - Label 'Format detection'\n", + "Entity 'http://edamontology.org/operation_3359' - Label 'Splitting'\n", + "Entity 'http://edamontology.org/operation_3429' - Label 'Generation'\n", + "Entity 'http://edamontology.org/operation_3430' - Label 'Nucleic acid sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_3431' - Label 'Deposition'\n", + "Entity 'http://edamontology.org/operation_3432' - Label 'Clustering'\n", + "Entity 'http://edamontology.org/operation_3433' - Label 'Assembly'\n", + "Entity 'http://edamontology.org/operation_3434' - Label 'Conversion'\n", + "Entity 'http://edamontology.org/operation_3435' - Label 'Standardisation and normalisation'\n", + "Entity 'http://edamontology.org/operation_3436' - Label 'Aggregation'\n", + "Entity 'http://edamontology.org/operation_3437' - Label 'Article comparison'\n", + "Entity 'http://edamontology.org/operation_3438' - Label 'Calculation'\n", + "Entity 'http://edamontology.org/operation_3439' - Label 'Pathway or network prediction'\n", + "Entity 'http://edamontology.org/operation_3440' - Label 'Genome assembly'\n", + "Entity 'http://edamontology.org/operation_3441' - Label 'Plotting'\n", + "Entity 'http://edamontology.org/operation_3443' - Label 'Image analysis'\n", + "Entity 'http://edamontology.org/operation_3445' - Label 'Diffraction data analysis'\n", + "Entity 'http://edamontology.org/operation_3446' - Label 'Cell migration analysis'\n", + "Entity 'http://edamontology.org/operation_3447' - Label 'Diffraction data reduction'\n", + "Entity 'http://edamontology.org/operation_3450' - Label 'Neurite measurement'\n", + "Entity 'http://edamontology.org/operation_3453' - Label 'Diffraction data integration'\n", + "Entity 'http://edamontology.org/operation_3454' - Label 'Phasing'\n", + "Entity 'http://edamontology.org/operation_3455' - Label 'Molecular replacement'\n", + "Entity 'http://edamontology.org/operation_3456' - Label 'Rigid body refinement'\n", + "Entity 'http://edamontology.org/operation_3457' - Label 'Single particle analysis'\n", + "Entity 'http://edamontology.org/operation_3458' - Label 'Single particle alignment and classification'\n", + "Entity 'http://edamontology.org/operation_3459' - Label 'Functional clustering'\n", + "Entity 'http://edamontology.org/operation_3460' - Label 'Taxonomic classification'\n", + "Entity 'http://edamontology.org/operation_3461' - Label 'Virulence prediction'\n", + "Entity 'http://edamontology.org/operation_3463' - Label 'Expression correlation analysis'\n", + "Entity 'http://edamontology.org/operation_3465' - Label 'Correlation'\n", + "Entity 'http://edamontology.org/operation_3469' - Label 'RNA structure covariance model generation'\n", + "Entity 'http://edamontology.org/operation_3470' - Label 'RNA secondary structure prediction (shape-based)'\n", + "Entity 'http://edamontology.org/operation_3471' - Label 'Nucleic acid folding prediction (alignment-based)'\n", + "Entity 'http://edamontology.org/operation_3472' - Label 'k-mer counting'\n", + "Entity 'http://edamontology.org/operation_3478' - Label 'Phylogenetic reconstruction'\n", + "Entity 'http://edamontology.org/operation_3480' - Label 'Probabilistic data generation'\n", + "Entity 'http://edamontology.org/operation_3481' - Label 'Probabilistic sequence generation'\n", + "Entity 'http://edamontology.org/operation_3482' - Label 'Antimicrobial resistance prediction'\n", + "Entity 'http://edamontology.org/operation_3501' - Label 'Enrichment analysis'\n", + "Entity 'http://edamontology.org/operation_3502' - Label 'Chemical similarity enrichment'\n", + "Entity 'http://edamontology.org/operation_3503' - Label 'Incident curve plotting'\n", + "Entity 'http://edamontology.org/operation_3504' - Label 'Variant pattern analysis'\n", + "Entity 'http://edamontology.org/operation_3545' - Label 'Mathematical modelling'\n", + "Entity 'http://edamontology.org/operation_3552' - Label 'Microscope image visualisation'\n", + "Entity 'http://edamontology.org/operation_3553' - Label 'Image annotation'\n", + "Entity 'http://edamontology.org/operation_3557' - Label 'Imputation'\n", + "Entity 'http://edamontology.org/operation_3559' - Label 'Ontology visualisation'\n", + "Entity 'http://edamontology.org/operation_3560' - Label 'Maximum occurrence analysis'\n", + "Entity 'http://edamontology.org/operation_3561' - Label 'Database comparison'\n", + "Entity 'http://edamontology.org/operation_3562' - Label 'Network simulation'\n", + "Entity 'http://edamontology.org/operation_3563' - Label 'RNA-seq read count analysis'\n", + "Entity 'http://edamontology.org/operation_3564' - Label 'Chemical redundancy removal'\n", + "Entity 'http://edamontology.org/operation_3565' - Label 'RNA-seq time series data analysis'\n", + "Entity 'http://edamontology.org/operation_3566' - Label 'Simulated gene expression data generation'\n", + "Entity 'http://edamontology.org/operation_3625' - Label 'Relation extraction'\n", + "Entity 'http://edamontology.org/operation_3627' - Label 'Mass spectra calibration'\n", + "Entity 'http://edamontology.org/operation_3628' - Label 'Chromatographic alignment'\n", + "Entity 'http://edamontology.org/operation_3629' - Label 'Deisotoping'\n", + "Entity 'http://edamontology.org/operation_3630' - Label 'Protein quantification'\n", + "Entity 'http://edamontology.org/operation_3631' - Label 'Peptide identification'\n", + "Entity 'http://edamontology.org/operation_3632' - Label 'Isotopic distributions calculation'\n", + "Entity 'http://edamontology.org/operation_3633' - Label 'Retention time prediction'\n", + "Entity 'http://edamontology.org/operation_3634' - Label 'Label-free quantification'\n", + "Entity 'http://edamontology.org/operation_3635' - Label 'Labeled quantification'\n", + "Entity 'http://edamontology.org/operation_3636' - Label 'MRM/SRM'\n", + "Entity 'http://edamontology.org/operation_3637' - Label 'Spectral counting'\n", + "Entity 'http://edamontology.org/operation_3638' - Label 'SILAC'\n", + "Entity 'http://edamontology.org/operation_3639' - Label 'iTRAQ'\n", + "Entity 'http://edamontology.org/operation_3640' - Label '18O labeling'\n", + "Entity 'http://edamontology.org/operation_3641' - Label 'TMT-tag'\n", + "Entity 'http://edamontology.org/operation_3642' - Label 'Stable isotope dimethyl labelling'\n", + "Entity 'http://edamontology.org/operation_3643' - Label 'Tag-based peptide identification'\n", + "Entity 'http://edamontology.org/operation_3644' - Label 'de Novo sequencing'\n", + "Entity 'http://edamontology.org/operation_3645' - Label 'PTM identification'\n", + "Entity 'http://edamontology.org/operation_3646' - Label 'Peptide database search'\n", + "Entity 'http://edamontology.org/operation_3647' - Label 'Blind peptide database search'\n", + "Entity 'http://edamontology.org/operation_3648' - Label 'Validation of peptide-spectrum matches'\n", + "Entity 'http://edamontology.org/operation_3649' - Label 'Target-Decoy'\n", + "Entity 'http://edamontology.org/operation_3658' - Label 'Statistical inference'\n", + "Entity 'http://edamontology.org/operation_3659' - Label 'Regression analysis'\n", + "Entity 'http://edamontology.org/operation_3660' - Label 'Metabolic network modelling'\n", + "Entity 'http://edamontology.org/operation_3661' - Label 'SNP annotation'\n", + "Entity 'http://edamontology.org/operation_3662' - Label 'Ab-initio gene prediction'\n", + "Entity 'http://edamontology.org/operation_3663' - Label 'Homology-based gene prediction'\n", + "Entity 'http://edamontology.org/operation_3664' - Label 'Statistical modelling'\n", + "Entity 'http://edamontology.org/operation_3666' - Label 'Molecular surface comparison'\n", + "Entity 'http://edamontology.org/operation_3672' - Label 'Gene functional annotation'\n", + "Entity 'http://edamontology.org/operation_3675' - Label 'Variant filtering'\n", + "Entity 'http://edamontology.org/operation_3677' - Label 'Differential binding analysis'\n", + "Entity 'http://edamontology.org/operation_3680' - Label 'RNA-Seq analysis'\n", + "Entity 'http://edamontology.org/operation_3694' - Label 'Mass spectrum visualisation'\n", + "Entity 'http://edamontology.org/operation_3695' - Label 'Filtering'\n", + "Entity 'http://edamontology.org/operation_3703' - Label 'Reference identification'\n", + "Entity 'http://edamontology.org/operation_3704' - Label 'Ion counting'\n", + "Entity 'http://edamontology.org/operation_3705' - Label 'Isotope-coded protein label'\n", + "Entity 'http://edamontology.org/operation_3715' - Label 'Metabolic labeling'\n", + "Entity 'http://edamontology.org/operation_3730' - Label 'Cross-assembly'\n", + "Entity 'http://edamontology.org/operation_3731' - Label 'Sample comparison'\n", + "Entity 'http://edamontology.org/operation_3741' - Label 'Differential protein expression profiling'\n", + "Entity 'http://edamontology.org/operation_3742' - Label 'Differential gene expression analysis'\n", + "Entity 'http://edamontology.org/operation_3744' - Label 'Multiple sample visualisation'\n", + "Entity 'http://edamontology.org/operation_3745' - Label 'Ancestral reconstruction'\n", + "Entity 'http://edamontology.org/operation_3755' - Label 'PTM localisation'\n", + "Entity 'http://edamontology.org/operation_3760' - Label 'Service management'\n", + "Entity 'http://edamontology.org/operation_3761' - Label 'Service discovery'\n", + "Entity 'http://edamontology.org/operation_3762' - Label 'Service composition'\n", + "Entity 'http://edamontology.org/operation_3763' - Label 'Service invocation'\n", + "Entity 'http://edamontology.org/operation_3766' - Label 'Weighted correlation network analysis'\n", + "Entity 'http://edamontology.org/operation_3767' - Label 'Protein identification'\n", + "Entity 'http://edamontology.org/operation_3778' - Label 'Text annotation'\n", + "Entity 'http://edamontology.org/operation_3791' - Label 'Collapsing methods'\n", + "Entity 'http://edamontology.org/operation_3792' - Label 'miRNA expression analysis'\n", + "Entity 'http://edamontology.org/operation_3793' - Label 'Read summarisation'\n", + "Entity 'http://edamontology.org/operation_3795' - Label 'In vitro selection'\n", + "Entity 'http://edamontology.org/operation_3797' - Label 'Rarefaction'\n", + "Entity 'http://edamontology.org/operation_3798' - Label 'Read binning'\n", + "Entity 'http://edamontology.org/operation_3799' - Label 'Quantification'\n", + "Entity 'http://edamontology.org/operation_3800' - Label 'RNA-Seq quantification'\n", + "Entity 'http://edamontology.org/operation_3801' - Label 'Spectral library search'\n", + "Entity 'http://edamontology.org/operation_3802' - Label 'Sorting'\n", + "Entity 'http://edamontology.org/operation_3803' - Label 'Natural product identification'\n", + "Entity 'http://edamontology.org/operation_3809' - Label 'DMR identification'\n", + "Entity 'http://edamontology.org/operation_3840' - Label 'Multilocus sequence typing'\n", + "Entity 'http://edamontology.org/operation_3860' - Label 'Spectrum calculation'\n", + "Entity 'http://edamontology.org/operation_3890' - Label 'Trajectory visualization'\n", + "Entity 'http://edamontology.org/operation_3891' - Label 'Essential dynamics'\n", + "Entity 'http://edamontology.org/operation_3893' - Label 'Forcefield parameterisation'\n", + "Entity 'http://edamontology.org/operation_3894' - Label 'DNA profiling'\n", + "Entity 'http://edamontology.org/operation_3896' - Label 'Active site prediction'\n", + "Entity 'http://edamontology.org/operation_3897' - Label 'Ligand-binding site prediction'\n", + "Entity 'http://edamontology.org/operation_3898' - Label 'Metal-binding site prediction'\n", + "Entity 'http://edamontology.org/operation_3899' - Label 'Protein-protein docking'\n", + "Entity 'http://edamontology.org/operation_3900' - Label 'DNA-binding protein prediction'\n", + "Entity 'http://edamontology.org/operation_3901' - Label 'RNA-binding protein prediction'\n", + "Entity 'http://edamontology.org/operation_3902' - Label 'RNA binding site prediction'\n", + "Entity 'http://edamontology.org/operation_3903' - Label 'DNA binding site prediction'\n", + "Entity 'http://edamontology.org/operation_3904' - Label 'Protein disorder prediction'\n", + "Entity 'http://edamontology.org/operation_3907' - Label 'Information extraction'\n", + "Entity 'http://edamontology.org/operation_3908' - Label 'Information retrieval'\n", + "Entity 'http://edamontology.org/operation_3918' - Label 'Genome analysis'\n", + "Entity 'http://edamontology.org/operation_3919' - Label 'Methylation calling'\n", + "Entity 'http://edamontology.org/operation_3920' - Label 'DNA testing'\n", + "Entity 'http://edamontology.org/operation_3921' - Label 'Sequence read processing'\n", + "Entity 'http://edamontology.org/operation_3925' - Label 'Network visualisation'\n", + "Entity 'http://edamontology.org/operation_3926' - Label 'Pathway visualisation'\n", + "Entity 'http://edamontology.org/operation_3927' - Label 'Network analysis'\n", + "Entity 'http://edamontology.org/operation_3928' - Label 'Pathway analysis'\n", + "Entity 'http://edamontology.org/operation_3929' - Label 'Metabolic pathway prediction'\n", + "Entity 'http://edamontology.org/operation_3933' - Label 'Demultiplexing'\n", + "Entity 'http://edamontology.org/operation_3935' - Label 'Dimensionality reduction'\n", + "Entity 'http://edamontology.org/operation_3936' - Label 'Feature selection'\n", + "Entity 'http://edamontology.org/operation_3937' - Label 'Feature extraction'\n", + "Entity 'http://edamontology.org/operation_3938' - Label 'Virtual screening'\n", + "Entity 'http://edamontology.org/operation_3942' - Label 'Tree dating'\n", + "Entity 'http://edamontology.org/operation_3946' - Label 'Ecological modelling'\n", + "Entity 'http://edamontology.org/operation_3947' - Label 'Phylogenetic tree reconciliation'\n", + "Entity 'http://edamontology.org/operation_3950' - Label 'Selection detection'\n", + "Entity 'http://edamontology.org/operation_3960' - Label 'Principal component analysis'\n", + "Entity 'http://edamontology.org/operation_3961' - Label 'Copy number variation detection'\n", + "Entity 'http://edamontology.org/operation_3962' - Label 'Deletion detection'\n", + "Entity 'http://edamontology.org/operation_3963' - Label 'Duplication detection'\n", + "Entity 'http://edamontology.org/operation_3964' - Label 'Complex CNV detection'\n", + "Entity 'http://edamontology.org/operation_3965' - Label 'Amplification detection'\n", + "Entity 'http://edamontology.org/operation_3968' - Label 'Adhesin prediction'\n", + "Entity 'http://edamontology.org/operation_4008' - Label 'Protein design'\n", + "Entity 'http://edamontology.org/operation_4009' - Label 'Small molecule design'\n", + "Entity 'http://edamontology.org/operation_4031' - Label 'Power test'\n", + "Entity 'http://edamontology.org/operation_4032' - Label 'DNA modification prediction'\n", + "Entity 'http://edamontology.org/operation_4033' - Label 'Disease transmission analysis'\n", + "Entity 'http://edamontology.org/operation_4034' - Label 'Multiple testing correction'\n", + "Entity 'http://edamontology.org/topic_0003' - Label 'Topic'\n", + "Entity 'http://edamontology.org/topic_0077' - Label 'Nucleic acids'\n", + "Entity 'http://edamontology.org/topic_0078' - Label 'Proteins'\n", + "Entity 'http://edamontology.org/topic_0079' - Label 'Metabolites'\n", + "Entity 'http://edamontology.org/topic_0080' - Label 'Sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0081' - Label 'Structure analysis'\n", + "Entity 'http://edamontology.org/topic_0082' - Label 'Structure prediction'\n", + "Entity 'http://edamontology.org/topic_0083' - Label 'Alignment'\n", + "Entity 'http://edamontology.org/topic_0084' - Label 'Phylogeny'\n", + "Entity 'http://edamontology.org/topic_0085' - Label 'Functional genomics'\n", + "Entity 'http://edamontology.org/topic_0089' - Label 'Ontology and terminology'\n", + "Entity 'http://edamontology.org/topic_0090' - Label 'Information retrieval'\n", + "Entity 'http://edamontology.org/topic_0091' - Label 'Bioinformatics'\n", + "Entity 'http://edamontology.org/topic_0092' - Label 'Data visualisation'\n", + "Entity 'http://edamontology.org/topic_0094' - Label 'Nucleic acid thermodynamics'\n", + "Entity 'http://edamontology.org/topic_0097' - Label 'Nucleic acid structure analysis'\n", + "Entity 'http://edamontology.org/topic_0099' - Label 'RNA'\n", + "Entity 'http://edamontology.org/topic_0100' - Label 'Nucleic acid restriction'\n", + "Entity 'http://edamontology.org/topic_0102' - Label 'Mapping'\n", + "Entity 'http://edamontology.org/topic_0107' - Label 'Genetic codes and codon usage'\n", + "Entity 'http://edamontology.org/topic_0108' - Label 'Protein expression'\n", + "Entity 'http://edamontology.org/topic_0109' - Label 'Gene finding'\n", + "Entity 'http://edamontology.org/topic_0110' - Label 'Transcription'\n", + "Entity 'http://edamontology.org/topic_0111' - Label 'Promoters'\n", + "Entity 'http://edamontology.org/topic_0112' - Label 'Nucleic acid folding'\n", + "Entity 'http://edamontology.org/topic_0114' - Label 'Gene structure'\n", + "Entity 'http://edamontology.org/topic_0121' - Label 'Proteomics'\n", + "Entity 'http://edamontology.org/topic_0122' - Label 'Structural genomics'\n", + "Entity 'http://edamontology.org/topic_0123' - Label 'Protein properties'\n", + "Entity 'http://edamontology.org/topic_0128' - Label 'Protein interactions'\n", + "Entity 'http://edamontology.org/topic_0130' - Label 'Protein folding, stability and design'\n", + "Entity 'http://edamontology.org/topic_0133' - Label 'Two-dimensional gel electrophoresis'\n", + "Entity 'http://edamontology.org/topic_0134' - Label 'Mass spectrometry'\n", + "Entity 'http://edamontology.org/topic_0135' - Label 'Protein microarrays'\n", + "Entity 'http://edamontology.org/topic_0137' - Label 'Protein hydropathy'\n", + "Entity 'http://edamontology.org/topic_0140' - Label 'Protein targeting and localisation'\n", + "Entity 'http://edamontology.org/topic_0141' - Label 'Protein cleavage sites and proteolysis'\n", + "Entity 'http://edamontology.org/topic_0143' - Label 'Protein structure comparison'\n", + "Entity 'http://edamontology.org/topic_0144' - Label 'Protein residue interactions'\n", + "Entity 'http://edamontology.org/topic_0147' - Label 'Protein-protein interactions'\n", + "Entity 'http://edamontology.org/topic_0148' - Label 'Protein-ligand interactions'\n", + "Entity 'http://edamontology.org/topic_0149' - Label 'Protein-nucleic acid interactions'\n", + "Entity 'http://edamontology.org/topic_0150' - Label 'Protein design'\n", + "Entity 'http://edamontology.org/topic_0151' - Label 'G protein-coupled receptors (GPCR)'\n", + "Entity 'http://edamontology.org/topic_0152' - Label 'Carbohydrates'\n", + "Entity 'http://edamontology.org/topic_0153' - Label 'Lipids'\n", + "Entity 'http://edamontology.org/topic_0154' - Label 'Small molecules'\n", + "Entity 'http://edamontology.org/topic_0156' - Label 'Sequence editing'\n", + "Entity 'http://edamontology.org/topic_0157' - Label 'Sequence composition, complexity and repeats'\n", + "Entity 'http://edamontology.org/topic_0158' - Label 'Sequence motifs'\n", + "Entity 'http://edamontology.org/topic_0159' - Label 'Sequence comparison'\n", + "Entity 'http://edamontology.org/topic_0160' - Label 'Sequence sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_0163' - Label 'Sequence database search'\n", + "Entity 'http://edamontology.org/topic_0164' - Label 'Sequence clustering'\n", + "Entity 'http://edamontology.org/topic_0166' - Label 'Protein structural motifs and surfaces'\n", + "Entity 'http://edamontology.org/topic_0167' - Label 'Structural (3D) profiles'\n", + "Entity 'http://edamontology.org/topic_0172' - Label 'Protein structure prediction'\n", + "Entity 'http://edamontology.org/topic_0173' - Label 'Nucleic acid structure prediction'\n", + "Entity 'http://edamontology.org/topic_0174' - Label 'Ab initio structure prediction'\n", + "Entity 'http://edamontology.org/topic_0175' - Label 'Homology modelling'\n", + "Entity 'http://edamontology.org/topic_0176' - Label 'Molecular dynamics'\n", + "Entity 'http://edamontology.org/topic_0177' - Label 'Molecular docking'\n", + "Entity 'http://edamontology.org/topic_0178' - Label 'Protein secondary structure prediction'\n", + "Entity 'http://edamontology.org/topic_0179' - Label 'Protein tertiary structure prediction'\n", + "Entity 'http://edamontology.org/topic_0180' - Label 'Protein fold recognition'\n", + "Entity 'http://edamontology.org/topic_0182' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0183' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/topic_0184' - Label 'Threading'\n", + "Entity 'http://edamontology.org/topic_0188' - Label 'Sequence profiles and HMMs'\n", + "Entity 'http://edamontology.org/topic_0191' - Label 'Phylogeny reconstruction'\n", + "Entity 'http://edamontology.org/topic_0194' - Label 'Phylogenomics'\n", + "Entity 'http://edamontology.org/topic_0195' - Label 'Virtual PCR'\n", + "Entity 'http://edamontology.org/topic_0196' - Label 'Sequence assembly'\n", + "Entity 'http://edamontology.org/topic_0199' - Label 'Genetic variation'\n", + "Entity 'http://edamontology.org/topic_0200' - Label 'Microarrays'\n", + "Entity 'http://edamontology.org/topic_0202' - Label 'Pharmacology'\n", + "Entity 'http://edamontology.org/topic_0203' - Label 'Gene expression'\n", + "Entity 'http://edamontology.org/topic_0204' - Label 'Gene regulation'\n", + "Entity 'http://edamontology.org/topic_0208' - Label 'Pharmacogenomics'\n", + "Entity 'http://edamontology.org/topic_0209' - Label 'Medicinal chemistry'\n", + "Entity 'http://edamontology.org/topic_0210' - Label 'Fish'\n", + "Entity 'http://edamontology.org/topic_0211' - Label 'Flies'\n", + "Entity 'http://edamontology.org/topic_0213' - Label 'Mice or rats'\n", + "Entity 'http://edamontology.org/topic_0215' - Label 'Worms'\n", + "Entity 'http://edamontology.org/topic_0217' - Label 'Literature analysis'\n", + "Entity 'http://edamontology.org/topic_0218' - Label 'Natural language processing'\n", + "Entity 'http://edamontology.org/topic_0219' - Label 'Data submission, annotation, and curation'\n", + "Entity 'http://edamontology.org/topic_0220' - Label 'Document, record and content management'\n", + "Entity 'http://edamontology.org/topic_0221' - Label 'Sequence annotation'\n", + "Entity 'http://edamontology.org/topic_0222' - Label 'Genome annotation'\n", + "Entity 'http://edamontology.org/topic_0593' - Label 'NMR'\n", + "Entity 'http://edamontology.org/topic_0594' - Label 'Sequence classification'\n", + "Entity 'http://edamontology.org/topic_0595' - Label 'Protein classification'\n", + "Entity 'http://edamontology.org/topic_0598' - Label 'Sequence motif or profile'\n", + "Entity 'http://edamontology.org/topic_0601' - Label 'Protein modifications'\n", + "Entity 'http://edamontology.org/topic_0602' - Label 'Molecular interactions, pathways and networks'\n", + "Entity 'http://edamontology.org/topic_0605' - Label 'Informatics'\n", + "Entity 'http://edamontology.org/topic_0606' - Label 'Literature data resources'\n", + "Entity 'http://edamontology.org/topic_0607' - Label 'Laboratory information management'\n", + "Entity 'http://edamontology.org/topic_0608' - Label 'Cell and tissue culture'\n", + "Entity 'http://edamontology.org/topic_0610' - Label 'Ecology'\n", + "Entity 'http://edamontology.org/topic_0611' - Label 'Electron microscopy'\n", + "Entity 'http://edamontology.org/topic_0612' - Label 'Cell cycle'\n", + "Entity 'http://edamontology.org/topic_0613' - Label 'Peptides and amino acids'\n", + "Entity 'http://edamontology.org/topic_0616' - Label 'Organelles'\n", + "Entity 'http://edamontology.org/topic_0617' - Label 'Ribosomes'\n", + "Entity 'http://edamontology.org/topic_0618' - Label 'Scents'\n", + "Entity 'http://edamontology.org/topic_0620' - Label 'Drugs and target structures'\n", + "Entity 'http://edamontology.org/topic_0621' - Label 'Model organisms'\n", + "Entity 'http://edamontology.org/topic_0622' - Label 'Genomics'\n", + "Entity 'http://edamontology.org/topic_0623' - Label 'Gene and protein families'\n", + "Entity 'http://edamontology.org/topic_0624' - Label 'Chromosomes'\n", + "Entity 'http://edamontology.org/topic_0625' - Label 'Genotype and phenotype'\n", + "Entity 'http://edamontology.org/topic_0629' - Label 'Gene expression and microarray'\n", + "Entity 'http://edamontology.org/topic_0632' - Label 'Probes and primers'\n", + "Entity 'http://edamontology.org/topic_0634' - Label 'Pathology'\n", + "Entity 'http://edamontology.org/topic_0635' - Label 'Specific protein resources'\n", + "Entity 'http://edamontology.org/topic_0637' - Label 'Taxonomy'\n", + "Entity 'http://edamontology.org/topic_0639' - Label 'Protein sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0640' - Label 'Nucleic acid sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0641' - Label 'Repeat sequences'\n", + "Entity 'http://edamontology.org/topic_0642' - Label 'Low complexity sequences'\n", + "Entity 'http://edamontology.org/topic_0644' - Label 'Proteome'\n", + "Entity 'http://edamontology.org/topic_0654' - Label 'DNA'\n", + "Entity 'http://edamontology.org/topic_0655' - Label 'Coding RNA'\n", + "Entity 'http://edamontology.org/topic_0659' - Label 'Functional, regulatory and non-coding RNA'\n", + "Entity 'http://edamontology.org/topic_0660' - Label 'rRNA'\n", + "Entity 'http://edamontology.org/topic_0663' - Label 'tRNA'\n", + "Entity 'http://edamontology.org/topic_0694' - Label 'Protein secondary structure'\n", + "Entity 'http://edamontology.org/topic_0697' - Label 'RNA structure'\n", + "Entity 'http://edamontology.org/topic_0698' - Label 'Protein tertiary structure'\n", + "Entity 'http://edamontology.org/topic_0722' - Label 'Nucleic acid classification'\n", + "Entity 'http://edamontology.org/topic_0724' - Label 'Protein families'\n", + "Entity 'http://edamontology.org/topic_0736' - Label 'Protein folds and structural domains'\n", + "Entity 'http://edamontology.org/topic_0740' - Label 'Nucleic acid sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0741' - Label 'Protein sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0747' - Label 'Nucleic acid sites and features'\n", + "Entity 'http://edamontology.org/topic_0748' - Label 'Protein sites and features'\n", + "Entity 'http://edamontology.org/topic_0749' - Label 'Transcription factors and regulatory sites'\n", + "Entity 'http://edamontology.org/topic_0751' - Label 'Phosphorylation sites'\n", + "Entity 'http://edamontology.org/topic_0753' - Label 'Metabolic pathways'\n", + "Entity 'http://edamontology.org/topic_0754' - Label 'Signaling pathways'\n", + "Entity 'http://edamontology.org/topic_0767' - Label 'Protein and peptide identification'\n", + "Entity 'http://edamontology.org/topic_0769' - Label 'Workflows'\n", + "Entity 'http://edamontology.org/topic_0770' - Label 'Data types and objects'\n", + "Entity 'http://edamontology.org/topic_0771' - Label 'Theoretical biology'\n", + "Entity 'http://edamontology.org/topic_0779' - Label 'Mitochondria'\n", + "Entity 'http://edamontology.org/topic_0780' - Label 'Plant biology'\n", + "Entity 'http://edamontology.org/topic_0781' - Label 'Virology'\n", + "Entity 'http://edamontology.org/topic_0782' - Label 'Fungi'\n", + "Entity 'http://edamontology.org/topic_0783' - Label 'Pathogens'\n", + "Entity 'http://edamontology.org/topic_0786' - Label 'Arabidopsis'\n", + "Entity 'http://edamontology.org/topic_0787' - Label 'Rice'\n", + "Entity 'http://edamontology.org/topic_0796' - Label 'Genetic mapping and linkage'\n", + "Entity 'http://edamontology.org/topic_0797' - Label 'Comparative genomics'\n", + "Entity 'http://edamontology.org/topic_0798' - Label 'Mobile genetic elements'\n", + "Entity 'http://edamontology.org/topic_0803' - Label 'Human disease'\n", + "Entity 'http://edamontology.org/topic_0804' - Label 'Immunology'\n", + "Entity 'http://edamontology.org/topic_0820' - Label 'Membrane and lipoproteins'\n", + "Entity 'http://edamontology.org/topic_0821' - Label 'Enzymes'\n", + "Entity 'http://edamontology.org/topic_0922' - Label 'Primers'\n", + "Entity 'http://edamontology.org/topic_1302' - Label 'PolyA signal or sites'\n", + "Entity 'http://edamontology.org/topic_1304' - Label 'CpG island and isochores'\n", + "Entity 'http://edamontology.org/topic_1305' - Label 'Restriction sites'\n", + "Entity 'http://edamontology.org/topic_1307' - Label 'Splice sites'\n", + "Entity 'http://edamontology.org/topic_1308' - Label 'Matrix/scaffold attachment sites'\n", + "Entity 'http://edamontology.org/topic_1311' - Label 'Operon'\n", + "Entity 'http://edamontology.org/topic_1312' - Label 'Promoters'\n", + "Entity 'http://edamontology.org/topic_1317' - Label 'Structural biology'\n", + "Entity 'http://edamontology.org/topic_1456' - Label 'Protein membrane regions'\n", + "Entity 'http://edamontology.org/topic_1770' - Label 'Structure comparison'\n", + "Entity 'http://edamontology.org/topic_1775' - Label 'Function analysis'\n", + "Entity 'http://edamontology.org/topic_1811' - Label 'Prokaryotes and Archaea'\n", + "Entity 'http://edamontology.org/topic_2225' - Label 'Protein databases'\n", + "Entity 'http://edamontology.org/topic_2226' - Label 'Structure determination'\n", + "Entity 'http://edamontology.org/topic_2229' - Label 'Cell biology'\n", + "Entity 'http://edamontology.org/topic_2230' - Label 'Classification'\n", + "Entity 'http://edamontology.org/topic_2232' - Label 'Lipoproteins'\n", + "Entity 'http://edamontology.org/topic_2257' - Label 'Phylogeny visualisation'\n", + "Entity 'http://edamontology.org/topic_2258' - Label 'Cheminformatics'\n", + "Entity 'http://edamontology.org/topic_2259' - Label 'Systems biology'\n", + "Entity 'http://edamontology.org/topic_2269' - Label 'Statistics and probability'\n", + "Entity 'http://edamontology.org/topic_2271' - Label 'Structure database search'\n", + "Entity 'http://edamontology.org/topic_2275' - Label 'Molecular modelling'\n", + "Entity 'http://edamontology.org/topic_2276' - Label 'Protein function prediction'\n", + "Entity 'http://edamontology.org/topic_2277' - Label 'SNP'\n", + "Entity 'http://edamontology.org/topic_2278' - Label 'Transmembrane protein prediction'\n", + "Entity 'http://edamontology.org/topic_2280' - Label 'Nucleic acid structure comparison'\n", + "Entity 'http://edamontology.org/topic_2397' - Label 'Exons'\n", + "Entity 'http://edamontology.org/topic_2399' - Label 'Gene transcription'\n", + "Entity 'http://edamontology.org/topic_2533' - Label 'DNA mutation'\n", + "Entity 'http://edamontology.org/topic_2640' - Label 'Oncology'\n", + "Entity 'http://edamontology.org/topic_2661' - Label 'Toxins and targets'\n", + "Entity 'http://edamontology.org/topic_2754' - Label 'Introns'\n", + "Entity 'http://edamontology.org/topic_2807' - Label 'Tool topic'\n", + "Entity 'http://edamontology.org/topic_2809' - Label 'Study topic'\n", + "Entity 'http://edamontology.org/topic_2811' - Label 'Nomenclature'\n", + "Entity 'http://edamontology.org/topic_2813' - Label 'Disease genes and proteins'\n", + "Entity 'http://edamontology.org/topic_2814' - Label 'Protein structure analysis'\n", + "Entity 'http://edamontology.org/topic_2815' - Label 'Human biology'\n", + "Entity 'http://edamontology.org/topic_2816' - Label 'Gene resources'\n", + "Entity 'http://edamontology.org/topic_2817' - Label 'Yeast'\n", + "Entity 'http://edamontology.org/topic_2818' - Label 'Eukaryotes'\n", + "Entity 'http://edamontology.org/topic_2819' - Label 'Invertebrates'\n", + "Entity 'http://edamontology.org/topic_2820' - Label 'Vertebrates'\n", + "Entity 'http://edamontology.org/topic_2821' - Label 'Unicellular eukaryotes'\n", + "Entity 'http://edamontology.org/topic_2826' - Label 'Protein structure alignment'\n", + "Entity 'http://edamontology.org/topic_2828' - Label 'X-ray diffraction'\n", + "Entity 'http://edamontology.org/topic_2829' - Label 'Ontologies, nomenclature and classification'\n", + "Entity 'http://edamontology.org/topic_2830' - Label 'Immunoproteins and antigens'\n", + "Entity 'http://edamontology.org/topic_2839' - Label 'Molecules'\n", + "Entity 'http://edamontology.org/topic_2840' - Label 'Toxicology'\n", + "Entity 'http://edamontology.org/topic_2842' - Label 'High-throughput sequencing'\n", + "Entity 'http://edamontology.org/topic_2846' - Label 'Gene regulatory networks'\n", + "Entity 'http://edamontology.org/topic_2847' - Label 'Disease (specific)'\n", + "Entity 'http://edamontology.org/topic_2867' - Label 'VNTR'\n", + "Entity 'http://edamontology.org/topic_2868' - Label 'Microsatellites'\n", + "Entity 'http://edamontology.org/topic_2869' - Label 'RFLP'\n", + "Entity 'http://edamontology.org/topic_2885' - Label 'DNA polymorphism'\n", + "Entity 'http://edamontology.org/topic_2953' - Label 'Nucleic acid design'\n", + "Entity 'http://edamontology.org/topic_3032' - Label 'Primer or probe design'\n", + "Entity 'http://edamontology.org/topic_3038' - Label 'Structure databases'\n", + "Entity 'http://edamontology.org/topic_3039' - Label 'Nucleic acid structure'\n", + "Entity 'http://edamontology.org/topic_3041' - Label 'Sequence databases'\n", + "Entity 'http://edamontology.org/topic_3042' - Label 'Nucleic acid sequences'\n", + "Entity 'http://edamontology.org/topic_3043' - Label 'Protein sequences'\n", + "Entity 'http://edamontology.org/topic_3044' - Label 'Protein interaction networks'\n", + "Entity 'http://edamontology.org/topic_3047' - Label 'Molecular biology'\n", + "Entity 'http://edamontology.org/topic_3048' - Label 'Mammals'\n", + "Entity 'http://edamontology.org/topic_3050' - Label 'Biodiversity'\n", + "Entity 'http://edamontology.org/topic_3052' - Label 'Sequence clusters and classification'\n", + "Entity 'http://edamontology.org/topic_3053' - Label 'Genetics'\n", + "Entity 'http://edamontology.org/topic_3055' - Label 'Quantitative genetics'\n", + "Entity 'http://edamontology.org/topic_3056' - Label 'Population genetics'\n", + "Entity 'http://edamontology.org/topic_3060' - Label 'Regulatory RNA'\n", + "Entity 'http://edamontology.org/topic_3061' - Label 'Documentation and help'\n", + "Entity 'http://edamontology.org/topic_3062' - Label 'Genetic organisation'\n", + "Entity 'http://edamontology.org/topic_3063' - Label 'Medical informatics'\n", + "Entity 'http://edamontology.org/topic_3064' - Label 'Developmental biology'\n", + "Entity 'http://edamontology.org/topic_3065' - Label 'Embryology'\n", + "Entity 'http://edamontology.org/topic_3067' - Label 'Anatomy'\n", + "Entity 'http://edamontology.org/topic_3068' - Label 'Literature and language'\n", + "Entity 'http://edamontology.org/topic_3070' - Label 'Biology'\n", + "Entity 'http://edamontology.org/topic_3071' - Label 'Data management'\n", + "Entity 'http://edamontology.org/topic_3072' - Label 'Sequence feature detection'\n", + "Entity 'http://edamontology.org/topic_3073' - Label 'Nucleic acid feature detection'\n", + "Entity 'http://edamontology.org/topic_3074' - Label 'Protein feature detection'\n", + "Entity 'http://edamontology.org/topic_3075' - Label 'Biological system modelling'\n", + "Entity 'http://edamontology.org/topic_3077' - Label 'Data acquisition'\n", + "Entity 'http://edamontology.org/topic_3078' - Label 'Genes and proteins resources'\n", + "Entity 'http://edamontology.org/topic_3118' - Label 'Protein topological domains'\n", + "Entity 'http://edamontology.org/topic_3120' - Label 'Protein variants'\n", + "Entity 'http://edamontology.org/topic_3123' - Label 'Expression signals'\n", + "Entity 'http://edamontology.org/topic_3125' - Label 'DNA binding sites'\n", + "Entity 'http://edamontology.org/topic_3126' - Label 'Nucleic acid repeats'\n", + "Entity 'http://edamontology.org/topic_3127' - Label 'DNA replication and recombination'\n", + "Entity 'http://edamontology.org/topic_3135' - Label 'Signal or transit peptide'\n", + "Entity 'http://edamontology.org/topic_3139' - Label 'Sequence tagged sites'\n", + "Entity 'http://edamontology.org/topic_3168' - Label 'Sequencing'\n", + "Entity 'http://edamontology.org/topic_3169' - Label 'ChIP-seq'\n", + "Entity 'http://edamontology.org/topic_3170' - Label 'RNA-Seq'\n", + "Entity 'http://edamontology.org/topic_3171' - Label 'DNA methylation'\n", + "Entity 'http://edamontology.org/topic_3172' - Label 'Metabolomics'\n", + "Entity 'http://edamontology.org/topic_3173' - Label 'Epigenomics'\n", + "Entity 'http://edamontology.org/topic_3174' - Label 'Metagenomics'\n", + "Entity 'http://edamontology.org/topic_3175' - Label 'Structural variation'\n", + "Entity 'http://edamontology.org/topic_3176' - Label 'DNA packaging'\n", + "Entity 'http://edamontology.org/topic_3177' - Label 'DNA-Seq'\n", + "Entity 'http://edamontology.org/topic_3178' - Label 'RNA-Seq alignment'\n", + "Entity 'http://edamontology.org/topic_3179' - Label 'ChIP-on-chip'\n", + "Entity 'http://edamontology.org/topic_3263' - Label 'Data security'\n", + "Entity 'http://edamontology.org/topic_3277' - Label 'Sample collections'\n", + "Entity 'http://edamontology.org/topic_3292' - Label 'Biochemistry'\n", + "Entity 'http://edamontology.org/topic_3293' - Label 'Phylogenetics'\n", + "Entity 'http://edamontology.org/topic_3295' - Label 'Epigenetics'\n", + "Entity 'http://edamontology.org/topic_3297' - Label 'Biotechnology'\n", + "Entity 'http://edamontology.org/topic_3298' - Label 'Phenomics'\n", + "Entity 'http://edamontology.org/topic_3299' - Label 'Evolutionary biology'\n", + "Entity 'http://edamontology.org/topic_3300' - Label 'Physiology'\n", + "Entity 'http://edamontology.org/topic_3301' - Label 'Microbiology'\n", + "Entity 'http://edamontology.org/topic_3302' - Label 'Parasitology'\n", + "Entity 'http://edamontology.org/topic_3303' - Label 'Medicine'\n", + "Entity 'http://edamontology.org/topic_3304' - Label 'Neurobiology'\n", + "Entity 'http://edamontology.org/topic_3305' - Label 'Public health and epidemiology'\n", + "Entity 'http://edamontology.org/topic_3306' - Label 'Biophysics'\n", + "Entity 'http://edamontology.org/topic_3307' - Label 'Computational biology'\n", + "Entity 'http://edamontology.org/topic_3308' - Label 'Transcriptomics'\n", + "Entity 'http://edamontology.org/topic_3314' - Label 'Chemistry'\n", + "Entity 'http://edamontology.org/topic_3315' - Label 'Mathematics'\n", + "Entity 'http://edamontology.org/topic_3316' - Label 'Computer science'\n", + "Entity 'http://edamontology.org/topic_3318' - Label 'Physics'\n", + "Entity 'http://edamontology.org/topic_3320' - Label 'RNA splicing'\n", + "Entity 'http://edamontology.org/topic_3321' - Label 'Molecular genetics'\n", + "Entity 'http://edamontology.org/topic_3322' - Label 'Respiratory medicine'\n", + "Entity 'http://edamontology.org/topic_3323' - Label 'Metabolic disease'\n", + "Entity 'http://edamontology.org/topic_3324' - Label 'Infectious disease'\n", + "Entity 'http://edamontology.org/topic_3325' - Label 'Rare diseases'\n", + "Entity 'http://edamontology.org/topic_3332' - Label 'Computational chemistry'\n", + "Entity 'http://edamontology.org/topic_3334' - Label 'Neurology'\n", + "Entity 'http://edamontology.org/topic_3335' - Label 'Cardiology'\n", + "Entity 'http://edamontology.org/topic_3336' - Label 'Drug discovery'\n", + "Entity 'http://edamontology.org/topic_3337' - Label 'Biobank'\n", + "Entity 'http://edamontology.org/topic_3338' - Label 'Mouse clinic'\n", + "Entity 'http://edamontology.org/topic_3339' - Label 'Microbial collection'\n", + "Entity 'http://edamontology.org/topic_3340' - Label 'Cell culture collection'\n", + "Entity 'http://edamontology.org/topic_3341' - Label 'Clone library'\n", + "Entity 'http://edamontology.org/topic_3342' - Label 'Translational medicine'\n", + "Entity 'http://edamontology.org/topic_3343' - Label 'Compound libraries and screening'\n", + "Entity 'http://edamontology.org/topic_3344' - Label 'Biomedical science'\n", + "Entity 'http://edamontology.org/topic_3345' - Label 'Data identity and mapping'\n", + "Entity 'http://edamontology.org/topic_3346' - Label 'Sequence search'\n", + "Entity 'http://edamontology.org/topic_3360' - Label 'Biomarkers'\n", + "Entity 'http://edamontology.org/topic_3361' - Label 'Laboratory techniques'\n", + "Entity 'http://edamontology.org/topic_3365' - Label 'Data architecture, analysis and design'\n", + "Entity 'http://edamontology.org/topic_3366' - Label 'Data integration and warehousing'\n", + "Entity 'http://edamontology.org/topic_3368' - Label 'Biomaterials'\n", + "Entity 'http://edamontology.org/topic_3369' - Label 'Chemical biology'\n", + "Entity 'http://edamontology.org/topic_3370' - Label 'Analytical chemistry'\n", + "Entity 'http://edamontology.org/topic_3371' - Label 'Synthetic chemistry'\n", + "Entity 'http://edamontology.org/topic_3372' - Label 'Software engineering'\n", + "Entity 'http://edamontology.org/topic_3373' - Label 'Drug development'\n", + "Entity 'http://edamontology.org/topic_3374' - Label 'Biotherapeutics'\n", + "Entity 'http://edamontology.org/topic_3375' - Label 'Drug metabolism'\n", + "Entity 'http://edamontology.org/topic_3376' - Label 'Medicines research and development'\n", + "Entity 'http://edamontology.org/topic_3377' - Label 'Safety sciences'\n", + "Entity 'http://edamontology.org/topic_3378' - Label 'Pharmacovigilance'\n", + "Entity 'http://edamontology.org/topic_3379' - Label 'Preclinical and clinical studies'\n", + "Entity 'http://edamontology.org/topic_3382' - Label 'Imaging'\n", + "Entity 'http://edamontology.org/topic_3383' - Label 'Bioimaging'\n", + "Entity 'http://edamontology.org/topic_3384' - Label 'Medical imaging'\n", + "Entity 'http://edamontology.org/topic_3385' - Label 'Light microscopy'\n", + "Entity 'http://edamontology.org/topic_3386' - Label 'Laboratory animal science'\n", + "Entity 'http://edamontology.org/topic_3387' - Label 'Marine biology'\n", + "Entity 'http://edamontology.org/topic_3388' - Label 'Molecular medicine'\n", + "Entity 'http://edamontology.org/topic_3390' - Label 'Nutritional science'\n", + "Entity 'http://edamontology.org/topic_3391' - Label 'Omics'\n", + "Entity 'http://edamontology.org/topic_3393' - Label 'Quality affairs'\n", + "Entity 'http://edamontology.org/topic_3394' - Label 'Regulatory affairs'\n", + "Entity 'http://edamontology.org/topic_3395' - Label 'Regenerative medicine'\n", + "Entity 'http://edamontology.org/topic_3396' - Label 'Systems medicine'\n", + "Entity 'http://edamontology.org/topic_3397' - Label 'Veterinary medicine'\n", + "Entity 'http://edamontology.org/topic_3398' - Label 'Bioengineering'\n", + "Entity 'http://edamontology.org/topic_3399' - Label 'Geriatric medicine'\n", + "Entity 'http://edamontology.org/topic_3400' - Label 'Allergy, clinical immunology and immunotherapeutics'\n", + "Entity 'http://edamontology.org/topic_3401' - Label 'Pain medicine'\n", + "Entity 'http://edamontology.org/topic_3402' - Label 'Anaesthesiology'\n", + "Entity 'http://edamontology.org/topic_3403' - Label 'Critical care medicine'\n", + "Entity 'http://edamontology.org/topic_3404' - Label 'Dermatology'\n", + "Entity 'http://edamontology.org/topic_3405' - Label 'Dentistry'\n", + "Entity 'http://edamontology.org/topic_3406' - Label 'Ear, nose and throat medicine'\n", + "Entity 'http://edamontology.org/topic_3407' - Label 'Endocrinology and metabolism'\n", + "Entity 'http://edamontology.org/topic_3408' - Label 'Haematology'\n", + "Entity 'http://edamontology.org/topic_3409' - Label 'Gastroenterology'\n", + "Entity 'http://edamontology.org/topic_3410' - Label 'Gender medicine'\n", + "Entity 'http://edamontology.org/topic_3411' - Label 'Gynaecology and obstetrics'\n", + "Entity 'http://edamontology.org/topic_3412' - Label 'Hepatic and biliary medicine'\n", + "Entity 'http://edamontology.org/topic_3413' - Label 'Infectious tropical disease'\n", + "Entity 'http://edamontology.org/topic_3414' - Label 'Trauma medicine'\n", + "Entity 'http://edamontology.org/topic_3415' - Label 'Medical toxicology'\n", + "Entity 'http://edamontology.org/topic_3416' - Label 'Musculoskeletal medicine'\n", + "Entity 'http://edamontology.org/topic_3417' - Label 'Ophthalmology'\n", + "Entity 'http://edamontology.org/topic_3418' - Label 'Paediatrics'\n", + "Entity 'http://edamontology.org/topic_3419' - Label 'Psychiatry'\n", + "Entity 'http://edamontology.org/topic_3420' - Label 'Reproductive health'\n", + "Entity 'http://edamontology.org/topic_3421' - Label 'Surgery'\n", + "Entity 'http://edamontology.org/topic_3422' - Label 'Urology and nephrology'\n", + "Entity 'http://edamontology.org/topic_3423' - Label 'Complementary medicine'\n", + "Entity 'http://edamontology.org/topic_3444' - Label 'MRI'\n", + "Entity 'http://edamontology.org/topic_3448' - Label 'Neutron diffraction'\n", + "Entity 'http://edamontology.org/topic_3452' - Label 'Tomography'\n", + "Entity 'http://edamontology.org/topic_3473' - Label 'Data mining'\n", + "Entity 'http://edamontology.org/topic_3474' - Label 'Machine learning'\n", + "Entity 'http://edamontology.org/topic_3489' - Label 'Database management'\n", + "Entity 'http://edamontology.org/topic_3500' - Label 'Zoology'\n", + "Entity 'http://edamontology.org/topic_3510' - Label 'Protein sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_3511' - Label 'Nucleic acid sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_3512' - Label 'Gene transcripts'\n", + "Entity 'http://edamontology.org/topic_3514' - Label 'Protein-ligand interactions'\n", + "Entity 'http://edamontology.org/topic_3515' - Label 'Protein-drug interactions'\n", + "Entity 'http://edamontology.org/topic_3516' - Label 'Genotyping experiment'\n", + "Entity 'http://edamontology.org/topic_3517' - Label 'GWAS study'\n", + "Entity 'http://edamontology.org/topic_3518' - Label 'Microarray experiment'\n", + "Entity 'http://edamontology.org/topic_3519' - Label 'PCR experiment'\n", + "Entity 'http://edamontology.org/topic_3520' - Label 'Proteomics experiment'\n", + "Entity 'http://edamontology.org/topic_3521' - Label '2D PAGE experiment'\n", + "Entity 'http://edamontology.org/topic_3522' - Label 'Northern blot experiment'\n", + "Entity 'http://edamontology.org/topic_3523' - Label 'RNAi experiment'\n", + "Entity 'http://edamontology.org/topic_3524' - Label 'Simulation experiment'\n", + "Entity 'http://edamontology.org/topic_3525' - Label 'Protein-nucleic acid interactions'\n", + "Entity 'http://edamontology.org/topic_3526' - Label 'Protein-protein interactions'\n", + "Entity 'http://edamontology.org/topic_3527' - Label 'Cellular process pathways'\n", + "Entity 'http://edamontology.org/topic_3528' - Label 'Disease pathways'\n", + "Entity 'http://edamontology.org/topic_3529' - Label 'Environmental information processing pathways'\n", + "Entity 'http://edamontology.org/topic_3530' - Label 'Genetic information processing pathways'\n", + "Entity 'http://edamontology.org/topic_3531' - Label 'Protein super-secondary structure'\n", + "Entity 'http://edamontology.org/topic_3533' - Label 'Protein active sites'\n", + "Entity 'http://edamontology.org/topic_3534' - Label 'Protein binding sites'\n", + "Entity 'http://edamontology.org/topic_3535' - Label 'Protein-nucleic acid binding sites'\n", + "Entity 'http://edamontology.org/topic_3536' - Label 'Protein cleavage sites'\n", + "Entity 'http://edamontology.org/topic_3537' - Label 'Protein chemical modifications'\n", + "Entity 'http://edamontology.org/topic_3538' - Label 'Protein disordered structure'\n", + "Entity 'http://edamontology.org/topic_3539' - Label 'Protein domains'\n", + "Entity 'http://edamontology.org/topic_3540' - Label 'Protein key folding sites'\n", + "Entity 'http://edamontology.org/topic_3541' - Label 'Protein post-translational modifications'\n", + "Entity 'http://edamontology.org/topic_3542' - Label 'Protein secondary structure'\n", + "Entity 'http://edamontology.org/topic_3543' - Label 'Protein sequence repeats'\n", + "Entity 'http://edamontology.org/topic_3544' - Label 'Protein signal peptides'\n", + "Entity 'http://edamontology.org/topic_3569' - Label 'Applied mathematics'\n", + "Entity 'http://edamontology.org/topic_3570' - Label 'Pure mathematics'\n", + "Entity 'http://edamontology.org/topic_3571' - Label 'Data governance'\n", + "Entity 'http://edamontology.org/topic_3572' - Label 'Data quality management'\n", + "Entity 'http://edamontology.org/topic_3573' - Label 'Freshwater biology'\n", + "Entity 'http://edamontology.org/topic_3574' - Label 'Human genetics'\n", + "Entity 'http://edamontology.org/topic_3575' - Label 'Tropical medicine'\n", + "Entity 'http://edamontology.org/topic_3576' - Label 'Medical biotechnology'\n", + "Entity 'http://edamontology.org/topic_3577' - Label 'Personalised medicine'\n", + "Entity 'http://edamontology.org/topic_3656' - Label 'Immunoprecipitation experiment'\n", + "Entity 'http://edamontology.org/topic_3673' - Label 'Whole genome sequencing'\n", + "Entity 'http://edamontology.org/topic_3674' - Label 'Methylated DNA immunoprecipitation'\n", + "Entity 'http://edamontology.org/topic_3676' - Label 'Exome sequencing'\n", + "Entity 'http://edamontology.org/topic_3678' - Label 'Experimental design and studies'\n", + "Entity 'http://edamontology.org/topic_3679' - Label 'Animal study'\n", + "Entity 'http://edamontology.org/topic_3697' - Label 'Microbial ecology'\n", + "Entity 'http://edamontology.org/topic_3794' - Label 'RNA immunoprecipitation'\n", + "Entity 'http://edamontology.org/topic_3796' - Label 'Population genomics'\n", + "Entity 'http://edamontology.org/topic_3810' - Label 'Agricultural science'\n", + "Entity 'http://edamontology.org/topic_3837' - Label 'Metagenomic sequencing'\n", + "Entity 'http://edamontology.org/topic_3855' - Label 'Environmental sciences'\n", + "Entity 'http://edamontology.org/topic_3892' - Label 'Biomolecular simulation'\n", + "Entity 'http://edamontology.org/topic_3895' - Label 'Synthetic biology'\n", + "Entity 'http://edamontology.org/topic_3912' - Label 'Genetic engineering'\n", + "Entity 'http://edamontology.org/topic_3922' - Label 'Proteogenomics'\n", + "Entity 'http://edamontology.org/topic_3923' - Label 'Genome resequencing'\n", + "Entity 'http://edamontology.org/topic_3930' - Label 'Immunogenetics'\n", + "Entity 'http://edamontology.org/topic_3931' - Label 'Chemometrics'\n", + "Entity 'http://edamontology.org/topic_3934' - Label 'Cytometry'\n", + "Entity 'http://edamontology.org/topic_3939' - Label 'Metabolic engineering'\n", + "Entity 'http://edamontology.org/topic_3940' - Label 'Chromosome conformation capture'\n", + "Entity 'http://edamontology.org/topic_3941' - Label 'Metatranscriptomics'\n", + "Entity 'http://edamontology.org/topic_3943' - Label 'Paleogenomics'\n", + "Entity 'http://edamontology.org/topic_3944' - Label 'Cladistics'\n", + "Entity 'http://edamontology.org/topic_3945' - Label 'Molecular evolution'\n", + "Entity 'http://edamontology.org/topic_3948' - Label 'Immunoinformatics'\n", + "Entity 'http://edamontology.org/topic_3954' - Label 'Echography'\n", + "Entity 'http://edamontology.org/topic_3955' - Label 'Fluxomics'\n", + "Entity 'http://edamontology.org/topic_3957' - Label 'Protein interaction experiment'\n", + "Entity 'http://edamontology.org/topic_3958' - Label 'Copy number variation'\n", + "Entity 'http://edamontology.org/topic_3959' - Label 'Cytogenetics'\n", + "Entity 'http://edamontology.org/topic_3966' - Label 'Vaccinology'\n", + "Entity 'http://edamontology.org/topic_3967' - Label 'Immunomics'\n", + "Entity 'http://edamontology.org/topic_3974' - Label 'Epistasis'\n", + "Entity 'http://edamontology.org/topic_4010' - Label 'Open science'\n", + "Entity 'http://edamontology.org/topic_4011' - Label 'Data rescue'\n", + "Entity 'http://edamontology.org/topic_4012' - Label 'FAIR data'\n", + "Entity 'http://edamontology.org/topic_4013' - Label 'Antimicrobial Resistance'\n", + "Entity 'http://edamontology.org/topic_4014' - Label 'Electroencephalography'\n", + "Entity 'http://edamontology.org/topic_4016' - Label 'Electrocardiography'\n", + "Entity 'http://edamontology.org/topic_4017' - Label 'Cryogenic electron microscopy'\n", + "Entity 'http://edamontology.org/topic_4019' - Label 'Biosciences'\n", + "Entity 'http://edamontology.org/topic_4020' - Label 'Carbon cycle'\n", + "Entity 'http://edamontology.org/topic_4021' - Label 'Multiomics'\n", + "Entity 'http://edamontology.org/topic_4027' - Label 'Ribosome Profiling'\n", + "Entity 'http://edamontology.org/topic_4028' - Label 'Single-Cell Sequencing'\n", + "Entity 'http://edamontology.org/topic_4029' - Label 'Acoustics'\n", + "Entity 'http://edamontology.org/topic_4030' - Label 'Microfluidics'\n", + "Entity 'http://edamontology.org/topic_4037' - Label 'Genomic imprinting'\n", + "Entity 'http://edamontology.org/topic_4038' - Label 'Metabarcoding'\n" + ] + } + ], + "source": [ + "query=\"\"\"\n", + "PREFIX edam:\n", + "\n", + "SELECT ?entity ?property ?value ?label ?id WHERE {\n", + " \n", + " VALUES ?property { edam:next_id }\n", + " #retrieve the last ID\n", + " ?property ?value .\n", + " \n", + " #match all IDs\n", + " ?entity rdf:type owl:Class .\n", + " FILTER ( ?entity != ) .\n", + "\n", + " ?entity rdfs:label ?label . \n", + " BIND(strafter(str(?entity), \"_\") AS ?id) .\n", + "} \n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:28:05.062069Z", + "start_time": "2024-02-13T17:28:04.747090Z" + } + }, + "execution_count": 32 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Entity 'N135c4b5b1ace416c880ccdef24bdefe6' - Label 'None'\n", + "Entity 'Nc0796c735a0249f3a51f0e3cb8920cb4' - Label 'None'\n", + "Entity 'http://edamontology.org/data_0005' - Label 'Resource type'\n", + "Entity 'http://edamontology.org/data_0006' - Label 'Data'\n", + "Entity 'http://edamontology.org/data_0007' - Label 'Tool'\n", + "Entity 'http://edamontology.org/data_0581' - Label 'Database'\n", + "Entity 'http://edamontology.org/data_0582' - Label 'Ontology'\n", + "Entity 'http://edamontology.org/data_0583' - Label 'Directory metadata'\n", + "Entity 'http://edamontology.org/data_0831' - Label 'MeSH vocabulary'\n", + "Entity 'http://edamontology.org/data_0832' - Label 'HGNC vocabulary'\n", + "Entity 'http://edamontology.org/data_0835' - Label 'UMLS vocabulary'\n", + "Entity 'http://edamontology.org/data_0842' - Label 'Identifier'\n", + "Entity 'http://edamontology.org/data_0843' - Label 'Database entry'\n", + "Entity 'http://edamontology.org/data_0844' - Label 'Molecular mass'\n", + "Entity 'http://edamontology.org/data_0845' - Label 'Molecular charge'\n", + "Entity 'http://edamontology.org/data_0846' - Label 'Chemical formula'\n", + "Entity 'http://edamontology.org/data_0847' - Label 'QSAR descriptor'\n", + "Entity 'http://edamontology.org/data_0848' - Label 'Raw sequence'\n", + "Entity 'http://edamontology.org/data_0849' - Label 'Sequence record'\n", + "Entity 'http://edamontology.org/data_0850' - Label 'Sequence set'\n", + "Entity 'http://edamontology.org/data_0851' - Label 'Sequence mask character'\n", + "Entity 'http://edamontology.org/data_0852' - Label 'Sequence mask type'\n", + "Entity 'http://edamontology.org/data_0853' - Label 'DNA sense specification'\n", + "Entity 'http://edamontology.org/data_0854' - Label 'Sequence length specification'\n", + "Entity 'http://edamontology.org/data_0855' - Label 'Sequence metadata'\n", + "Entity 'http://edamontology.org/data_0856' - Label 'Sequence feature source'\n", + "Entity 'http://edamontology.org/data_0857' - Label 'Sequence search results'\n", + "Entity 'http://edamontology.org/data_0858' - Label 'Sequence signature matches'\n", + "Entity 'http://edamontology.org/data_0859' - Label 'Sequence signature model'\n", + "Entity 'http://edamontology.org/data_0860' - Label 'Sequence signature data'\n", + "Entity 'http://edamontology.org/data_0861' - Label 'Sequence alignment (words)'\n", + "Entity 'http://edamontology.org/data_0862' - Label 'Dotplot'\n", + "Entity 'http://edamontology.org/data_0863' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/data_0864' - Label 'Sequence alignment parameter'\n", + "Entity 'http://edamontology.org/data_0865' - Label 'Sequence similarity score'\n", + "Entity 'http://edamontology.org/data_0866' - Label 'Sequence alignment metadata'\n", + "Entity 'http://edamontology.org/data_0867' - Label 'Sequence alignment report'\n", + "Entity 'http://edamontology.org/data_0868' - Label 'Profile-profile alignment'\n", + "Entity 'http://edamontology.org/data_0869' - Label 'Sequence-profile alignment'\n", + "Entity 'http://edamontology.org/data_0870' - Label 'Sequence distance matrix'\n", + "Entity 'http://edamontology.org/data_0871' - Label 'Phylogenetic character data'\n", + "Entity 'http://edamontology.org/data_0872' - Label 'Phylogenetic tree'\n", + "Entity 'http://edamontology.org/data_0874' - Label 'Comparison matrix'\n", + "Entity 'http://edamontology.org/data_0875' - Label 'Protein topology'\n", + "Entity 'http://edamontology.org/data_0876' - Label 'Protein features report (secondary structure)'\n", + "Entity 'http://edamontology.org/data_0877' - Label 'Protein features report (super-secondary)'\n", + "Entity 'http://edamontology.org/data_0878' - Label 'Protein secondary structure alignment'\n", + "Entity 'http://edamontology.org/data_0879' - Label 'Secondary structure alignment metadata (protein)'\n", + "Entity 'http://edamontology.org/data_0880' - Label 'RNA secondary structure'\n", + "Entity 'http://edamontology.org/data_0881' - Label 'RNA secondary structure alignment'\n", + "Entity 'http://edamontology.org/data_0882' - Label 'Secondary structure alignment metadata (RNA)'\n", + "Entity 'http://edamontology.org/data_0883' - Label 'Structure'\n", + "Entity 'http://edamontology.org/data_0884' - Label 'Tertiary structure record'\n", + "Entity 'http://edamontology.org/data_0885' - Label 'Structure database search results'\n", + "Entity 'http://edamontology.org/data_0886' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/data_0887' - Label 'Structure alignment report'\n", + "Entity 'http://edamontology.org/data_0888' - Label 'Structure similarity score'\n", + "Entity 'http://edamontology.org/data_0889' - Label 'Structural profile'\n", + "Entity 'http://edamontology.org/data_0890' - Label 'Structural (3D) profile alignment'\n", + "Entity 'http://edamontology.org/data_0891' - Label 'Sequence-3D profile alignment'\n", + "Entity 'http://edamontology.org/data_0892' - Label 'Protein sequence-structure scoring matrix'\n", + "Entity 'http://edamontology.org/data_0893' - Label 'Sequence-structure alignment'\n", + "Entity 'http://edamontology.org/data_0894' - Label 'Amino acid annotation'\n", + "Entity 'http://edamontology.org/data_0895' - Label 'Peptide annotation'\n", + "Entity 'http://edamontology.org/data_0896' - Label 'Protein report'\n", + "Entity 'http://edamontology.org/data_0897' - Label 'Protein property'\n", + "Entity 'http://edamontology.org/data_0899' - Label 'Protein structural motifs and surfaces'\n", + "Entity 'http://edamontology.org/data_0900' - Label 'Protein domain classification'\n", + "Entity 'http://edamontology.org/data_0901' - Label 'Protein features report (domains)'\n", + "Entity 'http://edamontology.org/data_0902' - Label 'Protein architecture report'\n", + "Entity 'http://edamontology.org/data_0903' - Label 'Protein folding report'\n", + "Entity 'http://edamontology.org/data_0904' - Label 'Protein features (mutation)'\n", + "Entity 'http://edamontology.org/data_0905' - Label 'Protein interaction raw data'\n", + "Entity 'http://edamontology.org/data_0906' - Label 'Protein interaction data'\n", + "Entity 'http://edamontology.org/data_0907' - Label 'Protein family report'\n", + "Entity 'http://edamontology.org/data_0909' - Label 'Vmax'\n", + "Entity 'http://edamontology.org/data_0910' - Label 'Km'\n", + "Entity 'http://edamontology.org/data_0911' - Label 'Nucleotide base annotation'\n", + "Entity 'http://edamontology.org/data_0912' - Label 'Nucleic acid property'\n", + "Entity 'http://edamontology.org/data_0914' - Label 'Codon usage data'\n", + "Entity 'http://edamontology.org/data_0916' - Label 'Gene report'\n", + "Entity 'http://edamontology.org/data_0917' - Label 'Gene classification'\n", + "Entity 'http://edamontology.org/data_0918' - Label 'DNA variation'\n", + "Entity 'http://edamontology.org/data_0919' - Label 'Chromosome report'\n", + "Entity 'http://edamontology.org/data_0920' - Label 'Genotype/phenotype report'\n", + "Entity 'http://edamontology.org/data_0923' - Label 'PCR experiment report'\n", + "Entity 'http://edamontology.org/data_0924' - Label 'Sequence trace'\n", + "Entity 'http://edamontology.org/data_0925' - Label 'Sequence assembly'\n", + "Entity 'http://edamontology.org/data_0926' - Label 'RH scores'\n", + "Entity 'http://edamontology.org/data_0927' - Label 'Genetic linkage report'\n", + "Entity 'http://edamontology.org/data_0928' - Label 'Gene expression profile'\n", + "Entity 'http://edamontology.org/data_0931' - Label 'Microarray experiment report'\n", + "Entity 'http://edamontology.org/data_0932' - Label 'Oligonucleotide probe data'\n", + "Entity 'http://edamontology.org/data_0933' - Label 'SAGE experimental data'\n", + "Entity 'http://edamontology.org/data_0934' - Label 'MPSS experimental data'\n", + "Entity 'http://edamontology.org/data_0935' - Label 'SBS experimental data'\n", + "Entity 'http://edamontology.org/data_0936' - Label 'Sequence tag profile (with gene assignment)'\n", + "Entity 'http://edamontology.org/data_0937' - Label 'Electron density map'\n", + "Entity 'http://edamontology.org/data_0938' - Label 'Raw NMR data'\n", + "Entity 'http://edamontology.org/data_0939' - Label 'CD spectra'\n", + "Entity 'http://edamontology.org/data_0940' - Label 'Volume map'\n", + "Entity 'http://edamontology.org/data_0941' - Label 'Electron microscopy model'\n", + "Entity 'http://edamontology.org/data_0942' - Label '2D PAGE image'\n", + "Entity 'http://edamontology.org/data_0943' - Label 'Mass spectrum'\n", + "Entity 'http://edamontology.org/data_0944' - Label 'Peptide mass fingerprint'\n", + "Entity 'http://edamontology.org/data_0945' - Label 'Peptide identification'\n", + "Entity 'http://edamontology.org/data_0946' - Label 'Pathway or network annotation'\n", + "Entity 'http://edamontology.org/data_0947' - Label 'Biological pathway map'\n", + "Entity 'http://edamontology.org/data_0948' - Label 'Data resource definition'\n", + "Entity 'http://edamontology.org/data_0949' - Label 'Workflow metadata'\n", + "Entity 'http://edamontology.org/data_0950' - Label 'Mathematical model'\n", + "Entity 'http://edamontology.org/data_0951' - Label 'Statistical estimate score'\n", + "Entity 'http://edamontology.org/data_0952' - Label 'EMBOSS database resource definition'\n", + "Entity 'http://edamontology.org/data_0953' - Label 'Version information'\n", + "Entity 'http://edamontology.org/data_0954' - Label 'Database cross-mapping'\n", + "Entity 'http://edamontology.org/data_0955' - Label 'Data index'\n", + "Entity 'http://edamontology.org/data_0956' - Label 'Data index report'\n", + "Entity 'http://edamontology.org/data_0957' - Label 'Database metadata'\n", + "Entity 'http://edamontology.org/data_0958' - Label 'Tool metadata'\n", + "Entity 'http://edamontology.org/data_0959' - Label 'Job metadata'\n", + "Entity 'http://edamontology.org/data_0960' - Label 'User metadata'\n", + "Entity 'http://edamontology.org/data_0962' - Label 'Small molecule report'\n", + "Entity 'http://edamontology.org/data_0963' - Label 'Cell line report'\n", + "Entity 'http://edamontology.org/data_0964' - Label 'Scent annotation'\n", + "Entity 'http://edamontology.org/data_0966' - Label 'Ontology term'\n", + "Entity 'http://edamontology.org/data_0967' - Label 'Ontology concept data'\n", + "Entity 'http://edamontology.org/data_0968' - Label 'Keyword'\n", + "Entity 'http://edamontology.org/data_0970' - Label 'Citation'\n", + "Entity 'http://edamontology.org/data_0971' - Label 'Article'\n", + "Entity 'http://edamontology.org/data_0972' - Label 'Text mining report'\n", + "Entity 'http://edamontology.org/data_0974' - Label 'Entity identifier'\n", + "Entity 'http://edamontology.org/data_0975' - Label 'Data resource identifier'\n", + "Entity 'http://edamontology.org/data_0976' - Label 'Identifier (by type of entity)'\n", + "Entity 'http://edamontology.org/data_0977' - Label 'Tool identifier'\n", + "Entity 'http://edamontology.org/data_0978' - Label 'Discrete entity identifier'\n", + "Entity 'http://edamontology.org/data_0979' - Label 'Entity feature identifier'\n", + "Entity 'http://edamontology.org/data_0980' - Label 'Entity collection identifier'\n", + "Entity 'http://edamontology.org/data_0981' - Label 'Phenomenon identifier'\n", + "Entity 'http://edamontology.org/data_0982' - Label 'Molecule identifier'\n", + "Entity 'http://edamontology.org/data_0983' - Label 'Atom ID'\n", + "Entity 'http://edamontology.org/data_0984' - Label 'Molecule name'\n", + "Entity 'http://edamontology.org/data_0985' - Label 'Molecule type'\n", + "Entity 'http://edamontology.org/data_0986' - Label 'Chemical identifier'\n", + "Entity 'http://edamontology.org/data_0987' - Label 'Chromosome name'\n", + "Entity 'http://edamontology.org/data_0988' - Label 'Peptide identifier'\n", + "Entity 'http://edamontology.org/data_0989' - Label 'Protein identifier'\n", + "Entity 'http://edamontology.org/data_0990' - Label 'Compound name'\n", + "Entity 'http://edamontology.org/data_0991' - Label 'Chemical registry number'\n", + "Entity 'http://edamontology.org/data_0992' - Label 'Ligand identifier'\n", + "Entity 'http://edamontology.org/data_0993' - Label 'Drug identifier'\n", + "Entity 'http://edamontology.org/data_0994' - Label 'Amino acid identifier'\n", + "Entity 'http://edamontology.org/data_0995' - Label 'Nucleotide identifier'\n", + "Entity 'http://edamontology.org/data_0996' - Label 'Monosaccharide identifier'\n", + "Entity 'http://edamontology.org/data_0997' - Label 'Chemical name (ChEBI)'\n", + "Entity 'http://edamontology.org/data_0998' - Label 'Chemical name (IUPAC)'\n", + "Entity 'http://edamontology.org/data_0999' - Label 'Chemical name (INN)'\n", + "Entity 'http://edamontology.org/data_1000' - Label 'Chemical name (brand)'\n", + "Entity 'http://edamontology.org/data_1001' - Label 'Chemical name (synonymous)'\n", + "Entity 'http://edamontology.org/data_1002' - Label 'CAS number'\n", + "Entity 'http://edamontology.org/data_1003' - Label 'Chemical registry number (Beilstein)'\n", + "Entity 'http://edamontology.org/data_1004' - Label 'Chemical registry number (Gmelin)'\n", + "Entity 'http://edamontology.org/data_1005' - Label 'HET group name'\n", + "Entity 'http://edamontology.org/data_1006' - Label 'Amino acid name'\n", + "Entity 'http://edamontology.org/data_1007' - Label 'Nucleotide code'\n", + "Entity 'http://edamontology.org/data_1008' - Label 'Polypeptide chain ID'\n", + "Entity 'http://edamontology.org/data_1009' - Label 'Protein name'\n", + "Entity 'http://edamontology.org/data_1010' - Label 'Enzyme identifier'\n", + "Entity 'http://edamontology.org/data_1011' - Label 'EC number'\n", + "Entity 'http://edamontology.org/data_1012' - Label 'Enzyme name'\n", + "Entity 'http://edamontology.org/data_1013' - Label 'Restriction enzyme name'\n", + "Entity 'http://edamontology.org/data_1014' - Label 'Sequence position specification'\n", + "Entity 'http://edamontology.org/data_1015' - Label 'Sequence feature ID'\n", + "Entity 'http://edamontology.org/data_1016' - Label 'Sequence position'\n", + "Entity 'http://edamontology.org/data_1017' - Label 'Sequence range'\n", + "Entity 'http://edamontology.org/data_1018' - Label 'Nucleic acid feature identifier'\n", + "Entity 'http://edamontology.org/data_1019' - Label 'Protein feature identifier'\n", + "Entity 'http://edamontology.org/data_1020' - Label 'Sequence feature key'\n", + "Entity 'http://edamontology.org/data_1021' - Label 'Sequence feature qualifier'\n", + "Entity 'http://edamontology.org/data_1022' - Label 'Sequence feature label'\n", + "Entity 'http://edamontology.org/data_1023' - Label 'EMBOSS Uniform Feature Object'\n", + "Entity 'http://edamontology.org/data_1024' - Label 'Codon name'\n", + "Entity 'http://edamontology.org/data_1025' - Label 'Gene identifier'\n", + "Entity 'http://edamontology.org/data_1026' - Label 'Gene symbol'\n", + "Entity 'http://edamontology.org/data_1027' - Label 'Gene ID (NCBI)'\n", + "Entity 'http://edamontology.org/data_1028' - Label 'Gene identifier (NCBI RefSeq)'\n", + "Entity 'http://edamontology.org/data_1029' - Label 'Gene identifier (NCBI UniGene)'\n", + "Entity 'http://edamontology.org/data_1030' - Label 'Gene identifier (Entrez)'\n", + "Entity 'http://edamontology.org/data_1031' - Label 'Gene ID (CGD)'\n", + "Entity 'http://edamontology.org/data_1032' - Label 'Gene ID (DictyBase)'\n", + "Entity 'http://edamontology.org/data_1033' - Label 'Ensembl gene ID'\n", + "Entity 'http://edamontology.org/data_1034' - Label 'Gene ID (SGD)'\n", + "Entity 'http://edamontology.org/data_1035' - Label 'Gene ID (GeneDB)'\n", + "Entity 'http://edamontology.org/data_1036' - Label 'TIGR identifier'\n", + "Entity 'http://edamontology.org/data_1037' - Label 'TAIR accession (gene)'\n", + "Entity 'http://edamontology.org/data_1038' - Label 'Protein domain ID'\n", + "Entity 'http://edamontology.org/data_1039' - Label 'SCOP domain identifier'\n", + "Entity 'http://edamontology.org/data_1040' - Label 'CATH domain ID'\n", + "Entity 'http://edamontology.org/data_1041' - Label 'SCOP concise classification string (sccs)'\n", + "Entity 'http://edamontology.org/data_1042' - Label 'SCOP sunid'\n", + "Entity 'http://edamontology.org/data_1043' - Label 'CATH node ID'\n", + "Entity 'http://edamontology.org/data_1044' - Label 'Kingdom name'\n", + "Entity 'http://edamontology.org/data_1045' - Label 'Species name'\n", + "Entity 'http://edamontology.org/data_1046' - Label 'Strain name'\n", + "Entity 'http://edamontology.org/data_1047' - Label 'URI'\n", + "Entity 'http://edamontology.org/data_1048' - Label 'Database ID'\n", + "Entity 'http://edamontology.org/data_1049' - Label 'Directory name'\n", + "Entity 'http://edamontology.org/data_1050' - Label 'File name'\n", + "Entity 'http://edamontology.org/data_1051' - Label 'Ontology name'\n", + "Entity 'http://edamontology.org/data_1052' - Label 'URL'\n", + "Entity 'http://edamontology.org/data_1053' - Label 'URN'\n", + "Entity 'http://edamontology.org/data_1055' - Label 'LSID'\n", + "Entity 'http://edamontology.org/data_1056' - Label 'Database name'\n", + "Entity 'http://edamontology.org/data_1057' - Label 'Sequence database name'\n", + "Entity 'http://edamontology.org/data_1058' - Label 'Enumerated file name'\n", + "Entity 'http://edamontology.org/data_1059' - Label 'File name extension'\n", + "Entity 'http://edamontology.org/data_1060' - Label 'File base name'\n", + "Entity 'http://edamontology.org/data_1061' - Label 'QSAR descriptor name'\n", + "Entity 'http://edamontology.org/data_1062' - Label 'Database entry identifier'\n", + "Entity 'http://edamontology.org/data_1063' - Label 'Sequence identifier'\n", + "Entity 'http://edamontology.org/data_1064' - Label 'Sequence set ID'\n", + "Entity 'http://edamontology.org/data_1065' - Label 'Sequence signature identifier'\n", + "Entity 'http://edamontology.org/data_1066' - Label 'Sequence alignment ID'\n", + "Entity 'http://edamontology.org/data_1067' - Label 'Phylogenetic distance matrix identifier'\n", + "Entity 'http://edamontology.org/data_1068' - Label 'Phylogenetic tree ID'\n", + "Entity 'http://edamontology.org/data_1069' - Label 'Comparison matrix identifier'\n", + "Entity 'http://edamontology.org/data_1070' - Label 'Structure ID'\n", + "Entity 'http://edamontology.org/data_1071' - Label 'Structural (3D) profile ID'\n", + "Entity 'http://edamontology.org/data_1072' - Label 'Structure alignment ID'\n", + "Entity 'http://edamontology.org/data_1073' - Label 'Amino acid index ID'\n", + "Entity 'http://edamontology.org/data_1074' - Label 'Protein interaction ID'\n", + "Entity 'http://edamontology.org/data_1075' - Label 'Protein family identifier'\n", + "Entity 'http://edamontology.org/data_1076' - Label 'Codon usage table name'\n", + "Entity 'http://edamontology.org/data_1077' - Label 'Transcription factor identifier'\n", + "Entity 'http://edamontology.org/data_1078' - Label 'Experiment annotation ID'\n", + "Entity 'http://edamontology.org/data_1079' - Label 'Electron microscopy model ID'\n", + "Entity 'http://edamontology.org/data_1080' - Label 'Gene expression report ID'\n", + "Entity 'http://edamontology.org/data_1081' - Label 'Genotype and phenotype annotation ID'\n", + "Entity 'http://edamontology.org/data_1082' - Label 'Pathway or network identifier'\n", + "Entity 'http://edamontology.org/data_1083' - Label 'Workflow ID'\n", + "Entity 'http://edamontology.org/data_1084' - Label 'Data resource definition ID'\n", + "Entity 'http://edamontology.org/data_1085' - Label 'Biological model ID'\n", + "Entity 'http://edamontology.org/data_1086' - Label 'Compound identifier'\n", + "Entity 'http://edamontology.org/data_1087' - Label 'Ontology concept ID'\n", + "Entity 'http://edamontology.org/data_1088' - Label 'Article ID'\n", + "Entity 'http://edamontology.org/data_1089' - Label 'FlyBase ID'\n", + "Entity 'http://edamontology.org/data_1091' - Label 'WormBase name'\n", + "Entity 'http://edamontology.org/data_1092' - Label 'WormBase class'\n", + "Entity 'http://edamontology.org/data_1093' - Label 'Sequence accession'\n", + "Entity 'http://edamontology.org/data_1094' - Label 'Sequence type'\n", + "Entity 'http://edamontology.org/data_1095' - Label 'EMBOSS Uniform Sequence Address'\n", + "Entity 'http://edamontology.org/data_1096' - Label 'Sequence accession (protein)'\n", + "Entity 'http://edamontology.org/data_1097' - Label 'Sequence accession (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1098' - Label 'RefSeq accession'\n", + "Entity 'http://edamontology.org/data_1099' - Label 'UniProt accession (extended)'\n", + "Entity 'http://edamontology.org/data_1100' - Label 'PIR identifier'\n", + "Entity 'http://edamontology.org/data_1101' - Label 'TREMBL accession'\n", + "Entity 'http://edamontology.org/data_1102' - Label 'Gramene primary identifier'\n", + "Entity 'http://edamontology.org/data_1103' - Label 'EMBL/GenBank/DDBJ ID'\n", + "Entity 'http://edamontology.org/data_1104' - Label 'Sequence cluster ID (UniGene)'\n", + "Entity 'http://edamontology.org/data_1105' - Label 'dbEST accession'\n", + "Entity 'http://edamontology.org/data_1106' - Label 'dbSNP ID'\n", + "Entity 'http://edamontology.org/data_1110' - Label 'EMBOSS sequence type'\n", + "Entity 'http://edamontology.org/data_1111' - Label 'EMBOSS listfile'\n", + "Entity 'http://edamontology.org/data_1112' - Label 'Sequence cluster ID'\n", + "Entity 'http://edamontology.org/data_1113' - Label 'Sequence cluster ID (COG)'\n", + "Entity 'http://edamontology.org/data_1114' - Label 'Sequence motif identifier'\n", + "Entity 'http://edamontology.org/data_1115' - Label 'Sequence profile ID'\n", + "Entity 'http://edamontology.org/data_1116' - Label 'ELM ID'\n", + "Entity 'http://edamontology.org/data_1117' - Label 'Prosite accession number'\n", + "Entity 'http://edamontology.org/data_1118' - Label 'HMMER hidden Markov model ID'\n", + "Entity 'http://edamontology.org/data_1119' - Label 'JASPAR profile ID'\n", + "Entity 'http://edamontology.org/data_1120' - Label 'Sequence alignment type'\n", + "Entity 'http://edamontology.org/data_1121' - Label 'BLAST sequence alignment type'\n", + "Entity 'http://edamontology.org/data_1122' - Label 'Phylogenetic tree type'\n", + "Entity 'http://edamontology.org/data_1123' - Label 'TreeBASE study accession number'\n", + "Entity 'http://edamontology.org/data_1124' - Label 'TreeFam accession number'\n", + "Entity 'http://edamontology.org/data_1125' - Label 'Comparison matrix type'\n", + "Entity 'http://edamontology.org/data_1126' - Label 'Comparison matrix name'\n", + "Entity 'http://edamontology.org/data_1127' - Label 'PDB ID'\n", + "Entity 'http://edamontology.org/data_1128' - Label 'AAindex ID'\n", + "Entity 'http://edamontology.org/data_1129' - Label 'BIND accession number'\n", + "Entity 'http://edamontology.org/data_1130' - Label 'IntAct accession number'\n", + "Entity 'http://edamontology.org/data_1131' - Label 'Protein family name'\n", + "Entity 'http://edamontology.org/data_1132' - Label 'InterPro entry name'\n", + "Entity 'http://edamontology.org/data_1133' - Label 'InterPro accession'\n", + "Entity 'http://edamontology.org/data_1134' - Label 'InterPro secondary accession'\n", + "Entity 'http://edamontology.org/data_1135' - Label 'Gene3D ID'\n", + "Entity 'http://edamontology.org/data_1136' - Label 'PIRSF ID'\n", + "Entity 'http://edamontology.org/data_1137' - Label 'PRINTS code'\n", + "Entity 'http://edamontology.org/data_1138' - Label 'Pfam accession number'\n", + "Entity 'http://edamontology.org/data_1139' - Label 'SMART accession number'\n", + "Entity 'http://edamontology.org/data_1140' - Label 'Superfamily hidden Markov model number'\n", + "Entity 'http://edamontology.org/data_1141' - Label 'TIGRFam ID'\n", + "Entity 'http://edamontology.org/data_1142' - Label 'ProDom accession number'\n", + "Entity 'http://edamontology.org/data_1143' - Label 'TRANSFAC accession number'\n", + "Entity 'http://edamontology.org/data_1144' - Label 'ArrayExpress accession number'\n", + "Entity 'http://edamontology.org/data_1145' - Label 'PRIDE experiment accession number'\n", + "Entity 'http://edamontology.org/data_1146' - Label 'EMDB ID'\n", + "Entity 'http://edamontology.org/data_1147' - Label 'GEO accession number'\n", + "Entity 'http://edamontology.org/data_1148' - Label 'GermOnline ID'\n", + "Entity 'http://edamontology.org/data_1149' - Label 'EMAGE ID'\n", + "Entity 'http://edamontology.org/data_1150' - Label 'Disease ID'\n", + "Entity 'http://edamontology.org/data_1151' - Label 'HGVbase ID'\n", + "Entity 'http://edamontology.org/data_1152' - Label 'HIVDB identifier'\n", + "Entity 'http://edamontology.org/data_1153' - Label 'OMIM ID'\n", + "Entity 'http://edamontology.org/data_1154' - Label 'KEGG object identifier'\n", + "Entity 'http://edamontology.org/data_1155' - Label 'Pathway ID (reactome)'\n", + "Entity 'http://edamontology.org/data_1156' - Label 'Pathway ID (aMAZE)'\n", + "Entity 'http://edamontology.org/data_1157' - Label 'Pathway ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_1158' - Label 'Pathway ID (INOH)'\n", + "Entity 'http://edamontology.org/data_1159' - Label 'Pathway ID (PATIKA)'\n", + "Entity 'http://edamontology.org/data_1160' - Label 'Pathway ID (CPDB)'\n", + "Entity 'http://edamontology.org/data_1161' - Label 'Pathway ID (Panther)'\n", + "Entity 'http://edamontology.org/data_1162' - Label 'MIRIAM identifier'\n", + "Entity 'http://edamontology.org/data_1163' - Label 'MIRIAM data type name'\n", + "Entity 'http://edamontology.org/data_1164' - Label 'MIRIAM URI'\n", + "Entity 'http://edamontology.org/data_1165' - Label 'MIRIAM data type primary name'\n", + "Entity 'http://edamontology.org/data_1166' - Label 'MIRIAM data type synonymous name'\n", + "Entity 'http://edamontology.org/data_1167' - Label 'Taverna workflow ID'\n", + "Entity 'http://edamontology.org/data_1170' - Label 'Biological model name'\n", + "Entity 'http://edamontology.org/data_1171' - Label 'BioModel ID'\n", + "Entity 'http://edamontology.org/data_1172' - Label 'PubChem CID'\n", + "Entity 'http://edamontology.org/data_1173' - Label 'ChemSpider ID'\n", + "Entity 'http://edamontology.org/data_1174' - Label 'ChEBI ID'\n", + "Entity 'http://edamontology.org/data_1175' - Label 'BioPax concept ID'\n", + "Entity 'http://edamontology.org/data_1176' - Label 'GO concept ID'\n", + "Entity 'http://edamontology.org/data_1177' - Label 'MeSH concept ID'\n", + "Entity 'http://edamontology.org/data_1178' - Label 'HGNC concept ID'\n", + "Entity 'http://edamontology.org/data_1179' - Label 'NCBI taxonomy ID'\n", + "Entity 'http://edamontology.org/data_1180' - Label 'Plant Ontology concept ID'\n", + "Entity 'http://edamontology.org/data_1181' - Label 'UMLS concept ID'\n", + "Entity 'http://edamontology.org/data_1182' - Label 'FMA concept ID'\n", + "Entity 'http://edamontology.org/data_1183' - Label 'EMAP concept ID'\n", + "Entity 'http://edamontology.org/data_1184' - Label 'ChEBI concept ID'\n", + "Entity 'http://edamontology.org/data_1185' - Label 'MGED concept ID'\n", + "Entity 'http://edamontology.org/data_1186' - Label 'myGrid concept ID'\n", + "Entity 'http://edamontology.org/data_1187' - Label 'PubMed ID'\n", + "Entity 'http://edamontology.org/data_1188' - Label 'DOI'\n", + "Entity 'http://edamontology.org/data_1189' - Label 'Medline UI'\n", + "Entity 'http://edamontology.org/data_1190' - Label 'Tool name'\n", + "Entity 'http://edamontology.org/data_1191' - Label 'Tool name (signature)'\n", + "Entity 'http://edamontology.org/data_1192' - Label 'Tool name (BLAST)'\n", + "Entity 'http://edamontology.org/data_1193' - Label 'Tool name (FASTA)'\n", + "Entity 'http://edamontology.org/data_1194' - Label 'Tool name (EMBOSS)'\n", + "Entity 'http://edamontology.org/data_1195' - Label 'Tool name (EMBASSY package)'\n", + "Entity 'http://edamontology.org/data_1201' - Label 'QSAR descriptor (constitutional)'\n", + "Entity 'http://edamontology.org/data_1202' - Label 'QSAR descriptor (electronic)'\n", + "Entity 'http://edamontology.org/data_1203' - Label 'QSAR descriptor (geometrical)'\n", + "Entity 'http://edamontology.org/data_1204' - Label 'QSAR descriptor (topological)'\n", + "Entity 'http://edamontology.org/data_1205' - Label 'QSAR descriptor (molecular)'\n", + "Entity 'http://edamontology.org/data_1233' - Label 'Sequence set (protein)'\n", + "Entity 'http://edamontology.org/data_1234' - Label 'Sequence set (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1235' - Label 'Sequence cluster'\n", + "Entity 'http://edamontology.org/data_1236' - Label 'Psiblast checkpoint file'\n", + "Entity 'http://edamontology.org/data_1237' - Label 'HMMER synthetic sequences set'\n", + "Entity 'http://edamontology.org/data_1238' - Label 'Proteolytic digest'\n", + "Entity 'http://edamontology.org/data_1239' - Label 'Restriction digest'\n", + "Entity 'http://edamontology.org/data_1240' - Label 'PCR primers'\n", + "Entity 'http://edamontology.org/data_1241' - Label 'vectorstrip cloning vector definition file'\n", + "Entity 'http://edamontology.org/data_1242' - Label 'Primer3 internal oligo mishybridizing library'\n", + "Entity 'http://edamontology.org/data_1243' - Label 'Primer3 mispriming library file'\n", + "Entity 'http://edamontology.org/data_1244' - Label 'primersearch primer pairs sequence record'\n", + "Entity 'http://edamontology.org/data_1245' - Label 'Sequence cluster (protein)'\n", + "Entity 'http://edamontology.org/data_1246' - Label 'Sequence cluster (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1249' - Label 'Sequence length'\n", + "Entity 'http://edamontology.org/data_1250' - Label 'Word size'\n", + "Entity 'http://edamontology.org/data_1251' - Label 'Window size'\n", + "Entity 'http://edamontology.org/data_1252' - Label 'Sequence length range'\n", + "Entity 'http://edamontology.org/data_1253' - Label 'Sequence information report'\n", + "Entity 'http://edamontology.org/data_1254' - Label 'Sequence property'\n", + "Entity 'http://edamontology.org/data_1255' - Label 'Sequence features'\n", + "Entity 'http://edamontology.org/data_1256' - Label 'Sequence features (comparative)'\n", + "Entity 'http://edamontology.org/data_1257' - Label 'Sequence property (protein)'\n", + "Entity 'http://edamontology.org/data_1258' - Label 'Sequence property (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1259' - Label 'Sequence complexity report'\n", + "Entity 'http://edamontology.org/data_1260' - Label 'Sequence ambiguity report'\n", + "Entity 'http://edamontology.org/data_1261' - Label 'Sequence composition report'\n", + "Entity 'http://edamontology.org/data_1262' - Label 'Peptide molecular weight hits'\n", + "Entity 'http://edamontology.org/data_1263' - Label 'Base position variability plot'\n", + "Entity 'http://edamontology.org/data_1264' - Label 'Sequence composition table'\n", + "Entity 'http://edamontology.org/data_1265' - Label 'Base frequencies table'\n", + "Entity 'http://edamontology.org/data_1266' - Label 'Base word frequencies table'\n", + "Entity 'http://edamontology.org/data_1267' - Label 'Amino acid frequencies table'\n", + "Entity 'http://edamontology.org/data_1268' - Label 'Amino acid word frequencies table'\n", + "Entity 'http://edamontology.org/data_1269' - Label 'DAS sequence feature annotation'\n", + "Entity 'http://edamontology.org/data_1270' - Label 'Feature table'\n", + "Entity 'http://edamontology.org/data_1274' - Label 'Map'\n", + "Entity 'http://edamontology.org/data_1276' - Label 'Nucleic acid features'\n", + "Entity 'http://edamontology.org/data_1277' - Label 'Protein features'\n", + "Entity 'http://edamontology.org/data_1278' - Label 'Genetic map'\n", + "Entity 'http://edamontology.org/data_1279' - Label 'Sequence map'\n", + "Entity 'http://edamontology.org/data_1280' - Label 'Physical map'\n", + "Entity 'http://edamontology.org/data_1281' - Label 'Sequence signature map'\n", + "Entity 'http://edamontology.org/data_1283' - Label 'Cytogenetic map'\n", + "Entity 'http://edamontology.org/data_1284' - Label 'DNA transduction map'\n", + "Entity 'http://edamontology.org/data_1285' - Label 'Gene map'\n", + "Entity 'http://edamontology.org/data_1286' - Label 'Plasmid map'\n", + "Entity 'http://edamontology.org/data_1288' - Label 'Genome map'\n", + "Entity 'http://edamontology.org/data_1289' - Label 'Restriction map'\n", + "Entity 'http://edamontology.org/data_1290' - Label 'InterPro compact match image'\n", + "Entity 'http://edamontology.org/data_1291' - Label 'InterPro detailed match image'\n", + "Entity 'http://edamontology.org/data_1292' - Label 'InterPro architecture image'\n", + "Entity 'http://edamontology.org/data_1293' - Label 'SMART protein schematic'\n", + "Entity 'http://edamontology.org/data_1294' - Label 'GlobPlot domain image'\n", + "Entity 'http://edamontology.org/data_1298' - Label 'Sequence motif matches'\n", + "Entity 'http://edamontology.org/data_1299' - Label 'Sequence features (repeats)'\n", + "Entity 'http://edamontology.org/data_1300' - Label 'Gene and transcript structure (report)'\n", + "Entity 'http://edamontology.org/data_1301' - Label 'Mobile genetic elements'\n", + "Entity 'http://edamontology.org/data_1303' - Label 'Nucleic acid features (quadruplexes)'\n", + "Entity 'http://edamontology.org/data_1306' - Label 'Nucleosome exclusion sequences'\n", + "Entity 'http://edamontology.org/data_1309' - Label 'Gene features (exonic splicing enhancer)'\n", + "Entity 'http://edamontology.org/data_1310' - Label 'Nucleic acid features (microRNA)'\n", + "Entity 'http://edamontology.org/data_1313' - Label 'Coding region'\n", + "Entity 'http://edamontology.org/data_1314' - Label 'Gene features (SECIS element)'\n", + "Entity 'http://edamontology.org/data_1315' - Label 'Transcription factor binding sites'\n", + "Entity 'http://edamontology.org/data_1321' - Label 'Protein features (sites)'\n", + "Entity 'http://edamontology.org/data_1322' - Label 'Protein features report (signal peptides)'\n", + "Entity 'http://edamontology.org/data_1323' - Label 'Protein features report (cleavage sites)'\n", + "Entity 'http://edamontology.org/data_1324' - Label 'Protein features (post-translation modifications)'\n", + "Entity 'http://edamontology.org/data_1325' - Label 'Protein features report (active sites)'\n", + "Entity 'http://edamontology.org/data_1326' - Label 'Protein features report (binding sites)'\n", + "Entity 'http://edamontology.org/data_1327' - Label 'Protein features (epitopes)'\n", + "Entity 'http://edamontology.org/data_1328' - Label 'Protein features report (nucleic acid binding sites)'\n", + "Entity 'http://edamontology.org/data_1329' - Label 'MHC Class I epitopes report'\n", + "Entity 'http://edamontology.org/data_1330' - Label 'MHC Class II epitopes report'\n", + "Entity 'http://edamontology.org/data_1331' - Label 'Protein features (PEST sites)'\n", + "Entity 'http://edamontology.org/data_1338' - Label 'Sequence database hits scores list'\n", + "Entity 'http://edamontology.org/data_1339' - Label 'Sequence database hits alignments list'\n", + "Entity 'http://edamontology.org/data_1340' - Label 'Sequence database hits evaluation data'\n", + "Entity 'http://edamontology.org/data_1344' - Label 'MEME motif alphabet'\n", + "Entity 'http://edamontology.org/data_1345' - Label 'MEME background frequencies file'\n", + "Entity 'http://edamontology.org/data_1346' - Label 'MEME motifs directive file'\n", + "Entity 'http://edamontology.org/data_1347' - Label 'Dirichlet distribution'\n", + "Entity 'http://edamontology.org/data_1348' - Label 'HMM emission and transition counts'\n", + "Entity 'http://edamontology.org/data_1352' - Label 'Regular expression'\n", + "Entity 'http://edamontology.org/data_1353' - Label 'Sequence motif'\n", + "Entity 'http://edamontology.org/data_1354' - Label 'Sequence profile'\n", + "Entity 'http://edamontology.org/data_1355' - Label 'Protein signature'\n", + "Entity 'http://edamontology.org/data_1358' - Label 'Prosite nucleotide pattern'\n", + "Entity 'http://edamontology.org/data_1359' - Label 'Prosite protein pattern'\n", + "Entity 'http://edamontology.org/data_1361' - Label 'Position frequency matrix'\n", + "Entity 'http://edamontology.org/data_1362' - Label 'Position weight matrix'\n", + "Entity 'http://edamontology.org/data_1363' - Label 'Information content matrix'\n", + "Entity 'http://edamontology.org/data_1364' - Label 'Hidden Markov model'\n", + "Entity 'http://edamontology.org/data_1365' - Label 'Fingerprint'\n", + "Entity 'http://edamontology.org/data_1368' - Label 'Domainatrix signature'\n", + "Entity 'http://edamontology.org/data_1371' - Label 'HMMER NULL hidden Markov model'\n", + "Entity 'http://edamontology.org/data_1372' - Label 'Protein family signature'\n", + "Entity 'http://edamontology.org/data_1373' - Label 'Protein domain signature'\n", + "Entity 'http://edamontology.org/data_1374' - Label 'Protein region signature'\n", + "Entity 'http://edamontology.org/data_1375' - Label 'Protein repeat signature'\n", + "Entity 'http://edamontology.org/data_1376' - Label 'Protein site signature'\n", + "Entity 'http://edamontology.org/data_1377' - Label 'Protein conserved site signature'\n", + "Entity 'http://edamontology.org/data_1378' - Label 'Protein active site signature'\n", + "Entity 'http://edamontology.org/data_1379' - Label 'Protein binding site signature'\n", + "Entity 'http://edamontology.org/data_1380' - Label 'Protein post-translational modification signature'\n", + "Entity 'http://edamontology.org/data_1381' - Label 'Pair sequence alignment'\n", + "Entity 'http://edamontology.org/data_1382' - Label 'Sequence alignment (multiple)'\n", + "Entity 'http://edamontology.org/data_1383' - Label 'Nucleic acid sequence alignment'\n", + "Entity 'http://edamontology.org/data_1384' - Label 'Protein sequence alignment'\n", + "Entity 'http://edamontology.org/data_1385' - Label 'Hybrid sequence alignment'\n", + "Entity 'http://edamontology.org/data_1386' - Label 'Sequence alignment (nucleic acid pair)'\n", + "Entity 'http://edamontology.org/data_1387' - Label 'Sequence alignment (protein pair)'\n", + "Entity 'http://edamontology.org/data_1388' - Label 'Hybrid sequence alignment (pair)'\n", + "Entity 'http://edamontology.org/data_1389' - Label 'Multiple nucleotide sequence alignment'\n", + "Entity 'http://edamontology.org/data_1390' - Label 'Multiple protein sequence alignment'\n", + "Entity 'http://edamontology.org/data_1394' - Label 'Alignment score or penalty'\n", + "Entity 'http://edamontology.org/data_1395' - Label 'Score end gaps control'\n", + "Entity 'http://edamontology.org/data_1396' - Label 'Aligned sequence order'\n", + "Entity 'http://edamontology.org/data_1397' - Label 'Gap opening penalty'\n", + "Entity 'http://edamontology.org/data_1398' - Label 'Gap extension penalty'\n", + "Entity 'http://edamontology.org/data_1399' - Label 'Gap separation penalty'\n", + "Entity 'http://edamontology.org/data_1400' - Label 'Terminal gap penalty'\n", + "Entity 'http://edamontology.org/data_1401' - Label 'Match reward score'\n", + "Entity 'http://edamontology.org/data_1402' - Label 'Mismatch penalty score'\n", + "Entity 'http://edamontology.org/data_1403' - Label 'Drop off score'\n", + "Entity 'http://edamontology.org/data_1404' - Label 'Gap opening penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1405' - Label 'Gap opening penalty (float)'\n", + "Entity 'http://edamontology.org/data_1406' - Label 'Gap extension penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1407' - Label 'Gap extension penalty (float)'\n", + "Entity 'http://edamontology.org/data_1408' - Label 'Gap separation penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1409' - Label 'Gap separation penalty (float)'\n", + "Entity 'http://edamontology.org/data_1410' - Label 'Terminal gap opening penalty'\n", + "Entity 'http://edamontology.org/data_1411' - Label 'Terminal gap extension penalty'\n", + "Entity 'http://edamontology.org/data_1412' - Label 'Sequence identity'\n", + "Entity 'http://edamontology.org/data_1413' - Label 'Sequence similarity'\n", + "Entity 'http://edamontology.org/data_1414' - Label 'Sequence alignment metadata (quality report)'\n", + "Entity 'http://edamontology.org/data_1415' - Label 'Sequence alignment report (site conservation)'\n", + "Entity 'http://edamontology.org/data_1416' - Label 'Sequence alignment report (site correlation)'\n", + "Entity 'http://edamontology.org/data_1417' - Label 'Sequence-profile alignment (Domainatrix signature)'\n", + "Entity 'http://edamontology.org/data_1418' - Label 'Sequence-profile alignment (HMM)'\n", + "Entity 'http://edamontology.org/data_1420' - Label 'Sequence-profile alignment (fingerprint)'\n", + "Entity 'http://edamontology.org/data_1426' - Label 'Phylogenetic continuous quantitative data'\n", + "Entity 'http://edamontology.org/data_1427' - Label 'Phylogenetic discrete data'\n", + "Entity 'http://edamontology.org/data_1428' - Label 'Phylogenetic character cliques'\n", + "Entity 'http://edamontology.org/data_1429' - Label 'Phylogenetic invariants'\n", + "Entity 'http://edamontology.org/data_1438' - Label 'Phylogenetic report'\n", + "Entity 'http://edamontology.org/data_1439' - Label 'DNA substitution model'\n", + "Entity 'http://edamontology.org/data_1440' - Label 'Phylogenetic tree report (tree shape)'\n", + "Entity 'http://edamontology.org/data_1441' - Label 'Phylogenetic tree report (tree evaluation)'\n", + "Entity 'http://edamontology.org/data_1442' - Label 'Phylogenetic tree distances'\n", + "Entity 'http://edamontology.org/data_1443' - Label 'Phylogenetic tree report (tree stratigraphic)'\n", + "Entity 'http://edamontology.org/data_1444' - Label 'Phylogenetic character contrasts'\n", + "Entity 'http://edamontology.org/data_1446' - Label 'Comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1447' - Label 'Comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1448' - Label 'Comparison matrix (nucleotide)'\n", + "Entity 'http://edamontology.org/data_1449' - Label 'Comparison matrix (amino acid)'\n", + "Entity 'http://edamontology.org/data_1450' - Label 'Nucleotide comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1451' - Label 'Nucleotide comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1452' - Label 'Amino acid comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1453' - Label 'Amino acid comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1459' - Label 'Nucleic acid structure'\n", + "Entity 'http://edamontology.org/data_1460' - Label 'Protein structure'\n", + "Entity 'http://edamontology.org/data_1461' - Label 'Protein-ligand complex'\n", + "Entity 'http://edamontology.org/data_1462' - Label 'Carbohydrate structure'\n", + "Entity 'http://edamontology.org/data_1463' - Label 'Small molecule structure'\n", + "Entity 'http://edamontology.org/data_1464' - Label 'DNA structure'\n", + "Entity 'http://edamontology.org/data_1465' - Label 'RNA structure'\n", + "Entity 'http://edamontology.org/data_1466' - Label 'tRNA structure'\n", + "Entity 'http://edamontology.org/data_1467' - Label 'Protein chain'\n", + "Entity 'http://edamontology.org/data_1468' - Label 'Protein domain'\n", + "Entity 'http://edamontology.org/data_1469' - Label 'Protein structure (all atoms)'\n", + "Entity 'http://edamontology.org/data_1470' - Label 'C-alpha trace'\n", + "Entity 'http://edamontology.org/data_1471' - Label 'Protein chain (all atoms)'\n", + "Entity 'http://edamontology.org/data_1472' - Label 'Protein chain (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1473' - Label 'Protein domain (all atoms)'\n", + "Entity 'http://edamontology.org/data_1474' - Label 'Protein domain (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1479' - Label 'Structure alignment (pair)'\n", + "Entity 'http://edamontology.org/data_1480' - Label 'Structure alignment (multiple)'\n", + "Entity 'http://edamontology.org/data_1481' - Label 'Protein structure alignment'\n", + "Entity 'http://edamontology.org/data_1482' - Label 'Nucleic acid structure alignment'\n", + "Entity 'http://edamontology.org/data_1483' - Label 'Structure alignment (protein pair)'\n", + "Entity 'http://edamontology.org/data_1484' - Label 'Multiple protein tertiary structure alignment'\n", + "Entity 'http://edamontology.org/data_1485' - Label 'Structure alignment (protein all atoms)'\n", + "Entity 'http://edamontology.org/data_1486' - Label 'Structure alignment (protein C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1487' - Label 'Pairwise protein tertiary structure alignment (all atoms)'\n", + "Entity 'http://edamontology.org/data_1488' - Label 'Pairwise protein tertiary structure alignment (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1489' - Label 'Multiple protein tertiary structure alignment (all atoms)'\n", + "Entity 'http://edamontology.org/data_1490' - Label 'Multiple protein tertiary structure alignment (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1491' - Label 'Structure alignment (nucleic acid pair)'\n", + "Entity 'http://edamontology.org/data_1492' - Label 'Multiple nucleic acid tertiary structure alignment'\n", + "Entity 'http://edamontology.org/data_1493' - Label 'RNA structure alignment'\n", + "Entity 'http://edamontology.org/data_1494' - Label 'Structural transformation matrix'\n", + "Entity 'http://edamontology.org/data_1495' - Label 'DaliLite hit table'\n", + "Entity 'http://edamontology.org/data_1496' - Label 'Molecular similarity score'\n", + "Entity 'http://edamontology.org/data_1497' - Label 'Root-mean-square deviation'\n", + "Entity 'http://edamontology.org/data_1498' - Label 'Tanimoto similarity score'\n", + "Entity 'http://edamontology.org/data_1499' - Label '3D-1D scoring matrix'\n", + "Entity 'http://edamontology.org/data_1501' - Label 'Amino acid index'\n", + "Entity 'http://edamontology.org/data_1502' - Label 'Amino acid index (chemical classes)'\n", + "Entity 'http://edamontology.org/data_1503' - Label 'Amino acid pair-wise contact potentials'\n", + "Entity 'http://edamontology.org/data_1505' - Label 'Amino acid index (molecular weight)'\n", + "Entity 'http://edamontology.org/data_1506' - Label 'Amino acid index (hydropathy)'\n", + "Entity 'http://edamontology.org/data_1507' - Label 'Amino acid index (White-Wimley data)'\n", + "Entity 'http://edamontology.org/data_1508' - Label 'Amino acid index (van der Waals radii)'\n", + "Entity 'http://edamontology.org/data_1509' - Label 'Enzyme report'\n", + "Entity 'http://edamontology.org/data_1517' - Label 'Restriction enzyme report'\n", + "Entity 'http://edamontology.org/data_1519' - Label 'Peptide molecular weights'\n", + "Entity 'http://edamontology.org/data_1520' - Label 'Peptide hydrophobic moment'\n", + "Entity 'http://edamontology.org/data_1521' - Label 'Protein aliphatic index'\n", + "Entity 'http://edamontology.org/data_1522' - Label 'Protein sequence hydropathy plot'\n", + "Entity 'http://edamontology.org/data_1523' - Label 'Protein charge plot'\n", + "Entity 'http://edamontology.org/data_1524' - Label 'Protein solubility'\n", + "Entity 'http://edamontology.org/data_1525' - Label 'Protein crystallizability'\n", + "Entity 'http://edamontology.org/data_1526' - Label 'Protein globularity'\n", + "Entity 'http://edamontology.org/data_1527' - Label 'Protein titration curve'\n", + "Entity 'http://edamontology.org/data_1528' - Label 'Protein isoelectric point'\n", + "Entity 'http://edamontology.org/data_1529' - Label 'Protein pKa value'\n", + "Entity 'http://edamontology.org/data_1530' - Label 'Protein hydrogen exchange rate'\n", + "Entity 'http://edamontology.org/data_1531' - Label 'Protein extinction coefficient'\n", + "Entity 'http://edamontology.org/data_1532' - Label 'Protein optical density'\n", + "Entity 'http://edamontology.org/data_1533' - Label 'Protein subcellular localisation'\n", + "Entity 'http://edamontology.org/data_1534' - Label 'Peptide immunogenicity data'\n", + "Entity 'http://edamontology.org/data_1536' - Label 'MHC peptide immunogenicity report'\n", + "Entity 'http://edamontology.org/data_1537' - Label 'Protein structure report'\n", + "Entity 'http://edamontology.org/data_1539' - Label 'Protein structural quality report'\n", + "Entity 'http://edamontology.org/data_1540' - Label 'Protein non-covalent interactions report'\n", + "Entity 'http://edamontology.org/data_1541' - Label 'Protein flexibility or motion report'\n", + "Entity 'http://edamontology.org/data_1542' - Label 'Protein solvent accessibility'\n", + "Entity 'http://edamontology.org/data_1543' - Label 'Protein surface report'\n", + "Entity 'http://edamontology.org/data_1544' - Label 'Ramachandran plot'\n", + "Entity 'http://edamontology.org/data_1545' - Label 'Protein dipole moment'\n", + "Entity 'http://edamontology.org/data_1546' - Label 'Protein distance matrix'\n", + "Entity 'http://edamontology.org/data_1547' - Label 'Protein contact map'\n", + "Entity 'http://edamontology.org/data_1548' - Label 'Protein residue 3D cluster'\n", + "Entity 'http://edamontology.org/data_1549' - Label 'Protein hydrogen bonds'\n", + "Entity 'http://edamontology.org/data_1550' - Label 'Protein non-canonical interactions'\n", + "Entity 'http://edamontology.org/data_1553' - Label 'CATH node'\n", + "Entity 'http://edamontology.org/data_1554' - Label 'SCOP node'\n", + "Entity 'http://edamontology.org/data_1555' - Label 'EMBASSY domain classification'\n", + "Entity 'http://edamontology.org/data_1556' - Label 'CATH class'\n", + "Entity 'http://edamontology.org/data_1557' - Label 'CATH architecture'\n", + "Entity 'http://edamontology.org/data_1558' - Label 'CATH topology'\n", + "Entity 'http://edamontology.org/data_1559' - Label 'CATH homologous superfamily'\n", + "Entity 'http://edamontology.org/data_1560' - Label 'CATH structurally similar group'\n", + "Entity 'http://edamontology.org/data_1561' - Label 'CATH functional category'\n", + "Entity 'http://edamontology.org/data_1564' - Label 'Protein fold recognition report'\n", + "Entity 'http://edamontology.org/data_1565' - Label 'Protein-protein interaction report'\n", + "Entity 'http://edamontology.org/data_1566' - Label 'Protein-ligand interaction report'\n", + "Entity 'http://edamontology.org/data_1567' - Label 'Protein-nucleic acid interactions report'\n", + "Entity 'http://edamontology.org/data_1583' - Label 'Nucleic acid melting profile'\n", + "Entity 'http://edamontology.org/data_1584' - Label 'Nucleic acid enthalpy'\n", + "Entity 'http://edamontology.org/data_1585' - Label 'Nucleic acid entropy'\n", + "Entity 'http://edamontology.org/data_1586' - Label 'Nucleic acid melting temperature'\n", + "Entity 'http://edamontology.org/data_1587' - Label 'Nucleic acid stitch profile'\n", + "Entity 'http://edamontology.org/data_1588' - Label 'DNA base pair stacking energies data'\n", + "Entity 'http://edamontology.org/data_1589' - Label 'DNA base pair twist angle data'\n", + "Entity 'http://edamontology.org/data_1590' - Label 'DNA base trimer roll angles data'\n", + "Entity 'http://edamontology.org/data_1591' - Label 'Vienna RNA parameters'\n", + "Entity 'http://edamontology.org/data_1592' - Label 'Vienna RNA structure constraints'\n", + "Entity 'http://edamontology.org/data_1593' - Label 'Vienna RNA concentration data'\n", + "Entity 'http://edamontology.org/data_1594' - Label 'Vienna RNA calculated energy'\n", + "Entity 'http://edamontology.org/data_1595' - Label 'Base pairing probability matrix dotplot'\n", + "Entity 'http://edamontology.org/data_1596' - Label 'Nucleic acid folding report'\n", + "Entity 'http://edamontology.org/data_1597' - Label 'Codon usage table'\n", + "Entity 'http://edamontology.org/data_1598' - Label 'Genetic code'\n", + "Entity 'http://edamontology.org/data_1599' - Label 'Codon adaptation index'\n", + "Entity 'http://edamontology.org/data_1600' - Label 'Codon usage bias plot'\n", + "Entity 'http://edamontology.org/data_1601' - Label 'Nc statistic'\n", + "Entity 'http://edamontology.org/data_1602' - Label 'Codon usage fraction difference'\n", + "Entity 'http://edamontology.org/data_1621' - Label 'Pharmacogenomic test report'\n", + "Entity 'http://edamontology.org/data_1622' - Label 'Disease report'\n", + "Entity 'http://edamontology.org/data_1634' - Label 'Linkage disequilibrium (report)'\n", + "Entity 'http://edamontology.org/data_1636' - Label 'Heat map'\n", + "Entity 'http://edamontology.org/data_1642' - Label 'Affymetrix probe sets library file'\n", + "Entity 'http://edamontology.org/data_1643' - Label 'Affymetrix probe sets information library file'\n", + "Entity 'http://edamontology.org/data_1646' - Label 'Molecular weights standard fingerprint'\n", + "Entity 'http://edamontology.org/data_1656' - Label 'Metabolic pathway report'\n", + "Entity 'http://edamontology.org/data_1657' - Label 'Genetic information processing pathway report'\n", + "Entity 'http://edamontology.org/data_1658' - Label 'Environmental information processing pathway report'\n", + "Entity 'http://edamontology.org/data_1659' - Label 'Signal transduction pathway report'\n", + "Entity 'http://edamontology.org/data_1660' - Label 'Cellular process pathways report'\n", + "Entity 'http://edamontology.org/data_1661' - Label 'Disease pathway or network report'\n", + "Entity 'http://edamontology.org/data_1662' - Label 'Drug structure relationship map'\n", + "Entity 'http://edamontology.org/data_1663' - Label 'Protein interaction networks'\n", + "Entity 'http://edamontology.org/data_1664' - Label 'MIRIAM datatype'\n", + "Entity 'http://edamontology.org/data_1667' - Label 'E-value'\n", + "Entity 'http://edamontology.org/data_1668' - Label 'Z-value'\n", + "Entity 'http://edamontology.org/data_1669' - Label 'P-value'\n", + "Entity 'http://edamontology.org/data_1670' - Label 'Database version information'\n", + "Entity 'http://edamontology.org/data_1671' - Label 'Tool version information'\n", + "Entity 'http://edamontology.org/data_1672' - Label 'CATH version information'\n", + "Entity 'http://edamontology.org/data_1673' - Label 'Swiss-Prot to PDB mapping'\n", + "Entity 'http://edamontology.org/data_1674' - Label 'Sequence database cross-references'\n", + "Entity 'http://edamontology.org/data_1675' - Label 'Job status'\n", + "Entity 'http://edamontology.org/data_1676' - Label 'Job ID'\n", + "Entity 'http://edamontology.org/data_1677' - Label 'Job type'\n", + "Entity 'http://edamontology.org/data_1678' - Label 'Tool log'\n", + "Entity 'http://edamontology.org/data_1679' - Label 'DaliLite log file'\n", + "Entity 'http://edamontology.org/data_1680' - Label 'STRIDE log file'\n", + "Entity 'http://edamontology.org/data_1681' - Label 'NACCESS log file'\n", + "Entity 'http://edamontology.org/data_1682' - Label 'EMBOSS wordfinder log file'\n", + "Entity 'http://edamontology.org/data_1683' - Label 'EMBOSS domainatrix log file'\n", + "Entity 'http://edamontology.org/data_1684' - Label 'EMBOSS sites log file'\n", + "Entity 'http://edamontology.org/data_1685' - Label 'EMBOSS supermatcher error file'\n", + "Entity 'http://edamontology.org/data_1686' - Label 'EMBOSS megamerger log file'\n", + "Entity 'http://edamontology.org/data_1687' - Label 'EMBOSS whichdb log file'\n", + "Entity 'http://edamontology.org/data_1688' - Label 'EMBOSS vectorstrip log file'\n", + "Entity 'http://edamontology.org/data_1689' - Label 'Username'\n", + "Entity 'http://edamontology.org/data_1690' - Label 'Password'\n", + "Entity 'http://edamontology.org/data_1691' - Label 'Email address'\n", + "Entity 'http://edamontology.org/data_1692' - Label 'Person name'\n", + "Entity 'http://edamontology.org/data_1693' - Label 'Number of iterations'\n", + "Entity 'http://edamontology.org/data_1694' - Label 'Number of output entities'\n", + "Entity 'http://edamontology.org/data_1695' - Label 'Hit sort order'\n", + "Entity 'http://edamontology.org/data_1696' - Label 'Drug report'\n", + "Entity 'http://edamontology.org/data_1707' - Label 'Phylogenetic tree image'\n", + "Entity 'http://edamontology.org/data_1708' - Label 'RNA secondary structure image'\n", + "Entity 'http://edamontology.org/data_1709' - Label 'Protein secondary structure image'\n", + "Entity 'http://edamontology.org/data_1710' - Label 'Structure image'\n", + "Entity 'http://edamontology.org/data_1711' - Label 'Sequence alignment image'\n", + "Entity 'http://edamontology.org/data_1712' - Label 'Chemical structure image'\n", + "Entity 'http://edamontology.org/data_1713' - Label 'Fate map'\n", + "Entity 'http://edamontology.org/data_1714' - Label 'Microarray spots image'\n", + "Entity 'http://edamontology.org/data_1715' - Label 'BioPax term'\n", + "Entity 'http://edamontology.org/data_1716' - Label 'GO'\n", + "Entity 'http://edamontology.org/data_1717' - Label 'MeSH'\n", + "Entity 'http://edamontology.org/data_1718' - Label 'HGNC'\n", + "Entity 'http://edamontology.org/data_1719' - Label 'NCBI taxonomy vocabulary'\n", + "Entity 'http://edamontology.org/data_1720' - Label 'Plant ontology term'\n", + "Entity 'http://edamontology.org/data_1721' - Label 'UMLS'\n", + "Entity 'http://edamontology.org/data_1722' - Label 'FMA'\n", + "Entity 'http://edamontology.org/data_1723' - Label 'EMAP'\n", + "Entity 'http://edamontology.org/data_1724' - Label 'ChEBI'\n", + "Entity 'http://edamontology.org/data_1725' - Label 'MGED'\n", + "Entity 'http://edamontology.org/data_1726' - Label 'myGrid'\n", + "Entity 'http://edamontology.org/data_1727' - Label 'GO (biological process)'\n", + "Entity 'http://edamontology.org/data_1728' - Label 'GO (molecular function)'\n", + "Entity 'http://edamontology.org/data_1729' - Label 'GO (cellular component)'\n", + "Entity 'http://edamontology.org/data_1730' - Label 'Ontology relation type'\n", + "Entity 'http://edamontology.org/data_1731' - Label 'Ontology concept definition'\n", + "Entity 'http://edamontology.org/data_1732' - Label 'Ontology concept comment'\n", + "Entity 'http://edamontology.org/data_1733' - Label 'Ontology concept reference'\n", + "Entity 'http://edamontology.org/data_1738' - Label 'doc2loc document information'\n", + "Entity 'http://edamontology.org/data_1742' - Label 'PDB residue number'\n", + "Entity 'http://edamontology.org/data_1743' - Label 'Atomic coordinate'\n", + "Entity 'http://edamontology.org/data_1744' - Label 'Atomic x coordinate'\n", + "Entity 'http://edamontology.org/data_1745' - Label 'Atomic y coordinate'\n", + "Entity 'http://edamontology.org/data_1746' - Label 'Atomic z coordinate'\n", + "Entity 'http://edamontology.org/data_1748' - Label 'PDB atom name'\n", + "Entity 'http://edamontology.org/data_1755' - Label 'Protein atom'\n", + "Entity 'http://edamontology.org/data_1756' - Label 'Protein residue'\n", + "Entity 'http://edamontology.org/data_1757' - Label 'Atom name'\n", + "Entity 'http://edamontology.org/data_1758' - Label 'PDB residue name'\n", + "Entity 'http://edamontology.org/data_1759' - Label 'PDB model number'\n", + "Entity 'http://edamontology.org/data_1762' - Label 'CATH domain report'\n", + "Entity 'http://edamontology.org/data_1764' - Label 'CATH representative domain sequences (ATOM)'\n", + "Entity 'http://edamontology.org/data_1765' - Label 'CATH representative domain sequences (COMBS)'\n", + "Entity 'http://edamontology.org/data_1766' - Label 'CATH domain sequences (ATOM)'\n", + "Entity 'http://edamontology.org/data_1767' - Label 'CATH domain sequences (COMBS)'\n", + "Entity 'http://edamontology.org/data_1771' - Label 'Sequence version'\n", + "Entity 'http://edamontology.org/data_1772' - Label 'Score'\n", + "Entity 'http://edamontology.org/data_1776' - Label 'Protein report (function)'\n", + "Entity 'http://edamontology.org/data_1783' - Label 'Gene name (ASPGD)'\n", + "Entity 'http://edamontology.org/data_1784' - Label 'Gene name (CGD)'\n", + "Entity 'http://edamontology.org/data_1785' - Label 'Gene name (dictyBase)'\n", + "Entity 'http://edamontology.org/data_1786' - Label 'Gene name (EcoGene primary)'\n", + "Entity 'http://edamontology.org/data_1787' - Label 'Gene name (MaizeGDB)'\n", + "Entity 'http://edamontology.org/data_1788' - Label 'Gene name (SGD)'\n", + "Entity 'http://edamontology.org/data_1789' - Label 'Gene name (TGD)'\n", + "Entity 'http://edamontology.org/data_1790' - Label 'Gene name (CGSC)'\n", + "Entity 'http://edamontology.org/data_1791' - Label 'Gene name (HGNC)'\n", + "Entity 'http://edamontology.org/data_1792' - Label 'Gene name (MGD)'\n", + "Entity 'http://edamontology.org/data_1793' - Label 'Gene name (Bacillus subtilis)'\n", + "Entity 'http://edamontology.org/data_1794' - Label 'Gene ID (PlasmoDB)'\n", + "Entity 'http://edamontology.org/data_1795' - Label 'Gene ID (EcoGene)'\n", + "Entity 'http://edamontology.org/data_1796' - Label 'Gene ID (FlyBase)'\n", + "Entity 'http://edamontology.org/data_1797' - Label 'Gene ID (GeneDB Glossina morsitans)'\n", + "Entity 'http://edamontology.org/data_1798' - Label 'Gene ID (GeneDB Leishmania major)'\n", + "Entity 'http://edamontology.org/data_1799' - Label 'Gene ID (GeneDB Plasmodium falciparum)'\n", + "Entity 'http://edamontology.org/data_1800' - Label 'Gene ID (GeneDB Schizosaccharomyces pombe)'\n", + "Entity 'http://edamontology.org/data_1801' - Label 'Gene ID (GeneDB Trypanosoma brucei)'\n", + "Entity 'http://edamontology.org/data_1802' - Label 'Gene ID (Gramene)'\n", + "Entity 'http://edamontology.org/data_1803' - Label 'Gene ID (Virginia microbial)'\n", + "Entity 'http://edamontology.org/data_1804' - Label 'Gene ID (SGN)'\n", + "Entity 'http://edamontology.org/data_1805' - Label 'Gene ID (WormBase)'\n", + "Entity 'http://edamontology.org/data_1806' - Label 'Gene synonym'\n", + "Entity 'http://edamontology.org/data_1807' - Label 'ORF name'\n", + "Entity 'http://edamontology.org/data_1852' - Label 'Sequence assembly component'\n", + "Entity 'http://edamontology.org/data_1853' - Label 'Chromosome annotation (aberration)'\n", + "Entity 'http://edamontology.org/data_1855' - Label 'Clone ID'\n", + "Entity 'http://edamontology.org/data_1856' - Label 'PDB insertion code'\n", + "Entity 'http://edamontology.org/data_1857' - Label 'Atomic occupancy'\n", + "Entity 'http://edamontology.org/data_1858' - Label 'Isotropic B factor'\n", + "Entity 'http://edamontology.org/data_1859' - Label 'Deletion map'\n", + "Entity 'http://edamontology.org/data_1860' - Label 'QTL map'\n", + "Entity 'http://edamontology.org/data_1863' - Label 'Haplotype map'\n", + "Entity 'http://edamontology.org/data_1864' - Label 'Map set data'\n", + "Entity 'http://edamontology.org/data_1865' - Label 'Map feature'\n", + "Entity 'http://edamontology.org/data_1866' - Label 'Map type'\n", + "Entity 'http://edamontology.org/data_1867' - Label 'Protein fold name'\n", + "Entity 'http://edamontology.org/data_1868' - Label 'Taxon'\n", + "Entity 'http://edamontology.org/data_1869' - Label 'Organism identifier'\n", + "Entity 'http://edamontology.org/data_1870' - Label 'Genus name'\n", + "Entity 'http://edamontology.org/data_1872' - Label 'Taxonomic classification'\n", + "Entity 'http://edamontology.org/data_1873' - Label 'iHOP organism ID'\n", + "Entity 'http://edamontology.org/data_1874' - Label 'Genbank common name'\n", + "Entity 'http://edamontology.org/data_1875' - Label 'NCBI taxon'\n", + "Entity 'http://edamontology.org/data_1877' - Label 'Synonym'\n", + "Entity 'http://edamontology.org/data_1878' - Label 'Misspelling'\n", + "Entity 'http://edamontology.org/data_1879' - Label 'Acronym'\n", + "Entity 'http://edamontology.org/data_1880' - Label 'Misnomer'\n", + "Entity 'http://edamontology.org/data_1881' - Label 'Author ID'\n", + "Entity 'http://edamontology.org/data_1882' - Label 'DragonDB author identifier'\n", + "Entity 'http://edamontology.org/data_1883' - Label 'Annotated URI'\n", + "Entity 'http://edamontology.org/data_1884' - Label 'UniProt keywords'\n", + "Entity 'http://edamontology.org/data_1885' - Label 'Gene ID (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_1886' - Label 'Blattner number'\n", + "Entity 'http://edamontology.org/data_1887' - Label 'Gene ID (MIPS Maize)'\n", + "Entity 'http://edamontology.org/data_1888' - Label 'Gene ID (MIPS Medicago)'\n", + "Entity 'http://edamontology.org/data_1889' - Label 'Gene name (DragonDB)'\n", + "Entity 'http://edamontology.org/data_1890' - Label 'Gene name (Arabidopsis)'\n", + "Entity 'http://edamontology.org/data_1891' - Label 'iHOP symbol'\n", + "Entity 'http://edamontology.org/data_1892' - Label 'Gene name (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_1893' - Label 'Locus ID'\n", + "Entity 'http://edamontology.org/data_1895' - Label 'Locus ID (AGI)'\n", + "Entity 'http://edamontology.org/data_1896' - Label 'Locus ID (ASPGD)'\n", + "Entity 'http://edamontology.org/data_1897' - Label 'Locus ID (MGG)'\n", + "Entity 'http://edamontology.org/data_1898' - Label 'Locus ID (CGD)'\n", + "Entity 'http://edamontology.org/data_1899' - Label 'Locus ID (CMR)'\n", + "Entity 'http://edamontology.org/data_1900' - Label 'NCBI locus tag'\n", + "Entity 'http://edamontology.org/data_1901' - Label 'Locus ID (SGD)'\n", + "Entity 'http://edamontology.org/data_1902' - Label 'Locus ID (MMP)'\n", + "Entity 'http://edamontology.org/data_1903' - Label 'Locus ID (DictyBase)'\n", + "Entity 'http://edamontology.org/data_1904' - Label 'Locus ID (EntrezGene)'\n", + "Entity 'http://edamontology.org/data_1905' - Label 'Locus ID (MaizeGDB)'\n", + "Entity 'http://edamontology.org/data_1906' - Label 'Quantitative trait locus'\n", + "Entity 'http://edamontology.org/data_1907' - Label 'Gene ID (KOME)'\n", + "Entity 'http://edamontology.org/data_1908' - Label 'Locus ID (Tropgene)'\n", + "Entity 'http://edamontology.org/data_1916' - Label 'Alignment'\n", + "Entity 'http://edamontology.org/data_1917' - Label 'Atomic property'\n", + "Entity 'http://edamontology.org/data_2007' - Label 'UniProt keyword'\n", + "Entity 'http://edamontology.org/data_2009' - Label 'Ordered locus name'\n", + "Entity 'http://edamontology.org/data_2012' - Label 'Sequence coordinates'\n", + "Entity 'http://edamontology.org/data_2016' - Label 'Amino acid property'\n", + "Entity 'http://edamontology.org/data_2018' - Label 'Annotation'\n", + "Entity 'http://edamontology.org/data_2019' - Label 'Map data'\n", + "Entity 'http://edamontology.org/data_2022' - Label 'Vienna RNA structural data'\n", + "Entity 'http://edamontology.org/data_2023' - Label 'Sequence mask parameter'\n", + "Entity 'http://edamontology.org/data_2024' - Label 'Enzyme kinetics data'\n", + "Entity 'http://edamontology.org/data_2025' - Label 'Michaelis Menten plot'\n", + "Entity 'http://edamontology.org/data_2026' - Label 'Hanes Woolf plot'\n", + "Entity 'http://edamontology.org/data_2028' - Label 'Experimental data'\n", + "Entity 'http://edamontology.org/data_2041' - Label 'Genome version information'\n", + "Entity 'http://edamontology.org/data_2042' - Label 'Evidence'\n", + "Entity 'http://edamontology.org/data_2043' - Label 'Sequence record lite'\n", + "Entity 'http://edamontology.org/data_2044' - Label 'Sequence'\n", + "Entity 'http://edamontology.org/data_2046' - Label 'Nucleic acid sequence record (lite)'\n", + "Entity 'http://edamontology.org/data_2047' - Label 'Protein sequence record (lite)'\n", + "Entity 'http://edamontology.org/data_2048' - Label 'Report'\n", + "Entity 'http://edamontology.org/data_2050' - Label 'Molecular property (general)'\n", + "Entity 'http://edamontology.org/data_2053' - Label 'Structural data'\n", + "Entity 'http://edamontology.org/data_2070' - Label 'Sequence motif (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_2071' - Label 'Sequence motif (protein)'\n", + "Entity 'http://edamontology.org/data_2079' - Label 'Search parameter'\n", + "Entity 'http://edamontology.org/data_2080' - Label 'Database search results'\n", + "Entity 'http://edamontology.org/data_2081' - Label 'Secondary structure'\n", + "Entity 'http://edamontology.org/data_2082' - Label 'Matrix'\n", + "Entity 'http://edamontology.org/data_2083' - Label 'Alignment data'\n", + "Entity 'http://edamontology.org/data_2084' - Label 'Nucleic acid report'\n", + "Entity 'http://edamontology.org/data_2085' - Label 'Structure report'\n", + "Entity 'http://edamontology.org/data_2086' - Label 'Nucleic acid structure data'\n", + "Entity 'http://edamontology.org/data_2087' - Label 'Molecular property'\n", + "Entity 'http://edamontology.org/data_2088' - Label 'DNA base structural data'\n", + "Entity 'http://edamontology.org/data_2090' - Label 'Database entry version information'\n", + "Entity 'http://edamontology.org/data_2091' - Label 'Accession'\n", + "Entity 'http://edamontology.org/data_2092' - Label 'SNP'\n", + "Entity 'http://edamontology.org/data_2093' - Label 'Data reference'\n", + "Entity 'http://edamontology.org/data_2098' - Label 'Job identifier'\n", + "Entity 'http://edamontology.org/data_2099' - Label 'Name'\n", + "Entity 'http://edamontology.org/data_2100' - Label 'Type'\n", + "Entity 'http://edamontology.org/data_2101' - Label 'Account authentication'\n", + "Entity 'http://edamontology.org/data_2102' - Label 'KEGG organism code'\n", + "Entity 'http://edamontology.org/data_2103' - Label 'Gene name (KEGG GENES)'\n", + "Entity 'http://edamontology.org/data_2104' - Label 'BioCyc ID'\n", + "Entity 'http://edamontology.org/data_2105' - Label 'Compound ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2106' - Label 'Reaction ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2107' - Label 'Enzyme ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2108' - Label 'Reaction ID'\n", + "Entity 'http://edamontology.org/data_2109' - Label 'Identifier (hybrid)'\n", + "Entity 'http://edamontology.org/data_2110' - Label 'Molecular property identifier'\n", + "Entity 'http://edamontology.org/data_2111' - Label 'Codon usage table ID'\n", + "Entity 'http://edamontology.org/data_2112' - Label 'FlyBase primary identifier'\n", + "Entity 'http://edamontology.org/data_2113' - Label 'WormBase identifier'\n", + "Entity 'http://edamontology.org/data_2114' - Label 'WormBase wormpep ID'\n", + "Entity 'http://edamontology.org/data_2116' - Label 'Nucleic acid features (codon)'\n", + "Entity 'http://edamontology.org/data_2117' - Label 'Map identifier'\n", + "Entity 'http://edamontology.org/data_2118' - Label 'Person identifier'\n", + "Entity 'http://edamontology.org/data_2119' - Label 'Nucleic acid identifier'\n", + "Entity 'http://edamontology.org/data_2126' - Label 'Translation frame specification'\n", + "Entity 'http://edamontology.org/data_2127' - Label 'Genetic code identifier'\n", + "Entity 'http://edamontology.org/data_2128' - Label 'Genetic code name'\n", + "Entity 'http://edamontology.org/data_2129' - Label 'File format name'\n", + "Entity 'http://edamontology.org/data_2130' - Label 'Sequence profile type'\n", + "Entity 'http://edamontology.org/data_2131' - Label 'Operating system name'\n", + "Entity 'http://edamontology.org/data_2132' - Label 'Mutation type'\n", + "Entity 'http://edamontology.org/data_2133' - Label 'Logical operator'\n", + "Entity 'http://edamontology.org/data_2134' - Label 'Results sort order'\n", + "Entity 'http://edamontology.org/data_2135' - Label 'Toggle'\n", + "Entity 'http://edamontology.org/data_2136' - Label 'Sequence width'\n", + "Entity 'http://edamontology.org/data_2137' - Label 'Gap penalty'\n", + "Entity 'http://edamontology.org/data_2139' - Label 'Nucleic acid melting temperature'\n", + "Entity 'http://edamontology.org/data_2140' - Label 'Concentration'\n", + "Entity 'http://edamontology.org/data_2141' - Label 'Window step size'\n", + "Entity 'http://edamontology.org/data_2142' - Label 'EMBOSS graph'\n", + "Entity 'http://edamontology.org/data_2143' - Label 'EMBOSS report'\n", + "Entity 'http://edamontology.org/data_2145' - Label 'Sequence offset'\n", + "Entity 'http://edamontology.org/data_2146' - Label 'Threshold'\n", + "Entity 'http://edamontology.org/data_2147' - Label 'Protein report (transcription factor)'\n", + "Entity 'http://edamontology.org/data_2149' - Label 'Database category name'\n", + "Entity 'http://edamontology.org/data_2150' - Label 'Sequence profile name'\n", + "Entity 'http://edamontology.org/data_2151' - Label 'Color'\n", + "Entity 'http://edamontology.org/data_2152' - Label 'Rendering parameter'\n", + "Entity 'http://edamontology.org/data_2154' - Label 'Sequence name'\n", + "Entity 'http://edamontology.org/data_2156' - Label 'Date'\n", + "Entity 'http://edamontology.org/data_2157' - Label 'Word composition'\n", + "Entity 'http://edamontology.org/data_2160' - Label 'Fickett testcode plot'\n", + "Entity 'http://edamontology.org/data_2161' - Label 'Sequence similarity plot'\n", + "Entity 'http://edamontology.org/data_2162' - Label 'Helical wheel'\n", + "Entity 'http://edamontology.org/data_2163' - Label 'Helical net'\n", + "Entity 'http://edamontology.org/data_2164' - Label 'Protein sequence properties plot'\n", + "Entity 'http://edamontology.org/data_2165' - Label 'Protein ionisation curve'\n", + "Entity 'http://edamontology.org/data_2166' - Label 'Sequence composition plot'\n", + "Entity 'http://edamontology.org/data_2167' - Label 'Nucleic acid density plot'\n", + "Entity 'http://edamontology.org/data_2168' - Label 'Sequence trace image'\n", + "Entity 'http://edamontology.org/data_2169' - Label 'Nucleic acid features (siRNA)'\n", + "Entity 'http://edamontology.org/data_2173' - Label 'Sequence set (stream)'\n", + "Entity 'http://edamontology.org/data_2174' - Label 'FlyBase secondary identifier'\n", + "Entity 'http://edamontology.org/data_2176' - Label 'Cardinality'\n", + "Entity 'http://edamontology.org/data_2177' - Label 'Exactly 1'\n", + "Entity 'http://edamontology.org/data_2178' - Label '1 or more'\n", + "Entity 'http://edamontology.org/data_2179' - Label 'Exactly 2'\n", + "Entity 'http://edamontology.org/data_2180' - Label '2 or more'\n", + "Entity 'http://edamontology.org/data_2190' - Label 'Sequence checksum'\n", + "Entity 'http://edamontology.org/data_2191' - Label 'Protein features report (chemical modifications)'\n", + "Entity 'http://edamontology.org/data_2192' - Label 'Error'\n", + "Entity 'http://edamontology.org/data_2193' - Label 'Database entry metadata'\n", + "Entity 'http://edamontology.org/data_2198' - Label 'Gene cluster'\n", + "Entity 'http://edamontology.org/data_2201' - Label 'Sequence record full'\n", + "Entity 'http://edamontology.org/data_2208' - Label 'Plasmid identifier'\n", + "Entity 'http://edamontology.org/data_2209' - Label 'Mutation ID'\n", + "Entity 'http://edamontology.org/data_2212' - Label 'Mutation annotation (basic)'\n", + "Entity 'http://edamontology.org/data_2213' - Label 'Mutation annotation (prevalence)'\n", + "Entity 'http://edamontology.org/data_2214' - Label 'Mutation annotation (prognostic)'\n", + "Entity 'http://edamontology.org/data_2215' - Label 'Mutation annotation (functional)'\n", + "Entity 'http://edamontology.org/data_2216' - Label 'Codon number'\n", + "Entity 'http://edamontology.org/data_2217' - Label 'Tumor annotation'\n", + "Entity 'http://edamontology.org/data_2218' - Label 'Server metadata'\n", + "Entity 'http://edamontology.org/data_2219' - Label 'Database field name'\n", + "Entity 'http://edamontology.org/data_2220' - Label 'Sequence cluster ID (SYSTERS)'\n", + "Entity 'http://edamontology.org/data_2223' - Label 'Ontology metadata'\n", + "Entity 'http://edamontology.org/data_2235' - Label 'Raw SCOP domain classification'\n", + "Entity 'http://edamontology.org/data_2236' - Label 'Raw CATH domain classification'\n", + "Entity 'http://edamontology.org/data_2240' - Label 'Heterogen annotation'\n", + "Entity 'http://edamontology.org/data_2242' - Label 'Phylogenetic property values'\n", + "Entity 'http://edamontology.org/data_2245' - Label 'Sequence set (bootstrapped)'\n", + "Entity 'http://edamontology.org/data_2247' - Label 'Phylogenetic consensus tree'\n", + "Entity 'http://edamontology.org/data_2248' - Label 'Schema'\n", + "Entity 'http://edamontology.org/data_2249' - Label 'DTD'\n", + "Entity 'http://edamontology.org/data_2250' - Label 'XML Schema'\n", + "Entity 'http://edamontology.org/data_2251' - Label 'Relax-NG schema'\n", + "Entity 'http://edamontology.org/data_2252' - Label 'XSLT stylesheet'\n", + "Entity 'http://edamontology.org/data_2253' - Label 'Data resource definition name'\n", + "Entity 'http://edamontology.org/data_2254' - Label 'OBO file format name'\n", + "Entity 'http://edamontology.org/data_2285' - Label 'Gene ID (MIPS)'\n", + "Entity 'http://edamontology.org/data_2288' - Label 'Sequence identifier (protein)'\n", + "Entity 'http://edamontology.org/data_2289' - Label 'Sequence identifier (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_2290' - Label 'EMBL accession'\n", + "Entity 'http://edamontology.org/data_2291' - Label 'UniProt ID'\n", + "Entity 'http://edamontology.org/data_2292' - Label 'GenBank accession'\n", + "Entity 'http://edamontology.org/data_2293' - Label 'Gramene secondary identifier'\n", + "Entity 'http://edamontology.org/data_2294' - Label 'Sequence variation ID'\n", + "Entity 'http://edamontology.org/data_2295' - Label 'Gene ID'\n", + "Entity 'http://edamontology.org/data_2296' - Label 'Gene name (AceView)'\n", + "Entity 'http://edamontology.org/data_2297' - Label 'Gene ID (ECK)'\n", + "Entity 'http://edamontology.org/data_2298' - Label 'Gene ID (HGNC)'\n", + "Entity 'http://edamontology.org/data_2299' - Label 'Gene name'\n", + "Entity 'http://edamontology.org/data_2300' - Label 'Gene name (NCBI)'\n", + "Entity 'http://edamontology.org/data_2301' - Label 'SMILES string'\n", + "Entity 'http://edamontology.org/data_2302' - Label 'STRING ID'\n", + "Entity 'http://edamontology.org/data_2307' - Label 'Virus annotation'\n", + "Entity 'http://edamontology.org/data_2308' - Label 'Virus annotation (taxonomy)'\n", + "Entity 'http://edamontology.org/data_2309' - Label 'Reaction ID (SABIO-RK)'\n", + "Entity 'http://edamontology.org/data_2313' - Label 'Carbohydrate report'\n", + "Entity 'http://edamontology.org/data_2314' - Label 'GI number'\n", + "Entity 'http://edamontology.org/data_2315' - Label 'NCBI version'\n", + "Entity 'http://edamontology.org/data_2316' - Label 'Cell line name'\n", + "Entity 'http://edamontology.org/data_2317' - Label 'Cell line name (exact)'\n", + "Entity 'http://edamontology.org/data_2318' - Label 'Cell line name (truncated)'\n", + "Entity 'http://edamontology.org/data_2319' - Label 'Cell line name (no punctuation)'\n", + "Entity 'http://edamontology.org/data_2320' - Label 'Cell line name (assonant)'\n", + "Entity 'http://edamontology.org/data_2321' - Label 'Enzyme ID'\n", + "Entity 'http://edamontology.org/data_2325' - Label 'REBASE enzyme number'\n", + "Entity 'http://edamontology.org/data_2326' - Label 'DrugBank ID'\n", + "Entity 'http://edamontology.org/data_2327' - Label 'GI number (protein)'\n", + "Entity 'http://edamontology.org/data_2335' - Label 'Bit score'\n", + "Entity 'http://edamontology.org/data_2336' - Label 'Translation phase specification'\n", + "Entity 'http://edamontology.org/data_2337' - Label 'Resource metadata'\n", + "Entity 'http://edamontology.org/data_2338' - Label 'Ontology identifier'\n", + "Entity 'http://edamontology.org/data_2339' - Label 'Ontology concept name'\n", + "Entity 'http://edamontology.org/data_2340' - Label 'Genome build identifier'\n", + "Entity 'http://edamontology.org/data_2342' - Label 'Pathway or network name'\n", + "Entity 'http://edamontology.org/data_2343' - Label 'Pathway ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2344' - Label 'Pathway ID (NCI-Nature)'\n", + "Entity 'http://edamontology.org/data_2345' - Label 'Pathway ID (ConsensusPathDB)'\n", + "Entity 'http://edamontology.org/data_2346' - Label 'Sequence cluster ID (UniRef)'\n", + "Entity 'http://edamontology.org/data_2347' - Label 'Sequence cluster ID (UniRef100)'\n", + "Entity 'http://edamontology.org/data_2348' - Label 'Sequence cluster ID (UniRef90)'\n", + "Entity 'http://edamontology.org/data_2349' - Label 'Sequence cluster ID (UniRef50)'\n", + "Entity 'http://edamontology.org/data_2353' - Label 'Ontology data'\n", + "Entity 'http://edamontology.org/data_2354' - Label 'RNA family report'\n", + "Entity 'http://edamontology.org/data_2355' - Label 'RNA family identifier'\n", + "Entity 'http://edamontology.org/data_2356' - Label 'RFAM accession'\n", + "Entity 'http://edamontology.org/data_2357' - Label 'Protein signature type'\n", + "Entity 'http://edamontology.org/data_2358' - Label 'Domain-nucleic acid interaction report'\n", + "Entity 'http://edamontology.org/data_2359' - Label 'Domain-domain interactions'\n", + "Entity 'http://edamontology.org/data_2360' - Label 'Domain-domain interaction (indirect)'\n", + "Entity 'http://edamontology.org/data_2362' - Label 'Sequence accession (hybrid)'\n", + "Entity 'http://edamontology.org/data_2363' - Label '2D PAGE data'\n", + "Entity 'http://edamontology.org/data_2364' - Label '2D PAGE report'\n", + "Entity 'http://edamontology.org/data_2365' - Label 'Pathway or network accession'\n", + "Entity 'http://edamontology.org/data_2366' - Label 'Secondary structure alignment'\n", + "Entity 'http://edamontology.org/data_2367' - Label 'ASTD ID'\n", + "Entity 'http://edamontology.org/data_2368' - Label 'ASTD ID (exon)'\n", + "Entity 'http://edamontology.org/data_2369' - Label 'ASTD ID (intron)'\n", + "Entity 'http://edamontology.org/data_2370' - Label 'ASTD ID (polya)'\n", + "Entity 'http://edamontology.org/data_2371' - Label 'ASTD ID (tss)'\n", + "Entity 'http://edamontology.org/data_2372' - Label '2D PAGE spot report'\n", + "Entity 'http://edamontology.org/data_2373' - Label 'Spot ID'\n", + "Entity 'http://edamontology.org/data_2374' - Label 'Spot serial number'\n", + "Entity 'http://edamontology.org/data_2375' - Label 'Spot ID (HSC-2DPAGE)'\n", + "Entity 'http://edamontology.org/data_2378' - Label 'Protein-motif interaction'\n", + "Entity 'http://edamontology.org/data_2379' - Label 'Strain identifier'\n", + "Entity 'http://edamontology.org/data_2380' - Label 'CABRI accession'\n", + "Entity 'http://edamontology.org/data_2381' - Label 'Experiment report (genotyping)'\n", + "Entity 'http://edamontology.org/data_2382' - Label 'Genotype experiment ID'\n", + "Entity 'http://edamontology.org/data_2383' - Label 'EGA accession'\n", + "Entity 'http://edamontology.org/data_2384' - Label 'IPI protein ID'\n", + "Entity 'http://edamontology.org/data_2385' - Label 'RefSeq accession (protein)'\n", + "Entity 'http://edamontology.org/data_2386' - Label 'EPD ID'\n", + "Entity 'http://edamontology.org/data_2387' - Label 'TAIR accession'\n", + "Entity 'http://edamontology.org/data_2388' - Label 'TAIR accession (At gene)'\n", + "Entity 'http://edamontology.org/data_2389' - Label 'UniSTS accession'\n", + "Entity 'http://edamontology.org/data_2390' - Label 'UNITE accession'\n", + "Entity 'http://edamontology.org/data_2391' - Label 'UTR accession'\n", + "Entity 'http://edamontology.org/data_2392' - Label 'UniParc accession'\n", + "Entity 'http://edamontology.org/data_2393' - Label 'mFLJ/mKIAA number'\n", + "Entity 'http://edamontology.org/data_2395' - Label 'Fungi annotation'\n", + "Entity 'http://edamontology.org/data_2396' - Label 'Fungi annotation (anamorph)'\n", + "Entity 'http://edamontology.org/data_2398' - Label 'Ensembl protein ID'\n", + "Entity 'http://edamontology.org/data_2400' - Label 'Toxin annotation'\n", + "Entity 'http://edamontology.org/data_2401' - Label 'Protein report (membrane protein)'\n", + "Entity 'http://edamontology.org/data_2402' - Label 'Protein-drug interaction report'\n", + "Entity 'http://edamontology.org/data_2522' - Label 'Map data'\n", + "Entity 'http://edamontology.org/data_2523' - Label 'Phylogenetic data'\n", + "Entity 'http://edamontology.org/data_2524' - Label 'Protein data'\n", + "Entity 'http://edamontology.org/data_2525' - Label 'Nucleic acid data'\n", + "Entity 'http://edamontology.org/data_2526' - Label 'Text data'\n", + "Entity 'http://edamontology.org/data_2527' - Label 'Parameter'\n", + "Entity 'http://edamontology.org/data_2528' - Label 'Molecular data'\n", + "Entity 'http://edamontology.org/data_2529' - Label 'Molecule report'\n", + "Entity 'http://edamontology.org/data_2530' - Label 'Organism report'\n", + "Entity 'http://edamontology.org/data_2531' - Label 'Protocol'\n", + "Entity 'http://edamontology.org/data_2534' - Label 'Sequence attribute'\n", + "Entity 'http://edamontology.org/data_2535' - Label 'Sequence tag profile'\n", + "Entity 'http://edamontology.org/data_2536' - Label 'Mass spectrometry data'\n", + "Entity 'http://edamontology.org/data_2537' - Label 'Protein structure raw data'\n", + "Entity 'http://edamontology.org/data_2538' - Label 'Mutation identifier'\n", + "Entity 'http://edamontology.org/data_2539' - Label 'Alignment data'\n", + "Entity 'http://edamontology.org/data_2540' - Label 'Data index data'\n", + "Entity 'http://edamontology.org/data_2563' - Label 'Amino acid name (single letter)'\n", + "Entity 'http://edamontology.org/data_2564' - Label 'Amino acid name (three letter)'\n", + "Entity 'http://edamontology.org/data_2565' - Label 'Amino acid name (full name)'\n", + "Entity 'http://edamontology.org/data_2576' - Label 'Toxin identifier'\n", + "Entity 'http://edamontology.org/data_2578' - Label 'ArachnoServer ID'\n", + "Entity 'http://edamontology.org/data_2579' - Label 'Expressed gene list'\n", + "Entity 'http://edamontology.org/data_2580' - Label 'BindingDB Monomer ID'\n", + "Entity 'http://edamontology.org/data_2581' - Label 'GO concept name'\n", + "Entity 'http://edamontology.org/data_2582' - Label 'GO concept ID (biological process)'\n", + "Entity 'http://edamontology.org/data_2583' - Label 'GO concept ID (molecular function)'\n", + "Entity 'http://edamontology.org/data_2584' - Label 'GO concept name (cellular component)'\n", + "Entity 'http://edamontology.org/data_2586' - Label 'Northern blot image'\n", + "Entity 'http://edamontology.org/data_2587' - Label 'Blot ID'\n", + "Entity 'http://edamontology.org/data_2588' - Label 'BlotBase blot ID'\n", + "Entity 'http://edamontology.org/data_2589' - Label 'Hierarchy'\n", + "Entity 'http://edamontology.org/data_2590' - Label 'Hierarchy identifier'\n", + "Entity 'http://edamontology.org/data_2591' - Label 'Brite hierarchy ID'\n", + "Entity 'http://edamontology.org/data_2592' - Label 'Cancer type'\n", + "Entity 'http://edamontology.org/data_2593' - Label 'BRENDA organism ID'\n", + "Entity 'http://edamontology.org/data_2594' - Label 'UniGene taxon'\n", + "Entity 'http://edamontology.org/data_2595' - Label 'UTRdb taxon'\n", + "Entity 'http://edamontology.org/data_2596' - Label 'Catalogue ID'\n", + "Entity 'http://edamontology.org/data_2597' - Label 'CABRI catalogue name'\n", + "Entity 'http://edamontology.org/data_2598' - Label 'Secondary structure alignment metadata'\n", + "Entity 'http://edamontology.org/data_2599' - Label 'Molecule interaction report'\n", + "Entity 'http://edamontology.org/data_2600' - Label 'Pathway or network'\n", + "Entity 'http://edamontology.org/data_2601' - Label 'Small molecule data'\n", + "Entity 'http://edamontology.org/data_2602' - Label 'Genotype and phenotype data'\n", + "Entity 'http://edamontology.org/data_2603' - Label 'Expression data'\n", + "Entity 'http://edamontology.org/data_2605' - Label 'Compound ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2606' - Label 'RFAM name'\n", + "Entity 'http://edamontology.org/data_2608' - Label 'Reaction ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2609' - Label 'Drug ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2610' - Label 'Ensembl ID'\n", + "Entity 'http://edamontology.org/data_2611' - Label 'ICD identifier'\n", + "Entity 'http://edamontology.org/data_2612' - Label 'Sequence cluster ID (CluSTr)'\n", + "Entity 'http://edamontology.org/data_2613' - Label 'KEGG Glycan ID'\n", + "Entity 'http://edamontology.org/data_2614' - Label 'TCDB ID'\n", + "Entity 'http://edamontology.org/data_2615' - Label 'MINT ID'\n", + "Entity 'http://edamontology.org/data_2616' - Label 'DIP ID'\n", + "Entity 'http://edamontology.org/data_2617' - Label 'Signaling Gateway protein ID'\n", + "Entity 'http://edamontology.org/data_2618' - Label 'Protein modification ID'\n", + "Entity 'http://edamontology.org/data_2619' - Label 'RESID ID'\n", + "Entity 'http://edamontology.org/data_2620' - Label 'RGD ID'\n", + "Entity 'http://edamontology.org/data_2621' - Label 'TAIR accession (protein)'\n", + "Entity 'http://edamontology.org/data_2622' - Label 'Compound ID (HMDB)'\n", + "Entity 'http://edamontology.org/data_2625' - Label 'LIPID MAPS ID'\n", + "Entity 'http://edamontology.org/data_2626' - Label 'PeptideAtlas ID'\n", + "Entity 'http://edamontology.org/data_2627' - Label 'Molecular interaction ID'\n", + "Entity 'http://edamontology.org/data_2628' - Label 'BioGRID interaction ID'\n", + "Entity 'http://edamontology.org/data_2629' - Label 'Enzyme ID (MEROPS)'\n", + "Entity 'http://edamontology.org/data_2630' - Label 'Mobile genetic element ID'\n", + "Entity 'http://edamontology.org/data_2631' - Label 'ACLAME ID'\n", + "Entity 'http://edamontology.org/data_2632' - Label 'SGD ID'\n", + "Entity 'http://edamontology.org/data_2633' - Label 'Book ID'\n", + "Entity 'http://edamontology.org/data_2634' - Label 'ISBN'\n", + "Entity 'http://edamontology.org/data_2635' - Label 'Compound ID (3DMET)'\n", + "Entity 'http://edamontology.org/data_2636' - Label 'MatrixDB interaction ID'\n", + "Entity 'http://edamontology.org/data_2637' - Label 'cPath ID'\n", + "Entity 'http://edamontology.org/data_2638' - Label 'PubChem bioassay ID'\n", + "Entity 'http://edamontology.org/data_2639' - Label 'PubChem ID'\n", + "Entity 'http://edamontology.org/data_2641' - Label 'Reaction ID (MACie)'\n", + "Entity 'http://edamontology.org/data_2642' - Label 'Gene ID (miRBase)'\n", + "Entity 'http://edamontology.org/data_2643' - Label 'Gene ID (ZFIN)'\n", + "Entity 'http://edamontology.org/data_2644' - Label 'Reaction ID (Rhea)'\n", + "Entity 'http://edamontology.org/data_2645' - Label 'Pathway ID (Unipathway)'\n", + "Entity 'http://edamontology.org/data_2646' - Label 'Compound ID (ChEMBL)'\n", + "Entity 'http://edamontology.org/data_2647' - Label 'LGICdb identifier'\n", + "Entity 'http://edamontology.org/data_2648' - Label 'Reaction kinetics ID (SABIO-RK)'\n", + "Entity 'http://edamontology.org/data_2649' - Label 'PharmGKB ID'\n", + "Entity 'http://edamontology.org/data_2650' - Label 'Pathway ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2651' - Label 'Disease ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2652' - Label 'Drug ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2653' - Label 'Drug ID (TTD)'\n", + "Entity 'http://edamontology.org/data_2654' - Label 'Target ID (TTD)'\n", + "Entity 'http://edamontology.org/data_2655' - Label 'Cell type identifier'\n", + "Entity 'http://edamontology.org/data_2656' - Label 'NeuronDB ID'\n", + "Entity 'http://edamontology.org/data_2657' - Label 'NeuroMorpho ID'\n", + "Entity 'http://edamontology.org/data_2658' - Label 'Compound ID (ChemIDplus)'\n", + "Entity 'http://edamontology.org/data_2659' - Label 'Pathway ID (SMPDB)'\n", + "Entity 'http://edamontology.org/data_2660' - Label 'BioNumbers ID'\n", + "Entity 'http://edamontology.org/data_2662' - Label 'T3DB ID'\n", + "Entity 'http://edamontology.org/data_2663' - Label 'Carbohydrate identifier'\n", + "Entity 'http://edamontology.org/data_2664' - Label 'GlycomeDB ID'\n", + "Entity 'http://edamontology.org/data_2665' - Label 'LipidBank ID'\n", + "Entity 'http://edamontology.org/data_2666' - Label 'CDD ID'\n", + "Entity 'http://edamontology.org/data_2667' - Label 'MMDB ID'\n", + "Entity 'http://edamontology.org/data_2668' - Label 'iRefIndex ID'\n", + "Entity 'http://edamontology.org/data_2669' - Label 'ModelDB ID'\n", + "Entity 'http://edamontology.org/data_2670' - Label 'Pathway ID (DQCS)'\n", + "Entity 'http://edamontology.org/data_2671' - Label 'Ensembl ID (Homo sapiens)'\n", + "Entity 'http://edamontology.org/data_2672' - Label 'Ensembl ID ('Bos taurus')'\n", + "Entity 'http://edamontology.org/data_2673' - Label 'Ensembl ID ('Canis familiaris')'\n", + "Entity 'http://edamontology.org/data_2674' - Label 'Ensembl ID ('Cavia porcellus')'\n", + "Entity 'http://edamontology.org/data_2675' - Label 'Ensembl ID ('Ciona intestinalis')'\n", + "Entity 'http://edamontology.org/data_2676' - Label 'Ensembl ID ('Ciona savignyi')'\n", + "Entity 'http://edamontology.org/data_2677' - Label 'Ensembl ID ('Danio rerio')'\n", + "Entity 'http://edamontology.org/data_2678' - Label 'Ensembl ID ('Dasypus novemcinctus')'\n", + "Entity 'http://edamontology.org/data_2679' - Label 'Ensembl ID ('Echinops telfairi')'\n", + "Entity 'http://edamontology.org/data_2680' - Label 'Ensembl ID ('Erinaceus europaeus')'\n", + "Entity 'http://edamontology.org/data_2681' - Label 'Ensembl ID ('Felis catus')'\n", + "Entity 'http://edamontology.org/data_2682' - Label 'Ensembl ID ('Gallus gallus')'\n", + "Entity 'http://edamontology.org/data_2683' - Label 'Ensembl ID ('Gasterosteus aculeatus')'\n", + "Entity 'http://edamontology.org/data_2684' - Label 'Ensembl ID ('Homo sapiens')'\n", + "Entity 'http://edamontology.org/data_2685' - Label 'Ensembl ID ('Loxodonta africana')'\n", + "Entity 'http://edamontology.org/data_2686' - Label 'Ensembl ID ('Macaca mulatta')'\n", + "Entity 'http://edamontology.org/data_2687' - Label 'Ensembl ID ('Monodelphis domestica')'\n", + "Entity 'http://edamontology.org/data_2688' - Label 'Ensembl ID ('Mus musculus')'\n", + "Entity 'http://edamontology.org/data_2689' - Label 'Ensembl ID ('Myotis lucifugus')'\n", + "Entity 'http://edamontology.org/data_2690' - Label 'Ensembl ID (\"Ornithorhynchus anatinus\")'\n", + "Entity 'http://edamontology.org/data_2691' - Label 'Ensembl ID ('Oryctolagus cuniculus')'\n", + "Entity 'http://edamontology.org/data_2692' - Label 'Ensembl ID ('Oryzias latipes')'\n", + "Entity 'http://edamontology.org/data_2693' - Label 'Ensembl ID ('Otolemur garnettii')'\n", + "Entity 'http://edamontology.org/data_2694' - Label 'Ensembl ID ('Pan troglodytes')'\n", + "Entity 'http://edamontology.org/data_2695' - Label 'Ensembl ID ('Rattus norvegicus')'\n", + "Entity 'http://edamontology.org/data_2696' - Label 'Ensembl ID ('Spermophilus tridecemlineatus')'\n", + "Entity 'http://edamontology.org/data_2697' - Label 'Ensembl ID ('Takifugu rubripes')'\n", + "Entity 'http://edamontology.org/data_2698' - Label 'Ensembl ID ('Tupaia belangeri')'\n", + "Entity 'http://edamontology.org/data_2699' - Label 'Ensembl ID ('Xenopus tropicalis')'\n", + "Entity 'http://edamontology.org/data_2700' - Label 'CATH identifier'\n", + "Entity 'http://edamontology.org/data_2701' - Label 'CATH node ID (family)'\n", + "Entity 'http://edamontology.org/data_2702' - Label 'Enzyme ID (CAZy)'\n", + "Entity 'http://edamontology.org/data_2704' - Label 'Clone ID (IMAGE)'\n", + "Entity 'http://edamontology.org/data_2705' - Label 'GO concept ID (cellular component)'\n", + "Entity 'http://edamontology.org/data_2706' - Label 'Chromosome name (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2709' - Label 'CleanEx entry name'\n", + "Entity 'http://edamontology.org/data_2710' - Label 'CleanEx dataset code'\n", + "Entity 'http://edamontology.org/data_2711' - Label 'Genome report'\n", + "Entity 'http://edamontology.org/data_2713' - Label 'Protein ID (CORUM)'\n", + "Entity 'http://edamontology.org/data_2714' - Label 'CDD PSSM-ID'\n", + "Entity 'http://edamontology.org/data_2715' - Label 'Protein ID (CuticleDB)'\n", + "Entity 'http://edamontology.org/data_2716' - Label 'DBD ID'\n", + "Entity 'http://edamontology.org/data_2717' - Label 'Oligonucleotide probe annotation'\n", + "Entity 'http://edamontology.org/data_2718' - Label 'Oligonucleotide ID'\n", + "Entity 'http://edamontology.org/data_2719' - Label 'dbProbe ID'\n", + "Entity 'http://edamontology.org/data_2720' - Label 'Dinucleotide property'\n", + "Entity 'http://edamontology.org/data_2721' - Label 'DiProDB ID'\n", + "Entity 'http://edamontology.org/data_2722' - Label 'Protein features report (disordered structure)'\n", + "Entity 'http://edamontology.org/data_2723' - Label 'Protein ID (DisProt)'\n", + "Entity 'http://edamontology.org/data_2724' - Label 'Embryo report'\n", + "Entity 'http://edamontology.org/data_2725' - Label 'Ensembl transcript ID'\n", + "Entity 'http://edamontology.org/data_2726' - Label 'Inhibitor annotation'\n", + "Entity 'http://edamontology.org/data_2727' - Label 'Promoter ID'\n", + "Entity 'http://edamontology.org/data_2728' - Label 'EST accession'\n", + "Entity 'http://edamontology.org/data_2729' - Label 'COGEME EST ID'\n", + "Entity 'http://edamontology.org/data_2730' - Label 'COGEME unisequence ID'\n", + "Entity 'http://edamontology.org/data_2731' - Label 'Protein family ID (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_2732' - Label 'Family name'\n", + "Entity 'http://edamontology.org/data_2733' - Label 'Genus name (virus)'\n", + "Entity 'http://edamontology.org/data_2734' - Label 'Family name (virus)'\n", + "Entity 'http://edamontology.org/data_2735' - Label 'Database name (SwissRegulon)'\n", + "Entity 'http://edamontology.org/data_2736' - Label 'Sequence feature ID (SwissRegulon)'\n", + "Entity 'http://edamontology.org/data_2737' - Label 'FIG ID'\n", + "Entity 'http://edamontology.org/data_2738' - Label 'Gene ID (Xenbase)'\n", + "Entity 'http://edamontology.org/data_2739' - Label 'Gene ID (Genolist)'\n", + "Entity 'http://edamontology.org/data_2740' - Label 'Gene name (Genolist)'\n", + "Entity 'http://edamontology.org/data_2741' - Label 'ABS ID'\n", + "Entity 'http://edamontology.org/data_2742' - Label 'AraC-XylS ID'\n", + "Entity 'http://edamontology.org/data_2743' - Label 'Gene name (HUGO)'\n", + "Entity 'http://edamontology.org/data_2744' - Label 'Locus ID (PseudoCAP)'\n", + "Entity 'http://edamontology.org/data_2745' - Label 'Locus ID (UTR)'\n", + "Entity 'http://edamontology.org/data_2746' - Label 'MonosaccharideDB ID'\n", + "Entity 'http://edamontology.org/data_2747' - Label 'Database name (CMD)'\n", + "Entity 'http://edamontology.org/data_2748' - Label 'Database name (Osteogenesis)'\n", + "Entity 'http://edamontology.org/data_2749' - Label 'Genome identifier'\n", + "Entity 'http://edamontology.org/data_2751' - Label 'GenomeReviews ID'\n", + "Entity 'http://edamontology.org/data_2752' - Label 'GlycoMap ID'\n", + "Entity 'http://edamontology.org/data_2753' - Label 'Carbohydrate conformational map'\n", + "Entity 'http://edamontology.org/data_2755' - Label 'Transcription factor name'\n", + "Entity 'http://edamontology.org/data_2756' - Label 'TCID'\n", + "Entity 'http://edamontology.org/data_2757' - Label 'Pfam domain name'\n", + "Entity 'http://edamontology.org/data_2758' - Label 'Pfam clan ID'\n", + "Entity 'http://edamontology.org/data_2759' - Label 'Gene ID (VectorBase)'\n", + "Entity 'http://edamontology.org/data_2761' - Label 'UTRSite ID'\n", + "Entity 'http://edamontology.org/data_2762' - Label 'Sequence signature report'\n", + "Entity 'http://edamontology.org/data_2763' - Label 'Locus annotation'\n", + "Entity 'http://edamontology.org/data_2764' - Label 'Protein name (UniProt)'\n", + "Entity 'http://edamontology.org/data_2765' - Label 'Term ID list'\n", + "Entity 'http://edamontology.org/data_2766' - Label 'HAMAP ID'\n", + "Entity 'http://edamontology.org/data_2767' - Label 'Identifier with metadata'\n", + "Entity 'http://edamontology.org/data_2768' - Label 'Gene symbol annotation'\n", + "Entity 'http://edamontology.org/data_2769' - Label 'Transcript ID'\n", + "Entity 'http://edamontology.org/data_2770' - Label 'HIT ID'\n", + "Entity 'http://edamontology.org/data_2771' - Label 'HIX ID'\n", + "Entity 'http://edamontology.org/data_2772' - Label 'HPA antibody id'\n", + "Entity 'http://edamontology.org/data_2773' - Label 'IMGT/HLA ID'\n", + "Entity 'http://edamontology.org/data_2774' - Label 'Gene ID (JCVI)'\n", + "Entity 'http://edamontology.org/data_2775' - Label 'Kinase name'\n", + "Entity 'http://edamontology.org/data_2776' - Label 'ConsensusPathDB entity ID'\n", + "Entity 'http://edamontology.org/data_2777' - Label 'ConsensusPathDB entity name'\n", + "Entity 'http://edamontology.org/data_2778' - Label 'CCAP strain number'\n", + "Entity 'http://edamontology.org/data_2779' - Label 'Stock number'\n", + "Entity 'http://edamontology.org/data_2780' - Label 'Stock number (TAIR)'\n", + "Entity 'http://edamontology.org/data_2781' - Label 'REDIdb ID'\n", + "Entity 'http://edamontology.org/data_2782' - Label 'SMART domain name'\n", + "Entity 'http://edamontology.org/data_2783' - Label 'Protein family ID (PANTHER)'\n", + "Entity 'http://edamontology.org/data_2784' - Label 'RNAVirusDB ID'\n", + "Entity 'http://edamontology.org/data_2785' - Label 'Virus identifier'\n", + "Entity 'http://edamontology.org/data_2786' - Label 'NCBI Genome Project ID'\n", + "Entity 'http://edamontology.org/data_2787' - Label 'NCBI genome accession'\n", + "Entity 'http://edamontology.org/data_2788' - Label 'Sequence profile data'\n", + "Entity 'http://edamontology.org/data_2789' - Label 'Protein ID (TopDB)'\n", + "Entity 'http://edamontology.org/data_2790' - Label 'Gel ID'\n", + "Entity 'http://edamontology.org/data_2791' - Label 'Reference map name (SWISS-2DPAGE)'\n", + "Entity 'http://edamontology.org/data_2792' - Label 'Protein ID (PeroxiBase)'\n", + "Entity 'http://edamontology.org/data_2793' - Label 'SISYPHUS ID'\n", + "Entity 'http://edamontology.org/data_2794' - Label 'ORF ID'\n", + "Entity 'http://edamontology.org/data_2795' - Label 'ORF identifier'\n", + "Entity 'http://edamontology.org/data_2796' - Label 'LINUCS ID'\n", + "Entity 'http://edamontology.org/data_2797' - Label 'Protein ID (LGICdb)'\n", + "Entity 'http://edamontology.org/data_2798' - Label 'MaizeDB ID'\n", + "Entity 'http://edamontology.org/data_2799' - Label 'Gene ID (MfunGD)'\n", + "Entity 'http://edamontology.org/data_2800' - Label 'Orpha number'\n", + "Entity 'http://edamontology.org/data_2802' - Label 'Protein ID (EcID)'\n", + "Entity 'http://edamontology.org/data_2803' - Label 'Clone ID (RefSeq)'\n", + "Entity 'http://edamontology.org/data_2804' - Label 'Protein ID (ConoServer)'\n", + "Entity 'http://edamontology.org/data_2805' - Label 'GeneSNP ID'\n", + "Entity 'http://edamontology.org/data_2812' - Label 'Lipid identifier'\n", + "Entity 'http://edamontology.org/data_2831' - Label 'Databank'\n", + "Entity 'http://edamontology.org/data_2832' - Label 'Web portal'\n", + "Entity 'http://edamontology.org/data_2835' - Label 'Gene ID (VBASE2)'\n", + "Entity 'http://edamontology.org/data_2836' - Label 'DPVweb ID'\n", + "Entity 'http://edamontology.org/data_2837' - Label 'Pathway ID (BioSystems)'\n", + "Entity 'http://edamontology.org/data_2838' - Label 'Experimental data (proteomics)'\n", + "Entity 'http://edamontology.org/data_2849' - Label 'Abstract'\n", + "Entity 'http://edamontology.org/data_2850' - Label 'Lipid structure'\n", + "Entity 'http://edamontology.org/data_2851' - Label 'Drug structure'\n", + "Entity 'http://edamontology.org/data_2852' - Label 'Toxin structure'\n", + "Entity 'http://edamontology.org/data_2854' - Label 'Position-specific scoring matrix'\n", + "Entity 'http://edamontology.org/data_2855' - Label 'Distance matrix'\n", + "Entity 'http://edamontology.org/data_2856' - Label 'Structural distance matrix'\n", + "Entity 'http://edamontology.org/data_2857' - Label 'Article metadata'\n", + "Entity 'http://edamontology.org/data_2858' - Label 'Ontology concept'\n", + "Entity 'http://edamontology.org/data_2865' - Label 'Codon usage bias'\n", + "Entity 'http://edamontology.org/data_2866' - Label 'Northern blot report'\n", + "Entity 'http://edamontology.org/data_2870' - Label 'Radiation hybrid map'\n", + "Entity 'http://edamontology.org/data_2872' - Label 'ID list'\n", + "Entity 'http://edamontology.org/data_2873' - Label 'Phylogenetic gene frequencies data'\n", + "Entity 'http://edamontology.org/data_2874' - Label 'Sequence set (polymorphic)'\n", + "Entity 'http://edamontology.org/data_2875' - Label 'DRCAT resource'\n", + "Entity 'http://edamontology.org/data_2877' - Label 'Protein complex'\n", + "Entity 'http://edamontology.org/data_2878' - Label 'Protein structural motif'\n", + "Entity 'http://edamontology.org/data_2879' - Label 'Lipid report'\n", + "Entity 'http://edamontology.org/data_2880' - Label 'Secondary structure image'\n", + "Entity 'http://edamontology.org/data_2881' - Label 'Secondary structure report'\n", + "Entity 'http://edamontology.org/data_2882' - Label 'DNA features'\n", + "Entity 'http://edamontology.org/data_2883' - Label 'RNA features report'\n", + "Entity 'http://edamontology.org/data_2884' - Label 'Plot'\n", + "Entity 'http://edamontology.org/data_2886' - Label 'Protein sequence record'\n", + "Entity 'http://edamontology.org/data_2887' - Label 'Nucleic acid sequence record'\n", + "Entity 'http://edamontology.org/data_2888' - Label 'Protein sequence record (full)'\n", + "Entity 'http://edamontology.org/data_2889' - Label 'Nucleic acid sequence record (full)'\n", + "Entity 'http://edamontology.org/data_2891' - Label 'Biological model accession'\n", + "Entity 'http://edamontology.org/data_2892' - Label 'Cell type name'\n", + "Entity 'http://edamontology.org/data_2893' - Label 'Cell type accession'\n", + "Entity 'http://edamontology.org/data_2894' - Label 'Compound accession'\n", + "Entity 'http://edamontology.org/data_2895' - Label 'Drug accession'\n", + "Entity 'http://edamontology.org/data_2896' - Label 'Toxin name'\n", + "Entity 'http://edamontology.org/data_2897' - Label 'Toxin accession'\n", + "Entity 'http://edamontology.org/data_2898' - Label 'Monosaccharide accession'\n", + "Entity 'http://edamontology.org/data_2899' - Label 'Drug name'\n", + "Entity 'http://edamontology.org/data_2900' - Label 'Carbohydrate accession'\n", + "Entity 'http://edamontology.org/data_2901' - Label 'Molecule accession'\n", + "Entity 'http://edamontology.org/data_2902' - Label 'Data resource definition accession'\n", + "Entity 'http://edamontology.org/data_2903' - Label 'Genome accession'\n", + "Entity 'http://edamontology.org/data_2904' - Label 'Map accession'\n", + "Entity 'http://edamontology.org/data_2905' - Label 'Lipid accession'\n", + "Entity 'http://edamontology.org/data_2906' - Label 'Peptide ID'\n", + "Entity 'http://edamontology.org/data_2907' - Label 'Protein accession'\n", + "Entity 'http://edamontology.org/data_2908' - Label 'Organism accession'\n", + "Entity 'http://edamontology.org/data_2909' - Label 'Organism name'\n", + "Entity 'http://edamontology.org/data_2910' - Label 'Protein family accession'\n", + "Entity 'http://edamontology.org/data_2911' - Label 'Transcription factor accession'\n", + "Entity 'http://edamontology.org/data_2912' - Label 'Strain accession'\n", + "Entity 'http://edamontology.org/data_2913' - Label 'Virus identifier'\n", + "Entity 'http://edamontology.org/data_2914' - Label 'Sequence features metadata'\n", + "Entity 'http://edamontology.org/data_2915' - Label 'Gramene identifier'\n", + "Entity 'http://edamontology.org/data_2916' - Label 'DDBJ accession'\n", + "Entity 'http://edamontology.org/data_2917' - Label 'ConsensusPathDB identifier'\n", + "Entity 'http://edamontology.org/data_2925' - Label 'Sequence data'\n", + "Entity 'http://edamontology.org/data_2927' - Label 'Codon usage'\n", + "Entity 'http://edamontology.org/data_2954' - Label 'Article report'\n", + "Entity 'http://edamontology.org/data_2955' - Label 'Sequence report'\n", + "Entity 'http://edamontology.org/data_2956' - Label 'Protein secondary structure'\n", + "Entity 'http://edamontology.org/data_2957' - Label 'Hopp and Woods plot'\n", + "Entity 'http://edamontology.org/data_2958' - Label 'Nucleic acid melting curve'\n", + "Entity 'http://edamontology.org/data_2959' - Label 'Nucleic acid probability profile'\n", + "Entity 'http://edamontology.org/data_2960' - Label 'Nucleic acid temperature profile'\n", + "Entity 'http://edamontology.org/data_2961' - Label 'Gene regulatory network report'\n", + "Entity 'http://edamontology.org/data_2965' - Label '2D PAGE gel report'\n", + "Entity 'http://edamontology.org/data_2966' - Label 'Oligonucleotide probe sets annotation'\n", + "Entity 'http://edamontology.org/data_2967' - Label 'Microarray image'\n", + "Entity 'http://edamontology.org/data_2968' - Label 'Image'\n", + "Entity 'http://edamontology.org/data_2969' - Label 'Sequence image'\n", + "Entity 'http://edamontology.org/data_2970' - Label 'Protein hydropathy data'\n", + "Entity 'http://edamontology.org/data_2971' - Label 'Workflow data'\n", + "Entity 'http://edamontology.org/data_2972' - Label 'Workflow'\n", + "Entity 'http://edamontology.org/data_2973' - Label 'Secondary structure data'\n", + "Entity 'http://edamontology.org/data_2974' - Label 'Protein sequence (raw)'\n", + "Entity 'http://edamontology.org/data_2975' - Label 'Nucleic acid sequence (raw)'\n", + "Entity 'http://edamontology.org/data_2976' - Label 'Protein sequence'\n", + "Entity 'http://edamontology.org/data_2977' - Label 'Nucleic acid sequence'\n", + "Entity 'http://edamontology.org/data_2978' - Label 'Reaction data'\n", + "Entity 'http://edamontology.org/data_2979' - Label 'Peptide property'\n", + "Entity 'http://edamontology.org/data_2980' - Label 'Protein classification'\n", + "Entity 'http://edamontology.org/data_2981' - Label 'Sequence motif data'\n", + "Entity 'http://edamontology.org/data_2982' - Label 'Sequence profile data'\n", + "Entity 'http://edamontology.org/data_2983' - Label 'Pathway or network data'\n", + "Entity 'http://edamontology.org/data_2984' - Label 'Pathway or network report'\n", + "Entity 'http://edamontology.org/data_2985' - Label 'Nucleic acid thermodynamic data'\n", + "Entity 'http://edamontology.org/data_2986' - Label 'Nucleic acid classification'\n", + "Entity 'http://edamontology.org/data_2987' - Label 'Classification report'\n", + "Entity 'http://edamontology.org/data_2989' - Label 'Protein features report (key folding sites)'\n", + "Entity 'http://edamontology.org/data_2991' - Label 'Protein geometry data'\n", + "Entity 'http://edamontology.org/data_2992' - Label 'Protein structure image'\n", + "Entity 'http://edamontology.org/data_2994' - Label 'Phylogenetic character weights'\n", + "Entity 'http://edamontology.org/data_3002' - Label 'Annotation track'\n", + "Entity 'http://edamontology.org/data_3021' - Label 'UniProt accession'\n", + "Entity 'http://edamontology.org/data_3022' - Label 'NCBI genetic code ID'\n", + "Entity 'http://edamontology.org/data_3025' - Label 'Ontology concept identifier'\n", + "Entity 'http://edamontology.org/data_3026' - Label 'GO concept name (biological process)'\n", + "Entity 'http://edamontology.org/data_3027' - Label 'GO concept name (molecular function)'\n", + "Entity 'http://edamontology.org/data_3028' - Label 'Taxonomy'\n", + "Entity 'http://edamontology.org/data_3029' - Label 'Protein ID (EMBL/GenBank/DDBJ)'\n", + "Entity 'http://edamontology.org/data_3031' - Label 'Core data'\n", + "Entity 'http://edamontology.org/data_3034' - Label 'Sequence feature identifier'\n", + "Entity 'http://edamontology.org/data_3035' - Label 'Structure identifier'\n", + "Entity 'http://edamontology.org/data_3036' - Label 'Matrix identifier'\n", + "Entity 'http://edamontology.org/data_3085' - Label 'Protein sequence composition'\n", + "Entity 'http://edamontology.org/data_3086' - Label 'Nucleic acid sequence composition (report)'\n", + "Entity 'http://edamontology.org/data_3101' - Label 'Protein domain classification node'\n", + "Entity 'http://edamontology.org/data_3102' - Label 'CAS number'\n", + "Entity 'http://edamontology.org/data_3103' - Label 'ATC code'\n", + "Entity 'http://edamontology.org/data_3104' - Label 'UNII'\n", + "Entity 'http://edamontology.org/data_3105' - Label 'Geotemporal metadata'\n", + "Entity 'http://edamontology.org/data_3106' - Label 'System metadata'\n", + "Entity 'http://edamontology.org/data_3107' - Label 'Sequence feature name'\n", + "Entity 'http://edamontology.org/data_3108' - Label 'Experimental measurement'\n", + "Entity 'http://edamontology.org/data_3110' - Label 'Raw microarray data'\n", + "Entity 'http://edamontology.org/data_3111' - Label 'Processed microarray data'\n", + "Entity 'http://edamontology.org/data_3112' - Label 'Gene expression matrix'\n", + "Entity 'http://edamontology.org/data_3113' - Label 'Sample annotation'\n", + "Entity 'http://edamontology.org/data_3115' - Label 'Microarray metadata'\n", + "Entity 'http://edamontology.org/data_3116' - Label 'Microarray protocol annotation'\n", + "Entity 'http://edamontology.org/data_3117' - Label 'Microarray hybridisation data'\n", + "Entity 'http://edamontology.org/data_3119' - Label 'Sequence features (compositionally-biased regions)'\n", + "Entity 'http://edamontology.org/data_3122' - Label 'Nucleic acid features (difference and change)'\n", + "Entity 'http://edamontology.org/data_3128' - Label 'Nucleic acid structure report'\n", + "Entity 'http://edamontology.org/data_3129' - Label 'Protein features report (repeats)'\n", + "Entity 'http://edamontology.org/data_3130' - Label 'Sequence motif matches (protein)'\n", + "Entity 'http://edamontology.org/data_3131' - Label 'Sequence motif matches (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_3132' - Label 'Nucleic acid features (d-loop)'\n", + "Entity 'http://edamontology.org/data_3133' - Label 'Nucleic acid features (stem loop)'\n", + "Entity 'http://edamontology.org/data_3134' - Label 'Gene transcript report'\n", + "Entity 'http://edamontology.org/data_3137' - Label 'Non-coding RNA'\n", + "Entity 'http://edamontology.org/data_3138' - Label 'Transcriptional features (report)'\n", + "Entity 'http://edamontology.org/data_3140' - Label 'Nucleic acid features (immunoglobulin gene structure)'\n", + "Entity 'http://edamontology.org/data_3141' - Label 'SCOP class'\n", + "Entity 'http://edamontology.org/data_3142' - Label 'SCOP fold'\n", + "Entity 'http://edamontology.org/data_3143' - Label 'SCOP superfamily'\n", + "Entity 'http://edamontology.org/data_3144' - Label 'SCOP family'\n", + "Entity 'http://edamontology.org/data_3145' - Label 'SCOP protein'\n", + "Entity 'http://edamontology.org/data_3146' - Label 'SCOP species'\n", + "Entity 'http://edamontology.org/data_3147' - Label 'Mass spectrometry experiment'\n", + "Entity 'http://edamontology.org/data_3148' - Label 'Gene family report'\n", + "Entity 'http://edamontology.org/data_3153' - Label 'Protein image'\n", + "Entity 'http://edamontology.org/data_3154' - Label 'Protein alignment'\n", + "Entity 'http://edamontology.org/data_3165' - Label 'NGS experiment'\n", + "Entity 'http://edamontology.org/data_3181' - Label 'Sequence assembly report'\n", + "Entity 'http://edamontology.org/data_3210' - Label 'Genome index'\n", + "Entity 'http://edamontology.org/data_3231' - Label 'GWAS report'\n", + "Entity 'http://edamontology.org/data_3236' - Label 'Cytoband position'\n", + "Entity 'http://edamontology.org/data_3238' - Label 'Cell type ontology ID'\n", + "Entity 'http://edamontology.org/data_3241' - Label 'Kinetic model'\n", + "Entity 'http://edamontology.org/data_3264' - Label 'COSMIC ID'\n", + "Entity 'http://edamontology.org/data_3265' - Label 'HGMD ID'\n", + "Entity 'http://edamontology.org/data_3266' - Label 'Sequence assembly ID'\n", + "Entity 'http://edamontology.org/data_3268' - Label 'Sequence feature type'\n", + "Entity 'http://edamontology.org/data_3269' - Label 'Gene homology (report)'\n", + "Entity 'http://edamontology.org/data_3270' - Label 'Ensembl gene tree ID'\n", + "Entity 'http://edamontology.org/data_3271' - Label 'Gene tree'\n", + "Entity 'http://edamontology.org/data_3272' - Label 'Species tree'\n", + "Entity 'http://edamontology.org/data_3273' - Label 'Sample ID'\n", + "Entity 'http://edamontology.org/data_3274' - Label 'MGI accession'\n", + "Entity 'http://edamontology.org/data_3275' - Label 'Phenotype name'\n", + "Entity 'http://edamontology.org/data_3354' - Label 'Transition matrix'\n", + "Entity 'http://edamontology.org/data_3355' - Label 'Emission matrix'\n", + "Entity 'http://edamontology.org/data_3356' - Label 'Hidden Markov model'\n", + "Entity 'http://edamontology.org/data_3358' - Label 'Format identifier'\n", + "Entity 'http://edamontology.org/data_3424' - Label 'Raw image'\n", + "Entity 'http://edamontology.org/data_3425' - Label 'Carbohydrate property'\n", + "Entity 'http://edamontology.org/data_3426' - Label 'Proteomics experiment report'\n", + "Entity 'http://edamontology.org/data_3427' - Label 'RNAi report'\n", + "Entity 'http://edamontology.org/data_3428' - Label 'Simulation experiment report'\n", + "Entity 'http://edamontology.org/data_3442' - Label 'MRI image'\n", + "Entity 'http://edamontology.org/data_3449' - Label 'Cell migration track image'\n", + "Entity 'http://edamontology.org/data_3451' - Label 'Rate of association'\n", + "Entity 'http://edamontology.org/data_3479' - Label 'Gene order'\n", + "Entity 'http://edamontology.org/data_3483' - Label 'Spectrum'\n", + "Entity 'http://edamontology.org/data_3488' - Label 'NMR spectrum'\n", + "Entity 'http://edamontology.org/data_3490' - Label 'Chemical structure sketch'\n", + "Entity 'http://edamontology.org/data_3492' - Label 'Nucleic acid signature'\n", + "Entity 'http://edamontology.org/data_3494' - Label 'DNA sequence'\n", + "Entity 'http://edamontology.org/data_3495' - Label 'RNA sequence'\n", + "Entity 'http://edamontology.org/data_3496' - Label 'RNA sequence (raw)'\n", + "Entity 'http://edamontology.org/data_3497' - Label 'DNA sequence (raw)'\n", + "Entity 'http://edamontology.org/data_3498' - Label 'Sequence variations'\n", + "Entity 'http://edamontology.org/data_3505' - Label 'Bibliography'\n", + "Entity 'http://edamontology.org/data_3509' - Label 'Ontology mapping'\n", + "Entity 'http://edamontology.org/data_3546' - Label 'Image metadata'\n", + "Entity 'http://edamontology.org/data_3558' - Label 'Clinical trial report'\n", + "Entity 'http://edamontology.org/data_3567' - Label 'Reference sample report'\n", + "Entity 'http://edamontology.org/data_3568' - Label 'Gene Expression Atlas Experiment ID'\n", + "Entity 'http://edamontology.org/data_3667' - Label 'Disease identifier'\n", + "Entity 'http://edamontology.org/data_3668' - Label 'Disease name'\n", + "Entity 'http://edamontology.org/data_3669' - Label 'Training material'\n", + "Entity 'http://edamontology.org/data_3670' - Label 'Online course'\n", + "Entity 'http://edamontology.org/data_3671' - Label 'Text'\n", + "Entity 'http://edamontology.org/data_3707' - Label 'Biodiversity data'\n", + "Entity 'http://edamontology.org/data_3716' - Label 'Biosafety report'\n", + "Entity 'http://edamontology.org/data_3717' - Label 'Isolation report'\n", + "Entity 'http://edamontology.org/data_3718' - Label 'Pathogenicity report'\n", + "Entity 'http://edamontology.org/data_3719' - Label 'Biosafety classification'\n", + "Entity 'http://edamontology.org/data_3720' - Label 'Geographic location'\n", + "Entity 'http://edamontology.org/data_3721' - Label 'Isolation source'\n", + "Entity 'http://edamontology.org/data_3722' - Label 'Physiology parameter'\n", + "Entity 'http://edamontology.org/data_3723' - Label 'Morphology parameter'\n", + "Entity 'http://edamontology.org/data_3724' - Label 'Cultivation parameter'\n", + "Entity 'http://edamontology.org/data_3732' - Label 'Sequencing metadata name'\n", + "Entity 'http://edamontology.org/data_3733' - Label 'Flow cell identifier'\n", + "Entity 'http://edamontology.org/data_3734' - Label 'Lane identifier'\n", + "Entity 'http://edamontology.org/data_3735' - Label 'Run number'\n", + "Entity 'http://edamontology.org/data_3736' - Label 'Ecological data'\n", + "Entity 'http://edamontology.org/data_3737' - Label 'Alpha diversity data'\n", + "Entity 'http://edamontology.org/data_3738' - Label 'Beta diversity data'\n", + "Entity 'http://edamontology.org/data_3739' - Label 'Gamma diversity data'\n", + "Entity 'http://edamontology.org/data_3743' - Label 'Ordination plot'\n", + "Entity 'http://edamontology.org/data_3753' - Label 'Over-representation data'\n", + "Entity 'http://edamontology.org/data_3754' - Label 'GO-term enrichment data'\n", + "Entity 'http://edamontology.org/data_3756' - Label 'Localisation score'\n", + "Entity 'http://edamontology.org/data_3757' - Label 'Unimod ID'\n", + "Entity 'http://edamontology.org/data_3759' - Label 'ProteomeXchange ID'\n", + "Entity 'http://edamontology.org/data_3768' - Label 'Clustered expression profiles'\n", + "Entity 'http://edamontology.org/data_3769' - Label 'BRENDA ontology concept ID'\n", + "Entity 'http://edamontology.org/data_3779' - Label 'Annotated text'\n", + "Entity 'http://edamontology.org/data_3786' - Label 'Query script'\n", + "Entity 'http://edamontology.org/data_3805' - Label '3D EM Map'\n", + "Entity 'http://edamontology.org/data_3806' - Label '3D EM Mask'\n", + "Entity 'http://edamontology.org/data_3807' - Label 'EM Movie'\n", + "Entity 'http://edamontology.org/data_3808' - Label 'EM Micrograph'\n", + "Entity 'http://edamontology.org/data_3842' - Label 'Molecular simulation data'\n", + "Entity 'http://edamontology.org/data_3856' - Label 'RNA central ID'\n", + "Entity 'http://edamontology.org/data_3861' - Label 'Electronic health record'\n", + "Entity 'http://edamontology.org/data_3869' - Label 'Simulation'\n", + "Entity 'http://edamontology.org/data_3870' - Label 'Trajectory data'\n", + "Entity 'http://edamontology.org/data_3871' - Label 'Forcefield parameters'\n", + "Entity 'http://edamontology.org/data_3872' - Label 'Topology data'\n", + "Entity 'http://edamontology.org/data_3905' - Label 'Histogram'\n", + "Entity 'http://edamontology.org/data_3914' - Label 'Quality control report'\n", + "Entity 'http://edamontology.org/data_3917' - Label 'Count matrix'\n", + "Entity 'http://edamontology.org/data_3924' - Label 'DNA structure alignment'\n", + "Entity 'http://edamontology.org/data_3932' - Label 'Q-value'\n", + "Entity 'http://edamontology.org/data_3949' - Label 'Profile HMM'\n", + "Entity 'http://edamontology.org/data_3952' - Label 'Pathway ID (WikiPathways)'\n", + "Entity 'http://edamontology.org/data_3953' - Label 'Pathway overrepresentation data'\n", + "Entity 'http://edamontology.org/data_4022' - Label 'ORCID Identifier'\n", + "Entity 'http://edamontology.org/format_1196' - Label 'SMILES'\n", + "Entity 'http://edamontology.org/format_1197' - Label 'InChI'\n", + "Entity 'http://edamontology.org/format_1198' - Label 'mf'\n", + "Entity 'http://edamontology.org/format_1199' - Label 'InChIKey'\n", + "Entity 'http://edamontology.org/format_1200' - Label 'smarts'\n", + "Entity 'http://edamontology.org/format_1206' - Label 'unambiguous pure'\n", + "Entity 'http://edamontology.org/format_1207' - Label 'nucleotide'\n", + "Entity 'http://edamontology.org/format_1208' - Label 'protein'\n", + "Entity 'http://edamontology.org/format_1209' - Label 'consensus'\n", + "Entity 'http://edamontology.org/format_1210' - Label 'pure nucleotide'\n", + "Entity 'http://edamontology.org/format_1211' - Label 'unambiguous pure nucleotide'\n", + "Entity 'http://edamontology.org/format_1212' - Label 'dna'\n", + "Entity 'http://edamontology.org/format_1213' - Label 'rna'\n", + "Entity 'http://edamontology.org/format_1214' - Label 'unambiguous pure dna'\n", + "Entity 'http://edamontology.org/format_1215' - Label 'pure dna'\n", + "Entity 'http://edamontology.org/format_1216' - Label 'unambiguous pure rna sequence'\n", + "Entity 'http://edamontology.org/format_1217' - Label 'pure rna'\n", + "Entity 'http://edamontology.org/format_1218' - Label 'unambiguous pure protein'\n", + "Entity 'http://edamontology.org/format_1219' - Label 'pure protein'\n", + "Entity 'http://edamontology.org/format_1228' - Label 'UniGene entry format'\n", + "Entity 'http://edamontology.org/format_1247' - Label 'COG sequence cluster format'\n", + "Entity 'http://edamontology.org/format_1248' - Label 'EMBL feature location'\n", + "Entity 'http://edamontology.org/format_1295' - Label 'quicktandem'\n", + "Entity 'http://edamontology.org/format_1296' - Label 'Sanger inverted repeats'\n", + "Entity 'http://edamontology.org/format_1297' - Label 'EMBOSS repeat'\n", + "Entity 'http://edamontology.org/format_1316' - Label 'est2genome format'\n", + "Entity 'http://edamontology.org/format_1318' - Label 'restrict format'\n", + "Entity 'http://edamontology.org/format_1319' - Label 'restover format'\n", + "Entity 'http://edamontology.org/format_1320' - Label 'REBASE restriction sites'\n", + "Entity 'http://edamontology.org/format_1332' - Label 'FASTA search results format'\n", + "Entity 'http://edamontology.org/format_1333' - Label 'BLAST results'\n", + "Entity 'http://edamontology.org/format_1334' - Label 'mspcrunch'\n", + "Entity 'http://edamontology.org/format_1335' - Label 'Smith-Waterman format'\n", + "Entity 'http://edamontology.org/format_1336' - Label 'dhf'\n", + "Entity 'http://edamontology.org/format_1337' - Label 'lhf'\n", + "Entity 'http://edamontology.org/format_1341' - Label 'InterPro hits format'\n", + "Entity 'http://edamontology.org/format_1342' - Label 'InterPro protein view report format'\n", + "Entity 'http://edamontology.org/format_1343' - Label 'InterPro match table format'\n", + "Entity 'http://edamontology.org/format_1349' - Label 'HMMER Dirichlet prior'\n", + "Entity 'http://edamontology.org/format_1350' - Label 'MEME Dirichlet prior'\n", + "Entity 'http://edamontology.org/format_1351' - Label 'HMMER emission and transition'\n", + "Entity 'http://edamontology.org/format_1356' - Label 'prosite-pattern'\n", + "Entity 'http://edamontology.org/format_1357' - Label 'EMBOSS sequence pattern'\n", + "Entity 'http://edamontology.org/format_1360' - Label 'meme-motif'\n", + "Entity 'http://edamontology.org/format_1366' - Label 'prosite-profile'\n", + "Entity 'http://edamontology.org/format_1367' - Label 'JASPAR format'\n", + "Entity 'http://edamontology.org/format_1369' - Label 'MEME background Markov model'\n", + "Entity 'http://edamontology.org/format_1370' - Label 'HMMER format'\n", + "Entity 'http://edamontology.org/format_1391' - Label 'HMMER-aln'\n", + "Entity 'http://edamontology.org/format_1392' - Label 'DIALIGN format'\n", + "Entity 'http://edamontology.org/format_1393' - Label 'daf'\n", + "Entity 'http://edamontology.org/format_1419' - Label 'Sequence-MEME profile alignment'\n", + "Entity 'http://edamontology.org/format_1421' - Label 'HMMER profile alignment (sequences versus HMMs)'\n", + "Entity 'http://edamontology.org/format_1422' - Label 'HMMER profile alignment (HMM versus sequences)'\n", + "Entity 'http://edamontology.org/format_1423' - Label 'Phylip distance matrix'\n", + "Entity 'http://edamontology.org/format_1424' - Label 'ClustalW dendrogram'\n", + "Entity 'http://edamontology.org/format_1425' - Label 'Phylip tree raw'\n", + "Entity 'http://edamontology.org/format_1430' - Label 'Phylip continuous quantitative characters'\n", + "Entity 'http://edamontology.org/format_1431' - Label 'Phylogenetic property values format'\n", + "Entity 'http://edamontology.org/format_1432' - Label 'Phylip character frequencies format'\n", + "Entity 'http://edamontology.org/format_1433' - Label 'Phylip discrete states format'\n", + "Entity 'http://edamontology.org/format_1434' - Label 'Phylip cliques format'\n", + "Entity 'http://edamontology.org/format_1435' - Label 'Phylip tree format'\n", + "Entity 'http://edamontology.org/format_1436' - Label 'TreeBASE format'\n", + "Entity 'http://edamontology.org/format_1437' - Label 'TreeFam format'\n", + "Entity 'http://edamontology.org/format_1445' - Label 'Phylip tree distance format'\n", + "Entity 'http://edamontology.org/format_1454' - Label 'dssp'\n", + "Entity 'http://edamontology.org/format_1455' - Label 'hssp'\n", + "Entity 'http://edamontology.org/format_1457' - Label 'Dot-bracket format'\n", + "Entity 'http://edamontology.org/format_1458' - Label 'Vienna local RNA secondary structure format'\n", + "Entity 'http://edamontology.org/format_1475' - Label 'PDB database entry format'\n", + "Entity 'http://edamontology.org/format_1476' - Label 'PDB'\n", + "Entity 'http://edamontology.org/format_1477' - Label 'mmCIF'\n", + "Entity 'http://edamontology.org/format_1478' - Label 'PDBML'\n", + "Entity 'http://edamontology.org/format_1500' - Label 'Domainatrix 3D-1D scoring matrix format'\n", + "Entity 'http://edamontology.org/format_1504' - Label 'aaindex'\n", + "Entity 'http://edamontology.org/format_1511' - Label 'IntEnz enzyme report format'\n", + "Entity 'http://edamontology.org/format_1512' - Label 'BRENDA enzyme report format'\n", + "Entity 'http://edamontology.org/format_1513' - Label 'KEGG REACTION enzyme report format'\n", + "Entity 'http://edamontology.org/format_1514' - Label 'KEGG ENZYME enzyme report format'\n", + "Entity 'http://edamontology.org/format_1515' - Label 'REBASE proto enzyme report format'\n", + "Entity 'http://edamontology.org/format_1516' - Label 'REBASE withrefm enzyme report format'\n", + "Entity 'http://edamontology.org/format_1551' - Label 'Pcons report format'\n", + "Entity 'http://edamontology.org/format_1552' - Label 'ProQ report format'\n", + "Entity 'http://edamontology.org/format_1563' - Label 'SMART domain assignment report format'\n", + "Entity 'http://edamontology.org/format_1568' - Label 'BIND entry format'\n", + "Entity 'http://edamontology.org/format_1569' - Label 'IntAct entry format'\n", + "Entity 'http://edamontology.org/format_1570' - Label 'InterPro entry format'\n", + "Entity 'http://edamontology.org/format_1571' - Label 'InterPro entry abstract format'\n", + "Entity 'http://edamontology.org/format_1572' - Label 'Gene3D entry format'\n", + "Entity 'http://edamontology.org/format_1573' - Label 'PIRSF entry format'\n", + "Entity 'http://edamontology.org/format_1574' - Label 'PRINTS entry format'\n", + "Entity 'http://edamontology.org/format_1575' - Label 'Panther Families and HMMs entry format'\n", + "Entity 'http://edamontology.org/format_1576' - Label 'Pfam entry format'\n", + "Entity 'http://edamontology.org/format_1577' - Label 'SMART entry format'\n", + "Entity 'http://edamontology.org/format_1578' - Label 'Superfamily entry format'\n", + "Entity 'http://edamontology.org/format_1579' - Label 'TIGRFam entry format'\n", + "Entity 'http://edamontology.org/format_1580' - Label 'ProDom entry format'\n", + "Entity 'http://edamontology.org/format_1581' - Label 'FSSP entry format'\n", + "Entity 'http://edamontology.org/format_1582' - Label 'findkm'\n", + "Entity 'http://edamontology.org/format_1603' - Label 'Ensembl gene report format'\n", + "Entity 'http://edamontology.org/format_1604' - Label 'DictyBase gene report format'\n", + "Entity 'http://edamontology.org/format_1605' - Label 'CGD gene report format'\n", + "Entity 'http://edamontology.org/format_1606' - Label 'DragonDB gene report format'\n", + "Entity 'http://edamontology.org/format_1607' - Label 'EcoCyc gene report format'\n", + "Entity 'http://edamontology.org/format_1608' - Label 'FlyBase gene report format'\n", + "Entity 'http://edamontology.org/format_1609' - Label 'Gramene gene report format'\n", + "Entity 'http://edamontology.org/format_1610' - Label 'KEGG GENES gene report format'\n", + "Entity 'http://edamontology.org/format_1611' - Label 'MaizeGDB gene report format'\n", + "Entity 'http://edamontology.org/format_1612' - Label 'MGD gene report format'\n", + "Entity 'http://edamontology.org/format_1613' - Label 'RGD gene report format'\n", + "Entity 'http://edamontology.org/format_1614' - Label 'SGD gene report format'\n", + "Entity 'http://edamontology.org/format_1615' - Label 'GeneDB gene report format'\n", + "Entity 'http://edamontology.org/format_1616' - Label 'TAIR gene report format'\n", + "Entity 'http://edamontology.org/format_1617' - Label 'WormBase gene report format'\n", + "Entity 'http://edamontology.org/format_1618' - Label 'ZFIN gene report format'\n", + "Entity 'http://edamontology.org/format_1619' - Label 'TIGR gene report format'\n", + "Entity 'http://edamontology.org/format_1620' - Label 'dbSNP polymorphism report format'\n", + "Entity 'http://edamontology.org/format_1623' - Label 'OMIM entry format'\n", + "Entity 'http://edamontology.org/format_1624' - Label 'HGVbase entry format'\n", + "Entity 'http://edamontology.org/format_1625' - Label 'HIVDB entry format'\n", + "Entity 'http://edamontology.org/format_1626' - Label 'KEGG DISEASE entry format'\n", + "Entity 'http://edamontology.org/format_1627' - Label 'Primer3 primer'\n", + "Entity 'http://edamontology.org/format_1628' - Label 'ABI'\n", + "Entity 'http://edamontology.org/format_1629' - Label 'mira'\n", + "Entity 'http://edamontology.org/format_1630' - Label 'CAF'\n", + "Entity 'http://edamontology.org/format_1631' - Label 'EXP'\n", + "Entity 'http://edamontology.org/format_1632' - Label 'SCF'\n", + "Entity 'http://edamontology.org/format_1633' - Label 'PHD'\n", + "Entity 'http://edamontology.org/format_1637' - Label 'dat'\n", + "Entity 'http://edamontology.org/format_1638' - Label 'cel'\n", + "Entity 'http://edamontology.org/format_1639' - Label 'affymetrix'\n", + "Entity 'http://edamontology.org/format_1640' - Label 'ArrayExpress entry format'\n", + "Entity 'http://edamontology.org/format_1641' - Label 'affymetrix-exp'\n", + "Entity 'http://edamontology.org/format_1644' - Label 'CHP'\n", + "Entity 'http://edamontology.org/format_1645' - Label 'EMDB entry format'\n", + "Entity 'http://edamontology.org/format_1647' - Label 'KEGG PATHWAY entry format'\n", + "Entity 'http://edamontology.org/format_1648' - Label 'MetaCyc entry format'\n", + "Entity 'http://edamontology.org/format_1649' - Label 'HumanCyc entry format'\n", + "Entity 'http://edamontology.org/format_1650' - Label 'INOH entry format'\n", + "Entity 'http://edamontology.org/format_1651' - Label 'PATIKA entry format'\n", + "Entity 'http://edamontology.org/format_1652' - Label 'Reactome entry format'\n", + "Entity 'http://edamontology.org/format_1653' - Label 'aMAZE entry format'\n", + "Entity 'http://edamontology.org/format_1654' - Label 'CPDB entry format'\n", + "Entity 'http://edamontology.org/format_1655' - Label 'Panther Pathways entry format'\n", + "Entity 'http://edamontology.org/format_1665' - Label 'Taverna workflow format'\n", + "Entity 'http://edamontology.org/format_1666' - Label 'BioModel mathematical model format'\n", + "Entity 'http://edamontology.org/format_1697' - Label 'KEGG LIGAND entry format'\n", + "Entity 'http://edamontology.org/format_1698' - Label 'KEGG COMPOUND entry format'\n", + "Entity 'http://edamontology.org/format_1699' - Label 'KEGG PLANT entry format'\n", + "Entity 'http://edamontology.org/format_1700' - Label 'KEGG GLYCAN entry format'\n", + "Entity 'http://edamontology.org/format_1701' - Label 'PubChem entry format'\n", + "Entity 'http://edamontology.org/format_1702' - Label 'ChemSpider entry format'\n", + "Entity 'http://edamontology.org/format_1703' - Label 'ChEBI entry format'\n", + "Entity 'http://edamontology.org/format_1704' - Label 'MSDchem ligand dictionary entry format'\n", + "Entity 'http://edamontology.org/format_1705' - Label 'HET group dictionary entry format'\n", + "Entity 'http://edamontology.org/format_1706' - Label 'KEGG DRUG entry format'\n", + "Entity 'http://edamontology.org/format_1734' - Label 'PubMed citation'\n", + "Entity 'http://edamontology.org/format_1735' - Label 'Medline Display Format'\n", + "Entity 'http://edamontology.org/format_1736' - Label 'CiteXplore-core'\n", + "Entity 'http://edamontology.org/format_1737' - Label 'CiteXplore-all'\n", + "Entity 'http://edamontology.org/format_1739' - Label 'pmc'\n", + "Entity 'http://edamontology.org/format_1740' - Label 'iHOP format'\n", + "Entity 'http://edamontology.org/format_1741' - Label 'OSCAR format'\n", + "Entity 'http://edamontology.org/format_1747' - Label 'PDB atom record format'\n", + "Entity 'http://edamontology.org/format_1760' - Label 'CATH chain report format'\n", + "Entity 'http://edamontology.org/format_1761' - Label 'CATH PDB report format'\n", + "Entity 'http://edamontology.org/format_1782' - Label 'NCBI gene report format'\n", + "Entity 'http://edamontology.org/format_1808' - Label 'GeneIlluminator gene report format'\n", + "Entity 'http://edamontology.org/format_1809' - Label 'BacMap gene card format'\n", + "Entity 'http://edamontology.org/format_1810' - Label 'ColiCard report format'\n", + "Entity 'http://edamontology.org/format_1861' - Label 'PlasMapper TextMap'\n", + "Entity 'http://edamontology.org/format_1910' - Label 'newick'\n", + "Entity 'http://edamontology.org/format_1911' - Label 'TreeCon format'\n", + "Entity 'http://edamontology.org/format_1912' - Label 'Nexus format'\n", + "Entity 'http://edamontology.org/format_1915' - Label 'Format'\n", + "Entity 'http://edamontology.org/format_1918' - Label 'Atomic data format'\n", + "Entity 'http://edamontology.org/format_1919' - Label 'Sequence record format'\n", + "Entity 'http://edamontology.org/format_1920' - Label 'Sequence feature annotation format'\n", + "Entity 'http://edamontology.org/format_1921' - Label 'Alignment format'\n", + "Entity 'http://edamontology.org/format_1923' - Label 'acedb'\n", + "Entity 'http://edamontology.org/format_1924' - Label 'clustal sequence format'\n", + "Entity 'http://edamontology.org/format_1925' - Label 'codata'\n", + "Entity 'http://edamontology.org/format_1926' - Label 'dbid'\n", + "Entity 'http://edamontology.org/format_1927' - Label 'EMBL format'\n", + "Entity 'http://edamontology.org/format_1928' - Label 'Staden experiment format'\n", + "Entity 'http://edamontology.org/format_1929' - Label 'FASTA'\n", + "Entity 'http://edamontology.org/format_1930' - Label 'FASTQ'\n", + "Entity 'http://edamontology.org/format_1931' - Label 'FASTQ-illumina'\n", + "Entity 'http://edamontology.org/format_1932' - Label 'FASTQ-sanger'\n", + "Entity 'http://edamontology.org/format_1933' - Label 'FASTQ-solexa'\n", + "Entity 'http://edamontology.org/format_1934' - Label 'fitch program'\n", + "Entity 'http://edamontology.org/format_1935' - Label 'GCG'\n", + "Entity 'http://edamontology.org/format_1936' - Label 'GenBank format'\n", + "Entity 'http://edamontology.org/format_1937' - Label 'genpept'\n", + "Entity 'http://edamontology.org/format_1938' - Label 'GFF2-seq'\n", + "Entity 'http://edamontology.org/format_1939' - Label 'GFF3-seq'\n", + "Entity 'http://edamontology.org/format_1940' - Label 'giFASTA format'\n", + "Entity 'http://edamontology.org/format_1941' - Label 'hennig86'\n", + "Entity 'http://edamontology.org/format_1942' - Label 'ig'\n", + "Entity 'http://edamontology.org/format_1943' - Label 'igstrict'\n", + "Entity 'http://edamontology.org/format_1944' - Label 'jackknifer'\n", + "Entity 'http://edamontology.org/format_1945' - Label 'mase format'\n", + "Entity 'http://edamontology.org/format_1946' - Label 'mega-seq'\n", + "Entity 'http://edamontology.org/format_1947' - Label 'GCG MSF'\n", + "Entity 'http://edamontology.org/format_1948' - Label 'nbrf/pir'\n", + "Entity 'http://edamontology.org/format_1949' - Label 'nexus-seq'\n", + "Entity 'http://edamontology.org/format_1950' - Label 'pdbatom'\n", + "Entity 'http://edamontology.org/format_1951' - Label 'pdbatomnuc'\n", + "Entity 'http://edamontology.org/format_1952' - Label 'pdbseqresnuc'\n", + "Entity 'http://edamontology.org/format_1953' - Label 'pdbseqres'\n", + "Entity 'http://edamontology.org/format_1954' - Label 'Pearson format'\n", + "Entity 'http://edamontology.org/format_1955' - Label 'phylip sequence format'\n", + "Entity 'http://edamontology.org/format_1956' - Label 'phylipnon sequence format'\n", + "Entity 'http://edamontology.org/format_1957' - Label 'raw'\n", + "Entity 'http://edamontology.org/format_1958' - Label 'refseqp'\n", + "Entity 'http://edamontology.org/format_1959' - Label 'selex sequence format'\n", + "Entity 'http://edamontology.org/format_1960' - Label 'Staden format'\n", + "Entity 'http://edamontology.org/format_1961' - Label 'Stockholm format'\n", + "Entity 'http://edamontology.org/format_1962' - Label 'strider format'\n", + "Entity 'http://edamontology.org/format_1963' - Label 'UniProtKB format'\n", + "Entity 'http://edamontology.org/format_1964' - Label 'plain text format (unformatted)'\n", + "Entity 'http://edamontology.org/format_1965' - Label 'treecon sequence format'\n", + "Entity 'http://edamontology.org/format_1966' - Label 'ASN.1 sequence format'\n", + "Entity 'http://edamontology.org/format_1967' - Label 'DAS format'\n", + "Entity 'http://edamontology.org/format_1968' - Label 'dasdna'\n", + "Entity 'http://edamontology.org/format_1969' - Label 'debug-seq'\n", + "Entity 'http://edamontology.org/format_1970' - Label 'jackknifernon'\n", + "Entity 'http://edamontology.org/format_1971' - Label 'meganon sequence format'\n", + "Entity 'http://edamontology.org/format_1972' - Label 'NCBI format'\n", + "Entity 'http://edamontology.org/format_1973' - Label 'nexusnon'\n", + "Entity 'http://edamontology.org/format_1974' - Label 'GFF2'\n", + "Entity 'http://edamontology.org/format_1975' - Label 'GFF3'\n", + "Entity 'http://edamontology.org/format_1976' - Label 'pir'\n", + "Entity 'http://edamontology.org/format_1977' - Label 'swiss feature'\n", + "Entity 'http://edamontology.org/format_1978' - Label 'DASGFF'\n", + "Entity 'http://edamontology.org/format_1979' - Label 'debug-feat'\n", + "Entity 'http://edamontology.org/format_1980' - Label 'EMBL feature'\n", + "Entity 'http://edamontology.org/format_1981' - Label 'GenBank feature'\n", + "Entity 'http://edamontology.org/format_1982' - Label 'ClustalW format'\n", + "Entity 'http://edamontology.org/format_1983' - Label 'debug'\n", + "Entity 'http://edamontology.org/format_1984' - Label 'FASTA-aln'\n", + "Entity 'http://edamontology.org/format_1985' - Label 'markx0'\n", + "Entity 'http://edamontology.org/format_1986' - Label 'markx1'\n", + "Entity 'http://edamontology.org/format_1987' - Label 'markx10'\n", + "Entity 'http://edamontology.org/format_1988' - Label 'markx2'\n", + "Entity 'http://edamontology.org/format_1989' - Label 'markx3'\n", + "Entity 'http://edamontology.org/format_1990' - Label 'match'\n", + "Entity 'http://edamontology.org/format_1991' - Label 'mega'\n", + "Entity 'http://edamontology.org/format_1992' - Label 'meganon'\n", + "Entity 'http://edamontology.org/format_1993' - Label 'msf alignment format'\n", + "Entity 'http://edamontology.org/format_1994' - Label 'nexus alignment format'\n", + "Entity 'http://edamontology.org/format_1995' - Label 'nexusnon alignment format'\n", + "Entity 'http://edamontology.org/format_1996' - Label 'pair'\n", + "Entity 'http://edamontology.org/format_1997' - Label 'PHYLIP format'\n", + "Entity 'http://edamontology.org/format_1998' - Label 'PHYLIP sequential'\n", + "Entity 'http://edamontology.org/format_1999' - Label 'scores format'\n", + "Entity 'http://edamontology.org/format_2000' - Label 'selex'\n", + "Entity 'http://edamontology.org/format_2001' - Label 'EMBOSS simple format'\n", + "Entity 'http://edamontology.org/format_2002' - Label 'srs format'\n", + "Entity 'http://edamontology.org/format_2003' - Label 'srspair'\n", + "Entity 'http://edamontology.org/format_2004' - Label 'T-Coffee format'\n", + "Entity 'http://edamontology.org/format_2005' - Label 'TreeCon-seq'\n", + "Entity 'http://edamontology.org/format_2006' - Label 'Phylogenetic tree format'\n", + "Entity 'http://edamontology.org/format_2013' - Label 'Biological pathway or network format'\n", + "Entity 'http://edamontology.org/format_2014' - Label 'Sequence-profile alignment format'\n", + "Entity 'http://edamontology.org/format_2015' - Label 'Sequence-profile alignment (HMM) format'\n", + "Entity 'http://edamontology.org/format_2017' - Label 'Amino acid index format'\n", + "Entity 'http://edamontology.org/format_2020' - Label 'Article format'\n", + "Entity 'http://edamontology.org/format_2021' - Label 'Text mining report format'\n", + "Entity 'http://edamontology.org/format_2027' - Label 'Enzyme kinetics report format'\n", + "Entity 'http://edamontology.org/format_2030' - Label 'Chemical data format'\n", + "Entity 'http://edamontology.org/format_2031' - Label 'Gene annotation format'\n", + "Entity 'http://edamontology.org/format_2032' - Label 'Workflow format'\n", + "Entity 'http://edamontology.org/format_2033' - Label 'Tertiary structure format'\n", + "Entity 'http://edamontology.org/format_2034' - Label 'Biological model format'\n", + "Entity 'http://edamontology.org/format_2035' - Label 'Chemical formula format'\n", + "Entity 'http://edamontology.org/format_2036' - Label 'Phylogenetic character data format'\n", + "Entity 'http://edamontology.org/format_2037' - Label 'Phylogenetic continuous quantitative character format'\n", + "Entity 'http://edamontology.org/format_2038' - Label 'Phylogenetic discrete states format'\n", + "Entity 'http://edamontology.org/format_2039' - Label 'Phylogenetic tree report (cliques) format'\n", + "Entity 'http://edamontology.org/format_2040' - Label 'Phylogenetic tree report (invariants) format'\n", + "Entity 'http://edamontology.org/format_2045' - Label 'Electron microscopy model format'\n", + "Entity 'http://edamontology.org/format_2049' - Label 'Phylogenetic tree report (tree distances) format'\n", + "Entity 'http://edamontology.org/format_2051' - Label 'Polymorphism report format'\n", + "Entity 'http://edamontology.org/format_2052' - Label 'Protein family report format'\n", + "Entity 'http://edamontology.org/format_2054' - Label 'Protein interaction format'\n", + "Entity 'http://edamontology.org/format_2055' - Label 'Sequence assembly format'\n", + "Entity 'http://edamontology.org/format_2056' - Label 'Microarray experiment data format'\n", + "Entity 'http://edamontology.org/format_2057' - Label 'Sequence trace format'\n", + "Entity 'http://edamontology.org/format_2058' - Label 'Gene expression report format'\n", + "Entity 'http://edamontology.org/format_2059' - Label 'Genotype and phenotype annotation format'\n", + "Entity 'http://edamontology.org/format_2060' - Label 'Map format'\n", + "Entity 'http://edamontology.org/format_2061' - Label 'Nucleic acid features (primers) format'\n", + "Entity 'http://edamontology.org/format_2062' - Label 'Protein report format'\n", + "Entity 'http://edamontology.org/format_2063' - Label 'Protein report (enzyme) format'\n", + "Entity 'http://edamontology.org/format_2064' - Label '3D-1D scoring matrix format'\n", + "Entity 'http://edamontology.org/format_2065' - Label 'Protein structure report (quality evaluation) format'\n", + "Entity 'http://edamontology.org/format_2066' - Label 'Database hits (sequence) format'\n", + "Entity 'http://edamontology.org/format_2067' - Label 'Sequence distance matrix format'\n", + "Entity 'http://edamontology.org/format_2068' - Label 'Sequence motif format'\n", + "Entity 'http://edamontology.org/format_2069' - Label 'Sequence profile format'\n", + "Entity 'http://edamontology.org/format_2072' - Label 'Hidden Markov model format'\n", + "Entity 'http://edamontology.org/format_2074' - Label 'Dirichlet distribution format'\n", + "Entity 'http://edamontology.org/format_2075' - Label 'HMM emission and transition counts format'\n", + "Entity 'http://edamontology.org/format_2076' - Label 'RNA secondary structure format'\n", + "Entity 'http://edamontology.org/format_2077' - Label 'Protein secondary structure format'\n", + "Entity 'http://edamontology.org/format_2078' - Label 'Sequence range format'\n", + "Entity 'http://edamontology.org/format_2094' - Label 'pure'\n", + "Entity 'http://edamontology.org/format_2095' - Label 'unpure'\n", + "Entity 'http://edamontology.org/format_2096' - Label 'unambiguous sequence'\n", + "Entity 'http://edamontology.org/format_2097' - Label 'ambiguous'\n", + "Entity 'http://edamontology.org/format_2155' - Label 'Sequence features (repeats) format'\n", + "Entity 'http://edamontology.org/format_2158' - Label 'Nucleic acid features (restriction sites) format'\n", + "Entity 'http://edamontology.org/format_2159' - Label 'Gene features (coding region) format'\n", + "Entity 'http://edamontology.org/format_2170' - Label 'Sequence cluster format'\n", + "Entity 'http://edamontology.org/format_2171' - Label 'Sequence cluster format (protein)'\n", + "Entity 'http://edamontology.org/format_2172' - Label 'Sequence cluster format (nucleic acid)'\n", + "Entity 'http://edamontology.org/format_2175' - Label 'Gene cluster format'\n", + "Entity 'http://edamontology.org/format_2181' - Label 'EMBL-like (text)'\n", + "Entity 'http://edamontology.org/format_2182' - Label 'FASTQ-like format (text)'\n", + "Entity 'http://edamontology.org/format_2183' - Label 'EMBLXML'\n", + "Entity 'http://edamontology.org/format_2184' - Label 'cdsxml'\n", + "Entity 'http://edamontology.org/format_2185' - Label 'INSDSeq'\n", + "Entity 'http://edamontology.org/format_2186' - Label 'geneseq'\n", + "Entity 'http://edamontology.org/format_2187' - Label 'UniProt-like (text)'\n", + "Entity 'http://edamontology.org/format_2188' - Label 'UniProt format'\n", + "Entity 'http://edamontology.org/format_2189' - Label 'ipi'\n", + "Entity 'http://edamontology.org/format_2194' - Label 'medline'\n", + "Entity 'http://edamontology.org/format_2195' - Label 'Ontology format'\n", + "Entity 'http://edamontology.org/format_2196' - Label 'OBO format'\n", + "Entity 'http://edamontology.org/format_2197' - Label 'OWL format'\n", + "Entity 'http://edamontology.org/format_2200' - Label 'FASTA-like (text)'\n", + "Entity 'http://edamontology.org/format_2202' - Label 'Sequence record full format'\n", + "Entity 'http://edamontology.org/format_2203' - Label 'Sequence record lite format'\n", + "Entity 'http://edamontology.org/format_2204' - Label 'EMBL format (XML)'\n", + "Entity 'http://edamontology.org/format_2205' - Label 'GenBank-like format (text)'\n", + "Entity 'http://edamontology.org/format_2206' - Label 'Sequence feature table format (text)'\n", + "Entity 'http://edamontology.org/format_2210' - Label 'Strain data format'\n", + "Entity 'http://edamontology.org/format_2211' - Label 'CIP strain data format'\n", + "Entity 'http://edamontology.org/format_2243' - Label 'phylip property values'\n", + "Entity 'http://edamontology.org/format_2303' - Label 'STRING entry format (HTML)'\n", + "Entity 'http://edamontology.org/format_2304' - Label 'STRING entry format (XML)'\n", + "Entity 'http://edamontology.org/format_2305' - Label 'GFF'\n", + "Entity 'http://edamontology.org/format_2306' - Label 'GTF'\n", + "Entity 'http://edamontology.org/format_2310' - Label 'FASTA-HTML'\n", + "Entity 'http://edamontology.org/format_2311' - Label 'EMBL-HTML'\n", + "Entity 'http://edamontology.org/format_2322' - Label 'BioCyc enzyme report format'\n", + "Entity 'http://edamontology.org/format_2323' - Label 'ENZYME enzyme report format'\n", + "Entity 'http://edamontology.org/format_2328' - Label 'PseudoCAP gene report format'\n", + "Entity 'http://edamontology.org/format_2329' - Label 'GeneCards gene report format'\n", + "Entity 'http://edamontology.org/format_2330' - Label 'Textual format'\n", + "Entity 'http://edamontology.org/format_2331' - Label 'HTML'\n", + "Entity 'http://edamontology.org/format_2332' - Label 'XML'\n", + "Entity 'http://edamontology.org/format_2333' - Label 'Binary format'\n", + "Entity 'http://edamontology.org/format_2334' - Label 'URI format'\n", + "Entity 'http://edamontology.org/format_2341' - Label 'NCI-Nature pathway entry format'\n", + "Entity 'http://edamontology.org/format_2350' - Label 'Format (by type of data)'\n", + "Entity 'http://edamontology.org/format_2352' - Label 'BioXSD (XML)'\n", + "Entity 'http://edamontology.org/format_2376' - Label 'RDF format'\n", + "Entity 'http://edamontology.org/format_2532' - Label 'GenBank-HTML'\n", + "Entity 'http://edamontology.org/format_2542' - Label 'Protein features (domains) format'\n", + "Entity 'http://edamontology.org/format_2543' - Label 'EMBL-like format'\n", + "Entity 'http://edamontology.org/format_2545' - Label 'FASTQ-like format'\n", + "Entity 'http://edamontology.org/format_2546' - Label 'FASTA-like'\n", + "Entity 'http://edamontology.org/format_2547' - Label 'uniprotkb-like format'\n", + "Entity 'http://edamontology.org/format_2548' - Label 'Sequence feature table format'\n", + "Entity 'http://edamontology.org/format_2549' - Label 'OBO'\n", + "Entity 'http://edamontology.org/format_2550' - Label 'OBO-XML'\n", + "Entity 'http://edamontology.org/format_2551' - Label 'Sequence record format (text)'\n", + "Entity 'http://edamontology.org/format_2552' - Label 'Sequence record format (XML)'\n", + "Entity 'http://edamontology.org/format_2553' - Label 'Sequence feature table format (XML)'\n", + "Entity 'http://edamontology.org/format_2554' - Label 'Alignment format (text)'\n", + "Entity 'http://edamontology.org/format_2555' - Label 'Alignment format (XML)'\n", + "Entity 'http://edamontology.org/format_2556' - Label 'Phylogenetic tree format (text)'\n", + "Entity 'http://edamontology.org/format_2557' - Label 'Phylogenetic tree format (XML)'\n", + "Entity 'http://edamontology.org/format_2558' - Label 'EMBL-like (XML)'\n", + "Entity 'http://edamontology.org/format_2559' - Label 'GenBank-like format'\n", + "Entity 'http://edamontology.org/format_2560' - Label 'STRING entry format'\n", + "Entity 'http://edamontology.org/format_2561' - Label 'Sequence assembly format (text)'\n", + "Entity 'http://edamontology.org/format_2562' - Label 'Amino acid identifier format'\n", + "Entity 'http://edamontology.org/format_2566' - Label 'completely unambiguous'\n", + "Entity 'http://edamontology.org/format_2567' - Label 'completely unambiguous pure'\n", + "Entity 'http://edamontology.org/format_2568' - Label 'completely unambiguous pure nucleotide'\n", + "Entity 'http://edamontology.org/format_2569' - Label 'completely unambiguous pure dna'\n", + "Entity 'http://edamontology.org/format_2570' - Label 'completely unambiguous pure rna sequence'\n", + "Entity 'http://edamontology.org/format_2571' - Label 'Raw sequence format'\n", + "Entity 'http://edamontology.org/format_2572' - Label 'BAM'\n", + "Entity 'http://edamontology.org/format_2573' - Label 'SAM'\n", + "Entity 'http://edamontology.org/format_2585' - Label 'SBML'\n", + "Entity 'http://edamontology.org/format_2607' - Label 'completely unambiguous pure protein'\n", + "Entity 'http://edamontology.org/format_2848' - Label 'Bibliographic reference format'\n", + "Entity 'http://edamontology.org/format_2919' - Label 'Sequence annotation track format'\n", + "Entity 'http://edamontology.org/format_2920' - Label 'Alignment format (pair only)'\n", + "Entity 'http://edamontology.org/format_2921' - Label 'Sequence variation annotation format'\n", + "Entity 'http://edamontology.org/format_2922' - Label 'markx0 variant'\n", + "Entity 'http://edamontology.org/format_2923' - Label 'mega variant'\n", + "Entity 'http://edamontology.org/format_2924' - Label 'Phylip format variant'\n", + "Entity 'http://edamontology.org/format_3000' - Label 'AB1'\n", + "Entity 'http://edamontology.org/format_3001' - Label 'ACE'\n", + "Entity 'http://edamontology.org/format_3003' - Label 'BED'\n", + "Entity 'http://edamontology.org/format_3004' - Label 'bigBed'\n", + "Entity 'http://edamontology.org/format_3005' - Label 'WIG'\n", + "Entity 'http://edamontology.org/format_3006' - Label 'bigWig'\n", + "Entity 'http://edamontology.org/format_3007' - Label 'PSL'\n", + "Entity 'http://edamontology.org/format_3008' - Label 'MAF'\n", + "Entity 'http://edamontology.org/format_3009' - Label '2bit'\n", + "Entity 'http://edamontology.org/format_3010' - Label '.nib'\n", + "Entity 'http://edamontology.org/format_3011' - Label 'genePred'\n", + "Entity 'http://edamontology.org/format_3012' - Label 'pgSnp'\n", + "Entity 'http://edamontology.org/format_3013' - Label 'axt'\n", + "Entity 'http://edamontology.org/format_3014' - Label 'LAV'\n", + "Entity 'http://edamontology.org/format_3015' - Label 'Pileup'\n", + "Entity 'http://edamontology.org/format_3016' - Label 'VCF'\n", + "Entity 'http://edamontology.org/format_3017' - Label 'SRF'\n", + "Entity 'http://edamontology.org/format_3018' - Label 'ZTR'\n", + "Entity 'http://edamontology.org/format_3019' - Label 'GVF'\n", + "Entity 'http://edamontology.org/format_3020' - Label 'BCF'\n", + "Entity 'http://edamontology.org/format_3033' - Label 'Matrix format'\n", + "Entity 'http://edamontology.org/format_3097' - Label 'Protein domain classification format'\n", + "Entity 'http://edamontology.org/format_3098' - Label 'Raw SCOP domain classification format'\n", + "Entity 'http://edamontology.org/format_3099' - Label 'Raw CATH domain classification format'\n", + "Entity 'http://edamontology.org/format_3100' - Label 'CATH domain report format'\n", + "Entity 'http://edamontology.org/format_3155' - Label 'SBRML'\n", + "Entity 'http://edamontology.org/format_3156' - Label 'BioPAX'\n", + "Entity 'http://edamontology.org/format_3157' - Label 'EBI Application Result XML'\n", + "Entity 'http://edamontology.org/format_3158' - Label 'PSI MI XML (MIF)'\n", + "Entity 'http://edamontology.org/format_3159' - Label 'phyloXML'\n", + "Entity 'http://edamontology.org/format_3160' - Label 'NeXML'\n", + "Entity 'http://edamontology.org/format_3161' - Label 'MAGE-ML'\n", + "Entity 'http://edamontology.org/format_3162' - Label 'MAGE-TAB'\n", + "Entity 'http://edamontology.org/format_3163' - Label 'GCDML'\n", + "Entity 'http://edamontology.org/format_3164' - Label 'GTrack'\n", + "Entity 'http://edamontology.org/format_3166' - Label 'Biological pathway or network report format'\n", + "Entity 'http://edamontology.org/format_3167' - Label 'Experiment annotation format'\n", + "Entity 'http://edamontology.org/format_3235' - Label 'Cytoband format'\n", + "Entity 'http://edamontology.org/format_3239' - Label 'CopasiML'\n", + "Entity 'http://edamontology.org/format_3240' - Label 'CellML'\n", + "Entity 'http://edamontology.org/format_3242' - Label 'PSI MI TAB (MITAB)'\n", + "Entity 'http://edamontology.org/format_3243' - Label 'PSI-PAR'\n", + "Entity 'http://edamontology.org/format_3244' - Label 'mzML'\n", + "Entity 'http://edamontology.org/format_3245' - Label 'Mass spectrometry data format'\n", + "Entity 'http://edamontology.org/format_3246' - Label 'TraML'\n", + "Entity 'http://edamontology.org/format_3247' - Label 'mzIdentML'\n", + "Entity 'http://edamontology.org/format_3248' - Label 'mzQuantML'\n", + "Entity 'http://edamontology.org/format_3249' - Label 'GelML'\n", + "Entity 'http://edamontology.org/format_3250' - Label 'spML'\n", + "Entity 'http://edamontology.org/format_3252' - Label 'OWL Functional Syntax'\n", + "Entity 'http://edamontology.org/format_3253' - Label 'Manchester OWL Syntax'\n", + "Entity 'http://edamontology.org/format_3254' - Label 'KRSS2 Syntax'\n", + "Entity 'http://edamontology.org/format_3255' - Label 'Turtle'\n", + "Entity 'http://edamontology.org/format_3256' - Label 'N-Triples'\n", + "Entity 'http://edamontology.org/format_3257' - Label 'Notation3'\n", + "Entity 'http://edamontology.org/format_3261' - Label 'RDF/XML'\n", + "Entity 'http://edamontology.org/format_3262' - Label 'OWL/XML'\n", + "Entity 'http://edamontology.org/format_3281' - Label 'A2M'\n", + "Entity 'http://edamontology.org/format_3284' - Label 'SFF'\n", + "Entity 'http://edamontology.org/format_3285' - Label 'MAP'\n", + "Entity 'http://edamontology.org/format_3286' - Label 'PED'\n", + "Entity 'http://edamontology.org/format_3287' - Label 'Individual genetic data format'\n", + "Entity 'http://edamontology.org/format_3288' - Label 'PED/MAP'\n", + "Entity 'http://edamontology.org/format_3309' - Label 'CT'\n", + "Entity 'http://edamontology.org/format_3310' - Label 'SS'\n", + "Entity 'http://edamontology.org/format_3311' - Label 'RNAML'\n", + "Entity 'http://edamontology.org/format_3312' - Label 'GDE'\n", + "Entity 'http://edamontology.org/format_3313' - Label 'BLC'\n", + "Entity 'http://edamontology.org/format_3326' - Label 'Data index format'\n", + "Entity 'http://edamontology.org/format_3327' - Label 'BAI'\n", + "Entity 'http://edamontology.org/format_3328' - Label 'HMMER2'\n", + "Entity 'http://edamontology.org/format_3329' - Label 'HMMER3'\n", + "Entity 'http://edamontology.org/format_3330' - Label 'PO'\n", + "Entity 'http://edamontology.org/format_3331' - Label 'BLAST XML results format'\n", + "Entity 'http://edamontology.org/format_3462' - Label 'CRAM'\n", + "Entity 'http://edamontology.org/format_3464' - Label 'JSON'\n", + "Entity 'http://edamontology.org/format_3466' - Label 'EPS'\n", + "Entity 'http://edamontology.org/format_3467' - Label 'GIF'\n", + "Entity 'http://edamontology.org/format_3468' - Label 'xls'\n", + "Entity 'http://edamontology.org/format_3475' - Label 'TSV'\n", + "Entity 'http://edamontology.org/format_3476' - Label 'Gene expression data format'\n", + "Entity 'http://edamontology.org/format_3477' - Label 'Cytoscape input file format'\n", + "Entity 'http://edamontology.org/format_3484' - Label 'ebwt'\n", + "Entity 'http://edamontology.org/format_3485' - Label 'RSF'\n", + "Entity 'http://edamontology.org/format_3486' - Label 'GCG format variant'\n", + "Entity 'http://edamontology.org/format_3487' - Label 'BSML'\n", + "Entity 'http://edamontology.org/format_3491' - Label 'ebwtl'\n", + "Entity 'http://edamontology.org/format_3499' - Label 'Ensembl variation file format'\n", + "Entity 'http://edamontology.org/format_3506' - Label 'docx'\n", + "Entity 'http://edamontology.org/format_3507' - Label 'Document format'\n", + "Entity 'http://edamontology.org/format_3508' - Label 'PDF'\n", + "Entity 'http://edamontology.org/format_3547' - Label 'Image format'\n", + "Entity 'http://edamontology.org/format_3548' - Label 'DICOM format'\n", + "Entity 'http://edamontology.org/format_3549' - Label 'nii'\n", + "Entity 'http://edamontology.org/format_3550' - Label 'mhd'\n", + "Entity 'http://edamontology.org/format_3551' - Label 'nrrd'\n", + "Entity 'http://edamontology.org/format_3554' - Label 'R file format'\n", + "Entity 'http://edamontology.org/format_3555' - Label 'SPSS'\n", + "Entity 'http://edamontology.org/format_3556' - Label 'MHTML'\n", + "Entity 'http://edamontology.org/format_3578' - Label 'IDAT'\n", + "Entity 'http://edamontology.org/format_3579' - Label 'JPG'\n", + "Entity 'http://edamontology.org/format_3580' - Label 'rcc'\n", + "Entity 'http://edamontology.org/format_3581' - Label 'arff'\n", + "Entity 'http://edamontology.org/format_3582' - Label 'afg'\n", + "Entity 'http://edamontology.org/format_3583' - Label 'bedgraph'\n", + "Entity 'http://edamontology.org/format_3584' - Label 'bedstrict'\n", + "Entity 'http://edamontology.org/format_3585' - Label 'bed6'\n", + "Entity 'http://edamontology.org/format_3586' - Label 'bed12'\n", + "Entity 'http://edamontology.org/format_3587' - Label 'chrominfo'\n", + "Entity 'http://edamontology.org/format_3588' - Label 'customtrack'\n", + "Entity 'http://edamontology.org/format_3589' - Label 'csfasta'\n", + "Entity 'http://edamontology.org/format_3590' - Label 'HDF5'\n", + "Entity 'http://edamontology.org/format_3591' - Label 'TIFF'\n", + "Entity 'http://edamontology.org/format_3592' - Label 'BMP'\n", + "Entity 'http://edamontology.org/format_3593' - Label 'im'\n", + "Entity 'http://edamontology.org/format_3594' - Label 'pcd'\n", + "Entity 'http://edamontology.org/format_3595' - Label 'pcx'\n", + "Entity 'http://edamontology.org/format_3596' - Label 'ppm'\n", + "Entity 'http://edamontology.org/format_3597' - Label 'psd'\n", + "Entity 'http://edamontology.org/format_3598' - Label 'xbm'\n", + "Entity 'http://edamontology.org/format_3599' - Label 'xpm'\n", + "Entity 'http://edamontology.org/format_3600' - Label 'rgb'\n", + "Entity 'http://edamontology.org/format_3601' - Label 'pbm'\n", + "Entity 'http://edamontology.org/format_3602' - Label 'pgm'\n", + "Entity 'http://edamontology.org/format_3603' - Label 'PNG'\n", + "Entity 'http://edamontology.org/format_3604' - Label 'SVG'\n", + "Entity 'http://edamontology.org/format_3605' - Label 'rast'\n", + "Entity 'http://edamontology.org/format_3606' - Label 'Sequence quality report format (text)'\n", + "Entity 'http://edamontology.org/format_3607' - Label 'qual'\n", + "Entity 'http://edamontology.org/format_3608' - Label 'qualsolexa'\n", + "Entity 'http://edamontology.org/format_3609' - Label 'qualillumina'\n", + "Entity 'http://edamontology.org/format_3610' - Label 'qualsolid'\n", + "Entity 'http://edamontology.org/format_3611' - Label 'qual454'\n", + "Entity 'http://edamontology.org/format_3612' - Label 'ENCODE peak format'\n", + "Entity 'http://edamontology.org/format_3613' - Label 'ENCODE narrow peak format'\n", + "Entity 'http://edamontology.org/format_3614' - Label 'ENCODE broad peak format'\n", + "Entity 'http://edamontology.org/format_3615' - Label 'bgzip'\n", + "Entity 'http://edamontology.org/format_3616' - Label 'tabix'\n", + "Entity 'http://edamontology.org/format_3617' - Label 'Graph format'\n", + "Entity 'http://edamontology.org/format_3618' - Label 'xgmml'\n", + "Entity 'http://edamontology.org/format_3619' - Label 'sif'\n", + "Entity 'http://edamontology.org/format_3620' - Label 'xlsx'\n", + "Entity 'http://edamontology.org/format_3621' - Label 'SQLite format'\n", + "Entity 'http://edamontology.org/format_3622' - Label 'Gemini SQLite format'\n", + "Entity 'http://edamontology.org/format_3623' - Label 'Index format'\n", + "Entity 'http://edamontology.org/format_3624' - Label 'snpeffdb'\n", + "Entity 'http://edamontology.org/format_3626' - Label 'MAT'\n", + "Entity 'http://edamontology.org/format_3650' - Label 'netCDF'\n", + "Entity 'http://edamontology.org/format_3651' - Label 'MGF'\n", + "Entity 'http://edamontology.org/format_3652' - Label 'dta'\n", + "Entity 'http://edamontology.org/format_3653' - Label 'pkl'\n", + "Entity 'http://edamontology.org/format_3654' - Label 'mzXML'\n", + "Entity 'http://edamontology.org/format_3655' - Label 'pepXML'\n", + "Entity 'http://edamontology.org/format_3657' - Label 'GPML'\n", + "Entity 'http://edamontology.org/format_3665' - Label 'K-mer countgraph'\n", + "Entity 'http://edamontology.org/format_3681' - Label 'mzTab'\n", + "Entity 'http://edamontology.org/format_3682' - Label 'imzML metadata file'\n", + "Entity 'http://edamontology.org/format_3683' - Label 'qcML'\n", + "Entity 'http://edamontology.org/format_3684' - Label 'PRIDE XML'\n", + "Entity 'http://edamontology.org/format_3685' - Label 'SED-ML'\n", + "Entity 'http://edamontology.org/format_3686' - Label 'COMBINE OMEX'\n", + "Entity 'http://edamontology.org/format_3687' - Label 'ISA-TAB'\n", + "Entity 'http://edamontology.org/format_3688' - Label 'SBtab'\n", + "Entity 'http://edamontology.org/format_3689' - Label 'BCML'\n", + "Entity 'http://edamontology.org/format_3690' - Label 'BDML'\n", + "Entity 'http://edamontology.org/format_3691' - Label 'BEL'\n", + "Entity 'http://edamontology.org/format_3692' - Label 'SBGN-ML'\n", + "Entity 'http://edamontology.org/format_3693' - Label 'AGP'\n", + "Entity 'http://edamontology.org/format_3696' - Label 'PS'\n", + "Entity 'http://edamontology.org/format_3698' - Label 'SRA format'\n", + "Entity 'http://edamontology.org/format_3699' - Label 'VDB'\n", + "Entity 'http://edamontology.org/format_3700' - Label 'Tabix index file format'\n", + "Entity 'http://edamontology.org/format_3701' - Label 'Sequin format'\n", + "Entity 'http://edamontology.org/format_3702' - Label 'MSF'\n", + "Entity 'http://edamontology.org/format_3706' - Label 'Biodiversity data format'\n", + "Entity 'http://edamontology.org/format_3708' - Label 'ABCD format'\n", + "Entity 'http://edamontology.org/format_3709' - Label 'GCT/Res format'\n", + "Entity 'http://edamontology.org/format_3710' - Label 'WIFF format'\n", + "Entity 'http://edamontology.org/format_3711' - Label 'X!Tandem XML'\n", + "Entity 'http://edamontology.org/format_3712' - Label 'Thermo RAW'\n", + "Entity 'http://edamontology.org/format_3713' - Label 'Mascot .dat file'\n", + "Entity 'http://edamontology.org/format_3714' - Label 'MaxQuant APL peaklist format'\n", + "Entity 'http://edamontology.org/format_3725' - Label 'SBOL'\n", + "Entity 'http://edamontology.org/format_3726' - Label 'PMML'\n", + "Entity 'http://edamontology.org/format_3727' - Label 'OME-TIFF'\n", + "Entity 'http://edamontology.org/format_3728' - Label 'LocARNA PP'\n", + "Entity 'http://edamontology.org/format_3729' - Label 'dbGaP format'\n", + "Entity 'http://edamontology.org/format_3746' - Label 'BIOM format'\n", + "Entity 'http://edamontology.org/format_3747' - Label 'protXML'\n", + "Entity 'http://edamontology.org/format_3748' - Label 'Linked data format'\n", + "Entity 'http://edamontology.org/format_3749' - Label 'JSON-LD'\n", + "Entity 'http://edamontology.org/format_3750' - Label 'YAML'\n", + "Entity 'http://edamontology.org/format_3751' - Label 'DSV'\n", + "Entity 'http://edamontology.org/format_3752' - Label 'CSV'\n", + "Entity 'http://edamontology.org/format_3758' - Label 'SEQUEST .out file'\n", + "Entity 'http://edamontology.org/format_3764' - Label 'idXML'\n", + "Entity 'http://edamontology.org/format_3765' - Label 'KNIME datatable format'\n", + "Entity 'http://edamontology.org/format_3770' - Label 'UniProtKB XML'\n", + "Entity 'http://edamontology.org/format_3771' - Label 'UniProtKB RDF'\n", + "Entity 'http://edamontology.org/format_3772' - Label 'BioJSON (BioXSD)'\n", + "Entity 'http://edamontology.org/format_3773' - Label 'BioYAML'\n", + "Entity 'http://edamontology.org/format_3774' - Label 'BioJSON (Jalview)'\n", + "Entity 'http://edamontology.org/format_3775' - Label 'GSuite'\n", + "Entity 'http://edamontology.org/format_3776' - Label 'BTrack'\n", + "Entity 'http://edamontology.org/format_3777' - Label 'MCPD'\n", + "Entity 'http://edamontology.org/format_3780' - Label 'Annotated text format'\n", + "Entity 'http://edamontology.org/format_3781' - Label 'PubAnnotation format'\n", + "Entity 'http://edamontology.org/format_3782' - Label 'BioC'\n", + "Entity 'http://edamontology.org/format_3783' - Label 'PubTator format'\n", + "Entity 'http://edamontology.org/format_3784' - Label 'Open Annotation format'\n", + "Entity 'http://edamontology.org/format_3785' - Label 'BioNLP Shared Task format'\n", + "Entity 'http://edamontology.org/format_3787' - Label 'Query language'\n", + "Entity 'http://edamontology.org/format_3788' - Label 'SQL'\n", + "Entity 'http://edamontology.org/format_3789' - Label 'XQuery'\n", + "Entity 'http://edamontology.org/format_3790' - Label 'SPARQL'\n", + "Entity 'http://edamontology.org/format_3804' - Label 'xsd'\n", + "Entity 'http://edamontology.org/format_3811' - Label 'XMFA'\n", + "Entity 'http://edamontology.org/format_3812' - Label 'GEN'\n", + "Entity 'http://edamontology.org/format_3813' - Label 'SAMPLE file format'\n", + "Entity 'http://edamontology.org/format_3814' - Label 'SDF'\n", + "Entity 'http://edamontology.org/format_3815' - Label 'Molfile'\n", + "Entity 'http://edamontology.org/format_3816' - Label 'Mol2'\n", + "Entity 'http://edamontology.org/format_3817' - Label 'latex'\n", + "Entity 'http://edamontology.org/format_3818' - Label 'ELAND format'\n", + "Entity 'http://edamontology.org/format_3819' - Label 'Relaxed PHYLIP Interleaved'\n", + "Entity 'http://edamontology.org/format_3820' - Label 'Relaxed PHYLIP Sequential'\n", + "Entity 'http://edamontology.org/format_3821' - Label 'VisML'\n", + "Entity 'http://edamontology.org/format_3822' - Label 'GML'\n", + "Entity 'http://edamontology.org/format_3823' - Label 'FASTG'\n", + "Entity 'http://edamontology.org/format_3824' - Label 'NMR data format'\n", + "Entity 'http://edamontology.org/format_3825' - Label 'nmrML'\n", + "Entity 'http://edamontology.org/format_3826' - Label 'proBAM'\n", + "Entity 'http://edamontology.org/format_3827' - Label 'proBED'\n", + "Entity 'http://edamontology.org/format_3828' - Label 'Raw microarray data format'\n", + "Entity 'http://edamontology.org/format_3829' - Label 'GPR'\n", + "Entity 'http://edamontology.org/format_3830' - Label 'ARB'\n", + "Entity 'http://edamontology.org/format_3832' - Label 'consensusXML'\n", + "Entity 'http://edamontology.org/format_3833' - Label 'featureXML'\n", + "Entity 'http://edamontology.org/format_3834' - Label 'mzData'\n", + "Entity 'http://edamontology.org/format_3835' - Label 'TIDE TXT'\n", + "Entity 'http://edamontology.org/format_3836' - Label 'BLAST XML v2 results format'\n", + "Entity 'http://edamontology.org/format_3838' - Label 'pptx'\n", + "Entity 'http://edamontology.org/format_3839' - Label 'ibd'\n", + "Entity 'http://edamontology.org/format_3841' - Label 'NLP format'\n", + "Entity 'http://edamontology.org/format_3843' - Label 'BEAST'\n", + "Entity 'http://edamontology.org/format_3844' - Label 'Chado-XML'\n", + "Entity 'http://edamontology.org/format_3845' - Label 'HSAML'\n", + "Entity 'http://edamontology.org/format_3846' - Label 'InterProScan XML'\n", + "Entity 'http://edamontology.org/format_3847' - Label 'KGML'\n", + "Entity 'http://edamontology.org/format_3848' - Label 'PubMed XML'\n", + "Entity 'http://edamontology.org/format_3849' - Label 'MSAML'\n", + "Entity 'http://edamontology.org/format_3850' - Label 'OrthoXML'\n", + "Entity 'http://edamontology.org/format_3851' - Label 'PSDML'\n", + "Entity 'http://edamontology.org/format_3852' - Label 'SeqXML'\n", + "Entity 'http://edamontology.org/format_3853' - Label 'UniParc XML'\n", + "Entity 'http://edamontology.org/format_3854' - Label 'UniRef XML'\n", + "Entity 'http://edamontology.org/format_3857' - Label 'CWL'\n", + "Entity 'http://edamontology.org/format_3858' - Label 'Waters RAW'\n", + "Entity 'http://edamontology.org/format_3859' - Label 'JCAMP-DX'\n", + "Entity 'http://edamontology.org/format_3862' - Label 'NLP annotation format'\n", + "Entity 'http://edamontology.org/format_3863' - Label 'NLP corpus format'\n", + "Entity 'http://edamontology.org/format_3864' - Label 'mirGFF3'\n", + "Entity 'http://edamontology.org/format_3865' - Label 'RNA annotation format'\n", + "Entity 'http://edamontology.org/format_3866' - Label 'Trajectory format'\n", + "Entity 'http://edamontology.org/format_3867' - Label 'Trajectory format (binary)'\n", + "Entity 'http://edamontology.org/format_3868' - Label 'Trajectory format (text)'\n", + "Entity 'http://edamontology.org/format_3873' - Label 'HDF'\n", + "Entity 'http://edamontology.org/format_3874' - Label 'PCAzip'\n", + "Entity 'http://edamontology.org/format_3875' - Label 'XTC'\n", + "Entity 'http://edamontology.org/format_3876' - Label 'TNG'\n", + "Entity 'http://edamontology.org/format_3877' - Label 'XYZ'\n", + "Entity 'http://edamontology.org/format_3878' - Label 'mdcrd'\n", + "Entity 'http://edamontology.org/format_3879' - Label 'Topology format'\n", + "Entity 'http://edamontology.org/format_3880' - Label 'GROMACS top'\n", + "Entity 'http://edamontology.org/format_3881' - Label 'AMBER top'\n", + "Entity 'http://edamontology.org/format_3882' - Label 'PSF'\n", + "Entity 'http://edamontology.org/format_3883' - Label 'GROMACS itp'\n", + "Entity 'http://edamontology.org/format_3884' - Label 'FF parameter format'\n", + "Entity 'http://edamontology.org/format_3885' - Label 'BinPos'\n", + "Entity 'http://edamontology.org/format_3886' - Label 'RST'\n", + "Entity 'http://edamontology.org/format_3887' - Label 'CHARMM rtf'\n", + "Entity 'http://edamontology.org/format_3888' - Label 'AMBER frcmod'\n", + "Entity 'http://edamontology.org/format_3889' - Label 'AMBER off'\n", + "Entity 'http://edamontology.org/format_3906' - Label 'NMReDATA'\n", + "Entity 'http://edamontology.org/format_3909' - Label 'BpForms'\n", + "Entity 'http://edamontology.org/format_3910' - Label 'trr'\n", + "Entity 'http://edamontology.org/format_3911' - Label 'msh'\n", + "Entity 'http://edamontology.org/format_3913' - Label 'Loom'\n", + "Entity 'http://edamontology.org/format_3915' - Label 'Zarr'\n", + "Entity 'http://edamontology.org/format_3916' - Label 'MTX'\n", + "Entity 'http://edamontology.org/format_3951' - Label 'BcForms'\n", + "Entity 'http://edamontology.org/format_3956' - Label 'N-Quads'\n", + "Entity 'http://edamontology.org/format_3969' - Label 'Vega'\n", + "Entity 'http://edamontology.org/format_3970' - Label 'Vega-lite'\n", + "Entity 'http://edamontology.org/format_3971' - Label 'NeuroML'\n", + "Entity 'http://edamontology.org/format_3972' - Label 'BNGL'\n", + "Entity 'http://edamontology.org/format_3973' - Label 'Docker image'\n", + "Entity 'http://edamontology.org/format_3975' - Label 'GFA 1'\n", + "Entity 'http://edamontology.org/format_3976' - Label 'GFA 2'\n", + "Entity 'http://edamontology.org/format_3977' - Label 'ObjTables'\n", + "Entity 'http://edamontology.org/format_3978' - Label 'CONTIG'\n", + "Entity 'http://edamontology.org/format_3979' - Label 'WEGO'\n", + "Entity 'http://edamontology.org/format_3980' - Label 'RPKM'\n", + "Entity 'http://edamontology.org/format_3981' - Label 'TAR format'\n", + "Entity 'http://edamontology.org/format_3982' - Label 'CHAIN'\n", + "Entity 'http://edamontology.org/format_3983' - Label 'NET'\n", + "Entity 'http://edamontology.org/format_3984' - Label 'QMAP'\n", + "Entity 'http://edamontology.org/format_3985' - Label 'gxformat2'\n", + "Entity 'http://edamontology.org/format_3986' - Label 'WMV'\n", + "Entity 'http://edamontology.org/format_3987' - Label 'ZIP format'\n", + "Entity 'http://edamontology.org/format_3988' - Label 'LSM'\n", + "Entity 'http://edamontology.org/format_3989' - Label 'GZIP format'\n", + "Entity 'http://edamontology.org/format_3990' - Label 'AVI'\n", + "Entity 'http://edamontology.org/format_3991' - Label 'TrackDB'\n", + "Entity 'http://edamontology.org/format_3992' - Label 'CIGAR format'\n", + "Entity 'http://edamontology.org/format_3993' - Label 'Stereolithography format'\n", + "Entity 'http://edamontology.org/format_3994' - Label 'U3D'\n", + "Entity 'http://edamontology.org/format_3995' - Label 'Texture file format'\n", + "Entity 'http://edamontology.org/format_3996' - Label 'Python script'\n", + "Entity 'http://edamontology.org/format_3997' - Label 'MPEG-4'\n", + "Entity 'http://edamontology.org/format_3998' - Label 'Perl script'\n", + "Entity 'http://edamontology.org/format_3999' - Label 'R script'\n", + "Entity 'http://edamontology.org/format_4000' - Label 'R markdown'\n", + "Entity 'http://edamontology.org/format_4001' - Label 'NIFTI format'\n", + "Entity 'http://edamontology.org/format_4002' - Label 'pickle'\n", + "Entity 'http://edamontology.org/format_4003' - Label 'NumPy format'\n", + "Entity 'http://edamontology.org/format_4004' - Label 'SimTools repertoire file format'\n", + "Entity 'http://edamontology.org/format_4005' - Label 'Configuration file format'\n", + "Entity 'http://edamontology.org/format_4006' - Label 'Zstandard format'\n", + "Entity 'http://edamontology.org/format_4007' - Label 'MATLAB script'\n", + "Entity 'http://edamontology.org/format_4015' - Label 'PEtab'\n", + "Entity 'http://edamontology.org/format_4018' - Label 'gVCF'\n", + "Entity 'http://edamontology.org/format_4023' - Label 'cml'\n", + "Entity 'http://edamontology.org/format_4024' - Label 'cif'\n", + "Entity 'http://edamontology.org/format_4025' - Label 'BioSimulators format for the specifications of biosimulation tools'\n", + "Entity 'http://edamontology.org/format_4026' - Label 'BioSimulators standard for command-line interfaces for biosimulation tools'\n", + "Entity 'http://edamontology.org/format_4035' - Label 'PQR'\n", + "Entity 'http://edamontology.org/format_4036' - Label 'PDBQT'\n", + "Entity 'http://edamontology.org/format_4039' - Label 'MSP'\n", + "Entity 'http://edamontology.org/operation_0004' - Label 'Operation'\n", + "Entity 'http://edamontology.org/operation_0224' - Label 'Query and retrieval'\n", + "Entity 'http://edamontology.org/operation_0225' - Label 'Data retrieval (database cross-reference)'\n", + "Entity 'http://edamontology.org/operation_0226' - Label 'Annotation'\n", + "Entity 'http://edamontology.org/operation_0227' - Label 'Indexing'\n", + "Entity 'http://edamontology.org/operation_0228' - Label 'Data index analysis'\n", + "Entity 'http://edamontology.org/operation_0229' - Label 'Annotation retrieval (sequence)'\n", + "Entity 'http://edamontology.org/operation_0230' - Label 'Sequence generation'\n", + "Entity 'http://edamontology.org/operation_0231' - Label 'Sequence editing'\n", + "Entity 'http://edamontology.org/operation_0232' - Label 'Sequence merging'\n", + "Entity 'http://edamontology.org/operation_0233' - Label 'Sequence conversion'\n", + "Entity 'http://edamontology.org/operation_0234' - Label 'Sequence complexity calculation'\n", + "Entity 'http://edamontology.org/operation_0235' - Label 'Sequence ambiguity calculation'\n", + "Entity 'http://edamontology.org/operation_0236' - Label 'Sequence composition calculation'\n", + "Entity 'http://edamontology.org/operation_0237' - Label 'Repeat sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0238' - Label 'Sequence motif discovery'\n", + "Entity 'http://edamontology.org/operation_0239' - Label 'Sequence motif recognition'\n", + "Entity 'http://edamontology.org/operation_0240' - Label 'Sequence motif comparison'\n", + "Entity 'http://edamontology.org/operation_0241' - Label 'Transcription regulatory sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0242' - Label 'Conserved transcription regulatory sequence identification'\n", + "Entity 'http://edamontology.org/operation_0243' - Label 'Protein property calculation (from structure)'\n", + "Entity 'http://edamontology.org/operation_0244' - Label 'Simulation analysis'\n", + "Entity 'http://edamontology.org/operation_0245' - Label 'Structural motif discovery'\n", + "Entity 'http://edamontology.org/operation_0246' - Label 'Protein domain recognition'\n", + "Entity 'http://edamontology.org/operation_0247' - Label 'Protein architecture analysis'\n", + "Entity 'http://edamontology.org/operation_0248' - Label 'Residue interaction calculation'\n", + "Entity 'http://edamontology.org/operation_0249' - Label 'Protein geometry calculation'\n", + "Entity 'http://edamontology.org/operation_0250' - Label 'Protein property calculation'\n", + "Entity 'http://edamontology.org/operation_0252' - Label 'Peptide immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0253' - Label 'Sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_0254' - Label 'Data retrieval (feature table)'\n", + "Entity 'http://edamontology.org/operation_0255' - Label 'Feature table query'\n", + "Entity 'http://edamontology.org/operation_0256' - Label 'Sequence feature comparison'\n", + "Entity 'http://edamontology.org/operation_0257' - Label 'Data retrieval (sequence alignment)'\n", + "Entity 'http://edamontology.org/operation_0258' - Label 'Sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_0259' - Label 'Sequence alignment comparison'\n", + "Entity 'http://edamontology.org/operation_0260' - Label 'Sequence alignment conversion'\n", + "Entity 'http://edamontology.org/operation_0261' - Label 'Nucleic acid property processing'\n", + "Entity 'http://edamontology.org/operation_0262' - Label 'Nucleic acid property calculation'\n", + "Entity 'http://edamontology.org/operation_0264' - Label 'Alternative splicing prediction'\n", + "Entity 'http://edamontology.org/operation_0265' - Label 'Frameshift detection'\n", + "Entity 'http://edamontology.org/operation_0266' - Label 'Vector sequence detection'\n", + "Entity 'http://edamontology.org/operation_0267' - Label 'Protein secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0268' - Label 'Protein super-secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0269' - Label 'Transmembrane protein prediction'\n", + "Entity 'http://edamontology.org/operation_0270' - Label 'Transmembrane protein analysis'\n", + "Entity 'http://edamontology.org/operation_0271' - Label 'Structure prediction'\n", + "Entity 'http://edamontology.org/operation_0272' - Label 'Residue contact prediction'\n", + "Entity 'http://edamontology.org/operation_0273' - Label 'Protein interaction raw data analysis'\n", + "Entity 'http://edamontology.org/operation_0274' - Label 'Protein-protein interaction prediction (from protein sequence)'\n", + "Entity 'http://edamontology.org/operation_0275' - Label 'Protein-protein interaction prediction (from protein structure)'\n", + "Entity 'http://edamontology.org/operation_0276' - Label 'Protein interaction network analysis'\n", + "Entity 'http://edamontology.org/operation_0277' - Label 'Pathway or network comparison'\n", + "Entity 'http://edamontology.org/operation_0278' - Label 'RNA secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0279' - Label 'Nucleic acid folding analysis'\n", + "Entity 'http://edamontology.org/operation_0280' - Label 'Data retrieval (restriction enzyme annotation)'\n", + "Entity 'http://edamontology.org/operation_0281' - Label 'Genetic marker identification'\n", + "Entity 'http://edamontology.org/operation_0282' - Label 'Genetic mapping'\n", + "Entity 'http://edamontology.org/operation_0283' - Label 'Linkage analysis'\n", + "Entity 'http://edamontology.org/operation_0284' - Label 'Codon usage table generation'\n", + "Entity 'http://edamontology.org/operation_0285' - Label 'Codon usage table comparison'\n", + "Entity 'http://edamontology.org/operation_0286' - Label 'Codon usage analysis'\n", + "Entity 'http://edamontology.org/operation_0287' - Label 'Base position variability plotting'\n", + "Entity 'http://edamontology.org/operation_0288' - Label 'Sequence word comparison'\n", + "Entity 'http://edamontology.org/operation_0289' - Label 'Sequence distance matrix generation'\n", + "Entity 'http://edamontology.org/operation_0290' - Label 'Sequence redundancy removal'\n", + "Entity 'http://edamontology.org/operation_0291' - Label 'Sequence clustering'\n", + "Entity 'http://edamontology.org/operation_0292' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0293' - Label 'Hybrid sequence alignment construction'\n", + "Entity 'http://edamontology.org/operation_0294' - Label 'Structure-based sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0295' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/operation_0296' - Label 'Sequence profile generation'\n", + "Entity 'http://edamontology.org/operation_0297' - Label '3D profile generation'\n", + "Entity 'http://edamontology.org/operation_0298' - Label 'Profile-profile alignment'\n", + "Entity 'http://edamontology.org/operation_0299' - Label '3D profile-to-3D profile alignment'\n", + "Entity 'http://edamontology.org/operation_0300' - Label 'Sequence profile alignment'\n", + "Entity 'http://edamontology.org/operation_0301' - Label 'Sequence-to-3D-profile alignment'\n", + "Entity 'http://edamontology.org/operation_0302' - Label 'Protein threading'\n", + "Entity 'http://edamontology.org/operation_0303' - Label 'Fold recognition'\n", + "Entity 'http://edamontology.org/operation_0304' - Label 'Metadata retrieval'\n", + "Entity 'http://edamontology.org/operation_0305' - Label 'Literature search'\n", + "Entity 'http://edamontology.org/operation_0306' - Label 'Text mining'\n", + "Entity 'http://edamontology.org/operation_0307' - Label 'Virtual PCR'\n", + "Entity 'http://edamontology.org/operation_0308' - Label 'PCR primer design'\n", + "Entity 'http://edamontology.org/operation_0309' - Label 'Microarray probe design'\n", + "Entity 'http://edamontology.org/operation_0310' - Label 'Sequence assembly'\n", + "Entity 'http://edamontology.org/operation_0311' - Label 'Microarray data standardisation and normalisation'\n", + "Entity 'http://edamontology.org/operation_0312' - Label 'Sequencing-based expression profile data processing'\n", + "Entity 'http://edamontology.org/operation_0313' - Label 'Expression profile clustering'\n", + "Entity 'http://edamontology.org/operation_0314' - Label 'Gene expression profiling'\n", + "Entity 'http://edamontology.org/operation_0315' - Label 'Expression profile comparison'\n", + "Entity 'http://edamontology.org/operation_0316' - Label 'Functional profiling'\n", + "Entity 'http://edamontology.org/operation_0317' - Label 'EST and cDNA sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0318' - Label 'Structural genomics target selection'\n", + "Entity 'http://edamontology.org/operation_0319' - Label 'Protein secondary structure assignment'\n", + "Entity 'http://edamontology.org/operation_0320' - Label 'Protein structure assignment'\n", + "Entity 'http://edamontology.org/operation_0321' - Label 'Protein structure validation'\n", + "Entity 'http://edamontology.org/operation_0322' - Label 'Molecular model refinement'\n", + "Entity 'http://edamontology.org/operation_0323' - Label 'Phylogenetic inference'\n", + "Entity 'http://edamontology.org/operation_0324' - Label 'Phylogenetic analysis'\n", + "Entity 'http://edamontology.org/operation_0325' - Label 'Phylogenetic tree comparison'\n", + "Entity 'http://edamontology.org/operation_0326' - Label 'Phylogenetic tree editing'\n", + "Entity 'http://edamontology.org/operation_0327' - Label 'Phylogenetic footprinting'\n", + "Entity 'http://edamontology.org/operation_0328' - Label 'Protein folding simulation'\n", + "Entity 'http://edamontology.org/operation_0329' - Label 'Protein folding pathway prediction'\n", + "Entity 'http://edamontology.org/operation_0330' - Label 'Protein SNP mapping'\n", + "Entity 'http://edamontology.org/operation_0331' - Label 'Variant effect prediction'\n", + "Entity 'http://edamontology.org/operation_0332' - Label 'Immunogen design'\n", + "Entity 'http://edamontology.org/operation_0333' - Label 'Zinc finger prediction'\n", + "Entity 'http://edamontology.org/operation_0334' - Label 'Enzyme kinetics calculation'\n", + "Entity 'http://edamontology.org/operation_0335' - Label 'Formatting'\n", + "Entity 'http://edamontology.org/operation_0336' - Label 'Format validation'\n", + "Entity 'http://edamontology.org/operation_0337' - Label 'Visualisation'\n", + "Entity 'http://edamontology.org/operation_0338' - Label 'Sequence database search'\n", + "Entity 'http://edamontology.org/operation_0339' - Label 'Structure database search'\n", + "Entity 'http://edamontology.org/operation_0340' - Label 'Protein secondary database search'\n", + "Entity 'http://edamontology.org/operation_0341' - Label 'Motif database search'\n", + "Entity 'http://edamontology.org/operation_0342' - Label 'Sequence profile database search'\n", + "Entity 'http://edamontology.org/operation_0343' - Label 'Transmembrane protein database search'\n", + "Entity 'http://edamontology.org/operation_0344' - Label 'Sequence retrieval (by code)'\n", + "Entity 'http://edamontology.org/operation_0345' - Label 'Sequence retrieval (by keyword)'\n", + "Entity 'http://edamontology.org/operation_0346' - Label 'Sequence similarity search'\n", + "Entity 'http://edamontology.org/operation_0347' - Label 'Sequence database search (by motif or pattern)'\n", + "Entity 'http://edamontology.org/operation_0348' - Label 'Sequence database search (by amino acid composition)'\n", + "Entity 'http://edamontology.org/operation_0349' - Label 'Sequence database search (by property)'\n", + "Entity 'http://edamontology.org/operation_0350' - Label 'Sequence database search (by sequence using word-based methods)'\n", + "Entity 'http://edamontology.org/operation_0351' - Label 'Sequence database search (by sequence using profile-based methods)'\n", + "Entity 'http://edamontology.org/operation_0352' - Label 'Sequence database search (by sequence using local alignment-based methods)'\n", + "Entity 'http://edamontology.org/operation_0353' - Label 'Sequence database search (by sequence using global alignment-based methods)'\n", + "Entity 'http://edamontology.org/operation_0354' - Label 'Sequence database search (by sequence for primer sequences)'\n", + "Entity 'http://edamontology.org/operation_0355' - Label 'Sequence database search (by molecular weight)'\n", + "Entity 'http://edamontology.org/operation_0356' - Label 'Sequence database search (by isoelectric point)'\n", + "Entity 'http://edamontology.org/operation_0357' - Label 'Structure retrieval (by code)'\n", + "Entity 'http://edamontology.org/operation_0358' - Label 'Structure retrieval (by keyword)'\n", + "Entity 'http://edamontology.org/operation_0359' - Label 'Structure database search (by sequence)'\n", + "Entity 'http://edamontology.org/operation_0360' - Label 'Structural similarity search'\n", + "Entity 'http://edamontology.org/operation_0361' - Label 'Sequence annotation'\n", + "Entity 'http://edamontology.org/operation_0362' - Label 'Genome annotation'\n", + "Entity 'http://edamontology.org/operation_0363' - Label 'Reverse complement'\n", + "Entity 'http://edamontology.org/operation_0364' - Label 'Random sequence generation'\n", + "Entity 'http://edamontology.org/operation_0365' - Label 'Restriction digest'\n", + "Entity 'http://edamontology.org/operation_0366' - Label 'Protein sequence cleavage'\n", + "Entity 'http://edamontology.org/operation_0367' - Label 'Sequence mutation and randomisation'\n", + "Entity 'http://edamontology.org/operation_0368' - Label 'Sequence masking'\n", + "Entity 'http://edamontology.org/operation_0369' - Label 'Sequence cutting'\n", + "Entity 'http://edamontology.org/operation_0370' - Label 'Restriction site creation'\n", + "Entity 'http://edamontology.org/operation_0371' - Label 'DNA translation'\n", + "Entity 'http://edamontology.org/operation_0372' - Label 'DNA transcription'\n", + "Entity 'http://edamontology.org/operation_0377' - Label 'Sequence composition calculation (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_0378' - Label 'Sequence composition calculation (protein)'\n", + "Entity 'http://edamontology.org/operation_0379' - Label 'Repeat sequence detection'\n", + "Entity 'http://edamontology.org/operation_0380' - Label 'Repeat sequence organisation analysis'\n", + "Entity 'http://edamontology.org/operation_0383' - Label 'Protein hydropathy calculation (from structure)'\n", + "Entity 'http://edamontology.org/operation_0384' - Label 'Accessible surface calculation'\n", + "Entity 'http://edamontology.org/operation_0385' - Label 'Protein hydropathy cluster calculation'\n", + "Entity 'http://edamontology.org/operation_0386' - Label 'Protein dipole moment calculation'\n", + "Entity 'http://edamontology.org/operation_0387' - Label 'Molecular surface calculation'\n", + "Entity 'http://edamontology.org/operation_0388' - Label 'Protein binding site prediction (from structure)'\n", + "Entity 'http://edamontology.org/operation_0389' - Label 'Protein-nucleic acid interaction analysis'\n", + "Entity 'http://edamontology.org/operation_0390' - Label 'Protein peeling'\n", + "Entity 'http://edamontology.org/operation_0391' - Label 'Protein distance matrix calculation'\n", + "Entity 'http://edamontology.org/operation_0392' - Label 'Contact map calculation'\n", + "Entity 'http://edamontology.org/operation_0393' - Label 'Residue cluster calculation'\n", + "Entity 'http://edamontology.org/operation_0394' - Label 'Hydrogen bond calculation'\n", + "Entity 'http://edamontology.org/operation_0395' - Label 'Residue non-canonical interaction detection'\n", + "Entity 'http://edamontology.org/operation_0396' - Label 'Ramachandran plot calculation'\n", + "Entity 'http://edamontology.org/operation_0397' - Label 'Ramachandran plot validation'\n", + "Entity 'http://edamontology.org/operation_0398' - Label 'Protein molecular weight calculation'\n", + "Entity 'http://edamontology.org/operation_0399' - Label 'Protein extinction coefficient calculation'\n", + "Entity 'http://edamontology.org/operation_0400' - Label 'Protein pKa calculation'\n", + "Entity 'http://edamontology.org/operation_0401' - Label 'Protein hydropathy calculation (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0402' - Label 'Protein titration curve plotting'\n", + "Entity 'http://edamontology.org/operation_0403' - Label 'Protein isoelectric point calculation'\n", + "Entity 'http://edamontology.org/operation_0404' - Label 'Protein hydrogen exchange rate calculation'\n", + "Entity 'http://edamontology.org/operation_0405' - Label 'Protein hydrophobic region calculation'\n", + "Entity 'http://edamontology.org/operation_0406' - Label 'Protein aliphatic index calculation'\n", + "Entity 'http://edamontology.org/operation_0407' - Label 'Protein hydrophobic moment plotting'\n", + "Entity 'http://edamontology.org/operation_0408' - Label 'Protein globularity prediction'\n", + "Entity 'http://edamontology.org/operation_0409' - Label 'Protein solubility prediction'\n", + "Entity 'http://edamontology.org/operation_0410' - Label 'Protein crystallizability prediction'\n", + "Entity 'http://edamontology.org/operation_0411' - Label 'Protein signal peptide detection (eukaryotes)'\n", + "Entity 'http://edamontology.org/operation_0412' - Label 'Protein signal peptide detection (bacteria)'\n", + "Entity 'http://edamontology.org/operation_0413' - Label 'MHC peptide immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0414' - Label 'Protein feature prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0415' - Label 'Nucleic acid feature detection'\n", + "Entity 'http://edamontology.org/operation_0416' - Label 'Epitope mapping'\n", + "Entity 'http://edamontology.org/operation_0417' - Label 'Post-translational modification site prediction'\n", + "Entity 'http://edamontology.org/operation_0418' - Label 'Protein signal peptide detection'\n", + "Entity 'http://edamontology.org/operation_0419' - Label 'Protein binding site prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0420' - Label 'Nucleic acids-binding site prediction'\n", + "Entity 'http://edamontology.org/operation_0421' - Label 'Protein folding site prediction'\n", + "Entity 'http://edamontology.org/operation_0422' - Label 'Protein cleavage site prediction'\n", + "Entity 'http://edamontology.org/operation_0423' - Label 'Epitope mapping (MHC Class I)'\n", + "Entity 'http://edamontology.org/operation_0424' - Label 'Epitope mapping (MHC Class II)'\n", + "Entity 'http://edamontology.org/operation_0425' - Label 'Whole gene prediction'\n", + "Entity 'http://edamontology.org/operation_0426' - Label 'Gene component prediction'\n", + "Entity 'http://edamontology.org/operation_0427' - Label 'Transposon prediction'\n", + "Entity 'http://edamontology.org/operation_0428' - Label 'PolyA signal detection'\n", + "Entity 'http://edamontology.org/operation_0429' - Label 'Quadruplex formation site detection'\n", + "Entity 'http://edamontology.org/operation_0430' - Label 'CpG island and isochore detection'\n", + "Entity 'http://edamontology.org/operation_0431' - Label 'Restriction site recognition'\n", + "Entity 'http://edamontology.org/operation_0432' - Label 'Nucleosome position prediction'\n", + "Entity 'http://edamontology.org/operation_0433' - Label 'Splice site prediction'\n", + "Entity 'http://edamontology.org/operation_0434' - Label 'Integrated gene prediction'\n", + "Entity 'http://edamontology.org/operation_0435' - Label 'Operon prediction'\n", + "Entity 'http://edamontology.org/operation_0436' - Label 'Coding region prediction'\n", + "Entity 'http://edamontology.org/operation_0437' - Label 'SECIS element prediction'\n", + "Entity 'http://edamontology.org/operation_0438' - Label 'Transcriptional regulatory element prediction'\n", + "Entity 'http://edamontology.org/operation_0439' - Label 'Translation initiation site prediction'\n", + "Entity 'http://edamontology.org/operation_0440' - Label 'Promoter prediction'\n", + "Entity 'http://edamontology.org/operation_0441' - Label 'cis-regulatory element prediction'\n", + "Entity 'http://edamontology.org/operation_0442' - Label 'Transcriptional regulatory element prediction (RNA-cis)'\n", + "Entity 'http://edamontology.org/operation_0443' - Label 'trans-regulatory element prediction'\n", + "Entity 'http://edamontology.org/operation_0444' - Label 'S/MAR prediction'\n", + "Entity 'http://edamontology.org/operation_0445' - Label 'Transcription factor binding site prediction'\n", + "Entity 'http://edamontology.org/operation_0446' - Label 'Exonic splicing enhancer prediction'\n", + "Entity 'http://edamontology.org/operation_0447' - Label 'Sequence alignment validation'\n", + "Entity 'http://edamontology.org/operation_0448' - Label 'Sequence alignment analysis (conservation)'\n", + "Entity 'http://edamontology.org/operation_0449' - Label 'Sequence alignment analysis (site correlation)'\n", + "Entity 'http://edamontology.org/operation_0450' - Label 'Chimera detection'\n", + "Entity 'http://edamontology.org/operation_0451' - Label 'Recombination detection'\n", + "Entity 'http://edamontology.org/operation_0452' - Label 'Indel detection'\n", + "Entity 'http://edamontology.org/operation_0453' - Label 'Nucleosome formation potential prediction'\n", + "Entity 'http://edamontology.org/operation_0455' - Label 'Nucleic acid thermodynamic property calculation'\n", + "Entity 'http://edamontology.org/operation_0456' - Label 'Nucleic acid melting profile plotting'\n", + "Entity 'http://edamontology.org/operation_0457' - Label 'Nucleic acid stitch profile plotting'\n", + "Entity 'http://edamontology.org/operation_0458' - Label 'Nucleic acid melting curve plotting'\n", + "Entity 'http://edamontology.org/operation_0459' - Label 'Nucleic acid probability profile plotting'\n", + "Entity 'http://edamontology.org/operation_0460' - Label 'Nucleic acid temperature profile plotting'\n", + "Entity 'http://edamontology.org/operation_0461' - Label 'Nucleic acid curvature calculation'\n", + "Entity 'http://edamontology.org/operation_0463' - Label 'miRNA target prediction'\n", + "Entity 'http://edamontology.org/operation_0464' - Label 'tRNA gene prediction'\n", + "Entity 'http://edamontology.org/operation_0465' - Label 'siRNA binding specificity prediction'\n", + "Entity 'http://edamontology.org/operation_0467' - Label 'Protein secondary structure prediction (integrated)'\n", + "Entity 'http://edamontology.org/operation_0468' - Label 'Protein secondary structure prediction (helices)'\n", + "Entity 'http://edamontology.org/operation_0469' - Label 'Protein secondary structure prediction (turns)'\n", + "Entity 'http://edamontology.org/operation_0470' - Label 'Protein secondary structure prediction (coils)'\n", + "Entity 'http://edamontology.org/operation_0471' - Label 'Disulfide bond prediction'\n", + "Entity 'http://edamontology.org/operation_0472' - Label 'GPCR prediction'\n", + "Entity 'http://edamontology.org/operation_0473' - Label 'GPCR analysis'\n", + "Entity 'http://edamontology.org/operation_0474' - Label 'Protein structure prediction'\n", + "Entity 'http://edamontology.org/operation_0475' - Label 'Nucleic acid structure prediction'\n", + "Entity 'http://edamontology.org/operation_0476' - Label 'Ab initio structure prediction'\n", + "Entity 'http://edamontology.org/operation_0477' - Label 'Protein modelling'\n", + "Entity 'http://edamontology.org/operation_0478' - Label 'Molecular docking'\n", + "Entity 'http://edamontology.org/operation_0479' - Label 'Backbone modelling'\n", + "Entity 'http://edamontology.org/operation_0480' - Label 'Side chain modelling'\n", + "Entity 'http://edamontology.org/operation_0481' - Label 'Loop modelling'\n", + "Entity 'http://edamontology.org/operation_0482' - Label 'Protein-ligand docking'\n", + "Entity 'http://edamontology.org/operation_0483' - Label 'RNA inverse folding'\n", + "Entity 'http://edamontology.org/operation_0484' - Label 'SNP detection'\n", + "Entity 'http://edamontology.org/operation_0485' - Label 'Radiation Hybrid Mapping'\n", + "Entity 'http://edamontology.org/operation_0486' - Label 'Functional mapping'\n", + "Entity 'http://edamontology.org/operation_0487' - Label 'Haplotype mapping'\n", + "Entity 'http://edamontology.org/operation_0488' - Label 'Linkage disequilibrium calculation'\n", + "Entity 'http://edamontology.org/operation_0489' - Label 'Genetic code prediction'\n", + "Entity 'http://edamontology.org/operation_0490' - Label 'Dot plot plotting'\n", + "Entity 'http://edamontology.org/operation_0491' - Label 'Pairwise sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0492' - Label 'Multiple sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0493' - Label 'Pairwise sequence alignment generation (local)'\n", + "Entity 'http://edamontology.org/operation_0494' - Label 'Pairwise sequence alignment generation (global)'\n", + "Entity 'http://edamontology.org/operation_0495' - Label 'Local alignment'\n", + "Entity 'http://edamontology.org/operation_0496' - Label 'Global alignment'\n", + "Entity 'http://edamontology.org/operation_0497' - Label 'Constrained sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0498' - Label 'Consensus-based sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0499' - Label 'Tree-based sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0500' - Label 'Secondary structure alignment generation'\n", + "Entity 'http://edamontology.org/operation_0501' - Label 'Protein secondary structure alignment generation'\n", + "Entity 'http://edamontology.org/operation_0502' - Label 'RNA secondary structure alignment'\n", + "Entity 'http://edamontology.org/operation_0503' - Label 'Pairwise structure alignment'\n", + "Entity 'http://edamontology.org/operation_0504' - Label 'Multiple structure alignment'\n", + "Entity 'http://edamontology.org/operation_0505' - Label 'Structure alignment (protein)'\n", + "Entity 'http://edamontology.org/operation_0506' - Label 'Structure alignment (RNA)'\n", + "Entity 'http://edamontology.org/operation_0507' - Label 'Pairwise structure alignment generation (local)'\n", + "Entity 'http://edamontology.org/operation_0508' - Label 'Pairwise structure alignment generation (global)'\n", + "Entity 'http://edamontology.org/operation_0509' - Label 'Local structure alignment'\n", + "Entity 'http://edamontology.org/operation_0510' - Label 'Global structure alignment'\n", + "Entity 'http://edamontology.org/operation_0511' - Label 'Profile-profile alignment (pairwise)'\n", + "Entity 'http://edamontology.org/operation_0512' - Label 'Sequence alignment generation (multiple profile)'\n", + "Entity 'http://edamontology.org/operation_0513' - Label '3D profile-to-3D profile alignment (pairwise)'\n", + "Entity 'http://edamontology.org/operation_0514' - Label 'Structural profile alignment generation (multiple)'\n", + "Entity 'http://edamontology.org/operation_0515' - Label 'Data retrieval (tool metadata)'\n", + "Entity 'http://edamontology.org/operation_0516' - Label 'Data retrieval (database metadata)'\n", + "Entity 'http://edamontology.org/operation_0517' - Label 'PCR primer design (for large scale sequencing)'\n", + "Entity 'http://edamontology.org/operation_0518' - Label 'PCR primer design (for genotyping polymorphisms)'\n", + "Entity 'http://edamontology.org/operation_0519' - Label 'PCR primer design (for gene transcription profiling)'\n", + "Entity 'http://edamontology.org/operation_0520' - Label 'PCR primer design (for conserved primers)'\n", + "Entity 'http://edamontology.org/operation_0521' - Label 'PCR primer design (based on gene structure)'\n", + "Entity 'http://edamontology.org/operation_0522' - Label 'PCR primer design (for methylation PCRs)'\n", + "Entity 'http://edamontology.org/operation_0523' - Label 'Mapping assembly'\n", + "Entity 'http://edamontology.org/operation_0524' - Label 'De-novo assembly'\n", + "Entity 'http://edamontology.org/operation_0525' - Label 'Genome assembly'\n", + "Entity 'http://edamontology.org/operation_0526' - Label 'EST assembly'\n", + "Entity 'http://edamontology.org/operation_0527' - Label 'Sequence tag mapping'\n", + "Entity 'http://edamontology.org/operation_0528' - Label 'SAGE data processing'\n", + "Entity 'http://edamontology.org/operation_0529' - Label 'MPSS data processing'\n", + "Entity 'http://edamontology.org/operation_0530' - Label 'SBS data processing'\n", + "Entity 'http://edamontology.org/operation_0531' - Label 'Heat map generation'\n", + "Entity 'http://edamontology.org/operation_0532' - Label 'Gene expression profile analysis'\n", + "Entity 'http://edamontology.org/operation_0533' - Label 'Expression profile pathway mapping'\n", + "Entity 'http://edamontology.org/operation_0534' - Label 'Protein secondary structure assignment (from coordinate data)'\n", + "Entity 'http://edamontology.org/operation_0535' - Label 'Protein secondary structure assignment (from CD data)'\n", + "Entity 'http://edamontology.org/operation_0536' - Label 'Protein structure assignment (from X-ray crystallographic data)'\n", + "Entity 'http://edamontology.org/operation_0537' - Label 'Protein structure assignment (from NMR data)'\n", + "Entity 'http://edamontology.org/operation_0538' - Label 'Phylogenetic inference (data centric)'\n", + "Entity 'http://edamontology.org/operation_0539' - Label 'Phylogenetic inference (method centric)'\n", + "Entity 'http://edamontology.org/operation_0540' - Label 'Phylogenetic inference (from molecular sequences)'\n", + "Entity 'http://edamontology.org/operation_0541' - Label 'Phylogenetic inference (from continuous quantitative characters)'\n", + "Entity 'http://edamontology.org/operation_0542' - Label 'Phylogenetic inference (from gene frequencies)'\n", + "Entity 'http://edamontology.org/operation_0543' - Label 'Phylogenetic inference (from polymorphism data)'\n", + "Entity 'http://edamontology.org/operation_0544' - Label 'Species tree construction'\n", + "Entity 'http://edamontology.org/operation_0545' - Label 'Phylogenetic inference (parsimony methods)'\n", + "Entity 'http://edamontology.org/operation_0546' - Label 'Phylogenetic inference (minimum distance methods)'\n", + "Entity 'http://edamontology.org/operation_0547' - Label 'Phylogenetic inference (maximum likelihood and Bayesian methods)'\n", + "Entity 'http://edamontology.org/operation_0548' - Label 'Phylogenetic inference (quartet methods)'\n", + "Entity 'http://edamontology.org/operation_0549' - Label 'Phylogenetic inference (AI methods)'\n", + "Entity 'http://edamontology.org/operation_0550' - Label 'DNA substitution modelling'\n", + "Entity 'http://edamontology.org/operation_0551' - Label 'Phylogenetic tree topology analysis'\n", + "Entity 'http://edamontology.org/operation_0552' - Label 'Phylogenetic tree bootstrapping'\n", + "Entity 'http://edamontology.org/operation_0553' - Label 'Gene tree construction'\n", + "Entity 'http://edamontology.org/operation_0554' - Label 'Allele frequency distribution analysis'\n", + "Entity 'http://edamontology.org/operation_0555' - Label 'Consensus tree construction'\n", + "Entity 'http://edamontology.org/operation_0556' - Label 'Phylogenetic sub/super tree construction'\n", + "Entity 'http://edamontology.org/operation_0557' - Label 'Phylogenetic tree distances calculation'\n", + "Entity 'http://edamontology.org/operation_0558' - Label 'Phylogenetic tree annotation'\n", + "Entity 'http://edamontology.org/operation_0559' - Label 'Immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0560' - Label 'DNA vaccine design'\n", + "Entity 'http://edamontology.org/operation_0561' - Label 'Sequence formatting'\n", + "Entity 'http://edamontology.org/operation_0562' - Label 'Sequence alignment formatting'\n", + "Entity 'http://edamontology.org/operation_0563' - Label 'Codon usage table formatting'\n", + "Entity 'http://edamontology.org/operation_0564' - Label 'Sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_0565' - Label 'Sequence alignment visualisation'\n", + "Entity 'http://edamontology.org/operation_0566' - Label 'Sequence cluster visualisation'\n", + "Entity 'http://edamontology.org/operation_0567' - Label 'Phylogenetic tree visualisation'\n", + "Entity 'http://edamontology.org/operation_0568' - Label 'RNA secondary structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0569' - Label 'Protein secondary structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0570' - Label 'Structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0571' - Label 'Expression data visualisation'\n", + "Entity 'http://edamontology.org/operation_0572' - Label 'Protein interaction network visualisation'\n", + "Entity 'http://edamontology.org/operation_0573' - Label 'Map drawing'\n", + "Entity 'http://edamontology.org/operation_0574' - Label 'Sequence motif rendering'\n", + "Entity 'http://edamontology.org/operation_0575' - Label 'Restriction map drawing'\n", + "Entity 'http://edamontology.org/operation_0577' - Label 'DNA linear map rendering'\n", + "Entity 'http://edamontology.org/operation_0578' - Label 'Plasmid map drawing'\n", + "Entity 'http://edamontology.org/operation_0579' - Label 'Operon drawing'\n", + "Entity 'http://edamontology.org/operation_1768' - Label 'Nucleic acid folding family identification'\n", + "Entity 'http://edamontology.org/operation_1769' - Label 'Nucleic acid folding energy calculation'\n", + "Entity 'http://edamontology.org/operation_1774' - Label 'Annotation retrieval'\n", + "Entity 'http://edamontology.org/operation_1777' - Label 'Protein function prediction'\n", + "Entity 'http://edamontology.org/operation_1778' - Label 'Protein function comparison'\n", + "Entity 'http://edamontology.org/operation_1780' - Label 'Sequence submission'\n", + "Entity 'http://edamontology.org/operation_1781' - Label 'Gene regulatory network analysis'\n", + "Entity 'http://edamontology.org/operation_1812' - Label 'Parsing'\n", + "Entity 'http://edamontology.org/operation_1813' - Label 'Sequence retrieval'\n", + "Entity 'http://edamontology.org/operation_1814' - Label 'Structure retrieval'\n", + "Entity 'http://edamontology.org/operation_1816' - Label 'Surface rendering'\n", + "Entity 'http://edamontology.org/operation_1817' - Label 'Protein atom surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1818' - Label 'Protein atom surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1819' - Label 'Protein residue surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1820' - Label 'Protein residue surface calculation (vacuum accessible)'\n", + "Entity 'http://edamontology.org/operation_1821' - Label 'Protein residue surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1822' - Label 'Protein residue surface calculation (vacuum molecular)'\n", + "Entity 'http://edamontology.org/operation_1823' - Label 'Protein surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1824' - Label 'Protein surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1825' - Label 'Backbone torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1826' - Label 'Full torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1827' - Label 'Cysteine torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1828' - Label 'Tau angle calculation'\n", + "Entity 'http://edamontology.org/operation_1829' - Label 'Cysteine bridge detection'\n", + "Entity 'http://edamontology.org/operation_1830' - Label 'Free cysteine detection'\n", + "Entity 'http://edamontology.org/operation_1831' - Label 'Metal-bound cysteine detection'\n", + "Entity 'http://edamontology.org/operation_1832' - Label 'Residue contact calculation (residue-nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_1834' - Label 'Protein-metal contact calculation'\n", + "Entity 'http://edamontology.org/operation_1835' - Label 'Residue contact calculation (residue-negative ion)'\n", + "Entity 'http://edamontology.org/operation_1836' - Label 'Residue bump detection'\n", + "Entity 'http://edamontology.org/operation_1837' - Label 'Residue symmetry contact calculation'\n", + "Entity 'http://edamontology.org/operation_1838' - Label 'Residue contact calculation (residue-ligand)'\n", + "Entity 'http://edamontology.org/operation_1839' - Label 'Salt bridge calculation'\n", + "Entity 'http://edamontology.org/operation_1841' - Label 'Rotamer likelihood prediction'\n", + "Entity 'http://edamontology.org/operation_1842' - Label 'Proline mutation value calculation'\n", + "Entity 'http://edamontology.org/operation_1843' - Label 'Residue packing validation'\n", + "Entity 'http://edamontology.org/operation_1844' - Label 'Protein geometry validation'\n", + "Entity 'http://edamontology.org/operation_1845' - Label 'PDB file sequence retrieval'\n", + "Entity 'http://edamontology.org/operation_1846' - Label 'HET group detection'\n", + "Entity 'http://edamontology.org/operation_1847' - Label 'DSSP secondary structure assignment'\n", + "Entity 'http://edamontology.org/operation_1848' - Label 'Structure formatting'\n", + "Entity 'http://edamontology.org/operation_1850' - Label 'Protein cysteine and disulfide bond assignment'\n", + "Entity 'http://edamontology.org/operation_1913' - Label 'Residue validation'\n", + "Entity 'http://edamontology.org/operation_1914' - Label 'Structure retrieval (water)'\n", + "Entity 'http://edamontology.org/operation_2008' - Label 'siRNA duplex prediction'\n", + "Entity 'http://edamontology.org/operation_2089' - Label 'Sequence alignment refinement'\n", + "Entity 'http://edamontology.org/operation_2120' - Label 'Listfile processing'\n", + "Entity 'http://edamontology.org/operation_2121' - Label 'Sequence file editing'\n", + "Entity 'http://edamontology.org/operation_2122' - Label 'Sequence alignment file processing'\n", + "Entity 'http://edamontology.org/operation_2123' - Label 'Small molecule data processing'\n", + "Entity 'http://edamontology.org/operation_2222' - Label 'Data retrieval (ontology annotation)'\n", + "Entity 'http://edamontology.org/operation_2224' - Label 'Data retrieval (ontology concept)'\n", + "Entity 'http://edamontology.org/operation_2233' - Label 'Representative sequence identification'\n", + "Entity 'http://edamontology.org/operation_2234' - Label 'Structure file processing'\n", + "Entity 'http://edamontology.org/operation_2237' - Label 'Data retrieval (sequence profile)'\n", + "Entity 'http://edamontology.org/operation_2238' - Label 'Statistical calculation'\n", + "Entity 'http://edamontology.org/operation_2239' - Label '3D-1D scoring matrix generation'\n", + "Entity 'http://edamontology.org/operation_2241' - Label 'Transmembrane protein visualisation'\n", + "Entity 'http://edamontology.org/operation_2246' - Label 'Demonstration'\n", + "Entity 'http://edamontology.org/operation_2264' - Label 'Data retrieval (pathway or network)'\n", + "Entity 'http://edamontology.org/operation_2265' - Label 'Data retrieval (identifier)'\n", + "Entity 'http://edamontology.org/operation_2284' - Label 'Nucleic acid density plotting'\n", + "Entity 'http://edamontology.org/operation_2403' - Label 'Sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2404' - Label 'Sequence motif analysis'\n", + "Entity 'http://edamontology.org/operation_2405' - Label 'Protein interaction data processing'\n", + "Entity 'http://edamontology.org/operation_2406' - Label 'Protein structure analysis'\n", + "Entity 'http://edamontology.org/operation_2407' - Label 'Annotation processing'\n", + "Entity 'http://edamontology.org/operation_2408' - Label 'Sequence feature analysis'\n", + "Entity 'http://edamontology.org/operation_2409' - Label 'Data handling'\n", + "Entity 'http://edamontology.org/operation_2410' - Label 'Gene expression analysis'\n", + "Entity 'http://edamontology.org/operation_2411' - Label 'Structural profile processing'\n", + "Entity 'http://edamontology.org/operation_2412' - Label 'Data index processing'\n", + "Entity 'http://edamontology.org/operation_2413' - Label 'Sequence profile processing'\n", + "Entity 'http://edamontology.org/operation_2414' - Label 'Protein function analysis'\n", + "Entity 'http://edamontology.org/operation_2415' - Label 'Protein folding analysis'\n", + "Entity 'http://edamontology.org/operation_2416' - Label 'Protein secondary structure analysis'\n", + "Entity 'http://edamontology.org/operation_2417' - Label 'Physicochemical property data processing'\n", + "Entity 'http://edamontology.org/operation_2419' - Label 'Primer and probe design'\n", + "Entity 'http://edamontology.org/operation_2420' - Label 'Operation (typed)'\n", + "Entity 'http://edamontology.org/operation_2421' - Label 'Database search'\n", + "Entity 'http://edamontology.org/operation_2422' - Label 'Data retrieval'\n", + "Entity 'http://edamontology.org/operation_2423' - Label 'Prediction and recognition'\n", + "Entity 'http://edamontology.org/operation_2424' - Label 'Comparison'\n", + "Entity 'http://edamontology.org/operation_2425' - Label 'Optimisation and refinement'\n", + "Entity 'http://edamontology.org/operation_2426' - Label 'Modelling and simulation'\n", + "Entity 'http://edamontology.org/operation_2427' - Label 'Data handling'\n", + "Entity 'http://edamontology.org/operation_2428' - Label 'Validation'\n", + "Entity 'http://edamontology.org/operation_2429' - Label 'Mapping'\n", + "Entity 'http://edamontology.org/operation_2430' - Label 'Design'\n", + "Entity 'http://edamontology.org/operation_2432' - Label 'Microarray data processing'\n", + "Entity 'http://edamontology.org/operation_2433' - Label 'Codon usage table processing'\n", + "Entity 'http://edamontology.org/operation_2434' - Label 'Data retrieval (codon usage table)'\n", + "Entity 'http://edamontology.org/operation_2435' - Label 'Gene expression profile processing'\n", + "Entity 'http://edamontology.org/operation_2436' - Label 'Gene-set enrichment analysis'\n", + "Entity 'http://edamontology.org/operation_2437' - Label 'Gene regulatory network prediction'\n", + "Entity 'http://edamontology.org/operation_2438' - Label 'Pathway or network processing'\n", + "Entity 'http://edamontology.org/operation_2439' - Label 'RNA secondary structure analysis'\n", + "Entity 'http://edamontology.org/operation_2440' - Label 'Structure processing (RNA)'\n", + "Entity 'http://edamontology.org/operation_2441' - Label 'RNA structure prediction'\n", + "Entity 'http://edamontology.org/operation_2442' - Label 'DNA structure prediction'\n", + "Entity 'http://edamontology.org/operation_2443' - Label 'Phylogenetic tree processing'\n", + "Entity 'http://edamontology.org/operation_2444' - Label 'Protein secondary structure processing'\n", + "Entity 'http://edamontology.org/operation_2445' - Label 'Protein interaction network processing'\n", + "Entity 'http://edamontology.org/operation_2446' - Label 'Sequence processing'\n", + "Entity 'http://edamontology.org/operation_2447' - Label 'Sequence processing (protein)'\n", + "Entity 'http://edamontology.org/operation_2448' - Label 'Sequence processing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2451' - Label 'Sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2452' - Label 'Sequence cluster processing'\n", + "Entity 'http://edamontology.org/operation_2453' - Label 'Feature table processing'\n", + "Entity 'http://edamontology.org/operation_2454' - Label 'Gene prediction'\n", + "Entity 'http://edamontology.org/operation_2456' - Label 'GPCR classification'\n", + "Entity 'http://edamontology.org/operation_2457' - Label 'GPCR coupling selectivity prediction'\n", + "Entity 'http://edamontology.org/operation_2459' - Label 'Structure processing (protein)'\n", + "Entity 'http://edamontology.org/operation_2460' - Label 'Protein atom surface calculation'\n", + "Entity 'http://edamontology.org/operation_2461' - Label 'Protein residue surface calculation'\n", + "Entity 'http://edamontology.org/operation_2462' - Label 'Protein surface calculation'\n", + "Entity 'http://edamontology.org/operation_2463' - Label 'Sequence alignment processing'\n", + "Entity 'http://edamontology.org/operation_2464' - Label 'Protein-protein binding site prediction'\n", + "Entity 'http://edamontology.org/operation_2465' - Label 'Structure processing'\n", + "Entity 'http://edamontology.org/operation_2466' - Label 'Map annotation'\n", + "Entity 'http://edamontology.org/operation_2467' - Label 'Data retrieval (protein annotation)'\n", + "Entity 'http://edamontology.org/operation_2468' - Label 'Data retrieval (phylogenetic tree)'\n", + "Entity 'http://edamontology.org/operation_2469' - Label 'Data retrieval (protein interaction annotation)'\n", + "Entity 'http://edamontology.org/operation_2470' - Label 'Data retrieval (protein family annotation)'\n", + "Entity 'http://edamontology.org/operation_2471' - Label 'Data retrieval (RNA family annotation)'\n", + "Entity 'http://edamontology.org/operation_2472' - Label 'Data retrieval (gene annotation)'\n", + "Entity 'http://edamontology.org/operation_2473' - Label 'Data retrieval (genotype and phenotype annotation)'\n", + "Entity 'http://edamontology.org/operation_2474' - Label 'Protein architecture comparison'\n", + "Entity 'http://edamontology.org/operation_2475' - Label 'Protein architecture recognition'\n", + "Entity 'http://edamontology.org/operation_2476' - Label 'Molecular dynamics'\n", + "Entity 'http://edamontology.org/operation_2478' - Label 'Nucleic acid sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2479' - Label 'Protein sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2480' - Label 'Structure analysis'\n", + "Entity 'http://edamontology.org/operation_2481' - Label 'Nucleic acid structure analysis'\n", + "Entity 'http://edamontology.org/operation_2482' - Label 'Secondary structure processing'\n", + "Entity 'http://edamontology.org/operation_2483' - Label 'Structure comparison'\n", + "Entity 'http://edamontology.org/operation_2485' - Label 'Helical wheel drawing'\n", + "Entity 'http://edamontology.org/operation_2486' - Label 'Topology diagram drawing'\n", + "Entity 'http://edamontology.org/operation_2487' - Label 'Protein structure comparison'\n", + "Entity 'http://edamontology.org/operation_2488' - Label 'Protein secondary structure comparison'\n", + "Entity 'http://edamontology.org/operation_2489' - Label 'Subcellular localisation prediction'\n", + "Entity 'http://edamontology.org/operation_2490' - Label 'Residue contact calculation (residue-residue)'\n", + "Entity 'http://edamontology.org/operation_2491' - Label 'Hydrogen bond calculation (inter-residue)'\n", + "Entity 'http://edamontology.org/operation_2492' - Label 'Protein interaction prediction'\n", + "Entity 'http://edamontology.org/operation_2493' - Label 'Codon usage data processing'\n", + "Entity 'http://edamontology.org/operation_2495' - Label 'Expression analysis'\n", + "Entity 'http://edamontology.org/operation_2496' - Label 'Gene regulatory network processing'\n", + "Entity 'http://edamontology.org/operation_2497' - Label 'Pathway or network analysis'\n", + "Entity 'http://edamontology.org/operation_2498' - Label 'Sequencing-based expression profile data analysis'\n", + "Entity 'http://edamontology.org/operation_2499' - Label 'Splicing analysis'\n", + "Entity 'http://edamontology.org/operation_2500' - Label 'Microarray raw data analysis'\n", + "Entity 'http://edamontology.org/operation_2501' - Label 'Nucleic acid analysis'\n", + "Entity 'http://edamontology.org/operation_2502' - Label 'Protein analysis'\n", + "Entity 'http://edamontology.org/operation_2503' - Label 'Sequence data processing'\n", + "Entity 'http://edamontology.org/operation_2504' - Label 'Structural data processing'\n", + "Entity 'http://edamontology.org/operation_2505' - Label 'Text processing'\n", + "Entity 'http://edamontology.org/operation_2506' - Label 'Protein sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2507' - Label 'Nucleic acid sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2508' - Label 'Nucleic acid sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2509' - Label 'Protein sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2510' - Label 'DNA back-translation'\n", + "Entity 'http://edamontology.org/operation_2511' - Label 'Sequence editing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2512' - Label 'Sequence editing (protein)'\n", + "Entity 'http://edamontology.org/operation_2513' - Label 'Sequence generation (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2514' - Label 'Sequence generation (protein)'\n", + "Entity 'http://edamontology.org/operation_2515' - Label 'Nucleic acid sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_2516' - Label 'Protein sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_2518' - Label 'Nucleic acid structure comparison'\n", + "Entity 'http://edamontology.org/operation_2519' - Label 'Structure processing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2520' - Label 'DNA mapping'\n", + "Entity 'http://edamontology.org/operation_2521' - Label 'Map data processing'\n", + "Entity 'http://edamontology.org/operation_2574' - Label 'Protein hydropathy calculation'\n", + "Entity 'http://edamontology.org/operation_2575' - Label 'Binding site prediction'\n", + "Entity 'http://edamontology.org/operation_2844' - Label 'Structure clustering'\n", + "Entity 'http://edamontology.org/operation_2871' - Label 'Sequence tagged site (STS) mapping'\n", + "Entity 'http://edamontology.org/operation_2928' - Label 'Alignment'\n", + "Entity 'http://edamontology.org/operation_2929' - Label 'Protein fragment weight comparison'\n", + "Entity 'http://edamontology.org/operation_2930' - Label 'Protein property comparison'\n", + "Entity 'http://edamontology.org/operation_2931' - Label 'Secondary structure comparison'\n", + "Entity 'http://edamontology.org/operation_2932' - Label 'Hopp and Woods plotting'\n", + "Entity 'http://edamontology.org/operation_2934' - Label 'Cluster textual view generation'\n", + "Entity 'http://edamontology.org/operation_2935' - Label 'Clustering profile plotting'\n", + "Entity 'http://edamontology.org/operation_2936' - Label 'Dendrograph plotting'\n", + "Entity 'http://edamontology.org/operation_2937' - Label 'Proximity map plotting'\n", + "Entity 'http://edamontology.org/operation_2938' - Label 'Dendrogram visualisation'\n", + "Entity 'http://edamontology.org/operation_2939' - Label 'Principal component visualisation'\n", + "Entity 'http://edamontology.org/operation_2940' - Label 'Scatter plot plotting'\n", + "Entity 'http://edamontology.org/operation_2941' - Label 'Whole microarray graph plotting'\n", + "Entity 'http://edamontology.org/operation_2942' - Label 'Treemap visualisation'\n", + "Entity 'http://edamontology.org/operation_2943' - Label 'Box-Whisker plot plotting'\n", + "Entity 'http://edamontology.org/operation_2944' - Label 'Physical mapping'\n", + "Entity 'http://edamontology.org/operation_2945' - Label 'Analysis'\n", + "Entity 'http://edamontology.org/operation_2946' - Label 'Alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2947' - Label 'Article analysis'\n", + "Entity 'http://edamontology.org/operation_2948' - Label 'Molecular interaction analysis'\n", + "Entity 'http://edamontology.org/operation_2949' - Label 'Protein-protein interaction analysis'\n", + "Entity 'http://edamontology.org/operation_2950' - Label 'Residue distance calculation'\n", + "Entity 'http://edamontology.org/operation_2951' - Label 'Alignment processing'\n", + "Entity 'http://edamontology.org/operation_2952' - Label 'Structure alignment processing'\n", + "Entity 'http://edamontology.org/operation_2962' - Label 'Codon usage bias calculation'\n", + "Entity 'http://edamontology.org/operation_2963' - Label 'Codon usage bias plotting'\n", + "Entity 'http://edamontology.org/operation_2964' - Label 'Codon usage fraction calculation'\n", + "Entity 'http://edamontology.org/operation_2990' - Label 'Classification'\n", + "Entity 'http://edamontology.org/operation_2993' - Label 'Molecular interaction data processing'\n", + "Entity 'http://edamontology.org/operation_2995' - Label 'Sequence classification'\n", + "Entity 'http://edamontology.org/operation_2996' - Label 'Structure classification'\n", + "Entity 'http://edamontology.org/operation_2997' - Label 'Protein comparison'\n", + "Entity 'http://edamontology.org/operation_2998' - Label 'Nucleic acid comparison'\n", + "Entity 'http://edamontology.org/operation_3023' - Label 'Prediction and recognition (protein)'\n", + "Entity 'http://edamontology.org/operation_3024' - Label 'Prediction and recognition (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_3080' - Label 'Structure editing'\n", + "Entity 'http://edamontology.org/operation_3081' - Label 'Sequence alignment editing'\n", + "Entity 'http://edamontology.org/operation_3083' - Label 'Pathway or network visualisation'\n", + "Entity 'http://edamontology.org/operation_3084' - Label 'Protein function prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_3087' - Label 'Protein sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_3088' - Label 'Protein property calculation (from sequence)'\n", + "Entity 'http://edamontology.org/operation_3090' - Label 'Protein feature prediction (from structure)'\n", + "Entity 'http://edamontology.org/operation_3092' - Label 'Protein feature detection'\n", + "Entity 'http://edamontology.org/operation_3093' - Label 'Database search (by sequence)'\n", + "Entity 'http://edamontology.org/operation_3094' - Label 'Protein interaction network prediction'\n", + "Entity 'http://edamontology.org/operation_3095' - Label 'Nucleic acid design'\n", + "Entity 'http://edamontology.org/operation_3096' - Label 'Editing'\n", + "Entity 'http://edamontology.org/operation_3180' - Label 'Sequence assembly validation'\n", + "Entity 'http://edamontology.org/operation_3182' - Label 'Genome alignment'\n", + "Entity 'http://edamontology.org/operation_3183' - Label 'Localised reassembly'\n", + "Entity 'http://edamontology.org/operation_3184' - Label 'Sequence assembly visualisation'\n", + "Entity 'http://edamontology.org/operation_3185' - Label 'Base-calling'\n", + "Entity 'http://edamontology.org/operation_3186' - Label 'Bisulfite mapping'\n", + "Entity 'http://edamontology.org/operation_3187' - Label 'Sequence contamination filtering'\n", + "Entity 'http://edamontology.org/operation_3189' - Label 'Trim ends'\n", + "Entity 'http://edamontology.org/operation_3190' - Label 'Trim vector'\n", + "Entity 'http://edamontology.org/operation_3191' - Label 'Trim to reference'\n", + "Entity 'http://edamontology.org/operation_3192' - Label 'Sequence trimming'\n", + "Entity 'http://edamontology.org/operation_3194' - Label 'Genome feature comparison'\n", + "Entity 'http://edamontology.org/operation_3195' - Label 'Sequencing error detection'\n", + "Entity 'http://edamontology.org/operation_3196' - Label 'Genotyping'\n", + "Entity 'http://edamontology.org/operation_3197' - Label 'Genetic variation analysis'\n", + "Entity 'http://edamontology.org/operation_3198' - Label 'Read mapping'\n", + "Entity 'http://edamontology.org/operation_3199' - Label 'Split read mapping'\n", + "Entity 'http://edamontology.org/operation_3200' - Label 'DNA barcoding'\n", + "Entity 'http://edamontology.org/operation_3201' - Label 'SNP calling'\n", + "Entity 'http://edamontology.org/operation_3202' - Label 'Polymorphism detection'\n", + "Entity 'http://edamontology.org/operation_3203' - Label 'Chromatogram visualisation'\n", + "Entity 'http://edamontology.org/operation_3204' - Label 'Methylation analysis'\n", + "Entity 'http://edamontology.org/operation_3205' - Label 'Methylation calling'\n", + "Entity 'http://edamontology.org/operation_3206' - Label 'Whole genome methylation analysis'\n", + "Entity 'http://edamontology.org/operation_3207' - Label 'Gene methylation analysis'\n", + "Entity 'http://edamontology.org/operation_3208' - Label 'Genome visualisation'\n", + "Entity 'http://edamontology.org/operation_3209' - Label 'Genome comparison'\n", + "Entity 'http://edamontology.org/operation_3211' - Label 'Genome indexing'\n", + "Entity 'http://edamontology.org/operation_3212' - Label 'Genome indexing (Burrows-Wheeler)'\n", + "Entity 'http://edamontology.org/operation_3213' - Label 'Genome indexing (suffix arrays)'\n", + "Entity 'http://edamontology.org/operation_3214' - Label 'Spectral analysis'\n", + "Entity 'http://edamontology.org/operation_3215' - Label 'Peak detection'\n", + "Entity 'http://edamontology.org/operation_3216' - Label 'Scaffolding'\n", + "Entity 'http://edamontology.org/operation_3217' - Label 'Scaffold gap completion'\n", + "Entity 'http://edamontology.org/operation_3218' - Label 'Sequencing quality control'\n", + "Entity 'http://edamontology.org/operation_3219' - Label 'Read pre-processing'\n", + "Entity 'http://edamontology.org/operation_3221' - Label 'Species frequency estimation'\n", + "Entity 'http://edamontology.org/operation_3222' - Label 'Peak calling'\n", + "Entity 'http://edamontology.org/operation_3223' - Label 'Differential gene expression profiling'\n", + "Entity 'http://edamontology.org/operation_3224' - Label 'Gene set testing'\n", + "Entity 'http://edamontology.org/operation_3225' - Label 'Variant classification'\n", + "Entity 'http://edamontology.org/operation_3226' - Label 'Variant prioritisation'\n", + "Entity 'http://edamontology.org/operation_3227' - Label 'Variant calling'\n", + "Entity 'http://edamontology.org/operation_3228' - Label 'Structural variation detection'\n", + "Entity 'http://edamontology.org/operation_3229' - Label 'Exome assembly'\n", + "Entity 'http://edamontology.org/operation_3230' - Label 'Read depth analysis'\n", + "Entity 'http://edamontology.org/operation_3232' - Label 'Gene expression QTL analysis'\n", + "Entity 'http://edamontology.org/operation_3233' - Label 'Copy number estimation'\n", + "Entity 'http://edamontology.org/operation_3237' - Label 'Primer removal'\n", + "Entity 'http://edamontology.org/operation_3258' - Label 'Transcriptome assembly'\n", + "Entity 'http://edamontology.org/operation_3259' - Label 'Transcriptome assembly (de novo)'\n", + "Entity 'http://edamontology.org/operation_3260' - Label 'Transcriptome assembly (mapping)'\n", + "Entity 'http://edamontology.org/operation_3267' - Label 'Sequence coordinate conversion'\n", + "Entity 'http://edamontology.org/operation_3278' - Label 'Document similarity calculation'\n", + "Entity 'http://edamontology.org/operation_3279' - Label 'Document clustering'\n", + "Entity 'http://edamontology.org/operation_3280' - Label 'Named-entity and concept recognition'\n", + "Entity 'http://edamontology.org/operation_3282' - Label 'ID mapping'\n", + "Entity 'http://edamontology.org/operation_3283' - Label 'Anonymisation'\n", + "Entity 'http://edamontology.org/operation_3289' - Label 'ID retrieval'\n", + "Entity 'http://edamontology.org/operation_3348' - Label 'Sequence checksum generation'\n", + "Entity 'http://edamontology.org/operation_3349' - Label 'Bibliography generation'\n", + "Entity 'http://edamontology.org/operation_3350' - Label 'Protein quaternary structure prediction'\n", + "Entity 'http://edamontology.org/operation_3351' - Label 'Molecular surface analysis'\n", + "Entity 'http://edamontology.org/operation_3352' - Label 'Ontology comparison'\n", + "Entity 'http://edamontology.org/operation_3353' - Label 'Ontology comparison'\n", + "Entity 'http://edamontology.org/operation_3357' - Label 'Format detection'\n", + "Entity 'http://edamontology.org/operation_3359' - Label 'Splitting'\n", + "Entity 'http://edamontology.org/operation_3429' - Label 'Generation'\n", + "Entity 'http://edamontology.org/operation_3430' - Label 'Nucleic acid sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_3431' - Label 'Deposition'\n", + "Entity 'http://edamontology.org/operation_3432' - Label 'Clustering'\n", + "Entity 'http://edamontology.org/operation_3433' - Label 'Assembly'\n", + "Entity 'http://edamontology.org/operation_3434' - Label 'Conversion'\n", + "Entity 'http://edamontology.org/operation_3435' - Label 'Standardisation and normalisation'\n", + "Entity 'http://edamontology.org/operation_3436' - Label 'Aggregation'\n", + "Entity 'http://edamontology.org/operation_3437' - Label 'Article comparison'\n", + "Entity 'http://edamontology.org/operation_3438' - Label 'Calculation'\n", + "Entity 'http://edamontology.org/operation_3439' - Label 'Pathway or network prediction'\n", + "Entity 'http://edamontology.org/operation_3440' - Label 'Genome assembly'\n", + "Entity 'http://edamontology.org/operation_3441' - Label 'Plotting'\n", + "Entity 'http://edamontology.org/operation_3443' - Label 'Image analysis'\n", + "Entity 'http://edamontology.org/operation_3445' - Label 'Diffraction data analysis'\n", + "Entity 'http://edamontology.org/operation_3446' - Label 'Cell migration analysis'\n", + "Entity 'http://edamontology.org/operation_3447' - Label 'Diffraction data reduction'\n", + "Entity 'http://edamontology.org/operation_3450' - Label 'Neurite measurement'\n", + "Entity 'http://edamontology.org/operation_3453' - Label 'Diffraction data integration'\n", + "Entity 'http://edamontology.org/operation_3454' - Label 'Phasing'\n", + "Entity 'http://edamontology.org/operation_3455' - Label 'Molecular replacement'\n", + "Entity 'http://edamontology.org/operation_3456' - Label 'Rigid body refinement'\n", + "Entity 'http://edamontology.org/operation_3457' - Label 'Single particle analysis'\n", + "Entity 'http://edamontology.org/operation_3458' - Label 'Single particle alignment and classification'\n", + "Entity 'http://edamontology.org/operation_3459' - Label 'Functional clustering'\n", + "Entity 'http://edamontology.org/operation_3460' - Label 'Taxonomic classification'\n", + "Entity 'http://edamontology.org/operation_3461' - Label 'Virulence prediction'\n", + "Entity 'http://edamontology.org/operation_3463' - Label 'Expression correlation analysis'\n", + "Entity 'http://edamontology.org/operation_3465' - Label 'Correlation'\n", + "Entity 'http://edamontology.org/operation_3469' - Label 'RNA structure covariance model generation'\n", + "Entity 'http://edamontology.org/operation_3470' - Label 'RNA secondary structure prediction (shape-based)'\n", + "Entity 'http://edamontology.org/operation_3471' - Label 'Nucleic acid folding prediction (alignment-based)'\n", + "Entity 'http://edamontology.org/operation_3472' - Label 'k-mer counting'\n", + "Entity 'http://edamontology.org/operation_3478' - Label 'Phylogenetic reconstruction'\n", + "Entity 'http://edamontology.org/operation_3480' - Label 'Probabilistic data generation'\n", + "Entity 'http://edamontology.org/operation_3481' - Label 'Probabilistic sequence generation'\n", + "Entity 'http://edamontology.org/operation_3482' - Label 'Antimicrobial resistance prediction'\n", + "Entity 'http://edamontology.org/operation_3501' - Label 'Enrichment analysis'\n", + "Entity 'http://edamontology.org/operation_3502' - Label 'Chemical similarity enrichment'\n", + "Entity 'http://edamontology.org/operation_3503' - Label 'Incident curve plotting'\n", + "Entity 'http://edamontology.org/operation_3504' - Label 'Variant pattern analysis'\n", + "Entity 'http://edamontology.org/operation_3545' - Label 'Mathematical modelling'\n", + "Entity 'http://edamontology.org/operation_3552' - Label 'Microscope image visualisation'\n", + "Entity 'http://edamontology.org/operation_3553' - Label 'Image annotation'\n", + "Entity 'http://edamontology.org/operation_3557' - Label 'Imputation'\n", + "Entity 'http://edamontology.org/operation_3559' - Label 'Ontology visualisation'\n", + "Entity 'http://edamontology.org/operation_3560' - Label 'Maximum occurrence analysis'\n", + "Entity 'http://edamontology.org/operation_3561' - Label 'Database comparison'\n", + "Entity 'http://edamontology.org/operation_3562' - Label 'Network simulation'\n", + "Entity 'http://edamontology.org/operation_3563' - Label 'RNA-seq read count analysis'\n", + "Entity 'http://edamontology.org/operation_3564' - Label 'Chemical redundancy removal'\n", + "Entity 'http://edamontology.org/operation_3565' - Label 'RNA-seq time series data analysis'\n", + "Entity 'http://edamontology.org/operation_3566' - Label 'Simulated gene expression data generation'\n", + "Entity 'http://edamontology.org/operation_3625' - Label 'Relation extraction'\n", + "Entity 'http://edamontology.org/operation_3627' - Label 'Mass spectra calibration'\n", + "Entity 'http://edamontology.org/operation_3628' - Label 'Chromatographic alignment'\n", + "Entity 'http://edamontology.org/operation_3629' - Label 'Deisotoping'\n", + "Entity 'http://edamontology.org/operation_3630' - Label 'Protein quantification'\n", + "Entity 'http://edamontology.org/operation_3631' - Label 'Peptide identification'\n", + "Entity 'http://edamontology.org/operation_3632' - Label 'Isotopic distributions calculation'\n", + "Entity 'http://edamontology.org/operation_3633' - Label 'Retention time prediction'\n", + "Entity 'http://edamontology.org/operation_3634' - Label 'Label-free quantification'\n", + "Entity 'http://edamontology.org/operation_3635' - Label 'Labeled quantification'\n", + "Entity 'http://edamontology.org/operation_3636' - Label 'MRM/SRM'\n", + "Entity 'http://edamontology.org/operation_3637' - Label 'Spectral counting'\n", + "Entity 'http://edamontology.org/operation_3638' - Label 'SILAC'\n", + "Entity 'http://edamontology.org/operation_3639' - Label 'iTRAQ'\n", + "Entity 'http://edamontology.org/operation_3640' - Label '18O labeling'\n", + "Entity 'http://edamontology.org/operation_3641' - Label 'TMT-tag'\n", + "Entity 'http://edamontology.org/operation_3642' - Label 'Stable isotope dimethyl labelling'\n", + "Entity 'http://edamontology.org/operation_3643' - Label 'Tag-based peptide identification'\n", + "Entity 'http://edamontology.org/operation_3644' - Label 'de Novo sequencing'\n", + "Entity 'http://edamontology.org/operation_3645' - Label 'PTM identification'\n", + "Entity 'http://edamontology.org/operation_3646' - Label 'Peptide database search'\n", + "Entity 'http://edamontology.org/operation_3647' - Label 'Blind peptide database search'\n", + "Entity 'http://edamontology.org/operation_3648' - Label 'Validation of peptide-spectrum matches'\n", + "Entity 'http://edamontology.org/operation_3649' - Label 'Target-Decoy'\n", + "Entity 'http://edamontology.org/operation_3658' - Label 'Statistical inference'\n", + "Entity 'http://edamontology.org/operation_3659' - Label 'Regression analysis'\n", + "Entity 'http://edamontology.org/operation_3660' - Label 'Metabolic network modelling'\n", + "Entity 'http://edamontology.org/operation_3661' - Label 'SNP annotation'\n", + "Entity 'http://edamontology.org/operation_3662' - Label 'Ab-initio gene prediction'\n", + "Entity 'http://edamontology.org/operation_3663' - Label 'Homology-based gene prediction'\n", + "Entity 'http://edamontology.org/operation_3664' - Label 'Statistical modelling'\n", + "Entity 'http://edamontology.org/operation_3666' - Label 'Molecular surface comparison'\n", + "Entity 'http://edamontology.org/operation_3672' - Label 'Gene functional annotation'\n", + "Entity 'http://edamontology.org/operation_3675' - Label 'Variant filtering'\n", + "Entity 'http://edamontology.org/operation_3677' - Label 'Differential binding analysis'\n", + "Entity 'http://edamontology.org/operation_3680' - Label 'RNA-Seq analysis'\n", + "Entity 'http://edamontology.org/operation_3694' - Label 'Mass spectrum visualisation'\n", + "Entity 'http://edamontology.org/operation_3695' - Label 'Filtering'\n", + "Entity 'http://edamontology.org/operation_3703' - Label 'Reference identification'\n", + "Entity 'http://edamontology.org/operation_3704' - Label 'Ion counting'\n", + "Entity 'http://edamontology.org/operation_3705' - Label 'Isotope-coded protein label'\n", + "Entity 'http://edamontology.org/operation_3715' - Label 'Metabolic labeling'\n", + "Entity 'http://edamontology.org/operation_3730' - Label 'Cross-assembly'\n", + "Entity 'http://edamontology.org/operation_3731' - Label 'Sample comparison'\n", + "Entity 'http://edamontology.org/operation_3741' - Label 'Differential protein expression profiling'\n", + "Entity 'http://edamontology.org/operation_3742' - Label 'Differential gene expression analysis'\n", + "Entity 'http://edamontology.org/operation_3744' - Label 'Multiple sample visualisation'\n", + "Entity 'http://edamontology.org/operation_3745' - Label 'Ancestral reconstruction'\n", + "Entity 'http://edamontology.org/operation_3755' - Label 'PTM localisation'\n", + "Entity 'http://edamontology.org/operation_3760' - Label 'Service management'\n", + "Entity 'http://edamontology.org/operation_3761' - Label 'Service discovery'\n", + "Entity 'http://edamontology.org/operation_3762' - Label 'Service composition'\n", + "Entity 'http://edamontology.org/operation_3763' - Label 'Service invocation'\n", + "Entity 'http://edamontology.org/operation_3766' - Label 'Weighted correlation network analysis'\n", + "Entity 'http://edamontology.org/operation_3767' - Label 'Protein identification'\n", + "Entity 'http://edamontology.org/operation_3778' - Label 'Text annotation'\n", + "Entity 'http://edamontology.org/operation_3791' - Label 'Collapsing methods'\n", + "Entity 'http://edamontology.org/operation_3792' - Label 'miRNA expression analysis'\n", + "Entity 'http://edamontology.org/operation_3793' - Label 'Read summarisation'\n", + "Entity 'http://edamontology.org/operation_3795' - Label 'In vitro selection'\n", + "Entity 'http://edamontology.org/operation_3797' - Label 'Rarefaction'\n", + "Entity 'http://edamontology.org/operation_3798' - Label 'Read binning'\n", + "Entity 'http://edamontology.org/operation_3799' - Label 'Quantification'\n", + "Entity 'http://edamontology.org/operation_3800' - Label 'RNA-Seq quantification'\n", + "Entity 'http://edamontology.org/operation_3801' - Label 'Spectral library search'\n", + "Entity 'http://edamontology.org/operation_3802' - Label 'Sorting'\n", + "Entity 'http://edamontology.org/operation_3803' - Label 'Natural product identification'\n", + "Entity 'http://edamontology.org/operation_3809' - Label 'DMR identification'\n", + "Entity 'http://edamontology.org/operation_3840' - Label 'Multilocus sequence typing'\n", + "Entity 'http://edamontology.org/operation_3860' - Label 'Spectrum calculation'\n", + "Entity 'http://edamontology.org/operation_3890' - Label 'Trajectory visualization'\n", + "Entity 'http://edamontology.org/operation_3891' - Label 'Essential dynamics'\n", + "Entity 'http://edamontology.org/operation_3893' - Label 'Forcefield parameterisation'\n", + "Entity 'http://edamontology.org/operation_3894' - Label 'DNA profiling'\n", + "Entity 'http://edamontology.org/operation_3896' - Label 'Active site prediction'\n", + "Entity 'http://edamontology.org/operation_3897' - Label 'Ligand-binding site prediction'\n", + "Entity 'http://edamontology.org/operation_3898' - Label 'Metal-binding site prediction'\n", + "Entity 'http://edamontology.org/operation_3899' - Label 'Protein-protein docking'\n", + "Entity 'http://edamontology.org/operation_3900' - Label 'DNA-binding protein prediction'\n", + "Entity 'http://edamontology.org/operation_3901' - Label 'RNA-binding protein prediction'\n", + "Entity 'http://edamontology.org/operation_3902' - Label 'RNA binding site prediction'\n", + "Entity 'http://edamontology.org/operation_3903' - Label 'DNA binding site prediction'\n", + "Entity 'http://edamontology.org/operation_3904' - Label 'Protein disorder prediction'\n", + "Entity 'http://edamontology.org/operation_3907' - Label 'Information extraction'\n", + "Entity 'http://edamontology.org/operation_3908' - Label 'Information retrieval'\n", + "Entity 'http://edamontology.org/operation_3918' - Label 'Genome analysis'\n", + "Entity 'http://edamontology.org/operation_3919' - Label 'Methylation calling'\n", + "Entity 'http://edamontology.org/operation_3920' - Label 'DNA testing'\n", + "Entity 'http://edamontology.org/operation_3921' - Label 'Sequence read processing'\n", + "Entity 'http://edamontology.org/operation_3925' - Label 'Network visualisation'\n", + "Entity 'http://edamontology.org/operation_3926' - Label 'Pathway visualisation'\n", + "Entity 'http://edamontology.org/operation_3927' - Label 'Network analysis'\n", + "Entity 'http://edamontology.org/operation_3928' - Label 'Pathway analysis'\n", + "Entity 'http://edamontology.org/operation_3929' - Label 'Metabolic pathway prediction'\n", + "Entity 'http://edamontology.org/operation_3933' - Label 'Demultiplexing'\n", + "Entity 'http://edamontology.org/operation_3935' - Label 'Dimensionality reduction'\n", + "Entity 'http://edamontology.org/operation_3936' - Label 'Feature selection'\n", + "Entity 'http://edamontology.org/operation_3937' - Label 'Feature extraction'\n", + "Entity 'http://edamontology.org/operation_3938' - Label 'Virtual screening'\n", + "Entity 'http://edamontology.org/operation_3942' - Label 'Tree dating'\n", + "Entity 'http://edamontology.org/operation_3946' - Label 'Ecological modelling'\n", + "Entity 'http://edamontology.org/operation_3947' - Label 'Phylogenetic tree reconciliation'\n", + "Entity 'http://edamontology.org/operation_3950' - Label 'Selection detection'\n", + "Entity 'http://edamontology.org/operation_3960' - Label 'Principal component analysis'\n", + "Entity 'http://edamontology.org/operation_3961' - Label 'Copy number variation detection'\n", + "Entity 'http://edamontology.org/operation_3962' - Label 'Deletion detection'\n", + "Entity 'http://edamontology.org/operation_3963' - Label 'Duplication detection'\n", + "Entity 'http://edamontology.org/operation_3964' - Label 'Complex CNV detection'\n", + "Entity 'http://edamontology.org/operation_3965' - Label 'Amplification detection'\n", + "Entity 'http://edamontology.org/operation_3968' - Label 'Adhesin prediction'\n", + "Entity 'http://edamontology.org/operation_4008' - Label 'Protein design'\n", + "Entity 'http://edamontology.org/operation_4009' - Label 'Small molecule design'\n", + "Entity 'http://edamontology.org/operation_4031' - Label 'Power test'\n", + "Entity 'http://edamontology.org/operation_4032' - Label 'DNA modification prediction'\n", + "Entity 'http://edamontology.org/operation_4033' - Label 'Disease transmission analysis'\n", + "Entity 'http://edamontology.org/operation_4034' - Label 'Multiple testing correction'\n", + "Entity 'http://edamontology.org/topic_0003' - Label 'Topic'\n", + "Entity 'http://edamontology.org/topic_0077' - Label 'Nucleic acids'\n", + "Entity 'http://edamontology.org/topic_0078' - Label 'Proteins'\n", + "Entity 'http://edamontology.org/topic_0079' - Label 'Metabolites'\n", + "Entity 'http://edamontology.org/topic_0080' - Label 'Sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0081' - Label 'Structure analysis'\n", + "Entity 'http://edamontology.org/topic_0082' - Label 'Structure prediction'\n", + "Entity 'http://edamontology.org/topic_0083' - Label 'Alignment'\n", + "Entity 'http://edamontology.org/topic_0084' - Label 'Phylogeny'\n", + "Entity 'http://edamontology.org/topic_0085' - Label 'Functional genomics'\n", + "Entity 'http://edamontology.org/topic_0089' - Label 'Ontology and terminology'\n", + "Entity 'http://edamontology.org/topic_0090' - Label 'Information retrieval'\n", + "Entity 'http://edamontology.org/topic_0091' - Label 'Bioinformatics'\n", + "Entity 'http://edamontology.org/topic_0092' - Label 'Data visualisation'\n", + "Entity 'http://edamontology.org/topic_0094' - Label 'Nucleic acid thermodynamics'\n", + "Entity 'http://edamontology.org/topic_0097' - Label 'Nucleic acid structure analysis'\n", + "Entity 'http://edamontology.org/topic_0099' - Label 'RNA'\n", + "Entity 'http://edamontology.org/topic_0100' - Label 'Nucleic acid restriction'\n", + "Entity 'http://edamontology.org/topic_0102' - Label 'Mapping'\n", + "Entity 'http://edamontology.org/topic_0107' - Label 'Genetic codes and codon usage'\n", + "Entity 'http://edamontology.org/topic_0108' - Label 'Protein expression'\n", + "Entity 'http://edamontology.org/topic_0109' - Label 'Gene finding'\n", + "Entity 'http://edamontology.org/topic_0110' - Label 'Transcription'\n", + "Entity 'http://edamontology.org/topic_0111' - Label 'Promoters'\n", + "Entity 'http://edamontology.org/topic_0112' - Label 'Nucleic acid folding'\n", + "Entity 'http://edamontology.org/topic_0114' - Label 'Gene structure'\n", + "Entity 'http://edamontology.org/topic_0121' - Label 'Proteomics'\n", + "Entity 'http://edamontology.org/topic_0122' - Label 'Structural genomics'\n", + "Entity 'http://edamontology.org/topic_0123' - Label 'Protein properties'\n", + "Entity 'http://edamontology.org/topic_0128' - Label 'Protein interactions'\n", + "Entity 'http://edamontology.org/topic_0130' - Label 'Protein folding, stability and design'\n", + "Entity 'http://edamontology.org/topic_0133' - Label 'Two-dimensional gel electrophoresis'\n", + "Entity 'http://edamontology.org/topic_0134' - Label 'Mass spectrometry'\n", + "Entity 'http://edamontology.org/topic_0135' - Label 'Protein microarrays'\n", + "Entity 'http://edamontology.org/topic_0137' - Label 'Protein hydropathy'\n", + "Entity 'http://edamontology.org/topic_0140' - Label 'Protein targeting and localisation'\n", + "Entity 'http://edamontology.org/topic_0141' - Label 'Protein cleavage sites and proteolysis'\n", + "Entity 'http://edamontology.org/topic_0143' - Label 'Protein structure comparison'\n", + "Entity 'http://edamontology.org/topic_0144' - Label 'Protein residue interactions'\n", + "Entity 'http://edamontology.org/topic_0147' - Label 'Protein-protein interactions'\n", + "Entity 'http://edamontology.org/topic_0148' - Label 'Protein-ligand interactions'\n", + "Entity 'http://edamontology.org/topic_0149' - Label 'Protein-nucleic acid interactions'\n", + "Entity 'http://edamontology.org/topic_0150' - Label 'Protein design'\n", + "Entity 'http://edamontology.org/topic_0151' - Label 'G protein-coupled receptors (GPCR)'\n", + "Entity 'http://edamontology.org/topic_0152' - Label 'Carbohydrates'\n", + "Entity 'http://edamontology.org/topic_0153' - Label 'Lipids'\n", + "Entity 'http://edamontology.org/topic_0154' - Label 'Small molecules'\n", + "Entity 'http://edamontology.org/topic_0156' - Label 'Sequence editing'\n", + "Entity 'http://edamontology.org/topic_0157' - Label 'Sequence composition, complexity and repeats'\n", + "Entity 'http://edamontology.org/topic_0158' - Label 'Sequence motifs'\n", + "Entity 'http://edamontology.org/topic_0159' - Label 'Sequence comparison'\n", + "Entity 'http://edamontology.org/topic_0160' - Label 'Sequence sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_0163' - Label 'Sequence database search'\n", + "Entity 'http://edamontology.org/topic_0164' - Label 'Sequence clustering'\n", + "Entity 'http://edamontology.org/topic_0166' - Label 'Protein structural motifs and surfaces'\n", + "Entity 'http://edamontology.org/topic_0167' - Label 'Structural (3D) profiles'\n", + "Entity 'http://edamontology.org/topic_0172' - Label 'Protein structure prediction'\n", + "Entity 'http://edamontology.org/topic_0173' - Label 'Nucleic acid structure prediction'\n", + "Entity 'http://edamontology.org/topic_0174' - Label 'Ab initio structure prediction'\n", + "Entity 'http://edamontology.org/topic_0175' - Label 'Homology modelling'\n", + "Entity 'http://edamontology.org/topic_0176' - Label 'Molecular dynamics'\n", + "Entity 'http://edamontology.org/topic_0177' - Label 'Molecular docking'\n", + "Entity 'http://edamontology.org/topic_0178' - Label 'Protein secondary structure prediction'\n", + "Entity 'http://edamontology.org/topic_0179' - Label 'Protein tertiary structure prediction'\n", + "Entity 'http://edamontology.org/topic_0180' - Label 'Protein fold recognition'\n", + "Entity 'http://edamontology.org/topic_0182' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0183' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/topic_0184' - Label 'Threading'\n", + "Entity 'http://edamontology.org/topic_0188' - Label 'Sequence profiles and HMMs'\n", + "Entity 'http://edamontology.org/topic_0191' - Label 'Phylogeny reconstruction'\n", + "Entity 'http://edamontology.org/topic_0194' - Label 'Phylogenomics'\n", + "Entity 'http://edamontology.org/topic_0195' - Label 'Virtual PCR'\n", + "Entity 'http://edamontology.org/topic_0196' - Label 'Sequence assembly'\n", + "Entity 'http://edamontology.org/topic_0199' - Label 'Genetic variation'\n", + "Entity 'http://edamontology.org/topic_0200' - Label 'Microarrays'\n", + "Entity 'http://edamontology.org/topic_0202' - Label 'Pharmacology'\n", + "Entity 'http://edamontology.org/topic_0203' - Label 'Gene expression'\n", + "Entity 'http://edamontology.org/topic_0204' - Label 'Gene regulation'\n", + "Entity 'http://edamontology.org/topic_0208' - Label 'Pharmacogenomics'\n", + "Entity 'http://edamontology.org/topic_0209' - Label 'Medicinal chemistry'\n", + "Entity 'http://edamontology.org/topic_0210' - Label 'Fish'\n", + "Entity 'http://edamontology.org/topic_0211' - Label 'Flies'\n", + "Entity 'http://edamontology.org/topic_0213' - Label 'Mice or rats'\n", + "Entity 'http://edamontology.org/topic_0215' - Label 'Worms'\n", + "Entity 'http://edamontology.org/topic_0217' - Label 'Literature analysis'\n", + "Entity 'http://edamontology.org/topic_0218' - Label 'Natural language processing'\n", + "Entity 'http://edamontology.org/topic_0219' - Label 'Data submission, annotation, and curation'\n", + "Entity 'http://edamontology.org/topic_0220' - Label 'Document, record and content management'\n", + "Entity 'http://edamontology.org/topic_0221' - Label 'Sequence annotation'\n", + "Entity 'http://edamontology.org/topic_0222' - Label 'Genome annotation'\n", + "Entity 'http://edamontology.org/topic_0593' - Label 'NMR'\n", + "Entity 'http://edamontology.org/topic_0594' - Label 'Sequence classification'\n", + "Entity 'http://edamontology.org/topic_0595' - Label 'Protein classification'\n", + "Entity 'http://edamontology.org/topic_0598' - Label 'Sequence motif or profile'\n", + "Entity 'http://edamontology.org/topic_0601' - Label 'Protein modifications'\n", + "Entity 'http://edamontology.org/topic_0602' - Label 'Molecular interactions, pathways and networks'\n", + "Entity 'http://edamontology.org/topic_0605' - Label 'Informatics'\n", + "Entity 'http://edamontology.org/topic_0606' - Label 'Literature data resources'\n", + "Entity 'http://edamontology.org/topic_0607' - Label 'Laboratory information management'\n", + "Entity 'http://edamontology.org/topic_0608' - Label 'Cell and tissue culture'\n", + "Entity 'http://edamontology.org/topic_0610' - Label 'Ecology'\n", + "Entity 'http://edamontology.org/topic_0611' - Label 'Electron microscopy'\n", + "Entity 'http://edamontology.org/topic_0612' - Label 'Cell cycle'\n", + "Entity 'http://edamontology.org/topic_0613' - Label 'Peptides and amino acids'\n", + "Entity 'http://edamontology.org/topic_0616' - Label 'Organelles'\n", + "Entity 'http://edamontology.org/topic_0617' - Label 'Ribosomes'\n", + "Entity 'http://edamontology.org/topic_0618' - Label 'Scents'\n", + "Entity 'http://edamontology.org/topic_0620' - Label 'Drugs and target structures'\n", + "Entity 'http://edamontology.org/topic_0621' - Label 'Model organisms'\n", + "Entity 'http://edamontology.org/topic_0622' - Label 'Genomics'\n", + "Entity 'http://edamontology.org/topic_0623' - Label 'Gene and protein families'\n", + "Entity 'http://edamontology.org/topic_0624' - Label 'Chromosomes'\n", + "Entity 'http://edamontology.org/topic_0625' - Label 'Genotype and phenotype'\n", + "Entity 'http://edamontology.org/topic_0629' - Label 'Gene expression and microarray'\n", + "Entity 'http://edamontology.org/topic_0632' - Label 'Probes and primers'\n", + "Entity 'http://edamontology.org/topic_0634' - Label 'Pathology'\n", + "Entity 'http://edamontology.org/topic_0635' - Label 'Specific protein resources'\n", + "Entity 'http://edamontology.org/topic_0637' - Label 'Taxonomy'\n", + "Entity 'http://edamontology.org/topic_0639' - Label 'Protein sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0640' - Label 'Nucleic acid sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0641' - Label 'Repeat sequences'\n", + "Entity 'http://edamontology.org/topic_0642' - Label 'Low complexity sequences'\n", + "Entity 'http://edamontology.org/topic_0644' - Label 'Proteome'\n", + "Entity 'http://edamontology.org/topic_0654' - Label 'DNA'\n", + "Entity 'http://edamontology.org/topic_0655' - Label 'Coding RNA'\n", + "Entity 'http://edamontology.org/topic_0659' - Label 'Functional, regulatory and non-coding RNA'\n", + "Entity 'http://edamontology.org/topic_0660' - Label 'rRNA'\n", + "Entity 'http://edamontology.org/topic_0663' - Label 'tRNA'\n", + "Entity 'http://edamontology.org/topic_0694' - Label 'Protein secondary structure'\n", + "Entity 'http://edamontology.org/topic_0697' - Label 'RNA structure'\n", + "Entity 'http://edamontology.org/topic_0698' - Label 'Protein tertiary structure'\n", + "Entity 'http://edamontology.org/topic_0722' - Label 'Nucleic acid classification'\n", + "Entity 'http://edamontology.org/topic_0724' - Label 'Protein families'\n", + "Entity 'http://edamontology.org/topic_0736' - Label 'Protein folds and structural domains'\n", + "Entity 'http://edamontology.org/topic_0740' - Label 'Nucleic acid sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0741' - Label 'Protein sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0747' - Label 'Nucleic acid sites and features'\n", + "Entity 'http://edamontology.org/topic_0748' - Label 'Protein sites and features'\n", + "Entity 'http://edamontology.org/topic_0749' - Label 'Transcription factors and regulatory sites'\n", + "Entity 'http://edamontology.org/topic_0751' - Label 'Phosphorylation sites'\n", + "Entity 'http://edamontology.org/topic_0753' - Label 'Metabolic pathways'\n", + "Entity 'http://edamontology.org/topic_0754' - Label 'Signaling pathways'\n", + "Entity 'http://edamontology.org/topic_0767' - Label 'Protein and peptide identification'\n", + "Entity 'http://edamontology.org/topic_0769' - Label 'Workflows'\n", + "Entity 'http://edamontology.org/topic_0770' - Label 'Data types and objects'\n", + "Entity 'http://edamontology.org/topic_0771' - Label 'Theoretical biology'\n", + "Entity 'http://edamontology.org/topic_0779' - Label 'Mitochondria'\n", + "Entity 'http://edamontology.org/topic_0780' - Label 'Plant biology'\n", + "Entity 'http://edamontology.org/topic_0781' - Label 'Virology'\n", + "Entity 'http://edamontology.org/topic_0782' - Label 'Fungi'\n", + "Entity 'http://edamontology.org/topic_0783' - Label 'Pathogens'\n", + "Entity 'http://edamontology.org/topic_0786' - Label 'Arabidopsis'\n", + "Entity 'http://edamontology.org/topic_0787' - Label 'Rice'\n", + "Entity 'http://edamontology.org/topic_0796' - Label 'Genetic mapping and linkage'\n", + "Entity 'http://edamontology.org/topic_0797' - Label 'Comparative genomics'\n", + "Entity 'http://edamontology.org/topic_0798' - Label 'Mobile genetic elements'\n", + "Entity 'http://edamontology.org/topic_0803' - Label 'Human disease'\n", + "Entity 'http://edamontology.org/topic_0804' - Label 'Immunology'\n", + "Entity 'http://edamontology.org/topic_0820' - Label 'Membrane and lipoproteins'\n", + "Entity 'http://edamontology.org/topic_0821' - Label 'Enzymes'\n", + "Entity 'http://edamontology.org/topic_0922' - Label 'Primers'\n", + "Entity 'http://edamontology.org/topic_1302' - Label 'PolyA signal or sites'\n", + "Entity 'http://edamontology.org/topic_1304' - Label 'CpG island and isochores'\n", + "Entity 'http://edamontology.org/topic_1305' - Label 'Restriction sites'\n", + "Entity 'http://edamontology.org/topic_1307' - Label 'Splice sites'\n", + "Entity 'http://edamontology.org/topic_1308' - Label 'Matrix/scaffold attachment sites'\n", + "Entity 'http://edamontology.org/topic_1311' - Label 'Operon'\n", + "Entity 'http://edamontology.org/topic_1312' - Label 'Promoters'\n", + "Entity 'http://edamontology.org/topic_1317' - Label 'Structural biology'\n", + "Entity 'http://edamontology.org/topic_1456' - Label 'Protein membrane regions'\n", + "Entity 'http://edamontology.org/topic_1770' - Label 'Structure comparison'\n", + "Entity 'http://edamontology.org/topic_1775' - Label 'Function analysis'\n", + "Entity 'http://edamontology.org/topic_1811' - Label 'Prokaryotes and Archaea'\n", + "Entity 'http://edamontology.org/topic_2225' - Label 'Protein databases'\n", + "Entity 'http://edamontology.org/topic_2226' - Label 'Structure determination'\n", + "Entity 'http://edamontology.org/topic_2229' - Label 'Cell biology'\n", + "Entity 'http://edamontology.org/topic_2230' - Label 'Classification'\n", + "Entity 'http://edamontology.org/topic_2232' - Label 'Lipoproteins'\n", + "Entity 'http://edamontology.org/topic_2257' - Label 'Phylogeny visualisation'\n", + "Entity 'http://edamontology.org/topic_2258' - Label 'Cheminformatics'\n", + "Entity 'http://edamontology.org/topic_2259' - Label 'Systems biology'\n", + "Entity 'http://edamontology.org/topic_2269' - Label 'Statistics and probability'\n", + "Entity 'http://edamontology.org/topic_2271' - Label 'Structure database search'\n", + "Entity 'http://edamontology.org/topic_2275' - Label 'Molecular modelling'\n", + "Entity 'http://edamontology.org/topic_2276' - Label 'Protein function prediction'\n", + "Entity 'http://edamontology.org/topic_2277' - Label 'SNP'\n", + "Entity 'http://edamontology.org/topic_2278' - Label 'Transmembrane protein prediction'\n", + "Entity 'http://edamontology.org/topic_2280' - Label 'Nucleic acid structure comparison'\n", + "Entity 'http://edamontology.org/topic_2397' - Label 'Exons'\n", + "Entity 'http://edamontology.org/topic_2399' - Label 'Gene transcription'\n", + "Entity 'http://edamontology.org/topic_2533' - Label 'DNA mutation'\n", + "Entity 'http://edamontology.org/topic_2640' - Label 'Oncology'\n", + "Entity 'http://edamontology.org/topic_2661' - Label 'Toxins and targets'\n", + "Entity 'http://edamontology.org/topic_2754' - Label 'Introns'\n", + "Entity 'http://edamontology.org/topic_2807' - Label 'Tool topic'\n", + "Entity 'http://edamontology.org/topic_2809' - Label 'Study topic'\n", + "Entity 'http://edamontology.org/topic_2811' - Label 'Nomenclature'\n", + "Entity 'http://edamontology.org/topic_2813' - Label 'Disease genes and proteins'\n", + "Entity 'http://edamontology.org/topic_2814' - Label 'Protein structure analysis'\n", + "Entity 'http://edamontology.org/topic_2815' - Label 'Human biology'\n", + "Entity 'http://edamontology.org/topic_2816' - Label 'Gene resources'\n", + "Entity 'http://edamontology.org/topic_2817' - Label 'Yeast'\n", + "Entity 'http://edamontology.org/topic_2818' - Label 'Eukaryotes'\n", + "Entity 'http://edamontology.org/topic_2819' - Label 'Invertebrates'\n", + "Entity 'http://edamontology.org/topic_2820' - Label 'Vertebrates'\n", + "Entity 'http://edamontology.org/topic_2821' - Label 'Unicellular eukaryotes'\n", + "Entity 'http://edamontology.org/topic_2826' - Label 'Protein structure alignment'\n", + "Entity 'http://edamontology.org/topic_2828' - Label 'X-ray diffraction'\n", + "Entity 'http://edamontology.org/topic_2829' - Label 'Ontologies, nomenclature and classification'\n", + "Entity 'http://edamontology.org/topic_2830' - Label 'Immunoproteins and antigens'\n", + "Entity 'http://edamontology.org/topic_2839' - Label 'Molecules'\n", + "Entity 'http://edamontology.org/topic_2840' - Label 'Toxicology'\n", + "Entity 'http://edamontology.org/topic_2842' - Label 'High-throughput sequencing'\n", + "Entity 'http://edamontology.org/topic_2846' - Label 'Gene regulatory networks'\n", + "Entity 'http://edamontology.org/topic_2847' - Label 'Disease (specific)'\n", + "Entity 'http://edamontology.org/topic_2867' - Label 'VNTR'\n", + "Entity 'http://edamontology.org/topic_2868' - Label 'Microsatellites'\n", + "Entity 'http://edamontology.org/topic_2869' - Label 'RFLP'\n", + "Entity 'http://edamontology.org/topic_2885' - Label 'DNA polymorphism'\n", + "Entity 'http://edamontology.org/topic_2953' - Label 'Nucleic acid design'\n", + "Entity 'http://edamontology.org/topic_3032' - Label 'Primer or probe design'\n", + "Entity 'http://edamontology.org/topic_3038' - Label 'Structure databases'\n", + "Entity 'http://edamontology.org/topic_3039' - Label 'Nucleic acid structure'\n", + "Entity 'http://edamontology.org/topic_3041' - Label 'Sequence databases'\n", + "Entity 'http://edamontology.org/topic_3042' - Label 'Nucleic acid sequences'\n", + "Entity 'http://edamontology.org/topic_3043' - Label 'Protein sequences'\n", + "Entity 'http://edamontology.org/topic_3044' - Label 'Protein interaction networks'\n", + "Entity 'http://edamontology.org/topic_3047' - Label 'Molecular biology'\n", + "Entity 'http://edamontology.org/topic_3048' - Label 'Mammals'\n", + "Entity 'http://edamontology.org/topic_3050' - Label 'Biodiversity'\n", + "Entity 'http://edamontology.org/topic_3052' - Label 'Sequence clusters and classification'\n", + "Entity 'http://edamontology.org/topic_3053' - Label 'Genetics'\n", + "Entity 'http://edamontology.org/topic_3055' - Label 'Quantitative genetics'\n", + "Entity 'http://edamontology.org/topic_3056' - Label 'Population genetics'\n", + "Entity 'http://edamontology.org/topic_3060' - Label 'Regulatory RNA'\n", + "Entity 'http://edamontology.org/topic_3061' - Label 'Documentation and help'\n", + "Entity 'http://edamontology.org/topic_3062' - Label 'Genetic organisation'\n", + "Entity 'http://edamontology.org/topic_3063' - Label 'Medical informatics'\n", + "Entity 'http://edamontology.org/topic_3064' - Label 'Developmental biology'\n", + "Entity 'http://edamontology.org/topic_3065' - Label 'Embryology'\n", + "Entity 'http://edamontology.org/topic_3067' - Label 'Anatomy'\n", + "Entity 'http://edamontology.org/topic_3068' - Label 'Literature and language'\n", + "Entity 'http://edamontology.org/topic_3070' - Label 'Biology'\n", + "Entity 'http://edamontology.org/topic_3071' - Label 'Data management'\n", + "Entity 'http://edamontology.org/topic_3072' - Label 'Sequence feature detection'\n", + "Entity 'http://edamontology.org/topic_3073' - Label 'Nucleic acid feature detection'\n", + "Entity 'http://edamontology.org/topic_3074' - Label 'Protein feature detection'\n", + "Entity 'http://edamontology.org/topic_3075' - Label 'Biological system modelling'\n", + "Entity 'http://edamontology.org/topic_3077' - Label 'Data acquisition'\n", + "Entity 'http://edamontology.org/topic_3078' - Label 'Genes and proteins resources'\n", + "Entity 'http://edamontology.org/topic_3118' - Label 'Protein topological domains'\n", + "Entity 'http://edamontology.org/topic_3120' - Label 'Protein variants'\n", + "Entity 'http://edamontology.org/topic_3123' - Label 'Expression signals'\n", + "Entity 'http://edamontology.org/topic_3125' - Label 'DNA binding sites'\n", + "Entity 'http://edamontology.org/topic_3126' - Label 'Nucleic acid repeats'\n", + "Entity 'http://edamontology.org/topic_3127' - Label 'DNA replication and recombination'\n", + "Entity 'http://edamontology.org/topic_3135' - Label 'Signal or transit peptide'\n", + "Entity 'http://edamontology.org/topic_3139' - Label 'Sequence tagged sites'\n", + "Entity 'http://edamontology.org/topic_3168' - Label 'Sequencing'\n", + "Entity 'http://edamontology.org/topic_3169' - Label 'ChIP-seq'\n", + "Entity 'http://edamontology.org/topic_3170' - Label 'RNA-Seq'\n", + "Entity 'http://edamontology.org/topic_3171' - Label 'DNA methylation'\n", + "Entity 'http://edamontology.org/topic_3172' - Label 'Metabolomics'\n", + "Entity 'http://edamontology.org/topic_3173' - Label 'Epigenomics'\n", + "Entity 'http://edamontology.org/topic_3174' - Label 'Metagenomics'\n", + "Entity 'http://edamontology.org/topic_3175' - Label 'Structural variation'\n", + "Entity 'http://edamontology.org/topic_3176' - Label 'DNA packaging'\n", + "Entity 'http://edamontology.org/topic_3177' - Label 'DNA-Seq'\n", + "Entity 'http://edamontology.org/topic_3178' - Label 'RNA-Seq alignment'\n", + "Entity 'http://edamontology.org/topic_3179' - Label 'ChIP-on-chip'\n", + "Entity 'http://edamontology.org/topic_3263' - Label 'Data security'\n", + "Entity 'http://edamontology.org/topic_3277' - Label 'Sample collections'\n", + "Entity 'http://edamontology.org/topic_3292' - Label 'Biochemistry'\n", + "Entity 'http://edamontology.org/topic_3293' - Label 'Phylogenetics'\n", + "Entity 'http://edamontology.org/topic_3295' - Label 'Epigenetics'\n", + "Entity 'http://edamontology.org/topic_3297' - Label 'Biotechnology'\n", + "Entity 'http://edamontology.org/topic_3298' - Label 'Phenomics'\n", + "Entity 'http://edamontology.org/topic_3299' - Label 'Evolutionary biology'\n", + "Entity 'http://edamontology.org/topic_3300' - Label 'Physiology'\n", + "Entity 'http://edamontology.org/topic_3301' - Label 'Microbiology'\n", + "Entity 'http://edamontology.org/topic_3302' - Label 'Parasitology'\n", + "Entity 'http://edamontology.org/topic_3303' - Label 'Medicine'\n", + "Entity 'http://edamontology.org/topic_3304' - Label 'Neurobiology'\n", + "Entity 'http://edamontology.org/topic_3305' - Label 'Public health and epidemiology'\n", + "Entity 'http://edamontology.org/topic_3306' - Label 'Biophysics'\n", + "Entity 'http://edamontology.org/topic_3307' - Label 'Computational biology'\n", + "Entity 'http://edamontology.org/topic_3308' - Label 'Transcriptomics'\n", + "Entity 'http://edamontology.org/topic_3314' - Label 'Chemistry'\n", + "Entity 'http://edamontology.org/topic_3315' - Label 'Mathematics'\n", + "Entity 'http://edamontology.org/topic_3316' - Label 'Computer science'\n", + "Entity 'http://edamontology.org/topic_3318' - Label 'Physics'\n", + "Entity 'http://edamontology.org/topic_3320' - Label 'RNA splicing'\n", + "Entity 'http://edamontology.org/topic_3321' - Label 'Molecular genetics'\n", + "Entity 'http://edamontology.org/topic_3322' - Label 'Respiratory medicine'\n", + "Entity 'http://edamontology.org/topic_3323' - Label 'Metabolic disease'\n", + "Entity 'http://edamontology.org/topic_3324' - Label 'Infectious disease'\n", + "Entity 'http://edamontology.org/topic_3325' - Label 'Rare diseases'\n", + "Entity 'http://edamontology.org/topic_3332' - Label 'Computational chemistry'\n", + "Entity 'http://edamontology.org/topic_3334' - Label 'Neurology'\n", + "Entity 'http://edamontology.org/topic_3335' - Label 'Cardiology'\n", + "Entity 'http://edamontology.org/topic_3336' - Label 'Drug discovery'\n", + "Entity 'http://edamontology.org/topic_3337' - Label 'Biobank'\n", + "Entity 'http://edamontology.org/topic_3338' - Label 'Mouse clinic'\n", + "Entity 'http://edamontology.org/topic_3339' - Label 'Microbial collection'\n", + "Entity 'http://edamontology.org/topic_3340' - Label 'Cell culture collection'\n", + "Entity 'http://edamontology.org/topic_3341' - Label 'Clone library'\n", + "Entity 'http://edamontology.org/topic_3342' - Label 'Translational medicine'\n", + "Entity 'http://edamontology.org/topic_3343' - Label 'Compound libraries and screening'\n", + "Entity 'http://edamontology.org/topic_3344' - Label 'Biomedical science'\n", + "Entity 'http://edamontology.org/topic_3345' - Label 'Data identity and mapping'\n", + "Entity 'http://edamontology.org/topic_3346' - Label 'Sequence search'\n", + "Entity 'http://edamontology.org/topic_3360' - Label 'Biomarkers'\n", + "Entity 'http://edamontology.org/topic_3361' - Label 'Laboratory techniques'\n", + "Entity 'http://edamontology.org/topic_3365' - Label 'Data architecture, analysis and design'\n", + "Entity 'http://edamontology.org/topic_3366' - Label 'Data integration and warehousing'\n", + "Entity 'http://edamontology.org/topic_3368' - Label 'Biomaterials'\n", + "Entity 'http://edamontology.org/topic_3369' - Label 'Chemical biology'\n", + "Entity 'http://edamontology.org/topic_3370' - Label 'Analytical chemistry'\n", + "Entity 'http://edamontology.org/topic_3371' - Label 'Synthetic chemistry'\n", + "Entity 'http://edamontology.org/topic_3372' - Label 'Software engineering'\n", + "Entity 'http://edamontology.org/topic_3373' - Label 'Drug development'\n", + "Entity 'http://edamontology.org/topic_3374' - Label 'Biotherapeutics'\n", + "Entity 'http://edamontology.org/topic_3375' - Label 'Drug metabolism'\n", + "Entity 'http://edamontology.org/topic_3376' - Label 'Medicines research and development'\n", + "Entity 'http://edamontology.org/topic_3377' - Label 'Safety sciences'\n", + "Entity 'http://edamontology.org/topic_3378' - Label 'Pharmacovigilance'\n", + "Entity 'http://edamontology.org/topic_3379' - Label 'Preclinical and clinical studies'\n", + "Entity 'http://edamontology.org/topic_3382' - Label 'Imaging'\n", + "Entity 'http://edamontology.org/topic_3383' - Label 'Bioimaging'\n", + "Entity 'http://edamontology.org/topic_3384' - Label 'Medical imaging'\n", + "Entity 'http://edamontology.org/topic_3385' - Label 'Light microscopy'\n", + "Entity 'http://edamontology.org/topic_3386' - Label 'Laboratory animal science'\n", + "Entity 'http://edamontology.org/topic_3387' - Label 'Marine biology'\n", + "Entity 'http://edamontology.org/topic_3388' - Label 'Molecular medicine'\n", + "Entity 'http://edamontology.org/topic_3390' - Label 'Nutritional science'\n", + "Entity 'http://edamontology.org/topic_3391' - Label 'Omics'\n", + "Entity 'http://edamontology.org/topic_3393' - Label 'Quality affairs'\n", + "Entity 'http://edamontology.org/topic_3394' - Label 'Regulatory affairs'\n", + "Entity 'http://edamontology.org/topic_3395' - Label 'Regenerative medicine'\n", + "Entity 'http://edamontology.org/topic_3396' - Label 'Systems medicine'\n", + "Entity 'http://edamontology.org/topic_3397' - Label 'Veterinary medicine'\n", + "Entity 'http://edamontology.org/topic_3398' - Label 'Bioengineering'\n", + "Entity 'http://edamontology.org/topic_3399' - Label 'Geriatric medicine'\n", + "Entity 'http://edamontology.org/topic_3400' - Label 'Allergy, clinical immunology and immunotherapeutics'\n", + "Entity 'http://edamontology.org/topic_3401' - Label 'Pain medicine'\n", + "Entity 'http://edamontology.org/topic_3402' - Label 'Anaesthesiology'\n", + "Entity 'http://edamontology.org/topic_3403' - Label 'Critical care medicine'\n", + "Entity 'http://edamontology.org/topic_3404' - Label 'Dermatology'\n", + "Entity 'http://edamontology.org/topic_3405' - Label 'Dentistry'\n", + "Entity 'http://edamontology.org/topic_3406' - Label 'Ear, nose and throat medicine'\n", + "Entity 'http://edamontology.org/topic_3407' - Label 'Endocrinology and metabolism'\n", + "Entity 'http://edamontology.org/topic_3408' - Label 'Haematology'\n", + "Entity 'http://edamontology.org/topic_3409' - Label 'Gastroenterology'\n", + "Entity 'http://edamontology.org/topic_3410' - Label 'Gender medicine'\n", + "Entity 'http://edamontology.org/topic_3411' - Label 'Gynaecology and obstetrics'\n", + "Entity 'http://edamontology.org/topic_3412' - Label 'Hepatic and biliary medicine'\n", + "Entity 'http://edamontology.org/topic_3413' - Label 'Infectious tropical disease'\n", + "Entity 'http://edamontology.org/topic_3414' - Label 'Trauma medicine'\n", + "Entity 'http://edamontology.org/topic_3415' - Label 'Medical toxicology'\n", + "Entity 'http://edamontology.org/topic_3416' - Label 'Musculoskeletal medicine'\n", + "Entity 'http://edamontology.org/topic_3417' - Label 'Ophthalmology'\n", + "Entity 'http://edamontology.org/topic_3418' - Label 'Paediatrics'\n", + "Entity 'http://edamontology.org/topic_3419' - Label 'Psychiatry'\n", + "Entity 'http://edamontology.org/topic_3420' - Label 'Reproductive health'\n", + "Entity 'http://edamontology.org/topic_3421' - Label 'Surgery'\n", + "Entity 'http://edamontology.org/topic_3422' - Label 'Urology and nephrology'\n", + "Entity 'http://edamontology.org/topic_3423' - Label 'Complementary medicine'\n", + "Entity 'http://edamontology.org/topic_3444' - Label 'MRI'\n", + "Entity 'http://edamontology.org/topic_3448' - Label 'Neutron diffraction'\n", + "Entity 'http://edamontology.org/topic_3452' - Label 'Tomography'\n", + "Entity 'http://edamontology.org/topic_3473' - Label 'Data mining'\n", + "Entity 'http://edamontology.org/topic_3474' - Label 'Machine learning'\n", + "Entity 'http://edamontology.org/topic_3489' - Label 'Database management'\n", + "Entity 'http://edamontology.org/topic_3500' - Label 'Zoology'\n", + "Entity 'http://edamontology.org/topic_3510' - Label 'Protein sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_3511' - Label 'Nucleic acid sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_3512' - Label 'Gene transcripts'\n", + "Entity 'http://edamontology.org/topic_3514' - Label 'Protein-ligand interactions'\n", + "Entity 'http://edamontology.org/topic_3515' - Label 'Protein-drug interactions'\n", + "Entity 'http://edamontology.org/topic_3516' - Label 'Genotyping experiment'\n", + "Entity 'http://edamontology.org/topic_3517' - Label 'GWAS study'\n", + "Entity 'http://edamontology.org/topic_3518' - Label 'Microarray experiment'\n", + "Entity 'http://edamontology.org/topic_3519' - Label 'PCR experiment'\n", + "Entity 'http://edamontology.org/topic_3520' - Label 'Proteomics experiment'\n", + "Entity 'http://edamontology.org/topic_3521' - Label '2D PAGE experiment'\n", + "Entity 'http://edamontology.org/topic_3522' - Label 'Northern blot experiment'\n", + "Entity 'http://edamontology.org/topic_3523' - Label 'RNAi experiment'\n", + "Entity 'http://edamontology.org/topic_3524' - Label 'Simulation experiment'\n", + "Entity 'http://edamontology.org/topic_3525' - Label 'Protein-nucleic acid interactions'\n", + "Entity 'http://edamontology.org/topic_3526' - Label 'Protein-protein interactions'\n", + "Entity 'http://edamontology.org/topic_3527' - Label 'Cellular process pathways'\n", + "Entity 'http://edamontology.org/topic_3528' - Label 'Disease pathways'\n", + "Entity 'http://edamontology.org/topic_3529' - Label 'Environmental information processing pathways'\n", + "Entity 'http://edamontology.org/topic_3530' - Label 'Genetic information processing pathways'\n", + "Entity 'http://edamontology.org/topic_3531' - Label 'Protein super-secondary structure'\n", + "Entity 'http://edamontology.org/topic_3533' - Label 'Protein active sites'\n", + "Entity 'http://edamontology.org/topic_3534' - Label 'Protein binding sites'\n", + "Entity 'http://edamontology.org/topic_3535' - Label 'Protein-nucleic acid binding sites'\n", + "Entity 'http://edamontology.org/topic_3536' - Label 'Protein cleavage sites'\n", + "Entity 'http://edamontology.org/topic_3537' - Label 'Protein chemical modifications'\n", + "Entity 'http://edamontology.org/topic_3538' - Label 'Protein disordered structure'\n", + "Entity 'http://edamontology.org/topic_3539' - Label 'Protein domains'\n", + "Entity 'http://edamontology.org/topic_3540' - Label 'Protein key folding sites'\n", + "Entity 'http://edamontology.org/topic_3541' - Label 'Protein post-translational modifications'\n", + "Entity 'http://edamontology.org/topic_3542' - Label 'Protein secondary structure'\n", + "Entity 'http://edamontology.org/topic_3543' - Label 'Protein sequence repeats'\n", + "Entity 'http://edamontology.org/topic_3544' - Label 'Protein signal peptides'\n", + "Entity 'http://edamontology.org/topic_3569' - Label 'Applied mathematics'\n", + "Entity 'http://edamontology.org/topic_3570' - Label 'Pure mathematics'\n", + "Entity 'http://edamontology.org/topic_3571' - Label 'Data governance'\n", + "Entity 'http://edamontology.org/topic_3572' - Label 'Data quality management'\n", + "Entity 'http://edamontology.org/topic_3573' - Label 'Freshwater biology'\n", + "Entity 'http://edamontology.org/topic_3574' - Label 'Human genetics'\n", + "Entity 'http://edamontology.org/topic_3575' - Label 'Tropical medicine'\n", + "Entity 'http://edamontology.org/topic_3576' - Label 'Medical biotechnology'\n", + "Entity 'http://edamontology.org/topic_3577' - Label 'Personalised medicine'\n", + "Entity 'http://edamontology.org/topic_3656' - Label 'Immunoprecipitation experiment'\n", + "Entity 'http://edamontology.org/topic_3673' - Label 'Whole genome sequencing'\n", + "Entity 'http://edamontology.org/topic_3674' - Label 'Methylated DNA immunoprecipitation'\n", + "Entity 'http://edamontology.org/topic_3676' - Label 'Exome sequencing'\n", + "Entity 'http://edamontology.org/topic_3678' - Label 'Experimental design and studies'\n", + "Entity 'http://edamontology.org/topic_3679' - Label 'Animal study'\n", + "Entity 'http://edamontology.org/topic_3697' - Label 'Microbial ecology'\n", + "Entity 'http://edamontology.org/topic_3794' - Label 'RNA immunoprecipitation'\n", + "Entity 'http://edamontology.org/topic_3796' - Label 'Population genomics'\n", + "Entity 'http://edamontology.org/topic_3810' - Label 'Agricultural science'\n", + "Entity 'http://edamontology.org/topic_3837' - Label 'Metagenomic sequencing'\n", + "Entity 'http://edamontology.org/topic_3855' - Label 'Environmental sciences'\n", + "Entity 'http://edamontology.org/topic_3892' - Label 'Biomolecular simulation'\n", + "Entity 'http://edamontology.org/topic_3895' - Label 'Synthetic biology'\n", + "Entity 'http://edamontology.org/topic_3912' - Label 'Genetic engineering'\n", + "Entity 'http://edamontology.org/topic_3922' - Label 'Proteogenomics'\n", + "Entity 'http://edamontology.org/topic_3923' - Label 'Genome resequencing'\n", + "Entity 'http://edamontology.org/topic_3930' - Label 'Immunogenetics'\n", + "Entity 'http://edamontology.org/topic_3931' - Label 'Chemometrics'\n", + "Entity 'http://edamontology.org/topic_3934' - Label 'Cytometry'\n", + "Entity 'http://edamontology.org/topic_3939' - Label 'Metabolic engineering'\n", + "Entity 'http://edamontology.org/topic_3940' - Label 'Chromosome conformation capture'\n", + "Entity 'http://edamontology.org/topic_3941' - Label 'Metatranscriptomics'\n", + "Entity 'http://edamontology.org/topic_3943' - Label 'Paleogenomics'\n", + "Entity 'http://edamontology.org/topic_3944' - Label 'Cladistics'\n", + "Entity 'http://edamontology.org/topic_3945' - Label 'Molecular evolution'\n", + "Entity 'http://edamontology.org/topic_3948' - Label 'Immunoinformatics'\n", + "Entity 'http://edamontology.org/topic_3954' - Label 'Echography'\n", + "Entity 'http://edamontology.org/topic_3955' - Label 'Fluxomics'\n", + "Entity 'http://edamontology.org/topic_3957' - Label 'Protein interaction experiment'\n", + "Entity 'http://edamontology.org/topic_3958' - Label 'Copy number variation'\n", + "Entity 'http://edamontology.org/topic_3959' - Label 'Cytogenetics'\n", + "Entity 'http://edamontology.org/topic_3966' - Label 'Vaccinology'\n", + "Entity 'http://edamontology.org/topic_3967' - Label 'Immunomics'\n", + "Entity 'http://edamontology.org/topic_3974' - Label 'Epistasis'\n", + "Entity 'http://edamontology.org/topic_4010' - Label 'Open science'\n", + "Entity 'http://edamontology.org/topic_4011' - Label 'Data rescue'\n", + "Entity 'http://edamontology.org/topic_4012' - Label 'FAIR data'\n", + "Entity 'http://edamontology.org/topic_4013' - Label 'Antimicrobial Resistance'\n", + "Entity 'http://edamontology.org/topic_4014' - Label 'Electroencephalography'\n", + "Entity 'http://edamontology.org/topic_4016' - Label 'Electrocardiography'\n", + "Entity 'http://edamontology.org/topic_4017' - Label 'Cryogenic electron microscopy'\n", + "Entity 'http://edamontology.org/topic_4019' - Label 'Biosciences'\n", + "Entity 'http://edamontology.org/topic_4020' - Label 'Carbon cycle'\n", + "Entity 'http://edamontology.org/topic_4021' - Label 'Multiomics'\n", + "Entity 'http://edamontology.org/topic_4027' - Label 'Ribosome Profiling'\n", + "Entity 'http://edamontology.org/topic_4028' - Label 'Single-Cell Sequencing'\n", + "Entity 'http://edamontology.org/topic_4029' - Label 'Acoustics'\n", + "Entity 'http://edamontology.org/topic_4030' - Label 'Microfluidics'\n", + "Entity 'http://edamontology.org/topic_4037' - Label 'Genomic imprinting'\n", + "Entity 'http://edamontology.org/topic_4038' - Label 'Metabarcoding'\n", + "Entity 'http://www.geneontology.org/formats/oboInOwl#ObsoleteClass' - Label 'Obsolete concept (EDAM)'\n", + "Entity 'http://www.w3.org/2002/07/owl#DeprecatedClass' - Label 'None'\n" + ] + } + ], + "source": [ + "query=\"\"\"\n", + "SELECT DISTINCT ?entity ?label WHERE {\n", + " \n", + " ?entity a owl:Class .\n", + " OPTIONAL {?entity rdfs:label ?label .}\n", + " \n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:28:58.299173Z", + "start_time": "2024-02-13T17:28:58.179473Z" + } + }, + "execution_count": 33 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Entity 'http://edamontology.org/data_1002' - Label 'CAS number'\n", + "Entity 'http://edamontology.org/data_1003' - Label 'Chemical registry number (Beilstein)'\n", + "Entity 'http://edamontology.org/data_1004' - Label 'Chemical registry number (Gmelin)'\n", + "Entity 'http://edamontology.org/data_1027' - Label 'Gene ID (NCBI)'\n", + "Entity 'http://edamontology.org/data_1031' - Label 'Gene ID (CGD)'\n", + "Entity 'http://edamontology.org/data_1032' - Label 'Gene ID (DictyBase)'\n", + "Entity 'http://edamontology.org/data_1033' - Label 'Ensembl gene ID'\n", + "Entity 'http://edamontology.org/data_1036' - Label 'TIGR identifier'\n", + "Entity 'http://edamontology.org/data_1039' - Label 'SCOP domain identifier'\n", + "Entity 'http://edamontology.org/data_1040' - Label 'CATH domain ID'\n", + "Entity 'http://edamontology.org/data_1041' - Label 'SCOP concise classification string (sccs)'\n", + "Entity 'http://edamontology.org/data_1042' - Label 'SCOP sunid'\n", + "Entity 'http://edamontology.org/data_1043' - Label 'CATH node ID'\n", + "Entity 'http://edamontology.org/data_1066' - Label 'Sequence alignment ID'\n", + "Entity 'http://edamontology.org/data_1100' - Label 'PIR identifier'\n", + "Entity 'http://edamontology.org/data_1102' - Label 'Gramene primary identifier'\n", + "Entity 'http://edamontology.org/data_1103' - Label 'EMBL/GenBank/DDBJ ID'\n", + "Entity 'http://edamontology.org/data_1104' - Label 'Sequence cluster ID (UniGene)'\n", + "Entity 'http://edamontology.org/data_1105' - Label 'dbEST accession'\n", + "Entity 'http://edamontology.org/data_1106' - Label 'dbSNP ID'\n", + "Entity 'http://edamontology.org/data_1113' - Label 'Sequence cluster ID (COG)'\n", + "Entity 'http://edamontology.org/data_1118' - Label 'HMMER hidden Markov model ID'\n", + "Entity 'http://edamontology.org/data_1119' - Label 'JASPAR profile ID'\n", + "Entity 'http://edamontology.org/data_1123' - Label 'TreeBASE study accession number'\n", + "Entity 'http://edamontology.org/data_1124' - Label 'TreeFam accession number'\n", + "Entity 'http://edamontology.org/data_1128' - Label 'AAindex ID'\n", + "Entity 'http://edamontology.org/data_1129' - Label 'BIND accession number'\n", + "Entity 'http://edamontology.org/data_1134' - Label 'InterPro secondary accession'\n", + "Entity 'http://edamontology.org/data_1135' - Label 'Gene3D ID'\n", + "Entity 'http://edamontology.org/data_1140' - Label 'Superfamily hidden Markov model number'\n", + "Entity 'http://edamontology.org/data_1141' - Label 'TIGRFam ID'\n", + "Entity 'http://edamontology.org/data_1143' - Label 'TRANSFAC accession number'\n", + "Entity 'http://edamontology.org/data_1146' - Label 'EMDB ID'\n", + "Entity 'http://edamontology.org/data_1148' - Label 'GermOnline ID'\n", + "Entity 'http://edamontology.org/data_1149' - Label 'EMAGE ID'\n", + "Entity 'http://edamontology.org/data_1151' - Label 'HGVbase ID'\n", + "Entity 'http://edamontology.org/data_1154' - Label 'KEGG object identifier'\n", + "Entity 'http://edamontology.org/data_1157' - Label 'Pathway ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_1158' - Label 'Pathway ID (INOH)'\n", + "Entity 'http://edamontology.org/data_1159' - Label 'Pathway ID (PATIKA)'\n", + "Entity 'http://edamontology.org/data_1160' - Label 'Pathway ID (CPDB)'\n", + "Entity 'http://edamontology.org/data_1164' - Label 'MIRIAM URI'\n", + "Entity 'http://edamontology.org/data_1167' - Label 'Taverna workflow ID'\n", + "Entity 'http://edamontology.org/data_1175' - Label 'BioPax concept ID'\n", + "Entity 'http://edamontology.org/data_1177' - Label 'MeSH concept ID'\n", + "Entity 'http://edamontology.org/data_1178' - Label 'HGNC concept ID'\n", + "Entity 'http://edamontology.org/data_1180' - Label 'Plant Ontology concept ID'\n", + "Entity 'http://edamontology.org/data_1181' - Label 'UMLS concept ID'\n", + "Entity 'http://edamontology.org/data_1183' - Label 'EMAP concept ID'\n", + "Entity 'http://edamontology.org/data_1184' - Label 'ChEBI concept ID'\n", + "Entity 'http://edamontology.org/data_1185' - Label 'MGED concept ID'\n", + "Entity 'http://edamontology.org/data_1186' - Label 'myGrid concept ID'\n", + "Entity 'http://edamontology.org/data_1189' - Label 'Medline UI'\n", + "Entity 'http://edamontology.org/data_1794' - Label 'Gene ID (PlasmoDB)'\n", + "Entity 'http://edamontology.org/data_1795' - Label 'Gene ID (EcoGene)'\n", + "Entity 'http://edamontology.org/data_1796' - Label 'Gene ID (FlyBase)'\n", + "Entity 'http://edamontology.org/data_1802' - Label 'Gene ID (Gramene)'\n", + "Entity 'http://edamontology.org/data_1803' - Label 'Gene ID (Virginia microbial)'\n", + "Entity 'http://edamontology.org/data_1804' - Label 'Gene ID (SGN)'\n", + "Entity 'http://edamontology.org/data_1873' - Label 'iHOP organism ID'\n", + "Entity 'http://edamontology.org/data_1885' - Label 'Gene ID (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_1886' - Label 'Blattner number'\n", + "Entity 'http://edamontology.org/data_1891' - Label 'iHOP symbol'\n", + "Entity 'http://edamontology.org/data_1896' - Label 'Locus ID (ASPGD)'\n", + "Entity 'http://edamontology.org/data_1897' - Label 'Locus ID (MGG)'\n", + "Entity 'http://edamontology.org/data_1898' - Label 'Locus ID (CGD)'\n", + "Entity 'http://edamontology.org/data_1899' - Label 'Locus ID (CMR)'\n", + "Entity 'http://edamontology.org/data_1900' - Label 'NCBI locus tag'\n", + "Entity 'http://edamontology.org/data_1901' - Label 'Locus ID (SGD)'\n", + "Entity 'http://edamontology.org/data_1902' - Label 'Locus ID (MMP)'\n", + "Entity 'http://edamontology.org/data_1903' - Label 'Locus ID (DictyBase)'\n", + "Entity 'http://edamontology.org/data_1904' - Label 'Locus ID (EntrezGene)'\n", + "Entity 'http://edamontology.org/data_1905' - Label 'Locus ID (MaizeGDB)'\n", + "Entity 'http://edamontology.org/data_1907' - Label 'Gene ID (KOME)'\n", + "Entity 'http://edamontology.org/data_1908' - Label 'Locus ID (Tropgene)'\n", + "Entity 'http://edamontology.org/data_2102' - Label 'KEGG organism code'\n", + "Entity 'http://edamontology.org/data_2104' - Label 'BioCyc ID'\n", + "Entity 'http://edamontology.org/data_2105' - Label 'Compound ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2106' - Label 'Reaction ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2107' - Label 'Enzyme ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2112' - Label 'FlyBase primary identifier'\n", + "Entity 'http://edamontology.org/data_2174' - Label 'FlyBase secondary identifier'\n", + "Entity 'http://edamontology.org/data_2209' - Label 'Mutation ID'\n", + "Entity 'http://edamontology.org/data_2220' - Label 'Sequence cluster ID (SYSTERS)'\n", + "Entity 'http://edamontology.org/data_2285' - Label 'Gene ID (MIPS)'\n", + "Entity 'http://edamontology.org/data_2290' - Label 'EMBL accession'\n", + "Entity 'http://edamontology.org/data_2292' - Label 'GenBank accession'\n", + "Entity 'http://edamontology.org/data_2293' - Label 'Gramene secondary identifier'\n", + "Entity 'http://edamontology.org/data_2297' - Label 'Gene ID (ECK)'\n", + "Entity 'http://edamontology.org/data_2298' - Label 'Gene ID (HGNC)'\n", + "Entity 'http://edamontology.org/data_2302' - Label 'STRING ID'\n", + "Entity 'http://edamontology.org/data_2314' - Label 'GI number'\n", + "Entity 'http://edamontology.org/data_2315' - Label 'NCBI version'\n", + "Entity 'http://edamontology.org/data_2325' - Label 'REBASE enzyme number'\n", + "Entity 'http://edamontology.org/data_2327' - Label 'GI number (protein)'\n", + "Entity 'http://edamontology.org/data_2345' - Label 'Pathway ID (ConsensusPathDB)'\n", + "Entity 'http://edamontology.org/data_2346' - Label 'Sequence cluster ID (UniRef)'\n", + "Entity 'http://edamontology.org/data_2347' - Label 'Sequence cluster ID (UniRef100)'\n", + "Entity 'http://edamontology.org/data_2348' - Label 'Sequence cluster ID (UniRef90)'\n", + "Entity 'http://edamontology.org/data_2349' - Label 'Sequence cluster ID (UniRef50)'\n", + "Entity 'http://edamontology.org/data_2356' - Label 'RFAM accession'\n", + "Entity 'http://edamontology.org/data_2367' - Label 'ASTD ID'\n", + "Entity 'http://edamontology.org/data_2368' - Label 'ASTD ID (exon)'\n", + "Entity 'http://edamontology.org/data_2369' - Label 'ASTD ID (intron)'\n", + "Entity 'http://edamontology.org/data_2370' - Label 'ASTD ID (polya)'\n", + "Entity 'http://edamontology.org/data_2371' - Label 'ASTD ID (tss)'\n", + "Entity 'http://edamontology.org/data_2374' - Label 'Spot serial number'\n", + "Entity 'http://edamontology.org/data_2375' - Label 'Spot ID (HSC-2DPAGE)'\n", + "Entity 'http://edamontology.org/data_2380' - Label 'CABRI accession'\n", + "Entity 'http://edamontology.org/data_2383' - Label 'EGA accession'\n", + "Entity 'http://edamontology.org/data_2385' - Label 'RefSeq accession (protein)'\n", + "Entity 'http://edamontology.org/data_2386' - Label 'EPD ID'\n", + "Entity 'http://edamontology.org/data_2387' - Label 'TAIR accession'\n", + "Entity 'http://edamontology.org/data_2388' - Label 'TAIR accession (At gene)'\n", + "Entity 'http://edamontology.org/data_2389' - Label 'UniSTS accession'\n", + "Entity 'http://edamontology.org/data_2390' - Label 'UNITE accession'\n", + "Entity 'http://edamontology.org/data_2391' - Label 'UTR accession'\n", + "Entity 'http://edamontology.org/data_2393' - Label 'mFLJ/mKIAA number'\n", + "Entity 'http://edamontology.org/data_2398' - Label 'Ensembl protein ID'\n", + "Entity 'http://edamontology.org/data_2578' - Label 'ArachnoServer ID'\n", + "Entity 'http://edamontology.org/data_2580' - Label 'BindingDB Monomer ID'\n", + "Entity 'http://edamontology.org/data_2588' - Label 'BlotBase blot ID'\n", + "Entity 'http://edamontology.org/data_2591' - Label 'Brite hierarchy ID'\n", + "Entity 'http://edamontology.org/data_2593' - Label 'BRENDA organism ID'\n", + "Entity 'http://edamontology.org/data_2639' - Label 'PubChem ID'\n", + "Entity 'http://edamontology.org/data_2700' - Label 'CATH identifier'\n", + "Entity 'http://edamontology.org/data_2701' - Label 'CATH node ID (family)'\n", + "Entity 'http://edamontology.org/data_2702' - Label 'Enzyme ID (CAZy)'\n", + "Entity 'http://edamontology.org/data_2704' - Label 'Clone ID (IMAGE)'\n", + "Entity 'http://edamontology.org/data_2709' - Label 'CleanEx entry name'\n", + "Entity 'http://edamontology.org/data_2713' - Label 'Protein ID (CORUM)'\n", + "Entity 'http://edamontology.org/data_2714' - Label 'CDD PSSM-ID'\n", + "Entity 'http://edamontology.org/data_2715' - Label 'Protein ID (CuticleDB)'\n", + "Entity 'http://edamontology.org/data_2716' - Label 'DBD ID'\n", + "Entity 'http://edamontology.org/data_2719' - Label 'dbProbe ID'\n", + "Entity 'http://edamontology.org/data_2721' - Label 'DiProDB ID'\n", + "Entity 'http://edamontology.org/data_2723' - Label 'Protein ID (DisProt)'\n", + "Entity 'http://edamontology.org/data_2725' - Label 'Ensembl transcript ID'\n", + "Entity 'http://edamontology.org/data_2729' - Label 'COGEME EST ID'\n", + "Entity 'http://edamontology.org/data_2730' - Label 'COGEME unisequence ID'\n", + "Entity 'http://edamontology.org/data_2731' - Label 'Protein family ID (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_2736' - Label 'Sequence feature ID (SwissRegulon)'\n", + "Entity 'http://edamontology.org/data_2737' - Label 'FIG ID'\n", + "Entity 'http://edamontology.org/data_2738' - Label 'Gene ID (Xenbase)'\n", + "Entity 'http://edamontology.org/data_2739' - Label 'Gene ID (Genolist)'\n", + "Entity 'http://edamontology.org/data_2741' - Label 'ABS ID'\n", + "Entity 'http://edamontology.org/data_2742' - Label 'AraC-XylS ID'\n", + "Entity 'http://edamontology.org/data_2744' - Label 'Locus ID (PseudoCAP)'\n", + "Entity 'http://edamontology.org/data_2745' - Label 'Locus ID (UTR)'\n", + "Entity 'http://edamontology.org/data_2746' - Label 'MonosaccharideDB ID'\n", + "Entity 'http://edamontology.org/data_2756' - Label 'TCID'\n", + "Entity 'http://edamontology.org/data_2759' - Label 'Gene ID (VectorBase)'\n", + "Entity 'http://edamontology.org/data_2766' - Label 'HAMAP ID'\n", + "Entity 'http://edamontology.org/data_2770' - Label 'HIT ID'\n", + "Entity 'http://edamontology.org/data_2771' - Label 'HIX ID'\n", + "Entity 'http://edamontology.org/data_2772' - Label 'HPA antibody id'\n", + "Entity 'http://edamontology.org/data_2773' - Label 'IMGT/HLA ID'\n", + "Entity 'http://edamontology.org/data_2774' - Label 'Gene ID (JCVI)'\n", + "Entity 'http://edamontology.org/data_2776' - Label 'ConsensusPathDB entity ID'\n", + "Entity 'http://edamontology.org/data_2778' - Label 'CCAP strain number'\n", + "Entity 'http://edamontology.org/data_2780' - Label 'Stock number (TAIR)'\n", + "Entity 'http://edamontology.org/data_2781' - Label 'REDIdb ID'\n", + "Entity 'http://edamontology.org/data_2783' - Label 'Protein family ID (PANTHER)'\n", + "Entity 'http://edamontology.org/data_2784' - Label 'RNAVirusDB ID'\n", + "Entity 'http://edamontology.org/data_2786' - Label 'NCBI Genome Project ID'\n", + "Entity 'http://edamontology.org/data_2787' - Label 'NCBI genome accession'\n", + "Entity 'http://edamontology.org/data_2789' - Label 'Protein ID (TopDB)'\n", + "Entity 'http://edamontology.org/data_2792' - Label 'Protein ID (PeroxiBase)'\n", + "Entity 'http://edamontology.org/data_2793' - Label 'SISYPHUS ID'\n", + "Entity 'http://edamontology.org/data_2794' - Label 'ORF ID'\n", + "Entity 'http://edamontology.org/data_2797' - Label 'Protein ID (LGICdb)'\n", + "Entity 'http://edamontology.org/data_2798' - Label 'MaizeDB ID'\n", + "Entity 'http://edamontology.org/data_2799' - Label 'Gene ID (MfunGD)'\n", + "Entity 'http://edamontology.org/data_2800' - Label 'Orpha number'\n", + "Entity 'http://edamontology.org/data_2802' - Label 'Protein ID (EcID)'\n", + "Entity 'http://edamontology.org/data_2803' - Label 'Clone ID (RefSeq)'\n", + "Entity 'http://edamontology.org/data_2804' - Label 'Protein ID (ConoServer)'\n", + "Entity 'http://edamontology.org/data_2805' - Label 'GeneSNP ID'\n", + "Entity 'http://edamontology.org/data_2835' - Label 'Gene ID (VBASE2)'\n", + "Entity 'http://edamontology.org/data_2836' - Label 'DPVweb ID'\n", + "Entity 'http://edamontology.org/data_2915' - Label 'Gramene identifier'\n", + "Entity 'http://edamontology.org/data_2916' - Label 'DDBJ accession'\n", + "Entity 'http://edamontology.org/data_3029' - Label 'Protein ID (EMBL/GenBank/DDBJ)'\n", + "Entity 'http://edamontology.org/data_3103' - Label 'ATC code'\n", + "Entity 'http://edamontology.org/data_3264' - Label 'COSMIC ID'\n", + "Entity 'http://edamontology.org/data_3265' - Label 'HGMD ID'\n", + "Entity 'http://edamontology.org/data_3270' - Label 'Ensembl gene tree ID'\n", + "Entity 'http://edamontology.org/data_3274' - Label 'MGI accession'\n", + "Entity 'http://edamontology.org/data_3757' - Label 'Unimod ID'\n", + "Entity 'http://edamontology.org/data_3769' - Label 'BRENDA ontology concept ID'\n", + "Entity 'http://edamontology.org/data_3856' - Label 'RNA central ID'\n" + ] + } + ], + "source": [ + "query=\"\"\"\n", + "PREFIX edam:\n", + "\n", + "SELECT ?entity ?label ?property WHERE\n", + "{\n", + " ?entity rdfs:subClassOf+ edam:data_2091 .\n", + " ?entity rdfs:label ?label .\n", + " VALUES ?property { edam:regex \n", + " }\n", + " FILTER NOT EXISTS {?entity ?property ?value .}\n", + " \n", + "}ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:30:45.202465Z", + "start_time": "2024-02-13T17:30:45.093914Z" + } + }, + "execution_count": 35 + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query=\"\"\"\n", + "PREFIX edam: \n", + "\n", + "CONSTRUCT { \n", + " ?children_format rdfs:subClassOf ?restriction . \n", + " ?restriction rdf:type owl:Restriction ; \n", + " owl:onProperty edam:is_format_of ; \n", + " owl:someValuesFrom ?data. \n", + "}\n", + "WHERE {\n", + " ?parent_format rdfs:subClassOf ?restriction . \n", + " ?restriction rdf:type owl:Restriction ; \n", + " owl:onProperty edam:is_format_of ; \n", + " owl:someValuesFrom ?data.\n", + " ?children_format rdfs:subClassOf+ ?parent_format .\n", + " }\n", + "\"\"\"\n", + "\n", + "#results = kg.query(query)\n", + "\n", + "#for r in results :\n", + "# print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:31:55.773119Z", + "start_time": "2024-02-13T17:31:55.728822Z" + } + }, + "execution_count": 39 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Entity 'http://edamontology.org/data_0849' - Label 'Sequence record'\n", + "Entity 'http://edamontology.org/data_0863' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/data_0863' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/data_0871' - Label 'Phylogenetic character data'\n", + "Entity 'http://edamontology.org/data_0872' - Label 'Phylogenetic tree'\n", + "Entity 'http://edamontology.org/data_0872' - Label 'Phylogenetic tree'\n", + "Entity 'http://edamontology.org/data_0883' - Label 'Structure'\n", + "Entity 'http://edamontology.org/data_1255' - Label 'Sequence features'\n", + "Entity 'http://edamontology.org/data_1354' - Label 'Sequence profile'\n", + "Entity 'http://edamontology.org/data_1381' - Label 'Pair sequence alignment'\n", + "Entity 'http://edamontology.org/data_2044' - Label 'Sequence'\n", + "Entity 'http://edamontology.org/data_2044' - Label 'Sequence'\n", + "Entity 'http://edamontology.org/data_2048' - Label 'Report'\n", + "Entity 'http://edamontology.org/data_2091' - Label 'Accession'\n", + "Entity 'http://edamontology.org/data_2091' - Label 'Accession'\n", + "Entity 'http://edamontology.org/data_2098' - Label 'Job identifier'\n", + "Entity 'http://edamontology.org/data_2099' - Label 'Name'\n", + "Entity 'http://edamontology.org/data_2099' - Label 'Name'\n", + "Entity 'http://edamontology.org/data_2099' - Label 'Name'\n", + "Entity 'http://edamontology.org/data_2100' - Label 'Type'\n", + "Entity 'http://edamontology.org/data_2968' - Label 'Image'\n", + "Entity 'http://edamontology.org/data_2968' - Label 'Image'\n", + "Entity 'http://edamontology.org/data_2976' - Label 'Protein sequence'\n", + "Entity 'http://edamontology.org/data_2977' - Label 'Nucleic acid sequence'\n", + "Entity 'http://edamontology.org/data_3424' - Label 'Raw image'\n", + "Entity 'http://edamontology.org/format_1207' - Label 'nucleotide'\n", + "Entity 'http://edamontology.org/format_1208' - Label 'protein'\n", + "Entity 'http://edamontology.org/format_1212' - Label 'dna'\n", + "Entity 'http://edamontology.org/format_1213' - Label 'rna'\n", + "Entity 'http://edamontology.org/format_1997' - Label 'PHYLIP format'\n", + "Entity 'http://edamontology.org/format_1998' - Label 'PHYLIP sequential'\n", + "Entity 'http://edamontology.org/format_2183' - Label 'EMBLXML'\n", + "Entity 'http://edamontology.org/format_2184' - Label 'cdsxml'\n", + "Entity 'http://edamontology.org/format_2200' - Label 'FASTA-like (text)'\n", + "Entity 'http://edamontology.org/format_2330' - Label 'Textual format'\n", + "Entity 'http://edamontology.org/format_2330' - Label 'Textual format'\n", + "Entity 'http://edamontology.org/format_2330' - Label 'Textual format'\n", + "Entity 'http://edamontology.org/format_2331' - Label 'HTML'\n", + "Entity 'http://edamontology.org/format_2352' - Label 'BioXSD (XML)'\n", + "Entity 'http://edamontology.org/format_2571' - Label 'Raw sequence format'\n", + "Entity 'http://edamontology.org/format_3261' - Label 'RDF/XML'\n", + "Entity 'http://edamontology.org/format_3462' - Label 'CRAM'\n", + "Entity 'http://edamontology.org/format_3484' - Label 'ebwt'\n", + "Entity 'http://edamontology.org/format_3485' - Label 'RSF'\n", + "Entity 'http://edamontology.org/format_3487' - Label 'BSML'\n", + "Entity 'http://edamontology.org/format_3491' - Label 'ebwtl'\n", + "Entity 'http://edamontology.org/format_3607' - Label 'qual'\n", + "Entity 'http://edamontology.org/format_3609' - Label 'qualillumina'\n", + "Entity 'http://edamontology.org/format_3610' - Label 'qualsolid'\n", + "Entity 'http://edamontology.org/format_3611' - Label 'qual454'\n", + "Entity 'http://edamontology.org/format_3654' - Label 'mzXML'\n", + "Entity 'http://edamontology.org/format_3655' - Label 'pepXML'\n", + "Entity 'http://edamontology.org/format_3747' - Label 'protXML'\n", + "Entity 'http://edamontology.org/format_3747' - Label 'protXML'\n", + "Entity 'http://edamontology.org/format_3764' - Label 'idXML'\n", + "Entity 'http://edamontology.org/format_3764' - Label 'idXML'\n", + "Entity 'http://edamontology.org/format_3832' - Label 'consensusXML'\n", + "Entity 'http://edamontology.org/format_3833' - Label 'featureXML'\n", + "Entity 'http://edamontology.org/format_3834' - Label 'mzData'\n", + "Entity 'http://edamontology.org/format_3835' - Label 'TIDE TXT'\n", + "Entity 'http://edamontology.org/format_3836' - Label 'BLAST XML v2 results format'\n", + "Entity 'http://edamontology.org/format_3836' - Label 'BLAST XML v2 results format'\n", + "Entity 'http://edamontology.org/format_3836' - Label 'BLAST XML v2 results format'\n", + "Entity 'http://edamontology.org/format_3982' - Label 'CHAIN'\n", + "Entity 'http://edamontology.org/format_3983' - Label 'NET'\n", + "Entity 'http://edamontology.org/format_3985' - Label 'gxformat2'\n", + "Entity 'http://edamontology.org/format_3992' - Label 'CIGAR format'\n", + "Entity 'http://edamontology.org/format_4000' - Label 'R markdown'\n", + "Entity 'http://edamontology.org/format_4002' - Label 'pickle'\n", + "Entity 'http://edamontology.org/format_4004' - Label 'SimTools repertoire file format'\n", + "Entity 'http://edamontology.org/format_4006' - Label 'Zstandard format'\n", + "Entity 'http://edamontology.org/operation_0558' - Label 'Phylogenetic tree annotation'\n", + "Entity 'http://edamontology.org/topic_0077' - Label 'Nucleic acids'\n", + "Entity 'http://edamontology.org/topic_0077' - Label 'Nucleic acids'\n", + "Entity 'http://edamontology.org/topic_0078' - Label 'Proteins'\n", + "Entity 'http://edamontology.org/topic_0080' - Label 'Sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0081' - Label 'Structure analysis'\n", + "Entity 'http://edamontology.org/topic_0084' - Label 'Phylogeny'\n", + "Entity 'http://edamontology.org/topic_0089' - Label 'Ontology and terminology'\n", + "Entity 'http://edamontology.org/topic_0091' - Label 'Bioinformatics'\n", + "Entity 'http://edamontology.org/topic_0121' - Label 'Proteomics'\n", + "Entity 'http://edamontology.org/topic_0199' - Label 'Genetic variation'\n", + "Entity 'http://edamontology.org/topic_0200' - Label 'Microarrays'\n", + "Entity 'http://edamontology.org/topic_0203' - Label 'Gene expression'\n", + "Entity 'http://edamontology.org/topic_0610' - Label 'Ecology'\n", + "Entity 'http://edamontology.org/topic_0622' - Label 'Genomics'\n", + "Entity 'http://edamontology.org/topic_0632' - Label 'Probes and primers'\n", + "Entity 'http://edamontology.org/topic_0804' - Label 'Immunology'\n", + "Entity 'http://edamontology.org/topic_0804' - Label 'Immunology'\n", + "Entity 'http://edamontology.org/topic_2259' - Label 'Systems biology'\n", + "Entity 'http://edamontology.org/topic_2269' - Label 'Statistics and probability'\n", + "Entity 'http://edamontology.org/topic_2829' - Label 'Ontologies, nomenclature and classification'\n", + "Entity 'http://edamontology.org/topic_3050' - Label 'Biodiversity'\n", + "Entity 'http://edamontology.org/topic_3053' - Label 'Genetics'\n", + "Entity 'http://edamontology.org/topic_3068' - Label 'Literature and language'\n", + "Entity 'http://edamontology.org/topic_3071' - Label 'Data management'\n", + "Entity 'http://edamontology.org/topic_3072' - Label 'Sequence feature detection'\n", + "Entity 'http://edamontology.org/topic_3168' - Label 'Sequencing'\n", + "Entity 'http://edamontology.org/topic_3172' - Label 'Metabolomics'\n", + "Entity 'http://edamontology.org/topic_3173' - Label 'Epigenomics'\n", + "Entity 'http://edamontology.org/topic_3176' - Label 'DNA packaging'\n", + "Entity 'http://edamontology.org/topic_3293' - Label 'Phylogenetics'\n", + "Entity 'http://edamontology.org/topic_3295' - Label 'Epigenetics'\n", + "Entity 'http://edamontology.org/topic_3412' - Label 'Hepatic and biliary medicine'\n", + "Entity 'http://edamontology.org/topic_3571' - Label 'Data governance'\n", + "Entity 'http://edamontology.org/topic_3974' - Label 'Epistasis'\n" + ] + } + ], + "source": [ + "query=\"\"\"\n", + "SELECT DISTINCT ?entity ?property ?label ?value WHERE {\n", + " VALUES ?property {\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + "}\n", + "\n", + "?entity ?property ?value .\n", + "\n", + "FILTER isLiteral(?value) \n", + "?entity rdfs:label ?label .\n", + "\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:32:43.406278Z", + "start_time": "2024-02-13T17:32:42.503590Z" + } + }, + "execution_count": 40 + }, + { + "cell_type": "code", + "outputs": [ + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001B[0;31m---------------------------------------------------------------------------\u001B[0m", + "\u001B[0;31mKeyboardInterrupt\u001B[0m Traceback (most recent call last)", + "Cell \u001B[0;32mIn[42], line 37\u001B[0m\n\u001B[1;32m 1\u001B[0m query\u001B[38;5;241m=\u001B[39m\u001B[38;5;124m\"\"\"\u001B[39m\n\u001B[1;32m 2\u001B[0m \u001B[38;5;124mPREFIX edam:\u001B[39m\n\u001B[1;32m 3\u001B[0m \n\u001B[0;32m (...)\u001B[0m\n\u001B[1;32m 32\u001B[0m \u001B[38;5;124mORDER BY ?entity\u001B[39m\n\u001B[1;32m 33\u001B[0m \u001B[38;5;124m\"\"\"\u001B[39m\n\u001B[1;32m 35\u001B[0m results \u001B[38;5;241m=\u001B[39m kg\u001B[38;5;241m.\u001B[39mquery(query)\n\u001B[0;32m---> 37\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m r \u001B[38;5;129;01min\u001B[39;00m results :\n\u001B[1;32m 38\u001B[0m \u001B[38;5;28mprint\u001B[39m(\u001B[38;5;124mf\u001B[39m\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mEntity \u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;132;01m{\u001B[39;00mr[\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mentity\u001B[39m\u001B[38;5;124m'\u001B[39m]\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m - Label \u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;132;01m{\u001B[39;00mr[\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mlabel\u001B[39m\u001B[38;5;124m'\u001B[39m]\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m\"\u001B[39m) \n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/query.py:373\u001B[0m, in \u001B[0;36mResult.__iter__\u001B[0;34m(self)\u001B[0m\n\u001B[1;32m 369\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mtype \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mSELECT\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[1;32m 370\u001B[0m \u001B[38;5;66;03m# this iterates over ResultRows of variable bindings\u001B[39;00m\n\u001B[1;32m 372\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_genbindings:\n\u001B[0;32m--> 373\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m b \u001B[38;5;129;01min\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_genbindings:\n\u001B[1;32m 374\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m b: \u001B[38;5;66;03m# don't add a result row in case of empty binding {}\u001B[39;00m\n\u001B[1;32m 375\u001B[0m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_bindings\u001B[38;5;241m.\u001B[39mappend(b)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:551\u001B[0m, in \u001B[0;36mevalDistinct\u001B[0;34m(ctx, part)\u001B[0m\n\u001B[1;32m 548\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21mevalDistinct\u001B[39m(\n\u001B[1;32m 549\u001B[0m ctx: QueryContext, part: CompValue\n\u001B[1;32m 550\u001B[0m ) \u001B[38;5;241m-\u001B[39m\u001B[38;5;241m>\u001B[39m Generator[FrozenBindings, \u001B[38;5;28;01mNone\u001B[39;00m, \u001B[38;5;28;01mNone\u001B[39;00m]:\n\u001B[0;32m--> 551\u001B[0m res \u001B[38;5;241m=\u001B[39m \u001B[43mevalPart\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mpart\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mp\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 553\u001B[0m done \u001B[38;5;241m=\u001B[39m \u001B[38;5;28mset\u001B[39m()\n\u001B[1;32m 554\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m x \u001B[38;5;129;01min\u001B[39;00m res:\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:303\u001B[0m, in \u001B[0;36mevalPart\u001B[0;34m(ctx, part)\u001B[0m\n\u001B[1;32m 300\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalMinus(ctx, part)\n\u001B[1;32m 302\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mProject\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[0;32m--> 303\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mevalProject\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mpart\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 304\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mSlice\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[1;32m 305\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalSlice(ctx, part)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:561\u001B[0m, in \u001B[0;36mevalProject\u001B[0;34m(ctx, project)\u001B[0m\n\u001B[1;32m 560\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21mevalProject\u001B[39m(ctx: QueryContext, project: CompValue):\n\u001B[0;32m--> 561\u001B[0m res \u001B[38;5;241m=\u001B[39m \u001B[43mevalPart\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mproject\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mp\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 562\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m (row\u001B[38;5;241m.\u001B[39mproject(project\u001B[38;5;241m.\u001B[39mPV) \u001B[38;5;28;01mfor\u001B[39;00m row \u001B[38;5;129;01min\u001B[39;00m res)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:312\u001B[0m, in \u001B[0;36mevalPart\u001B[0;34m(ctx, part)\u001B[0m\n\u001B[1;32m 309\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalReduced(ctx, part)\n\u001B[1;32m 311\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mOrderBy\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[0;32m--> 312\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mevalOrderBy\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mpart\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 313\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mGroup\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[1;32m 314\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalGroup(ctx, part)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:491\u001B[0m, in \u001B[0;36mevalOrderBy\u001B[0;34m(ctx, part)\u001B[0m\n\u001B[1;32m 489\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m e \u001B[38;5;129;01min\u001B[39;00m \u001B[38;5;28mreversed\u001B[39m(part\u001B[38;5;241m.\u001B[39mexpr):\n\u001B[1;32m 490\u001B[0m reverse \u001B[38;5;241m=\u001B[39m \u001B[38;5;28mbool\u001B[39m(e\u001B[38;5;241m.\u001B[39morder \u001B[38;5;129;01mand\u001B[39;00m e\u001B[38;5;241m.\u001B[39morder \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mDESC\u001B[39m\u001B[38;5;124m\"\u001B[39m)\n\u001B[0;32m--> 491\u001B[0m res \u001B[38;5;241m=\u001B[39m \u001B[38;5;28;43msorted\u001B[39;49m\u001B[43m(\u001B[49m\n\u001B[1;32m 492\u001B[0m \u001B[43m \u001B[49m\u001B[43mres\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mkey\u001B[49m\u001B[38;5;241;43m=\u001B[39;49m\u001B[38;5;28;43;01mlambda\u001B[39;49;00m\u001B[43m \u001B[49m\u001B[43mx\u001B[49m\u001B[43m:\u001B[49m\u001B[43m \u001B[49m\u001B[43m_val\u001B[49m\u001B[43m(\u001B[49m\u001B[43mvalue\u001B[49m\u001B[43m(\u001B[49m\u001B[43mx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43me\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mexpr\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mvariables\u001B[49m\u001B[38;5;241;43m=\u001B[39;49m\u001B[38;5;28;43;01mTrue\u001B[39;49;00m\u001B[43m)\u001B[49m\u001B[43m)\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mreverse\u001B[49m\u001B[38;5;241;43m=\u001B[39;49m\u001B[43mreverse\u001B[49m\n\u001B[1;32m 493\u001B[0m \u001B[43m \u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 495\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m res\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:205\u001B[0m, in \u001B[0;36mevalFilter\u001B[0;34m(ctx, part)\u001B[0m\n\u001B[1;32m 200\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21mevalFilter\u001B[39m(\n\u001B[1;32m 201\u001B[0m ctx: QueryContext, part: CompValue\n\u001B[1;32m 202\u001B[0m ) \u001B[38;5;241m-\u001B[39m\u001B[38;5;241m>\u001B[39m Generator[FrozenBindings, \u001B[38;5;28;01mNone\u001B[39;00m, \u001B[38;5;28;01mNone\u001B[39;00m]:\n\u001B[1;32m 203\u001B[0m \u001B[38;5;66;03m# TODO: Deal with dict returned from evalPart!\u001B[39;00m\n\u001B[1;32m 204\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m c \u001B[38;5;129;01min\u001B[39;00m evalPart(ctx, part\u001B[38;5;241m.\u001B[39mp):\n\u001B[0;32m--> 205\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m \u001B[43m_ebv\u001B[49m\u001B[43m(\u001B[49m\n\u001B[1;32m 206\u001B[0m \u001B[43m \u001B[49m\u001B[43mpart\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mexpr\u001B[49m\u001B[43m,\u001B[49m\n\u001B[1;32m 207\u001B[0m \u001B[43m \u001B[49m\u001B[43mc\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mforget\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43m_except\u001B[49m\u001B[38;5;241;43m=\u001B[39;49m\u001B[43mpart\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43m_vars\u001B[49m\u001B[43m)\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;28;43;01mif\u001B[39;49;00m\u001B[43m \u001B[49m\u001B[38;5;129;43;01mnot\u001B[39;49;00m\u001B[43m \u001B[49m\u001B[43mpart\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mno_isolated_scope\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;28;43;01melse\u001B[39;49;00m\u001B[43m \u001B[49m\u001B[43mc\u001B[49m\u001B[43m,\u001B[49m\n\u001B[1;32m 208\u001B[0m \u001B[43m \u001B[49m\u001B[43m)\u001B[49m:\n\u001B[1;32m 209\u001B[0m \u001B[38;5;28;01myield\u001B[39;00m c\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evalutils.py:90\u001B[0m, in \u001B[0;36m_ebv\u001B[0;34m(expr, ctx)\u001B[0m\n\u001B[1;32m 88\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(expr, Expr):\n\u001B[1;32m 89\u001B[0m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[0;32m---> 90\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m EBV(\u001B[43mexpr\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43meval\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m)\u001B[49m)\n\u001B[1;32m 91\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m SPARQLError:\n\u001B[1;32m 92\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;01mFalse\u001B[39;00m \u001B[38;5;66;03m# filter error == False\u001B[39;00m\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/parserutils.py:228\u001B[0m, in \u001B[0;36mExpr.eval\u001B[0;34m(self, ctx)\u001B[0m\n\u001B[1;32m 226\u001B[0m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mctx: Optional[Union[Mapping, FrozenBindings]] \u001B[38;5;241m=\u001B[39m ctx\n\u001B[1;32m 227\u001B[0m \u001B[38;5;66;03m# type error: \"None\" not callable\u001B[39;00m\n\u001B[0;32m--> 228\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43m_evalfn\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m)\u001B[49m \u001B[38;5;66;03m# type: ignore[misc]\u001B[39;00m\n\u001B[1;32m 229\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m SPARQLError \u001B[38;5;28;01mas\u001B[39;00m e:\n\u001B[1;32m 230\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m e\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/operators.py:929\u001B[0m, in \u001B[0;36mConditionalAndExpression\u001B[0;34m(e, ctx)\u001B[0m\n\u001B[1;32m 923\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21mConditionalAndExpression\u001B[39m(\n\u001B[1;32m 924\u001B[0m e: Expr, ctx: Union[QueryContext, FrozenBindings]\n\u001B[1;32m 925\u001B[0m ) \u001B[38;5;241m-\u001B[39m\u001B[38;5;241m>\u001B[39m Literal:\n\u001B[1;32m 926\u001B[0m \u001B[38;5;66;03m# TODO: handle returned errors\u001B[39;00m\n\u001B[1;32m 928\u001B[0m expr \u001B[38;5;241m=\u001B[39m e\u001B[38;5;241m.\u001B[39mexpr\n\u001B[0;32m--> 929\u001B[0m other \u001B[38;5;241m=\u001B[39m \u001B[43me\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mother\u001B[49m\n\u001B[1;32m 931\u001B[0m \u001B[38;5;66;03m# because of the way the add-expr production handled operator precedence\u001B[39;00m\n\u001B[1;32m 932\u001B[0m \u001B[38;5;66;03m# we sometimes have nothing to do\u001B[39;00m\n\u001B[1;32m 933\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m other \u001B[38;5;129;01mis\u001B[39;00m \u001B[38;5;28;01mNone\u001B[39;00m:\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/parserutils.py:196\u001B[0m, in \u001B[0;36mCompValue.__getattr__\u001B[0;34m(self, a)\u001B[0m\n\u001B[1;32m 194\u001B[0m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mAttributeError\u001B[39;00m()\n\u001B[1;32m 195\u001B[0m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[0;32m--> 196\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m[\u001B[49m\u001B[43ma\u001B[49m\u001B[43m]\u001B[49m\n\u001B[1;32m 197\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mKeyError\u001B[39;00m:\n\u001B[1;32m 198\u001B[0m \u001B[38;5;66;03m# raise AttributeError('no such attribute '+a)\u001B[39;00m\n\u001B[1;32m 199\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;01mNone\u001B[39;00m\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/parserutils.py:184\u001B[0m, in \u001B[0;36mCompValue.__getitem__\u001B[0;34m(self, a)\u001B[0m\n\u001B[1;32m 183\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21m__getitem__\u001B[39m(\u001B[38;5;28mself\u001B[39m, a):\n\u001B[0;32m--> 184\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43m_value\u001B[49m\u001B[43m(\u001B[49m\u001B[43mOrderedDict\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[38;5;21;43m__getitem__\u001B[39;49m\u001B[43m(\u001B[49m\u001B[38;5;28;43mself\u001B[39;49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43ma\u001B[49m\u001B[43m)\u001B[49m\u001B[43m)\u001B[49m\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/parserutils.py:179\u001B[0m, in \u001B[0;36mCompValue._value\u001B[0;34m(self, val, variables, errors)\u001B[0m\n\u001B[1;32m 175\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21m_value\u001B[39m(\n\u001B[1;32m 176\u001B[0m \u001B[38;5;28mself\u001B[39m, val: _ValT, variables: \u001B[38;5;28mbool\u001B[39m \u001B[38;5;241m=\u001B[39m \u001B[38;5;28;01mFalse\u001B[39;00m, errors: \u001B[38;5;28mbool\u001B[39m \u001B[38;5;241m=\u001B[39m \u001B[38;5;28;01mFalse\u001B[39;00m\n\u001B[1;32m 177\u001B[0m ) \u001B[38;5;241m-\u001B[39m\u001B[38;5;241m>\u001B[39m Union[_ValT, Any]:\n\u001B[1;32m 178\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mctx \u001B[38;5;129;01mis\u001B[39;00m \u001B[38;5;129;01mnot\u001B[39;00m \u001B[38;5;28;01mNone\u001B[39;00m:\n\u001B[0;32m--> 179\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mvalue\u001B[49m\u001B[43m(\u001B[49m\u001B[38;5;28;43mself\u001B[39;49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mval\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mvariables\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 180\u001B[0m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[1;32m 181\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m val\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/parserutils.py:81\u001B[0m, in \u001B[0;36mvalue\u001B[0;34m(ctx, val, variables, errors)\u001B[0m\n\u001B[1;32m 78\u001B[0m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mException\u001B[39;00m(\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mWhat do I do with this CompValue? \u001B[39m\u001B[38;5;132;01m%s\u001B[39;00m\u001B[38;5;124m\"\u001B[39m \u001B[38;5;241m%\u001B[39m val)\n\u001B[1;32m 80\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(val, \u001B[38;5;28mlist\u001B[39m):\n\u001B[0;32m---> 81\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m [value(ctx, x, variables, errors) \u001B[38;5;28;01mfor\u001B[39;00m x \u001B[38;5;129;01min\u001B[39;00m val]\n\u001B[1;32m 83\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(val, (BNode, Variable)):\n\u001B[1;32m 84\u001B[0m r \u001B[38;5;241m=\u001B[39m ctx\u001B[38;5;241m.\u001B[39mget(val)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/parserutils.py:81\u001B[0m, in \u001B[0;36m\u001B[0;34m(.0)\u001B[0m\n\u001B[1;32m 78\u001B[0m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mException\u001B[39;00m(\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mWhat do I do with this CompValue? \u001B[39m\u001B[38;5;132;01m%s\u001B[39;00m\u001B[38;5;124m\"\u001B[39m \u001B[38;5;241m%\u001B[39m val)\n\u001B[1;32m 80\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(val, \u001B[38;5;28mlist\u001B[39m):\n\u001B[0;32m---> 81\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m [\u001B[43mvalue\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mvariables\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43merrors\u001B[49m\u001B[43m)\u001B[49m \u001B[38;5;28;01mfor\u001B[39;00m x \u001B[38;5;129;01min\u001B[39;00m val]\n\u001B[1;32m 83\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(val, (BNode, Variable)):\n\u001B[1;32m 84\u001B[0m r \u001B[38;5;241m=\u001B[39m ctx\u001B[38;5;241m.\u001B[39mget(val)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/parserutils.py:76\u001B[0m, in \u001B[0;36mvalue\u001B[0;34m(ctx, val, variables, errors)\u001B[0m\n\u001B[1;32m 63\u001B[0m \u001B[38;5;250m\u001B[39m\u001B[38;5;124;03m\"\"\"\u001B[39;00m\n\u001B[1;32m 64\u001B[0m \u001B[38;5;124;03mutility function for evaluating something...\u001B[39;00m\n\u001B[1;32m 65\u001B[0m \n\u001B[0;32m (...)\u001B[0m\n\u001B[1;32m 72\u001B[0m \n\u001B[1;32m 73\u001B[0m \u001B[38;5;124;03m\"\"\"\u001B[39;00m\n\u001B[1;32m 75\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(val, Expr):\n\u001B[0;32m---> 76\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mval\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43meval\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m)\u001B[49m \u001B[38;5;66;03m# recurse?\u001B[39;00m\n\u001B[1;32m 77\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(val, CompValue):\n\u001B[1;32m 78\u001B[0m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mException\u001B[39;00m(\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mWhat do I do with this CompValue? \u001B[39m\u001B[38;5;132;01m%s\u001B[39;00m\u001B[38;5;124m\"\u001B[39m \u001B[38;5;241m%\u001B[39m val)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/parserutils.py:228\u001B[0m, in \u001B[0;36mExpr.eval\u001B[0;34m(self, ctx)\u001B[0m\n\u001B[1;32m 226\u001B[0m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mctx: Optional[Union[Mapping, FrozenBindings]] \u001B[38;5;241m=\u001B[39m ctx\n\u001B[1;32m 227\u001B[0m \u001B[38;5;66;03m# type error: \"None\" not callable\u001B[39;00m\n\u001B[0;32m--> 228\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43m_evalfn\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m)\u001B[49m \u001B[38;5;66;03m# type: ignore[misc]\u001B[39;00m\n\u001B[1;32m 229\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m SPARQLError \u001B[38;5;28;01mas\u001B[39;00m e:\n\u001B[1;32m 230\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m e\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/operators.py:583\u001B[0m, in \u001B[0;36mBuiltin_EXISTS\u001B[0;34m(e, ctx)\u001B[0m\n\u001B[1;32m 581\u001B[0m ctx \u001B[38;5;241m=\u001B[39m ctx\u001B[38;5;241m.\u001B[39mctx\u001B[38;5;241m.\u001B[39mthaw(ctx) \u001B[38;5;66;03m# type: ignore[assignment] # hmm\u001B[39;00m\n\u001B[1;32m 582\u001B[0m \u001B[38;5;66;03m# type error: Argument 1 to \"evalPart\" has incompatible type \"FrozenBindings\"; expected \"QueryContext\"\u001B[39;00m\n\u001B[0;32m--> 583\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m x \u001B[38;5;129;01min\u001B[39;00m \u001B[43mevalPart\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43me\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mgraph\u001B[49m\u001B[43m)\u001B[49m: \u001B[38;5;66;03m# type: ignore[arg-type]\u001B[39;00m\n\u001B[1;32m 584\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m Literal(exists)\n\u001B[1;32m 585\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m Literal(\u001B[38;5;129;01mnot\u001B[39;00m exists)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:300\u001B[0m, in \u001B[0;36mevalPart\u001B[0;34m(ctx, part)\u001B[0m\n\u001B[1;32m 298\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalExtend(ctx, part)\n\u001B[1;32m 299\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mMinus\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[0;32m--> 300\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mevalMinus\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mpart\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 302\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mProject\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[1;32m 303\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalProject(ctx, part)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:171\u001B[0m, in \u001B[0;36mevalMinus\u001B[0;34m(ctx, minus)\u001B[0m\n\u001B[1;32m 169\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21mevalMinus\u001B[39m(ctx: QueryContext, minus: CompValue) \u001B[38;5;241m-\u001B[39m\u001B[38;5;241m>\u001B[39m Generator[FrozenDict, \u001B[38;5;28;01mNone\u001B[39;00m, \u001B[38;5;28;01mNone\u001B[39;00m]:\n\u001B[1;32m 170\u001B[0m a \u001B[38;5;241m=\u001B[39m evalPart(ctx, minus\u001B[38;5;241m.\u001B[39mp1)\n\u001B[0;32m--> 171\u001B[0m b \u001B[38;5;241m=\u001B[39m \u001B[38;5;28mset\u001B[39m(\u001B[43mevalPart\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mminus\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mp2\u001B[49m\u001B[43m)\u001B[49m)\n\u001B[1;32m 172\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m _minus(a, b)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:288\u001B[0m, in \u001B[0;36mevalPart\u001B[0;34m(ctx, part)\u001B[0m\n\u001B[1;32m 286\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalFilter(ctx, part)\n\u001B[1;32m 287\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mJoin\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[0;32m--> 288\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mevalJoin\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mpart\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 289\u001B[0m \u001B[38;5;28;01melif\u001B[39;00m part\u001B[38;5;241m.\u001B[39mname \u001B[38;5;241m==\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mLeftJoin\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[1;32m 290\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalLeftJoin(ctx, part)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:156\u001B[0m, in \u001B[0;36mevalJoin\u001B[0;34m(ctx, join)\u001B[0m\n\u001B[1;32m 154\u001B[0m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[1;32m 155\u001B[0m a \u001B[38;5;241m=\u001B[39m evalPart(ctx, join\u001B[38;5;241m.\u001B[39mp1)\n\u001B[0;32m--> 156\u001B[0m b \u001B[38;5;241m=\u001B[39m \u001B[38;5;28;43mset\u001B[39;49m\u001B[43m(\u001B[49m\u001B[43mevalPart\u001B[49m\u001B[43m(\u001B[49m\u001B[43mctx\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mjoin\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mp2\u001B[49m\u001B[43m)\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 157\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m _join(a, b)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/evaluate.py:90\u001B[0m, in \u001B[0;36mevalBGP\u001B[0;34m(ctx, bgp)\u001B[0m\n\u001B[1;32m 88\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m ss, sp, so \u001B[38;5;129;01min\u001B[39;00m ctx\u001B[38;5;241m.\u001B[39mgraph\u001B[38;5;241m.\u001B[39mtriples((_s, _p, _o)): \u001B[38;5;66;03m# type: ignore[union-attr, arg-type]\u001B[39;00m\n\u001B[1;32m 89\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28;01mNone\u001B[39;00m \u001B[38;5;129;01min\u001B[39;00m (_s, _p, _o):\n\u001B[0;32m---> 90\u001B[0m c \u001B[38;5;241m=\u001B[39m \u001B[43mctx\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mpush\u001B[49m\u001B[43m(\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 91\u001B[0m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[1;32m 92\u001B[0m c \u001B[38;5;241m=\u001B[39m ctx\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/sparql.py:396\u001B[0m, in \u001B[0;36mQueryContext.push\u001B[0;34m(self)\u001B[0m\n\u001B[1;32m 395\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21mpush\u001B[39m(\u001B[38;5;28mself\u001B[39m) \u001B[38;5;241m-\u001B[39m\u001B[38;5;241m>\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mQueryContext\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[0;32m--> 396\u001B[0m r \u001B[38;5;241m=\u001B[39m \u001B[38;5;28;43mself\u001B[39;49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mclone\u001B[49m\u001B[43m(\u001B[49m\u001B[43mBindings\u001B[49m\u001B[43m(\u001B[49m\u001B[38;5;28;43mself\u001B[39;49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mbindings\u001B[49m\u001B[43m)\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 397\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m r\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/sparql.py:295\u001B[0m, in \u001B[0;36mQueryContext.clone\u001B[0;34m(self, bindings)\u001B[0m\n\u001B[1;32m 290\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21mclone\u001B[39m(\n\u001B[1;32m 291\u001B[0m \u001B[38;5;28mself\u001B[39m, bindings: Optional[Union[FrozenBindings, Bindings, List[Any]]] \u001B[38;5;241m=\u001B[39m \u001B[38;5;28;01mNone\u001B[39;00m\n\u001B[1;32m 292\u001B[0m ) \u001B[38;5;241m-\u001B[39m\u001B[38;5;241m>\u001B[39m \u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mQueryContext\u001B[39m\u001B[38;5;124m\"\u001B[39m:\n\u001B[1;32m 293\u001B[0m r \u001B[38;5;241m=\u001B[39m QueryContext(\n\u001B[1;32m 294\u001B[0m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_dataset \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_dataset \u001B[38;5;129;01mis\u001B[39;00m \u001B[38;5;129;01mnot\u001B[39;00m \u001B[38;5;28;01mNone\u001B[39;00m \u001B[38;5;28;01melse\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mgraph,\n\u001B[0;32m--> 295\u001B[0m bindings \u001B[38;5;129;01mor\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mbindings,\n\u001B[1;32m 296\u001B[0m initBindings\u001B[38;5;241m=\u001B[39m\u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39minitBindings,\n\u001B[1;32m 297\u001B[0m )\n\u001B[1;32m 298\u001B[0m r\u001B[38;5;241m.\u001B[39mprologue \u001B[38;5;241m=\u001B[39m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mprologue\n\u001B[1;32m 299\u001B[0m r\u001B[38;5;241m.\u001B[39mgraph \u001B[38;5;241m=\u001B[39m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mgraph\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/sparql.py:98\u001B[0m, in \u001B[0;36mBindings.__len__\u001B[0;34m(self)\u001B[0m\n\u001B[1;32m 96\u001B[0m i \u001B[38;5;241m=\u001B[39m \u001B[38;5;241m0\u001B[39m\n\u001B[1;32m 97\u001B[0m d: Optional[Bindings] \u001B[38;5;241m=\u001B[39m \u001B[38;5;28mself\u001B[39m\n\u001B[0;32m---> 98\u001B[0m \u001B[38;5;28;01mwhile\u001B[39;00m d \u001B[38;5;129;01mis\u001B[39;00m \u001B[38;5;129;01mnot\u001B[39;00m \u001B[38;5;28;01mNone\u001B[39;00m:\n\u001B[1;32m 99\u001B[0m i \u001B[38;5;241m+\u001B[39m\u001B[38;5;241m=\u001B[39m \u001B[38;5;28mlen\u001B[39m(d\u001B[38;5;241m.\u001B[39m_d)\n\u001B[1;32m 100\u001B[0m d \u001B[38;5;241m=\u001B[39m d\u001B[38;5;241m.\u001B[39mouter\n", + "\u001B[0;31mKeyboardInterrupt\u001B[0m: " + ] + } + ], + "source": [ + "query=\"\"\"\n", + "PREFIX edam:\n", + "\n", + "SELECT DISTINCT ?entity ?property ?label ?property_subs_edam WHERE {\n", + "\n", + " VALUES ?property {oboInOwl:hasDefinition\n", + " edam:created_in\n", + " #oboInOwl:inSubset\n", + " rdfs:label\n", + " rdfs:subClassOf }\n", + " ?entity a owl:Class .\n", + "\n", + " FILTER NOT EXISTS {?entity owl:deprecated true .}\n", + " OPTIONAL {?entity rdfs:label ?label .}\n", + " FILTER ( ?entity != )\n", + " FILTER ( ?entity != )\n", + " FILTER ( ?entity != )\n", + " FILTER ( ?entity != )\n", + " FILTER ( ?entity != )\n", + "\n", + " FILTER NOT EXISTS {?entity ?property ?value .\n", + " MINUS { ?value rdf:type owl:Restriction .} #to prevent concept with rdfs:subClassOf property being only restriction (e.g. has_topic)\n", + " }\n", + " FILTER (!isBlank(?entity))\n", + " # UNION\n", + " # {\n", + " # VALUES ?property { oboInOwl:inSubset\n", + " # }\n", + " # FILTER NOT EXISTS {?entity ?property .}\n", + " # }\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:34:51.916015Z", + "start_time": "2024-02-13T17:33:28.687288Z" + } + }, + "execution_count": 42 + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query=\"\"\"\n", + "PREFIX edam:\n", + "\n", + "SELECT DISTINCT ?entity ?property ?label WHERE {\n", + " \n", + " ?entity owl:deprecated true .\n", + " ?entity rdfs:label ?label .\n", + " FILTER ( ?entity != )\n", + " \n", + " {VALUES ?property { edam:obsolete_since\n", + " edam:oldParent \n", + " }\n", + " FILTER NOT EXISTS {?entity ?property ?value .}\n", + " }\n", + " # UNION\n", + " # {VALUES ?property { oboInOwl:inSubset \n", + " # }\n", + " # FILTER NOT EXISTS {?entity ?property .}\n", + " # }\n", + " UNION\n", + " {VALUES ?property { rdfs:subClassOf \n", + " }\n", + " FILTER NOT EXISTS {?entity ?property .}}\n", + "\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:35:44.305467Z", + "start_time": "2024-02-13T17:35:44.131381Z" + } + }, + "execution_count": 44 + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query=\"\"\"\n", + "PREFIX edam:\n", + "PREFIX xsd: \n", + "\n", + "SELECT DISTINCT ?entity ?target ?label ?property\n", + "WHERE {\n", + " VALUES ?property { edam:has_topic\n", + " edam:has_input\n", + " edam:has_output\n", + " edam:is_format_of\n", + " edam:is_identifier_of\n", + " \n", + " }\n", + " ?entity ?p ?value .\n", + " #{?entity rdfs:subClassOf+ edam:operation_0004 .}\n", + " #UNION\n", + " #{\n", + " #?entity rdfs:subClassOf+ edam:data_0006 .\n", + " #}\n", + " ?entity rdfs:label ?label .\n", + " ?entity rdfs:subClassOf ?restriction . \n", + " ?restriction rdf:type owl:Restriction ; \n", + " owl:onProperty ?property ; \n", + " owl:someValuesFrom ?target.\n", + " ?target owl:deprecated ?deprecated . \n", + " FILTER (?deprecated = true)\n", + "}\n", + "ORDER BY ?entity \n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:36:22.365946Z", + "start_time": "2024-02-13T17:36:22.359500Z" + } + }, + "execution_count": 45 + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query=\"\"\"\n", + "PREFIX edam:\n", + "PREFIX xsd: \n", + "\n", + "SELECT DISTINCT ?entity ?label ?value ?property WHERE {\n", + " \n", + " ?entity rdfs:subClassOf ?restriction . \n", + " ?restriction rdf:type owl:Restriction ;\n", + " owl:onProperty ?property ; \n", + " owl:someValuesFrom ?value .\n", + " ?value edam:notRecommendedForAnnotation true .\n", + " \n", + " FILTER ( ?entity != )\n", + " FILTER ( ?entity != )\n", + " FILTER ( ?entity != )\n", + " ?entity rdfs:label ?label .\n", + "\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:36:58.570387Z", + "start_time": "2024-02-13T17:36:57.590318Z" + } + }, + "execution_count": 46 + }, + { + "cell_type": "code", + "outputs": [ + { + "ename": "ParseException", + "evalue": "Expected SelectQuery, found 'FILTER' (at char 169), (line:7, col:4)", + "output_type": "error", + "traceback": [ + "\u001B[0;31m---------------------------------------------------------------------------\u001B[0m", + "\u001B[0;31mParseException\u001B[0m Traceback (most recent call last)", + "Cell \u001B[0;32mIn[48], line 14\u001B[0m\n\u001B[1;32m 1\u001B[0m query\u001B[38;5;241m=\u001B[39m\u001B[38;5;124m\"\"\"\u001B[39m\n\u001B[1;32m 2\u001B[0m \u001B[38;5;124mPREFIX edam:\u001B[39m\n\u001B[1;32m 3\u001B[0m \n\u001B[0;32m (...)\u001B[0m\n\u001B[1;32m 11\u001B[0m \u001B[38;5;124mORDER BY ?entity\u001B[39m\n\u001B[1;32m 12\u001B[0m \u001B[38;5;124m\"\"\"\u001B[39m\n\u001B[0;32m---> 14\u001B[0m results \u001B[38;5;241m=\u001B[39m \u001B[43mkg\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mquery\u001B[49m\u001B[43m(\u001B[49m\u001B[43mquery\u001B[49m\u001B[43m)\u001B[49m\n\u001B[1;32m 16\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m r \u001B[38;5;129;01min\u001B[39;00m results :\n\u001B[1;32m 17\u001B[0m \u001B[38;5;28mprint\u001B[39m(\u001B[38;5;124mf\u001B[39m\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mEntity \u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;132;01m{\u001B[39;00mr[\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mentity\u001B[39m\u001B[38;5;124m'\u001B[39m]\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m - Label \u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;132;01m{\u001B[39;00mr[\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mlabel\u001B[39m\u001B[38;5;124m'\u001B[39m]\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m\"\u001B[39m) \n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/graph.py:1565\u001B[0m, in \u001B[0;36mGraph.query\u001B[0;34m(self, query_object, processor, result, initNs, initBindings, use_store_provided, **kwargs)\u001B[0m\n\u001B[1;32m 1562\u001B[0m processor \u001B[38;5;241m=\u001B[39m plugin\u001B[38;5;241m.\u001B[39mget(processor, query\u001B[38;5;241m.\u001B[39mProcessor)(\u001B[38;5;28mself\u001B[39m)\n\u001B[1;32m 1564\u001B[0m \u001B[38;5;66;03m# type error: Argument 1 to \"Result\" has incompatible type \"Mapping[str, Any]\"; expected \"str\"\u001B[39;00m\n\u001B[0;32m-> 1565\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m result(\u001B[43mprocessor\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mquery\u001B[49m\u001B[43m(\u001B[49m\u001B[43mquery_object\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43minitBindings\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43minitNs\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[43mkwargs\u001B[49m\u001B[43m)\u001B[49m)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/processor.py:144\u001B[0m, in \u001B[0;36mSPARQLProcessor.query\u001B[0;34m(self, strOrQuery, initBindings, initNs, base, DEBUG)\u001B[0m\n\u001B[1;32m 124\u001B[0m \u001B[38;5;250m\u001B[39m\u001B[38;5;124;03m\"\"\"\u001B[39;00m\n\u001B[1;32m 125\u001B[0m \u001B[38;5;124;03mEvaluate a query with the given initial bindings, and initial\u001B[39;00m\n\u001B[1;32m 126\u001B[0m \u001B[38;5;124;03mnamespaces. The given base is used to resolve relative URIs in\u001B[39;00m\n\u001B[0;32m (...)\u001B[0m\n\u001B[1;32m 140\u001B[0m \u001B[38;5;124;03m documentation.\u001B[39;00m\n\u001B[1;32m 141\u001B[0m \u001B[38;5;124;03m\"\"\"\u001B[39;00m\n\u001B[1;32m 143\u001B[0m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(strOrQuery, \u001B[38;5;28mstr\u001B[39m):\n\u001B[0;32m--> 144\u001B[0m strOrQuery \u001B[38;5;241m=\u001B[39m translateQuery(\u001B[43mparseQuery\u001B[49m\u001B[43m(\u001B[49m\u001B[43mstrOrQuery\u001B[49m\u001B[43m)\u001B[49m, base, initNs)\n\u001B[1;32m 146\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m evalQuery(\u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mgraph, strOrQuery, initBindings, base)\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/rdflib/plugins/sparql/parser.py:1542\u001B[0m, in \u001B[0;36mparseQuery\u001B[0;34m(q)\u001B[0m\n\u001B[1;32m 1539\u001B[0m q \u001B[38;5;241m=\u001B[39m q\u001B[38;5;241m.\u001B[39mdecode(\u001B[38;5;124m\"\u001B[39m\u001B[38;5;124mutf-8\u001B[39m\u001B[38;5;124m\"\u001B[39m)\n\u001B[1;32m 1541\u001B[0m q \u001B[38;5;241m=\u001B[39m expandUnicodeEscapes(q)\n\u001B[0;32m-> 1542\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mQuery\u001B[49m\u001B[38;5;241;43m.\u001B[39;49m\u001B[43mparseString\u001B[49m\u001B[43m(\u001B[49m\u001B[43mq\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mparseAll\u001B[49m\u001B[38;5;241;43m=\u001B[39;49m\u001B[38;5;28;43;01mTrue\u001B[39;49;00m\u001B[43m)\u001B[49m\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/pyparsing/util.py:256\u001B[0m, in \u001B[0;36m_make_synonym_function.._inner\u001B[0;34m(self, *args, **kwargs)\u001B[0m\n\u001B[1;32m 251\u001B[0m \u001B[38;5;129m@wraps\u001B[39m(fn)\n\u001B[1;32m 252\u001B[0m \u001B[38;5;28;01mdef\u001B[39;00m \u001B[38;5;21m_inner\u001B[39m(\u001B[38;5;28mself\u001B[39m, \u001B[38;5;241m*\u001B[39margs, \u001B[38;5;241m*\u001B[39m\u001B[38;5;241m*\u001B[39mkwargs):\n\u001B[1;32m 253\u001B[0m \u001B[38;5;66;03m# warnings.warn(\u001B[39;00m\n\u001B[1;32m 254\u001B[0m \u001B[38;5;66;03m# f\"Deprecated - use {fn.__name__}\", DeprecationWarning, stacklevel=3\u001B[39;00m\n\u001B[1;32m 255\u001B[0m \u001B[38;5;66;03m# )\u001B[39;00m\n\u001B[0;32m--> 256\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mfn\u001B[49m\u001B[43m(\u001B[49m\u001B[38;5;28;43mself\u001B[39;49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[43margs\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[38;5;241;43m*\u001B[39;49m\u001B[43mkwargs\u001B[49m\u001B[43m)\u001B[49m\n", + "File \u001B[0;32m~/mambaforge/lib/python3.10/site-packages/pyparsing/core.py:1197\u001B[0m, in \u001B[0;36mParserElement.parse_string\u001B[0;34m(self, instring, parse_all, parseAll)\u001B[0m\n\u001B[1;32m 1194\u001B[0m \u001B[38;5;28;01mraise\u001B[39;00m\n\u001B[1;32m 1195\u001B[0m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[1;32m 1196\u001B[0m \u001B[38;5;66;03m# catch and re-raise exception from here, clearing out pyparsing internal stack trace\u001B[39;00m\n\u001B[0;32m-> 1197\u001B[0m \u001B[38;5;28;01mraise\u001B[39;00m exc\u001B[38;5;241m.\u001B[39mwith_traceback(\u001B[38;5;28;01mNone\u001B[39;00m)\n\u001B[1;32m 1198\u001B[0m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[1;32m 1199\u001B[0m \u001B[38;5;28;01mreturn\u001B[39;00m tokens\n", + "\u001B[0;31mParseException\u001B[0m: Expected SelectQuery, found 'FILTER' (at char 169), (line:7, col:4)" + ] + } + ], + "source": [ + "query=\"\"\"\n", + "PREFIX edam:\n", + "\n", + "SELECT DISTINCT ?entity ?property ?value ?label WHERE {\n", + " ?entity ?property ?value .\n", + " ?entity rdfs:label ?label . \n", + " FILTER REGEX(str(?value), \"^[\\\\s\\r\\n]+\")\n", + " FILTER (!isBlank(?entity))\n", + "\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:37:43.255350Z", + "start_time": "2024-02-13T17:37:43.213404Z" + } + }, + "execution_count": 48 + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query=\"\"\"\n", + "PREFIX edam:\n", + "PREFIX xsd: \n", + "\n", + "SELECT ?entity ?label ?id ?subset ?superclass ?label_sc ?id_sc ?subset_sc WHERE {\n", + "\n", + " ?entity a owl:Class .\n", + " ?entity rdfs:label ?label . \n", + " BIND(strafter(str(?entity), \"org/\") AS ?id) .\n", + " BIND(strbefore(str(?id), \"_\") AS ?subset) .\n", + " \n", + " ?entity rdfs:subClassOf ?superclass .\n", + " ?superclass rdfs:label ?label_sc . \n", + " BIND(strafter(str(?superclass), \"org/\") AS ?id_sc) .\n", + " BIND(strbefore(str(?id_sc), \"_\") AS ?subset_sc) .\n", + " \n", + " FILTER ( ?subset_sc != ?subset) .\n", + "} \n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:38:31.933779Z", + "start_time": "2024-02-13T17:38:31.263856Z" + } + }, + "execution_count": 49 + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query=\"\"\"\n", + "SELECT DISTINCT ?entity ?label ?property ?value WHERE {\n", + " VALUES ?property { rdfs:subClassOf }\n", + " ?entity ?property ?value\n", + " FILTER (?entity = ?value)\n", + "\t ?entity rdfs:label ?label \n", + "\t \n", + "\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:39:00.957289Z", + "start_time": "2024-02-13T17:39:00.769363Z" + } + }, + "execution_count": 50 + }, + { + "cell_type": "code", + "outputs": [], + "source": [ + "query=\"\"\"\n", + "SELECT DISTINCT ?entity ?property ?value ?label WHERE {\n", + " ?entity ?property ?value .\n", + " ?entity rdfs:label ?label . \n", + " \n", + " FILTER regex(?value, \"\\t\")\n", + " FILTER (!isBlank(?entity))\n", + "\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:39:44.609247Z", + "start_time": "2024-02-13T17:39:42.950288Z" + } + }, + "execution_count": 51 + }, + { + "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Entity 'http://edamontology.org/data_0005' - Label 'Resource type'\n", + "Entity 'http://edamontology.org/data_0005' - Label 'Resource type'\n", + "Entity 'http://edamontology.org/data_0007' - Label 'Tool'\n", + "Entity 'http://edamontology.org/data_0007' - Label 'Tool'\n", + "Entity 'http://edamontology.org/data_0581' - Label 'Database'\n", + "Entity 'http://edamontology.org/data_0581' - Label 'Database'\n", + "Entity 'http://edamontology.org/data_0582' - Label 'Ontology'\n", + "Entity 'http://edamontology.org/data_0582' - Label 'Ontology'\n", + "Entity 'http://edamontology.org/data_0583' - Label 'Directory metadata'\n", + "Entity 'http://edamontology.org/data_0583' - Label 'Directory metadata'\n", + "Entity 'http://edamontology.org/data_0831' - Label 'MeSH vocabulary'\n", + "Entity 'http://edamontology.org/data_0831' - Label 'MeSH vocabulary'\n", + "Entity 'http://edamontology.org/data_0832' - Label 'HGNC vocabulary'\n", + "Entity 'http://edamontology.org/data_0832' - Label 'HGNC vocabulary'\n", + "Entity 'http://edamontology.org/data_0835' - Label 'UMLS vocabulary'\n", + "Entity 'http://edamontology.org/data_0835' - Label 'UMLS vocabulary'\n", + "Entity 'http://edamontology.org/data_0842' - Label 'Identifier'\n", + "Entity 'http://edamontology.org/data_0842' - Label 'Identifier'\n", + "Entity 'http://edamontology.org/data_0843' - Label 'Database entry'\n", + "Entity 'http://edamontology.org/data_0843' - Label 'Database entry'\n", + "Entity 'http://edamontology.org/data_0844' - Label 'Molecular mass'\n", + "Entity 'http://edamontology.org/data_0845' - Label 'Molecular charge'\n", + "Entity 'http://edamontology.org/data_0846' - Label 'Chemical formula'\n", + "Entity 'http://edamontology.org/data_0847' - Label 'QSAR descriptor'\n", + "Entity 'http://edamontology.org/data_0848' - Label 'Raw sequence'\n", + "Entity 'http://edamontology.org/data_0848' - Label 'Raw sequence'\n", + "Entity 'http://edamontology.org/data_0849' - Label 'Sequence record'\n", + "Entity 'http://edamontology.org/data_0850' - Label 'Sequence set'\n", + "Entity 'http://edamontology.org/data_0851' - Label 'Sequence mask character'\n", + "Entity 'http://edamontology.org/data_0851' - Label 'Sequence mask character'\n", + "Entity 'http://edamontology.org/data_0852' - Label 'Sequence mask type'\n", + "Entity 'http://edamontology.org/data_0852' - Label 'Sequence mask type'\n", + "Entity 'http://edamontology.org/data_0853' - Label 'DNA sense specification'\n", + "Entity 'http://edamontology.org/data_0853' - Label 'DNA sense specification'\n", + "Entity 'http://edamontology.org/data_0854' - Label 'Sequence length specification'\n", + "Entity 'http://edamontology.org/data_0854' - Label 'Sequence length specification'\n", + "Entity 'http://edamontology.org/data_0855' - Label 'Sequence metadata'\n", + "Entity 'http://edamontology.org/data_0855' - Label 'Sequence metadata'\n", + "Entity 'http://edamontology.org/data_0856' - Label 'Sequence feature source'\n", + "Entity 'http://edamontology.org/data_0857' - Label 'Sequence search results'\n", + "Entity 'http://edamontology.org/data_0858' - Label 'Sequence signature matches'\n", + "Entity 'http://edamontology.org/data_0858' - Label 'Sequence signature matches'\n", + "Entity 'http://edamontology.org/data_0859' - Label 'Sequence signature model'\n", + "Entity 'http://edamontology.org/data_0859' - Label 'Sequence signature model'\n", + "Entity 'http://edamontology.org/data_0860' - Label 'Sequence signature data'\n", + "Entity 'http://edamontology.org/data_0860' - Label 'Sequence signature data'\n", + "Entity 'http://edamontology.org/data_0861' - Label 'Sequence alignment (words)'\n", + "Entity 'http://edamontology.org/data_0861' - Label 'Sequence alignment (words)'\n", + "Entity 'http://edamontology.org/data_0862' - Label 'Dotplot'\n", + "Entity 'http://edamontology.org/data_0863' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/data_0863' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/data_0864' - Label 'Sequence alignment parameter'\n", + "Entity 'http://edamontology.org/data_0864' - Label 'Sequence alignment parameter'\n", + "Entity 'http://edamontology.org/data_0865' - Label 'Sequence similarity score'\n", + "Entity 'http://edamontology.org/data_0866' - Label 'Sequence alignment metadata'\n", + "Entity 'http://edamontology.org/data_0866' - Label 'Sequence alignment metadata'\n", + "Entity 'http://edamontology.org/data_0867' - Label 'Sequence alignment report'\n", + "Entity 'http://edamontology.org/data_0868' - Label 'Profile-profile alignment'\n", + "Entity 'http://edamontology.org/data_0868' - Label 'Profile-profile alignment'\n", + "Entity 'http://edamontology.org/data_0869' - Label 'Sequence-profile alignment'\n", + "Entity 'http://edamontology.org/data_0869' - Label 'Sequence-profile alignment'\n", + "Entity 'http://edamontology.org/data_0870' - Label 'Sequence distance matrix'\n", + "Entity 'http://edamontology.org/data_0871' - Label 'Phylogenetic character data'\n", + "Entity 'http://edamontology.org/data_0872' - Label 'Phylogenetic tree'\n", + "Entity 'http://edamontology.org/data_0872' - Label 'Phylogenetic tree'\n", + "Entity 'http://edamontology.org/data_0874' - Label 'Comparison matrix'\n", + "Entity 'http://edamontology.org/data_0875' - Label 'Protein topology'\n", + "Entity 'http://edamontology.org/data_0875' - Label 'Protein topology'\n", + "Entity 'http://edamontology.org/data_0876' - Label 'Protein features report (secondary structure)'\n", + "Entity 'http://edamontology.org/data_0876' - Label 'Protein features report (secondary structure)'\n", + "Entity 'http://edamontology.org/data_0877' - Label 'Protein features report (super-secondary)'\n", + "Entity 'http://edamontology.org/data_0877' - Label 'Protein features report (super-secondary)'\n", + "Entity 'http://edamontology.org/data_0878' - Label 'Protein secondary structure alignment'\n", + "Entity 'http://edamontology.org/data_0879' - Label 'Secondary structure alignment metadata (protein)'\n", + "Entity 'http://edamontology.org/data_0879' - Label 'Secondary structure alignment metadata (protein)'\n", + "Entity 'http://edamontology.org/data_0880' - Label 'RNA secondary structure'\n", + "Entity 'http://edamontology.org/data_0880' - Label 'RNA secondary structure'\n", + "Entity 'http://edamontology.org/data_0881' - Label 'RNA secondary structure alignment'\n", + "Entity 'http://edamontology.org/data_0882' - Label 'Secondary structure alignment metadata (RNA)'\n", + "Entity 'http://edamontology.org/data_0882' - Label 'Secondary structure alignment metadata (RNA)'\n", + "Entity 'http://edamontology.org/data_0883' - Label 'Structure'\n", + "Entity 'http://edamontology.org/data_0883' - Label 'Structure'\n", + "Entity 'http://edamontology.org/data_0884' - Label 'Tertiary structure record'\n", + "Entity 'http://edamontology.org/data_0884' - Label 'Tertiary structure record'\n", + "Entity 'http://edamontology.org/data_0885' - Label 'Structure database search results'\n", + "Entity 'http://edamontology.org/data_0885' - Label 'Structure database search results'\n", + "Entity 'http://edamontology.org/data_0886' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/data_0886' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/data_0887' - Label 'Structure alignment report'\n", + "Entity 'http://edamontology.org/data_0888' - Label 'Structure similarity score'\n", + "Entity 'http://edamontology.org/data_0889' - Label 'Structural profile'\n", + "Entity 'http://edamontology.org/data_0889' - Label 'Structural profile'\n", + "Entity 'http://edamontology.org/data_0890' - Label 'Structural (3D) profile alignment'\n", + "Entity 'http://edamontology.org/data_0891' - Label 'Sequence-3D profile alignment'\n", + "Entity 'http://edamontology.org/data_0891' - Label 'Sequence-3D profile alignment'\n", + "Entity 'http://edamontology.org/data_0892' - Label 'Protein sequence-structure scoring matrix'\n", + "Entity 'http://edamontology.org/data_0893' - Label 'Sequence-structure alignment'\n", + "Entity 'http://edamontology.org/data_0894' - Label 'Amino acid annotation'\n", + "Entity 'http://edamontology.org/data_0894' - Label 'Amino acid annotation'\n", + "Entity 'http://edamontology.org/data_0895' - Label 'Peptide annotation'\n", + "Entity 'http://edamontology.org/data_0895' - Label 'Peptide annotation'\n", + "Entity 'http://edamontology.org/data_0896' - Label 'Protein report'\n", + "Entity 'http://edamontology.org/data_0897' - Label 'Protein property'\n", + "Entity 'http://edamontology.org/data_0899' - Label 'Protein structural motifs and surfaces'\n", + "Entity 'http://edamontology.org/data_0899' - Label 'Protein structural motifs and surfaces'\n", + "Entity 'http://edamontology.org/data_0900' - Label 'Protein domain classification'\n", + "Entity 'http://edamontology.org/data_0900' - Label 'Protein domain classification'\n", + "Entity 'http://edamontology.org/data_0901' - Label 'Protein features report (domains)'\n", + "Entity 'http://edamontology.org/data_0901' - Label 'Protein features report (domains)'\n", + "Entity 'http://edamontology.org/data_0902' - Label 'Protein architecture report'\n", + "Entity 'http://edamontology.org/data_0902' - Label 'Protein architecture report'\n", + "Entity 'http://edamontology.org/data_0903' - Label 'Protein folding report'\n", + "Entity 'http://edamontology.org/data_0903' - Label 'Protein folding report'\n", + "Entity 'http://edamontology.org/data_0904' - Label 'Protein features (mutation)'\n", + "Entity 'http://edamontology.org/data_0904' - Label 'Protein features (mutation)'\n", + "Entity 'http://edamontology.org/data_0905' - Label 'Protein interaction raw data'\n", + "Entity 'http://edamontology.org/data_0906' - Label 'Protein interaction data'\n", + "Entity 'http://edamontology.org/data_0906' - Label 'Protein interaction data'\n", + "Entity 'http://edamontology.org/data_0907' - Label 'Protein family report'\n", + "Entity 'http://edamontology.org/data_0907' - Label 'Protein family report'\n", + "Entity 'http://edamontology.org/data_0909' - Label 'Vmax'\n", + "Entity 'http://edamontology.org/data_0910' - Label 'Km'\n", + "Entity 'http://edamontology.org/data_0911' - Label 'Nucleotide base annotation'\n", + "Entity 'http://edamontology.org/data_0911' - Label 'Nucleotide base annotation'\n", + "Entity 'http://edamontology.org/data_0912' - Label 'Nucleic acid property'\n", + "Entity 'http://edamontology.org/data_0914' - Label 'Codon usage data'\n", + "Entity 'http://edamontology.org/data_0914' - Label 'Codon usage data'\n", + "Entity 'http://edamontology.org/data_0916' - Label 'Gene report'\n", + "Entity 'http://edamontology.org/data_0917' - Label 'Gene classification'\n", + "Entity 'http://edamontology.org/data_0917' - Label 'Gene classification'\n", + "Entity 'http://edamontology.org/data_0918' - Label 'DNA variation'\n", + "Entity 'http://edamontology.org/data_0918' - Label 'DNA variation'\n", + "Entity 'http://edamontology.org/data_0919' - Label 'Chromosome report'\n", + "Entity 'http://edamontology.org/data_0920' - Label 'Genotype/phenotype report'\n", + "Entity 'http://edamontology.org/data_0923' - Label 'PCR experiment report'\n", + "Entity 'http://edamontology.org/data_0923' - Label 'PCR experiment report'\n", + "Entity 'http://edamontology.org/data_0924' - Label 'Sequence trace'\n", + "Entity 'http://edamontology.org/data_0924' - Label 'Sequence trace'\n", + "Entity 'http://edamontology.org/data_0925' - Label 'Sequence assembly'\n", + "Entity 'http://edamontology.org/data_0926' - Label 'RH scores'\n", + "Entity 'http://edamontology.org/data_0927' - Label 'Genetic linkage report'\n", + "Entity 'http://edamontology.org/data_0928' - Label 'Gene expression profile'\n", + "Entity 'http://edamontology.org/data_0931' - Label 'Microarray experiment report'\n", + "Entity 'http://edamontology.org/data_0931' - Label 'Microarray experiment report'\n", + "Entity 'http://edamontology.org/data_0932' - Label 'Oligonucleotide probe data'\n", + "Entity 'http://edamontology.org/data_0932' - Label 'Oligonucleotide probe data'\n", + "Entity 'http://edamontology.org/data_0933' - Label 'SAGE experimental data'\n", + "Entity 'http://edamontology.org/data_0933' - Label 'SAGE experimental data'\n", + "Entity 'http://edamontology.org/data_0934' - Label 'MPSS experimental data'\n", + "Entity 'http://edamontology.org/data_0934' - Label 'MPSS experimental data'\n", + "Entity 'http://edamontology.org/data_0935' - Label 'SBS experimental data'\n", + "Entity 'http://edamontology.org/data_0935' - Label 'SBS experimental data'\n", + "Entity 'http://edamontology.org/data_0936' - Label 'Sequence tag profile (with gene assignment)'\n", + "Entity 'http://edamontology.org/data_0936' - Label 'Sequence tag profile (with gene assignment)'\n", + "Entity 'http://edamontology.org/data_0937' - Label 'Electron density map'\n", + "Entity 'http://edamontology.org/data_0938' - Label 'Raw NMR data'\n", + "Entity 'http://edamontology.org/data_0939' - Label 'CD spectra'\n", + "Entity 'http://edamontology.org/data_0940' - Label 'Volume map'\n", + "Entity 'http://edamontology.org/data_0940' - Label 'Volume map'\n", + "Entity 'http://edamontology.org/data_0941' - Label 'Electron microscopy model'\n", + "Entity 'http://edamontology.org/data_0941' - Label 'Electron microscopy model'\n", + "Entity 'http://edamontology.org/data_0942' - Label '2D PAGE image'\n", + "Entity 'http://edamontology.org/data_0942' - Label '2D PAGE image'\n", + "Entity 'http://edamontology.org/data_0943' - Label 'Mass spectrum'\n", + "Entity 'http://edamontology.org/data_0943' - Label 'Mass spectrum'\n", + "Entity 'http://edamontology.org/data_0944' - Label 'Peptide mass fingerprint'\n", + "Entity 'http://edamontology.org/data_0944' - Label 'Peptide mass fingerprint'\n", + "Entity 'http://edamontology.org/data_0944' - Label 'Peptide mass fingerprint'\n", + "Entity 'http://edamontology.org/data_0945' - Label 'Peptide identification'\n", + "Entity 'http://edamontology.org/data_0945' - Label 'Peptide identification'\n", + "Entity 'http://edamontology.org/data_0945' - Label 'Peptide identification'\n", + "Entity 'http://edamontology.org/data_0946' - Label 'Pathway or network annotation'\n", + "Entity 'http://edamontology.org/data_0946' - Label 'Pathway or network annotation'\n", + "Entity 'http://edamontology.org/data_0947' - Label 'Biological pathway map'\n", + "Entity 'http://edamontology.org/data_0947' - Label 'Biological pathway map'\n", + "Entity 'http://edamontology.org/data_0948' - Label 'Data resource definition'\n", + "Entity 'http://edamontology.org/data_0948' - Label 'Data resource definition'\n", + "Entity 'http://edamontology.org/data_0949' - Label 'Workflow metadata'\n", + "Entity 'http://edamontology.org/data_0950' - Label 'Mathematical model'\n", + "Entity 'http://edamontology.org/data_0950' - Label 'Mathematical model'\n", + "Entity 'http://edamontology.org/data_0951' - Label 'Statistical estimate score'\n", + "Entity 'http://edamontology.org/data_0952' - Label 'EMBOSS database resource definition'\n", + "Entity 'http://edamontology.org/data_0952' - Label 'EMBOSS database resource definition'\n", + "Entity 'http://edamontology.org/data_0953' - Label 'Version information'\n", + "Entity 'http://edamontology.org/data_0953' - Label 'Version information'\n", + "Entity 'http://edamontology.org/data_0954' - Label 'Database cross-mapping'\n", + "Entity 'http://edamontology.org/data_0955' - Label 'Data index'\n", + "Entity 'http://edamontology.org/data_0955' - Label 'Data index'\n", + "Entity 'http://edamontology.org/data_0956' - Label 'Data index report'\n", + "Entity 'http://edamontology.org/data_0956' - Label 'Data index report'\n", + "Entity 'http://edamontology.org/data_0957' - Label 'Database metadata'\n", + "Entity 'http://edamontology.org/data_0958' - Label 'Tool metadata'\n", + "Entity 'http://edamontology.org/data_0959' - Label 'Job metadata'\n", + "Entity 'http://edamontology.org/data_0959' - Label 'Job metadata'\n", + "Entity 'http://edamontology.org/data_0960' - Label 'User metadata'\n", + "Entity 'http://edamontology.org/data_0962' - Label 'Small molecule report'\n", + "Entity 'http://edamontology.org/data_0962' - Label 'Small molecule report'\n", + "Entity 'http://edamontology.org/data_0963' - Label 'Cell line report'\n", + "Entity 'http://edamontology.org/data_0964' - Label 'Scent annotation'\n", + "Entity 'http://edamontology.org/data_0964' - Label 'Scent annotation'\n", + "Entity 'http://edamontology.org/data_0966' - Label 'Ontology term'\n", + "Entity 'http://edamontology.org/data_0967' - Label 'Ontology concept data'\n", + "Entity 'http://edamontology.org/data_0968' - Label 'Keyword'\n", + "Entity 'http://edamontology.org/data_0970' - Label 'Citation'\n", + "Entity 'http://edamontology.org/data_0971' - Label 'Article'\n", + "Entity 'http://edamontology.org/data_0971' - Label 'Article'\n", + "Entity 'http://edamontology.org/data_0972' - Label 'Text mining report'\n", + "Entity 'http://edamontology.org/data_0972' - Label 'Text mining report'\n", + "Entity 'http://edamontology.org/data_0974' - Label 'Entity identifier'\n", + "Entity 'http://edamontology.org/data_0974' - Label 'Entity identifier'\n", + "Entity 'http://edamontology.org/data_0975' - Label 'Data resource identifier'\n", + "Entity 'http://edamontology.org/data_0975' - Label 'Data resource identifier'\n", + "Entity 'http://edamontology.org/data_0976' - Label 'Identifier (by type of entity)'\n", + "Entity 'http://edamontology.org/data_0977' - Label 'Tool identifier'\n", + "Entity 'http://edamontology.org/data_0978' - Label 'Discrete entity identifier'\n", + "Entity 'http://edamontology.org/data_0978' - Label 'Discrete entity identifier'\n", + "Entity 'http://edamontology.org/data_0979' - Label 'Entity feature identifier'\n", + "Entity 'http://edamontology.org/data_0979' - Label 'Entity feature identifier'\n", + "Entity 'http://edamontology.org/data_0980' - Label 'Entity collection identifier'\n", + "Entity 'http://edamontology.org/data_0980' - Label 'Entity collection identifier'\n", + "Entity 'http://edamontology.org/data_0981' - Label 'Phenomenon identifier'\n", + "Entity 'http://edamontology.org/data_0981' - Label 'Phenomenon identifier'\n", + "Entity 'http://edamontology.org/data_0982' - Label 'Molecule identifier'\n", + "Entity 'http://edamontology.org/data_0983' - Label 'Atom ID'\n", + "Entity 'http://edamontology.org/data_0984' - Label 'Molecule name'\n", + "Entity 'http://edamontology.org/data_0984' - Label 'Molecule name'\n", + "Entity 'http://edamontology.org/data_0985' - Label 'Molecule type'\n", + "Entity 'http://edamontology.org/data_0985' - Label 'Molecule type'\n", + "Entity 'http://edamontology.org/data_0986' - Label 'Chemical identifier'\n", + "Entity 'http://edamontology.org/data_0986' - Label 'Chemical identifier'\n", + "Entity 'http://edamontology.org/data_0987' - Label 'Chromosome name'\n", + "Entity 'http://edamontology.org/data_0987' - Label 'Chromosome name'\n", + "Entity 'http://edamontology.org/data_0987' - Label 'Chromosome name'\n", + "Entity 'http://edamontology.org/data_0988' - Label 'Peptide identifier'\n", + "Entity 'http://edamontology.org/data_0989' - Label 'Protein identifier'\n", + "Entity 'http://edamontology.org/data_0989' - Label 'Protein identifier'\n", + "Entity 'http://edamontology.org/data_0990' - Label 'Compound name'\n", + "Entity 'http://edamontology.org/data_0990' - Label 'Compound name'\n", + "Entity 'http://edamontology.org/data_0991' - Label 'Chemical registry number'\n", + "Entity 'http://edamontology.org/data_0992' - Label 'Ligand identifier'\n", + "Entity 'http://edamontology.org/data_0992' - Label 'Ligand identifier'\n", + "Entity 'http://edamontology.org/data_0993' - Label 'Drug identifier'\n", + "Entity 'http://edamontology.org/data_0993' - Label 'Drug identifier'\n", + "Entity 'http://edamontology.org/data_0994' - Label 'Amino acid identifier'\n", + "Entity 'http://edamontology.org/data_0994' - Label 'Amino acid identifier'\n", + "Entity 'http://edamontology.org/data_0995' - Label 'Nucleotide identifier'\n", + "Entity 'http://edamontology.org/data_0996' - Label 'Monosaccharide identifier'\n", + "Entity 'http://edamontology.org/data_0997' - Label 'Chemical name (ChEBI)'\n", + "Entity 'http://edamontology.org/data_0998' - Label 'Chemical name (IUPAC)'\n", + "Entity 'http://edamontology.org/data_0999' - Label 'Chemical name (INN)'\n", + "Entity 'http://edamontology.org/data_1000' - Label 'Chemical name (brand)'\n", + "Entity 'http://edamontology.org/data_1001' - Label 'Chemical name (synonymous)'\n", + "Entity 'http://edamontology.org/data_1002' - Label 'CAS number'\n", + "Entity 'http://edamontology.org/data_1002' - Label 'CAS number'\n", + "Entity 'http://edamontology.org/data_1002' - Label 'CAS number'\n", + "Entity 'http://edamontology.org/data_1003' - Label 'Chemical registry number (Beilstein)'\n", + "Entity 'http://edamontology.org/data_1003' - Label 'Chemical registry number (Beilstein)'\n", + "Entity 'http://edamontology.org/data_1004' - Label 'Chemical registry number (Gmelin)'\n", + "Entity 'http://edamontology.org/data_1004' - Label 'Chemical registry number (Gmelin)'\n", + "Entity 'http://edamontology.org/data_1005' - Label 'HET group name'\n", + "Entity 'http://edamontology.org/data_1006' - Label 'Amino acid name'\n", + "Entity 'http://edamontology.org/data_1007' - Label 'Nucleotide code'\n", + "Entity 'http://edamontology.org/data_1007' - Label 'Nucleotide code'\n", + "Entity 'http://edamontology.org/data_1008' - Label 'Polypeptide chain ID'\n", + "Entity 'http://edamontology.org/data_1008' - Label 'Polypeptide chain ID'\n", + "Entity 'http://edamontology.org/data_1009' - Label 'Protein name'\n", + "Entity 'http://edamontology.org/data_1009' - Label 'Protein name'\n", + "Entity 'http://edamontology.org/data_1010' - Label 'Enzyme identifier'\n", + "Entity 'http://edamontology.org/data_1011' - Label 'EC number'\n", + "Entity 'http://edamontology.org/data_1011' - Label 'EC number'\n", + "Entity 'http://edamontology.org/data_1012' - Label 'Enzyme name'\n", + "Entity 'http://edamontology.org/data_1012' - Label 'Enzyme name'\n", + "Entity 'http://edamontology.org/data_1013' - Label 'Restriction enzyme name'\n", + "Entity 'http://edamontology.org/data_1014' - Label 'Sequence position specification'\n", + "Entity 'http://edamontology.org/data_1014' - Label 'Sequence position specification'\n", + "Entity 'http://edamontology.org/data_1015' - Label 'Sequence feature ID'\n", + "Entity 'http://edamontology.org/data_1016' - Label 'Sequence position'\n", + "Entity 'http://edamontology.org/data_1017' - Label 'Sequence range'\n", + "Entity 'http://edamontology.org/data_1018' - Label 'Nucleic acid feature identifier'\n", + "Entity 'http://edamontology.org/data_1018' - Label 'Nucleic acid feature identifier'\n", + "Entity 'http://edamontology.org/data_1019' - Label 'Protein feature identifier'\n", + "Entity 'http://edamontology.org/data_1019' - Label 'Protein feature identifier'\n", + "Entity 'http://edamontology.org/data_1020' - Label 'Sequence feature key'\n", + "Entity 'http://edamontology.org/data_1021' - Label 'Sequence feature qualifier'\n", + "Entity 'http://edamontology.org/data_1022' - Label 'Sequence feature label'\n", + "Entity 'http://edamontology.org/data_1022' - Label 'Sequence feature label'\n", + "Entity 'http://edamontology.org/data_1022' - Label 'Sequence feature label'\n", + "Entity 'http://edamontology.org/data_1023' - Label 'EMBOSS Uniform Feature Object'\n", + "Entity 'http://edamontology.org/data_1023' - Label 'EMBOSS Uniform Feature Object'\n", + "Entity 'http://edamontology.org/data_1024' - Label 'Codon name'\n", + "Entity 'http://edamontology.org/data_1024' - Label 'Codon name'\n", + "Entity 'http://edamontology.org/data_1025' - Label 'Gene identifier'\n", + "Entity 'http://edamontology.org/data_1025' - Label 'Gene identifier'\n", + "Entity 'http://edamontology.org/data_1026' - Label 'Gene symbol'\n", + "Entity 'http://edamontology.org/data_1027' - Label 'Gene ID (NCBI)'\n", + "Entity 'http://edamontology.org/data_1027' - Label 'Gene ID (NCBI)'\n", + "Entity 'http://edamontology.org/data_1027' - Label 'Gene ID (NCBI)'\n", + "Entity 'http://edamontology.org/data_1028' - Label 'Gene identifier (NCBI RefSeq)'\n", + "Entity 'http://edamontology.org/data_1028' - Label 'Gene identifier (NCBI RefSeq)'\n", + "Entity 'http://edamontology.org/data_1029' - Label 'Gene identifier (NCBI UniGene)'\n", + "Entity 'http://edamontology.org/data_1029' - Label 'Gene identifier (NCBI UniGene)'\n", + "Entity 'http://edamontology.org/data_1030' - Label 'Gene identifier (Entrez)'\n", + "Entity 'http://edamontology.org/data_1030' - Label 'Gene identifier (Entrez)'\n", + "Entity 'http://edamontology.org/data_1031' - Label 'Gene ID (CGD)'\n", + "Entity 'http://edamontology.org/data_1031' - Label 'Gene ID (CGD)'\n", + "Entity 'http://edamontology.org/data_1032' - Label 'Gene ID (DictyBase)'\n", + "Entity 'http://edamontology.org/data_1032' - Label 'Gene ID (DictyBase)'\n", + "Entity 'http://edamontology.org/data_1033' - Label 'Ensembl gene ID'\n", + "Entity 'http://edamontology.org/data_1033' - Label 'Ensembl gene ID'\n", + "Entity 'http://edamontology.org/data_1033' - Label 'Ensembl gene ID'\n", + "Entity 'http://edamontology.org/data_1034' - Label 'Gene ID (SGD)'\n", + "Entity 'http://edamontology.org/data_1034' - Label 'Gene ID (SGD)'\n", + "Entity 'http://edamontology.org/data_1034' - Label 'Gene ID (SGD)'\n", + "Entity 'http://edamontology.org/data_1035' - Label 'Gene ID (GeneDB)'\n", + "Entity 'http://edamontology.org/data_1035' - Label 'Gene ID (GeneDB)'\n", + "Entity 'http://edamontology.org/data_1036' - Label 'TIGR identifier'\n", + "Entity 'http://edamontology.org/data_1036' - Label 'TIGR identifier'\n", + "Entity 'http://edamontology.org/data_1036' - Label 'TIGR identifier'\n", + "Entity 'http://edamontology.org/data_1037' - Label 'TAIR accession (gene)'\n", + "Entity 'http://edamontology.org/data_1037' - Label 'TAIR accession (gene)'\n", + "Entity 'http://edamontology.org/data_1038' - Label 'Protein domain ID'\n", + "Entity 'http://edamontology.org/data_1038' - Label 'Protein domain ID'\n", + "Entity 'http://edamontology.org/data_1039' - Label 'SCOP domain identifier'\n", + "Entity 'http://edamontology.org/data_1039' - Label 'SCOP domain identifier'\n", + "Entity 'http://edamontology.org/data_1040' - Label 'CATH domain ID'\n", + "Entity 'http://edamontology.org/data_1041' - Label 'SCOP concise classification string (sccs)'\n", + "Entity 'http://edamontology.org/data_1042' - Label 'SCOP sunid'\n", + "Entity 'http://edamontology.org/data_1043' - Label 'CATH node ID'\n", + "Entity 'http://edamontology.org/data_1044' - Label 'Kingdom name'\n", + "Entity 'http://edamontology.org/data_1045' - Label 'Species name'\n", + "Entity 'http://edamontology.org/data_1046' - Label 'Strain name'\n", + "Entity 'http://edamontology.org/data_1046' - Label 'Strain name'\n", + "Entity 'http://edamontology.org/data_1047' - Label 'URI'\n", + "Entity 'http://edamontology.org/data_1048' - Label 'Database ID'\n", + "Entity 'http://edamontology.org/data_1048' - Label 'Database ID'\n", + "Entity 'http://edamontology.org/data_1049' - Label 'Directory name'\n", + "Entity 'http://edamontology.org/data_1050' - Label 'File name'\n", + "Entity 'http://edamontology.org/data_1051' - Label 'Ontology name'\n", + "Entity 'http://edamontology.org/data_1051' - Label 'Ontology name'\n", + "Entity 'http://edamontology.org/data_1051' - Label 'Ontology name'\n", + "Entity 'http://edamontology.org/data_1052' - Label 'URL'\n", + "Entity 'http://edamontology.org/data_1053' - Label 'URN'\n", + "Entity 'http://edamontology.org/data_1055' - Label 'LSID'\n", + "Entity 'http://edamontology.org/data_1056' - Label 'Database name'\n", + "Entity 'http://edamontology.org/data_1056' - Label 'Database name'\n", + "Entity 'http://edamontology.org/data_1057' - Label 'Sequence database name'\n", + "Entity 'http://edamontology.org/data_1057' - Label 'Sequence database name'\n", + "Entity 'http://edamontology.org/data_1058' - Label 'Enumerated file name'\n", + "Entity 'http://edamontology.org/data_1059' - Label 'File name extension'\n", + "Entity 'http://edamontology.org/data_1060' - Label 'File base name'\n", + "Entity 'http://edamontology.org/data_1061' - Label 'QSAR descriptor name'\n", + "Entity 'http://edamontology.org/data_1061' - Label 'QSAR descriptor name'\n", + "Entity 'http://edamontology.org/data_1061' - Label 'QSAR descriptor name'\n", + "Entity 'http://edamontology.org/data_1062' - Label 'Database entry identifier'\n", + "Entity 'http://edamontology.org/data_1062' - Label 'Database entry identifier'\n", + "Entity 'http://edamontology.org/data_1063' - Label 'Sequence identifier'\n", + "Entity 'http://edamontology.org/data_1063' - Label 'Sequence identifier'\n", + "Entity 'http://edamontology.org/data_1064' - Label 'Sequence set ID'\n", + "Entity 'http://edamontology.org/data_1064' - Label 'Sequence set ID'\n", + "Entity 'http://edamontology.org/data_1065' - Label 'Sequence signature identifier'\n", + "Entity 'http://edamontology.org/data_1065' - Label 'Sequence signature identifier'\n", + "Entity 'http://edamontology.org/data_1065' - Label 'Sequence signature identifier'\n", + "Entity 'http://edamontology.org/data_1066' - Label 'Sequence alignment ID'\n", + "Entity 'http://edamontology.org/data_1066' - Label 'Sequence alignment ID'\n", + "Entity 'http://edamontology.org/data_1066' - Label 'Sequence alignment ID'\n", + "Entity 'http://edamontology.org/data_1067' - Label 'Phylogenetic distance matrix identifier'\n", + "Entity 'http://edamontology.org/data_1067' - Label 'Phylogenetic distance matrix identifier'\n", + "Entity 'http://edamontology.org/data_1068' - Label 'Phylogenetic tree ID'\n", + "Entity 'http://edamontology.org/data_1068' - Label 'Phylogenetic tree ID'\n", + "Entity 'http://edamontology.org/data_1069' - Label 'Comparison matrix identifier'\n", + "Entity 'http://edamontology.org/data_1069' - Label 'Comparison matrix identifier'\n", + "Entity 'http://edamontology.org/data_1070' - Label 'Structure ID'\n", + "Entity 'http://edamontology.org/data_1071' - Label 'Structural (3D) profile ID'\n", + "Entity 'http://edamontology.org/data_1071' - Label 'Structural (3D) profile ID'\n", + "Entity 'http://edamontology.org/data_1072' - Label 'Structure alignment ID'\n", + "Entity 'http://edamontology.org/data_1072' - Label 'Structure alignment ID'\n", + "Entity 'http://edamontology.org/data_1073' - Label 'Amino acid index ID'\n", + "Entity 'http://edamontology.org/data_1073' - Label 'Amino acid index ID'\n", + "Entity 'http://edamontology.org/data_1073' - Label 'Amino acid index ID'\n", + "Entity 'http://edamontology.org/data_1074' - Label 'Protein interaction ID'\n", + "Entity 'http://edamontology.org/data_1074' - Label 'Protein interaction ID'\n", + "Entity 'http://edamontology.org/data_1075' - Label 'Protein family identifier'\n", + "Entity 'http://edamontology.org/data_1075' - Label 'Protein family identifier'\n", + "Entity 'http://edamontology.org/data_1076' - Label 'Codon usage table name'\n", + "Entity 'http://edamontology.org/data_1076' - Label 'Codon usage table name'\n", + "Entity 'http://edamontology.org/data_1076' - Label 'Codon usage table name'\n", + "Entity 'http://edamontology.org/data_1076' - Label 'Codon usage table name'\n", + "Entity 'http://edamontology.org/data_1077' - Label 'Transcription factor identifier'\n", + "Entity 'http://edamontology.org/data_1077' - Label 'Transcription factor identifier'\n", + "Entity 'http://edamontology.org/data_1078' - Label 'Experiment annotation ID'\n", + "Entity 'http://edamontology.org/data_1078' - Label 'Experiment annotation ID'\n", + "Entity 'http://edamontology.org/data_1079' - Label 'Electron microscopy model ID'\n", + "Entity 'http://edamontology.org/data_1079' - Label 'Electron microscopy model ID'\n", + "Entity 'http://edamontology.org/data_1080' - Label 'Gene expression report ID'\n", + "Entity 'http://edamontology.org/data_1080' - Label 'Gene expression report ID'\n", + "Entity 'http://edamontology.org/data_1081' - Label 'Genotype and phenotype annotation ID'\n", + "Entity 'http://edamontology.org/data_1081' - Label 'Genotype and phenotype annotation ID'\n", + "Entity 'http://edamontology.org/data_1082' - Label 'Pathway or network identifier'\n", + "Entity 'http://edamontology.org/data_1082' - Label 'Pathway or network identifier'\n", + "Entity 'http://edamontology.org/data_1083' - Label 'Workflow ID'\n", + "Entity 'http://edamontology.org/data_1084' - Label 'Data resource definition ID'\n", + "Entity 'http://edamontology.org/data_1085' - Label 'Biological model ID'\n", + "Entity 'http://edamontology.org/data_1085' - Label 'Biological model ID'\n", + "Entity 'http://edamontology.org/data_1086' - Label 'Compound identifier'\n", + "Entity 'http://edamontology.org/data_1086' - Label 'Compound identifier'\n", + "Entity 'http://edamontology.org/data_1087' - Label 'Ontology concept ID'\n", + "Entity 'http://edamontology.org/data_1088' - Label 'Article ID'\n", + "Entity 'http://edamontology.org/data_1088' - Label 'Article ID'\n", + "Entity 'http://edamontology.org/data_1089' - Label 'FlyBase ID'\n", + "Entity 'http://edamontology.org/data_1089' - Label 'FlyBase ID'\n", + "Entity 'http://edamontology.org/data_1091' - Label 'WormBase name'\n", + "Entity 'http://edamontology.org/data_1091' - Label 'WormBase name'\n", + "Entity 'http://edamontology.org/data_1092' - Label 'WormBase class'\n", + "Entity 'http://edamontology.org/data_1093' - Label 'Sequence accession'\n", + "Entity 'http://edamontology.org/data_1094' - Label 'Sequence type'\n", + "Entity 'http://edamontology.org/data_1094' - Label 'Sequence type'\n", + "Entity 'http://edamontology.org/data_1095' - Label 'EMBOSS Uniform Sequence Address'\n", + "Entity 'http://edamontology.org/data_1095' - Label 'EMBOSS Uniform Sequence Address'\n", + "Entity 'http://edamontology.org/data_1096' - Label 'Sequence accession (protein)'\n", + "Entity 'http://edamontology.org/data_1096' - Label 'Sequence accession (protein)'\n", + "Entity 'http://edamontology.org/data_1097' - Label 'Sequence accession (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1097' - Label 'Sequence accession (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1098' - Label 'RefSeq accession'\n", + "Entity 'http://edamontology.org/data_1098' - Label 'RefSeq accession'\n", + "Entity 'http://edamontology.org/data_1099' - Label 'UniProt accession (extended)'\n", + "Entity 'http://edamontology.org/data_1099' - Label 'UniProt accession (extended)'\n", + "Entity 'http://edamontology.org/data_1100' - Label 'PIR identifier'\n", + "Entity 'http://edamontology.org/data_1100' - Label 'PIR identifier'\n", + "Entity 'http://edamontology.org/data_1101' - Label 'TREMBL accession'\n", + "Entity 'http://edamontology.org/data_1101' - Label 'TREMBL accession'\n", + "Entity 'http://edamontology.org/data_1102' - Label 'Gramene primary identifier'\n", + "Entity 'http://edamontology.org/data_1103' - Label 'EMBL/GenBank/DDBJ ID'\n", + "Entity 'http://edamontology.org/data_1103' - Label 'EMBL/GenBank/DDBJ ID'\n", + "Entity 'http://edamontology.org/data_1104' - Label 'Sequence cluster ID (UniGene)'\n", + "Entity 'http://edamontology.org/data_1104' - Label 'Sequence cluster ID (UniGene)'\n", + "Entity 'http://edamontology.org/data_1105' - Label 'dbEST accession'\n", + "Entity 'http://edamontology.org/data_1105' - Label 'dbEST accession'\n", + "Entity 'http://edamontology.org/data_1105' - Label 'dbEST accession'\n", + "Entity 'http://edamontology.org/data_1106' - Label 'dbSNP ID'\n", + "Entity 'http://edamontology.org/data_1106' - Label 'dbSNP ID'\n", + "Entity 'http://edamontology.org/data_1110' - Label 'EMBOSS sequence type'\n", + "Entity 'http://edamontology.org/data_1110' - Label 'EMBOSS sequence type'\n", + "Entity 'http://edamontology.org/data_1111' - Label 'EMBOSS listfile'\n", + "Entity 'http://edamontology.org/data_1111' - Label 'EMBOSS listfile'\n", + "Entity 'http://edamontology.org/data_1112' - Label 'Sequence cluster ID'\n", + "Entity 'http://edamontology.org/data_1112' - Label 'Sequence cluster ID'\n", + "Entity 'http://edamontology.org/data_1113' - Label 'Sequence cluster ID (COG)'\n", + "Entity 'http://edamontology.org/data_1113' - Label 'Sequence cluster ID (COG)'\n", + "Entity 'http://edamontology.org/data_1114' - Label 'Sequence motif identifier'\n", + "Entity 'http://edamontology.org/data_1114' - Label 'Sequence motif identifier'\n", + "Entity 'http://edamontology.org/data_1115' - Label 'Sequence profile ID'\n", + "Entity 'http://edamontology.org/data_1115' - Label 'Sequence profile ID'\n", + "Entity 'http://edamontology.org/data_1116' - Label 'ELM ID'\n", + "Entity 'http://edamontology.org/data_1117' - Label 'Prosite accession number'\n", + "Entity 'http://edamontology.org/data_1118' - Label 'HMMER hidden Markov model ID'\n", + "Entity 'http://edamontology.org/data_1118' - Label 'HMMER hidden Markov model ID'\n", + "Entity 'http://edamontology.org/data_1118' - Label 'HMMER hidden Markov model ID'\n", + "Entity 'http://edamontology.org/data_1119' - Label 'JASPAR profile ID'\n", + "Entity 'http://edamontology.org/data_1119' - Label 'JASPAR profile ID'\n", + "Entity 'http://edamontology.org/data_1120' - Label 'Sequence alignment type'\n", + "Entity 'http://edamontology.org/data_1120' - Label 'Sequence alignment type'\n", + "Entity 'http://edamontology.org/data_1121' - Label 'BLAST sequence alignment type'\n", + "Entity 'http://edamontology.org/data_1121' - Label 'BLAST sequence alignment type'\n", + "Entity 'http://edamontology.org/data_1122' - Label 'Phylogenetic tree type'\n", + "Entity 'http://edamontology.org/data_1122' - Label 'Phylogenetic tree type'\n", + "Entity 'http://edamontology.org/data_1123' - Label 'TreeBASE study accession number'\n", + "Entity 'http://edamontology.org/data_1123' - Label 'TreeBASE study accession number'\n", + "Entity 'http://edamontology.org/data_1124' - Label 'TreeFam accession number'\n", + "Entity 'http://edamontology.org/data_1124' - Label 'TreeFam accession number'\n", + "Entity 'http://edamontology.org/data_1125' - Label 'Comparison matrix type'\n", + "Entity 'http://edamontology.org/data_1125' - Label 'Comparison matrix type'\n", + "Entity 'http://edamontology.org/data_1126' - Label 'Comparison matrix name'\n", + "Entity 'http://edamontology.org/data_1126' - Label 'Comparison matrix name'\n", + "Entity 'http://edamontology.org/data_1126' - Label 'Comparison matrix name'\n", + "Entity 'http://edamontology.org/data_1127' - Label 'PDB ID'\n", + "Entity 'http://edamontology.org/data_1127' - Label 'PDB ID'\n", + "Entity 'http://edamontology.org/data_1128' - Label 'AAindex ID'\n", + "Entity 'http://edamontology.org/data_1128' - Label 'AAindex ID'\n", + "Entity 'http://edamontology.org/data_1129' - Label 'BIND accession number'\n", + "Entity 'http://edamontology.org/data_1129' - Label 'BIND accession number'\n", + "Entity 'http://edamontology.org/data_1130' - Label 'IntAct accession number'\n", + "Entity 'http://edamontology.org/data_1130' - Label 'IntAct accession number'\n", + "Entity 'http://edamontology.org/data_1131' - Label 'Protein family name'\n", + "Entity 'http://edamontology.org/data_1131' - Label 'Protein family name'\n", + "Entity 'http://edamontology.org/data_1132' - Label 'InterPro entry name'\n", + "Entity 'http://edamontology.org/data_1132' - Label 'InterPro entry name'\n", + "Entity 'http://edamontology.org/data_1133' - Label 'InterPro accession'\n", + "Entity 'http://edamontology.org/data_1133' - Label 'InterPro accession'\n", + "Entity 'http://edamontology.org/data_1133' - Label 'InterPro accession'\n", + "Entity 'http://edamontology.org/data_1134' - Label 'InterPro secondary accession'\n", + "Entity 'http://edamontology.org/data_1134' - Label 'InterPro secondary accession'\n", + "Entity 'http://edamontology.org/data_1135' - Label 'Gene3D ID'\n", + "Entity 'http://edamontology.org/data_1135' - Label 'Gene3D ID'\n", + "Entity 'http://edamontology.org/data_1136' - Label 'PIRSF ID'\n", + "Entity 'http://edamontology.org/data_1136' - Label 'PIRSF ID'\n", + "Entity 'http://edamontology.org/data_1137' - Label 'PRINTS code'\n", + "Entity 'http://edamontology.org/data_1137' - Label 'PRINTS code'\n", + "Entity 'http://edamontology.org/data_1138' - Label 'Pfam accession number'\n", + "Entity 'http://edamontology.org/data_1138' - Label 'Pfam accession number'\n", + "Entity 'http://edamontology.org/data_1139' - Label 'SMART accession number'\n", + "Entity 'http://edamontology.org/data_1139' - Label 'SMART accession number'\n", + "Entity 'http://edamontology.org/data_1140' - Label 'Superfamily hidden Markov model number'\n", + "Entity 'http://edamontology.org/data_1140' - Label 'Superfamily hidden Markov model number'\n", + "Entity 'http://edamontology.org/data_1141' - Label 'TIGRFam ID'\n", + "Entity 'http://edamontology.org/data_1141' - Label 'TIGRFam ID'\n", + "Entity 'http://edamontology.org/data_1142' - Label 'ProDom accession number'\n", + "Entity 'http://edamontology.org/data_1142' - Label 'ProDom accession number'\n", + "Entity 'http://edamontology.org/data_1143' - Label 'TRANSFAC accession number'\n", + "Entity 'http://edamontology.org/data_1143' - Label 'TRANSFAC accession number'\n", + "Entity 'http://edamontology.org/data_1144' - Label 'ArrayExpress accession number'\n", + "Entity 'http://edamontology.org/data_1145' - Label 'PRIDE experiment accession number'\n", + "Entity 'http://edamontology.org/data_1146' - Label 'EMDB ID'\n", + "Entity 'http://edamontology.org/data_1146' - Label 'EMDB ID'\n", + "Entity 'http://edamontology.org/data_1147' - Label 'GEO accession number'\n", + "Entity 'http://edamontology.org/data_1147' - Label 'GEO accession number'\n", + "Entity 'http://edamontology.org/data_1148' - Label 'GermOnline ID'\n", + "Entity 'http://edamontology.org/data_1148' - Label 'GermOnline ID'\n", + "Entity 'http://edamontology.org/data_1149' - Label 'EMAGE ID'\n", + "Entity 'http://edamontology.org/data_1149' - Label 'EMAGE ID'\n", + "Entity 'http://edamontology.org/data_1150' - Label 'Disease ID'\n", + "Entity 'http://edamontology.org/data_1151' - Label 'HGVbase ID'\n", + "Entity 'http://edamontology.org/data_1151' - Label 'HGVbase ID'\n", + "Entity 'http://edamontology.org/data_1152' - Label 'HIVDB identifier'\n", + "Entity 'http://edamontology.org/data_1152' - Label 'HIVDB identifier'\n", + "Entity 'http://edamontology.org/data_1153' - Label 'OMIM ID'\n", + "Entity 'http://edamontology.org/data_1153' - Label 'OMIM ID'\n", + "Entity 'http://edamontology.org/data_1154' - Label 'KEGG object identifier'\n", + "Entity 'http://edamontology.org/data_1154' - Label 'KEGG object identifier'\n", + "Entity 'http://edamontology.org/data_1155' - Label 'Pathway ID (reactome)'\n", + "Entity 'http://edamontology.org/data_1155' - Label 'Pathway ID (reactome)'\n", + "Entity 'http://edamontology.org/data_1156' - Label 'Pathway ID (aMAZE)'\n", + "Entity 'http://edamontology.org/data_1156' - Label 'Pathway ID (aMAZE)'\n", + "Entity 'http://edamontology.org/data_1157' - Label 'Pathway ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_1157' - Label 'Pathway ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_1157' - Label 'Pathway ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_1158' - Label 'Pathway ID (INOH)'\n", + "Entity 'http://edamontology.org/data_1158' - Label 'Pathway ID (INOH)'\n", + "Entity 'http://edamontology.org/data_1159' - Label 'Pathway ID (PATIKA)'\n", + "Entity 'http://edamontology.org/data_1159' - Label 'Pathway ID (PATIKA)'\n", + "Entity 'http://edamontology.org/data_1160' - Label 'Pathway ID (CPDB)'\n", + "Entity 'http://edamontology.org/data_1160' - Label 'Pathway ID (CPDB)'\n", + "Entity 'http://edamontology.org/data_1161' - Label 'Pathway ID (Panther)'\n", + "Entity 'http://edamontology.org/data_1161' - Label 'Pathway ID (Panther)'\n", + "Entity 'http://edamontology.org/data_1162' - Label 'MIRIAM identifier'\n", + "Entity 'http://edamontology.org/data_1162' - Label 'MIRIAM identifier'\n", + "Entity 'http://edamontology.org/data_1162' - Label 'MIRIAM identifier'\n", + "Entity 'http://edamontology.org/data_1163' - Label 'MIRIAM data type name'\n", + "Entity 'http://edamontology.org/data_1163' - Label 'MIRIAM data type name'\n", + "Entity 'http://edamontology.org/data_1164' - Label 'MIRIAM URI'\n", + "Entity 'http://edamontology.org/data_1164' - Label 'MIRIAM URI'\n", + "Entity 'http://edamontology.org/data_1164' - Label 'MIRIAM URI'\n", + "Entity 'http://edamontology.org/data_1164' - Label 'MIRIAM URI'\n", + "Entity 'http://edamontology.org/data_1165' - Label 'MIRIAM data type primary name'\n", + "Entity 'http://edamontology.org/data_1166' - Label 'MIRIAM data type synonymous name'\n", + "Entity 'http://edamontology.org/data_1167' - Label 'Taverna workflow ID'\n", + "Entity 'http://edamontology.org/data_1167' - Label 'Taverna workflow ID'\n", + "Entity 'http://edamontology.org/data_1170' - Label 'Biological model name'\n", + "Entity 'http://edamontology.org/data_1170' - Label 'Biological model name'\n", + "Entity 'http://edamontology.org/data_1171' - Label 'BioModel ID'\n", + "Entity 'http://edamontology.org/data_1171' - Label 'BioModel ID'\n", + "Entity 'http://edamontology.org/data_1172' - Label 'PubChem CID'\n", + "Entity 'http://edamontology.org/data_1172' - Label 'PubChem CID'\n", + "Entity 'http://edamontology.org/data_1173' - Label 'ChemSpider ID'\n", + "Entity 'http://edamontology.org/data_1173' - Label 'ChemSpider ID'\n", + "Entity 'http://edamontology.org/data_1174' - Label 'ChEBI ID'\n", + "Entity 'http://edamontology.org/data_1174' - Label 'ChEBI ID'\n", + "Entity 'http://edamontology.org/data_1175' - Label 'BioPax concept ID'\n", + "Entity 'http://edamontology.org/data_1175' - Label 'BioPax concept ID'\n", + "Entity 'http://edamontology.org/data_1176' - Label 'GO concept ID'\n", + "Entity 'http://edamontology.org/data_1176' - Label 'GO concept ID'\n", + "Entity 'http://edamontology.org/data_1177' - Label 'MeSH concept ID'\n", + "Entity 'http://edamontology.org/data_1177' - Label 'MeSH concept ID'\n", + "Entity 'http://edamontology.org/data_1178' - Label 'HGNC concept ID'\n", + "Entity 'http://edamontology.org/data_1178' - Label 'HGNC concept ID'\n", + "Entity 'http://edamontology.org/data_1179' - Label 'NCBI taxonomy ID'\n", + "Entity 'http://edamontology.org/data_1179' - Label 'NCBI taxonomy ID'\n", + "Entity 'http://edamontology.org/data_1179' - Label 'NCBI taxonomy ID'\n", + "Entity 'http://edamontology.org/data_1180' - Label 'Plant Ontology concept ID'\n", + "Entity 'http://edamontology.org/data_1180' - Label 'Plant Ontology concept ID'\n", + "Entity 'http://edamontology.org/data_1181' - Label 'UMLS concept ID'\n", + "Entity 'http://edamontology.org/data_1181' - Label 'UMLS concept ID'\n", + "Entity 'http://edamontology.org/data_1182' - Label 'FMA concept ID'\n", + "Entity 'http://edamontology.org/data_1182' - Label 'FMA concept ID'\n", + "Entity 'http://edamontology.org/data_1183' - Label 'EMAP concept ID'\n", + "Entity 'http://edamontology.org/data_1183' - Label 'EMAP concept ID'\n", + "Entity 'http://edamontology.org/data_1184' - Label 'ChEBI concept ID'\n", + "Entity 'http://edamontology.org/data_1184' - Label 'ChEBI concept ID'\n", + "Entity 'http://edamontology.org/data_1185' - Label 'MGED concept ID'\n", + "Entity 'http://edamontology.org/data_1185' - Label 'MGED concept ID'\n", + "Entity 'http://edamontology.org/data_1186' - Label 'myGrid concept ID'\n", + "Entity 'http://edamontology.org/data_1186' - Label 'myGrid concept ID'\n", + "Entity 'http://edamontology.org/data_1187' - Label 'PubMed ID'\n", + "Entity 'http://edamontology.org/data_1187' - Label 'PubMed ID'\n", + "Entity 'http://edamontology.org/data_1188' - Label 'DOI'\n", + "Entity 'http://edamontology.org/data_1188' - Label 'DOI'\n", + "Entity 'http://edamontology.org/data_1189' - Label 'Medline UI'\n", + "Entity 'http://edamontology.org/data_1189' - Label 'Medline UI'\n", + "Entity 'http://edamontology.org/data_1190' - Label 'Tool name'\n", + "Entity 'http://edamontology.org/data_1191' - Label 'Tool name (signature)'\n", + "Entity 'http://edamontology.org/data_1192' - Label 'Tool name (BLAST)'\n", + "Entity 'http://edamontology.org/data_1193' - Label 'Tool name (FASTA)'\n", + "Entity 'http://edamontology.org/data_1194' - Label 'Tool name (EMBOSS)'\n", + "Entity 'http://edamontology.org/data_1195' - Label 'Tool name (EMBASSY package)'\n", + "Entity 'http://edamontology.org/data_1201' - Label 'QSAR descriptor (constitutional)'\n", + "Entity 'http://edamontology.org/data_1202' - Label 'QSAR descriptor (electronic)'\n", + "Entity 'http://edamontology.org/data_1203' - Label 'QSAR descriptor (geometrical)'\n", + "Entity 'http://edamontology.org/data_1204' - Label 'QSAR descriptor (topological)'\n", + "Entity 'http://edamontology.org/data_1205' - Label 'QSAR descriptor (molecular)'\n", + "Entity 'http://edamontology.org/data_1233' - Label 'Sequence set (protein)'\n", + "Entity 'http://edamontology.org/data_1234' - Label 'Sequence set (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1235' - Label 'Sequence cluster'\n", + "Entity 'http://edamontology.org/data_1235' - Label 'Sequence cluster'\n", + "Entity 'http://edamontology.org/data_1236' - Label 'Psiblast checkpoint file'\n", + "Entity 'http://edamontology.org/data_1236' - Label 'Psiblast checkpoint file'\n", + "Entity 'http://edamontology.org/data_1237' - Label 'HMMER synthetic sequences set'\n", + "Entity 'http://edamontology.org/data_1237' - Label 'HMMER synthetic sequences set'\n", + "Entity 'http://edamontology.org/data_1238' - Label 'Proteolytic digest'\n", + "Entity 'http://edamontology.org/data_1238' - Label 'Proteolytic digest'\n", + "Entity 'http://edamontology.org/data_1239' - Label 'Restriction digest'\n", + "Entity 'http://edamontology.org/data_1240' - Label 'PCR primers'\n", + "Entity 'http://edamontology.org/data_1241' - Label 'vectorstrip cloning vector definition file'\n", + "Entity 'http://edamontology.org/data_1241' - Label 'vectorstrip cloning vector definition file'\n", + "Entity 'http://edamontology.org/data_1242' - Label 'Primer3 internal oligo mishybridizing library'\n", + "Entity 'http://edamontology.org/data_1242' - Label 'Primer3 internal oligo mishybridizing library'\n", + "Entity 'http://edamontology.org/data_1243' - Label 'Primer3 mispriming library file'\n", + "Entity 'http://edamontology.org/data_1243' - Label 'Primer3 mispriming library file'\n", + "Entity 'http://edamontology.org/data_1244' - Label 'primersearch primer pairs sequence record'\n", + "Entity 'http://edamontology.org/data_1244' - Label 'primersearch primer pairs sequence record'\n", + "Entity 'http://edamontology.org/data_1245' - Label 'Sequence cluster (protein)'\n", + "Entity 'http://edamontology.org/data_1245' - Label 'Sequence cluster (protein)'\n", + "Entity 'http://edamontology.org/data_1246' - Label 'Sequence cluster (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1246' - Label 'Sequence cluster (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1249' - Label 'Sequence length'\n", + "Entity 'http://edamontology.org/data_1250' - Label 'Word size'\n", + "Entity 'http://edamontology.org/data_1250' - Label 'Word size'\n", + "Entity 'http://edamontology.org/data_1251' - Label 'Window size'\n", + "Entity 'http://edamontology.org/data_1251' - Label 'Window size'\n", + "Entity 'http://edamontology.org/data_1252' - Label 'Sequence length range'\n", + "Entity 'http://edamontology.org/data_1252' - Label 'Sequence length range'\n", + "Entity 'http://edamontology.org/data_1253' - Label 'Sequence information report'\n", + "Entity 'http://edamontology.org/data_1253' - Label 'Sequence information report'\n", + "Entity 'http://edamontology.org/data_1254' - Label 'Sequence property'\n", + "Entity 'http://edamontology.org/data_1255' - Label 'Sequence features'\n", + "Entity 'http://edamontology.org/data_1256' - Label 'Sequence features (comparative)'\n", + "Entity 'http://edamontology.org/data_1256' - Label 'Sequence features (comparative)'\n", + "Entity 'http://edamontology.org/data_1257' - Label 'Sequence property (protein)'\n", + "Entity 'http://edamontology.org/data_1257' - Label 'Sequence property (protein)'\n", + "Entity 'http://edamontology.org/data_1258' - Label 'Sequence property (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1258' - Label 'Sequence property (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_1259' - Label 'Sequence complexity report'\n", + "Entity 'http://edamontology.org/data_1260' - Label 'Sequence ambiguity report'\n", + "Entity 'http://edamontology.org/data_1261' - Label 'Sequence composition report'\n", + "Entity 'http://edamontology.org/data_1262' - Label 'Peptide molecular weight hits'\n", + "Entity 'http://edamontology.org/data_1263' - Label 'Base position variability plot'\n", + "Entity 'http://edamontology.org/data_1264' - Label 'Sequence composition table'\n", + "Entity 'http://edamontology.org/data_1264' - Label 'Sequence composition table'\n", + "Entity 'http://edamontology.org/data_1265' - Label 'Base frequencies table'\n", + "Entity 'http://edamontology.org/data_1265' - Label 'Base frequencies table'\n", + "Entity 'http://edamontology.org/data_1266' - Label 'Base word frequencies table'\n", + "Entity 'http://edamontology.org/data_1266' - Label 'Base word frequencies table'\n", + "Entity 'http://edamontology.org/data_1267' - Label 'Amino acid frequencies table'\n", + "Entity 'http://edamontology.org/data_1267' - Label 'Amino acid frequencies table'\n", + "Entity 'http://edamontology.org/data_1268' - Label 'Amino acid word frequencies table'\n", + "Entity 'http://edamontology.org/data_1268' - Label 'Amino acid word frequencies table'\n", + "Entity 'http://edamontology.org/data_1269' - Label 'DAS sequence feature annotation'\n", + "Entity 'http://edamontology.org/data_1269' - Label 'DAS sequence feature annotation'\n", + "Entity 'http://edamontology.org/data_1270' - Label 'Feature table'\n", + "Entity 'http://edamontology.org/data_1274' - Label 'Map'\n", + "Entity 'http://edamontology.org/data_1274' - Label 'Map'\n", + "Entity 'http://edamontology.org/data_1276' - Label 'Nucleic acid features'\n", + "Entity 'http://edamontology.org/data_1277' - Label 'Protein features'\n", + "Entity 'http://edamontology.org/data_1277' - Label 'Protein features'\n", + "Entity 'http://edamontology.org/data_1278' - Label 'Genetic map'\n", + "Entity 'http://edamontology.org/data_1279' - Label 'Sequence map'\n", + "Entity 'http://edamontology.org/data_1280' - Label 'Physical map'\n", + "Entity 'http://edamontology.org/data_1281' - Label 'Sequence signature map'\n", + "Entity 'http://edamontology.org/data_1281' - Label 'Sequence signature map'\n", + "Entity 'http://edamontology.org/data_1283' - Label 'Cytogenetic map'\n", + "Entity 'http://edamontology.org/data_1284' - Label 'DNA transduction map'\n", + "Entity 'http://edamontology.org/data_1285' - Label 'Gene map'\n", + "Entity 'http://edamontology.org/data_1286' - Label 'Plasmid map'\n", + "Entity 'http://edamontology.org/data_1288' - Label 'Genome map'\n", + "Entity 'http://edamontology.org/data_1289' - Label 'Restriction map'\n", + "Entity 'http://edamontology.org/data_1289' - Label 'Restriction map'\n", + "Entity 'http://edamontology.org/data_1290' - Label 'InterPro compact match image'\n", + "Entity 'http://edamontology.org/data_1290' - Label 'InterPro compact match image'\n", + "Entity 'http://edamontology.org/data_1291' - Label 'InterPro detailed match image'\n", + "Entity 'http://edamontology.org/data_1291' - Label 'InterPro detailed match image'\n", + "Entity 'http://edamontology.org/data_1292' - Label 'InterPro architecture image'\n", + "Entity 'http://edamontology.org/data_1292' - Label 'InterPro architecture image'\n", + "Entity 'http://edamontology.org/data_1293' - Label 'SMART protein schematic'\n", + "Entity 'http://edamontology.org/data_1293' - Label 'SMART protein schematic'\n", + "Entity 'http://edamontology.org/data_1294' - Label 'GlobPlot domain image'\n", + "Entity 'http://edamontology.org/data_1294' - Label 'GlobPlot domain image'\n", + "Entity 'http://edamontology.org/data_1298' - Label 'Sequence motif matches'\n", + "Entity 'http://edamontology.org/data_1298' - Label 'Sequence motif matches'\n", + "Entity 'http://edamontology.org/data_1299' - Label 'Sequence features (repeats)'\n", + "Entity 'http://edamontology.org/data_1299' - Label 'Sequence features (repeats)'\n", + "Entity 'http://edamontology.org/data_1300' - Label 'Gene and transcript structure (report)'\n", + "Entity 'http://edamontology.org/data_1300' - Label 'Gene and transcript structure (report)'\n", + "Entity 'http://edamontology.org/data_1301' - Label 'Mobile genetic elements'\n", + "Entity 'http://edamontology.org/data_1301' - Label 'Mobile genetic elements'\n", + "Entity 'http://edamontology.org/data_1303' - Label 'Nucleic acid features (quadruplexes)'\n", + "Entity 'http://edamontology.org/data_1303' - Label 'Nucleic acid features (quadruplexes)'\n", + "Entity 'http://edamontology.org/data_1306' - Label 'Nucleosome exclusion sequences'\n", + "Entity 'http://edamontology.org/data_1306' - Label 'Nucleosome exclusion sequences'\n", + "Entity 'http://edamontology.org/data_1309' - Label 'Gene features (exonic splicing enhancer)'\n", + "Entity 'http://edamontology.org/data_1309' - Label 'Gene features (exonic splicing enhancer)'\n", + "Entity 'http://edamontology.org/data_1310' - Label 'Nucleic acid features (microRNA)'\n", + "Entity 'http://edamontology.org/data_1310' - Label 'Nucleic acid features (microRNA)'\n", + "Entity 'http://edamontology.org/data_1313' - Label 'Coding region'\n", + "Entity 'http://edamontology.org/data_1313' - Label 'Coding region'\n", + "Entity 'http://edamontology.org/data_1314' - Label 'Gene features (SECIS element)'\n", + "Entity 'http://edamontology.org/data_1314' - Label 'Gene features (SECIS element)'\n", + "Entity 'http://edamontology.org/data_1315' - Label 'Transcription factor binding sites'\n", + "Entity 'http://edamontology.org/data_1315' - Label 'Transcription factor binding sites'\n", + "Entity 'http://edamontology.org/data_1321' - Label 'Protein features (sites)'\n", + "Entity 'http://edamontology.org/data_1321' - Label 'Protein features (sites)'\n", + "Entity 'http://edamontology.org/data_1322' - Label 'Protein features report (signal peptides)'\n", + "Entity 'http://edamontology.org/data_1322' - Label 'Protein features report (signal peptides)'\n", + "Entity 'http://edamontology.org/data_1323' - Label 'Protein features report (cleavage sites)'\n", + "Entity 'http://edamontology.org/data_1323' - Label 'Protein features report (cleavage sites)'\n", + "Entity 'http://edamontology.org/data_1324' - Label 'Protein features (post-translation modifications)'\n", + "Entity 'http://edamontology.org/data_1324' - Label 'Protein features (post-translation modifications)'\n", + "Entity 'http://edamontology.org/data_1325' - Label 'Protein features report (active sites)'\n", + "Entity 'http://edamontology.org/data_1325' - Label 'Protein features report (active sites)'\n", + "Entity 'http://edamontology.org/data_1326' - Label 'Protein features report (binding sites)'\n", + "Entity 'http://edamontology.org/data_1326' - Label 'Protein features report (binding sites)'\n", + "Entity 'http://edamontology.org/data_1327' - Label 'Protein features (epitopes)'\n", + "Entity 'http://edamontology.org/data_1327' - Label 'Protein features (epitopes)'\n", + "Entity 'http://edamontology.org/data_1328' - Label 'Protein features report (nucleic acid binding sites)'\n", + "Entity 'http://edamontology.org/data_1328' - Label 'Protein features report (nucleic acid binding sites)'\n", + "Entity 'http://edamontology.org/data_1329' - Label 'MHC Class I epitopes report'\n", + "Entity 'http://edamontology.org/data_1329' - Label 'MHC Class I epitopes report'\n", + "Entity 'http://edamontology.org/data_1330' - Label 'MHC Class II epitopes report'\n", + "Entity 'http://edamontology.org/data_1330' - Label 'MHC Class II epitopes report'\n", + "Entity 'http://edamontology.org/data_1331' - Label 'Protein features (PEST sites)'\n", + "Entity 'http://edamontology.org/data_1331' - Label 'Protein features (PEST sites)'\n", + "Entity 'http://edamontology.org/data_1338' - Label 'Sequence database hits scores list'\n", + "Entity 'http://edamontology.org/data_1338' - Label 'Sequence database hits scores list'\n", + "Entity 'http://edamontology.org/data_1339' - Label 'Sequence database hits alignments list'\n", + "Entity 'http://edamontology.org/data_1339' - Label 'Sequence database hits alignments list'\n", + "Entity 'http://edamontology.org/data_1340' - Label 'Sequence database hits evaluation data'\n", + "Entity 'http://edamontology.org/data_1340' - Label 'Sequence database hits evaluation data'\n", + "Entity 'http://edamontology.org/data_1344' - Label 'MEME motif alphabet'\n", + "Entity 'http://edamontology.org/data_1344' - Label 'MEME motif alphabet'\n", + "Entity 'http://edamontology.org/data_1345' - Label 'MEME background frequencies file'\n", + "Entity 'http://edamontology.org/data_1345' - Label 'MEME background frequencies file'\n", + "Entity 'http://edamontology.org/data_1346' - Label 'MEME motifs directive file'\n", + "Entity 'http://edamontology.org/data_1346' - Label 'MEME motifs directive file'\n", + "Entity 'http://edamontology.org/data_1347' - Label 'Dirichlet distribution'\n", + "Entity 'http://edamontology.org/data_1348' - Label 'HMM emission and transition counts'\n", + "Entity 'http://edamontology.org/data_1348' - Label 'HMM emission and transition counts'\n", + "Entity 'http://edamontology.org/data_1348' - Label 'HMM emission and transition counts'\n", + "Entity 'http://edamontology.org/data_1352' - Label 'Regular expression'\n", + "Entity 'http://edamontology.org/data_1353' - Label 'Sequence motif'\n", + "Entity 'http://edamontology.org/data_1353' - Label 'Sequence motif'\n", + "Entity 'http://edamontology.org/data_1354' - Label 'Sequence profile'\n", + "Entity 'http://edamontology.org/data_1354' - Label 'Sequence profile'\n", + "Entity 'http://edamontology.org/data_1355' - Label 'Protein signature'\n", + "Entity 'http://edamontology.org/data_1358' - Label 'Prosite nucleotide pattern'\n", + "Entity 'http://edamontology.org/data_1358' - Label 'Prosite nucleotide pattern'\n", + "Entity 'http://edamontology.org/data_1359' - Label 'Prosite protein pattern'\n", + "Entity 'http://edamontology.org/data_1359' - Label 'Prosite protein pattern'\n", + "Entity 'http://edamontology.org/data_1361' - Label 'Position frequency matrix'\n", + "Entity 'http://edamontology.org/data_1362' - Label 'Position weight matrix'\n", + "Entity 'http://edamontology.org/data_1363' - Label 'Information content matrix'\n", + "Entity 'http://edamontology.org/data_1364' - Label 'Hidden Markov model'\n", + "Entity 'http://edamontology.org/data_1365' - Label 'Fingerprint'\n", + "Entity 'http://edamontology.org/data_1368' - Label 'Domainatrix signature'\n", + "Entity 'http://edamontology.org/data_1368' - Label 'Domainatrix signature'\n", + "Entity 'http://edamontology.org/data_1371' - Label 'HMMER NULL hidden Markov model'\n", + "Entity 'http://edamontology.org/data_1371' - Label 'HMMER NULL hidden Markov model'\n", + "Entity 'http://edamontology.org/data_1372' - Label 'Protein family signature'\n", + "Entity 'http://edamontology.org/data_1372' - Label 'Protein family signature'\n", + "Entity 'http://edamontology.org/data_1373' - Label 'Protein domain signature'\n", + "Entity 'http://edamontology.org/data_1373' - Label 'Protein domain signature'\n", + "Entity 'http://edamontology.org/data_1374' - Label 'Protein region signature'\n", + "Entity 'http://edamontology.org/data_1374' - Label 'Protein region signature'\n", + "Entity 'http://edamontology.org/data_1375' - Label 'Protein repeat signature'\n", + "Entity 'http://edamontology.org/data_1375' - Label 'Protein repeat signature'\n", + "Entity 'http://edamontology.org/data_1376' - Label 'Protein site signature'\n", + "Entity 'http://edamontology.org/data_1376' - Label 'Protein site signature'\n", + "Entity 'http://edamontology.org/data_1377' - Label 'Protein conserved site signature'\n", + "Entity 'http://edamontology.org/data_1377' - Label 'Protein conserved site signature'\n", + "Entity 'http://edamontology.org/data_1378' - Label 'Protein active site signature'\n", + "Entity 'http://edamontology.org/data_1378' - Label 'Protein active site signature'\n", + "Entity 'http://edamontology.org/data_1379' - Label 'Protein binding site signature'\n", + "Entity 'http://edamontology.org/data_1379' - Label 'Protein binding site signature'\n", + "Entity 'http://edamontology.org/data_1380' - Label 'Protein post-translational modification signature'\n", + "Entity 'http://edamontology.org/data_1380' - Label 'Protein post-translational modification signature'\n", + "Entity 'http://edamontology.org/data_1381' - Label 'Pair sequence alignment'\n", + "Entity 'http://edamontology.org/data_1382' - Label 'Sequence alignment (multiple)'\n", + "Entity 'http://edamontology.org/data_1382' - Label 'Sequence alignment (multiple)'\n", + "Entity 'http://edamontology.org/data_1383' - Label 'Nucleic acid sequence alignment'\n", + "Entity 'http://edamontology.org/data_1384' - Label 'Protein sequence alignment'\n", + "Entity 'http://edamontology.org/data_1385' - Label 'Hybrid sequence alignment'\n", + "Entity 'http://edamontology.org/data_1386' - Label 'Sequence alignment (nucleic acid pair)'\n", + "Entity 'http://edamontology.org/data_1386' - Label 'Sequence alignment (nucleic acid pair)'\n", + "Entity 'http://edamontology.org/data_1386' - Label 'Sequence alignment (nucleic acid pair)'\n", + "Entity 'http://edamontology.org/data_1387' - Label 'Sequence alignment (protein pair)'\n", + "Entity 'http://edamontology.org/data_1387' - Label 'Sequence alignment (protein pair)'\n", + "Entity 'http://edamontology.org/data_1387' - Label 'Sequence alignment (protein pair)'\n", + "Entity 'http://edamontology.org/data_1388' - Label 'Hybrid sequence alignment (pair)'\n", + "Entity 'http://edamontology.org/data_1388' - Label 'Hybrid sequence alignment (pair)'\n", + "Entity 'http://edamontology.org/data_1389' - Label 'Multiple nucleotide sequence alignment'\n", + "Entity 'http://edamontology.org/data_1389' - Label 'Multiple nucleotide sequence alignment'\n", + "Entity 'http://edamontology.org/data_1390' - Label 'Multiple protein sequence alignment'\n", + "Entity 'http://edamontology.org/data_1390' - Label 'Multiple protein sequence alignment'\n", + "Entity 'http://edamontology.org/data_1394' - Label 'Alignment score or penalty'\n", + "Entity 'http://edamontology.org/data_1395' - Label 'Score end gaps control'\n", + "Entity 'http://edamontology.org/data_1395' - Label 'Score end gaps control'\n", + "Entity 'http://edamontology.org/data_1396' - Label 'Aligned sequence order'\n", + "Entity 'http://edamontology.org/data_1396' - Label 'Aligned sequence order'\n", + "Entity 'http://edamontology.org/data_1397' - Label 'Gap opening penalty'\n", + "Entity 'http://edamontology.org/data_1398' - Label 'Gap extension penalty'\n", + "Entity 'http://edamontology.org/data_1399' - Label 'Gap separation penalty'\n", + "Entity 'http://edamontology.org/data_1400' - Label 'Terminal gap penalty'\n", + "Entity 'http://edamontology.org/data_1400' - Label 'Terminal gap penalty'\n", + "Entity 'http://edamontology.org/data_1400' - Label 'Terminal gap penalty'\n", + "Entity 'http://edamontology.org/data_1401' - Label 'Match reward score'\n", + "Entity 'http://edamontology.org/data_1402' - Label 'Mismatch penalty score'\n", + "Entity 'http://edamontology.org/data_1403' - Label 'Drop off score'\n", + "Entity 'http://edamontology.org/data_1404' - Label 'Gap opening penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1404' - Label 'Gap opening penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1405' - Label 'Gap opening penalty (float)'\n", + "Entity 'http://edamontology.org/data_1405' - Label 'Gap opening penalty (float)'\n", + "Entity 'http://edamontology.org/data_1406' - Label 'Gap extension penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1406' - Label 'Gap extension penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1407' - Label 'Gap extension penalty (float)'\n", + "Entity 'http://edamontology.org/data_1407' - Label 'Gap extension penalty (float)'\n", + "Entity 'http://edamontology.org/data_1408' - Label 'Gap separation penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1408' - Label 'Gap separation penalty (integer)'\n", + "Entity 'http://edamontology.org/data_1409' - Label 'Gap separation penalty (float)'\n", + "Entity 'http://edamontology.org/data_1409' - Label 'Gap separation penalty (float)'\n", + "Entity 'http://edamontology.org/data_1410' - Label 'Terminal gap opening penalty'\n", + "Entity 'http://edamontology.org/data_1411' - Label 'Terminal gap extension penalty'\n", + "Entity 'http://edamontology.org/data_1412' - Label 'Sequence identity'\n", + "Entity 'http://edamontology.org/data_1413' - Label 'Sequence similarity'\n", + "Entity 'http://edamontology.org/data_1414' - Label 'Sequence alignment metadata (quality report)'\n", + "Entity 'http://edamontology.org/data_1414' - Label 'Sequence alignment metadata (quality report)'\n", + "Entity 'http://edamontology.org/data_1415' - Label 'Sequence alignment report (site conservation)'\n", + "Entity 'http://edamontology.org/data_1415' - Label 'Sequence alignment report (site conservation)'\n", + "Entity 'http://edamontology.org/data_1416' - Label 'Sequence alignment report (site correlation)'\n", + "Entity 'http://edamontology.org/data_1416' - Label 'Sequence alignment report (site correlation)'\n", + "Entity 'http://edamontology.org/data_1417' - Label 'Sequence-profile alignment (Domainatrix signature)'\n", + "Entity 'http://edamontology.org/data_1417' - Label 'Sequence-profile alignment (Domainatrix signature)'\n", + "Entity 'http://edamontology.org/data_1418' - Label 'Sequence-profile alignment (HMM)'\n", + "Entity 'http://edamontology.org/data_1418' - Label 'Sequence-profile alignment (HMM)'\n", + "Entity 'http://edamontology.org/data_1420' - Label 'Sequence-profile alignment (fingerprint)'\n", + "Entity 'http://edamontology.org/data_1420' - Label 'Sequence-profile alignment (fingerprint)'\n", + "Entity 'http://edamontology.org/data_1426' - Label 'Phylogenetic continuous quantitative data'\n", + "Entity 'http://edamontology.org/data_1427' - Label 'Phylogenetic discrete data'\n", + "Entity 'http://edamontology.org/data_1428' - Label 'Phylogenetic character cliques'\n", + "Entity 'http://edamontology.org/data_1429' - Label 'Phylogenetic invariants'\n", + "Entity 'http://edamontology.org/data_1429' - Label 'Phylogenetic invariants'\n", + "Entity 'http://edamontology.org/data_1438' - Label 'Phylogenetic report'\n", + "Entity 'http://edamontology.org/data_1438' - Label 'Phylogenetic report'\n", + "Entity 'http://edamontology.org/data_1439' - Label 'DNA substitution model'\n", + "Entity 'http://edamontology.org/data_1440' - Label 'Phylogenetic tree report (tree shape)'\n", + "Entity 'http://edamontology.org/data_1440' - Label 'Phylogenetic tree report (tree shape)'\n", + "Entity 'http://edamontology.org/data_1441' - Label 'Phylogenetic tree report (tree evaluation)'\n", + "Entity 'http://edamontology.org/data_1441' - Label 'Phylogenetic tree report (tree evaluation)'\n", + "Entity 'http://edamontology.org/data_1442' - Label 'Phylogenetic tree distances'\n", + "Entity 'http://edamontology.org/data_1443' - Label 'Phylogenetic tree report (tree stratigraphic)'\n", + "Entity 'http://edamontology.org/data_1443' - Label 'Phylogenetic tree report (tree stratigraphic)'\n", + "Entity 'http://edamontology.org/data_1444' - Label 'Phylogenetic character contrasts'\n", + "Entity 'http://edamontology.org/data_1446' - Label 'Comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1446' - Label 'Comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1447' - Label 'Comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1447' - Label 'Comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1448' - Label 'Comparison matrix (nucleotide)'\n", + "Entity 'http://edamontology.org/data_1449' - Label 'Comparison matrix (amino acid)'\n", + "Entity 'http://edamontology.org/data_1449' - Label 'Comparison matrix (amino acid)'\n", + "Entity 'http://edamontology.org/data_1450' - Label 'Nucleotide comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1450' - Label 'Nucleotide comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1451' - Label 'Nucleotide comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1451' - Label 'Nucleotide comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1452' - Label 'Amino acid comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1452' - Label 'Amino acid comparison matrix (integers)'\n", + "Entity 'http://edamontology.org/data_1453' - Label 'Amino acid comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1453' - Label 'Amino acid comparison matrix (floats)'\n", + "Entity 'http://edamontology.org/data_1459' - Label 'Nucleic acid structure'\n", + "Entity 'http://edamontology.org/data_1459' - Label 'Nucleic acid structure'\n", + "Entity 'http://edamontology.org/data_1460' - Label 'Protein structure'\n", + "Entity 'http://edamontology.org/data_1460' - Label 'Protein structure'\n", + "Entity 'http://edamontology.org/data_1461' - Label 'Protein-ligand complex'\n", + "Entity 'http://edamontology.org/data_1462' - Label 'Carbohydrate structure'\n", + "Entity 'http://edamontology.org/data_1462' - Label 'Carbohydrate structure'\n", + "Entity 'http://edamontology.org/data_1462' - Label 'Carbohydrate structure'\n", + "Entity 'http://edamontology.org/data_1463' - Label 'Small molecule structure'\n", + "Entity 'http://edamontology.org/data_1463' - Label 'Small molecule structure'\n", + "Entity 'http://edamontology.org/data_1464' - Label 'DNA structure'\n", + "Entity 'http://edamontology.org/data_1465' - Label 'RNA structure'\n", + "Entity 'http://edamontology.org/data_1465' - Label 'RNA structure'\n", + "Entity 'http://edamontology.org/data_1466' - Label 'tRNA structure'\n", + "Entity 'http://edamontology.org/data_1467' - Label 'Protein chain'\n", + "Entity 'http://edamontology.org/data_1468' - Label 'Protein domain'\n", + "Entity 'http://edamontology.org/data_1468' - Label 'Protein domain'\n", + "Entity 'http://edamontology.org/data_1469' - Label 'Protein structure (all atoms)'\n", + "Entity 'http://edamontology.org/data_1469' - Label 'Protein structure (all atoms)'\n", + "Entity 'http://edamontology.org/data_1470' - Label 'C-alpha trace'\n", + "Entity 'http://edamontology.org/data_1471' - Label 'Protein chain (all atoms)'\n", + "Entity 'http://edamontology.org/data_1471' - Label 'Protein chain (all atoms)'\n", + "Entity 'http://edamontology.org/data_1472' - Label 'Protein chain (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1472' - Label 'Protein chain (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1473' - Label 'Protein domain (all atoms)'\n", + "Entity 'http://edamontology.org/data_1473' - Label 'Protein domain (all atoms)'\n", + "Entity 'http://edamontology.org/data_1474' - Label 'Protein domain (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1474' - Label 'Protein domain (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1479' - Label 'Structure alignment (pair)'\n", + "Entity 'http://edamontology.org/data_1480' - Label 'Structure alignment (multiple)'\n", + "Entity 'http://edamontology.org/data_1480' - Label 'Structure alignment (multiple)'\n", + "Entity 'http://edamontology.org/data_1481' - Label 'Protein structure alignment'\n", + "Entity 'http://edamontology.org/data_1482' - Label 'Nucleic acid structure alignment'\n", + "Entity 'http://edamontology.org/data_1483' - Label 'Structure alignment (protein pair)'\n", + "Entity 'http://edamontology.org/data_1483' - Label 'Structure alignment (protein pair)'\n", + "Entity 'http://edamontology.org/data_1483' - Label 'Structure alignment (protein pair)'\n", + "Entity 'http://edamontology.org/data_1484' - Label 'Multiple protein tertiary structure alignment'\n", + "Entity 'http://edamontology.org/data_1484' - Label 'Multiple protein tertiary structure alignment'\n", + "Entity 'http://edamontology.org/data_1485' - Label 'Structure alignment (protein all atoms)'\n", + "Entity 'http://edamontology.org/data_1485' - Label 'Structure alignment (protein all atoms)'\n", + "Entity 'http://edamontology.org/data_1486' - Label 'Structure alignment (protein C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1486' - Label 'Structure alignment (protein C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1487' - Label 'Pairwise protein tertiary structure alignment (all atoms)'\n", + "Entity 'http://edamontology.org/data_1487' - Label 'Pairwise protein tertiary structure alignment (all atoms)'\n", + "Entity 'http://edamontology.org/data_1488' - Label 'Pairwise protein tertiary structure alignment (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1488' - Label 'Pairwise protein tertiary structure alignment (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1489' - Label 'Multiple protein tertiary structure alignment (all atoms)'\n", + "Entity 'http://edamontology.org/data_1489' - Label 'Multiple protein tertiary structure alignment (all atoms)'\n", + "Entity 'http://edamontology.org/data_1490' - Label 'Multiple protein tertiary structure alignment (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1490' - Label 'Multiple protein tertiary structure alignment (C-alpha atoms)'\n", + "Entity 'http://edamontology.org/data_1491' - Label 'Structure alignment (nucleic acid pair)'\n", + "Entity 'http://edamontology.org/data_1491' - Label 'Structure alignment (nucleic acid pair)'\n", + "Entity 'http://edamontology.org/data_1491' - Label 'Structure alignment (nucleic acid pair)'\n", + "Entity 'http://edamontology.org/data_1492' - Label 'Multiple nucleic acid tertiary structure alignment'\n", + "Entity 'http://edamontology.org/data_1492' - Label 'Multiple nucleic acid tertiary structure alignment'\n", + "Entity 'http://edamontology.org/data_1493' - Label 'RNA structure alignment'\n", + "Entity 'http://edamontology.org/data_1494' - Label 'Structural transformation matrix'\n", + "Entity 'http://edamontology.org/data_1495' - Label 'DaliLite hit table'\n", + "Entity 'http://edamontology.org/data_1495' - Label 'DaliLite hit table'\n", + "Entity 'http://edamontology.org/data_1496' - Label 'Molecular similarity score'\n", + "Entity 'http://edamontology.org/data_1496' - Label 'Molecular similarity score'\n", + "Entity 'http://edamontology.org/data_1497' - Label 'Root-mean-square deviation'\n", + "Entity 'http://edamontology.org/data_1498' - Label 'Tanimoto similarity score'\n", + "Entity 'http://edamontology.org/data_1499' - Label '3D-1D scoring matrix'\n", + "Entity 'http://edamontology.org/data_1501' - Label 'Amino acid index'\n", + "Entity 'http://edamontology.org/data_1501' - Label 'Amino acid index'\n", + "Entity 'http://edamontology.org/data_1502' - Label 'Amino acid index (chemical classes)'\n", + "Entity 'http://edamontology.org/data_1503' - Label 'Amino acid pair-wise contact potentials'\n", + "Entity 'http://edamontology.org/data_1505' - Label 'Amino acid index (molecular weight)'\n", + "Entity 'http://edamontology.org/data_1506' - Label 'Amino acid index (hydropathy)'\n", + "Entity 'http://edamontology.org/data_1507' - Label 'Amino acid index (White-Wimley data)'\n", + "Entity 'http://edamontology.org/data_1508' - Label 'Amino acid index (van der Waals radii)'\n", + "Entity 'http://edamontology.org/data_1509' - Label 'Enzyme report'\n", + "Entity 'http://edamontology.org/data_1509' - Label 'Enzyme report'\n", + "Entity 'http://edamontology.org/data_1517' - Label 'Restriction enzyme report'\n", + "Entity 'http://edamontology.org/data_1517' - Label 'Restriction enzyme report'\n", + "Entity 'http://edamontology.org/data_1519' - Label 'Peptide molecular weights'\n", + "Entity 'http://edamontology.org/data_1520' - Label 'Peptide hydrophobic moment'\n", + "Entity 'http://edamontology.org/data_1521' - Label 'Protein aliphatic index'\n", + "Entity 'http://edamontology.org/data_1522' - Label 'Protein sequence hydropathy plot'\n", + "Entity 'http://edamontology.org/data_1523' - Label 'Protein charge plot'\n", + "Entity 'http://edamontology.org/data_1524' - Label 'Protein solubility'\n", + "Entity 'http://edamontology.org/data_1525' - Label 'Protein crystallizability'\n", + "Entity 'http://edamontology.org/data_1526' - Label 'Protein globularity'\n", + "Entity 'http://edamontology.org/data_1527' - Label 'Protein titration curve'\n", + "Entity 'http://edamontology.org/data_1527' - Label 'Protein titration curve'\n", + "Entity 'http://edamontology.org/data_1528' - Label 'Protein isoelectric point'\n", + "Entity 'http://edamontology.org/data_1529' - Label 'Protein pKa value'\n", + "Entity 'http://edamontology.org/data_1530' - Label 'Protein hydrogen exchange rate'\n", + "Entity 'http://edamontology.org/data_1531' - Label 'Protein extinction coefficient'\n", + "Entity 'http://edamontology.org/data_1532' - Label 'Protein optical density'\n", + "Entity 'http://edamontology.org/data_1533' - Label 'Protein subcellular localisation'\n", + "Entity 'http://edamontology.org/data_1533' - Label 'Protein subcellular localisation'\n", + "Entity 'http://edamontology.org/data_1534' - Label 'Peptide immunogenicity data'\n", + "Entity 'http://edamontology.org/data_1536' - Label 'MHC peptide immunogenicity report'\n", + "Entity 'http://edamontology.org/data_1536' - Label 'MHC peptide immunogenicity report'\n", + "Entity 'http://edamontology.org/data_1537' - Label 'Protein structure report'\n", + "Entity 'http://edamontology.org/data_1537' - Label 'Protein structure report'\n", + "Entity 'http://edamontology.org/data_1539' - Label 'Protein structural quality report'\n", + "Entity 'http://edamontology.org/data_1540' - Label 'Protein non-covalent interactions report'\n", + "Entity 'http://edamontology.org/data_1540' - Label 'Protein non-covalent interactions report'\n", + "Entity 'http://edamontology.org/data_1541' - Label 'Protein flexibility or motion report'\n", + "Entity 'http://edamontology.org/data_1541' - Label 'Protein flexibility or motion report'\n", + "Entity 'http://edamontology.org/data_1542' - Label 'Protein solvent accessibility'\n", + "Entity 'http://edamontology.org/data_1543' - Label 'Protein surface report'\n", + "Entity 'http://edamontology.org/data_1543' - Label 'Protein surface report'\n", + "Entity 'http://edamontology.org/data_1544' - Label 'Ramachandran plot'\n", + "Entity 'http://edamontology.org/data_1545' - Label 'Protein dipole moment'\n", + "Entity 'http://edamontology.org/data_1546' - Label 'Protein distance matrix'\n", + "Entity 'http://edamontology.org/data_1546' - Label 'Protein distance matrix'\n", + "Entity 'http://edamontology.org/data_1547' - Label 'Protein contact map'\n", + "Entity 'http://edamontology.org/data_1548' - Label 'Protein residue 3D cluster'\n", + "Entity 'http://edamontology.org/data_1549' - Label 'Protein hydrogen bonds'\n", + "Entity 'http://edamontology.org/data_1550' - Label 'Protein non-canonical interactions'\n", + "Entity 'http://edamontology.org/data_1550' - Label 'Protein non-canonical interactions'\n", + "Entity 'http://edamontology.org/data_1553' - Label 'CATH node'\n", + "Entity 'http://edamontology.org/data_1553' - Label 'CATH node'\n", + "Entity 'http://edamontology.org/data_1554' - Label 'SCOP node'\n", + "Entity 'http://edamontology.org/data_1554' - Label 'SCOP node'\n", + "Entity 'http://edamontology.org/data_1555' - Label 'EMBASSY domain classification'\n", + "Entity 'http://edamontology.org/data_1555' - Label 'EMBASSY domain classification'\n", + "Entity 'http://edamontology.org/data_1556' - Label 'CATH class'\n", + "Entity 'http://edamontology.org/data_1556' - Label 'CATH class'\n", + "Entity 'http://edamontology.org/data_1557' - Label 'CATH architecture'\n", + "Entity 'http://edamontology.org/data_1557' - Label 'CATH architecture'\n", + "Entity 'http://edamontology.org/data_1558' - Label 'CATH topology'\n", + "Entity 'http://edamontology.org/data_1558' - Label 'CATH topology'\n", + "Entity 'http://edamontology.org/data_1559' - Label 'CATH homologous superfamily'\n", + "Entity 'http://edamontology.org/data_1559' - Label 'CATH homologous superfamily'\n", + "Entity 'http://edamontology.org/data_1560' - Label 'CATH structurally similar group'\n", + "Entity 'http://edamontology.org/data_1560' - Label 'CATH structurally similar group'\n", + "Entity 'http://edamontology.org/data_1561' - Label 'CATH functional category'\n", + "Entity 'http://edamontology.org/data_1561' - Label 'CATH functional category'\n", + "Entity 'http://edamontology.org/data_1564' - Label 'Protein fold recognition report'\n", + "Entity 'http://edamontology.org/data_1564' - Label 'Protein fold recognition report'\n", + "Entity 'http://edamontology.org/data_1565' - Label 'Protein-protein interaction report'\n", + "Entity 'http://edamontology.org/data_1565' - Label 'Protein-protein interaction report'\n", + "Entity 'http://edamontology.org/data_1566' - Label 'Protein-ligand interaction report'\n", + "Entity 'http://edamontology.org/data_1567' - Label 'Protein-nucleic acid interactions report'\n", + "Entity 'http://edamontology.org/data_1567' - Label 'Protein-nucleic acid interactions report'\n", + "Entity 'http://edamontology.org/data_1583' - Label 'Nucleic acid melting profile'\n", + "Entity 'http://edamontology.org/data_1584' - Label 'Nucleic acid enthalpy'\n", + "Entity 'http://edamontology.org/data_1585' - Label 'Nucleic acid entropy'\n", + "Entity 'http://edamontology.org/data_1586' - Label 'Nucleic acid melting temperature'\n", + "Entity 'http://edamontology.org/data_1586' - Label 'Nucleic acid melting temperature'\n", + "Entity 'http://edamontology.org/data_1587' - Label 'Nucleic acid stitch profile'\n", + "Entity 'http://edamontology.org/data_1587' - Label 'Nucleic acid stitch profile'\n", + "Entity 'http://edamontology.org/data_1588' - Label 'DNA base pair stacking energies data'\n", + "Entity 'http://edamontology.org/data_1589' - Label 'DNA base pair twist angle data'\n", + "Entity 'http://edamontology.org/data_1590' - Label 'DNA base trimer roll angles data'\n", + "Entity 'http://edamontology.org/data_1591' - Label 'Vienna RNA parameters'\n", + "Entity 'http://edamontology.org/data_1591' - Label 'Vienna RNA parameters'\n", + "Entity 'http://edamontology.org/data_1592' - Label 'Vienna RNA structure constraints'\n", + "Entity 'http://edamontology.org/data_1592' - Label 'Vienna RNA structure constraints'\n", + "Entity 'http://edamontology.org/data_1593' - Label 'Vienna RNA concentration data'\n", + "Entity 'http://edamontology.org/data_1593' - Label 'Vienna RNA concentration data'\n", + "Entity 'http://edamontology.org/data_1594' - Label 'Vienna RNA calculated energy'\n", + "Entity 'http://edamontology.org/data_1594' - Label 'Vienna RNA calculated energy'\n", + "Entity 'http://edamontology.org/data_1595' - Label 'Base pairing probability matrix dotplot'\n", + "Entity 'http://edamontology.org/data_1595' - Label 'Base pairing probability matrix dotplot'\n", + "Entity 'http://edamontology.org/data_1596' - Label 'Nucleic acid folding report'\n", + "Entity 'http://edamontology.org/data_1597' - Label 'Codon usage table'\n", + "Entity 'http://edamontology.org/data_1597' - Label 'Codon usage table'\n", + "Entity 'http://edamontology.org/data_1598' - Label 'Genetic code'\n", + "Entity 'http://edamontology.org/data_1599' - Label 'Codon adaptation index'\n", + "Entity 'http://edamontology.org/data_1599' - Label 'Codon adaptation index'\n", + "Entity 'http://edamontology.org/data_1600' - Label 'Codon usage bias plot'\n", + "Entity 'http://edamontology.org/data_1601' - Label 'Nc statistic'\n", + "Entity 'http://edamontology.org/data_1601' - Label 'Nc statistic'\n", + "Entity 'http://edamontology.org/data_1602' - Label 'Codon usage fraction difference'\n", + "Entity 'http://edamontology.org/data_1621' - Label 'Pharmacogenomic test report'\n", + "Entity 'http://edamontology.org/data_1622' - Label 'Disease report'\n", + "Entity 'http://edamontology.org/data_1622' - Label 'Disease report'\n", + "Entity 'http://edamontology.org/data_1634' - Label 'Linkage disequilibrium (report)'\n", + "Entity 'http://edamontology.org/data_1634' - Label 'Linkage disequilibrium (report)'\n", + "Entity 'http://edamontology.org/data_1636' - Label 'Heat map'\n", + "Entity 'http://edamontology.org/data_1636' - Label 'Heat map'\n", + "Entity 'http://edamontology.org/data_1642' - Label 'Affymetrix probe sets library file'\n", + "Entity 'http://edamontology.org/data_1642' - Label 'Affymetrix probe sets library file'\n", + "Entity 'http://edamontology.org/data_1643' - Label 'Affymetrix probe sets information library file'\n", + "Entity 'http://edamontology.org/data_1643' - Label 'Affymetrix probe sets information library file'\n", + "Entity 'http://edamontology.org/data_1646' - Label 'Molecular weights standard fingerprint'\n", + "Entity 'http://edamontology.org/data_1646' - Label 'Molecular weights standard fingerprint'\n", + "Entity 'http://edamontology.org/data_1656' - Label 'Metabolic pathway report'\n", + "Entity 'http://edamontology.org/data_1656' - Label 'Metabolic pathway report'\n", + "Entity 'http://edamontology.org/data_1657' - Label 'Genetic information processing pathway report'\n", + "Entity 'http://edamontology.org/data_1657' - Label 'Genetic information processing pathway report'\n", + "Entity 'http://edamontology.org/data_1658' - Label 'Environmental information processing pathway report'\n", + "Entity 'http://edamontology.org/data_1658' - Label 'Environmental information processing pathway report'\n", + "Entity 'http://edamontology.org/data_1659' - Label 'Signal transduction pathway report'\n", + "Entity 'http://edamontology.org/data_1659' - Label 'Signal transduction pathway report'\n", + "Entity 'http://edamontology.org/data_1660' - Label 'Cellular process pathways report'\n", + "Entity 'http://edamontology.org/data_1660' - Label 'Cellular process pathways report'\n", + "Entity 'http://edamontology.org/data_1661' - Label 'Disease pathway or network report'\n", + "Entity 'http://edamontology.org/data_1661' - Label 'Disease pathway or network report'\n", + "Entity 'http://edamontology.org/data_1662' - Label 'Drug structure relationship map'\n", + "Entity 'http://edamontology.org/data_1662' - Label 'Drug structure relationship map'\n", + "Entity 'http://edamontology.org/data_1663' - Label 'Protein interaction networks'\n", + "Entity 'http://edamontology.org/data_1663' - Label 'Protein interaction networks'\n", + "Entity 'http://edamontology.org/data_1664' - Label 'MIRIAM datatype'\n", + "Entity 'http://edamontology.org/data_1664' - Label 'MIRIAM datatype'\n", + "Entity 'http://edamontology.org/data_1667' - Label 'E-value'\n", + "Entity 'http://edamontology.org/data_1668' - Label 'Z-value'\n", + "Entity 'http://edamontology.org/data_1669' - Label 'P-value'\n", + "Entity 'http://edamontology.org/data_1670' - Label 'Database version information'\n", + "Entity 'http://edamontology.org/data_1670' - Label 'Database version information'\n", + "Entity 'http://edamontology.org/data_1671' - Label 'Tool version information'\n", + "Entity 'http://edamontology.org/data_1671' - Label 'Tool version information'\n", + "Entity 'http://edamontology.org/data_1672' - Label 'CATH version information'\n", + "Entity 'http://edamontology.org/data_1672' - Label 'CATH version information'\n", + "Entity 'http://edamontology.org/data_1673' - Label 'Swiss-Prot to PDB mapping'\n", + "Entity 'http://edamontology.org/data_1673' - Label 'Swiss-Prot to PDB mapping'\n", + "Entity 'http://edamontology.org/data_1674' - Label 'Sequence database cross-references'\n", + "Entity 'http://edamontology.org/data_1674' - Label 'Sequence database cross-references'\n", + "Entity 'http://edamontology.org/data_1675' - Label 'Job status'\n", + "Entity 'http://edamontology.org/data_1675' - Label 'Job status'\n", + "Entity 'http://edamontology.org/data_1676' - Label 'Job ID'\n", + "Entity 'http://edamontology.org/data_1676' - Label 'Job ID'\n", + "Entity 'http://edamontology.org/data_1677' - Label 'Job type'\n", + "Entity 'http://edamontology.org/data_1677' - Label 'Job type'\n", + "Entity 'http://edamontology.org/data_1678' - Label 'Tool log'\n", + "Entity 'http://edamontology.org/data_1678' - Label 'Tool log'\n", + "Entity 'http://edamontology.org/data_1679' - Label 'DaliLite log file'\n", + "Entity 'http://edamontology.org/data_1679' - Label 'DaliLite log file'\n", + "Entity 'http://edamontology.org/data_1680' - Label 'STRIDE log file'\n", + "Entity 'http://edamontology.org/data_1680' - Label 'STRIDE log file'\n", + "Entity 'http://edamontology.org/data_1681' - Label 'NACCESS log file'\n", + "Entity 'http://edamontology.org/data_1681' - Label 'NACCESS log file'\n", + "Entity 'http://edamontology.org/data_1682' - Label 'EMBOSS wordfinder log file'\n", + "Entity 'http://edamontology.org/data_1682' - Label 'EMBOSS wordfinder log file'\n", + "Entity 'http://edamontology.org/data_1683' - Label 'EMBOSS domainatrix log file'\n", + "Entity 'http://edamontology.org/data_1683' - Label 'EMBOSS domainatrix log file'\n", + "Entity 'http://edamontology.org/data_1684' - Label 'EMBOSS sites log file'\n", + "Entity 'http://edamontology.org/data_1684' - Label 'EMBOSS sites log file'\n", + "Entity 'http://edamontology.org/data_1685' - Label 'EMBOSS supermatcher error file'\n", + "Entity 'http://edamontology.org/data_1685' - Label 'EMBOSS supermatcher error file'\n", + "Entity 'http://edamontology.org/data_1686' - Label 'EMBOSS megamerger log file'\n", + "Entity 'http://edamontology.org/data_1686' - Label 'EMBOSS megamerger log file'\n", + "Entity 'http://edamontology.org/data_1687' - Label 'EMBOSS whichdb log file'\n", + "Entity 'http://edamontology.org/data_1687' - Label 'EMBOSS whichdb log file'\n", + "Entity 'http://edamontology.org/data_1688' - Label 'EMBOSS vectorstrip log file'\n", + "Entity 'http://edamontology.org/data_1688' - Label 'EMBOSS vectorstrip log file'\n", + "Entity 'http://edamontology.org/data_1689' - Label 'Username'\n", + "Entity 'http://edamontology.org/data_1690' - Label 'Password'\n", + "Entity 'http://edamontology.org/data_1691' - Label 'Email address'\n", + "Entity 'http://edamontology.org/data_1692' - Label 'Person name'\n", + "Entity 'http://edamontology.org/data_1693' - Label 'Number of iterations'\n", + "Entity 'http://edamontology.org/data_1693' - Label 'Number of iterations'\n", + "Entity 'http://edamontology.org/data_1694' - Label 'Number of output entities'\n", + "Entity 'http://edamontology.org/data_1694' - Label 'Number of output entities'\n", + "Entity 'http://edamontology.org/data_1695' - Label 'Hit sort order'\n", + "Entity 'http://edamontology.org/data_1695' - Label 'Hit sort order'\n", + "Entity 'http://edamontology.org/data_1696' - Label 'Drug report'\n", + "Entity 'http://edamontology.org/data_1696' - Label 'Drug report'\n", + "Entity 'http://edamontology.org/data_1707' - Label 'Phylogenetic tree image'\n", + "Entity 'http://edamontology.org/data_1708' - Label 'RNA secondary structure image'\n", + "Entity 'http://edamontology.org/data_1709' - Label 'Protein secondary structure image'\n", + "Entity 'http://edamontology.org/data_1710' - Label 'Structure image'\n", + "Entity 'http://edamontology.org/data_1711' - Label 'Sequence alignment image'\n", + "Entity 'http://edamontology.org/data_1712' - Label 'Chemical structure image'\n", + "Entity 'http://edamontology.org/data_1713' - Label 'Fate map'\n", + "Entity 'http://edamontology.org/data_1713' - Label 'Fate map'\n", + "Entity 'http://edamontology.org/data_1714' - Label 'Microarray spots image'\n", + "Entity 'http://edamontology.org/data_1714' - Label 'Microarray spots image'\n", + "Entity 'http://edamontology.org/data_1715' - Label 'BioPax term'\n", + "Entity 'http://edamontology.org/data_1715' - Label 'BioPax term'\n", + "Entity 'http://edamontology.org/data_1716' - Label 'GO'\n", + "Entity 'http://edamontology.org/data_1716' - Label 'GO'\n", + "Entity 'http://edamontology.org/data_1717' - Label 'MeSH'\n", + "Entity 'http://edamontology.org/data_1717' - Label 'MeSH'\n", + "Entity 'http://edamontology.org/data_1718' - Label 'HGNC'\n", + "Entity 'http://edamontology.org/data_1718' - Label 'HGNC'\n", + "Entity 'http://edamontology.org/data_1719' - Label 'NCBI taxonomy vocabulary'\n", + "Entity 'http://edamontology.org/data_1719' - Label 'NCBI taxonomy vocabulary'\n", + "Entity 'http://edamontology.org/data_1720' - Label 'Plant ontology term'\n", + "Entity 'http://edamontology.org/data_1720' - Label 'Plant ontology term'\n", + "Entity 'http://edamontology.org/data_1721' - Label 'UMLS'\n", + "Entity 'http://edamontology.org/data_1721' - Label 'UMLS'\n", + "Entity 'http://edamontology.org/data_1722' - Label 'FMA'\n", + "Entity 'http://edamontology.org/data_1722' - Label 'FMA'\n", + "Entity 'http://edamontology.org/data_1723' - Label 'EMAP'\n", + "Entity 'http://edamontology.org/data_1723' - Label 'EMAP'\n", + "Entity 'http://edamontology.org/data_1724' - Label 'ChEBI'\n", + "Entity 'http://edamontology.org/data_1724' - Label 'ChEBI'\n", + "Entity 'http://edamontology.org/data_1725' - Label 'MGED'\n", + "Entity 'http://edamontology.org/data_1725' - Label 'MGED'\n", + "Entity 'http://edamontology.org/data_1726' - Label 'myGrid'\n", + "Entity 'http://edamontology.org/data_1726' - Label 'myGrid'\n", + "Entity 'http://edamontology.org/data_1727' - Label 'GO (biological process)'\n", + "Entity 'http://edamontology.org/data_1727' - Label 'GO (biological process)'\n", + "Entity 'http://edamontology.org/data_1728' - Label 'GO (molecular function)'\n", + "Entity 'http://edamontology.org/data_1728' - Label 'GO (molecular function)'\n", + "Entity 'http://edamontology.org/data_1729' - Label 'GO (cellular component)'\n", + "Entity 'http://edamontology.org/data_1729' - Label 'GO (cellular component)'\n", + "Entity 'http://edamontology.org/data_1730' - Label 'Ontology relation type'\n", + "Entity 'http://edamontology.org/data_1730' - Label 'Ontology relation type'\n", + "Entity 'http://edamontology.org/data_1731' - Label 'Ontology concept definition'\n", + "Entity 'http://edamontology.org/data_1732' - Label 'Ontology concept comment'\n", + "Entity 'http://edamontology.org/data_1732' - Label 'Ontology concept comment'\n", + "Entity 'http://edamontology.org/data_1733' - Label 'Ontology concept reference'\n", + "Entity 'http://edamontology.org/data_1733' - Label 'Ontology concept reference'\n", + "Entity 'http://edamontology.org/data_1738' - Label 'doc2loc document information'\n", + "Entity 'http://edamontology.org/data_1738' - Label 'doc2loc document information'\n", + "Entity 'http://edamontology.org/data_1742' - Label 'PDB residue number'\n", + "Entity 'http://edamontology.org/data_1743' - Label 'Atomic coordinate'\n", + "Entity 'http://edamontology.org/data_1744' - Label 'Atomic x coordinate'\n", + "Entity 'http://edamontology.org/data_1744' - Label 'Atomic x coordinate'\n", + "Entity 'http://edamontology.org/data_1745' - Label 'Atomic y coordinate'\n", + "Entity 'http://edamontology.org/data_1745' - Label 'Atomic y coordinate'\n", + "Entity 'http://edamontology.org/data_1746' - Label 'Atomic z coordinate'\n", + "Entity 'http://edamontology.org/data_1746' - Label 'Atomic z coordinate'\n", + "Entity 'http://edamontology.org/data_1748' - Label 'PDB atom name'\n", + "Entity 'http://edamontology.org/data_1755' - Label 'Protein atom'\n", + "Entity 'http://edamontology.org/data_1756' - Label 'Protein residue'\n", + "Entity 'http://edamontology.org/data_1757' - Label 'Atom name'\n", + "Entity 'http://edamontology.org/data_1757' - Label 'Atom name'\n", + "Entity 'http://edamontology.org/data_1758' - Label 'PDB residue name'\n", + "Entity 'http://edamontology.org/data_1759' - Label 'PDB model number'\n", + "Entity 'http://edamontology.org/data_1762' - Label 'CATH domain report'\n", + "Entity 'http://edamontology.org/data_1762' - Label 'CATH domain report'\n", + "Entity 'http://edamontology.org/data_1764' - Label 'CATH representative domain sequences (ATOM)'\n", + "Entity 'http://edamontology.org/data_1764' - Label 'CATH representative domain sequences (ATOM)'\n", + "Entity 'http://edamontology.org/data_1765' - Label 'CATH representative domain sequences (COMBS)'\n", + "Entity 'http://edamontology.org/data_1765' - Label 'CATH representative domain sequences (COMBS)'\n", + "Entity 'http://edamontology.org/data_1766' - Label 'CATH domain sequences (ATOM)'\n", + "Entity 'http://edamontology.org/data_1766' - Label 'CATH domain sequences (ATOM)'\n", + "Entity 'http://edamontology.org/data_1767' - Label 'CATH domain sequences (COMBS)'\n", + "Entity 'http://edamontology.org/data_1767' - Label 'CATH domain sequences (COMBS)'\n", + "Entity 'http://edamontology.org/data_1771' - Label 'Sequence version'\n", + "Entity 'http://edamontology.org/data_1772' - Label 'Score'\n", + "Entity 'http://edamontology.org/data_1776' - Label 'Protein report (function)'\n", + "Entity 'http://edamontology.org/data_1776' - Label 'Protein report (function)'\n", + "Entity 'http://edamontology.org/data_1783' - Label 'Gene name (ASPGD)'\n", + "Entity 'http://edamontology.org/data_1783' - Label 'Gene name (ASPGD)'\n", + "Entity 'http://edamontology.org/data_1784' - Label 'Gene name (CGD)'\n", + "Entity 'http://edamontology.org/data_1784' - Label 'Gene name (CGD)'\n", + "Entity 'http://edamontology.org/data_1785' - Label 'Gene name (dictyBase)'\n", + "Entity 'http://edamontology.org/data_1785' - Label 'Gene name (dictyBase)'\n", + "Entity 'http://edamontology.org/data_1786' - Label 'Gene name (EcoGene primary)'\n", + "Entity 'http://edamontology.org/data_1786' - Label 'Gene name (EcoGene primary)'\n", + "Entity 'http://edamontology.org/data_1787' - Label 'Gene name (MaizeGDB)'\n", + "Entity 'http://edamontology.org/data_1787' - Label 'Gene name (MaizeGDB)'\n", + "Entity 'http://edamontology.org/data_1788' - Label 'Gene name (SGD)'\n", + "Entity 'http://edamontology.org/data_1788' - Label 'Gene name (SGD)'\n", + "Entity 'http://edamontology.org/data_1789' - Label 'Gene name (TGD)'\n", + "Entity 'http://edamontology.org/data_1789' - Label 'Gene name (TGD)'\n", + "Entity 'http://edamontology.org/data_1790' - Label 'Gene name (CGSC)'\n", + "Entity 'http://edamontology.org/data_1790' - Label 'Gene name (CGSC)'\n", + "Entity 'http://edamontology.org/data_1791' - Label 'Gene name (HGNC)'\n", + "Entity 'http://edamontology.org/data_1791' - Label 'Gene name (HGNC)'\n", + "Entity 'http://edamontology.org/data_1792' - Label 'Gene name (MGD)'\n", + "Entity 'http://edamontology.org/data_1792' - Label 'Gene name (MGD)'\n", + "Entity 'http://edamontology.org/data_1793' - Label 'Gene name (Bacillus subtilis)'\n", + "Entity 'http://edamontology.org/data_1793' - Label 'Gene name (Bacillus subtilis)'\n", + "Entity 'http://edamontology.org/data_1794' - Label 'Gene ID (PlasmoDB)'\n", + "Entity 'http://edamontology.org/data_1794' - Label 'Gene ID (PlasmoDB)'\n", + "Entity 'http://edamontology.org/data_1795' - Label 'Gene ID (EcoGene)'\n", + "Entity 'http://edamontology.org/data_1795' - Label 'Gene ID (EcoGene)'\n", + "Entity 'http://edamontology.org/data_1796' - Label 'Gene ID (FlyBase)'\n", + "Entity 'http://edamontology.org/data_1796' - Label 'Gene ID (FlyBase)'\n", + "Entity 'http://edamontology.org/data_1797' - Label 'Gene ID (GeneDB Glossina morsitans)'\n", + "Entity 'http://edamontology.org/data_1797' - Label 'Gene ID (GeneDB Glossina morsitans)'\n", + "Entity 'http://edamontology.org/data_1798' - Label 'Gene ID (GeneDB Leishmania major)'\n", + "Entity 'http://edamontology.org/data_1798' - Label 'Gene ID (GeneDB Leishmania major)'\n", + "Entity 'http://edamontology.org/data_1799' - Label 'Gene ID (GeneDB Plasmodium falciparum)'\n", + "Entity 'http://edamontology.org/data_1799' - Label 'Gene ID (GeneDB Plasmodium falciparum)'\n", + "Entity 'http://edamontology.org/data_1800' - Label 'Gene ID (GeneDB Schizosaccharomyces pombe)'\n", + "Entity 'http://edamontology.org/data_1800' - Label 'Gene ID (GeneDB Schizosaccharomyces pombe)'\n", + "Entity 'http://edamontology.org/data_1801' - Label 'Gene ID (GeneDB Trypanosoma brucei)'\n", + "Entity 'http://edamontology.org/data_1801' - Label 'Gene ID (GeneDB Trypanosoma brucei)'\n", + "Entity 'http://edamontology.org/data_1802' - Label 'Gene ID (Gramene)'\n", + "Entity 'http://edamontology.org/data_1802' - Label 'Gene ID (Gramene)'\n", + "Entity 'http://edamontology.org/data_1803' - Label 'Gene ID (Virginia microbial)'\n", + "Entity 'http://edamontology.org/data_1803' - Label 'Gene ID (Virginia microbial)'\n", + "Entity 'http://edamontology.org/data_1804' - Label 'Gene ID (SGN)'\n", + "Entity 'http://edamontology.org/data_1804' - Label 'Gene ID (SGN)'\n", + "Entity 'http://edamontology.org/data_1805' - Label 'Gene ID (WormBase)'\n", + "Entity 'http://edamontology.org/data_1805' - Label 'Gene ID (WormBase)'\n", + "Entity 'http://edamontology.org/data_1805' - Label 'Gene ID (WormBase)'\n", + "Entity 'http://edamontology.org/data_1806' - Label 'Gene synonym'\n", + "Entity 'http://edamontology.org/data_1806' - Label 'Gene synonym'\n", + "Entity 'http://edamontology.org/data_1807' - Label 'ORF name'\n", + "Entity 'http://edamontology.org/data_1807' - Label 'ORF name'\n", + "Entity 'http://edamontology.org/data_1852' - Label 'Sequence assembly component'\n", + "Entity 'http://edamontology.org/data_1852' - Label 'Sequence assembly component'\n", + "Entity 'http://edamontology.org/data_1853' - Label 'Chromosome annotation (aberration)'\n", + "Entity 'http://edamontology.org/data_1853' - Label 'Chromosome annotation (aberration)'\n", + "Entity 'http://edamontology.org/data_1855' - Label 'Clone ID'\n", + "Entity 'http://edamontology.org/data_1856' - Label 'PDB insertion code'\n", + "Entity 'http://edamontology.org/data_1857' - Label 'Atomic occupancy'\n", + "Entity 'http://edamontology.org/data_1858' - Label 'Isotropic B factor'\n", + "Entity 'http://edamontology.org/data_1859' - Label 'Deletion map'\n", + "Entity 'http://edamontology.org/data_1860' - Label 'QTL map'\n", + "Entity 'http://edamontology.org/data_1863' - Label 'Haplotype map'\n", + "Entity 'http://edamontology.org/data_1864' - Label 'Map set data'\n", + "Entity 'http://edamontology.org/data_1864' - Label 'Map set data'\n", + "Entity 'http://edamontology.org/data_1865' - Label 'Map feature'\n", + "Entity 'http://edamontology.org/data_1865' - Label 'Map feature'\n", + "Entity 'http://edamontology.org/data_1865' - Label 'Map feature'\n", + "Entity 'http://edamontology.org/data_1865' - Label 'Map feature'\n", + "Entity 'http://edamontology.org/data_1866' - Label 'Map type'\n", + "Entity 'http://edamontology.org/data_1866' - Label 'Map type'\n", + "Entity 'http://edamontology.org/data_1867' - Label 'Protein fold name'\n", + "Entity 'http://edamontology.org/data_1868' - Label 'Taxon'\n", + "Entity 'http://edamontology.org/data_1869' - Label 'Organism identifier'\n", + "Entity 'http://edamontology.org/data_1869' - Label 'Organism identifier'\n", + "Entity 'http://edamontology.org/data_1870' - Label 'Genus name'\n", + "Entity 'http://edamontology.org/data_1872' - Label 'Taxonomic classification'\n", + "Entity 'http://edamontology.org/data_1873' - Label 'iHOP organism ID'\n", + "Entity 'http://edamontology.org/data_1873' - Label 'iHOP organism ID'\n", + "Entity 'http://edamontology.org/data_1874' - Label 'Genbank common name'\n", + "Entity 'http://edamontology.org/data_1875' - Label 'NCBI taxon'\n", + "Entity 'http://edamontology.org/data_1877' - Label 'Synonym'\n", + "Entity 'http://edamontology.org/data_1877' - Label 'Synonym'\n", + "Entity 'http://edamontology.org/data_1878' - Label 'Misspelling'\n", + "Entity 'http://edamontology.org/data_1878' - Label 'Misspelling'\n", + "Entity 'http://edamontology.org/data_1879' - Label 'Acronym'\n", + "Entity 'http://edamontology.org/data_1879' - Label 'Acronym'\n", + "Entity 'http://edamontology.org/data_1880' - Label 'Misnomer'\n", + "Entity 'http://edamontology.org/data_1880' - Label 'Misnomer'\n", + "Entity 'http://edamontology.org/data_1881' - Label 'Author ID'\n", + "Entity 'http://edamontology.org/data_1882' - Label 'DragonDB author identifier'\n", + "Entity 'http://edamontology.org/data_1883' - Label 'Annotated URI'\n", + "Entity 'http://edamontology.org/data_1884' - Label 'UniProt keywords'\n", + "Entity 'http://edamontology.org/data_1884' - Label 'UniProt keywords'\n", + "Entity 'http://edamontology.org/data_1885' - Label 'Gene ID (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_1885' - Label 'Gene ID (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_1886' - Label 'Blattner number'\n", + "Entity 'http://edamontology.org/data_1886' - Label 'Blattner number'\n", + "Entity 'http://edamontology.org/data_1887' - Label 'Gene ID (MIPS Maize)'\n", + "Entity 'http://edamontology.org/data_1887' - Label 'Gene ID (MIPS Maize)'\n", + "Entity 'http://edamontology.org/data_1888' - Label 'Gene ID (MIPS Medicago)'\n", + "Entity 'http://edamontology.org/data_1888' - Label 'Gene ID (MIPS Medicago)'\n", + "Entity 'http://edamontology.org/data_1889' - Label 'Gene name (DragonDB)'\n", + "Entity 'http://edamontology.org/data_1889' - Label 'Gene name (DragonDB)'\n", + "Entity 'http://edamontology.org/data_1890' - Label 'Gene name (Arabidopsis)'\n", + "Entity 'http://edamontology.org/data_1890' - Label 'Gene name (Arabidopsis)'\n", + "Entity 'http://edamontology.org/data_1891' - Label 'iHOP symbol'\n", + "Entity 'http://edamontology.org/data_1891' - Label 'iHOP symbol'\n", + "Entity 'http://edamontology.org/data_1891' - Label 'iHOP symbol'\n", + "Entity 'http://edamontology.org/data_1891' - Label 'iHOP symbol'\n", + "Entity 'http://edamontology.org/data_1892' - Label 'Gene name (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_1892' - Label 'Gene name (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_1893' - Label 'Locus ID'\n", + "Entity 'http://edamontology.org/data_1893' - Label 'Locus ID'\n", + "Entity 'http://edamontology.org/data_1895' - Label 'Locus ID (AGI)'\n", + "Entity 'http://edamontology.org/data_1895' - Label 'Locus ID (AGI)'\n", + "Entity 'http://edamontology.org/data_1896' - Label 'Locus ID (ASPGD)'\n", + "Entity 'http://edamontology.org/data_1896' - Label 'Locus ID (ASPGD)'\n", + "Entity 'http://edamontology.org/data_1897' - Label 'Locus ID (MGG)'\n", + "Entity 'http://edamontology.org/data_1897' - Label 'Locus ID (MGG)'\n", + "Entity 'http://edamontology.org/data_1898' - Label 'Locus ID (CGD)'\n", + "Entity 'http://edamontology.org/data_1898' - Label 'Locus ID (CGD)'\n", + "Entity 'http://edamontology.org/data_1899' - Label 'Locus ID (CMR)'\n", + "Entity 'http://edamontology.org/data_1899' - Label 'Locus ID (CMR)'\n", + "Entity 'http://edamontology.org/data_1900' - Label 'NCBI locus tag'\n", + "Entity 'http://edamontology.org/data_1900' - Label 'NCBI locus tag'\n", + "Entity 'http://edamontology.org/data_1901' - Label 'Locus ID (SGD)'\n", + "Entity 'http://edamontology.org/data_1901' - Label 'Locus ID (SGD)'\n", + "Entity 'http://edamontology.org/data_1901' - Label 'Locus ID (SGD)'\n", + "Entity 'http://edamontology.org/data_1902' - Label 'Locus ID (MMP)'\n", + "Entity 'http://edamontology.org/data_1902' - Label 'Locus ID (MMP)'\n", + "Entity 'http://edamontology.org/data_1903' - Label 'Locus ID (DictyBase)'\n", + "Entity 'http://edamontology.org/data_1903' - Label 'Locus ID (DictyBase)'\n", + "Entity 'http://edamontology.org/data_1904' - Label 'Locus ID (EntrezGene)'\n", + "Entity 'http://edamontology.org/data_1904' - Label 'Locus ID (EntrezGene)'\n", + "Entity 'http://edamontology.org/data_1905' - Label 'Locus ID (MaizeGDB)'\n", + "Entity 'http://edamontology.org/data_1905' - Label 'Locus ID (MaizeGDB)'\n", + "Entity 'http://edamontology.org/data_1906' - Label 'Quantitative trait locus'\n", + "Entity 'http://edamontology.org/data_1906' - Label 'Quantitative trait locus'\n", + "Entity 'http://edamontology.org/data_1907' - Label 'Gene ID (KOME)'\n", + "Entity 'http://edamontology.org/data_1907' - Label 'Gene ID (KOME)'\n", + "Entity 'http://edamontology.org/data_1908' - Label 'Locus ID (Tropgene)'\n", + "Entity 'http://edamontology.org/data_1908' - Label 'Locus ID (Tropgene)'\n", + "Entity 'http://edamontology.org/data_1916' - Label 'Alignment'\n", + "Entity 'http://edamontology.org/data_1917' - Label 'Atomic property'\n", + "Entity 'http://edamontology.org/data_2007' - Label 'UniProt keyword'\n", + "Entity 'http://edamontology.org/data_2009' - Label 'Ordered locus name'\n", + "Entity 'http://edamontology.org/data_2009' - Label 'Ordered locus name'\n", + "Entity 'http://edamontology.org/data_2012' - Label 'Sequence coordinates'\n", + "Entity 'http://edamontology.org/data_2012' - Label 'Sequence coordinates'\n", + "Entity 'http://edamontology.org/data_2012' - Label 'Sequence coordinates'\n", + "Entity 'http://edamontology.org/data_2016' - Label 'Amino acid property'\n", + "Entity 'http://edamontology.org/data_2018' - Label 'Annotation'\n", + "Entity 'http://edamontology.org/data_2018' - Label 'Annotation'\n", + "Entity 'http://edamontology.org/data_2019' - Label 'Map data'\n", + "Entity 'http://edamontology.org/data_2019' - Label 'Map data'\n", + "Entity 'http://edamontology.org/data_2022' - Label 'Vienna RNA structural data'\n", + "Entity 'http://edamontology.org/data_2022' - Label 'Vienna RNA structural data'\n", + "Entity 'http://edamontology.org/data_2023' - Label 'Sequence mask parameter'\n", + "Entity 'http://edamontology.org/data_2023' - Label 'Sequence mask parameter'\n", + "Entity 'http://edamontology.org/data_2024' - Label 'Enzyme kinetics data'\n", + "Entity 'http://edamontology.org/data_2024' - Label 'Enzyme kinetics data'\n", + "Entity 'http://edamontology.org/data_2025' - Label 'Michaelis Menten plot'\n", + "Entity 'http://edamontology.org/data_2026' - Label 'Hanes Woolf plot'\n", + "Entity 'http://edamontology.org/data_2028' - Label 'Experimental data'\n", + "Entity 'http://edamontology.org/data_2028' - Label 'Experimental data'\n", + "Entity 'http://edamontology.org/data_2028' - Label 'Experimental data'\n", + "Entity 'http://edamontology.org/data_2041' - Label 'Genome version information'\n", + "Entity 'http://edamontology.org/data_2041' - Label 'Genome version information'\n", + "Entity 'http://edamontology.org/data_2042' - Label 'Evidence'\n", + "Entity 'http://edamontology.org/data_2043' - Label 'Sequence record lite'\n", + "Entity 'http://edamontology.org/data_2043' - Label 'Sequence record lite'\n", + "Entity 'http://edamontology.org/data_2044' - Label 'Sequence'\n", + "Entity 'http://edamontology.org/data_2044' - Label 'Sequence'\n", + "Entity 'http://edamontology.org/data_2046' - Label 'Nucleic acid sequence record (lite)'\n", + "Entity 'http://edamontology.org/data_2046' - Label 'Nucleic acid sequence record (lite)'\n", + "Entity 'http://edamontology.org/data_2047' - Label 'Protein sequence record (lite)'\n", + "Entity 'http://edamontology.org/data_2047' - Label 'Protein sequence record (lite)'\n", + "Entity 'http://edamontology.org/data_2048' - Label 'Report'\n", + "Entity 'http://edamontology.org/data_2050' - Label 'Molecular property (general)'\n", + "Entity 'http://edamontology.org/data_2053' - Label 'Structural data'\n", + "Entity 'http://edamontology.org/data_2053' - Label 'Structural data'\n", + "Entity 'http://edamontology.org/data_2053' - Label 'Structural data'\n", + "Entity 'http://edamontology.org/data_2070' - Label 'Sequence motif (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_2071' - Label 'Sequence motif (protein)'\n", + "Entity 'http://edamontology.org/data_2079' - Label 'Search parameter'\n", + "Entity 'http://edamontology.org/data_2079' - Label 'Search parameter'\n", + "Entity 'http://edamontology.org/data_2080' - Label 'Database search results'\n", + "Entity 'http://edamontology.org/data_2081' - Label 'Secondary structure'\n", + "Entity 'http://edamontology.org/data_2081' - Label 'Secondary structure'\n", + "Entity 'http://edamontology.org/data_2082' - Label 'Matrix'\n", + "Entity 'http://edamontology.org/data_2083' - Label 'Alignment data'\n", + "Entity 'http://edamontology.org/data_2083' - Label 'Alignment data'\n", + "Entity 'http://edamontology.org/data_2084' - Label 'Nucleic acid report'\n", + "Entity 'http://edamontology.org/data_2085' - Label 'Structure report'\n", + "Entity 'http://edamontology.org/data_2086' - Label 'Nucleic acid structure data'\n", + "Entity 'http://edamontology.org/data_2086' - Label 'Nucleic acid structure data'\n", + "Entity 'http://edamontology.org/data_2086' - Label 'Nucleic acid structure data'\n", + "Entity 'http://edamontology.org/data_2087' - Label 'Molecular property'\n", + "Entity 'http://edamontology.org/data_2088' - Label 'DNA base structural data'\n", + "Entity 'http://edamontology.org/data_2090' - Label 'Database entry version information'\n", + "Entity 'http://edamontology.org/data_2090' - Label 'Database entry version information'\n", + "Entity 'http://edamontology.org/data_2091' - Label 'Accession'\n", + "Entity 'http://edamontology.org/data_2092' - Label 'SNP'\n", + "Entity 'http://edamontology.org/data_2092' - Label 'SNP'\n", + "Entity 'http://edamontology.org/data_2093' - Label 'Data reference'\n", + "Entity 'http://edamontology.org/data_2098' - Label 'Job identifier'\n", + "Entity 'http://edamontology.org/data_2099' - Label 'Name'\n", + "Entity 'http://edamontology.org/data_2100' - Label 'Type'\n", + "Entity 'http://edamontology.org/data_2100' - Label 'Type'\n", + "Entity 'http://edamontology.org/data_2101' - Label 'Account authentication'\n", + "Entity 'http://edamontology.org/data_2102' - Label 'KEGG organism code'\n", + "Entity 'http://edamontology.org/data_2102' - Label 'KEGG organism code'\n", + "Entity 'http://edamontology.org/data_2103' - Label 'Gene name (KEGG GENES)'\n", + "Entity 'http://edamontology.org/data_2103' - Label 'Gene name (KEGG GENES)'\n", + "Entity 'http://edamontology.org/data_2104' - Label 'BioCyc ID'\n", + "Entity 'http://edamontology.org/data_2104' - Label 'BioCyc ID'\n", + "Entity 'http://edamontology.org/data_2105' - Label 'Compound ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2105' - Label 'Compound ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2105' - Label 'Compound ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2106' - Label 'Reaction ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2106' - Label 'Reaction ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2106' - Label 'Reaction ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2107' - Label 'Enzyme ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2107' - Label 'Enzyme ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2107' - Label 'Enzyme ID (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2108' - Label 'Reaction ID'\n", + "Entity 'http://edamontology.org/data_2108' - Label 'Reaction ID'\n", + "Entity 'http://edamontology.org/data_2109' - Label 'Identifier (hybrid)'\n", + "Entity 'http://edamontology.org/data_2110' - Label 'Molecular property identifier'\n", + "Entity 'http://edamontology.org/data_2110' - Label 'Molecular property identifier'\n", + "Entity 'http://edamontology.org/data_2111' - Label 'Codon usage table ID'\n", + "Entity 'http://edamontology.org/data_2111' - Label 'Codon usage table ID'\n", + "Entity 'http://edamontology.org/data_2111' - Label 'Codon usage table ID'\n", + "Entity 'http://edamontology.org/data_2112' - Label 'FlyBase primary identifier'\n", + "Entity 'http://edamontology.org/data_2113' - Label 'WormBase identifier'\n", + "Entity 'http://edamontology.org/data_2114' - Label 'WormBase wormpep ID'\n", + "Entity 'http://edamontology.org/data_2114' - Label 'WormBase wormpep ID'\n", + "Entity 'http://edamontology.org/data_2114' - Label 'WormBase wormpep ID'\n", + "Entity 'http://edamontology.org/data_2116' - Label 'Nucleic acid features (codon)'\n", + "Entity 'http://edamontology.org/data_2116' - Label 'Nucleic acid features (codon)'\n", + "Entity 'http://edamontology.org/data_2117' - Label 'Map identifier'\n", + "Entity 'http://edamontology.org/data_2117' - Label 'Map identifier'\n", + "Entity 'http://edamontology.org/data_2118' - Label 'Person identifier'\n", + "Entity 'http://edamontology.org/data_2119' - Label 'Nucleic acid identifier'\n", + "Entity 'http://edamontology.org/data_2119' - Label 'Nucleic acid identifier'\n", + "Entity 'http://edamontology.org/data_2126' - Label 'Translation frame specification'\n", + "Entity 'http://edamontology.org/data_2126' - Label 'Translation frame specification'\n", + "Entity 'http://edamontology.org/data_2127' - Label 'Genetic code identifier'\n", + "Entity 'http://edamontology.org/data_2127' - Label 'Genetic code identifier'\n", + "Entity 'http://edamontology.org/data_2128' - Label 'Genetic code name'\n", + "Entity 'http://edamontology.org/data_2128' - Label 'Genetic code name'\n", + "Entity 'http://edamontology.org/data_2129' - Label 'File format name'\n", + "Entity 'http://edamontology.org/data_2129' - Label 'File format name'\n", + "Entity 'http://edamontology.org/data_2130' - Label 'Sequence profile type'\n", + "Entity 'http://edamontology.org/data_2130' - Label 'Sequence profile type'\n", + "Entity 'http://edamontology.org/data_2131' - Label 'Operating system name'\n", + "Entity 'http://edamontology.org/data_2132' - Label 'Mutation type'\n", + "Entity 'http://edamontology.org/data_2132' - Label 'Mutation type'\n", + "Entity 'http://edamontology.org/data_2133' - Label 'Logical operator'\n", + "Entity 'http://edamontology.org/data_2134' - Label 'Results sort order'\n", + "Entity 'http://edamontology.org/data_2134' - Label 'Results sort order'\n", + "Entity 'http://edamontology.org/data_2135' - Label 'Toggle'\n", + "Entity 'http://edamontology.org/data_2135' - Label 'Toggle'\n", + "Entity 'http://edamontology.org/data_2136' - Label 'Sequence width'\n", + "Entity 'http://edamontology.org/data_2136' - Label 'Sequence width'\n", + "Entity 'http://edamontology.org/data_2137' - Label 'Gap penalty'\n", + "Entity 'http://edamontology.org/data_2139' - Label 'Nucleic acid melting temperature'\n", + "Entity 'http://edamontology.org/data_2140' - Label 'Concentration'\n", + "Entity 'http://edamontology.org/data_2141' - Label 'Window step size'\n", + "Entity 'http://edamontology.org/data_2141' - Label 'Window step size'\n", + "Entity 'http://edamontology.org/data_2142' - Label 'EMBOSS graph'\n", + "Entity 'http://edamontology.org/data_2142' - Label 'EMBOSS graph'\n", + "Entity 'http://edamontology.org/data_2143' - Label 'EMBOSS report'\n", + "Entity 'http://edamontology.org/data_2143' - Label 'EMBOSS report'\n", + "Entity 'http://edamontology.org/data_2145' - Label 'Sequence offset'\n", + "Entity 'http://edamontology.org/data_2145' - Label 'Sequence offset'\n", + "Entity 'http://edamontology.org/data_2146' - Label 'Threshold'\n", + "Entity 'http://edamontology.org/data_2146' - Label 'Threshold'\n", + "Entity 'http://edamontology.org/data_2147' - Label 'Protein report (transcription factor)'\n", + "Entity 'http://edamontology.org/data_2147' - Label 'Protein report (transcription factor)'\n", + "Entity 'http://edamontology.org/data_2149' - Label 'Database category name'\n", + "Entity 'http://edamontology.org/data_2149' - Label 'Database category name'\n", + "Entity 'http://edamontology.org/data_2150' - Label 'Sequence profile name'\n", + "Entity 'http://edamontology.org/data_2150' - Label 'Sequence profile name'\n", + "Entity 'http://edamontology.org/data_2151' - Label 'Color'\n", + "Entity 'http://edamontology.org/data_2151' - Label 'Color'\n", + "Entity 'http://edamontology.org/data_2152' - Label 'Rendering parameter'\n", + "Entity 'http://edamontology.org/data_2152' - Label 'Rendering parameter'\n", + "Entity 'http://edamontology.org/data_2154' - Label 'Sequence name'\n", + "Entity 'http://edamontology.org/data_2154' - Label 'Sequence name'\n", + "Entity 'http://edamontology.org/data_2156' - Label 'Date'\n", + "Entity 'http://edamontology.org/data_2156' - Label 'Date'\n", + "Entity 'http://edamontology.org/data_2157' - Label 'Word composition'\n", + "Entity 'http://edamontology.org/data_2157' - Label 'Word composition'\n", + "Entity 'http://edamontology.org/data_2157' - Label 'Word composition'\n", + "Entity 'http://edamontology.org/data_2160' - Label 'Fickett testcode plot'\n", + "Entity 'http://edamontology.org/data_2161' - Label 'Sequence similarity plot'\n", + "Entity 'http://edamontology.org/data_2161' - Label 'Sequence similarity plot'\n", + "Entity 'http://edamontology.org/data_2162' - Label 'Helical wheel'\n", + "Entity 'http://edamontology.org/data_2163' - Label 'Helical net'\n", + "Entity 'http://edamontology.org/data_2164' - Label 'Protein sequence properties plot'\n", + "Entity 'http://edamontology.org/data_2164' - Label 'Protein sequence properties plot'\n", + "Entity 'http://edamontology.org/data_2165' - Label 'Protein ionisation curve'\n", + "Entity 'http://edamontology.org/data_2165' - Label 'Protein ionisation curve'\n", + "Entity 'http://edamontology.org/data_2166' - Label 'Sequence composition plot'\n", + "Entity 'http://edamontology.org/data_2166' - Label 'Sequence composition plot'\n", + "Entity 'http://edamontology.org/data_2167' - Label 'Nucleic acid density plot'\n", + "Entity 'http://edamontology.org/data_2167' - Label 'Nucleic acid density plot'\n", + "Entity 'http://edamontology.org/data_2168' - Label 'Sequence trace image'\n", + "Entity 'http://edamontology.org/data_2169' - Label 'Nucleic acid features (siRNA)'\n", + "Entity 'http://edamontology.org/data_2169' - Label 'Nucleic acid features (siRNA)'\n", + "Entity 'http://edamontology.org/data_2173' - Label 'Sequence set (stream)'\n", + "Entity 'http://edamontology.org/data_2173' - Label 'Sequence set (stream)'\n", + "Entity 'http://edamontology.org/data_2174' - Label 'FlyBase secondary identifier'\n", + "Entity 'http://edamontology.org/data_2176' - Label 'Cardinality'\n", + "Entity 'http://edamontology.org/data_2176' - Label 'Cardinality'\n", + "Entity 'http://edamontology.org/data_2177' - Label 'Exactly 1'\n", + "Entity 'http://edamontology.org/data_2177' - Label 'Exactly 1'\n", + "Entity 'http://edamontology.org/data_2178' - Label '1 or more'\n", + "Entity 'http://edamontology.org/data_2178' - Label '1 or more'\n", + "Entity 'http://edamontology.org/data_2179' - Label 'Exactly 2'\n", + "Entity 'http://edamontology.org/data_2179' - Label 'Exactly 2'\n", + "Entity 'http://edamontology.org/data_2180' - Label '2 or more'\n", + "Entity 'http://edamontology.org/data_2180' - Label '2 or more'\n", + "Entity 'http://edamontology.org/data_2190' - Label 'Sequence checksum'\n", + "Entity 'http://edamontology.org/data_2191' - Label 'Protein features report (chemical modifications)'\n", + "Entity 'http://edamontology.org/data_2191' - Label 'Protein features report (chemical modifications)'\n", + "Entity 'http://edamontology.org/data_2192' - Label 'Error'\n", + "Entity 'http://edamontology.org/data_2192' - Label 'Error'\n", + "Entity 'http://edamontology.org/data_2193' - Label 'Database entry metadata'\n", + "Entity 'http://edamontology.org/data_2198' - Label 'Gene cluster'\n", + "Entity 'http://edamontology.org/data_2198' - Label 'Gene cluster'\n", + "Entity 'http://edamontology.org/data_2201' - Label 'Sequence record full'\n", + "Entity 'http://edamontology.org/data_2201' - Label 'Sequence record full'\n", + "Entity 'http://edamontology.org/data_2208' - Label 'Plasmid identifier'\n", + "Entity 'http://edamontology.org/data_2209' - Label 'Mutation ID'\n", + "Entity 'http://edamontology.org/data_2209' - Label 'Mutation ID'\n", + "Entity 'http://edamontology.org/data_2212' - Label 'Mutation annotation (basic)'\n", + "Entity 'http://edamontology.org/data_2212' - Label 'Mutation annotation (basic)'\n", + "Entity 'http://edamontology.org/data_2213' - Label 'Mutation annotation (prevalence)'\n", + "Entity 'http://edamontology.org/data_2213' - Label 'Mutation annotation (prevalence)'\n", + "Entity 'http://edamontology.org/data_2214' - Label 'Mutation annotation (prognostic)'\n", + "Entity 'http://edamontology.org/data_2214' - Label 'Mutation annotation (prognostic)'\n", + "Entity 'http://edamontology.org/data_2215' - Label 'Mutation annotation (functional)'\n", + "Entity 'http://edamontology.org/data_2215' - Label 'Mutation annotation (functional)'\n", + "Entity 'http://edamontology.org/data_2216' - Label 'Codon number'\n", + "Entity 'http://edamontology.org/data_2217' - Label 'Tumor annotation'\n", + "Entity 'http://edamontology.org/data_2217' - Label 'Tumor annotation'\n", + "Entity 'http://edamontology.org/data_2218' - Label 'Server metadata'\n", + "Entity 'http://edamontology.org/data_2218' - Label 'Server metadata'\n", + "Entity 'http://edamontology.org/data_2219' - Label 'Database field name'\n", + "Entity 'http://edamontology.org/data_2220' - Label 'Sequence cluster ID (SYSTERS)'\n", + "Entity 'http://edamontology.org/data_2220' - Label 'Sequence cluster ID (SYSTERS)'\n", + "Entity 'http://edamontology.org/data_2223' - Label 'Ontology metadata'\n", + "Entity 'http://edamontology.org/data_2223' - Label 'Ontology metadata'\n", + "Entity 'http://edamontology.org/data_2235' - Label 'Raw SCOP domain classification'\n", + "Entity 'http://edamontology.org/data_2235' - Label 'Raw SCOP domain classification'\n", + "Entity 'http://edamontology.org/data_2236' - Label 'Raw CATH domain classification'\n", + "Entity 'http://edamontology.org/data_2236' - Label 'Raw CATH domain classification'\n", + "Entity 'http://edamontology.org/data_2240' - Label 'Heterogen annotation'\n", + "Entity 'http://edamontology.org/data_2240' - Label 'Heterogen annotation'\n", + "Entity 'http://edamontology.org/data_2242' - Label 'Phylogenetic property values'\n", + "Entity 'http://edamontology.org/data_2242' - Label 'Phylogenetic property values'\n", + "Entity 'http://edamontology.org/data_2245' - Label 'Sequence set (bootstrapped)'\n", + "Entity 'http://edamontology.org/data_2245' - Label 'Sequence set (bootstrapped)'\n", + "Entity 'http://edamontology.org/data_2247' - Label 'Phylogenetic consensus tree'\n", + "Entity 'http://edamontology.org/data_2247' - Label 'Phylogenetic consensus tree'\n", + "Entity 'http://edamontology.org/data_2248' - Label 'Schema'\n", + "Entity 'http://edamontology.org/data_2248' - Label 'Schema'\n", + "Entity 'http://edamontology.org/data_2249' - Label 'DTD'\n", + "Entity 'http://edamontology.org/data_2249' - Label 'DTD'\n", + "Entity 'http://edamontology.org/data_2250' - Label 'XML Schema'\n", + "Entity 'http://edamontology.org/data_2250' - Label 'XML Schema'\n", + "Entity 'http://edamontology.org/data_2251' - Label 'Relax-NG schema'\n", + "Entity 'http://edamontology.org/data_2251' - Label 'Relax-NG schema'\n", + "Entity 'http://edamontology.org/data_2252' - Label 'XSLT stylesheet'\n", + "Entity 'http://edamontology.org/data_2252' - Label 'XSLT stylesheet'\n", + "Entity 'http://edamontology.org/data_2253' - Label 'Data resource definition name'\n", + "Entity 'http://edamontology.org/data_2253' - Label 'Data resource definition name'\n", + "Entity 'http://edamontology.org/data_2254' - Label 'OBO file format name'\n", + "Entity 'http://edamontology.org/data_2285' - Label 'Gene ID (MIPS)'\n", + "Entity 'http://edamontology.org/data_2285' - Label 'Gene ID (MIPS)'\n", + "Entity 'http://edamontology.org/data_2288' - Label 'Sequence identifier (protein)'\n", + "Entity 'http://edamontology.org/data_2288' - Label 'Sequence identifier (protein)'\n", + "Entity 'http://edamontology.org/data_2289' - Label 'Sequence identifier (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_2289' - Label 'Sequence identifier (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_2290' - Label 'EMBL accession'\n", + "Entity 'http://edamontology.org/data_2291' - Label 'UniProt ID'\n", + "Entity 'http://edamontology.org/data_2291' - Label 'UniProt ID'\n", + "Entity 'http://edamontology.org/data_2292' - Label 'GenBank accession'\n", + "Entity 'http://edamontology.org/data_2293' - Label 'Gramene secondary identifier'\n", + "Entity 'http://edamontology.org/data_2294' - Label 'Sequence variation ID'\n", + "Entity 'http://edamontology.org/data_2295' - Label 'Gene ID'\n", + "Entity 'http://edamontology.org/data_2295' - Label 'Gene ID'\n", + "Entity 'http://edamontology.org/data_2296' - Label 'Gene name (AceView)'\n", + "Entity 'http://edamontology.org/data_2296' - Label 'Gene name (AceView)'\n", + "Entity 'http://edamontology.org/data_2297' - Label 'Gene ID (ECK)'\n", + "Entity 'http://edamontology.org/data_2298' - Label 'Gene ID (HGNC)'\n", + "Entity 'http://edamontology.org/data_2298' - Label 'Gene ID (HGNC)'\n", + "Entity 'http://edamontology.org/data_2299' - Label 'Gene name'\n", + "Entity 'http://edamontology.org/data_2299' - Label 'Gene name'\n", + "Entity 'http://edamontology.org/data_2300' - Label 'Gene name (NCBI)'\n", + "Entity 'http://edamontology.org/data_2300' - Label 'Gene name (NCBI)'\n", + "Entity 'http://edamontology.org/data_2301' - Label 'SMILES string'\n", + "Entity 'http://edamontology.org/data_2302' - Label 'STRING ID'\n", + "Entity 'http://edamontology.org/data_2302' - Label 'STRING ID'\n", + "Entity 'http://edamontology.org/data_2307' - Label 'Virus annotation'\n", + "Entity 'http://edamontology.org/data_2307' - Label 'Virus annotation'\n", + "Entity 'http://edamontology.org/data_2308' - Label 'Virus annotation (taxonomy)'\n", + "Entity 'http://edamontology.org/data_2308' - Label 'Virus annotation (taxonomy)'\n", + "Entity 'http://edamontology.org/data_2309' - Label 'Reaction ID (SABIO-RK)'\n", + "Entity 'http://edamontology.org/data_2309' - Label 'Reaction ID (SABIO-RK)'\n", + "Entity 'http://edamontology.org/data_2313' - Label 'Carbohydrate report'\n", + "Entity 'http://edamontology.org/data_2314' - Label 'GI number'\n", + "Entity 'http://edamontology.org/data_2314' - Label 'GI number'\n", + "Entity 'http://edamontology.org/data_2315' - Label 'NCBI version'\n", + "Entity 'http://edamontology.org/data_2315' - Label 'NCBI version'\n", + "Entity 'http://edamontology.org/data_2316' - Label 'Cell line name'\n", + "Entity 'http://edamontology.org/data_2317' - Label 'Cell line name (exact)'\n", + "Entity 'http://edamontology.org/data_2318' - Label 'Cell line name (truncated)'\n", + "Entity 'http://edamontology.org/data_2319' - Label 'Cell line name (no punctuation)'\n", + "Entity 'http://edamontology.org/data_2320' - Label 'Cell line name (assonant)'\n", + "Entity 'http://edamontology.org/data_2321' - Label 'Enzyme ID'\n", + "Entity 'http://edamontology.org/data_2321' - Label 'Enzyme ID'\n", + "Entity 'http://edamontology.org/data_2325' - Label 'REBASE enzyme number'\n", + "Entity 'http://edamontology.org/data_2325' - Label 'REBASE enzyme number'\n", + "Entity 'http://edamontology.org/data_2326' - Label 'DrugBank ID'\n", + "Entity 'http://edamontology.org/data_2326' - Label 'DrugBank ID'\n", + "Entity 'http://edamontology.org/data_2327' - Label 'GI number (protein)'\n", + "Entity 'http://edamontology.org/data_2335' - Label 'Bit score'\n", + "Entity 'http://edamontology.org/data_2336' - Label 'Translation phase specification'\n", + "Entity 'http://edamontology.org/data_2336' - Label 'Translation phase specification'\n", + "Entity 'http://edamontology.org/data_2337' - Label 'Resource metadata'\n", + "Entity 'http://edamontology.org/data_2338' - Label 'Ontology identifier'\n", + "Entity 'http://edamontology.org/data_2338' - Label 'Ontology identifier'\n", + "Entity 'http://edamontology.org/data_2339' - Label 'Ontology concept name'\n", + "Entity 'http://edamontology.org/data_2339' - Label 'Ontology concept name'\n", + "Entity 'http://edamontology.org/data_2340' - Label 'Genome build identifier'\n", + "Entity 'http://edamontology.org/data_2342' - Label 'Pathway or network name'\n", + "Entity 'http://edamontology.org/data_2343' - Label 'Pathway ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2343' - Label 'Pathway ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2343' - Label 'Pathway ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2344' - Label 'Pathway ID (NCI-Nature)'\n", + "Entity 'http://edamontology.org/data_2344' - Label 'Pathway ID (NCI-Nature)'\n", + "Entity 'http://edamontology.org/data_2345' - Label 'Pathway ID (ConsensusPathDB)'\n", + "Entity 'http://edamontology.org/data_2345' - Label 'Pathway ID (ConsensusPathDB)'\n", + "Entity 'http://edamontology.org/data_2345' - Label 'Pathway ID (ConsensusPathDB)'\n", + "Entity 'http://edamontology.org/data_2346' - Label 'Sequence cluster ID (UniRef)'\n", + "Entity 'http://edamontology.org/data_2346' - Label 'Sequence cluster ID (UniRef)'\n", + "Entity 'http://edamontology.org/data_2347' - Label 'Sequence cluster ID (UniRef100)'\n", + "Entity 'http://edamontology.org/data_2348' - Label 'Sequence cluster ID (UniRef90)'\n", + "Entity 'http://edamontology.org/data_2349' - Label 'Sequence cluster ID (UniRef50)'\n", + "Entity 'http://edamontology.org/data_2353' - Label 'Ontology data'\n", + "Entity 'http://edamontology.org/data_2353' - Label 'Ontology data'\n", + "Entity 'http://edamontology.org/data_2354' - Label 'RNA family report'\n", + "Entity 'http://edamontology.org/data_2355' - Label 'RNA family identifier'\n", + "Entity 'http://edamontology.org/data_2355' - Label 'RNA family identifier'\n", + "Entity 'http://edamontology.org/data_2356' - Label 'RFAM accession'\n", + "Entity 'http://edamontology.org/data_2356' - Label 'RFAM accession'\n", + "Entity 'http://edamontology.org/data_2357' - Label 'Protein signature type'\n", + "Entity 'http://edamontology.org/data_2357' - Label 'Protein signature type'\n", + "Entity 'http://edamontology.org/data_2358' - Label 'Domain-nucleic acid interaction report'\n", + "Entity 'http://edamontology.org/data_2358' - Label 'Domain-nucleic acid interaction report'\n", + "Entity 'http://edamontology.org/data_2359' - Label 'Domain-domain interactions'\n", + "Entity 'http://edamontology.org/data_2359' - Label 'Domain-domain interactions'\n", + "Entity 'http://edamontology.org/data_2360' - Label 'Domain-domain interaction (indirect)'\n", + "Entity 'http://edamontology.org/data_2360' - Label 'Domain-domain interaction (indirect)'\n", + "Entity 'http://edamontology.org/data_2362' - Label 'Sequence accession (hybrid)'\n", + "Entity 'http://edamontology.org/data_2362' - Label 'Sequence accession (hybrid)'\n", + "Entity 'http://edamontology.org/data_2363' - Label '2D PAGE data'\n", + "Entity 'http://edamontology.org/data_2363' - Label '2D PAGE data'\n", + "Entity 'http://edamontology.org/data_2364' - Label '2D PAGE report'\n", + "Entity 'http://edamontology.org/data_2364' - Label '2D PAGE report'\n", + "Entity 'http://edamontology.org/data_2365' - Label 'Pathway or network accession'\n", + "Entity 'http://edamontology.org/data_2366' - Label 'Secondary structure alignment'\n", + "Entity 'http://edamontology.org/data_2367' - Label 'ASTD ID'\n", + "Entity 'http://edamontology.org/data_2367' - Label 'ASTD ID'\n", + "Entity 'http://edamontology.org/data_2367' - Label 'ASTD ID'\n", + "Entity 'http://edamontology.org/data_2368' - Label 'ASTD ID (exon)'\n", + "Entity 'http://edamontology.org/data_2369' - Label 'ASTD ID (intron)'\n", + "Entity 'http://edamontology.org/data_2370' - Label 'ASTD ID (polya)'\n", + "Entity 'http://edamontology.org/data_2371' - Label 'ASTD ID (tss)'\n", + "Entity 'http://edamontology.org/data_2372' - Label '2D PAGE spot report'\n", + "Entity 'http://edamontology.org/data_2372' - Label '2D PAGE spot report'\n", + "Entity 'http://edamontology.org/data_2373' - Label 'Spot ID'\n", + "Entity 'http://edamontology.org/data_2374' - Label 'Spot serial number'\n", + "Entity 'http://edamontology.org/data_2374' - Label 'Spot serial number'\n", + "Entity 'http://edamontology.org/data_2375' - Label 'Spot ID (HSC-2DPAGE)'\n", + "Entity 'http://edamontology.org/data_2375' - Label 'Spot ID (HSC-2DPAGE)'\n", + "Entity 'http://edamontology.org/data_2378' - Label 'Protein-motif interaction'\n", + "Entity 'http://edamontology.org/data_2378' - Label 'Protein-motif interaction'\n", + "Entity 'http://edamontology.org/data_2379' - Label 'Strain identifier'\n", + "Entity 'http://edamontology.org/data_2380' - Label 'CABRI accession'\n", + "Entity 'http://edamontology.org/data_2380' - Label 'CABRI accession'\n", + "Entity 'http://edamontology.org/data_2381' - Label 'Experiment report (genotyping)'\n", + "Entity 'http://edamontology.org/data_2381' - Label 'Experiment report (genotyping)'\n", + "Entity 'http://edamontology.org/data_2382' - Label 'Genotype experiment ID'\n", + "Entity 'http://edamontology.org/data_2382' - Label 'Genotype experiment ID'\n", + "Entity 'http://edamontology.org/data_2383' - Label 'EGA accession'\n", + "Entity 'http://edamontology.org/data_2383' - Label 'EGA accession'\n", + "Entity 'http://edamontology.org/data_2384' - Label 'IPI protein ID'\n", + "Entity 'http://edamontology.org/data_2384' - Label 'IPI protein ID'\n", + "Entity 'http://edamontology.org/data_2385' - Label 'RefSeq accession (protein)'\n", + "Entity 'http://edamontology.org/data_2386' - Label 'EPD ID'\n", + "Entity 'http://edamontology.org/data_2386' - Label 'EPD ID'\n", + "Entity 'http://edamontology.org/data_2387' - Label 'TAIR accession'\n", + "Entity 'http://edamontology.org/data_2387' - Label 'TAIR accession'\n", + "Entity 'http://edamontology.org/data_2388' - Label 'TAIR accession (At gene)'\n", + "Entity 'http://edamontology.org/data_2389' - Label 'UniSTS accession'\n", + "Entity 'http://edamontology.org/data_2389' - Label 'UniSTS accession'\n", + "Entity 'http://edamontology.org/data_2390' - Label 'UNITE accession'\n", + "Entity 'http://edamontology.org/data_2390' - Label 'UNITE accession'\n", + "Entity 'http://edamontology.org/data_2391' - Label 'UTR accession'\n", + "Entity 'http://edamontology.org/data_2391' - Label 'UTR accession'\n", + "Entity 'http://edamontology.org/data_2392' - Label 'UniParc accession'\n", + "Entity 'http://edamontology.org/data_2392' - Label 'UniParc accession'\n", + "Entity 'http://edamontology.org/data_2393' - Label 'mFLJ/mKIAA number'\n", + "Entity 'http://edamontology.org/data_2393' - Label 'mFLJ/mKIAA number'\n", + "Entity 'http://edamontology.org/data_2395' - Label 'Fungi annotation'\n", + "Entity 'http://edamontology.org/data_2395' - Label 'Fungi annotation'\n", + "Entity 'http://edamontology.org/data_2396' - Label 'Fungi annotation (anamorph)'\n", + "Entity 'http://edamontology.org/data_2396' - Label 'Fungi annotation (anamorph)'\n", + "Entity 'http://edamontology.org/data_2398' - Label 'Ensembl protein ID'\n", + "Entity 'http://edamontology.org/data_2398' - Label 'Ensembl protein ID'\n", + "Entity 'http://edamontology.org/data_2398' - Label 'Ensembl protein ID'\n", + "Entity 'http://edamontology.org/data_2400' - Label 'Toxin annotation'\n", + "Entity 'http://edamontology.org/data_2400' - Label 'Toxin annotation'\n", + "Entity 'http://edamontology.org/data_2401' - Label 'Protein report (membrane protein)'\n", + "Entity 'http://edamontology.org/data_2401' - Label 'Protein report (membrane protein)'\n", + "Entity 'http://edamontology.org/data_2402' - Label 'Protein-drug interaction report'\n", + "Entity 'http://edamontology.org/data_2402' - Label 'Protein-drug interaction report'\n", + "Entity 'http://edamontology.org/data_2522' - Label 'Map data'\n", + "Entity 'http://edamontology.org/data_2522' - Label 'Map data'\n", + "Entity 'http://edamontology.org/data_2522' - Label 'Map data'\n", + "Entity 'http://edamontology.org/data_2523' - Label 'Phylogenetic data'\n", + "Entity 'http://edamontology.org/data_2524' - Label 'Protein data'\n", + "Entity 'http://edamontology.org/data_2524' - Label 'Protein data'\n", + "Entity 'http://edamontology.org/data_2525' - Label 'Nucleic acid data'\n", + "Entity 'http://edamontology.org/data_2525' - Label 'Nucleic acid data'\n", + "Entity 'http://edamontology.org/data_2526' - Label 'Text data'\n", + "Entity 'http://edamontology.org/data_2526' - Label 'Text data'\n", + "Entity 'http://edamontology.org/data_2527' - Label 'Parameter'\n", + "Entity 'http://edamontology.org/data_2527' - Label 'Parameter'\n", + "Entity 'http://edamontology.org/data_2528' - Label 'Molecular data'\n", + "Entity 'http://edamontology.org/data_2528' - Label 'Molecular data'\n", + "Entity 'http://edamontology.org/data_2529' - Label 'Molecule report'\n", + "Entity 'http://edamontology.org/data_2529' - Label 'Molecule report'\n", + "Entity 'http://edamontology.org/data_2529' - Label 'Molecule report'\n", + "Entity 'http://edamontology.org/data_2530' - Label 'Organism report'\n", + "Entity 'http://edamontology.org/data_2531' - Label 'Protocol'\n", + "Entity 'http://edamontology.org/data_2534' - Label 'Sequence attribute'\n", + "Entity 'http://edamontology.org/data_2535' - Label 'Sequence tag profile'\n", + "Entity 'http://edamontology.org/data_2536' - Label 'Mass spectrometry data'\n", + "Entity 'http://edamontology.org/data_2537' - Label 'Protein structure raw data'\n", + "Entity 'http://edamontology.org/data_2538' - Label 'Mutation identifier'\n", + "Entity 'http://edamontology.org/data_2539' - Label 'Alignment data'\n", + "Entity 'http://edamontology.org/data_2539' - Label 'Alignment data'\n", + "Entity 'http://edamontology.org/data_2539' - Label 'Alignment data'\n", + "Entity 'http://edamontology.org/data_2540' - Label 'Data index data'\n", + "Entity 'http://edamontology.org/data_2540' - Label 'Data index data'\n", + "Entity 'http://edamontology.org/data_2563' - Label 'Amino acid name (single letter)'\n", + "Entity 'http://edamontology.org/data_2564' - Label 'Amino acid name (three letter)'\n", + "Entity 'http://edamontology.org/data_2565' - Label 'Amino acid name (full name)'\n", + "Entity 'http://edamontology.org/data_2576' - Label 'Toxin identifier'\n", + "Entity 'http://edamontology.org/data_2576' - Label 'Toxin identifier'\n", + "Entity 'http://edamontology.org/data_2578' - Label 'ArachnoServer ID'\n", + "Entity 'http://edamontology.org/data_2578' - Label 'ArachnoServer ID'\n", + "Entity 'http://edamontology.org/data_2579' - Label 'Expressed gene list'\n", + "Entity 'http://edamontology.org/data_2579' - Label 'Expressed gene list'\n", + "Entity 'http://edamontology.org/data_2580' - Label 'BindingDB Monomer ID'\n", + "Entity 'http://edamontology.org/data_2580' - Label 'BindingDB Monomer ID'\n", + "Entity 'http://edamontology.org/data_2581' - Label 'GO concept name'\n", + "Entity 'http://edamontology.org/data_2581' - Label 'GO concept name'\n", + "Entity 'http://edamontology.org/data_2582' - Label 'GO concept ID (biological process)'\n", + "Entity 'http://edamontology.org/data_2583' - Label 'GO concept ID (molecular function)'\n", + "Entity 'http://edamontology.org/data_2584' - Label 'GO concept name (cellular component)'\n", + "Entity 'http://edamontology.org/data_2584' - Label 'GO concept name (cellular component)'\n", + "Entity 'http://edamontology.org/data_2586' - Label 'Northern blot image'\n", + "Entity 'http://edamontology.org/data_2587' - Label 'Blot ID'\n", + "Entity 'http://edamontology.org/data_2588' - Label 'BlotBase blot ID'\n", + "Entity 'http://edamontology.org/data_2588' - Label 'BlotBase blot ID'\n", + "Entity 'http://edamontology.org/data_2589' - Label 'Hierarchy'\n", + "Entity 'http://edamontology.org/data_2590' - Label 'Hierarchy identifier'\n", + "Entity 'http://edamontology.org/data_2590' - Label 'Hierarchy identifier'\n", + "Entity 'http://edamontology.org/data_2591' - Label 'Brite hierarchy ID'\n", + "Entity 'http://edamontology.org/data_2591' - Label 'Brite hierarchy ID'\n", + "Entity 'http://edamontology.org/data_2592' - Label 'Cancer type'\n", + "Entity 'http://edamontology.org/data_2592' - Label 'Cancer type'\n", + "Entity 'http://edamontology.org/data_2593' - Label 'BRENDA organism ID'\n", + "Entity 'http://edamontology.org/data_2593' - Label 'BRENDA organism ID'\n", + "Entity 'http://edamontology.org/data_2594' - Label 'UniGene taxon'\n", + "Entity 'http://edamontology.org/data_2595' - Label 'UTRdb taxon'\n", + "Entity 'http://edamontology.org/data_2596' - Label 'Catalogue ID'\n", + "Entity 'http://edamontology.org/data_2597' - Label 'CABRI catalogue name'\n", + "Entity 'http://edamontology.org/data_2597' - Label 'CABRI catalogue name'\n", + "Entity 'http://edamontology.org/data_2598' - Label 'Secondary structure alignment metadata'\n", + "Entity 'http://edamontology.org/data_2598' - Label 'Secondary structure alignment metadata'\n", + "Entity 'http://edamontology.org/data_2599' - Label 'Molecule interaction report'\n", + "Entity 'http://edamontology.org/data_2599' - Label 'Molecule interaction report'\n", + "Entity 'http://edamontology.org/data_2600' - Label 'Pathway or network'\n", + "Entity 'http://edamontology.org/data_2600' - Label 'Pathway or network'\n", + "Entity 'http://edamontology.org/data_2601' - Label 'Small molecule data'\n", + "Entity 'http://edamontology.org/data_2601' - Label 'Small molecule data'\n", + "Entity 'http://edamontology.org/data_2602' - Label 'Genotype and phenotype data'\n", + "Entity 'http://edamontology.org/data_2602' - Label 'Genotype and phenotype data'\n", + "Entity 'http://edamontology.org/data_2603' - Label 'Expression data'\n", + "Entity 'http://edamontology.org/data_2603' - Label 'Expression data'\n", + "Entity 'http://edamontology.org/data_2605' - Label 'Compound ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2605' - Label 'Compound ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2606' - Label 'RFAM name'\n", + "Entity 'http://edamontology.org/data_2606' - Label 'RFAM name'\n", + "Entity 'http://edamontology.org/data_2608' - Label 'Reaction ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2608' - Label 'Reaction ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2609' - Label 'Drug ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2609' - Label 'Drug ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2609' - Label 'Drug ID (KEGG)'\n", + "Entity 'http://edamontology.org/data_2610' - Label 'Ensembl ID'\n", + "Entity 'http://edamontology.org/data_2610' - Label 'Ensembl ID'\n", + "Entity 'http://edamontology.org/data_2611' - Label 'ICD identifier'\n", + "Entity 'http://edamontology.org/data_2611' - Label 'ICD identifier'\n", + "Entity 'http://edamontology.org/data_2611' - Label 'ICD identifier'\n", + "Entity 'http://edamontology.org/data_2612' - Label 'Sequence cluster ID (CluSTr)'\n", + "Entity 'http://edamontology.org/data_2612' - Label 'Sequence cluster ID (CluSTr)'\n", + "Entity 'http://edamontology.org/data_2613' - Label 'KEGG Glycan ID'\n", + "Entity 'http://edamontology.org/data_2613' - Label 'KEGG Glycan ID'\n", + "Entity 'http://edamontology.org/data_2613' - Label 'KEGG Glycan ID'\n", + "Entity 'http://edamontology.org/data_2614' - Label 'TCDB ID'\n", + "Entity 'http://edamontology.org/data_2614' - Label 'TCDB ID'\n", + "Entity 'http://edamontology.org/data_2615' - Label 'MINT ID'\n", + "Entity 'http://edamontology.org/data_2615' - Label 'MINT ID'\n", + "Entity 'http://edamontology.org/data_2616' - Label 'DIP ID'\n", + "Entity 'http://edamontology.org/data_2616' - Label 'DIP ID'\n", + "Entity 'http://edamontology.org/data_2617' - Label 'Signaling Gateway protein ID'\n", + "Entity 'http://edamontology.org/data_2617' - Label 'Signaling Gateway protein ID'\n", + "Entity 'http://edamontology.org/data_2618' - Label 'Protein modification ID'\n", + "Entity 'http://edamontology.org/data_2619' - Label 'RESID ID'\n", + "Entity 'http://edamontology.org/data_2619' - Label 'RESID ID'\n", + "Entity 'http://edamontology.org/data_2620' - Label 'RGD ID'\n", + "Entity 'http://edamontology.org/data_2620' - Label 'RGD ID'\n", + "Entity 'http://edamontology.org/data_2621' - Label 'TAIR accession (protein)'\n", + "Entity 'http://edamontology.org/data_2621' - Label 'TAIR accession (protein)'\n", + "Entity 'http://edamontology.org/data_2622' - Label 'Compound ID (HMDB)'\n", + "Entity 'http://edamontology.org/data_2622' - Label 'Compound ID (HMDB)'\n", + "Entity 'http://edamontology.org/data_2625' - Label 'LIPID MAPS ID'\n", + "Entity 'http://edamontology.org/data_2625' - Label 'LIPID MAPS ID'\n", + "Entity 'http://edamontology.org/data_2626' - Label 'PeptideAtlas ID'\n", + "Entity 'http://edamontology.org/data_2626' - Label 'PeptideAtlas ID'\n", + "Entity 'http://edamontology.org/data_2627' - Label 'Molecular interaction ID'\n", + "Entity 'http://edamontology.org/data_2627' - Label 'Molecular interaction ID'\n", + "Entity 'http://edamontology.org/data_2628' - Label 'BioGRID interaction ID'\n", + "Entity 'http://edamontology.org/data_2628' - Label 'BioGRID interaction ID'\n", + "Entity 'http://edamontology.org/data_2629' - Label 'Enzyme ID (MEROPS)'\n", + "Entity 'http://edamontology.org/data_2629' - Label 'Enzyme ID (MEROPS)'\n", + "Entity 'http://edamontology.org/data_2630' - Label 'Mobile genetic element ID'\n", + "Entity 'http://edamontology.org/data_2631' - Label 'ACLAME ID'\n", + "Entity 'http://edamontology.org/data_2631' - Label 'ACLAME ID'\n", + "Entity 'http://edamontology.org/data_2632' - Label 'SGD ID'\n", + "Entity 'http://edamontology.org/data_2632' - Label 'SGD ID'\n", + "Entity 'http://edamontology.org/data_2633' - Label 'Book ID'\n", + "Entity 'http://edamontology.org/data_2634' - Label 'ISBN'\n", + "Entity 'http://edamontology.org/data_2634' - Label 'ISBN'\n", + "Entity 'http://edamontology.org/data_2635' - Label 'Compound ID (3DMET)'\n", + "Entity 'http://edamontology.org/data_2635' - Label 'Compound ID (3DMET)'\n", + "Entity 'http://edamontology.org/data_2636' - Label 'MatrixDB interaction ID'\n", + "Entity 'http://edamontology.org/data_2636' - Label 'MatrixDB interaction ID'\n", + "Entity 'http://edamontology.org/data_2637' - Label 'cPath ID'\n", + "Entity 'http://edamontology.org/data_2637' - Label 'cPath ID'\n", + "Entity 'http://edamontology.org/data_2637' - Label 'cPath ID'\n", + "Entity 'http://edamontology.org/data_2638' - Label 'PubChem bioassay ID'\n", + "Entity 'http://edamontology.org/data_2638' - Label 'PubChem bioassay ID'\n", + "Entity 'http://edamontology.org/data_2639' - Label 'PubChem ID'\n", + "Entity 'http://edamontology.org/data_2639' - Label 'PubChem ID'\n", + "Entity 'http://edamontology.org/data_2641' - Label 'Reaction ID (MACie)'\n", + "Entity 'http://edamontology.org/data_2641' - Label 'Reaction ID (MACie)'\n", + "Entity 'http://edamontology.org/data_2642' - Label 'Gene ID (miRBase)'\n", + "Entity 'http://edamontology.org/data_2642' - Label 'Gene ID (miRBase)'\n", + "Entity 'http://edamontology.org/data_2643' - Label 'Gene ID (ZFIN)'\n", + "Entity 'http://edamontology.org/data_2643' - Label 'Gene ID (ZFIN)'\n", + "Entity 'http://edamontology.org/data_2644' - Label 'Reaction ID (Rhea)'\n", + "Entity 'http://edamontology.org/data_2644' - Label 'Reaction ID (Rhea)'\n", + "Entity 'http://edamontology.org/data_2645' - Label 'Pathway ID (Unipathway)'\n", + "Entity 'http://edamontology.org/data_2645' - Label 'Pathway ID (Unipathway)'\n", + "Entity 'http://edamontology.org/data_2646' - Label 'Compound ID (ChEMBL)'\n", + "Entity 'http://edamontology.org/data_2646' - Label 'Compound ID (ChEMBL)'\n", + "Entity 'http://edamontology.org/data_2647' - Label 'LGICdb identifier'\n", + "Entity 'http://edamontology.org/data_2647' - Label 'LGICdb identifier'\n", + "Entity 'http://edamontology.org/data_2648' - Label 'Reaction kinetics ID (SABIO-RK)'\n", + "Entity 'http://edamontology.org/data_2649' - Label 'PharmGKB ID'\n", + "Entity 'http://edamontology.org/data_2649' - Label 'PharmGKB ID'\n", + "Entity 'http://edamontology.org/data_2650' - Label 'Pathway ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2650' - Label 'Pathway ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2650' - Label 'Pathway ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2651' - Label 'Disease ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2651' - Label 'Disease ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2651' - Label 'Disease ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2652' - Label 'Drug ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2652' - Label 'Drug ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2652' - Label 'Drug ID (PharmGKB)'\n", + "Entity 'http://edamontology.org/data_2653' - Label 'Drug ID (TTD)'\n", + "Entity 'http://edamontology.org/data_2653' - Label 'Drug ID (TTD)'\n", + "Entity 'http://edamontology.org/data_2654' - Label 'Target ID (TTD)'\n", + "Entity 'http://edamontology.org/data_2654' - Label 'Target ID (TTD)'\n", + "Entity 'http://edamontology.org/data_2655' - Label 'Cell type identifier'\n", + "Entity 'http://edamontology.org/data_2656' - Label 'NeuronDB ID'\n", + "Entity 'http://edamontology.org/data_2656' - Label 'NeuronDB ID'\n", + "Entity 'http://edamontology.org/data_2657' - Label 'NeuroMorpho ID'\n", + "Entity 'http://edamontology.org/data_2657' - Label 'NeuroMorpho ID'\n", + "Entity 'http://edamontology.org/data_2658' - Label 'Compound ID (ChemIDplus)'\n", + "Entity 'http://edamontology.org/data_2658' - Label 'Compound ID (ChemIDplus)'\n", + "Entity 'http://edamontology.org/data_2659' - Label 'Pathway ID (SMPDB)'\n", + "Entity 'http://edamontology.org/data_2659' - Label 'Pathway ID (SMPDB)'\n", + "Entity 'http://edamontology.org/data_2660' - Label 'BioNumbers ID'\n", + "Entity 'http://edamontology.org/data_2662' - Label 'T3DB ID'\n", + "Entity 'http://edamontology.org/data_2662' - Label 'T3DB ID'\n", + "Entity 'http://edamontology.org/data_2663' - Label 'Carbohydrate identifier'\n", + "Entity 'http://edamontology.org/data_2663' - Label 'Carbohydrate identifier'\n", + "Entity 'http://edamontology.org/data_2663' - Label 'Carbohydrate identifier'\n", + "Entity 'http://edamontology.org/data_2664' - Label 'GlycomeDB ID'\n", + "Entity 'http://edamontology.org/data_2664' - Label 'GlycomeDB ID'\n", + "Entity 'http://edamontology.org/data_2665' - Label 'LipidBank ID'\n", + "Entity 'http://edamontology.org/data_2665' - Label 'LipidBank ID'\n", + "Entity 'http://edamontology.org/data_2666' - Label 'CDD ID'\n", + "Entity 'http://edamontology.org/data_2666' - Label 'CDD ID'\n", + "Entity 'http://edamontology.org/data_2667' - Label 'MMDB ID'\n", + "Entity 'http://edamontology.org/data_2667' - Label 'MMDB ID'\n", + "Entity 'http://edamontology.org/data_2668' - Label 'iRefIndex ID'\n", + "Entity 'http://edamontology.org/data_2668' - Label 'iRefIndex ID'\n", + "Entity 'http://edamontology.org/data_2669' - Label 'ModelDB ID'\n", + "Entity 'http://edamontology.org/data_2669' - Label 'ModelDB ID'\n", + "Entity 'http://edamontology.org/data_2670' - Label 'Pathway ID (DQCS)'\n", + "Entity 'http://edamontology.org/data_2670' - Label 'Pathway ID (DQCS)'\n", + "Entity 'http://edamontology.org/data_2671' - Label 'Ensembl ID (Homo sapiens)'\n", + "Entity 'http://edamontology.org/data_2671' - Label 'Ensembl ID (Homo sapiens)'\n", + "Entity 'http://edamontology.org/data_2672' - Label 'Ensembl ID ('Bos taurus')'\n", + "Entity 'http://edamontology.org/data_2672' - Label 'Ensembl ID ('Bos taurus')'\n", + "Entity 'http://edamontology.org/data_2673' - Label 'Ensembl ID ('Canis familiaris')'\n", + "Entity 'http://edamontology.org/data_2673' - Label 'Ensembl ID ('Canis familiaris')'\n", + "Entity 'http://edamontology.org/data_2674' - Label 'Ensembl ID ('Cavia porcellus')'\n", + "Entity 'http://edamontology.org/data_2674' - Label 'Ensembl ID ('Cavia porcellus')'\n", + "Entity 'http://edamontology.org/data_2675' - Label 'Ensembl ID ('Ciona intestinalis')'\n", + "Entity 'http://edamontology.org/data_2675' - Label 'Ensembl ID ('Ciona intestinalis')'\n", + "Entity 'http://edamontology.org/data_2676' - Label 'Ensembl ID ('Ciona savignyi')'\n", + "Entity 'http://edamontology.org/data_2676' - Label 'Ensembl ID ('Ciona savignyi')'\n", + "Entity 'http://edamontology.org/data_2677' - Label 'Ensembl ID ('Danio rerio')'\n", + "Entity 'http://edamontology.org/data_2677' - Label 'Ensembl ID ('Danio rerio')'\n", + "Entity 'http://edamontology.org/data_2678' - Label 'Ensembl ID ('Dasypus novemcinctus')'\n", + "Entity 'http://edamontology.org/data_2678' - Label 'Ensembl ID ('Dasypus novemcinctus')'\n", + "Entity 'http://edamontology.org/data_2679' - Label 'Ensembl ID ('Echinops telfairi')'\n", + "Entity 'http://edamontology.org/data_2679' - Label 'Ensembl ID ('Echinops telfairi')'\n", + "Entity 'http://edamontology.org/data_2680' - Label 'Ensembl ID ('Erinaceus europaeus')'\n", + "Entity 'http://edamontology.org/data_2680' - Label 'Ensembl ID ('Erinaceus europaeus')'\n", + "Entity 'http://edamontology.org/data_2681' - Label 'Ensembl ID ('Felis catus')'\n", + "Entity 'http://edamontology.org/data_2681' - Label 'Ensembl ID ('Felis catus')'\n", + "Entity 'http://edamontology.org/data_2682' - Label 'Ensembl ID ('Gallus gallus')'\n", + "Entity 'http://edamontology.org/data_2682' - Label 'Ensembl ID ('Gallus gallus')'\n", + "Entity 'http://edamontology.org/data_2683' - Label 'Ensembl ID ('Gasterosteus aculeatus')'\n", + "Entity 'http://edamontology.org/data_2683' - Label 'Ensembl ID ('Gasterosteus aculeatus')'\n", + "Entity 'http://edamontology.org/data_2684' - Label 'Ensembl ID ('Homo sapiens')'\n", + "Entity 'http://edamontology.org/data_2684' - Label 'Ensembl ID ('Homo sapiens')'\n", + "Entity 'http://edamontology.org/data_2685' - Label 'Ensembl ID ('Loxodonta africana')'\n", + "Entity 'http://edamontology.org/data_2685' - Label 'Ensembl ID ('Loxodonta africana')'\n", + "Entity 'http://edamontology.org/data_2686' - Label 'Ensembl ID ('Macaca mulatta')'\n", + "Entity 'http://edamontology.org/data_2686' - Label 'Ensembl ID ('Macaca mulatta')'\n", + "Entity 'http://edamontology.org/data_2687' - Label 'Ensembl ID ('Monodelphis domestica')'\n", + "Entity 'http://edamontology.org/data_2687' - Label 'Ensembl ID ('Monodelphis domestica')'\n", + "Entity 'http://edamontology.org/data_2688' - Label 'Ensembl ID ('Mus musculus')'\n", + "Entity 'http://edamontology.org/data_2688' - Label 'Ensembl ID ('Mus musculus')'\n", + "Entity 'http://edamontology.org/data_2689' - Label 'Ensembl ID ('Myotis lucifugus')'\n", + "Entity 'http://edamontology.org/data_2689' - Label 'Ensembl ID ('Myotis lucifugus')'\n", + "Entity 'http://edamontology.org/data_2690' - Label 'Ensembl ID (\"Ornithorhynchus anatinus\")'\n", + "Entity 'http://edamontology.org/data_2690' - Label 'Ensembl ID (\"Ornithorhynchus anatinus\")'\n", + "Entity 'http://edamontology.org/data_2691' - Label 'Ensembl ID ('Oryctolagus cuniculus')'\n", + "Entity 'http://edamontology.org/data_2691' - Label 'Ensembl ID ('Oryctolagus cuniculus')'\n", + "Entity 'http://edamontology.org/data_2692' - Label 'Ensembl ID ('Oryzias latipes')'\n", + "Entity 'http://edamontology.org/data_2692' - Label 'Ensembl ID ('Oryzias latipes')'\n", + "Entity 'http://edamontology.org/data_2693' - Label 'Ensembl ID ('Otolemur garnettii')'\n", + "Entity 'http://edamontology.org/data_2693' - Label 'Ensembl ID ('Otolemur garnettii')'\n", + "Entity 'http://edamontology.org/data_2694' - Label 'Ensembl ID ('Pan troglodytes')'\n", + "Entity 'http://edamontology.org/data_2694' - Label 'Ensembl ID ('Pan troglodytes')'\n", + "Entity 'http://edamontology.org/data_2695' - Label 'Ensembl ID ('Rattus norvegicus')'\n", + "Entity 'http://edamontology.org/data_2695' - Label 'Ensembl ID ('Rattus norvegicus')'\n", + "Entity 'http://edamontology.org/data_2696' - Label 'Ensembl ID ('Spermophilus tridecemlineatus')'\n", + "Entity 'http://edamontology.org/data_2696' - Label 'Ensembl ID ('Spermophilus tridecemlineatus')'\n", + "Entity 'http://edamontology.org/data_2697' - Label 'Ensembl ID ('Takifugu rubripes')'\n", + "Entity 'http://edamontology.org/data_2697' - Label 'Ensembl ID ('Takifugu rubripes')'\n", + "Entity 'http://edamontology.org/data_2698' - Label 'Ensembl ID ('Tupaia belangeri')'\n", + "Entity 'http://edamontology.org/data_2698' - Label 'Ensembl ID ('Tupaia belangeri')'\n", + "Entity 'http://edamontology.org/data_2699' - Label 'Ensembl ID ('Xenopus tropicalis')'\n", + "Entity 'http://edamontology.org/data_2699' - Label 'Ensembl ID ('Xenopus tropicalis')'\n", + "Entity 'http://edamontology.org/data_2700' - Label 'CATH identifier'\n", + "Entity 'http://edamontology.org/data_2700' - Label 'CATH identifier'\n", + "Entity 'http://edamontology.org/data_2701' - Label 'CATH node ID (family)'\n", + "Entity 'http://edamontology.org/data_2702' - Label 'Enzyme ID (CAZy)'\n", + "Entity 'http://edamontology.org/data_2702' - Label 'Enzyme ID (CAZy)'\n", + "Entity 'http://edamontology.org/data_2704' - Label 'Clone ID (IMAGE)'\n", + "Entity 'http://edamontology.org/data_2704' - Label 'Clone ID (IMAGE)'\n", + "Entity 'http://edamontology.org/data_2705' - Label 'GO concept ID (cellular component)'\n", + "Entity 'http://edamontology.org/data_2706' - Label 'Chromosome name (BioCyc)'\n", + "Entity 'http://edamontology.org/data_2709' - Label 'CleanEx entry name'\n", + "Entity 'http://edamontology.org/data_2709' - Label 'CleanEx entry name'\n", + "Entity 'http://edamontology.org/data_2710' - Label 'CleanEx dataset code'\n", + "Entity 'http://edamontology.org/data_2711' - Label 'Genome report'\n", + "Entity 'http://edamontology.org/data_2713' - Label 'Protein ID (CORUM)'\n", + "Entity 'http://edamontology.org/data_2713' - Label 'Protein ID (CORUM)'\n", + "Entity 'http://edamontology.org/data_2714' - Label 'CDD PSSM-ID'\n", + "Entity 'http://edamontology.org/data_2714' - Label 'CDD PSSM-ID'\n", + "Entity 'http://edamontology.org/data_2715' - Label 'Protein ID (CuticleDB)'\n", + "Entity 'http://edamontology.org/data_2715' - Label 'Protein ID (CuticleDB)'\n", + "Entity 'http://edamontology.org/data_2716' - Label 'DBD ID'\n", + "Entity 'http://edamontology.org/data_2716' - Label 'DBD ID'\n", + "Entity 'http://edamontology.org/data_2717' - Label 'Oligonucleotide probe annotation'\n", + "Entity 'http://edamontology.org/data_2717' - Label 'Oligonucleotide probe annotation'\n", + "Entity 'http://edamontology.org/data_2718' - Label 'Oligonucleotide ID'\n", + "Entity 'http://edamontology.org/data_2718' - Label 'Oligonucleotide ID'\n", + "Entity 'http://edamontology.org/data_2719' - Label 'dbProbe ID'\n", + "Entity 'http://edamontology.org/data_2719' - Label 'dbProbe ID'\n", + "Entity 'http://edamontology.org/data_2720' - Label 'Dinucleotide property'\n", + "Entity 'http://edamontology.org/data_2721' - Label 'DiProDB ID'\n", + "Entity 'http://edamontology.org/data_2721' - Label 'DiProDB ID'\n", + "Entity 'http://edamontology.org/data_2722' - Label 'Protein features report (disordered structure)'\n", + "Entity 'http://edamontology.org/data_2722' - Label 'Protein features report (disordered structure)'\n", + "Entity 'http://edamontology.org/data_2723' - Label 'Protein ID (DisProt)'\n", + "Entity 'http://edamontology.org/data_2723' - Label 'Protein ID (DisProt)'\n", + "Entity 'http://edamontology.org/data_2724' - Label 'Embryo report'\n", + "Entity 'http://edamontology.org/data_2724' - Label 'Embryo report'\n", + "Entity 'http://edamontology.org/data_2725' - Label 'Ensembl transcript ID'\n", + "Entity 'http://edamontology.org/data_2725' - Label 'Ensembl transcript ID'\n", + "Entity 'http://edamontology.org/data_2725' - Label 'Ensembl transcript ID'\n", + "Entity 'http://edamontology.org/data_2726' - Label 'Inhibitor annotation'\n", + "Entity 'http://edamontology.org/data_2726' - Label 'Inhibitor annotation'\n", + "Entity 'http://edamontology.org/data_2727' - Label 'Promoter ID'\n", + "Entity 'http://edamontology.org/data_2728' - Label 'EST accession'\n", + "Entity 'http://edamontology.org/data_2729' - Label 'COGEME EST ID'\n", + "Entity 'http://edamontology.org/data_2729' - Label 'COGEME EST ID'\n", + "Entity 'http://edamontology.org/data_2730' - Label 'COGEME unisequence ID'\n", + "Entity 'http://edamontology.org/data_2730' - Label 'COGEME unisequence ID'\n", + "Entity 'http://edamontology.org/data_2731' - Label 'Protein family ID (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_2731' - Label 'Protein family ID (GeneFarm)'\n", + "Entity 'http://edamontology.org/data_2732' - Label 'Family name'\n", + "Entity 'http://edamontology.org/data_2733' - Label 'Genus name (virus)'\n", + "Entity 'http://edamontology.org/data_2733' - Label 'Genus name (virus)'\n", + "Entity 'http://edamontology.org/data_2734' - Label 'Family name (virus)'\n", + "Entity 'http://edamontology.org/data_2734' - Label 'Family name (virus)'\n", + "Entity 'http://edamontology.org/data_2735' - Label 'Database name (SwissRegulon)'\n", + "Entity 'http://edamontology.org/data_2735' - Label 'Database name (SwissRegulon)'\n", + "Entity 'http://edamontology.org/data_2736' - Label 'Sequence feature ID (SwissRegulon)'\n", + "Entity 'http://edamontology.org/data_2736' - Label 'Sequence feature ID (SwissRegulon)'\n", + "Entity 'http://edamontology.org/data_2737' - Label 'FIG ID'\n", + "Entity 'http://edamontology.org/data_2737' - Label 'FIG ID'\n", + "Entity 'http://edamontology.org/data_2738' - Label 'Gene ID (Xenbase)'\n", + "Entity 'http://edamontology.org/data_2738' - Label 'Gene ID (Xenbase)'\n", + "Entity 'http://edamontology.org/data_2739' - Label 'Gene ID (Genolist)'\n", + "Entity 'http://edamontology.org/data_2739' - Label 'Gene ID (Genolist)'\n", + "Entity 'http://edamontology.org/data_2740' - Label 'Gene name (Genolist)'\n", + "Entity 'http://edamontology.org/data_2740' - Label 'Gene name (Genolist)'\n", + "Entity 'http://edamontology.org/data_2741' - Label 'ABS ID'\n", + "Entity 'http://edamontology.org/data_2741' - Label 'ABS ID'\n", + "Entity 'http://edamontology.org/data_2742' - Label 'AraC-XylS ID'\n", + "Entity 'http://edamontology.org/data_2742' - Label 'AraC-XylS ID'\n", + "Entity 'http://edamontology.org/data_2743' - Label 'Gene name (HUGO)'\n", + "Entity 'http://edamontology.org/data_2743' - Label 'Gene name (HUGO)'\n", + "Entity 'http://edamontology.org/data_2744' - Label 'Locus ID (PseudoCAP)'\n", + "Entity 'http://edamontology.org/data_2744' - Label 'Locus ID (PseudoCAP)'\n", + "Entity 'http://edamontology.org/data_2745' - Label 'Locus ID (UTR)'\n", + "Entity 'http://edamontology.org/data_2745' - Label 'Locus ID (UTR)'\n", + "Entity 'http://edamontology.org/data_2746' - Label 'MonosaccharideDB ID'\n", + "Entity 'http://edamontology.org/data_2746' - Label 'MonosaccharideDB ID'\n", + "Entity 'http://edamontology.org/data_2747' - Label 'Database name (CMD)'\n", + "Entity 'http://edamontology.org/data_2747' - Label 'Database name (CMD)'\n", + "Entity 'http://edamontology.org/data_2748' - Label 'Database name (Osteogenesis)'\n", + "Entity 'http://edamontology.org/data_2748' - Label 'Database name (Osteogenesis)'\n", + "Entity 'http://edamontology.org/data_2749' - Label 'Genome identifier'\n", + "Entity 'http://edamontology.org/data_2751' - Label 'GenomeReviews ID'\n", + "Entity 'http://edamontology.org/data_2751' - Label 'GenomeReviews ID'\n", + "Entity 'http://edamontology.org/data_2752' - Label 'GlycoMap ID'\n", + "Entity 'http://edamontology.org/data_2752' - Label 'GlycoMap ID'\n", + "Entity 'http://edamontology.org/data_2753' - Label 'Carbohydrate conformational map'\n", + "Entity 'http://edamontology.org/data_2755' - Label 'Transcription factor name'\n", + "Entity 'http://edamontology.org/data_2755' - Label 'Transcription factor name'\n", + "Entity 'http://edamontology.org/data_2756' - Label 'TCID'\n", + "Entity 'http://edamontology.org/data_2756' - Label 'TCID'\n", + "Entity 'http://edamontology.org/data_2757' - Label 'Pfam domain name'\n", + "Entity 'http://edamontology.org/data_2758' - Label 'Pfam clan ID'\n", + "Entity 'http://edamontology.org/data_2758' - Label 'Pfam clan ID'\n", + "Entity 'http://edamontology.org/data_2759' - Label 'Gene ID (VectorBase)'\n", + "Entity 'http://edamontology.org/data_2759' - Label 'Gene ID (VectorBase)'\n", + "Entity 'http://edamontology.org/data_2761' - Label 'UTRSite ID'\n", + "Entity 'http://edamontology.org/data_2762' - Label 'Sequence signature report'\n", + "Entity 'http://edamontology.org/data_2762' - Label 'Sequence signature report'\n", + "Entity 'http://edamontology.org/data_2763' - Label 'Locus annotation'\n", + "Entity 'http://edamontology.org/data_2763' - Label 'Locus annotation'\n", + "Entity 'http://edamontology.org/data_2764' - Label 'Protein name (UniProt)'\n", + "Entity 'http://edamontology.org/data_2765' - Label 'Term ID list'\n", + "Entity 'http://edamontology.org/data_2765' - Label 'Term ID list'\n", + "Entity 'http://edamontology.org/data_2766' - Label 'HAMAP ID'\n", + "Entity 'http://edamontology.org/data_2766' - Label 'HAMAP ID'\n", + "Entity 'http://edamontology.org/data_2767' - Label 'Identifier with metadata'\n", + "Entity 'http://edamontology.org/data_2767' - Label 'Identifier with metadata'\n", + "Entity 'http://edamontology.org/data_2768' - Label 'Gene symbol annotation'\n", + "Entity 'http://edamontology.org/data_2768' - Label 'Gene symbol annotation'\n", + "Entity 'http://edamontology.org/data_2769' - Label 'Transcript ID'\n", + "Entity 'http://edamontology.org/data_2769' - Label 'Transcript ID'\n", + "Entity 'http://edamontology.org/data_2769' - Label 'Transcript ID'\n", + "Entity 'http://edamontology.org/data_2770' - Label 'HIT ID'\n", + "Entity 'http://edamontology.org/data_2770' - Label 'HIT ID'\n", + "Entity 'http://edamontology.org/data_2771' - Label 'HIX ID'\n", + "Entity 'http://edamontology.org/data_2771' - Label 'HIX ID'\n", + "Entity 'http://edamontology.org/data_2772' - Label 'HPA antibody id'\n", + "Entity 'http://edamontology.org/data_2772' - Label 'HPA antibody id'\n", + "Entity 'http://edamontology.org/data_2773' - Label 'IMGT/HLA ID'\n", + "Entity 'http://edamontology.org/data_2773' - Label 'IMGT/HLA ID'\n", + "Entity 'http://edamontology.org/data_2774' - Label 'Gene ID (JCVI)'\n", + "Entity 'http://edamontology.org/data_2774' - Label 'Gene ID (JCVI)'\n", + "Entity 'http://edamontology.org/data_2775' - Label 'Kinase name'\n", + "Entity 'http://edamontology.org/data_2776' - Label 'ConsensusPathDB entity ID'\n", + "Entity 'http://edamontology.org/data_2776' - Label 'ConsensusPathDB entity ID'\n", + "Entity 'http://edamontology.org/data_2777' - Label 'ConsensusPathDB entity name'\n", + "Entity 'http://edamontology.org/data_2777' - Label 'ConsensusPathDB entity name'\n", + "Entity 'http://edamontology.org/data_2778' - Label 'CCAP strain number'\n", + "Entity 'http://edamontology.org/data_2778' - Label 'CCAP strain number'\n", + "Entity 'http://edamontology.org/data_2779' - Label 'Stock number'\n", + "Entity 'http://edamontology.org/data_2780' - Label 'Stock number (TAIR)'\n", + "Entity 'http://edamontology.org/data_2780' - Label 'Stock number (TAIR)'\n", + "Entity 'http://edamontology.org/data_2781' - Label 'REDIdb ID'\n", + "Entity 'http://edamontology.org/data_2781' - Label 'REDIdb ID'\n", + "Entity 'http://edamontology.org/data_2782' - Label 'SMART domain name'\n", + "Entity 'http://edamontology.org/data_2783' - Label 'Protein family ID (PANTHER)'\n", + "Entity 'http://edamontology.org/data_2783' - Label 'Protein family ID (PANTHER)'\n", + "Entity 'http://edamontology.org/data_2784' - Label 'RNAVirusDB ID'\n", + "Entity 'http://edamontology.org/data_2784' - Label 'RNAVirusDB ID'\n", + "Entity 'http://edamontology.org/data_2785' - Label 'Virus identifier'\n", + "Entity 'http://edamontology.org/data_2786' - Label 'NCBI Genome Project ID'\n", + "Entity 'http://edamontology.org/data_2786' - Label 'NCBI Genome Project ID'\n", + "Entity 'http://edamontology.org/data_2787' - Label 'NCBI genome accession'\n", + "Entity 'http://edamontology.org/data_2787' - Label 'NCBI genome accession'\n", + "Entity 'http://edamontology.org/data_2788' - Label 'Sequence profile data'\n", + "Entity 'http://edamontology.org/data_2788' - Label 'Sequence profile data'\n", + "Entity 'http://edamontology.org/data_2789' - Label 'Protein ID (TopDB)'\n", + "Entity 'http://edamontology.org/data_2789' - Label 'Protein ID (TopDB)'\n", + "Entity 'http://edamontology.org/data_2790' - Label 'Gel ID'\n", + "Entity 'http://edamontology.org/data_2791' - Label 'Reference map name (SWISS-2DPAGE)'\n", + "Entity 'http://edamontology.org/data_2791' - Label 'Reference map name (SWISS-2DPAGE)'\n", + "Entity 'http://edamontology.org/data_2792' - Label 'Protein ID (PeroxiBase)'\n", + "Entity 'http://edamontology.org/data_2792' - Label 'Protein ID (PeroxiBase)'\n", + "Entity 'http://edamontology.org/data_2793' - Label 'SISYPHUS ID'\n", + "Entity 'http://edamontology.org/data_2793' - Label 'SISYPHUS ID'\n", + "Entity 'http://edamontology.org/data_2794' - Label 'ORF ID'\n", + "Entity 'http://edamontology.org/data_2794' - Label 'ORF ID'\n", + "Entity 'http://edamontology.org/data_2794' - Label 'ORF ID'\n", + "Entity 'http://edamontology.org/data_2795' - Label 'ORF identifier'\n", + "Entity 'http://edamontology.org/data_2796' - Label 'LINUCS ID'\n", + "Entity 'http://edamontology.org/data_2796' - Label 'LINUCS ID'\n", + "Entity 'http://edamontology.org/data_2797' - Label 'Protein ID (LGICdb)'\n", + "Entity 'http://edamontology.org/data_2797' - Label 'Protein ID (LGICdb)'\n", + "Entity 'http://edamontology.org/data_2798' - Label 'MaizeDB ID'\n", + "Entity 'http://edamontology.org/data_2798' - Label 'MaizeDB ID'\n", + "Entity 'http://edamontology.org/data_2799' - Label 'Gene ID (MfunGD)'\n", + "Entity 'http://edamontology.org/data_2799' - Label 'Gene ID (MfunGD)'\n", + "Entity 'http://edamontology.org/data_2800' - Label 'Orpha number'\n", + "Entity 'http://edamontology.org/data_2800' - Label 'Orpha number'\n", + "Entity 'http://edamontology.org/data_2800' - Label 'Orpha number'\n", + "Entity 'http://edamontology.org/data_2802' - Label 'Protein ID (EcID)'\n", + "Entity 'http://edamontology.org/data_2802' - Label 'Protein ID (EcID)'\n", + "Entity 'http://edamontology.org/data_2803' - Label 'Clone ID (RefSeq)'\n", + "Entity 'http://edamontology.org/data_2803' - Label 'Clone ID (RefSeq)'\n", + "Entity 'http://edamontology.org/data_2804' - Label 'Protein ID (ConoServer)'\n", + "Entity 'http://edamontology.org/data_2804' - Label 'Protein ID (ConoServer)'\n", + "Entity 'http://edamontology.org/data_2805' - Label 'GeneSNP ID'\n", + "Entity 'http://edamontology.org/data_2805' - Label 'GeneSNP ID'\n", + "Entity 'http://edamontology.org/data_2812' - Label 'Lipid identifier'\n", + "Entity 'http://edamontology.org/data_2812' - Label 'Lipid identifier'\n", + "Entity 'http://edamontology.org/data_2812' - Label 'Lipid identifier'\n", + "Entity 'http://edamontology.org/data_2831' - Label 'Databank'\n", + "Entity 'http://edamontology.org/data_2831' - Label 'Databank'\n", + "Entity 'http://edamontology.org/data_2832' - Label 'Web portal'\n", + "Entity 'http://edamontology.org/data_2832' - Label 'Web portal'\n", + "Entity 'http://edamontology.org/data_2835' - Label 'Gene ID (VBASE2)'\n", + "Entity 'http://edamontology.org/data_2835' - Label 'Gene ID (VBASE2)'\n", + "Entity 'http://edamontology.org/data_2836' - Label 'DPVweb ID'\n", + "Entity 'http://edamontology.org/data_2836' - Label 'DPVweb ID'\n", + "Entity 'http://edamontology.org/data_2837' - Label 'Pathway ID (BioSystems)'\n", + "Entity 'http://edamontology.org/data_2837' - Label 'Pathway ID (BioSystems)'\n", + "Entity 'http://edamontology.org/data_2838' - Label 'Experimental data (proteomics)'\n", + "Entity 'http://edamontology.org/data_2838' - Label 'Experimental data (proteomics)'\n", + "Entity 'http://edamontology.org/data_2849' - Label 'Abstract'\n", + "Entity 'http://edamontology.org/data_2850' - Label 'Lipid structure'\n", + "Entity 'http://edamontology.org/data_2851' - Label 'Drug structure'\n", + "Entity 'http://edamontology.org/data_2852' - Label 'Toxin structure'\n", + "Entity 'http://edamontology.org/data_2854' - Label 'Position-specific scoring matrix'\n", + "Entity 'http://edamontology.org/data_2854' - Label 'Position-specific scoring matrix'\n", + "Entity 'http://edamontology.org/data_2855' - Label 'Distance matrix'\n", + "Entity 'http://edamontology.org/data_2856' - Label 'Structural distance matrix'\n", + "Entity 'http://edamontology.org/data_2857' - Label 'Article metadata'\n", + "Entity 'http://edamontology.org/data_2857' - Label 'Article metadata'\n", + "Entity 'http://edamontology.org/data_2858' - Label 'Ontology concept'\n", + "Entity 'http://edamontology.org/data_2865' - Label 'Codon usage bias'\n", + "Entity 'http://edamontology.org/data_2866' - Label 'Northern blot report'\n", + "Entity 'http://edamontology.org/data_2866' - Label 'Northern blot report'\n", + "Entity 'http://edamontology.org/data_2870' - Label 'Radiation hybrid map'\n", + "Entity 'http://edamontology.org/data_2872' - Label 'ID list'\n", + "Entity 'http://edamontology.org/data_2873' - Label 'Phylogenetic gene frequencies data'\n", + "Entity 'http://edamontology.org/data_2874' - Label 'Sequence set (polymorphic)'\n", + "Entity 'http://edamontology.org/data_2874' - Label 'Sequence set (polymorphic)'\n", + "Entity 'http://edamontology.org/data_2875' - Label 'DRCAT resource'\n", + "Entity 'http://edamontology.org/data_2875' - Label 'DRCAT resource'\n", + "Entity 'http://edamontology.org/data_2877' - Label 'Protein complex'\n", + "Entity 'http://edamontology.org/data_2878' - Label 'Protein structural motif'\n", + "Entity 'http://edamontology.org/data_2879' - Label 'Lipid report'\n", + "Entity 'http://edamontology.org/data_2880' - Label 'Secondary structure image'\n", + "Entity 'http://edamontology.org/data_2880' - Label 'Secondary structure image'\n", + "Entity 'http://edamontology.org/data_2881' - Label 'Secondary structure report'\n", + "Entity 'http://edamontology.org/data_2881' - Label 'Secondary structure report'\n", + "Entity 'http://edamontology.org/data_2882' - Label 'DNA features'\n", + "Entity 'http://edamontology.org/data_2882' - Label 'DNA features'\n", + "Entity 'http://edamontology.org/data_2883' - Label 'RNA features report'\n", + "Entity 'http://edamontology.org/data_2883' - Label 'RNA features report'\n", + "Entity 'http://edamontology.org/data_2884' - Label 'Plot'\n", + "Entity 'http://edamontology.org/data_2886' - Label 'Protein sequence record'\n", + "Entity 'http://edamontology.org/data_2886' - Label 'Protein sequence record'\n", + "Entity 'http://edamontology.org/data_2887' - Label 'Nucleic acid sequence record'\n", + "Entity 'http://edamontology.org/data_2887' - Label 'Nucleic acid sequence record'\n", + "Entity 'http://edamontology.org/data_2888' - Label 'Protein sequence record (full)'\n", + "Entity 'http://edamontology.org/data_2888' - Label 'Protein sequence record (full)'\n", + "Entity 'http://edamontology.org/data_2889' - Label 'Nucleic acid sequence record (full)'\n", + "Entity 'http://edamontology.org/data_2889' - Label 'Nucleic acid sequence record (full)'\n", + "Entity 'http://edamontology.org/data_2891' - Label 'Biological model accession'\n", + "Entity 'http://edamontology.org/data_2892' - Label 'Cell type name'\n", + "Entity 'http://edamontology.org/data_2892' - Label 'Cell type name'\n", + "Entity 'http://edamontology.org/data_2893' - Label 'Cell type accession'\n", + "Entity 'http://edamontology.org/data_2894' - Label 'Compound accession'\n", + "Entity 'http://edamontology.org/data_2894' - Label 'Compound accession'\n", + "Entity 'http://edamontology.org/data_2895' - Label 'Drug accession'\n", + "Entity 'http://edamontology.org/data_2896' - Label 'Toxin name'\n", + "Entity 'http://edamontology.org/data_2896' - Label 'Toxin name'\n", + "Entity 'http://edamontology.org/data_2897' - Label 'Toxin accession'\n", + "Entity 'http://edamontology.org/data_2898' - Label 'Monosaccharide accession'\n", + "Entity 'http://edamontology.org/data_2899' - Label 'Drug name'\n", + "Entity 'http://edamontology.org/data_2899' - Label 'Drug name'\n", + "Entity 'http://edamontology.org/data_2900' - Label 'Carbohydrate accession'\n", + "Entity 'http://edamontology.org/data_2900' - Label 'Carbohydrate accession'\n", + "Entity 'http://edamontology.org/data_2901' - Label 'Molecule accession'\n", + "Entity 'http://edamontology.org/data_2902' - Label 'Data resource definition accession'\n", + "Entity 'http://edamontology.org/data_2903' - Label 'Genome accession'\n", + "Entity 'http://edamontology.org/data_2904' - Label 'Map accession'\n", + "Entity 'http://edamontology.org/data_2905' - Label 'Lipid accession'\n", + "Entity 'http://edamontology.org/data_2905' - Label 'Lipid accession'\n", + "Entity 'http://edamontology.org/data_2906' - Label 'Peptide ID'\n", + "Entity 'http://edamontology.org/data_2906' - Label 'Peptide ID'\n", + "Entity 'http://edamontology.org/data_2907' - Label 'Protein accession'\n", + "Entity 'http://edamontology.org/data_2907' - Label 'Protein accession'\n", + "Entity 'http://edamontology.org/data_2908' - Label 'Organism accession'\n", + "Entity 'http://edamontology.org/data_2909' - Label 'Organism name'\n", + "Entity 'http://edamontology.org/data_2909' - Label 'Organism name'\n", + "Entity 'http://edamontology.org/data_2910' - Label 'Protein family accession'\n", + "Entity 'http://edamontology.org/data_2911' - Label 'Transcription factor accession'\n", + "Entity 'http://edamontology.org/data_2911' - Label 'Transcription factor accession'\n", + "Entity 'http://edamontology.org/data_2912' - Label 'Strain accession'\n", + "Entity 'http://edamontology.org/data_2912' - Label 'Strain accession'\n", + "Entity 'http://edamontology.org/data_2912' - Label 'Strain accession'\n", + "Entity 'http://edamontology.org/data_2913' - Label 'Virus identifier'\n", + "Entity 'http://edamontology.org/data_2913' - Label 'Virus identifier'\n", + "Entity 'http://edamontology.org/data_2914' - Label 'Sequence features metadata'\n", + "Entity 'http://edamontology.org/data_2915' - Label 'Gramene identifier'\n", + "Entity 'http://edamontology.org/data_2915' - Label 'Gramene identifier'\n", + "Entity 'http://edamontology.org/data_2916' - Label 'DDBJ accession'\n", + "Entity 'http://edamontology.org/data_2917' - Label 'ConsensusPathDB identifier'\n", + "Entity 'http://edamontology.org/data_2925' - Label 'Sequence data'\n", + "Entity 'http://edamontology.org/data_2925' - Label 'Sequence data'\n", + "Entity 'http://edamontology.org/data_2927' - Label 'Codon usage'\n", + "Entity 'http://edamontology.org/data_2927' - Label 'Codon usage'\n", + "Entity 'http://edamontology.org/data_2954' - Label 'Article report'\n", + "Entity 'http://edamontology.org/data_2954' - Label 'Article report'\n", + "Entity 'http://edamontology.org/data_2954' - Label 'Article report'\n", + "Entity 'http://edamontology.org/data_2955' - Label 'Sequence report'\n", + "Entity 'http://edamontology.org/data_2956' - Label 'Protein secondary structure'\n", + "Entity 'http://edamontology.org/data_2957' - Label 'Hopp and Woods plot'\n", + "Entity 'http://edamontology.org/data_2957' - Label 'Hopp and Woods plot'\n", + "Entity 'http://edamontology.org/data_2958' - Label 'Nucleic acid melting curve'\n", + "Entity 'http://edamontology.org/data_2958' - Label 'Nucleic acid melting curve'\n", + "Entity 'http://edamontology.org/data_2959' - Label 'Nucleic acid probability profile'\n", + "Entity 'http://edamontology.org/data_2959' - Label 'Nucleic acid probability profile'\n", + "Entity 'http://edamontology.org/data_2960' - Label 'Nucleic acid temperature profile'\n", + "Entity 'http://edamontology.org/data_2960' - Label 'Nucleic acid temperature profile'\n", + "Entity 'http://edamontology.org/data_2961' - Label 'Gene regulatory network report'\n", + "Entity 'http://edamontology.org/data_2961' - Label 'Gene regulatory network report'\n", + "Entity 'http://edamontology.org/data_2965' - Label '2D PAGE gel report'\n", + "Entity 'http://edamontology.org/data_2965' - Label '2D PAGE gel report'\n", + "Entity 'http://edamontology.org/data_2966' - Label 'Oligonucleotide probe sets annotation'\n", + "Entity 'http://edamontology.org/data_2966' - Label 'Oligonucleotide probe sets annotation'\n", + "Entity 'http://edamontology.org/data_2967' - Label 'Microarray image'\n", + "Entity 'http://edamontology.org/data_2967' - Label 'Microarray image'\n", + "Entity 'http://edamontology.org/data_2968' - Label 'Image'\n", + "Entity 'http://edamontology.org/data_2969' - Label 'Sequence image'\n", + "Entity 'http://edamontology.org/data_2969' - Label 'Sequence image'\n", + "Entity 'http://edamontology.org/data_2970' - Label 'Protein hydropathy data'\n", + "Entity 'http://edamontology.org/data_2971' - Label 'Workflow data'\n", + "Entity 'http://edamontology.org/data_2971' - Label 'Workflow data'\n", + "Entity 'http://edamontology.org/data_2972' - Label 'Workflow'\n", + "Entity 'http://edamontology.org/data_2972' - Label 'Workflow'\n", + "Entity 'http://edamontology.org/data_2973' - Label 'Secondary structure data'\n", + "Entity 'http://edamontology.org/data_2973' - Label 'Secondary structure data'\n", + "Entity 'http://edamontology.org/data_2974' - Label 'Protein sequence (raw)'\n", + "Entity 'http://edamontology.org/data_2974' - Label 'Protein sequence (raw)'\n", + "Entity 'http://edamontology.org/data_2975' - Label 'Nucleic acid sequence (raw)'\n", + "Entity 'http://edamontology.org/data_2975' - Label 'Nucleic acid sequence (raw)'\n", + "Entity 'http://edamontology.org/data_2976' - Label 'Protein sequence'\n", + "Entity 'http://edamontology.org/data_2977' - Label 'Nucleic acid sequence'\n", + "Entity 'http://edamontology.org/data_2978' - Label 'Reaction data'\n", + "Entity 'http://edamontology.org/data_2979' - Label 'Peptide property'\n", + "Entity 'http://edamontology.org/data_2980' - Label 'Protein classification'\n", + "Entity 'http://edamontology.org/data_2980' - Label 'Protein classification'\n", + "Entity 'http://edamontology.org/data_2981' - Label 'Sequence motif data'\n", + "Entity 'http://edamontology.org/data_2981' - Label 'Sequence motif data'\n", + "Entity 'http://edamontology.org/data_2982' - Label 'Sequence profile data'\n", + "Entity 'http://edamontology.org/data_2982' - Label 'Sequence profile data'\n", + "Entity 'http://edamontology.org/data_2983' - Label 'Pathway or network data'\n", + "Entity 'http://edamontology.org/data_2983' - Label 'Pathway or network data'\n", + "Entity 'http://edamontology.org/data_2983' - Label 'Pathway or network data'\n", + "Entity 'http://edamontology.org/data_2984' - Label 'Pathway or network report'\n", + "Entity 'http://edamontology.org/data_2984' - Label 'Pathway or network report'\n", + "Entity 'http://edamontology.org/data_2985' - Label 'Nucleic acid thermodynamic data'\n", + "Entity 'http://edamontology.org/data_2986' - Label 'Nucleic acid classification'\n", + "Entity 'http://edamontology.org/data_2986' - Label 'Nucleic acid classification'\n", + "Entity 'http://edamontology.org/data_2987' - Label 'Classification report'\n", + "Entity 'http://edamontology.org/data_2987' - Label 'Classification report'\n", + "Entity 'http://edamontology.org/data_2989' - Label 'Protein features report (key folding sites)'\n", + "Entity 'http://edamontology.org/data_2989' - Label 'Protein features report (key folding sites)'\n", + "Entity 'http://edamontology.org/data_2991' - Label 'Protein geometry data'\n", + "Entity 'http://edamontology.org/data_2992' - Label 'Protein structure image'\n", + "Entity 'http://edamontology.org/data_2992' - Label 'Protein structure image'\n", + "Entity 'http://edamontology.org/data_2994' - Label 'Phylogenetic character weights'\n", + "Entity 'http://edamontology.org/data_3002' - Label 'Annotation track'\n", + "Entity 'http://edamontology.org/data_3021' - Label 'UniProt accession'\n", + "Entity 'http://edamontology.org/data_3021' - Label 'UniProt accession'\n", + "Entity 'http://edamontology.org/data_3022' - Label 'NCBI genetic code ID'\n", + "Entity 'http://edamontology.org/data_3022' - Label 'NCBI genetic code ID'\n", + "Entity 'http://edamontology.org/data_3025' - Label 'Ontology concept identifier'\n", + "Entity 'http://edamontology.org/data_3025' - Label 'Ontology concept identifier'\n", + "Entity 'http://edamontology.org/data_3026' - Label 'GO concept name (biological process)'\n", + "Entity 'http://edamontology.org/data_3026' - Label 'GO concept name (biological process)'\n", + "Entity 'http://edamontology.org/data_3027' - Label 'GO concept name (molecular function)'\n", + "Entity 'http://edamontology.org/data_3027' - Label 'GO concept name (molecular function)'\n", + "Entity 'http://edamontology.org/data_3028' - Label 'Taxonomy'\n", + "Entity 'http://edamontology.org/data_3028' - Label 'Taxonomy'\n", + "Entity 'http://edamontology.org/data_3029' - Label 'Protein ID (EMBL/GenBank/DDBJ)'\n", + "Entity 'http://edamontology.org/data_3029' - Label 'Protein ID (EMBL/GenBank/DDBJ)'\n", + "Entity 'http://edamontology.org/data_3031' - Label 'Core data'\n", + "Entity 'http://edamontology.org/data_3031' - Label 'Core data'\n", + "Entity 'http://edamontology.org/data_3034' - Label 'Sequence feature identifier'\n", + "Entity 'http://edamontology.org/data_3034' - Label 'Sequence feature identifier'\n", + "Entity 'http://edamontology.org/data_3035' - Label 'Structure identifier'\n", + "Entity 'http://edamontology.org/data_3035' - Label 'Structure identifier'\n", + "Entity 'http://edamontology.org/data_3036' - Label 'Matrix identifier'\n", + "Entity 'http://edamontology.org/data_3036' - Label 'Matrix identifier'\n", + "Entity 'http://edamontology.org/data_3085' - Label 'Protein sequence composition'\n", + "Entity 'http://edamontology.org/data_3085' - Label 'Protein sequence composition'\n", + "Entity 'http://edamontology.org/data_3086' - Label 'Nucleic acid sequence composition (report)'\n", + "Entity 'http://edamontology.org/data_3086' - Label 'Nucleic acid sequence composition (report)'\n", + "Entity 'http://edamontology.org/data_3101' - Label 'Protein domain classification node'\n", + "Entity 'http://edamontology.org/data_3101' - Label 'Protein domain classification node'\n", + "Entity 'http://edamontology.org/data_3102' - Label 'CAS number'\n", + "Entity 'http://edamontology.org/data_3102' - Label 'CAS number'\n", + "Entity 'http://edamontology.org/data_3103' - Label 'ATC code'\n", + "Entity 'http://edamontology.org/data_3103' - Label 'ATC code'\n", + "Entity 'http://edamontology.org/data_3104' - Label 'UNII'\n", + "Entity 'http://edamontology.org/data_3105' - Label 'Geotemporal metadata'\n", + "Entity 'http://edamontology.org/data_3105' - Label 'Geotemporal metadata'\n", + "Entity 'http://edamontology.org/data_3106' - Label 'System metadata'\n", + "Entity 'http://edamontology.org/data_3107' - Label 'Sequence feature name'\n", + "Entity 'http://edamontology.org/data_3107' - Label 'Sequence feature name'\n", + "Entity 'http://edamontology.org/data_3108' - Label 'Experimental measurement'\n", + "Entity 'http://edamontology.org/data_3110' - Label 'Raw microarray data'\n", + "Entity 'http://edamontology.org/data_3110' - Label 'Raw microarray data'\n", + "Entity 'http://edamontology.org/data_3111' - Label 'Processed microarray data'\n", + "Entity 'http://edamontology.org/data_3111' - Label 'Processed microarray data'\n", + "Entity 'http://edamontology.org/data_3112' - Label 'Gene expression matrix'\n", + "Entity 'http://edamontology.org/data_3112' - Label 'Gene expression matrix'\n", + "Entity 'http://edamontology.org/data_3113' - Label 'Sample annotation'\n", + "Entity 'http://edamontology.org/data_3115' - Label 'Microarray metadata'\n", + "Entity 'http://edamontology.org/data_3116' - Label 'Microarray protocol annotation'\n", + "Entity 'http://edamontology.org/data_3116' - Label 'Microarray protocol annotation'\n", + "Entity 'http://edamontology.org/data_3117' - Label 'Microarray hybridisation data'\n", + "Entity 'http://edamontology.org/data_3119' - Label 'Sequence features (compositionally-biased regions)'\n", + "Entity 'http://edamontology.org/data_3119' - Label 'Sequence features (compositionally-biased regions)'\n", + "Entity 'http://edamontology.org/data_3122' - Label 'Nucleic acid features (difference and change)'\n", + "Entity 'http://edamontology.org/data_3122' - Label 'Nucleic acid features (difference and change)'\n", + "Entity 'http://edamontology.org/data_3128' - Label 'Nucleic acid structure report'\n", + "Entity 'http://edamontology.org/data_3128' - Label 'Nucleic acid structure report'\n", + "Entity 'http://edamontology.org/data_3129' - Label 'Protein features report (repeats)'\n", + "Entity 'http://edamontology.org/data_3129' - Label 'Protein features report (repeats)'\n", + "Entity 'http://edamontology.org/data_3130' - Label 'Sequence motif matches (protein)'\n", + "Entity 'http://edamontology.org/data_3130' - Label 'Sequence motif matches (protein)'\n", + "Entity 'http://edamontology.org/data_3131' - Label 'Sequence motif matches (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_3131' - Label 'Sequence motif matches (nucleic acid)'\n", + "Entity 'http://edamontology.org/data_3132' - Label 'Nucleic acid features (d-loop)'\n", + "Entity 'http://edamontology.org/data_3132' - Label 'Nucleic acid features (d-loop)'\n", + "Entity 'http://edamontology.org/data_3133' - Label 'Nucleic acid features (stem loop)'\n", + "Entity 'http://edamontology.org/data_3133' - Label 'Nucleic acid features (stem loop)'\n", + "Entity 'http://edamontology.org/data_3134' - Label 'Gene transcript report'\n", + "Entity 'http://edamontology.org/data_3137' - Label 'Non-coding RNA'\n", + "Entity 'http://edamontology.org/data_3137' - Label 'Non-coding RNA'\n", + "Entity 'http://edamontology.org/data_3138' - Label 'Transcriptional features (report)'\n", + "Entity 'http://edamontology.org/data_3138' - Label 'Transcriptional features (report)'\n", + "Entity 'http://edamontology.org/data_3140' - Label 'Nucleic acid features (immunoglobulin gene structure)'\n", + "Entity 'http://edamontology.org/data_3140' - Label 'Nucleic acid features (immunoglobulin gene structure)'\n", + "Entity 'http://edamontology.org/data_3141' - Label 'SCOP class'\n", + "Entity 'http://edamontology.org/data_3141' - Label 'SCOP class'\n", + "Entity 'http://edamontology.org/data_3142' - Label 'SCOP fold'\n", + "Entity 'http://edamontology.org/data_3142' - Label 'SCOP fold'\n", + "Entity 'http://edamontology.org/data_3143' - Label 'SCOP superfamily'\n", + "Entity 'http://edamontology.org/data_3143' - Label 'SCOP superfamily'\n", + "Entity 'http://edamontology.org/data_3144' - Label 'SCOP family'\n", + "Entity 'http://edamontology.org/data_3144' - Label 'SCOP family'\n", + "Entity 'http://edamontology.org/data_3145' - Label 'SCOP protein'\n", + "Entity 'http://edamontology.org/data_3145' - Label 'SCOP protein'\n", + "Entity 'http://edamontology.org/data_3146' - Label 'SCOP species'\n", + "Entity 'http://edamontology.org/data_3146' - Label 'SCOP species'\n", + "Entity 'http://edamontology.org/data_3147' - Label 'Mass spectrometry experiment'\n", + "Entity 'http://edamontology.org/data_3147' - Label 'Mass spectrometry experiment'\n", + "Entity 'http://edamontology.org/data_3148' - Label 'Gene family report'\n", + "Entity 'http://edamontology.org/data_3153' - Label 'Protein image'\n", + "Entity 'http://edamontology.org/data_3154' - Label 'Protein alignment'\n", + "Entity 'http://edamontology.org/data_3154' - Label 'Protein alignment'\n", + "Entity 'http://edamontology.org/data_3154' - Label 'Protein alignment'\n", + "Entity 'http://edamontology.org/data_3154' - Label 'Protein alignment'\n", + "Entity 'http://edamontology.org/data_3165' - Label 'NGS experiment'\n", + "Entity 'http://edamontology.org/data_3165' - Label 'NGS experiment'\n", + "Entity 'http://edamontology.org/data_3181' - Label 'Sequence assembly report'\n", + "Entity 'http://edamontology.org/data_3210' - Label 'Genome index'\n", + "Entity 'http://edamontology.org/data_3231' - Label 'GWAS report'\n", + "Entity 'http://edamontology.org/data_3231' - Label 'GWAS report'\n", + "Entity 'http://edamontology.org/data_3236' - Label 'Cytoband position'\n", + "Entity 'http://edamontology.org/data_3238' - Label 'Cell type ontology ID'\n", + "Entity 'http://edamontology.org/data_3238' - Label 'Cell type ontology ID'\n", + "Entity 'http://edamontology.org/data_3238' - Label 'Cell type ontology ID'\n", + "Entity 'http://edamontology.org/data_3241' - Label 'Kinetic model'\n", + "Entity 'http://edamontology.org/data_3264' - Label 'COSMIC ID'\n", + "Entity 'http://edamontology.org/data_3264' - Label 'COSMIC ID'\n", + "Entity 'http://edamontology.org/data_3265' - Label 'HGMD ID'\n", + "Entity 'http://edamontology.org/data_3265' - Label 'HGMD ID'\n", + "Entity 'http://edamontology.org/data_3266' - Label 'Sequence assembly ID'\n", + "Entity 'http://edamontology.org/data_3268' - Label 'Sequence feature type'\n", + "Entity 'http://edamontology.org/data_3268' - Label 'Sequence feature type'\n", + "Entity 'http://edamontology.org/data_3269' - Label 'Gene homology (report)'\n", + "Entity 'http://edamontology.org/data_3269' - Label 'Gene homology (report)'\n", + "Entity 'http://edamontology.org/data_3270' - Label 'Ensembl gene tree ID'\n", + "Entity 'http://edamontology.org/data_3270' - Label 'Ensembl gene tree ID'\n", + "Entity 'http://edamontology.org/data_3270' - Label 'Ensembl gene tree ID'\n", + "Entity 'http://edamontology.org/data_3271' - Label 'Gene tree'\n", + "Entity 'http://edamontology.org/data_3272' - Label 'Species tree'\n", + "Entity 'http://edamontology.org/data_3273' - Label 'Sample ID'\n", + "Entity 'http://edamontology.org/data_3273' - Label 'Sample ID'\n", + "Entity 'http://edamontology.org/data_3274' - Label 'MGI accession'\n", + "Entity 'http://edamontology.org/data_3274' - Label 'MGI accession'\n", + "Entity 'http://edamontology.org/data_3275' - Label 'Phenotype name'\n", + "Entity 'http://edamontology.org/data_3354' - Label 'Transition matrix'\n", + "Entity 'http://edamontology.org/data_3355' - Label 'Emission matrix'\n", + "Entity 'http://edamontology.org/data_3356' - Label 'Hidden Markov model'\n", + "Entity 'http://edamontology.org/data_3356' - Label 'Hidden Markov model'\n", + "Entity 'http://edamontology.org/data_3358' - Label 'Format identifier'\n", + "Entity 'http://edamontology.org/data_3424' - Label 'Raw image'\n", + "Entity 'http://edamontology.org/data_3425' - Label 'Carbohydrate property'\n", + "Entity 'http://edamontology.org/data_3426' - Label 'Proteomics experiment report'\n", + "Entity 'http://edamontology.org/data_3426' - Label 'Proteomics experiment report'\n", + "Entity 'http://edamontology.org/data_3427' - Label 'RNAi report'\n", + "Entity 'http://edamontology.org/data_3427' - Label 'RNAi report'\n", + "Entity 'http://edamontology.org/data_3428' - Label 'Simulation experiment report'\n", + "Entity 'http://edamontology.org/data_3428' - Label 'Simulation experiment report'\n", + "Entity 'http://edamontology.org/data_3442' - Label 'MRI image'\n", + "Entity 'http://edamontology.org/data_3442' - Label 'MRI image'\n", + "Entity 'http://edamontology.org/data_3449' - Label 'Cell migration track image'\n", + "Entity 'http://edamontology.org/data_3449' - Label 'Cell migration track image'\n", + "Entity 'http://edamontology.org/data_3451' - Label 'Rate of association'\n", + "Entity 'http://edamontology.org/data_3479' - Label 'Gene order'\n", + "Entity 'http://edamontology.org/data_3483' - Label 'Spectrum'\n", + "Entity 'http://edamontology.org/data_3488' - Label 'NMR spectrum'\n", + "Entity 'http://edamontology.org/data_3488' - Label 'NMR spectrum'\n", + "Entity 'http://edamontology.org/data_3490' - Label 'Chemical structure sketch'\n", + "Entity 'http://edamontology.org/data_3490' - Label 'Chemical structure sketch'\n", + "Entity 'http://edamontology.org/data_3492' - Label 'Nucleic acid signature'\n", + "Entity 'http://edamontology.org/data_3494' - Label 'DNA sequence'\n", + "Entity 'http://edamontology.org/data_3495' - Label 'RNA sequence'\n", + "Entity 'http://edamontology.org/data_3496' - Label 'RNA sequence (raw)'\n", + "Entity 'http://edamontology.org/data_3496' - Label 'RNA sequence (raw)'\n", + "Entity 'http://edamontology.org/data_3497' - Label 'DNA sequence (raw)'\n", + "Entity 'http://edamontology.org/data_3497' - Label 'DNA sequence (raw)'\n", + "Entity 'http://edamontology.org/data_3498' - Label 'Sequence variations'\n", + "Entity 'http://edamontology.org/data_3498' - Label 'Sequence variations'\n", + "Entity 'http://edamontology.org/data_3505' - Label 'Bibliography'\n", + "Entity 'http://edamontology.org/data_3509' - Label 'Ontology mapping'\n", + "Entity 'http://edamontology.org/data_3546' - Label 'Image metadata'\n", + "Entity 'http://edamontology.org/data_3558' - Label 'Clinical trial report'\n", + "Entity 'http://edamontology.org/data_3567' - Label 'Reference sample report'\n", + "Entity 'http://edamontology.org/data_3568' - Label 'Gene Expression Atlas Experiment ID'\n", + "Entity 'http://edamontology.org/data_3667' - Label 'Disease identifier'\n", + "Entity 'http://edamontology.org/data_3667' - Label 'Disease identifier'\n", + "Entity 'http://edamontology.org/data_3668' - Label 'Disease name'\n", + "Entity 'http://edamontology.org/data_3668' - Label 'Disease name'\n", + "Entity 'http://edamontology.org/data_3669' - Label 'Training material'\n", + "Entity 'http://edamontology.org/data_3670' - Label 'Online course'\n", + "Entity 'http://edamontology.org/data_3671' - Label 'Text'\n", + "Entity 'http://edamontology.org/data_3707' - Label 'Biodiversity data'\n", + "Entity 'http://edamontology.org/data_3707' - Label 'Biodiversity data'\n", + "Entity 'http://edamontology.org/data_3716' - Label 'Biosafety report'\n", + "Entity 'http://edamontology.org/data_3717' - Label 'Isolation report'\n", + "Entity 'http://edamontology.org/data_3718' - Label 'Pathogenicity report'\n", + "Entity 'http://edamontology.org/data_3719' - Label 'Biosafety classification'\n", + "Entity 'http://edamontology.org/data_3720' - Label 'Geographic location'\n", + "Entity 'http://edamontology.org/data_3721' - Label 'Isolation source'\n", + "Entity 'http://edamontology.org/data_3722' - Label 'Physiology parameter'\n", + "Entity 'http://edamontology.org/data_3723' - Label 'Morphology parameter'\n", + "Entity 'http://edamontology.org/data_3724' - Label 'Cultivation parameter'\n", + "Entity 'http://edamontology.org/data_3732' - Label 'Sequencing metadata name'\n", + "Entity 'http://edamontology.org/data_3733' - Label 'Flow cell identifier'\n", + "Entity 'http://edamontology.org/data_3734' - Label 'Lane identifier'\n", + "Entity 'http://edamontology.org/data_3735' - Label 'Run number'\n", + "Entity 'http://edamontology.org/data_3736' - Label 'Ecological data'\n", + "Entity 'http://edamontology.org/data_3737' - Label 'Alpha diversity data'\n", + "Entity 'http://edamontology.org/data_3738' - Label 'Beta diversity data'\n", + "Entity 'http://edamontology.org/data_3739' - Label 'Gamma diversity data'\n", + "Entity 'http://edamontology.org/data_3743' - Label 'Ordination plot'\n", + "Entity 'http://edamontology.org/data_3743' - Label 'Ordination plot'\n", + "Entity 'http://edamontology.org/data_3753' - Label 'Over-representation data'\n", + "Entity 'http://edamontology.org/data_3754' - Label 'GO-term enrichment data'\n", + "Entity 'http://edamontology.org/data_3754' - Label 'GO-term enrichment data'\n", + "Entity 'http://edamontology.org/data_3756' - Label 'Localisation score'\n", + "Entity 'http://edamontology.org/data_3757' - Label 'Unimod ID'\n", + "Entity 'http://edamontology.org/data_3757' - Label 'Unimod ID'\n", + "Entity 'http://edamontology.org/data_3759' - Label 'ProteomeXchange ID'\n", + "Entity 'http://edamontology.org/data_3768' - Label 'Clustered expression profiles'\n", + "Entity 'http://edamontology.org/data_3769' - Label 'BRENDA ontology concept ID'\n", + "Entity 'http://edamontology.org/data_3769' - Label 'BRENDA ontology concept ID'\n", + "Entity 'http://edamontology.org/data_3779' - Label 'Annotated text'\n", + "Entity 'http://edamontology.org/data_3779' - Label 'Annotated text'\n", + "Entity 'http://edamontology.org/data_3786' - Label 'Query script'\n", + "Entity 'http://edamontology.org/data_3805' - Label '3D EM Map'\n", + "Entity 'http://edamontology.org/data_3805' - Label '3D EM Map'\n", + "Entity 'http://edamontology.org/data_3806' - Label '3D EM Mask'\n", + "Entity 'http://edamontology.org/data_3806' - Label '3D EM Mask'\n", + "Entity 'http://edamontology.org/data_3807' - Label 'EM Movie'\n", + "Entity 'http://edamontology.org/data_3807' - Label 'EM Movie'\n", + "Entity 'http://edamontology.org/data_3808' - Label 'EM Micrograph'\n", + "Entity 'http://edamontology.org/data_3808' - Label 'EM Micrograph'\n", + "Entity 'http://edamontology.org/data_3842' - Label 'Molecular simulation data'\n", + "Entity 'http://edamontology.org/data_3842' - Label 'Molecular simulation data'\n", + "Entity 'http://edamontology.org/data_3856' - Label 'RNA central ID'\n", + "Entity 'http://edamontology.org/data_3856' - Label 'RNA central ID'\n", + "Entity 'http://edamontology.org/data_3861' - Label 'Electronic health record'\n", + "Entity 'http://edamontology.org/data_3869' - Label 'Simulation'\n", + "Entity 'http://edamontology.org/data_3870' - Label 'Trajectory data'\n", + "Entity 'http://edamontology.org/data_3871' - Label 'Forcefield parameters'\n", + "Entity 'http://edamontology.org/data_3872' - Label 'Topology data'\n", + "Entity 'http://edamontology.org/data_3905' - Label 'Histogram'\n", + "Entity 'http://edamontology.org/data_3914' - Label 'Quality control report'\n", + "Entity 'http://edamontology.org/data_3917' - Label 'Count matrix'\n", + "Entity 'http://edamontology.org/data_3924' - Label 'DNA structure alignment'\n", + "Entity 'http://edamontology.org/data_3932' - Label 'Q-value'\n", + "Entity 'http://edamontology.org/data_3949' - Label 'Profile HMM'\n", + "Entity 'http://edamontology.org/data_3949' - Label 'Profile HMM'\n", + "Entity 'http://edamontology.org/data_3952' - Label 'Pathway ID (WikiPathways)'\n", + "Entity 'http://edamontology.org/data_3952' - Label 'Pathway ID (WikiPathways)'\n", + "Entity 'http://edamontology.org/data_3952' - Label 'Pathway ID (WikiPathways)'\n", + "Entity 'http://edamontology.org/data_3953' - Label 'Pathway overrepresentation data'\n", + "Entity 'http://edamontology.org/data_3953' - Label 'Pathway overrepresentation data'\n", + "Entity 'http://edamontology.org/data_4022' - Label 'ORCID Identifier'\n", + "Entity 'http://edamontology.org/format_1196' - Label 'SMILES'\n", + "Entity 'http://edamontology.org/format_1196' - Label 'SMILES'\n", + "Entity 'http://edamontology.org/format_1197' - Label 'InChI'\n", + "Entity 'http://edamontology.org/format_1197' - Label 'InChI'\n", + "Entity 'http://edamontology.org/format_1198' - Label 'mf'\n", + "Entity 'http://edamontology.org/format_1198' - Label 'mf'\n", + "Entity 'http://edamontology.org/format_1199' - Label 'InChIKey'\n", + "Entity 'http://edamontology.org/format_1199' - Label 'InChIKey'\n", + "Entity 'http://edamontology.org/format_1200' - Label 'smarts'\n", + "Entity 'http://edamontology.org/format_1206' - Label 'unambiguous pure'\n", + "Entity 'http://edamontology.org/format_1206' - Label 'unambiguous pure'\n", + "Entity 'http://edamontology.org/format_1207' - Label 'nucleotide'\n", + "Entity 'http://edamontology.org/format_1207' - Label 'nucleotide'\n", + "Entity 'http://edamontology.org/format_1208' - Label 'protein'\n", + "Entity 'http://edamontology.org/format_1208' - Label 'protein'\n", + "Entity 'http://edamontology.org/format_1209' - Label 'consensus'\n", + "Entity 'http://edamontology.org/format_1209' - Label 'consensus'\n", + "Entity 'http://edamontology.org/format_1210' - Label 'pure nucleotide'\n", + "Entity 'http://edamontology.org/format_1210' - Label 'pure nucleotide'\n", + "Entity 'http://edamontology.org/format_1211' - Label 'unambiguous pure nucleotide'\n", + "Entity 'http://edamontology.org/format_1211' - Label 'unambiguous pure nucleotide'\n", + "Entity 'http://edamontology.org/format_1212' - Label 'dna'\n", + "Entity 'http://edamontology.org/format_1213' - Label 'rna'\n", + "Entity 'http://edamontology.org/format_1214' - Label 'unambiguous pure dna'\n", + "Entity 'http://edamontology.org/format_1214' - Label 'unambiguous pure dna'\n", + "Entity 'http://edamontology.org/format_1215' - Label 'pure dna'\n", + "Entity 'http://edamontology.org/format_1215' - Label 'pure dna'\n", + "Entity 'http://edamontology.org/format_1216' - Label 'unambiguous pure rna sequence'\n", + "Entity 'http://edamontology.org/format_1216' - Label 'unambiguous pure rna sequence'\n", + "Entity 'http://edamontology.org/format_1217' - Label 'pure rna'\n", + "Entity 'http://edamontology.org/format_1217' - Label 'pure rna'\n", + "Entity 'http://edamontology.org/format_1218' - Label 'unambiguous pure protein'\n", + "Entity 'http://edamontology.org/format_1218' - Label 'unambiguous pure protein'\n", + "Entity 'http://edamontology.org/format_1219' - Label 'pure protein'\n", + "Entity 'http://edamontology.org/format_1219' - Label 'pure protein'\n", + "Entity 'http://edamontology.org/format_1228' - Label 'UniGene entry format'\n", + "Entity 'http://edamontology.org/format_1228' - Label 'UniGene entry format'\n", + "Entity 'http://edamontology.org/format_1247' - Label 'COG sequence cluster format'\n", + "Entity 'http://edamontology.org/format_1247' - Label 'COG sequence cluster format'\n", + "Entity 'http://edamontology.org/format_1248' - Label 'EMBL feature location'\n", + "Entity 'http://edamontology.org/format_1248' - Label 'EMBL feature location'\n", + "Entity 'http://edamontology.org/format_1295' - Label 'quicktandem'\n", + "Entity 'http://edamontology.org/format_1295' - Label 'quicktandem'\n", + "Entity 'http://edamontology.org/format_1296' - Label 'Sanger inverted repeats'\n", + "Entity 'http://edamontology.org/format_1296' - Label 'Sanger inverted repeats'\n", + "Entity 'http://edamontology.org/format_1297' - Label 'EMBOSS repeat'\n", + "Entity 'http://edamontology.org/format_1297' - Label 'EMBOSS repeat'\n", + "Entity 'http://edamontology.org/format_1316' - Label 'est2genome format'\n", + "Entity 'http://edamontology.org/format_1316' - Label 'est2genome format'\n", + "Entity 'http://edamontology.org/format_1318' - Label 'restrict format'\n", + "Entity 'http://edamontology.org/format_1318' - Label 'restrict format'\n", + "Entity 'http://edamontology.org/format_1319' - Label 'restover format'\n", + "Entity 'http://edamontology.org/format_1319' - Label 'restover format'\n", + "Entity 'http://edamontology.org/format_1320' - Label 'REBASE restriction sites'\n", + "Entity 'http://edamontology.org/format_1320' - Label 'REBASE restriction sites'\n", + "Entity 'http://edamontology.org/format_1332' - Label 'FASTA search results format'\n", + "Entity 'http://edamontology.org/format_1332' - Label 'FASTA search results format'\n", + "Entity 'http://edamontology.org/format_1333' - Label 'BLAST results'\n", + "Entity 'http://edamontology.org/format_1333' - Label 'BLAST results'\n", + "Entity 'http://edamontology.org/format_1334' - Label 'mspcrunch'\n", + "Entity 'http://edamontology.org/format_1334' - Label 'mspcrunch'\n", + "Entity 'http://edamontology.org/format_1335' - Label 'Smith-Waterman format'\n", + "Entity 'http://edamontology.org/format_1335' - Label 'Smith-Waterman format'\n", + "Entity 'http://edamontology.org/format_1336' - Label 'dhf'\n", + "Entity 'http://edamontology.org/format_1336' - Label 'dhf'\n", + "Entity 'http://edamontology.org/format_1337' - Label 'lhf'\n", + "Entity 'http://edamontology.org/format_1337' - Label 'lhf'\n", + "Entity 'http://edamontology.org/format_1341' - Label 'InterPro hits format'\n", + "Entity 'http://edamontology.org/format_1341' - Label 'InterPro hits format'\n", + "Entity 'http://edamontology.org/format_1342' - Label 'InterPro protein view report format'\n", + "Entity 'http://edamontology.org/format_1343' - Label 'InterPro match table format'\n", + "Entity 'http://edamontology.org/format_1349' - Label 'HMMER Dirichlet prior'\n", + "Entity 'http://edamontology.org/format_1349' - Label 'HMMER Dirichlet prior'\n", + "Entity 'http://edamontology.org/format_1350' - Label 'MEME Dirichlet prior'\n", + "Entity 'http://edamontology.org/format_1350' - Label 'MEME Dirichlet prior'\n", + "Entity 'http://edamontology.org/format_1351' - Label 'HMMER emission and transition'\n", + "Entity 'http://edamontology.org/format_1351' - Label 'HMMER emission and transition'\n", + "Entity 'http://edamontology.org/format_1356' - Label 'prosite-pattern'\n", + "Entity 'http://edamontology.org/format_1356' - Label 'prosite-pattern'\n", + "Entity 'http://edamontology.org/format_1357' - Label 'EMBOSS sequence pattern'\n", + "Entity 'http://edamontology.org/format_1357' - Label 'EMBOSS sequence pattern'\n", + "Entity 'http://edamontology.org/format_1360' - Label 'meme-motif'\n", + "Entity 'http://edamontology.org/format_1360' - Label 'meme-motif'\n", + "Entity 'http://edamontology.org/format_1366' - Label 'prosite-profile'\n", + "Entity 'http://edamontology.org/format_1366' - Label 'prosite-profile'\n", + "Entity 'http://edamontology.org/format_1367' - Label 'JASPAR format'\n", + "Entity 'http://edamontology.org/format_1367' - Label 'JASPAR format'\n", + "Entity 'http://edamontology.org/format_1369' - Label 'MEME background Markov model'\n", + "Entity 'http://edamontology.org/format_1369' - Label 'MEME background Markov model'\n", + "Entity 'http://edamontology.org/format_1370' - Label 'HMMER format'\n", + "Entity 'http://edamontology.org/format_1370' - Label 'HMMER format'\n", + "Entity 'http://edamontology.org/format_1391' - Label 'HMMER-aln'\n", + "Entity 'http://edamontology.org/format_1391' - Label 'HMMER-aln'\n", + "Entity 'http://edamontology.org/format_1391' - Label 'HMMER-aln'\n", + "Entity 'http://edamontology.org/format_1392' - Label 'DIALIGN format'\n", + "Entity 'http://edamontology.org/format_1392' - Label 'DIALIGN format'\n", + "Entity 'http://edamontology.org/format_1393' - Label 'daf'\n", + "Entity 'http://edamontology.org/format_1393' - Label 'daf'\n", + "Entity 'http://edamontology.org/format_1419' - Label 'Sequence-MEME profile alignment'\n", + "Entity 'http://edamontology.org/format_1419' - Label 'Sequence-MEME profile alignment'\n", + "Entity 'http://edamontology.org/format_1421' - Label 'HMMER profile alignment (sequences versus HMMs)'\n", + "Entity 'http://edamontology.org/format_1421' - Label 'HMMER profile alignment (sequences versus HMMs)'\n", + "Entity 'http://edamontology.org/format_1422' - Label 'HMMER profile alignment (HMM versus sequences)'\n", + "Entity 'http://edamontology.org/format_1422' - Label 'HMMER profile alignment (HMM versus sequences)'\n", + "Entity 'http://edamontology.org/format_1423' - Label 'Phylip distance matrix'\n", + "Entity 'http://edamontology.org/format_1423' - Label 'Phylip distance matrix'\n", + "Entity 'http://edamontology.org/format_1424' - Label 'ClustalW dendrogram'\n", + "Entity 'http://edamontology.org/format_1424' - Label 'ClustalW dendrogram'\n", + "Entity 'http://edamontology.org/format_1425' - Label 'Phylip tree raw'\n", + "Entity 'http://edamontology.org/format_1425' - Label 'Phylip tree raw'\n", + "Entity 'http://edamontology.org/format_1430' - Label 'Phylip continuous quantitative characters'\n", + "Entity 'http://edamontology.org/format_1430' - Label 'Phylip continuous quantitative characters'\n", + "Entity 'http://edamontology.org/format_1431' - Label 'Phylogenetic property values format'\n", + "Entity 'http://edamontology.org/format_1431' - Label 'Phylogenetic property values format'\n", + "Entity 'http://edamontology.org/format_1432' - Label 'Phylip character frequencies format'\n", + "Entity 'http://edamontology.org/format_1432' - Label 'Phylip character frequencies format'\n", + "Entity 'http://edamontology.org/format_1433' - Label 'Phylip discrete states format'\n", + "Entity 'http://edamontology.org/format_1433' - Label 'Phylip discrete states format'\n", + "Entity 'http://edamontology.org/format_1434' - Label 'Phylip cliques format'\n", + "Entity 'http://edamontology.org/format_1434' - Label 'Phylip cliques format'\n", + "Entity 'http://edamontology.org/format_1435' - Label 'Phylip tree format'\n", + "Entity 'http://edamontology.org/format_1435' - Label 'Phylip tree format'\n", + "Entity 'http://edamontology.org/format_1436' - Label 'TreeBASE format'\n", + "Entity 'http://edamontology.org/format_1436' - Label 'TreeBASE format'\n", + "Entity 'http://edamontology.org/format_1437' - Label 'TreeFam format'\n", + "Entity 'http://edamontology.org/format_1437' - Label 'TreeFam format'\n", + "Entity 'http://edamontology.org/format_1445' - Label 'Phylip tree distance format'\n", + "Entity 'http://edamontology.org/format_1445' - Label 'Phylip tree distance format'\n", + "Entity 'http://edamontology.org/format_1454' - Label 'dssp'\n", + "Entity 'http://edamontology.org/format_1454' - Label 'dssp'\n", + "Entity 'http://edamontology.org/format_1455' - Label 'hssp'\n", + "Entity 'http://edamontology.org/format_1455' - Label 'hssp'\n", + "Entity 'http://edamontology.org/format_1457' - Label 'Dot-bracket format'\n", + "Entity 'http://edamontology.org/format_1457' - Label 'Dot-bracket format'\n", + "Entity 'http://edamontology.org/format_1458' - Label 'Vienna local RNA secondary structure format'\n", + "Entity 'http://edamontology.org/format_1458' - Label 'Vienna local RNA secondary structure format'\n", + "Entity 'http://edamontology.org/format_1475' - Label 'PDB database entry format'\n", + "Entity 'http://edamontology.org/format_1475' - Label 'PDB database entry format'\n", + "Entity 'http://edamontology.org/format_1475' - Label 'PDB database entry format'\n", + "Entity 'http://edamontology.org/format_1476' - Label 'PDB'\n", + "Entity 'http://edamontology.org/format_1476' - Label 'PDB'\n", + "Entity 'http://edamontology.org/format_1477' - Label 'mmCIF'\n", + "Entity 'http://edamontology.org/format_1477' - Label 'mmCIF'\n", + "Entity 'http://edamontology.org/format_1478' - Label 'PDBML'\n", + "Entity 'http://edamontology.org/format_1478' - Label 'PDBML'\n", + "Entity 'http://edamontology.org/format_1500' - Label 'Domainatrix 3D-1D scoring matrix format'\n", + "Entity 'http://edamontology.org/format_1500' - Label 'Domainatrix 3D-1D scoring matrix format'\n", + "Entity 'http://edamontology.org/format_1504' - Label 'aaindex'\n", + "Entity 'http://edamontology.org/format_1504' - Label 'aaindex'\n", + "Entity 'http://edamontology.org/format_1511' - Label 'IntEnz enzyme report format'\n", + "Entity 'http://edamontology.org/format_1511' - Label 'IntEnz enzyme report format'\n", + "Entity 'http://edamontology.org/format_1512' - Label 'BRENDA enzyme report format'\n", + "Entity 'http://edamontology.org/format_1512' - Label 'BRENDA enzyme report format'\n", + "Entity 'http://edamontology.org/format_1513' - Label 'KEGG REACTION enzyme report format'\n", + "Entity 'http://edamontology.org/format_1513' - Label 'KEGG REACTION enzyme report format'\n", + "Entity 'http://edamontology.org/format_1514' - Label 'KEGG ENZYME enzyme report format'\n", + "Entity 'http://edamontology.org/format_1514' - Label 'KEGG ENZYME enzyme report format'\n", + "Entity 'http://edamontology.org/format_1515' - Label 'REBASE proto enzyme report format'\n", + "Entity 'http://edamontology.org/format_1515' - Label 'REBASE proto enzyme report format'\n", + "Entity 'http://edamontology.org/format_1516' - Label 'REBASE withrefm enzyme report format'\n", + "Entity 'http://edamontology.org/format_1516' - Label 'REBASE withrefm enzyme report format'\n", + "Entity 'http://edamontology.org/format_1551' - Label 'Pcons report format'\n", + "Entity 'http://edamontology.org/format_1551' - Label 'Pcons report format'\n", + "Entity 'http://edamontology.org/format_1552' - Label 'ProQ report format'\n", + "Entity 'http://edamontology.org/format_1552' - Label 'ProQ report format'\n", + "Entity 'http://edamontology.org/format_1563' - Label 'SMART domain assignment report format'\n", + "Entity 'http://edamontology.org/format_1563' - Label 'SMART domain assignment report format'\n", + "Entity 'http://edamontology.org/format_1568' - Label 'BIND entry format'\n", + "Entity 'http://edamontology.org/format_1568' - Label 'BIND entry format'\n", + "Entity 'http://edamontology.org/format_1569' - Label 'IntAct entry format'\n", + "Entity 'http://edamontology.org/format_1569' - Label 'IntAct entry format'\n", + "Entity 'http://edamontology.org/format_1570' - Label 'InterPro entry format'\n", + "Entity 'http://edamontology.org/format_1570' - Label 'InterPro entry format'\n", + "Entity 'http://edamontology.org/format_1571' - Label 'InterPro entry abstract format'\n", + "Entity 'http://edamontology.org/format_1571' - Label 'InterPro entry abstract format'\n", + "Entity 'http://edamontology.org/format_1572' - Label 'Gene3D entry format'\n", + "Entity 'http://edamontology.org/format_1572' - Label 'Gene3D entry format'\n", + "Entity 'http://edamontology.org/format_1573' - Label 'PIRSF entry format'\n", + "Entity 'http://edamontology.org/format_1573' - Label 'PIRSF entry format'\n", + "Entity 'http://edamontology.org/format_1574' - Label 'PRINTS entry format'\n", + "Entity 'http://edamontology.org/format_1574' - Label 'PRINTS entry format'\n", + "Entity 'http://edamontology.org/format_1575' - Label 'Panther Families and HMMs entry format'\n", + "Entity 'http://edamontology.org/format_1575' - Label 'Panther Families and HMMs entry format'\n", + "Entity 'http://edamontology.org/format_1576' - Label 'Pfam entry format'\n", + "Entity 'http://edamontology.org/format_1576' - Label 'Pfam entry format'\n", + "Entity 'http://edamontology.org/format_1577' - Label 'SMART entry format'\n", + "Entity 'http://edamontology.org/format_1577' - Label 'SMART entry format'\n", + "Entity 'http://edamontology.org/format_1578' - Label 'Superfamily entry format'\n", + "Entity 'http://edamontology.org/format_1578' - Label 'Superfamily entry format'\n", + "Entity 'http://edamontology.org/format_1579' - Label 'TIGRFam entry format'\n", + "Entity 'http://edamontology.org/format_1579' - Label 'TIGRFam entry format'\n", + "Entity 'http://edamontology.org/format_1580' - Label 'ProDom entry format'\n", + "Entity 'http://edamontology.org/format_1580' - Label 'ProDom entry format'\n", + "Entity 'http://edamontology.org/format_1581' - Label 'FSSP entry format'\n", + "Entity 'http://edamontology.org/format_1581' - Label 'FSSP entry format'\n", + "Entity 'http://edamontology.org/format_1582' - Label 'findkm'\n", + "Entity 'http://edamontology.org/format_1582' - Label 'findkm'\n", + "Entity 'http://edamontology.org/format_1603' - Label 'Ensembl gene report format'\n", + "Entity 'http://edamontology.org/format_1603' - Label 'Ensembl gene report format'\n", + "Entity 'http://edamontology.org/format_1604' - Label 'DictyBase gene report format'\n", + "Entity 'http://edamontology.org/format_1604' - Label 'DictyBase gene report format'\n", + "Entity 'http://edamontology.org/format_1605' - Label 'CGD gene report format'\n", + "Entity 'http://edamontology.org/format_1605' - Label 'CGD gene report format'\n", + "Entity 'http://edamontology.org/format_1606' - Label 'DragonDB gene report format'\n", + "Entity 'http://edamontology.org/format_1606' - Label 'DragonDB gene report format'\n", + "Entity 'http://edamontology.org/format_1607' - Label 'EcoCyc gene report format'\n", + "Entity 'http://edamontology.org/format_1607' - Label 'EcoCyc gene report format'\n", + "Entity 'http://edamontology.org/format_1608' - Label 'FlyBase gene report format'\n", + "Entity 'http://edamontology.org/format_1608' - Label 'FlyBase gene report format'\n", + "Entity 'http://edamontology.org/format_1609' - Label 'Gramene gene report format'\n", + "Entity 'http://edamontology.org/format_1609' - Label 'Gramene gene report format'\n", + "Entity 'http://edamontology.org/format_1610' - Label 'KEGG GENES gene report format'\n", + "Entity 'http://edamontology.org/format_1610' - Label 'KEGG GENES gene report format'\n", + "Entity 'http://edamontology.org/format_1611' - Label 'MaizeGDB gene report format'\n", + "Entity 'http://edamontology.org/format_1611' - Label 'MaizeGDB gene report format'\n", + "Entity 'http://edamontology.org/format_1612' - Label 'MGD gene report format'\n", + "Entity 'http://edamontology.org/format_1612' - Label 'MGD gene report format'\n", + "Entity 'http://edamontology.org/format_1613' - Label 'RGD gene report format'\n", + "Entity 'http://edamontology.org/format_1613' - Label 'RGD gene report format'\n", + "Entity 'http://edamontology.org/format_1614' - Label 'SGD gene report format'\n", + "Entity 'http://edamontology.org/format_1614' - Label 'SGD gene report format'\n", + "Entity 'http://edamontology.org/format_1615' - Label 'GeneDB gene report format'\n", + "Entity 'http://edamontology.org/format_1615' - Label 'GeneDB gene report format'\n", + "Entity 'http://edamontology.org/format_1616' - Label 'TAIR gene report format'\n", + "Entity 'http://edamontology.org/format_1616' - Label 'TAIR gene report format'\n", + "Entity 'http://edamontology.org/format_1617' - Label 'WormBase gene report format'\n", + "Entity 'http://edamontology.org/format_1617' - Label 'WormBase gene report format'\n", + "Entity 'http://edamontology.org/format_1618' - Label 'ZFIN gene report format'\n", + "Entity 'http://edamontology.org/format_1618' - Label 'ZFIN gene report format'\n", + "Entity 'http://edamontology.org/format_1619' - Label 'TIGR gene report format'\n", + "Entity 'http://edamontology.org/format_1619' - Label 'TIGR gene report format'\n", + "Entity 'http://edamontology.org/format_1620' - Label 'dbSNP polymorphism report format'\n", + "Entity 'http://edamontology.org/format_1620' - Label 'dbSNP polymorphism report format'\n", + "Entity 'http://edamontology.org/format_1623' - Label 'OMIM entry format'\n", + "Entity 'http://edamontology.org/format_1623' - Label 'OMIM entry format'\n", + "Entity 'http://edamontology.org/format_1624' - Label 'HGVbase entry format'\n", + "Entity 'http://edamontology.org/format_1624' - Label 'HGVbase entry format'\n", + "Entity 'http://edamontology.org/format_1625' - Label 'HIVDB entry format'\n", + "Entity 'http://edamontology.org/format_1625' - Label 'HIVDB entry format'\n", + "Entity 'http://edamontology.org/format_1626' - Label 'KEGG DISEASE entry format'\n", + "Entity 'http://edamontology.org/format_1626' - Label 'KEGG DISEASE entry format'\n", + "Entity 'http://edamontology.org/format_1627' - Label 'Primer3 primer'\n", + "Entity 'http://edamontology.org/format_1627' - Label 'Primer3 primer'\n", + "Entity 'http://edamontology.org/format_1628' - Label 'ABI'\n", + "Entity 'http://edamontology.org/format_1628' - Label 'ABI'\n", + "Entity 'http://edamontology.org/format_1629' - Label 'mira'\n", + "Entity 'http://edamontology.org/format_1629' - Label 'mira'\n", + "Entity 'http://edamontology.org/format_1630' - Label 'CAF'\n", + "Entity 'http://edamontology.org/format_1630' - Label 'CAF'\n", + "Entity 'http://edamontology.org/format_1631' - Label 'EXP'\n", + "Entity 'http://edamontology.org/format_1631' - Label 'EXP'\n", + "Entity 'http://edamontology.org/format_1632' - Label 'SCF'\n", + "Entity 'http://edamontology.org/format_1632' - Label 'SCF'\n", + "Entity 'http://edamontology.org/format_1633' - Label 'PHD'\n", + "Entity 'http://edamontology.org/format_1633' - Label 'PHD'\n", + "Entity 'http://edamontology.org/format_1637' - Label 'dat'\n", + "Entity 'http://edamontology.org/format_1637' - Label 'dat'\n", + "Entity 'http://edamontology.org/format_1637' - Label 'dat'\n", + "Entity 'http://edamontology.org/format_1638' - Label 'cel'\n", + "Entity 'http://edamontology.org/format_1638' - Label 'cel'\n", + "Entity 'http://edamontology.org/format_1638' - Label 'cel'\n", + "Entity 'http://edamontology.org/format_1639' - Label 'affymetrix'\n", + "Entity 'http://edamontology.org/format_1639' - Label 'affymetrix'\n", + "Entity 'http://edamontology.org/format_1640' - Label 'ArrayExpress entry format'\n", + "Entity 'http://edamontology.org/format_1640' - Label 'ArrayExpress entry format'\n", + "Entity 'http://edamontology.org/format_1641' - Label 'affymetrix-exp'\n", + "Entity 'http://edamontology.org/format_1641' - Label 'affymetrix-exp'\n", + "Entity 'http://edamontology.org/format_1644' - Label 'CHP'\n", + "Entity 'http://edamontology.org/format_1644' - Label 'CHP'\n", + "Entity 'http://edamontology.org/format_1644' - Label 'CHP'\n", + "Entity 'http://edamontology.org/format_1645' - Label 'EMDB entry format'\n", + "Entity 'http://edamontology.org/format_1645' - Label 'EMDB entry format'\n", + "Entity 'http://edamontology.org/format_1647' - Label 'KEGG PATHWAY entry format'\n", + "Entity 'http://edamontology.org/format_1647' - Label 'KEGG PATHWAY entry format'\n", + "Entity 'http://edamontology.org/format_1648' - Label 'MetaCyc entry format'\n", + "Entity 'http://edamontology.org/format_1648' - Label 'MetaCyc entry format'\n", + "Entity 'http://edamontology.org/format_1649' - Label 'HumanCyc entry format'\n", + "Entity 'http://edamontology.org/format_1649' - Label 'HumanCyc entry format'\n", + "Entity 'http://edamontology.org/format_1650' - Label 'INOH entry format'\n", + "Entity 'http://edamontology.org/format_1650' - Label 'INOH entry format'\n", + "Entity 'http://edamontology.org/format_1651' - Label 'PATIKA entry format'\n", + "Entity 'http://edamontology.org/format_1651' - Label 'PATIKA entry format'\n", + "Entity 'http://edamontology.org/format_1652' - Label 'Reactome entry format'\n", + "Entity 'http://edamontology.org/format_1652' - Label 'Reactome entry format'\n", + "Entity 'http://edamontology.org/format_1653' - Label 'aMAZE entry format'\n", + "Entity 'http://edamontology.org/format_1653' - Label 'aMAZE entry format'\n", + "Entity 'http://edamontology.org/format_1654' - Label 'CPDB entry format'\n", + "Entity 'http://edamontology.org/format_1654' - Label 'CPDB entry format'\n", + "Entity 'http://edamontology.org/format_1655' - Label 'Panther Pathways entry format'\n", + "Entity 'http://edamontology.org/format_1655' - Label 'Panther Pathways entry format'\n", + "Entity 'http://edamontology.org/format_1665' - Label 'Taverna workflow format'\n", + "Entity 'http://edamontology.org/format_1665' - Label 'Taverna workflow format'\n", + "Entity 'http://edamontology.org/format_1666' - Label 'BioModel mathematical model format'\n", + "Entity 'http://edamontology.org/format_1666' - Label 'BioModel mathematical model format'\n", + "Entity 'http://edamontology.org/format_1697' - Label 'KEGG LIGAND entry format'\n", + "Entity 'http://edamontology.org/format_1697' - Label 'KEGG LIGAND entry format'\n", + "Entity 'http://edamontology.org/format_1698' - Label 'KEGG COMPOUND entry format'\n", + "Entity 'http://edamontology.org/format_1698' - Label 'KEGG COMPOUND entry format'\n", + "Entity 'http://edamontology.org/format_1699' - Label 'KEGG PLANT entry format'\n", + "Entity 'http://edamontology.org/format_1699' - Label 'KEGG PLANT entry format'\n", + "Entity 'http://edamontology.org/format_1700' - Label 'KEGG GLYCAN entry format'\n", + "Entity 'http://edamontology.org/format_1700' - Label 'KEGG GLYCAN entry format'\n", + "Entity 'http://edamontology.org/format_1701' - Label 'PubChem entry format'\n", + "Entity 'http://edamontology.org/format_1701' - Label 'PubChem entry format'\n", + "Entity 'http://edamontology.org/format_1702' - Label 'ChemSpider entry format'\n", + "Entity 'http://edamontology.org/format_1702' - Label 'ChemSpider entry format'\n", + "Entity 'http://edamontology.org/format_1703' - Label 'ChEBI entry format'\n", + "Entity 'http://edamontology.org/format_1703' - Label 'ChEBI entry format'\n", + "Entity 'http://edamontology.org/format_1704' - Label 'MSDchem ligand dictionary entry format'\n", + "Entity 'http://edamontology.org/format_1704' - Label 'MSDchem ligand dictionary entry format'\n", + "Entity 'http://edamontology.org/format_1705' - Label 'HET group dictionary entry format'\n", + "Entity 'http://edamontology.org/format_1705' - Label 'HET group dictionary entry format'\n", + "Entity 'http://edamontology.org/format_1706' - Label 'KEGG DRUG entry format'\n", + "Entity 'http://edamontology.org/format_1706' - Label 'KEGG DRUG entry format'\n", + "Entity 'http://edamontology.org/format_1734' - Label 'PubMed citation'\n", + "Entity 'http://edamontology.org/format_1734' - Label 'PubMed citation'\n", + "Entity 'http://edamontology.org/format_1735' - Label 'Medline Display Format'\n", + "Entity 'http://edamontology.org/format_1735' - Label 'Medline Display Format'\n", + "Entity 'http://edamontology.org/format_1736' - Label 'CiteXplore-core'\n", + "Entity 'http://edamontology.org/format_1736' - Label 'CiteXplore-core'\n", + "Entity 'http://edamontology.org/format_1737' - Label 'CiteXplore-all'\n", + "Entity 'http://edamontology.org/format_1737' - Label 'CiteXplore-all'\n", + "Entity 'http://edamontology.org/format_1739' - Label 'pmc'\n", + "Entity 'http://edamontology.org/format_1739' - Label 'pmc'\n", + "Entity 'http://edamontology.org/format_1740' - Label 'iHOP format'\n", + "Entity 'http://edamontology.org/format_1740' - Label 'iHOP format'\n", + "Entity 'http://edamontology.org/format_1740' - Label 'iHOP format'\n", + "Entity 'http://edamontology.org/format_1741' - Label 'OSCAR format'\n", + "Entity 'http://edamontology.org/format_1741' - Label 'OSCAR format'\n", + "Entity 'http://edamontology.org/format_1741' - Label 'OSCAR format'\n", + "Entity 'http://edamontology.org/format_1747' - Label 'PDB atom record format'\n", + "Entity 'http://edamontology.org/format_1747' - Label 'PDB atom record format'\n", + "Entity 'http://edamontology.org/format_1760' - Label 'CATH chain report format'\n", + "Entity 'http://edamontology.org/format_1760' - Label 'CATH chain report format'\n", + "Entity 'http://edamontology.org/format_1761' - Label 'CATH PDB report format'\n", + "Entity 'http://edamontology.org/format_1761' - Label 'CATH PDB report format'\n", + "Entity 'http://edamontology.org/format_1782' - Label 'NCBI gene report format'\n", + "Entity 'http://edamontology.org/format_1782' - Label 'NCBI gene report format'\n", + "Entity 'http://edamontology.org/format_1808' - Label 'GeneIlluminator gene report format'\n", + "Entity 'http://edamontology.org/format_1808' - Label 'GeneIlluminator gene report format'\n", + "Entity 'http://edamontology.org/format_1809' - Label 'BacMap gene card format'\n", + "Entity 'http://edamontology.org/format_1809' - Label 'BacMap gene card format'\n", + "Entity 'http://edamontology.org/format_1810' - Label 'ColiCard report format'\n", + "Entity 'http://edamontology.org/format_1810' - Label 'ColiCard report format'\n", + "Entity 'http://edamontology.org/format_1861' - Label 'PlasMapper TextMap'\n", + "Entity 'http://edamontology.org/format_1861' - Label 'PlasMapper TextMap'\n", + "Entity 'http://edamontology.org/format_1910' - Label 'newick'\n", + "Entity 'http://edamontology.org/format_1910' - Label 'newick'\n", + "Entity 'http://edamontology.org/format_1911' - Label 'TreeCon format'\n", + "Entity 'http://edamontology.org/format_1911' - Label 'TreeCon format'\n", + "Entity 'http://edamontology.org/format_1912' - Label 'Nexus format'\n", + "Entity 'http://edamontology.org/format_1912' - Label 'Nexus format'\n", + "Entity 'http://edamontology.org/format_1918' - Label 'Atomic data format'\n", + "Entity 'http://edamontology.org/format_1918' - Label 'Atomic data format'\n", + "Entity 'http://edamontology.org/format_1919' - Label 'Sequence record format'\n", + "Entity 'http://edamontology.org/format_1919' - Label 'Sequence record format'\n", + "Entity 'http://edamontology.org/format_1920' - Label 'Sequence feature annotation format'\n", + "Entity 'http://edamontology.org/format_1920' - Label 'Sequence feature annotation format'\n", + "Entity 'http://edamontology.org/format_1921' - Label 'Alignment format'\n", + "Entity 'http://edamontology.org/format_1921' - Label 'Alignment format'\n", + "Entity 'http://edamontology.org/format_1923' - Label 'acedb'\n", + "Entity 'http://edamontology.org/format_1923' - Label 'acedb'\n", + "Entity 'http://edamontology.org/format_1924' - Label 'clustal sequence format'\n", + "Entity 'http://edamontology.org/format_1924' - Label 'clustal sequence format'\n", + "Entity 'http://edamontology.org/format_1925' - Label 'codata'\n", + "Entity 'http://edamontology.org/format_1925' - Label 'codata'\n", + "Entity 'http://edamontology.org/format_1926' - Label 'dbid'\n", + "Entity 'http://edamontology.org/format_1927' - Label 'EMBL format'\n", + "Entity 'http://edamontology.org/format_1927' - Label 'EMBL format'\n", + "Entity 'http://edamontology.org/format_1928' - Label 'Staden experiment format'\n", + "Entity 'http://edamontology.org/format_1928' - Label 'Staden experiment format'\n", + "Entity 'http://edamontology.org/format_1929' - Label 'FASTA'\n", + "Entity 'http://edamontology.org/format_1929' - Label 'FASTA'\n", + "Entity 'http://edamontology.org/format_1930' - Label 'FASTQ'\n", + "Entity 'http://edamontology.org/format_1931' - Label 'FASTQ-illumina'\n", + "Entity 'http://edamontology.org/format_1932' - Label 'FASTQ-sanger'\n", + "Entity 'http://edamontology.org/format_1933' - Label 'FASTQ-solexa'\n", + "Entity 'http://edamontology.org/format_1934' - Label 'fitch program'\n", + "Entity 'http://edamontology.org/format_1934' - Label 'fitch program'\n", + "Entity 'http://edamontology.org/format_1935' - Label 'GCG'\n", + "Entity 'http://edamontology.org/format_1935' - Label 'GCG'\n", + "Entity 'http://edamontology.org/format_1936' - Label 'GenBank format'\n", + "Entity 'http://edamontology.org/format_1936' - Label 'GenBank format'\n", + "Entity 'http://edamontology.org/format_1937' - Label 'genpept'\n", + "Entity 'http://edamontology.org/format_1938' - Label 'GFF2-seq'\n", + "Entity 'http://edamontology.org/format_1938' - Label 'GFF2-seq'\n", + "Entity 'http://edamontology.org/format_1939' - Label 'GFF3-seq'\n", + "Entity 'http://edamontology.org/format_1939' - Label 'GFF3-seq'\n", + "Entity 'http://edamontology.org/format_1940' - Label 'giFASTA format'\n", + "Entity 'http://edamontology.org/format_1941' - Label 'hennig86'\n", + "Entity 'http://edamontology.org/format_1941' - Label 'hennig86'\n", + "Entity 'http://edamontology.org/format_1942' - Label 'ig'\n", + "Entity 'http://edamontology.org/format_1942' - Label 'ig'\n", + "Entity 'http://edamontology.org/format_1943' - Label 'igstrict'\n", + "Entity 'http://edamontology.org/format_1943' - Label 'igstrict'\n", + "Entity 'http://edamontology.org/format_1944' - Label 'jackknifer'\n", + "Entity 'http://edamontology.org/format_1944' - Label 'jackknifer'\n", + "Entity 'http://edamontology.org/format_1945' - Label 'mase format'\n", + "Entity 'http://edamontology.org/format_1945' - Label 'mase format'\n", + "Entity 'http://edamontology.org/format_1946' - Label 'mega-seq'\n", + "Entity 'http://edamontology.org/format_1946' - Label 'mega-seq'\n", + "Entity 'http://edamontology.org/format_1947' - Label 'GCG MSF'\n", + "Entity 'http://edamontology.org/format_1948' - Label 'nbrf/pir'\n", + "Entity 'http://edamontology.org/format_1949' - Label 'nexus-seq'\n", + "Entity 'http://edamontology.org/format_1949' - Label 'nexus-seq'\n", + "Entity 'http://edamontology.org/format_1949' - Label 'nexus-seq'\n", + "Entity 'http://edamontology.org/format_1950' - Label 'pdbatom'\n", + "Entity 'http://edamontology.org/format_1950' - Label 'pdbatom'\n", + "Entity 'http://edamontology.org/format_1950' - Label 'pdbatom'\n", + "Entity 'http://edamontology.org/format_1951' - Label 'pdbatomnuc'\n", + "Entity 'http://edamontology.org/format_1951' - Label 'pdbatomnuc'\n", + "Entity 'http://edamontology.org/format_1951' - Label 'pdbatomnuc'\n", + "Entity 'http://edamontology.org/format_1952' - Label 'pdbseqresnuc'\n", + "Entity 'http://edamontology.org/format_1952' - Label 'pdbseqresnuc'\n", + "Entity 'http://edamontology.org/format_1952' - Label 'pdbseqresnuc'\n", + "Entity 'http://edamontology.org/format_1953' - Label 'pdbseqres'\n", + "Entity 'http://edamontology.org/format_1953' - Label 'pdbseqres'\n", + "Entity 'http://edamontology.org/format_1953' - Label 'pdbseqres'\n", + "Entity 'http://edamontology.org/format_1954' - Label 'Pearson format'\n", + "Entity 'http://edamontology.org/format_1955' - Label 'phylip sequence format'\n", + "Entity 'http://edamontology.org/format_1955' - Label 'phylip sequence format'\n", + "Entity 'http://edamontology.org/format_1956' - Label 'phylipnon sequence format'\n", + "Entity 'http://edamontology.org/format_1956' - Label 'phylipnon sequence format'\n", + "Entity 'http://edamontology.org/format_1957' - Label 'raw'\n", + "Entity 'http://edamontology.org/format_1957' - Label 'raw'\n", + "Entity 'http://edamontology.org/format_1958' - Label 'refseqp'\n", + "Entity 'http://edamontology.org/format_1958' - Label 'refseqp'\n", + "Entity 'http://edamontology.org/format_1959' - Label 'selex sequence format'\n", + "Entity 'http://edamontology.org/format_1959' - Label 'selex sequence format'\n", + "Entity 'http://edamontology.org/format_1960' - Label 'Staden format'\n", + "Entity 'http://edamontology.org/format_1960' - Label 'Staden format'\n", + "Entity 'http://edamontology.org/format_1961' - Label 'Stockholm format'\n", + "Entity 'http://edamontology.org/format_1961' - Label 'Stockholm format'\n", + "Entity 'http://edamontology.org/format_1962' - Label 'strider format'\n", + "Entity 'http://edamontology.org/format_1962' - Label 'strider format'\n", + "Entity 'http://edamontology.org/format_1963' - Label 'UniProtKB format'\n", + "Entity 'http://edamontology.org/format_1964' - Label 'plain text format (unformatted)'\n", + "Entity 'http://edamontology.org/format_1965' - Label 'treecon sequence format'\n", + "Entity 'http://edamontology.org/format_1965' - Label 'treecon sequence format'\n", + "Entity 'http://edamontology.org/format_1966' - Label 'ASN.1 sequence format'\n", + "Entity 'http://edamontology.org/format_1966' - Label 'ASN.1 sequence format'\n", + "Entity 'http://edamontology.org/format_1967' - Label 'DAS format'\n", + "Entity 'http://edamontology.org/format_1967' - Label 'DAS format'\n", + "Entity 'http://edamontology.org/format_1968' - Label 'dasdna'\n", + "Entity 'http://edamontology.org/format_1968' - Label 'dasdna'\n", + "Entity 'http://edamontology.org/format_1969' - Label 'debug-seq'\n", + "Entity 'http://edamontology.org/format_1969' - Label 'debug-seq'\n", + "Entity 'http://edamontology.org/format_1970' - Label 'jackknifernon'\n", + "Entity 'http://edamontology.org/format_1970' - Label 'jackknifernon'\n", + "Entity 'http://edamontology.org/format_1971' - Label 'meganon sequence format'\n", + "Entity 'http://edamontology.org/format_1971' - Label 'meganon sequence format'\n", + "Entity 'http://edamontology.org/format_1972' - Label 'NCBI format'\n", + "Entity 'http://edamontology.org/format_1973' - Label 'nexusnon'\n", + "Entity 'http://edamontology.org/format_1973' - Label 'nexusnon'\n", + "Entity 'http://edamontology.org/format_1973' - Label 'nexusnon'\n", + "Entity 'http://edamontology.org/format_1974' - Label 'GFF2'\n", + "Entity 'http://edamontology.org/format_1975' - Label 'GFF3'\n", + "Entity 'http://edamontology.org/format_1976' - Label 'pir'\n", + "Entity 'http://edamontology.org/format_1976' - Label 'pir'\n", + "Entity 'http://edamontology.org/format_1977' - Label 'swiss feature'\n", + "Entity 'http://edamontology.org/format_1977' - Label 'swiss feature'\n", + "Entity 'http://edamontology.org/format_1978' - Label 'DASGFF'\n", + "Entity 'http://edamontology.org/format_1978' - Label 'DASGFF'\n", + "Entity 'http://edamontology.org/format_1979' - Label 'debug-feat'\n", + "Entity 'http://edamontology.org/format_1979' - Label 'debug-feat'\n", + "Entity 'http://edamontology.org/format_1980' - Label 'EMBL feature'\n", + "Entity 'http://edamontology.org/format_1980' - Label 'EMBL feature'\n", + "Entity 'http://edamontology.org/format_1981' - Label 'GenBank feature'\n", + "Entity 'http://edamontology.org/format_1981' - Label 'GenBank feature'\n", + "Entity 'http://edamontology.org/format_1982' - Label 'ClustalW format'\n", + "Entity 'http://edamontology.org/format_1982' - Label 'ClustalW format'\n", + "Entity 'http://edamontology.org/format_1983' - Label 'debug'\n", + "Entity 'http://edamontology.org/format_1983' - Label 'debug'\n", + "Entity 'http://edamontology.org/format_1984' - Label 'FASTA-aln'\n", + "Entity 'http://edamontology.org/format_1984' - Label 'FASTA-aln'\n", + "Entity 'http://edamontology.org/format_1985' - Label 'markx0'\n", + "Entity 'http://edamontology.org/format_1986' - Label 'markx1'\n", + "Entity 'http://edamontology.org/format_1987' - Label 'markx10'\n", + "Entity 'http://edamontology.org/format_1988' - Label 'markx2'\n", + "Entity 'http://edamontology.org/format_1989' - Label 'markx3'\n", + "Entity 'http://edamontology.org/format_1990' - Label 'match'\n", + "Entity 'http://edamontology.org/format_1990' - Label 'match'\n", + "Entity 'http://edamontology.org/format_1991' - Label 'mega'\n", + "Entity 'http://edamontology.org/format_1992' - Label 'meganon'\n", + "Entity 'http://edamontology.org/format_1993' - Label 'msf alignment format'\n", + "Entity 'http://edamontology.org/format_1993' - Label 'msf alignment format'\n", + "Entity 'http://edamontology.org/format_1994' - Label 'nexus alignment format'\n", + "Entity 'http://edamontology.org/format_1994' - Label 'nexus alignment format'\n", + "Entity 'http://edamontology.org/format_1995' - Label 'nexusnon alignment format'\n", + "Entity 'http://edamontology.org/format_1995' - Label 'nexusnon alignment format'\n", + "Entity 'http://edamontology.org/format_1996' - Label 'pair'\n", + "Entity 'http://edamontology.org/format_1997' - Label 'PHYLIP format'\n", + "Entity 'http://edamontology.org/format_1998' - Label 'PHYLIP sequential'\n", + "Entity 'http://edamontology.org/format_1999' - Label 'scores format'\n", + "Entity 'http://edamontology.org/format_1999' - Label 'scores format'\n", + "Entity 'http://edamontology.org/format_2000' - Label 'selex'\n", + "Entity 'http://edamontology.org/format_2000' - Label 'selex'\n", + "Entity 'http://edamontology.org/format_2000' - Label 'selex'\n", + "Entity 'http://edamontology.org/format_2001' - Label 'EMBOSS simple format'\n", + "Entity 'http://edamontology.org/format_2001' - Label 'EMBOSS simple format'\n", + "Entity 'http://edamontology.org/format_2002' - Label 'srs format'\n", + "Entity 'http://edamontology.org/format_2002' - Label 'srs format'\n", + "Entity 'http://edamontology.org/format_2003' - Label 'srspair'\n", + "Entity 'http://edamontology.org/format_2003' - Label 'srspair'\n", + "Entity 'http://edamontology.org/format_2004' - Label 'T-Coffee format'\n", + "Entity 'http://edamontology.org/format_2004' - Label 'T-Coffee format'\n", + "Entity 'http://edamontology.org/format_2005' - Label 'TreeCon-seq'\n", + "Entity 'http://edamontology.org/format_2005' - Label 'TreeCon-seq'\n", + "Entity 'http://edamontology.org/format_2005' - Label 'TreeCon-seq'\n", + "Entity 'http://edamontology.org/format_2006' - Label 'Phylogenetic tree format'\n", + "Entity 'http://edamontology.org/format_2006' - Label 'Phylogenetic tree format'\n", + "Entity 'http://edamontology.org/format_2013' - Label 'Biological pathway or network format'\n", + "Entity 'http://edamontology.org/format_2013' - Label 'Biological pathway or network format'\n", + "Entity 'http://edamontology.org/format_2014' - Label 'Sequence-profile alignment format'\n", + "Entity 'http://edamontology.org/format_2014' - Label 'Sequence-profile alignment format'\n", + "Entity 'http://edamontology.org/format_2015' - Label 'Sequence-profile alignment (HMM) format'\n", + "Entity 'http://edamontology.org/format_2015' - Label 'Sequence-profile alignment (HMM) format'\n", + "Entity 'http://edamontology.org/format_2017' - Label 'Amino acid index format'\n", + "Entity 'http://edamontology.org/format_2017' - Label 'Amino acid index format'\n", + "Entity 'http://edamontology.org/format_2020' - Label 'Article format'\n", + "Entity 'http://edamontology.org/format_2020' - Label 'Article format'\n", + "Entity 'http://edamontology.org/format_2021' - Label 'Text mining report format'\n", + "Entity 'http://edamontology.org/format_2021' - Label 'Text mining report format'\n", + "Entity 'http://edamontology.org/format_2027' - Label 'Enzyme kinetics report format'\n", + "Entity 'http://edamontology.org/format_2027' - Label 'Enzyme kinetics report format'\n", + "Entity 'http://edamontology.org/format_2030' - Label 'Chemical data format'\n", + "Entity 'http://edamontology.org/format_2030' - Label 'Chemical data format'\n", + "Entity 'http://edamontology.org/format_2031' - Label 'Gene annotation format'\n", + "Entity 'http://edamontology.org/format_2031' - Label 'Gene annotation format'\n", + "Entity 'http://edamontology.org/format_2032' - Label 'Workflow format'\n", + "Entity 'http://edamontology.org/format_2033' - Label 'Tertiary structure format'\n", + "Entity 'http://edamontology.org/format_2034' - Label 'Biological model format'\n", + "Entity 'http://edamontology.org/format_2034' - Label 'Biological model format'\n", + "Entity 'http://edamontology.org/format_2035' - Label 'Chemical formula format'\n", + "Entity 'http://edamontology.org/format_2035' - Label 'Chemical formula format'\n", + "Entity 'http://edamontology.org/format_2036' - Label 'Phylogenetic character data format'\n", + "Entity 'http://edamontology.org/format_2036' - Label 'Phylogenetic character data format'\n", + "Entity 'http://edamontology.org/format_2037' - Label 'Phylogenetic continuous quantitative character format'\n", + "Entity 'http://edamontology.org/format_2037' - Label 'Phylogenetic continuous quantitative character format'\n", + "Entity 'http://edamontology.org/format_2038' - Label 'Phylogenetic discrete states format'\n", + "Entity 'http://edamontology.org/format_2038' - Label 'Phylogenetic discrete states format'\n", + "Entity 'http://edamontology.org/format_2039' - Label 'Phylogenetic tree report (cliques) format'\n", + "Entity 'http://edamontology.org/format_2039' - Label 'Phylogenetic tree report (cliques) format'\n", + "Entity 'http://edamontology.org/format_2040' - Label 'Phylogenetic tree report (invariants) format'\n", + "Entity 'http://edamontology.org/format_2040' - Label 'Phylogenetic tree report (invariants) format'\n", + "Entity 'http://edamontology.org/format_2045' - Label 'Electron microscopy model format'\n", + "Entity 'http://edamontology.org/format_2045' - Label 'Electron microscopy model format'\n", + "Entity 'http://edamontology.org/format_2049' - Label 'Phylogenetic tree report (tree distances) format'\n", + "Entity 'http://edamontology.org/format_2049' - Label 'Phylogenetic tree report (tree distances) format'\n", + "Entity 'http://edamontology.org/format_2051' - Label 'Polymorphism report format'\n", + "Entity 'http://edamontology.org/format_2051' - Label 'Polymorphism report format'\n", + "Entity 'http://edamontology.org/format_2052' - Label 'Protein family report format'\n", + "Entity 'http://edamontology.org/format_2052' - Label 'Protein family report format'\n", + "Entity 'http://edamontology.org/format_2054' - Label 'Protein interaction format'\n", + "Entity 'http://edamontology.org/format_2054' - Label 'Protein interaction format'\n", + "Entity 'http://edamontology.org/format_2055' - Label 'Sequence assembly format'\n", + "Entity 'http://edamontology.org/format_2055' - Label 'Sequence assembly format'\n", + "Entity 'http://edamontology.org/format_2056' - Label 'Microarray experiment data format'\n", + "Entity 'http://edamontology.org/format_2057' - Label 'Sequence trace format'\n", + "Entity 'http://edamontology.org/format_2057' - Label 'Sequence trace format'\n", + "Entity 'http://edamontology.org/format_2058' - Label 'Gene expression report format'\n", + "Entity 'http://edamontology.org/format_2058' - Label 'Gene expression report format'\n", + "Entity 'http://edamontology.org/format_2059' - Label 'Genotype and phenotype annotation format'\n", + "Entity 'http://edamontology.org/format_2059' - Label 'Genotype and phenotype annotation format'\n", + "Entity 'http://edamontology.org/format_2060' - Label 'Map format'\n", + "Entity 'http://edamontology.org/format_2060' - Label 'Map format'\n", + "Entity 'http://edamontology.org/format_2061' - Label 'Nucleic acid features (primers) format'\n", + "Entity 'http://edamontology.org/format_2062' - Label 'Protein report format'\n", + "Entity 'http://edamontology.org/format_2062' - Label 'Protein report format'\n", + "Entity 'http://edamontology.org/format_2063' - Label 'Protein report (enzyme) format'\n", + "Entity 'http://edamontology.org/format_2063' - Label 'Protein report (enzyme) format'\n", + "Entity 'http://edamontology.org/format_2064' - Label '3D-1D scoring matrix format'\n", + "Entity 'http://edamontology.org/format_2064' - Label '3D-1D scoring matrix format'\n", + "Entity 'http://edamontology.org/format_2065' - Label 'Protein structure report (quality evaluation) format'\n", + "Entity 'http://edamontology.org/format_2065' - Label 'Protein structure report (quality evaluation) format'\n", + "Entity 'http://edamontology.org/format_2066' - Label 'Database hits (sequence) format'\n", + "Entity 'http://edamontology.org/format_2066' - Label 'Database hits (sequence) format'\n", + "Entity 'http://edamontology.org/format_2067' - Label 'Sequence distance matrix format'\n", + "Entity 'http://edamontology.org/format_2067' - Label 'Sequence distance matrix format'\n", + "Entity 'http://edamontology.org/format_2068' - Label 'Sequence motif format'\n", + "Entity 'http://edamontology.org/format_2068' - Label 'Sequence motif format'\n", + "Entity 'http://edamontology.org/format_2069' - Label 'Sequence profile format'\n", + "Entity 'http://edamontology.org/format_2069' - Label 'Sequence profile format'\n", + "Entity 'http://edamontology.org/format_2072' - Label 'Hidden Markov model format'\n", + "Entity 'http://edamontology.org/format_2072' - Label 'Hidden Markov model format'\n", + "Entity 'http://edamontology.org/format_2074' - Label 'Dirichlet distribution format'\n", + "Entity 'http://edamontology.org/format_2074' - Label 'Dirichlet distribution format'\n", + "Entity 'http://edamontology.org/format_2075' - Label 'HMM emission and transition counts format'\n", + "Entity 'http://edamontology.org/format_2075' - Label 'HMM emission and transition counts format'\n", + "Entity 'http://edamontology.org/format_2075' - Label 'HMM emission and transition counts format'\n", + "Entity 'http://edamontology.org/format_2076' - Label 'RNA secondary structure format'\n", + "Entity 'http://edamontology.org/format_2076' - Label 'RNA secondary structure format'\n", + "Entity 'http://edamontology.org/format_2077' - Label 'Protein secondary structure format'\n", + "Entity 'http://edamontology.org/format_2078' - Label 'Sequence range format'\n", + "Entity 'http://edamontology.org/format_2078' - Label 'Sequence range format'\n", + "Entity 'http://edamontology.org/format_2094' - Label 'pure'\n", + "Entity 'http://edamontology.org/format_2094' - Label 'pure'\n", + "Entity 'http://edamontology.org/format_2095' - Label 'unpure'\n", + "Entity 'http://edamontology.org/format_2095' - Label 'unpure'\n", + "Entity 'http://edamontology.org/format_2096' - Label 'unambiguous sequence'\n", + "Entity 'http://edamontology.org/format_2096' - Label 'unambiguous sequence'\n", + "Entity 'http://edamontology.org/format_2097' - Label 'ambiguous'\n", + "Entity 'http://edamontology.org/format_2097' - Label 'ambiguous'\n", + "Entity 'http://edamontology.org/format_2155' - Label 'Sequence features (repeats) format'\n", + "Entity 'http://edamontology.org/format_2158' - Label 'Nucleic acid features (restriction sites) format'\n", + "Entity 'http://edamontology.org/format_2159' - Label 'Gene features (coding region) format'\n", + "Entity 'http://edamontology.org/format_2159' - Label 'Gene features (coding region) format'\n", + "Entity 'http://edamontology.org/format_2170' - Label 'Sequence cluster format'\n", + "Entity 'http://edamontology.org/format_2170' - Label 'Sequence cluster format'\n", + "Entity 'http://edamontology.org/format_2171' - Label 'Sequence cluster format (protein)'\n", + "Entity 'http://edamontology.org/format_2172' - Label 'Sequence cluster format (nucleic acid)'\n", + "Entity 'http://edamontology.org/format_2175' - Label 'Gene cluster format'\n", + "Entity 'http://edamontology.org/format_2175' - Label 'Gene cluster format'\n", + "Entity 'http://edamontology.org/format_2181' - Label 'EMBL-like (text)'\n", + "Entity 'http://edamontology.org/format_2181' - Label 'EMBL-like (text)'\n", + "Entity 'http://edamontology.org/format_2182' - Label 'FASTQ-like format (text)'\n", + "Entity 'http://edamontology.org/format_2182' - Label 'FASTQ-like format (text)'\n", + "Entity 'http://edamontology.org/format_2183' - Label 'EMBLXML'\n", + "Entity 'http://edamontology.org/format_2184' - Label 'cdsxml'\n", + "Entity 'http://edamontology.org/format_2185' - Label 'INSDSeq'\n", + "Entity 'http://edamontology.org/format_2186' - Label 'geneseq'\n", + "Entity 'http://edamontology.org/format_2187' - Label 'UniProt-like (text)'\n", + "Entity 'http://edamontology.org/format_2187' - Label 'UniProt-like (text)'\n", + "Entity 'http://edamontology.org/format_2188' - Label 'UniProt format'\n", + "Entity 'http://edamontology.org/format_2188' - Label 'UniProt format'\n", + "Entity 'http://edamontology.org/format_2189' - Label 'ipi'\n", + "Entity 'http://edamontology.org/format_2189' - Label 'ipi'\n", + "Entity 'http://edamontology.org/format_2194' - Label 'medline'\n", + "Entity 'http://edamontology.org/format_2194' - Label 'medline'\n", + "Entity 'http://edamontology.org/format_2195' - Label 'Ontology format'\n", + "Entity 'http://edamontology.org/format_2195' - Label 'Ontology format'\n", + "Entity 'http://edamontology.org/format_2196' - Label 'OBO format'\n", + "Entity 'http://edamontology.org/format_2197' - Label 'OWL format'\n", + "Entity 'http://edamontology.org/format_2197' - Label 'OWL format'\n", + "Entity 'http://edamontology.org/format_2200' - Label 'FASTA-like (text)'\n", + "Entity 'http://edamontology.org/format_2200' - Label 'FASTA-like (text)'\n", + "Entity 'http://edamontology.org/format_2202' - Label 'Sequence record full format'\n", + "Entity 'http://edamontology.org/format_2202' - Label 'Sequence record full format'\n", + "Entity 'http://edamontology.org/format_2203' - Label 'Sequence record lite format'\n", + "Entity 'http://edamontology.org/format_2203' - Label 'Sequence record lite format'\n", + "Entity 'http://edamontology.org/format_2204' - Label 'EMBL format (XML)'\n", + "Entity 'http://edamontology.org/format_2205' - Label 'GenBank-like format (text)'\n", + "Entity 'http://edamontology.org/format_2205' - Label 'GenBank-like format (text)'\n", + "Entity 'http://edamontology.org/format_2206' - Label 'Sequence feature table format (text)'\n", + "Entity 'http://edamontology.org/format_2210' - Label 'Strain data format'\n", + "Entity 'http://edamontology.org/format_2210' - Label 'Strain data format'\n", + "Entity 'http://edamontology.org/format_2211' - Label 'CIP strain data format'\n", + "Entity 'http://edamontology.org/format_2211' - Label 'CIP strain data format'\n", + "Entity 'http://edamontology.org/format_2243' - Label 'phylip property values'\n", + "Entity 'http://edamontology.org/format_2243' - Label 'phylip property values'\n", + "Entity 'http://edamontology.org/format_2303' - Label 'STRING entry format (HTML)'\n", + "Entity 'http://edamontology.org/format_2303' - Label 'STRING entry format (HTML)'\n", + "Entity 'http://edamontology.org/format_2304' - Label 'STRING entry format (XML)'\n", + "Entity 'http://edamontology.org/format_2304' - Label 'STRING entry format (XML)'\n", + "Entity 'http://edamontology.org/format_2305' - Label 'GFF'\n", + "Entity 'http://edamontology.org/format_2305' - Label 'GFF'\n", + "Entity 'http://edamontology.org/format_2306' - Label 'GTF'\n", + "Entity 'http://edamontology.org/format_2310' - Label 'FASTA-HTML'\n", + "Entity 'http://edamontology.org/format_2310' - Label 'FASTA-HTML'\n", + "Entity 'http://edamontology.org/format_2311' - Label 'EMBL-HTML'\n", + "Entity 'http://edamontology.org/format_2311' - Label 'EMBL-HTML'\n", + "Entity 'http://edamontology.org/format_2322' - Label 'BioCyc enzyme report format'\n", + "Entity 'http://edamontology.org/format_2322' - Label 'BioCyc enzyme report format'\n", + "Entity 'http://edamontology.org/format_2323' - Label 'ENZYME enzyme report format'\n", + "Entity 'http://edamontology.org/format_2323' - Label 'ENZYME enzyme report format'\n", + "Entity 'http://edamontology.org/format_2328' - Label 'PseudoCAP gene report format'\n", + "Entity 'http://edamontology.org/format_2328' - Label 'PseudoCAP gene report format'\n", + "Entity 'http://edamontology.org/format_2329' - Label 'GeneCards gene report format'\n", + "Entity 'http://edamontology.org/format_2329' - Label 'GeneCards gene report format'\n", + "Entity 'http://edamontology.org/format_2330' - Label 'Textual format'\n", + "Entity 'http://edamontology.org/format_2331' - Label 'HTML'\n", + "Entity 'http://edamontology.org/format_2331' - Label 'HTML'\n", + "Entity 'http://edamontology.org/format_2332' - Label 'XML'\n", + "Entity 'http://edamontology.org/format_2333' - Label 'Binary format'\n", + "Entity 'http://edamontology.org/format_2334' - Label 'URI format'\n", + "Entity 'http://edamontology.org/format_2334' - Label 'URI format'\n", + "Entity 'http://edamontology.org/format_2341' - Label 'NCI-Nature pathway entry format'\n", + "Entity 'http://edamontology.org/format_2341' - Label 'NCI-Nature pathway entry format'\n", + "Entity 'http://edamontology.org/format_2350' - Label 'Format (by type of data)'\n", + "Entity 'http://edamontology.org/format_2352' - Label 'BioXSD (XML)'\n", + "Entity 'http://edamontology.org/format_2352' - Label 'BioXSD (XML)'\n", + "Entity 'http://edamontology.org/format_2352' - Label 'BioXSD (XML)'\n", + "Entity 'http://edamontology.org/format_2352' - Label 'BioXSD (XML)'\n", + "Entity 'http://edamontology.org/format_2352' - Label 'BioXSD (XML)'\n", + "Entity 'http://edamontology.org/format_2352' - Label 'BioXSD (XML)'\n", + "Entity 'http://edamontology.org/format_2352' - Label 'BioXSD (XML)'\n", + "Entity 'http://edamontology.org/format_2352' - Label 'BioXSD (XML)'\n", + "Entity 'http://edamontology.org/format_2352' - Label 'BioXSD (XML)'\n", + "Entity 'http://edamontology.org/format_2352' - Label 'BioXSD (XML)'\n", + "Entity 'http://edamontology.org/format_2376' - Label 'RDF format'\n", + "Entity 'http://edamontology.org/format_2376' - Label 'RDF format'\n", + "Entity 'http://edamontology.org/format_2376' - Label 'RDF format'\n", + "Entity 'http://edamontology.org/format_2532' - Label 'GenBank-HTML'\n", + "Entity 'http://edamontology.org/format_2532' - Label 'GenBank-HTML'\n", + "Entity 'http://edamontology.org/format_2542' - Label 'Protein features (domains) format'\n", + "Entity 'http://edamontology.org/format_2542' - Label 'Protein features (domains) format'\n", + "Entity 'http://edamontology.org/format_2543' - Label 'EMBL-like format'\n", + "Entity 'http://edamontology.org/format_2545' - Label 'FASTQ-like format'\n", + "Entity 'http://edamontology.org/format_2546' - Label 'FASTA-like'\n", + "Entity 'http://edamontology.org/format_2547' - Label 'uniprotkb-like format'\n", + "Entity 'http://edamontology.org/format_2547' - Label 'uniprotkb-like format'\n", + "Entity 'http://edamontology.org/format_2548' - Label 'Sequence feature table format'\n", + "Entity 'http://edamontology.org/format_2548' - Label 'Sequence feature table format'\n", + "Entity 'http://edamontology.org/format_2549' - Label 'OBO'\n", + "Entity 'http://edamontology.org/format_2549' - Label 'OBO'\n", + "Entity 'http://edamontology.org/format_2550' - Label 'OBO-XML'\n", + "Entity 'http://edamontology.org/format_2550' - Label 'OBO-XML'\n", + "Entity 'http://edamontology.org/format_2551' - Label 'Sequence record format (text)'\n", + "Entity 'http://edamontology.org/format_2552' - Label 'Sequence record format (XML)'\n", + "Entity 'http://edamontology.org/format_2553' - Label 'Sequence feature table format (XML)'\n", + "Entity 'http://edamontology.org/format_2554' - Label 'Alignment format (text)'\n", + "Entity 'http://edamontology.org/format_2555' - Label 'Alignment format (XML)'\n", + "Entity 'http://edamontology.org/format_2556' - Label 'Phylogenetic tree format (text)'\n", + "Entity 'http://edamontology.org/format_2557' - Label 'Phylogenetic tree format (XML)'\n", + "Entity 'http://edamontology.org/format_2558' - Label 'EMBL-like (XML)'\n", + "Entity 'http://edamontology.org/format_2558' - Label 'EMBL-like (XML)'\n", + "Entity 'http://edamontology.org/format_2559' - Label 'GenBank-like format'\n", + "Entity 'http://edamontology.org/format_2560' - Label 'STRING entry format'\n", + "Entity 'http://edamontology.org/format_2560' - Label 'STRING entry format'\n", + "Entity 'http://edamontology.org/format_2561' - Label 'Sequence assembly format (text)'\n", + "Entity 'http://edamontology.org/format_2562' - Label 'Amino acid identifier format'\n", + "Entity 'http://edamontology.org/format_2562' - Label 'Amino acid identifier format'\n", + "Entity 'http://edamontology.org/format_2566' - Label 'completely unambiguous'\n", + "Entity 'http://edamontology.org/format_2566' - Label 'completely unambiguous'\n", + "Entity 'http://edamontology.org/format_2567' - Label 'completely unambiguous pure'\n", + "Entity 'http://edamontology.org/format_2567' - Label 'completely unambiguous pure'\n", + "Entity 'http://edamontology.org/format_2568' - Label 'completely unambiguous pure nucleotide'\n", + "Entity 'http://edamontology.org/format_2568' - Label 'completely unambiguous pure nucleotide'\n", + "Entity 'http://edamontology.org/format_2569' - Label 'completely unambiguous pure dna'\n", + "Entity 'http://edamontology.org/format_2569' - Label 'completely unambiguous pure dna'\n", + "Entity 'http://edamontology.org/format_2570' - Label 'completely unambiguous pure rna sequence'\n", + "Entity 'http://edamontology.org/format_2570' - Label 'completely unambiguous pure rna sequence'\n", + "Entity 'http://edamontology.org/format_2571' - Label 'Raw sequence format'\n", + "Entity 'http://edamontology.org/format_2571' - Label 'Raw sequence format'\n", + "Entity 'http://edamontology.org/format_2572' - Label 'BAM'\n", + "Entity 'http://edamontology.org/format_2572' - Label 'BAM'\n", + "Entity 'http://edamontology.org/format_2572' - Label 'BAM'\n", + "Entity 'http://edamontology.org/format_2573' - Label 'SAM'\n", + "Entity 'http://edamontology.org/format_2573' - Label 'SAM'\n", + "Entity 'http://edamontology.org/format_2573' - Label 'SAM'\n", + "Entity 'http://edamontology.org/format_2585' - Label 'SBML'\n", + "Entity 'http://edamontology.org/format_2585' - Label 'SBML'\n", + "Entity 'http://edamontology.org/format_2607' - Label 'completely unambiguous pure protein'\n", + "Entity 'http://edamontology.org/format_2607' - Label 'completely unambiguous pure protein'\n", + "Entity 'http://edamontology.org/format_2848' - Label 'Bibliographic reference format'\n", + "Entity 'http://edamontology.org/format_2848' - Label 'Bibliographic reference format'\n", + "Entity 'http://edamontology.org/format_2848' - Label 'Bibliographic reference format'\n", + "Entity 'http://edamontology.org/format_2919' - Label 'Sequence annotation track format'\n", + "Entity 'http://edamontology.org/format_2919' - Label 'Sequence annotation track format'\n", + "Entity 'http://edamontology.org/format_2920' - Label 'Alignment format (pair only)'\n", + "Entity 'http://edamontology.org/format_2920' - Label 'Alignment format (pair only)'\n", + "Entity 'http://edamontology.org/format_2921' - Label 'Sequence variation annotation format'\n", + "Entity 'http://edamontology.org/format_2921' - Label 'Sequence variation annotation format'\n", + "Entity 'http://edamontology.org/format_2922' - Label 'markx0 variant'\n", + "Entity 'http://edamontology.org/format_2922' - Label 'markx0 variant'\n", + "Entity 'http://edamontology.org/format_2923' - Label 'mega variant'\n", + "Entity 'http://edamontology.org/format_2923' - Label 'mega variant'\n", + "Entity 'http://edamontology.org/format_2923' - Label 'mega variant'\n", + "Entity 'http://edamontology.org/format_2924' - Label 'Phylip format variant'\n", + "Entity 'http://edamontology.org/format_2924' - Label 'Phylip format variant'\n", + "Entity 'http://edamontology.org/format_2924' - Label 'Phylip format variant'\n", + "Entity 'http://edamontology.org/format_3000' - Label 'AB1'\n", + "Entity 'http://edamontology.org/format_3000' - Label 'AB1'\n", + "Entity 'http://edamontology.org/format_3001' - Label 'ACE'\n", + "Entity 'http://edamontology.org/format_3001' - Label 'ACE'\n", + "Entity 'http://edamontology.org/format_3003' - Label 'BED'\n", + "Entity 'http://edamontology.org/format_3003' - Label 'BED'\n", + "Entity 'http://edamontology.org/format_3004' - Label 'bigBed'\n", + "Entity 'http://edamontology.org/format_3004' - Label 'bigBed'\n", + "Entity 'http://edamontology.org/format_3005' - Label 'WIG'\n", + "Entity 'http://edamontology.org/format_3005' - Label 'WIG'\n", + "Entity 'http://edamontology.org/format_3006' - Label 'bigWig'\n", + "Entity 'http://edamontology.org/format_3006' - Label 'bigWig'\n", + "Entity 'http://edamontology.org/format_3007' - Label 'PSL'\n", + "Entity 'http://edamontology.org/format_3007' - Label 'PSL'\n", + "Entity 'http://edamontology.org/format_3007' - Label 'PSL'\n", + "Entity 'http://edamontology.org/format_3008' - Label 'MAF'\n", + "Entity 'http://edamontology.org/format_3008' - Label 'MAF'\n", + "Entity 'http://edamontology.org/format_3008' - Label 'MAF'\n", + "Entity 'http://edamontology.org/format_3009' - Label '2bit'\n", + "Entity 'http://edamontology.org/format_3009' - Label '2bit'\n", + "Entity 'http://edamontology.org/format_3010' - Label '.nib'\n", + "Entity 'http://edamontology.org/format_3010' - Label '.nib'\n", + "Entity 'http://edamontology.org/format_3011' - Label 'genePred'\n", + "Entity 'http://edamontology.org/format_3011' - Label 'genePred'\n", + "Entity 'http://edamontology.org/format_3012' - Label 'pgSnp'\n", + "Entity 'http://edamontology.org/format_3012' - Label 'pgSnp'\n", + "Entity 'http://edamontology.org/format_3013' - Label 'axt'\n", + "Entity 'http://edamontology.org/format_3013' - Label 'axt'\n", + "Entity 'http://edamontology.org/format_3014' - Label 'LAV'\n", + "Entity 'http://edamontology.org/format_3014' - Label 'LAV'\n", + "Entity 'http://edamontology.org/format_3015' - Label 'Pileup'\n", + "Entity 'http://edamontology.org/format_3015' - Label 'Pileup'\n", + "Entity 'http://edamontology.org/format_3016' - Label 'VCF'\n", + "Entity 'http://edamontology.org/format_3016' - Label 'VCF'\n", + "Entity 'http://edamontology.org/format_3017' - Label 'SRF'\n", + "Entity 'http://edamontology.org/format_3017' - Label 'SRF'\n", + "Entity 'http://edamontology.org/format_3018' - Label 'ZTR'\n", + "Entity 'http://edamontology.org/format_3018' - Label 'ZTR'\n", + "Entity 'http://edamontology.org/format_3019' - Label 'GVF'\n", + "Entity 'http://edamontology.org/format_3019' - Label 'GVF'\n", + "Entity 'http://edamontology.org/format_3020' - Label 'BCF'\n", + "Entity 'http://edamontology.org/format_3020' - Label 'BCF'\n", + "Entity 'http://edamontology.org/format_3033' - Label 'Matrix format'\n", + "Entity 'http://edamontology.org/format_3033' - Label 'Matrix format'\n", + "Entity 'http://edamontology.org/format_3097' - Label 'Protein domain classification format'\n", + "Entity 'http://edamontology.org/format_3097' - Label 'Protein domain classification format'\n", + "Entity 'http://edamontology.org/format_3098' - Label 'Raw SCOP domain classification format'\n", + "Entity 'http://edamontology.org/format_3099' - Label 'Raw CATH domain classification format'\n", + "Entity 'http://edamontology.org/format_3100' - Label 'CATH domain report format'\n", + "Entity 'http://edamontology.org/format_3155' - Label 'SBRML'\n", + "Entity 'http://edamontology.org/format_3155' - Label 'SBRML'\n", + "Entity 'http://edamontology.org/format_3156' - Label 'BioPAX'\n", + "Entity 'http://edamontology.org/format_3157' - Label 'EBI Application Result XML'\n", + "Entity 'http://edamontology.org/format_3157' - Label 'EBI Application Result XML'\n", + "Entity 'http://edamontology.org/format_3157' - Label 'EBI Application Result XML'\n", + "Entity 'http://edamontology.org/format_3158' - Label 'PSI MI XML (MIF)'\n", + "Entity 'http://edamontology.org/format_3158' - Label 'PSI MI XML (MIF)'\n", + "Entity 'http://edamontology.org/format_3159' - Label 'phyloXML'\n", + "Entity 'http://edamontology.org/format_3159' - Label 'phyloXML'\n", + "Entity 'http://edamontology.org/format_3160' - Label 'NeXML'\n", + "Entity 'http://edamontology.org/format_3160' - Label 'NeXML'\n", + "Entity 'http://edamontology.org/format_3161' - Label 'MAGE-ML'\n", + "Entity 'http://edamontology.org/format_3161' - Label 'MAGE-ML'\n", + "Entity 'http://edamontology.org/format_3161' - Label 'MAGE-ML'\n", + "Entity 'http://edamontology.org/format_3162' - Label 'MAGE-TAB'\n", + "Entity 'http://edamontology.org/format_3162' - Label 'MAGE-TAB'\n", + "Entity 'http://edamontology.org/format_3162' - Label 'MAGE-TAB'\n", + "Entity 'http://edamontology.org/format_3163' - Label 'GCDML'\n", + "Entity 'http://edamontology.org/format_3163' - Label 'GCDML'\n", + "Entity 'http://edamontology.org/format_3164' - Label 'GTrack'\n", + "Entity 'http://edamontology.org/format_3164' - Label 'GTrack'\n", + "Entity 'http://edamontology.org/format_3164' - Label 'GTrack'\n", + "Entity 'http://edamontology.org/format_3166' - Label 'Biological pathway or network report format'\n", + "Entity 'http://edamontology.org/format_3166' - Label 'Biological pathway or network report format'\n", + "Entity 'http://edamontology.org/format_3167' - Label 'Experiment annotation format'\n", + "Entity 'http://edamontology.org/format_3167' - Label 'Experiment annotation format'\n", + "Entity 'http://edamontology.org/format_3235' - Label 'Cytoband format'\n", + "Entity 'http://edamontology.org/format_3235' - Label 'Cytoband format'\n", + "Entity 'http://edamontology.org/format_3235' - Label 'Cytoband format'\n", + "Entity 'http://edamontology.org/format_3239' - Label 'CopasiML'\n", + "Entity 'http://edamontology.org/format_3239' - Label 'CopasiML'\n", + "Entity 'http://edamontology.org/format_3239' - Label 'CopasiML'\n", + "Entity 'http://edamontology.org/format_3240' - Label 'CellML'\n", + "Entity 'http://edamontology.org/format_3240' - Label 'CellML'\n", + "Entity 'http://edamontology.org/format_3242' - Label 'PSI MI TAB (MITAB)'\n", + "Entity 'http://edamontology.org/format_3242' - Label 'PSI MI TAB (MITAB)'\n", + "Entity 'http://edamontology.org/format_3243' - Label 'PSI-PAR'\n", + "Entity 'http://edamontology.org/format_3244' - Label 'mzML'\n", + "Entity 'http://edamontology.org/format_3244' - Label 'mzML'\n", + "Entity 'http://edamontology.org/format_3245' - Label 'Mass spectrometry data format'\n", + "Entity 'http://edamontology.org/format_3245' - Label 'Mass spectrometry data format'\n", + "Entity 'http://edamontology.org/format_3246' - Label 'TraML'\n", + "Entity 'http://edamontology.org/format_3246' - Label 'TraML'\n", + "Entity 'http://edamontology.org/format_3247' - Label 'mzIdentML'\n", + "Entity 'http://edamontology.org/format_3247' - Label 'mzIdentML'\n", + "Entity 'http://edamontology.org/format_3248' - Label 'mzQuantML'\n", + "Entity 'http://edamontology.org/format_3248' - Label 'mzQuantML'\n", + "Entity 'http://edamontology.org/format_3249' - Label 'GelML'\n", + "Entity 'http://edamontology.org/format_3249' - Label 'GelML'\n", + "Entity 'http://edamontology.org/format_3250' - Label 'spML'\n", + "Entity 'http://edamontology.org/format_3250' - Label 'spML'\n", + "Entity 'http://edamontology.org/format_3252' - Label 'OWL Functional Syntax'\n", + "Entity 'http://edamontology.org/format_3252' - Label 'OWL Functional Syntax'\n", + "Entity 'http://edamontology.org/format_3253' - Label 'Manchester OWL Syntax'\n", + "Entity 'http://edamontology.org/format_3253' - Label 'Manchester OWL Syntax'\n", + "Entity 'http://edamontology.org/format_3254' - Label 'KRSS2 Syntax'\n", + "Entity 'http://edamontology.org/format_3254' - Label 'KRSS2 Syntax'\n", + "Entity 'http://edamontology.org/format_3255' - Label 'Turtle'\n", + "Entity 'http://edamontology.org/format_3255' - Label 'Turtle'\n", + "Entity 'http://edamontology.org/format_3256' - Label 'N-Triples'\n", + "Entity 'http://edamontology.org/format_3256' - Label 'N-Triples'\n", + "Entity 'http://edamontology.org/format_3257' - Label 'Notation3'\n", + "Entity 'http://edamontology.org/format_3257' - Label 'Notation3'\n", + "Entity 'http://edamontology.org/format_3261' - Label 'RDF/XML'\n", + "Entity 'http://edamontology.org/format_3261' - Label 'RDF/XML'\n", + "Entity 'http://edamontology.org/format_3262' - Label 'OWL/XML'\n", + "Entity 'http://edamontology.org/format_3262' - Label 'OWL/XML'\n", + "Entity 'http://edamontology.org/format_3281' - Label 'A2M'\n", + "Entity 'http://edamontology.org/format_3281' - Label 'A2M'\n", + "Entity 'http://edamontology.org/format_3284' - Label 'SFF'\n", + "Entity 'http://edamontology.org/format_3284' - Label 'SFF'\n", + "Entity 'http://edamontology.org/format_3285' - Label 'MAP'\n", + "Entity 'http://edamontology.org/format_3286' - Label 'PED'\n", + "Entity 'http://edamontology.org/format_3287' - Label 'Individual genetic data format'\n", + "Entity 'http://edamontology.org/format_3288' - Label 'PED/MAP'\n", + "Entity 'http://edamontology.org/format_3288' - Label 'PED/MAP'\n", + "Entity 'http://edamontology.org/format_3309' - Label 'CT'\n", + "Entity 'http://edamontology.org/format_3309' - Label 'CT'\n", + "Entity 'http://edamontology.org/format_3310' - Label 'SS'\n", + "Entity 'http://edamontology.org/format_3310' - Label 'SS'\n", + "Entity 'http://edamontology.org/format_3311' - Label 'RNAML'\n", + "Entity 'http://edamontology.org/format_3311' - Label 'RNAML'\n", + "Entity 'http://edamontology.org/format_3311' - Label 'RNAML'\n", + "Entity 'http://edamontology.org/format_3312' - Label 'GDE'\n", + "Entity 'http://edamontology.org/format_3312' - Label 'GDE'\n", + "Entity 'http://edamontology.org/format_3313' - Label 'BLC'\n", + "Entity 'http://edamontology.org/format_3326' - Label 'Data index format'\n", + "Entity 'http://edamontology.org/format_3326' - Label 'Data index format'\n", + "Entity 'http://edamontology.org/format_3327' - Label 'BAI'\n", + "Entity 'http://edamontology.org/format_3327' - Label 'BAI'\n", + "Entity 'http://edamontology.org/format_3327' - Label 'BAI'\n", + "Entity 'http://edamontology.org/format_3328' - Label 'HMMER2'\n", + "Entity 'http://edamontology.org/format_3329' - Label 'HMMER3'\n", + "Entity 'http://edamontology.org/format_3330' - Label 'PO'\n", + "Entity 'http://edamontology.org/format_3331' - Label 'BLAST XML results format'\n", + "Entity 'http://edamontology.org/format_3331' - Label 'BLAST XML results format'\n", + "Entity 'http://edamontology.org/format_3462' - Label 'CRAM'\n", + "Entity 'http://edamontology.org/format_3462' - Label 'CRAM'\n", + "Entity 'http://edamontology.org/format_3464' - Label 'JSON'\n", + "Entity 'http://edamontology.org/format_3464' - Label 'JSON'\n", + "Entity 'http://edamontology.org/format_3466' - Label 'EPS'\n", + "Entity 'http://edamontology.org/format_3467' - Label 'GIF'\n", + "Entity 'http://edamontology.org/format_3468' - Label 'xls'\n", + "Entity 'http://edamontology.org/format_3468' - Label 'xls'\n", + "Entity 'http://edamontology.org/format_3475' - Label 'TSV'\n", + "Entity 'http://edamontology.org/format_3476' - Label 'Gene expression data format'\n", + "Entity 'http://edamontology.org/format_3476' - Label 'Gene expression data format'\n", + "Entity 'http://edamontology.org/format_3477' - Label 'Cytoscape input file format'\n", + "Entity 'http://edamontology.org/format_3477' - Label 'Cytoscape input file format'\n", + "Entity 'http://edamontology.org/format_3484' - Label 'ebwt'\n", + "Entity 'http://edamontology.org/format_3484' - Label 'ebwt'\n", + "Entity 'http://edamontology.org/format_3484' - Label 'ebwt'\n", + "Entity 'http://edamontology.org/format_3485' - Label 'RSF'\n", + "Entity 'http://edamontology.org/format_3486' - Label 'GCG format variant'\n", + "Entity 'http://edamontology.org/format_3486' - Label 'GCG format variant'\n", + "Entity 'http://edamontology.org/format_3486' - Label 'GCG format variant'\n", + "Entity 'http://edamontology.org/format_3487' - Label 'BSML'\n", + "Entity 'http://edamontology.org/format_3487' - Label 'BSML'\n", + "Entity 'http://edamontology.org/format_3491' - Label 'ebwtl'\n", + "Entity 'http://edamontology.org/format_3491' - Label 'ebwtl'\n", + "Entity 'http://edamontology.org/format_3491' - Label 'ebwtl'\n", + "Entity 'http://edamontology.org/format_3499' - Label 'Ensembl variation file format'\n", + "Entity 'http://edamontology.org/format_3499' - Label 'Ensembl variation file format'\n", + "Entity 'http://edamontology.org/format_3506' - Label 'docx'\n", + "Entity 'http://edamontology.org/format_3506' - Label 'docx'\n", + "Entity 'http://edamontology.org/format_3507' - Label 'Document format'\n", + "Entity 'http://edamontology.org/format_3508' - Label 'PDF'\n", + "Entity 'http://edamontology.org/format_3508' - Label 'PDF'\n", + "Entity 'http://edamontology.org/format_3547' - Label 'Image format'\n", + "Entity 'http://edamontology.org/format_3547' - Label 'Image format'\n", + "Entity 'http://edamontology.org/format_3548' - Label 'DICOM format'\n", + "Entity 'http://edamontology.org/format_3548' - Label 'DICOM format'\n", + "Entity 'http://edamontology.org/format_3549' - Label 'nii'\n", + "Entity 'http://edamontology.org/format_3549' - Label 'nii'\n", + "Entity 'http://edamontology.org/format_3550' - Label 'mhd'\n", + "Entity 'http://edamontology.org/format_3550' - Label 'mhd'\n", + "Entity 'http://edamontology.org/format_3551' - Label 'nrrd'\n", + "Entity 'http://edamontology.org/format_3551' - Label 'nrrd'\n", + "Entity 'http://edamontology.org/format_3554' - Label 'R file format'\n", + "Entity 'http://edamontology.org/format_3555' - Label 'SPSS'\n", + "Entity 'http://edamontology.org/format_3556' - Label 'MHTML'\n", + "Entity 'http://edamontology.org/format_3578' - Label 'IDAT'\n", + "Entity 'http://edamontology.org/format_3578' - Label 'IDAT'\n", + "Entity 'http://edamontology.org/format_3578' - Label 'IDAT'\n", + "Entity 'http://edamontology.org/format_3579' - Label 'JPG'\n", + "Entity 'http://edamontology.org/format_3579' - Label 'JPG'\n", + "Entity 'http://edamontology.org/format_3580' - Label 'rcc'\n", + "Entity 'http://edamontology.org/format_3580' - Label 'rcc'\n", + "Entity 'http://edamontology.org/format_3581' - Label 'arff'\n", + "Entity 'http://edamontology.org/format_3582' - Label 'afg'\n", + "Entity 'http://edamontology.org/format_3582' - Label 'afg'\n", + "Entity 'http://edamontology.org/format_3583' - Label 'bedgraph'\n", + "Entity 'http://edamontology.org/format_3583' - Label 'bedgraph'\n", + "Entity 'http://edamontology.org/format_3584' - Label 'bedstrict'\n", + "Entity 'http://edamontology.org/format_3585' - Label 'bed6'\n", + "Entity 'http://edamontology.org/format_3586' - Label 'bed12'\n", + "Entity 'http://edamontology.org/format_3587' - Label 'chrominfo'\n", + "Entity 'http://edamontology.org/format_3587' - Label 'chrominfo'\n", + "Entity 'http://edamontology.org/format_3588' - Label 'customtrack'\n", + "Entity 'http://edamontology.org/format_3588' - Label 'customtrack'\n", + "Entity 'http://edamontology.org/format_3589' - Label 'csfasta'\n", + "Entity 'http://edamontology.org/format_3589' - Label 'csfasta'\n", + "Entity 'http://edamontology.org/format_3590' - Label 'HDF5'\n", + "Entity 'http://edamontology.org/format_3590' - Label 'HDF5'\n", + "Entity 'http://edamontology.org/format_3591' - Label 'TIFF'\n", + "Entity 'http://edamontology.org/format_3591' - Label 'TIFF'\n", + "Entity 'http://edamontology.org/format_3592' - Label 'BMP'\n", + "Entity 'http://edamontology.org/format_3592' - Label 'BMP'\n", + "Entity 'http://edamontology.org/format_3593' - Label 'im'\n", + "Entity 'http://edamontology.org/format_3593' - Label 'im'\n", + "Entity 'http://edamontology.org/format_3594' - Label 'pcd'\n", + "Entity 'http://edamontology.org/format_3594' - Label 'pcd'\n", + "Entity 'http://edamontology.org/format_3595' - Label 'pcx'\n", + "Entity 'http://edamontology.org/format_3595' - Label 'pcx'\n", + "Entity 'http://edamontology.org/format_3596' - Label 'ppm'\n", + "Entity 'http://edamontology.org/format_3596' - Label 'ppm'\n", + "Entity 'http://edamontology.org/format_3597' - Label 'psd'\n", + "Entity 'http://edamontology.org/format_3597' - Label 'psd'\n", + "Entity 'http://edamontology.org/format_3598' - Label 'xbm'\n", + "Entity 'http://edamontology.org/format_3598' - Label 'xbm'\n", + "Entity 'http://edamontology.org/format_3599' - Label 'xpm'\n", + "Entity 'http://edamontology.org/format_3599' - Label 'xpm'\n", + "Entity 'http://edamontology.org/format_3600' - Label 'rgb'\n", + "Entity 'http://edamontology.org/format_3600' - Label 'rgb'\n", + "Entity 'http://edamontology.org/format_3601' - Label 'pbm'\n", + "Entity 'http://edamontology.org/format_3601' - Label 'pbm'\n", + "Entity 'http://edamontology.org/format_3602' - Label 'pgm'\n", + "Entity 'http://edamontology.org/format_3602' - Label 'pgm'\n", + "Entity 'http://edamontology.org/format_3603' - Label 'PNG'\n", + "Entity 'http://edamontology.org/format_3603' - Label 'PNG'\n", + "Entity 'http://edamontology.org/format_3604' - Label 'SVG'\n", + "Entity 'http://edamontology.org/format_3604' - Label 'SVG'\n", + "Entity 'http://edamontology.org/format_3605' - Label 'rast'\n", + "Entity 'http://edamontology.org/format_3605' - Label 'rast'\n", + "Entity 'http://edamontology.org/format_3606' - Label 'Sequence quality report format (text)'\n", + "Entity 'http://edamontology.org/format_3606' - Label 'Sequence quality report format (text)'\n", + "Entity 'http://edamontology.org/format_3607' - Label 'qual'\n", + "Entity 'http://edamontology.org/format_3607' - Label 'qual'\n", + "Entity 'http://edamontology.org/format_3607' - Label 'qual'\n", + "Entity 'http://edamontology.org/format_3608' - Label 'qualsolexa'\n", + "Entity 'http://edamontology.org/format_3608' - Label 'qualsolexa'\n", + "Entity 'http://edamontology.org/format_3609' - Label 'qualillumina'\n", + "Entity 'http://edamontology.org/format_3609' - Label 'qualillumina'\n", + "Entity 'http://edamontology.org/format_3610' - Label 'qualsolid'\n", + "Entity 'http://edamontology.org/format_3611' - Label 'qual454'\n", + "Entity 'http://edamontology.org/format_3612' - Label 'ENCODE peak format'\n", + "Entity 'http://edamontology.org/format_3613' - Label 'ENCODE narrow peak format'\n", + "Entity 'http://edamontology.org/format_3614' - Label 'ENCODE broad peak format'\n", + "Entity 'http://edamontology.org/format_3615' - Label 'bgzip'\n", + "Entity 'http://edamontology.org/format_3615' - Label 'bgzip'\n", + "Entity 'http://edamontology.org/format_3616' - Label 'tabix'\n", + "Entity 'http://edamontology.org/format_3616' - Label 'tabix'\n", + "Entity 'http://edamontology.org/format_3617' - Label 'Graph format'\n", + "Entity 'http://edamontology.org/format_3618' - Label 'xgmml'\n", + "Entity 'http://edamontology.org/format_3619' - Label 'sif'\n", + "Entity 'http://edamontology.org/format_3620' - Label 'xlsx'\n", + "Entity 'http://edamontology.org/format_3620' - Label 'xlsx'\n", + "Entity 'http://edamontology.org/format_3621' - Label 'SQLite format'\n", + "Entity 'http://edamontology.org/format_3622' - Label 'Gemini SQLite format'\n", + "Entity 'http://edamontology.org/format_3622' - Label 'Gemini SQLite format'\n", + "Entity 'http://edamontology.org/format_3623' - Label 'Index format'\n", + "Entity 'http://edamontology.org/format_3623' - Label 'Index format'\n", + "Entity 'http://edamontology.org/format_3624' - Label 'snpeffdb'\n", + "Entity 'http://edamontology.org/format_3624' - Label 'snpeffdb'\n", + "Entity 'http://edamontology.org/format_3626' - Label 'MAT'\n", + "Entity 'http://edamontology.org/format_3626' - Label 'MAT'\n", + "Entity 'http://edamontology.org/format_3650' - Label 'netCDF'\n", + "Entity 'http://edamontology.org/format_3650' - Label 'netCDF'\n", + "Entity 'http://edamontology.org/format_3650' - Label 'netCDF'\n", + "Entity 'http://edamontology.org/format_3651' - Label 'MGF'\n", + "Entity 'http://edamontology.org/format_3652' - Label 'dta'\n", + "Entity 'http://edamontology.org/format_3653' - Label 'pkl'\n", + "Entity 'http://edamontology.org/format_3654' - Label 'mzXML'\n", + "Entity 'http://edamontology.org/format_3655' - Label 'pepXML'\n", + "Entity 'http://edamontology.org/format_3655' - Label 'pepXML'\n", + "Entity 'http://edamontology.org/format_3657' - Label 'GPML'\n", + "Entity 'http://edamontology.org/format_3657' - Label 'GPML'\n", + "Entity 'http://edamontology.org/format_3665' - Label 'K-mer countgraph'\n", + "Entity 'http://edamontology.org/format_3665' - Label 'K-mer countgraph'\n", + "Entity 'http://edamontology.org/format_3681' - Label 'mzTab'\n", + "Entity 'http://edamontology.org/format_3681' - Label 'mzTab'\n", + "Entity 'http://edamontology.org/format_3682' - Label 'imzML metadata file'\n", + "Entity 'http://edamontology.org/format_3682' - Label 'imzML metadata file'\n", + "Entity 'http://edamontology.org/format_3683' - Label 'qcML'\n", + "Entity 'http://edamontology.org/format_3683' - Label 'qcML'\n", + "Entity 'http://edamontology.org/format_3683' - Label 'qcML'\n", + "Entity 'http://edamontology.org/format_3684' - Label 'PRIDE XML'\n", + "Entity 'http://edamontology.org/format_3684' - Label 'PRIDE XML'\n", + "Entity 'http://edamontology.org/format_3684' - Label 'PRIDE XML'\n", + "Entity 'http://edamontology.org/format_3685' - Label 'SED-ML'\n", + "Entity 'http://edamontology.org/format_3685' - Label 'SED-ML'\n", + "Entity 'http://edamontology.org/format_3686' - Label 'COMBINE OMEX'\n", + "Entity 'http://edamontology.org/format_3686' - Label 'COMBINE OMEX'\n", + "Entity 'http://edamontology.org/format_3686' - Label 'COMBINE OMEX'\n", + "Entity 'http://edamontology.org/format_3687' - Label 'ISA-TAB'\n", + "Entity 'http://edamontology.org/format_3687' - Label 'ISA-TAB'\n", + "Entity 'http://edamontology.org/format_3687' - Label 'ISA-TAB'\n", + "Entity 'http://edamontology.org/format_3688' - Label 'SBtab'\n", + "Entity 'http://edamontology.org/format_3688' - Label 'SBtab'\n", + "Entity 'http://edamontology.org/format_3689' - Label 'BCML'\n", + "Entity 'http://edamontology.org/format_3689' - Label 'BCML'\n", + "Entity 'http://edamontology.org/format_3690' - Label 'BDML'\n", + "Entity 'http://edamontology.org/format_3691' - Label 'BEL'\n", + "Entity 'http://edamontology.org/format_3692' - Label 'SBGN-ML'\n", + "Entity 'http://edamontology.org/format_3692' - Label 'SBGN-ML'\n", + "Entity 'http://edamontology.org/format_3693' - Label 'AGP'\n", + "Entity 'http://edamontology.org/format_3693' - Label 'AGP'\n", + "Entity 'http://edamontology.org/format_3696' - Label 'PS'\n", + "Entity 'http://edamontology.org/format_3698' - Label 'SRA format'\n", + "Entity 'http://edamontology.org/format_3699' - Label 'VDB'\n", + "Entity 'http://edamontology.org/format_3700' - Label 'Tabix index file format'\n", + "Entity 'http://edamontology.org/format_3700' - Label 'Tabix index file format'\n", + "Entity 'http://edamontology.org/format_3700' - Label 'Tabix index file format'\n", + "Entity 'http://edamontology.org/format_3701' - Label 'Sequin format'\n", + "Entity 'http://edamontology.org/format_3702' - Label 'MSF'\n", + "Entity 'http://edamontology.org/format_3706' - Label 'Biodiversity data format'\n", + "Entity 'http://edamontology.org/format_3706' - Label 'Biodiversity data format'\n", + "Entity 'http://edamontology.org/format_3708' - Label 'ABCD format'\n", + "Entity 'http://edamontology.org/format_3708' - Label 'ABCD format'\n", + "Entity 'http://edamontology.org/format_3709' - Label 'GCT/Res format'\n", + "Entity 'http://edamontology.org/format_3709' - Label 'GCT/Res format'\n", + "Entity 'http://edamontology.org/format_3710' - Label 'WIFF format'\n", + "Entity 'http://edamontology.org/format_3710' - Label 'WIFF format'\n", + "Entity 'http://edamontology.org/format_3711' - Label 'X!Tandem XML'\n", + "Entity 'http://edamontology.org/format_3711' - Label 'X!Tandem XML'\n", + "Entity 'http://edamontology.org/format_3712' - Label 'Thermo RAW'\n", + "Entity 'http://edamontology.org/format_3712' - Label 'Thermo RAW'\n", + "Entity 'http://edamontology.org/format_3713' - Label 'Mascot .dat file'\n", + "Entity 'http://edamontology.org/format_3713' - Label 'Mascot .dat file'\n", + "Entity 'http://edamontology.org/format_3714' - Label 'MaxQuant APL peaklist format'\n", + "Entity 'http://edamontology.org/format_3714' - Label 'MaxQuant APL peaklist format'\n", + "Entity 'http://edamontology.org/format_3725' - Label 'SBOL'\n", + "Entity 'http://edamontology.org/format_3726' - Label 'PMML'\n", + "Entity 'http://edamontology.org/format_3727' - Label 'OME-TIFF'\n", + "Entity 'http://edamontology.org/format_3727' - Label 'OME-TIFF'\n", + "Entity 'http://edamontology.org/format_3728' - Label 'LocARNA PP'\n", + "Entity 'http://edamontology.org/format_3729' - Label 'dbGaP format'\n", + "Entity 'http://edamontology.org/format_3746' - Label 'BIOM format'\n", + "Entity 'http://edamontology.org/format_3746' - Label 'BIOM format'\n", + "Entity 'http://edamontology.org/format_3747' - Label 'protXML'\n", + "Entity 'http://edamontology.org/format_3747' - Label 'protXML'\n", + "Entity 'http://edamontology.org/format_3748' - Label 'Linked data format'\n", + "Entity 'http://edamontology.org/format_3749' - Label 'JSON-LD'\n", + "Entity 'http://edamontology.org/format_3749' - Label 'JSON-LD'\n", + "Entity 'http://edamontology.org/format_3749' - Label 'JSON-LD'\n", + "Entity 'http://edamontology.org/format_3750' - Label 'YAML'\n", + "Entity 'http://edamontology.org/format_3751' - Label 'DSV'\n", + "Entity 'http://edamontology.org/format_3752' - Label 'CSV'\n", + "Entity 'http://edamontology.org/format_3758' - Label 'SEQUEST .out file'\n", + "Entity 'http://edamontology.org/format_3758' - Label 'SEQUEST .out file'\n", + "Entity 'http://edamontology.org/format_3764' - Label 'idXML'\n", + "Entity 'http://edamontology.org/format_3764' - Label 'idXML'\n", + "Entity 'http://edamontology.org/format_3765' - Label 'KNIME datatable format'\n", + "Entity 'http://edamontology.org/format_3770' - Label 'UniProtKB XML'\n", + "Entity 'http://edamontology.org/format_3770' - Label 'UniProtKB XML'\n", + "Entity 'http://edamontology.org/format_3770' - Label 'UniProtKB XML'\n", + "Entity 'http://edamontology.org/format_3771' - Label 'UniProtKB RDF'\n", + "Entity 'http://edamontology.org/format_3771' - Label 'UniProtKB RDF'\n", + "Entity 'http://edamontology.org/format_3772' - Label 'BioJSON (BioXSD)'\n", + "Entity 'http://edamontology.org/format_3772' - Label 'BioJSON (BioXSD)'\n", + "Entity 'http://edamontology.org/format_3772' - Label 'BioJSON (BioXSD)'\n", + "Entity 'http://edamontology.org/format_3772' - Label 'BioJSON (BioXSD)'\n", + "Entity 'http://edamontology.org/format_3772' - Label 'BioJSON (BioXSD)'\n", + "Entity 'http://edamontology.org/format_3772' - Label 'BioJSON (BioXSD)'\n", + "Entity 'http://edamontology.org/format_3772' - Label 'BioJSON (BioXSD)'\n", + "Entity 'http://edamontology.org/format_3772' - Label 'BioJSON (BioXSD)'\n", + "Entity 'http://edamontology.org/format_3772' - Label 'BioJSON (BioXSD)'\n", + "Entity 'http://edamontology.org/format_3772' - Label 'BioJSON (BioXSD)'\n", + "Entity 'http://edamontology.org/format_3773' - Label 'BioYAML'\n", + "Entity 'http://edamontology.org/format_3773' - Label 'BioYAML'\n", + "Entity 'http://edamontology.org/format_3773' - Label 'BioYAML'\n", + "Entity 'http://edamontology.org/format_3773' - Label 'BioYAML'\n", + "Entity 'http://edamontology.org/format_3773' - Label 'BioYAML'\n", + "Entity 'http://edamontology.org/format_3773' - Label 'BioYAML'\n", + "Entity 'http://edamontology.org/format_3773' - Label 'BioYAML'\n", + "Entity 'http://edamontology.org/format_3773' - Label 'BioYAML'\n", + "Entity 'http://edamontology.org/format_3773' - Label 'BioYAML'\n", + "Entity 'http://edamontology.org/format_3773' - Label 'BioYAML'\n", + "Entity 'http://edamontology.org/format_3774' - Label 'BioJSON (Jalview)'\n", + "Entity 'http://edamontology.org/format_3774' - Label 'BioJSON (Jalview)'\n", + "Entity 'http://edamontology.org/format_3774' - Label 'BioJSON (Jalview)'\n", + "Entity 'http://edamontology.org/format_3774' - Label 'BioJSON (Jalview)'\n", + "Entity 'http://edamontology.org/format_3774' - Label 'BioJSON (Jalview)'\n", + "Entity 'http://edamontology.org/format_3775' - Label 'GSuite'\n", + "Entity 'http://edamontology.org/format_3775' - Label 'GSuite'\n", + "Entity 'http://edamontology.org/format_3776' - Label 'BTrack'\n", + "Entity 'http://edamontology.org/format_3776' - Label 'BTrack'\n", + "Entity 'http://edamontology.org/format_3776' - Label 'BTrack'\n", + "Entity 'http://edamontology.org/format_3776' - Label 'BTrack'\n", + "Entity 'http://edamontology.org/format_3777' - Label 'MCPD'\n", + "Entity 'http://edamontology.org/format_3777' - Label 'MCPD'\n", + "Entity 'http://edamontology.org/format_3777' - Label 'MCPD'\n", + "Entity 'http://edamontology.org/format_3777' - Label 'MCPD'\n", + "Entity 'http://edamontology.org/format_3777' - Label 'MCPD'\n", + "Entity 'http://edamontology.org/format_3780' - Label 'Annotated text format'\n", + "Entity 'http://edamontology.org/format_3780' - Label 'Annotated text format'\n", + "Entity 'http://edamontology.org/format_3781' - Label 'PubAnnotation format'\n", + "Entity 'http://edamontology.org/format_3781' - Label 'PubAnnotation format'\n", + "Entity 'http://edamontology.org/format_3782' - Label 'BioC'\n", + "Entity 'http://edamontology.org/format_3782' - Label 'BioC'\n", + "Entity 'http://edamontology.org/format_3783' - Label 'PubTator format'\n", + "Entity 'http://edamontology.org/format_3783' - Label 'PubTator format'\n", + "Entity 'http://edamontology.org/format_3784' - Label 'Open Annotation format'\n", + "Entity 'http://edamontology.org/format_3784' - Label 'Open Annotation format'\n", + "Entity 'http://edamontology.org/format_3784' - Label 'Open Annotation format'\n", + "Entity 'http://edamontology.org/format_3785' - Label 'BioNLP Shared Task format'\n", + "Entity 'http://edamontology.org/format_3785' - Label 'BioNLP Shared Task format'\n", + "Entity 'http://edamontology.org/format_3787' - Label 'Query language'\n", + "Entity 'http://edamontology.org/format_3787' - Label 'Query language'\n", + "Entity 'http://edamontology.org/format_3788' - Label 'SQL'\n", + "Entity 'http://edamontology.org/format_3789' - Label 'XQuery'\n", + "Entity 'http://edamontology.org/format_3790' - Label 'SPARQL'\n", + "Entity 'http://edamontology.org/format_3804' - Label 'xsd'\n", + "Entity 'http://edamontology.org/format_3811' - Label 'XMFA'\n", + "Entity 'http://edamontology.org/format_3811' - Label 'XMFA'\n", + "Entity 'http://edamontology.org/format_3812' - Label 'GEN'\n", + "Entity 'http://edamontology.org/format_3812' - Label 'GEN'\n", + "Entity 'http://edamontology.org/format_3813' - Label 'SAMPLE file format'\n", + "Entity 'http://edamontology.org/format_3814' - Label 'SDF'\n", + "Entity 'http://edamontology.org/format_3814' - Label 'SDF'\n", + "Entity 'http://edamontology.org/format_3815' - Label 'Molfile'\n", + "Entity 'http://edamontology.org/format_3815' - Label 'Molfile'\n", + "Entity 'http://edamontology.org/format_3816' - Label 'Mol2'\n", + "Entity 'http://edamontology.org/format_3816' - Label 'Mol2'\n", + "Entity 'http://edamontology.org/format_3817' - Label 'latex'\n", + "Entity 'http://edamontology.org/format_3817' - Label 'latex'\n", + "Entity 'http://edamontology.org/format_3818' - Label 'ELAND format'\n", + "Entity 'http://edamontology.org/format_3818' - Label 'ELAND format'\n", + "Entity 'http://edamontology.org/format_3819' - Label 'Relaxed PHYLIP Interleaved'\n", + "Entity 'http://edamontology.org/format_3820' - Label 'Relaxed PHYLIP Sequential'\n", + "Entity 'http://edamontology.org/format_3821' - Label 'VisML'\n", + "Entity 'http://edamontology.org/format_3821' - Label 'VisML'\n", + "Entity 'http://edamontology.org/format_3822' - Label 'GML'\n", + "Entity 'http://edamontology.org/format_3822' - Label 'GML'\n", + "Entity 'http://edamontology.org/format_3823' - Label 'FASTG'\n", + "Entity 'http://edamontology.org/format_3823' - Label 'FASTG'\n", + "Entity 'http://edamontology.org/format_3824' - Label 'NMR data format'\n", + "Entity 'http://edamontology.org/format_3824' - Label 'NMR data format'\n", + "Entity 'http://edamontology.org/format_3825' - Label 'nmrML'\n", + "Entity 'http://edamontology.org/format_3825' - Label 'nmrML'\n", + "Entity 'http://edamontology.org/format_3826' - Label 'proBAM'\n", + "Entity 'http://edamontology.org/format_3826' - Label 'proBAM'\n", + "Entity 'http://edamontology.org/format_3826' - Label 'proBAM'\n", + "Entity 'http://edamontology.org/format_3827' - Label 'proBED'\n", + "Entity 'http://edamontology.org/format_3827' - Label 'proBED'\n", + "Entity 'http://edamontology.org/format_3828' - Label 'Raw microarray data format'\n", + "Entity 'http://edamontology.org/format_3828' - Label 'Raw microarray data format'\n", + "Entity 'http://edamontology.org/format_3829' - Label 'GPR'\n", + "Entity 'http://edamontology.org/format_3829' - Label 'GPR'\n", + "Entity 'http://edamontology.org/format_3830' - Label 'ARB'\n", + "Entity 'http://edamontology.org/format_3830' - Label 'ARB'\n", + "Entity 'http://edamontology.org/format_3832' - Label 'consensusXML'\n", + "Entity 'http://edamontology.org/format_3832' - Label 'consensusXML'\n", + "Entity 'http://edamontology.org/format_3833' - Label 'featureXML'\n", + "Entity 'http://edamontology.org/format_3833' - Label 'featureXML'\n", + "Entity 'http://edamontology.org/format_3834' - Label 'mzData'\n", + "Entity 'http://edamontology.org/format_3834' - Label 'mzData'\n", + "Entity 'http://edamontology.org/format_3835' - Label 'TIDE TXT'\n", + "Entity 'http://edamontology.org/format_3835' - Label 'TIDE TXT'\n", + "Entity 'http://edamontology.org/format_3836' - Label 'BLAST XML v2 results format'\n", + "Entity 'http://edamontology.org/format_3836' - Label 'BLAST XML v2 results format'\n", + "Entity 'http://edamontology.org/format_3838' - Label 'pptx'\n", + "Entity 'http://edamontology.org/format_3838' - Label 'pptx'\n", + "Entity 'http://edamontology.org/format_3839' - Label 'ibd'\n", + "Entity 'http://edamontology.org/format_3839' - Label 'ibd'\n", + "Entity 'http://edamontology.org/format_3841' - Label 'NLP format'\n", + "Entity 'http://edamontology.org/format_3843' - Label 'BEAST'\n", + "Entity 'http://edamontology.org/format_3843' - Label 'BEAST'\n", + "Entity 'http://edamontology.org/format_3844' - Label 'Chado-XML'\n", + "Entity 'http://edamontology.org/format_3844' - Label 'Chado-XML'\n", + "Entity 'http://edamontology.org/format_3845' - Label 'HSAML'\n", + "Entity 'http://edamontology.org/format_3845' - Label 'HSAML'\n", + "Entity 'http://edamontology.org/format_3846' - Label 'InterProScan XML'\n", + "Entity 'http://edamontology.org/format_3846' - Label 'InterProScan XML'\n", + "Entity 'http://edamontology.org/format_3847' - Label 'KGML'\n", + "Entity 'http://edamontology.org/format_3847' - Label 'KGML'\n", + "Entity 'http://edamontology.org/format_3848' - Label 'PubMed XML'\n", + "Entity 'http://edamontology.org/format_3848' - Label 'PubMed XML'\n", + "Entity 'http://edamontology.org/format_3849' - Label 'MSAML'\n", + "Entity 'http://edamontology.org/format_3849' - Label 'MSAML'\n", + "Entity 'http://edamontology.org/format_3850' - Label 'OrthoXML'\n", + "Entity 'http://edamontology.org/format_3850' - Label 'OrthoXML'\n", + "Entity 'http://edamontology.org/format_3850' - Label 'OrthoXML'\n", + "Entity 'http://edamontology.org/format_3851' - Label 'PSDML'\n", + "Entity 'http://edamontology.org/format_3851' - Label 'PSDML'\n", + "Entity 'http://edamontology.org/format_3852' - Label 'SeqXML'\n", + "Entity 'http://edamontology.org/format_3852' - Label 'SeqXML'\n", + "Entity 'http://edamontology.org/format_3853' - Label 'UniParc XML'\n", + "Entity 'http://edamontology.org/format_3853' - Label 'UniParc XML'\n", + "Entity 'http://edamontology.org/format_3854' - Label 'UniRef XML'\n", + "Entity 'http://edamontology.org/format_3854' - Label 'UniRef XML'\n", + "Entity 'http://edamontology.org/format_3857' - Label 'CWL'\n", + "Entity 'http://edamontology.org/format_3857' - Label 'CWL'\n", + "Entity 'http://edamontology.org/format_3858' - Label 'Waters RAW'\n", + "Entity 'http://edamontology.org/format_3858' - Label 'Waters RAW'\n", + "Entity 'http://edamontology.org/format_3859' - Label 'JCAMP-DX'\n", + "Entity 'http://edamontology.org/format_3859' - Label 'JCAMP-DX'\n", + "Entity 'http://edamontology.org/format_3862' - Label 'NLP annotation format'\n", + "Entity 'http://edamontology.org/format_3863' - Label 'NLP corpus format'\n", + "Entity 'http://edamontology.org/format_3864' - Label 'mirGFF3'\n", + "Entity 'http://edamontology.org/format_3864' - Label 'mirGFF3'\n", + "Entity 'http://edamontology.org/format_3865' - Label 'RNA annotation format'\n", + "Entity 'http://edamontology.org/format_3866' - Label 'Trajectory format'\n", + "Entity 'http://edamontology.org/format_3866' - Label 'Trajectory format'\n", + "Entity 'http://edamontology.org/format_3867' - Label 'Trajectory format (binary)'\n", + "Entity 'http://edamontology.org/format_3868' - Label 'Trajectory format (text)'\n", + "Entity 'http://edamontology.org/format_3873' - Label 'HDF'\n", + "Entity 'http://edamontology.org/format_3873' - Label 'HDF'\n", + "Entity 'http://edamontology.org/format_3874' - Label 'PCAzip'\n", + "Entity 'http://edamontology.org/format_3874' - Label 'PCAzip'\n", + "Entity 'http://edamontology.org/format_3875' - Label 'XTC'\n", + "Entity 'http://edamontology.org/format_3875' - Label 'XTC'\n", + "Entity 'http://edamontology.org/format_3876' - Label 'TNG'\n", + "Entity 'http://edamontology.org/format_3876' - Label 'TNG'\n", + "Entity 'http://edamontology.org/format_3877' - Label 'XYZ'\n", + "Entity 'http://edamontology.org/format_3877' - Label 'XYZ'\n", + "Entity 'http://edamontology.org/format_3877' - Label 'XYZ'\n", + "Entity 'http://edamontology.org/format_3878' - Label 'mdcrd'\n", + "Entity 'http://edamontology.org/format_3878' - Label 'mdcrd'\n", + "Entity 'http://edamontology.org/format_3878' - Label 'mdcrd'\n", + "Entity 'http://edamontology.org/format_3879' - Label 'Topology format'\n", + "Entity 'http://edamontology.org/format_3879' - Label 'Topology format'\n", + "Entity 'http://edamontology.org/format_3880' - Label 'GROMACS top'\n", + "Entity 'http://edamontology.org/format_3880' - Label 'GROMACS top'\n", + "Entity 'http://edamontology.org/format_3880' - Label 'GROMACS top'\n", + "Entity 'http://edamontology.org/format_3881' - Label 'AMBER top'\n", + "Entity 'http://edamontology.org/format_3881' - Label 'AMBER top'\n", + "Entity 'http://edamontology.org/format_3881' - Label 'AMBER top'\n", + "Entity 'http://edamontology.org/format_3882' - Label 'PSF'\n", + "Entity 'http://edamontology.org/format_3882' - Label 'PSF'\n", + "Entity 'http://edamontology.org/format_3882' - Label 'PSF'\n", + "Entity 'http://edamontology.org/format_3883' - Label 'GROMACS itp'\n", + "Entity 'http://edamontology.org/format_3883' - Label 'GROMACS itp'\n", + "Entity 'http://edamontology.org/format_3883' - Label 'GROMACS itp'\n", + "Entity 'http://edamontology.org/format_3883' - Label 'GROMACS itp'\n", + "Entity 'http://edamontology.org/format_3884' - Label 'FF parameter format'\n", + "Entity 'http://edamontology.org/format_3884' - Label 'FF parameter format'\n", + "Entity 'http://edamontology.org/format_3885' - Label 'BinPos'\n", + "Entity 'http://edamontology.org/format_3885' - Label 'BinPos'\n", + "Entity 'http://edamontology.org/format_3886' - Label 'RST'\n", + "Entity 'http://edamontology.org/format_3886' - Label 'RST'\n", + "Entity 'http://edamontology.org/format_3886' - Label 'RST'\n", + "Entity 'http://edamontology.org/format_3887' - Label 'CHARMM rtf'\n", + "Entity 'http://edamontology.org/format_3887' - Label 'CHARMM rtf'\n", + "Entity 'http://edamontology.org/format_3887' - Label 'CHARMM rtf'\n", + "Entity 'http://edamontology.org/format_3888' - Label 'AMBER frcmod'\n", + "Entity 'http://edamontology.org/format_3888' - Label 'AMBER frcmod'\n", + "Entity 'http://edamontology.org/format_3889' - Label 'AMBER off'\n", + "Entity 'http://edamontology.org/format_3889' - Label 'AMBER off'\n", + "Entity 'http://edamontology.org/format_3906' - Label 'NMReDATA'\n", + "Entity 'http://edamontology.org/format_3906' - Label 'NMReDATA'\n", + "Entity 'http://edamontology.org/format_3909' - Label 'BpForms'\n", + "Entity 'http://edamontology.org/format_3909' - Label 'BpForms'\n", + "Entity 'http://edamontology.org/format_3909' - Label 'BpForms'\n", + "Entity 'http://edamontology.org/format_3909' - Label 'BpForms'\n", + "Entity 'http://edamontology.org/format_3910' - Label 'trr'\n", + "Entity 'http://edamontology.org/format_3910' - Label 'trr'\n", + "Entity 'http://edamontology.org/format_3910' - Label 'trr'\n", + "Entity 'http://edamontology.org/format_3911' - Label 'msh'\n", + "Entity 'http://edamontology.org/format_3911' - Label 'msh'\n", + "Entity 'http://edamontology.org/format_3911' - Label 'msh'\n", + "Entity 'http://edamontology.org/format_3913' - Label 'Loom'\n", + "Entity 'http://edamontology.org/format_3913' - Label 'Loom'\n", + "Entity 'http://edamontology.org/format_3913' - Label 'Loom'\n", + "Entity 'http://edamontology.org/format_3913' - Label 'Loom'\n", + "Entity 'http://edamontology.org/format_3915' - Label 'Zarr'\n", + "Entity 'http://edamontology.org/format_3915' - Label 'Zarr'\n", + "Entity 'http://edamontology.org/format_3915' - Label 'Zarr'\n", + "Entity 'http://edamontology.org/format_3915' - Label 'Zarr'\n", + "Entity 'http://edamontology.org/format_3915' - Label 'Zarr'\n", + "Entity 'http://edamontology.org/format_3916' - Label 'MTX'\n", + "Entity 'http://edamontology.org/format_3916' - Label 'MTX'\n", + "Entity 'http://edamontology.org/format_3916' - Label 'MTX'\n", + "Entity 'http://edamontology.org/format_3916' - Label 'MTX'\n", + "Entity 'http://edamontology.org/format_3916' - Label 'MTX'\n", + "Entity 'http://edamontology.org/format_3951' - Label 'BcForms'\n", + "Entity 'http://edamontology.org/format_3951' - Label 'BcForms'\n", + "Entity 'http://edamontology.org/format_3951' - Label 'BcForms'\n", + "Entity 'http://edamontology.org/format_3956' - Label 'N-Quads'\n", + "Entity 'http://edamontology.org/format_3956' - Label 'N-Quads'\n", + "Entity 'http://edamontology.org/format_3969' - Label 'Vega'\n", + "Entity 'http://edamontology.org/format_3969' - Label 'Vega'\n", + "Entity 'http://edamontology.org/format_3970' - Label 'Vega-lite'\n", + "Entity 'http://edamontology.org/format_3970' - Label 'Vega-lite'\n", + "Entity 'http://edamontology.org/format_3971' - Label 'NeuroML'\n", + "Entity 'http://edamontology.org/format_3971' - Label 'NeuroML'\n", + "Entity 'http://edamontology.org/format_3971' - Label 'NeuroML'\n", + "Entity 'http://edamontology.org/format_3972' - Label 'BNGL'\n", + "Entity 'http://edamontology.org/format_3972' - Label 'BNGL'\n", + "Entity 'http://edamontology.org/format_3972' - Label 'BNGL'\n", + "Entity 'http://edamontology.org/format_3973' - Label 'Docker image'\n", + "Entity 'http://edamontology.org/format_3975' - Label 'GFA 1'\n", + "Entity 'http://edamontology.org/format_3975' - Label 'GFA 1'\n", + "Entity 'http://edamontology.org/format_3976' - Label 'GFA 2'\n", + "Entity 'http://edamontology.org/format_3976' - Label 'GFA 2'\n", + "Entity 'http://edamontology.org/format_3977' - Label 'ObjTables'\n", + "Entity 'http://edamontology.org/format_3978' - Label 'CONTIG'\n", + "Entity 'http://edamontology.org/format_3978' - Label 'CONTIG'\n", + "Entity 'http://edamontology.org/format_3979' - Label 'WEGO'\n", + "Entity 'http://edamontology.org/format_3979' - Label 'WEGO'\n", + "Entity 'http://edamontology.org/format_3980' - Label 'RPKM'\n", + "Entity 'http://edamontology.org/format_3980' - Label 'RPKM'\n", + "Entity 'http://edamontology.org/format_3981' - Label 'TAR format'\n", + "Entity 'http://edamontology.org/format_3982' - Label 'CHAIN'\n", + "Entity 'http://edamontology.org/format_3982' - Label 'CHAIN'\n", + "Entity 'http://edamontology.org/format_3983' - Label 'NET'\n", + "Entity 'http://edamontology.org/format_3983' - Label 'NET'\n", + "Entity 'http://edamontology.org/format_3984' - Label 'QMAP'\n", + "Entity 'http://edamontology.org/format_3984' - Label 'QMAP'\n", + "Entity 'http://edamontology.org/format_3985' - Label 'gxformat2'\n", + "Entity 'http://edamontology.org/format_3985' - Label 'gxformat2'\n", + "Entity 'http://edamontology.org/format_3986' - Label 'WMV'\n", + "Entity 'http://edamontology.org/format_3986' - Label 'WMV'\n", + "Entity 'http://edamontology.org/format_3987' - Label 'ZIP format'\n", + "Entity 'http://edamontology.org/format_3988' - Label 'LSM'\n", + "Entity 'http://edamontology.org/format_3988' - Label 'LSM'\n", + "Entity 'http://edamontology.org/format_3989' - Label 'GZIP format'\n", + "Entity 'http://edamontology.org/format_3990' - Label 'AVI'\n", + "Entity 'http://edamontology.org/format_3990' - Label 'AVI'\n", + "Entity 'http://edamontology.org/format_3991' - Label 'TrackDB'\n", + "Entity 'http://edamontology.org/format_3991' - Label 'TrackDB'\n", + "Entity 'http://edamontology.org/format_3992' - Label 'CIGAR format'\n", + "Entity 'http://edamontology.org/format_3992' - Label 'CIGAR format'\n", + "Entity 'http://edamontology.org/format_3993' - Label 'Stereolithography format'\n", + "Entity 'http://edamontology.org/format_3993' - Label 'Stereolithography format'\n", + "Entity 'http://edamontology.org/format_3994' - Label 'U3D'\n", + "Entity 'http://edamontology.org/format_3994' - Label 'U3D'\n", + "Entity 'http://edamontology.org/format_3995' - Label 'Texture file format'\n", + "Entity 'http://edamontology.org/format_3995' - Label 'Texture file format'\n", + "Entity 'http://edamontology.org/format_3996' - Label 'Python script'\n", + "Entity 'http://edamontology.org/format_3996' - Label 'Python script'\n", + "Entity 'http://edamontology.org/format_3997' - Label 'MPEG-4'\n", + "Entity 'http://edamontology.org/format_3997' - Label 'MPEG-4'\n", + "Entity 'http://edamontology.org/format_3998' - Label 'Perl script'\n", + "Entity 'http://edamontology.org/format_3998' - Label 'Perl script'\n", + "Entity 'http://edamontology.org/format_3999' - Label 'R script'\n", + "Entity 'http://edamontology.org/format_3999' - Label 'R script'\n", + "Entity 'http://edamontology.org/format_4000' - Label 'R markdown'\n", + "Entity 'http://edamontology.org/format_4000' - Label 'R markdown'\n", + "Entity 'http://edamontology.org/format_4001' - Label 'NIFTI format'\n", + "Entity 'http://edamontology.org/format_4001' - Label 'NIFTI format'\n", + "Entity 'http://edamontology.org/format_4002' - Label 'pickle'\n", + "Entity 'http://edamontology.org/format_4003' - Label 'NumPy format'\n", + "Entity 'http://edamontology.org/format_4004' - Label 'SimTools repertoire file format'\n", + "Entity 'http://edamontology.org/format_4005' - Label 'Configuration file format'\n", + "Entity 'http://edamontology.org/format_4006' - Label 'Zstandard format'\n", + "Entity 'http://edamontology.org/format_4007' - Label 'MATLAB script'\n", + "Entity 'http://edamontology.org/format_4007' - Label 'MATLAB script'\n", + "Entity 'http://edamontology.org/format_4015' - Label 'PEtab'\n", + "Entity 'http://edamontology.org/format_4015' - Label 'PEtab'\n", + "Entity 'http://edamontology.org/format_4018' - Label 'gVCF'\n", + "Entity 'http://edamontology.org/format_4023' - Label 'cml'\n", + "Entity 'http://edamontology.org/format_4023' - Label 'cml'\n", + "Entity 'http://edamontology.org/format_4024' - Label 'cif'\n", + "Entity 'http://edamontology.org/format_4024' - Label 'cif'\n", + "Entity 'http://edamontology.org/format_4025' - Label 'BioSimulators format for the specifications of biosimulation tools'\n", + "Entity 'http://edamontology.org/format_4026' - Label 'BioSimulators standard for command-line interfaces for biosimulation tools'\n", + "Entity 'http://edamontology.org/format_4035' - Label 'PQR'\n", + "Entity 'http://edamontology.org/format_4035' - Label 'PQR'\n", + "Entity 'http://edamontology.org/format_4036' - Label 'PDBQT'\n", + "Entity 'http://edamontology.org/format_4036' - Label 'PDBQT'\n", + "Entity 'http://edamontology.org/format_4039' - Label 'MSP'\n", + "Entity 'http://edamontology.org/format_4039' - Label 'MSP'\n", + "Entity 'http://edamontology.org/operation_0224' - Label 'Query and retrieval'\n", + "Entity 'http://edamontology.org/operation_0225' - Label 'Data retrieval (database cross-reference)'\n", + "Entity 'http://edamontology.org/operation_0225' - Label 'Data retrieval (database cross-reference)'\n", + "Entity 'http://edamontology.org/operation_0226' - Label 'Annotation'\n", + "Entity 'http://edamontology.org/operation_0226' - Label 'Annotation'\n", + "Entity 'http://edamontology.org/operation_0226' - Label 'Annotation'\n", + "Entity 'http://edamontology.org/operation_0227' - Label 'Indexing'\n", + "Entity 'http://edamontology.org/operation_0227' - Label 'Indexing'\n", + "Entity 'http://edamontology.org/operation_0228' - Label 'Data index analysis'\n", + "Entity 'http://edamontology.org/operation_0228' - Label 'Data index analysis'\n", + "Entity 'http://edamontology.org/operation_0229' - Label 'Annotation retrieval (sequence)'\n", + "Entity 'http://edamontology.org/operation_0229' - Label 'Annotation retrieval (sequence)'\n", + "Entity 'http://edamontology.org/operation_0230' - Label 'Sequence generation'\n", + "Entity 'http://edamontology.org/operation_0230' - Label 'Sequence generation'\n", + "Entity 'http://edamontology.org/operation_0231' - Label 'Sequence editing'\n", + "Entity 'http://edamontology.org/operation_0231' - Label 'Sequence editing'\n", + "Entity 'http://edamontology.org/operation_0232' - Label 'Sequence merging'\n", + "Entity 'http://edamontology.org/operation_0233' - Label 'Sequence conversion'\n", + "Entity 'http://edamontology.org/operation_0233' - Label 'Sequence conversion'\n", + "Entity 'http://edamontology.org/operation_0234' - Label 'Sequence complexity calculation'\n", + "Entity 'http://edamontology.org/operation_0234' - Label 'Sequence complexity calculation'\n", + "Entity 'http://edamontology.org/operation_0234' - Label 'Sequence complexity calculation'\n", + "Entity 'http://edamontology.org/operation_0235' - Label 'Sequence ambiguity calculation'\n", + "Entity 'http://edamontology.org/operation_0235' - Label 'Sequence ambiguity calculation'\n", + "Entity 'http://edamontology.org/operation_0235' - Label 'Sequence ambiguity calculation'\n", + "Entity 'http://edamontology.org/operation_0236' - Label 'Sequence composition calculation'\n", + "Entity 'http://edamontology.org/operation_0236' - Label 'Sequence composition calculation'\n", + "Entity 'http://edamontology.org/operation_0236' - Label 'Sequence composition calculation'\n", + "Entity 'http://edamontology.org/operation_0236' - Label 'Sequence composition calculation'\n", + "Entity 'http://edamontology.org/operation_0237' - Label 'Repeat sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0237' - Label 'Repeat sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0238' - Label 'Sequence motif discovery'\n", + "Entity 'http://edamontology.org/operation_0238' - Label 'Sequence motif discovery'\n", + "Entity 'http://edamontology.org/operation_0238' - Label 'Sequence motif discovery'\n", + "Entity 'http://edamontology.org/operation_0238' - Label 'Sequence motif discovery'\n", + "Entity 'http://edamontology.org/operation_0239' - Label 'Sequence motif recognition'\n", + "Entity 'http://edamontology.org/operation_0239' - Label 'Sequence motif recognition'\n", + "Entity 'http://edamontology.org/operation_0239' - Label 'Sequence motif recognition'\n", + "Entity 'http://edamontology.org/operation_0239' - Label 'Sequence motif recognition'\n", + "Entity 'http://edamontology.org/operation_0240' - Label 'Sequence motif comparison'\n", + "Entity 'http://edamontology.org/operation_0240' - Label 'Sequence motif comparison'\n", + "Entity 'http://edamontology.org/operation_0240' - Label 'Sequence motif comparison'\n", + "Entity 'http://edamontology.org/operation_0240' - Label 'Sequence motif comparison'\n", + "Entity 'http://edamontology.org/operation_0241' - Label 'Transcription regulatory sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0241' - Label 'Transcription regulatory sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0242' - Label 'Conserved transcription regulatory sequence identification'\n", + "Entity 'http://edamontology.org/operation_0242' - Label 'Conserved transcription regulatory sequence identification'\n", + "Entity 'http://edamontology.org/operation_0243' - Label 'Protein property calculation (from structure)'\n", + "Entity 'http://edamontology.org/operation_0243' - Label 'Protein property calculation (from structure)'\n", + "Entity 'http://edamontology.org/operation_0244' - Label 'Simulation analysis'\n", + "Entity 'http://edamontology.org/operation_0245' - Label 'Structural motif discovery'\n", + "Entity 'http://edamontology.org/operation_0245' - Label 'Structural motif discovery'\n", + "Entity 'http://edamontology.org/operation_0245' - Label 'Structural motif discovery'\n", + "Entity 'http://edamontology.org/operation_0246' - Label 'Protein domain recognition'\n", + "Entity 'http://edamontology.org/operation_0246' - Label 'Protein domain recognition'\n", + "Entity 'http://edamontology.org/operation_0246' - Label 'Protein domain recognition'\n", + "Entity 'http://edamontology.org/operation_0247' - Label 'Protein architecture analysis'\n", + "Entity 'http://edamontology.org/operation_0248' - Label 'Residue interaction calculation'\n", + "Entity 'http://edamontology.org/operation_0248' - Label 'Residue interaction calculation'\n", + "Entity 'http://edamontology.org/operation_0249' - Label 'Protein geometry calculation'\n", + "Entity 'http://edamontology.org/operation_0249' - Label 'Protein geometry calculation'\n", + "Entity 'http://edamontology.org/operation_0250' - Label 'Protein property calculation'\n", + "Entity 'http://edamontology.org/operation_0250' - Label 'Protein property calculation'\n", + "Entity 'http://edamontology.org/operation_0252' - Label 'Peptide immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0252' - Label 'Peptide immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0252' - Label 'Peptide immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0252' - Label 'Peptide immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0253' - Label 'Sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_0253' - Label 'Sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_0253' - Label 'Sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_0253' - Label 'Sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_0254' - Label 'Data retrieval (feature table)'\n", + "Entity 'http://edamontology.org/operation_0254' - Label 'Data retrieval (feature table)'\n", + "Entity 'http://edamontology.org/operation_0255' - Label 'Feature table query'\n", + "Entity 'http://edamontology.org/operation_0255' - Label 'Feature table query'\n", + "Entity 'http://edamontology.org/operation_0256' - Label 'Sequence feature comparison'\n", + "Entity 'http://edamontology.org/operation_0256' - Label 'Sequence feature comparison'\n", + "Entity 'http://edamontology.org/operation_0256' - Label 'Sequence feature comparison'\n", + "Entity 'http://edamontology.org/operation_0256' - Label 'Sequence feature comparison'\n", + "Entity 'http://edamontology.org/operation_0257' - Label 'Data retrieval (sequence alignment)'\n", + "Entity 'http://edamontology.org/operation_0257' - Label 'Data retrieval (sequence alignment)'\n", + "Entity 'http://edamontology.org/operation_0258' - Label 'Sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_0258' - Label 'Sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_0259' - Label 'Sequence alignment comparison'\n", + "Entity 'http://edamontology.org/operation_0259' - Label 'Sequence alignment comparison'\n", + "Entity 'http://edamontology.org/operation_0260' - Label 'Sequence alignment conversion'\n", + "Entity 'http://edamontology.org/operation_0260' - Label 'Sequence alignment conversion'\n", + "Entity 'http://edamontology.org/operation_0261' - Label 'Nucleic acid property processing'\n", + "Entity 'http://edamontology.org/operation_0261' - Label 'Nucleic acid property processing'\n", + "Entity 'http://edamontology.org/operation_0262' - Label 'Nucleic acid property calculation'\n", + "Entity 'http://edamontology.org/operation_0262' - Label 'Nucleic acid property calculation'\n", + "Entity 'http://edamontology.org/operation_0264' - Label 'Alternative splicing prediction'\n", + "Entity 'http://edamontology.org/operation_0264' - Label 'Alternative splicing prediction'\n", + "Entity 'http://edamontology.org/operation_0265' - Label 'Frameshift detection'\n", + "Entity 'http://edamontology.org/operation_0265' - Label 'Frameshift detection'\n", + "Entity 'http://edamontology.org/operation_0265' - Label 'Frameshift detection'\n", + "Entity 'http://edamontology.org/operation_0266' - Label 'Vector sequence detection'\n", + "Entity 'http://edamontology.org/operation_0267' - Label 'Protein secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0267' - Label 'Protein secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0267' - Label 'Protein secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0267' - Label 'Protein secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0268' - Label 'Protein super-secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0268' - Label 'Protein super-secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0269' - Label 'Transmembrane protein prediction'\n", + "Entity 'http://edamontology.org/operation_0269' - Label 'Transmembrane protein prediction'\n", + "Entity 'http://edamontology.org/operation_0270' - Label 'Transmembrane protein analysis'\n", + "Entity 'http://edamontology.org/operation_0270' - Label 'Transmembrane protein analysis'\n", + "Entity 'http://edamontology.org/operation_0271' - Label 'Structure prediction'\n", + "Entity 'http://edamontology.org/operation_0271' - Label 'Structure prediction'\n", + "Entity 'http://edamontology.org/operation_0271' - Label 'Structure prediction'\n", + "Entity 'http://edamontology.org/operation_0272' - Label 'Residue contact prediction'\n", + "Entity 'http://edamontology.org/operation_0272' - Label 'Residue contact prediction'\n", + "Entity 'http://edamontology.org/operation_0272' - Label 'Residue contact prediction'\n", + "Entity 'http://edamontology.org/operation_0273' - Label 'Protein interaction raw data analysis'\n", + "Entity 'http://edamontology.org/operation_0273' - Label 'Protein interaction raw data analysis'\n", + "Entity 'http://edamontology.org/operation_0274' - Label 'Protein-protein interaction prediction (from protein sequence)'\n", + "Entity 'http://edamontology.org/operation_0274' - Label 'Protein-protein interaction prediction (from protein sequence)'\n", + "Entity 'http://edamontology.org/operation_0275' - Label 'Protein-protein interaction prediction (from protein structure)'\n", + "Entity 'http://edamontology.org/operation_0275' - Label 'Protein-protein interaction prediction (from protein structure)'\n", + "Entity 'http://edamontology.org/operation_0276' - Label 'Protein interaction network analysis'\n", + "Entity 'http://edamontology.org/operation_0276' - Label 'Protein interaction network analysis'\n", + "Entity 'http://edamontology.org/operation_0276' - Label 'Protein interaction network analysis'\n", + "Entity 'http://edamontology.org/operation_0276' - Label 'Protein interaction network analysis'\n", + "Entity 'http://edamontology.org/operation_0277' - Label 'Pathway or network comparison'\n", + "Entity 'http://edamontology.org/operation_0277' - Label 'Pathway or network comparison'\n", + "Entity 'http://edamontology.org/operation_0277' - Label 'Pathway or network comparison'\n", + "Entity 'http://edamontology.org/operation_0278' - Label 'RNA secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0278' - Label 'RNA secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0278' - Label 'RNA secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0278' - Label 'RNA secondary structure prediction'\n", + "Entity 'http://edamontology.org/operation_0279' - Label 'Nucleic acid folding analysis'\n", + "Entity 'http://edamontology.org/operation_0279' - Label 'Nucleic acid folding analysis'\n", + "Entity 'http://edamontology.org/operation_0279' - Label 'Nucleic acid folding analysis'\n", + "Entity 'http://edamontology.org/operation_0279' - Label 'Nucleic acid folding analysis'\n", + "Entity 'http://edamontology.org/operation_0280' - Label 'Data retrieval (restriction enzyme annotation)'\n", + "Entity 'http://edamontology.org/operation_0280' - Label 'Data retrieval (restriction enzyme annotation)'\n", + "Entity 'http://edamontology.org/operation_0281' - Label 'Genetic marker identification'\n", + "Entity 'http://edamontology.org/operation_0281' - Label 'Genetic marker identification'\n", + "Entity 'http://edamontology.org/operation_0282' - Label 'Genetic mapping'\n", + "Entity 'http://edamontology.org/operation_0282' - Label 'Genetic mapping'\n", + "Entity 'http://edamontology.org/operation_0282' - Label 'Genetic mapping'\n", + "Entity 'http://edamontology.org/operation_0283' - Label 'Linkage analysis'\n", + "Entity 'http://edamontology.org/operation_0283' - Label 'Linkage analysis'\n", + "Entity 'http://edamontology.org/operation_0283' - Label 'Linkage analysis'\n", + "Entity 'http://edamontology.org/operation_0284' - Label 'Codon usage table generation'\n", + "Entity 'http://edamontology.org/operation_0284' - Label 'Codon usage table generation'\n", + "Entity 'http://edamontology.org/operation_0284' - Label 'Codon usage table generation'\n", + "Entity 'http://edamontology.org/operation_0285' - Label 'Codon usage table comparison'\n", + "Entity 'http://edamontology.org/operation_0285' - Label 'Codon usage table comparison'\n", + "Entity 'http://edamontology.org/operation_0286' - Label 'Codon usage analysis'\n", + "Entity 'http://edamontology.org/operation_0286' - Label 'Codon usage analysis'\n", + "Entity 'http://edamontology.org/operation_0286' - Label 'Codon usage analysis'\n", + "Entity 'http://edamontology.org/operation_0286' - Label 'Codon usage analysis'\n", + "Entity 'http://edamontology.org/operation_0286' - Label 'Codon usage analysis'\n", + "Entity 'http://edamontology.org/operation_0286' - Label 'Codon usage analysis'\n", + "Entity 'http://edamontology.org/operation_0287' - Label 'Base position variability plotting'\n", + "Entity 'http://edamontology.org/operation_0287' - Label 'Base position variability plotting'\n", + "Entity 'http://edamontology.org/operation_0287' - Label 'Base position variability plotting'\n", + "Entity 'http://edamontology.org/operation_0287' - Label 'Base position variability plotting'\n", + "Entity 'http://edamontology.org/operation_0288' - Label 'Sequence word comparison'\n", + "Entity 'http://edamontology.org/operation_0289' - Label 'Sequence distance matrix generation'\n", + "Entity 'http://edamontology.org/operation_0289' - Label 'Sequence distance matrix generation'\n", + "Entity 'http://edamontology.org/operation_0289' - Label 'Sequence distance matrix generation'\n", + "Entity 'http://edamontology.org/operation_0289' - Label 'Sequence distance matrix generation'\n", + "Entity 'http://edamontology.org/operation_0290' - Label 'Sequence redundancy removal'\n", + "Entity 'http://edamontology.org/operation_0290' - Label 'Sequence redundancy removal'\n", + "Entity 'http://edamontology.org/operation_0291' - Label 'Sequence clustering'\n", + "Entity 'http://edamontology.org/operation_0291' - Label 'Sequence clustering'\n", + "Entity 'http://edamontology.org/operation_0291' - Label 'Sequence clustering'\n", + "Entity 'http://edamontology.org/operation_0291' - Label 'Sequence clustering'\n", + "Entity 'http://edamontology.org/operation_0292' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0292' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0292' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0292' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0293' - Label 'Hybrid sequence alignment construction'\n", + "Entity 'http://edamontology.org/operation_0293' - Label 'Hybrid sequence alignment construction'\n", + "Entity 'http://edamontology.org/operation_0294' - Label 'Structure-based sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0295' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/operation_0295' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/operation_0295' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/operation_0295' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/operation_0296' - Label 'Sequence profile generation'\n", + "Entity 'http://edamontology.org/operation_0296' - Label 'Sequence profile generation'\n", + "Entity 'http://edamontology.org/operation_0296' - Label 'Sequence profile generation'\n", + "Entity 'http://edamontology.org/operation_0296' - Label 'Sequence profile generation'\n", + "Entity 'http://edamontology.org/operation_0296' - Label 'Sequence profile generation'\n", + "Entity 'http://edamontology.org/operation_0297' - Label '3D profile generation'\n", + "Entity 'http://edamontology.org/operation_0297' - Label '3D profile generation'\n", + "Entity 'http://edamontology.org/operation_0297' - Label '3D profile generation'\n", + "Entity 'http://edamontology.org/operation_0297' - Label '3D profile generation'\n", + "Entity 'http://edamontology.org/operation_0297' - Label '3D profile generation'\n", + "Entity 'http://edamontology.org/operation_0298' - Label 'Profile-profile alignment'\n", + "Entity 'http://edamontology.org/operation_0298' - Label 'Profile-profile alignment'\n", + "Entity 'http://edamontology.org/operation_0299' - Label '3D profile-to-3D profile alignment'\n", + "Entity 'http://edamontology.org/operation_0299' - Label '3D profile-to-3D profile alignment'\n", + "Entity 'http://edamontology.org/operation_0300' - Label 'Sequence profile alignment'\n", + "Entity 'http://edamontology.org/operation_0300' - Label 'Sequence profile alignment'\n", + "Entity 'http://edamontology.org/operation_0300' - Label 'Sequence profile alignment'\n", + "Entity 'http://edamontology.org/operation_0301' - Label 'Sequence-to-3D-profile alignment'\n", + "Entity 'http://edamontology.org/operation_0301' - Label 'Sequence-to-3D-profile alignment'\n", + "Entity 'http://edamontology.org/operation_0302' - Label 'Protein threading'\n", + "Entity 'http://edamontology.org/operation_0302' - Label 'Protein threading'\n", + "Entity 'http://edamontology.org/operation_0302' - Label 'Protein threading'\n", + "Entity 'http://edamontology.org/operation_0303' - Label 'Fold recognition'\n", + "Entity 'http://edamontology.org/operation_0303' - Label 'Fold recognition'\n", + "Entity 'http://edamontology.org/operation_0303' - Label 'Fold recognition'\n", + "Entity 'http://edamontology.org/operation_0303' - Label 'Fold recognition'\n", + "Entity 'http://edamontology.org/operation_0303' - Label 'Fold recognition'\n", + "Entity 'http://edamontology.org/operation_0304' - Label 'Metadata retrieval'\n", + "Entity 'http://edamontology.org/operation_0304' - Label 'Metadata retrieval'\n", + "Entity 'http://edamontology.org/operation_0305' - Label 'Literature search'\n", + "Entity 'http://edamontology.org/operation_0305' - Label 'Literature search'\n", + "Entity 'http://edamontology.org/operation_0306' - Label 'Text mining'\n", + "Entity 'http://edamontology.org/operation_0306' - Label 'Text mining'\n", + "Entity 'http://edamontology.org/operation_0306' - Label 'Text mining'\n", + "Entity 'http://edamontology.org/operation_0306' - Label 'Text mining'\n", + "Entity 'http://edamontology.org/operation_0306' - Label 'Text mining'\n", + "Entity 'http://edamontology.org/operation_0307' - Label 'Virtual PCR'\n", + "Entity 'http://edamontology.org/operation_0308' - Label 'PCR primer design'\n", + "Entity 'http://edamontology.org/operation_0308' - Label 'PCR primer design'\n", + "Entity 'http://edamontology.org/operation_0308' - Label 'PCR primer design'\n", + "Entity 'http://edamontology.org/operation_0308' - Label 'PCR primer design'\n", + "Entity 'http://edamontology.org/operation_0309' - Label 'Microarray probe design'\n", + "Entity 'http://edamontology.org/operation_0309' - Label 'Microarray probe design'\n", + "Entity 'http://edamontology.org/operation_0309' - Label 'Microarray probe design'\n", + "Entity 'http://edamontology.org/operation_0309' - Label 'Microarray probe design'\n", + "Entity 'http://edamontology.org/operation_0309' - Label 'Microarray probe design'\n", + "Entity 'http://edamontology.org/operation_0309' - Label 'Microarray probe design'\n", + "Entity 'http://edamontology.org/operation_0310' - Label 'Sequence assembly'\n", + "Entity 'http://edamontology.org/operation_0310' - Label 'Sequence assembly'\n", + "Entity 'http://edamontology.org/operation_0310' - Label 'Sequence assembly'\n", + "Entity 'http://edamontology.org/operation_0311' - Label 'Microarray data standardisation and normalisation'\n", + "Entity 'http://edamontology.org/operation_0311' - Label 'Microarray data standardisation and normalisation'\n", + "Entity 'http://edamontology.org/operation_0312' - Label 'Sequencing-based expression profile data processing'\n", + "Entity 'http://edamontology.org/operation_0312' - Label 'Sequencing-based expression profile data processing'\n", + "Entity 'http://edamontology.org/operation_0313' - Label 'Expression profile clustering'\n", + "Entity 'http://edamontology.org/operation_0313' - Label 'Expression profile clustering'\n", + "Entity 'http://edamontology.org/operation_0313' - Label 'Expression profile clustering'\n", + "Entity 'http://edamontology.org/operation_0314' - Label 'Gene expression profiling'\n", + "Entity 'http://edamontology.org/operation_0315' - Label 'Expression profile comparison'\n", + "Entity 'http://edamontology.org/operation_0316' - Label 'Functional profiling'\n", + "Entity 'http://edamontology.org/operation_0316' - Label 'Functional profiling'\n", + "Entity 'http://edamontology.org/operation_0317' - Label 'EST and cDNA sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0317' - Label 'EST and cDNA sequence analysis'\n", + "Entity 'http://edamontology.org/operation_0318' - Label 'Structural genomics target selection'\n", + "Entity 'http://edamontology.org/operation_0318' - Label 'Structural genomics target selection'\n", + "Entity 'http://edamontology.org/operation_0319' - Label 'Protein secondary structure assignment'\n", + "Entity 'http://edamontology.org/operation_0319' - Label 'Protein secondary structure assignment'\n", + "Entity 'http://edamontology.org/operation_0319' - Label 'Protein secondary structure assignment'\n", + "Entity 'http://edamontology.org/operation_0320' - Label 'Protein structure assignment'\n", + "Entity 'http://edamontology.org/operation_0320' - Label 'Protein structure assignment'\n", + "Entity 'http://edamontology.org/operation_0320' - Label 'Protein structure assignment'\n", + "Entity 'http://edamontology.org/operation_0320' - Label 'Protein structure assignment'\n", + "Entity 'http://edamontology.org/operation_0321' - Label 'Protein structure validation'\n", + "Entity 'http://edamontology.org/operation_0321' - Label 'Protein structure validation'\n", + "Entity 'http://edamontology.org/operation_0321' - Label 'Protein structure validation'\n", + "Entity 'http://edamontology.org/operation_0321' - Label 'Protein structure validation'\n", + "Entity 'http://edamontology.org/operation_0322' - Label 'Molecular model refinement'\n", + "Entity 'http://edamontology.org/operation_0322' - Label 'Molecular model refinement'\n", + "Entity 'http://edamontology.org/operation_0323' - Label 'Phylogenetic inference'\n", + "Entity 'http://edamontology.org/operation_0323' - Label 'Phylogenetic inference'\n", + "Entity 'http://edamontology.org/operation_0323' - Label 'Phylogenetic inference'\n", + "Entity 'http://edamontology.org/operation_0323' - Label 'Phylogenetic inference'\n", + "Entity 'http://edamontology.org/operation_0324' - Label 'Phylogenetic analysis'\n", + "Entity 'http://edamontology.org/operation_0324' - Label 'Phylogenetic analysis'\n", + "Entity 'http://edamontology.org/operation_0325' - Label 'Phylogenetic tree comparison'\n", + "Entity 'http://edamontology.org/operation_0325' - Label 'Phylogenetic tree comparison'\n", + "Entity 'http://edamontology.org/operation_0326' - Label 'Phylogenetic tree editing'\n", + "Entity 'http://edamontology.org/operation_0326' - Label 'Phylogenetic tree editing'\n", + "Entity 'http://edamontology.org/operation_0326' - Label 'Phylogenetic tree editing'\n", + "Entity 'http://edamontology.org/operation_0326' - Label 'Phylogenetic tree editing'\n", + "Entity 'http://edamontology.org/operation_0327' - Label 'Phylogenetic footprinting'\n", + "Entity 'http://edamontology.org/operation_0327' - Label 'Phylogenetic footprinting'\n", + "Entity 'http://edamontology.org/operation_0328' - Label 'Protein folding simulation'\n", + "Entity 'http://edamontology.org/operation_0328' - Label 'Protein folding simulation'\n", + "Entity 'http://edamontology.org/operation_0329' - Label 'Protein folding pathway prediction'\n", + "Entity 'http://edamontology.org/operation_0329' - Label 'Protein folding pathway prediction'\n", + "Entity 'http://edamontology.org/operation_0330' - Label 'Protein SNP mapping'\n", + "Entity 'http://edamontology.org/operation_0330' - Label 'Protein SNP mapping'\n", + "Entity 'http://edamontology.org/operation_0331' - Label 'Variant effect prediction'\n", + "Entity 'http://edamontology.org/operation_0331' - Label 'Variant effect prediction'\n", + "Entity 'http://edamontology.org/operation_0331' - Label 'Variant effect prediction'\n", + "Entity 'http://edamontology.org/operation_0332' - Label 'Immunogen design'\n", + "Entity 'http://edamontology.org/operation_0332' - Label 'Immunogen design'\n", + "Entity 'http://edamontology.org/operation_0333' - Label 'Zinc finger prediction'\n", + "Entity 'http://edamontology.org/operation_0333' - Label 'Zinc finger prediction'\n", + "Entity 'http://edamontology.org/operation_0334' - Label 'Enzyme kinetics calculation'\n", + "Entity 'http://edamontology.org/operation_0334' - Label 'Enzyme kinetics calculation'\n", + "Entity 'http://edamontology.org/operation_0334' - Label 'Enzyme kinetics calculation'\n", + "Entity 'http://edamontology.org/operation_0335' - Label 'Formatting'\n", + "Entity 'http://edamontology.org/operation_0336' - Label 'Format validation'\n", + "Entity 'http://edamontology.org/operation_0337' - Label 'Visualisation'\n", + "Entity 'http://edamontology.org/operation_0337' - Label 'Visualisation'\n", + "Entity 'http://edamontology.org/operation_0337' - Label 'Visualisation'\n", + "Entity 'http://edamontology.org/operation_0337' - Label 'Visualisation'\n", + "Entity 'http://edamontology.org/operation_0338' - Label 'Sequence database search'\n", + "Entity 'http://edamontology.org/operation_0338' - Label 'Sequence database search'\n", + "Entity 'http://edamontology.org/operation_0338' - Label 'Sequence database search'\n", + "Entity 'http://edamontology.org/operation_0339' - Label 'Structure database search'\n", + "Entity 'http://edamontology.org/operation_0339' - Label 'Structure database search'\n", + "Entity 'http://edamontology.org/operation_0340' - Label 'Protein secondary database search'\n", + "Entity 'http://edamontology.org/operation_0340' - Label 'Protein secondary database search'\n", + "Entity 'http://edamontology.org/operation_0341' - Label 'Motif database search'\n", + "Entity 'http://edamontology.org/operation_0341' - Label 'Motif database search'\n", + "Entity 'http://edamontology.org/operation_0342' - Label 'Sequence profile database search'\n", + "Entity 'http://edamontology.org/operation_0342' - Label 'Sequence profile database search'\n", + "Entity 'http://edamontology.org/operation_0343' - Label 'Transmembrane protein database search'\n", + "Entity 'http://edamontology.org/operation_0343' - Label 'Transmembrane protein database search'\n", + "Entity 'http://edamontology.org/operation_0344' - Label 'Sequence retrieval (by code)'\n", + "Entity 'http://edamontology.org/operation_0344' - Label 'Sequence retrieval (by code)'\n", + "Entity 'http://edamontology.org/operation_0345' - Label 'Sequence retrieval (by keyword)'\n", + "Entity 'http://edamontology.org/operation_0345' - Label 'Sequence retrieval (by keyword)'\n", + "Entity 'http://edamontology.org/operation_0346' - Label 'Sequence similarity search'\n", + "Entity 'http://edamontology.org/operation_0346' - Label 'Sequence similarity search'\n", + "Entity 'http://edamontology.org/operation_0346' - Label 'Sequence similarity search'\n", + "Entity 'http://edamontology.org/operation_0347' - Label 'Sequence database search (by motif or pattern)'\n", + "Entity 'http://edamontology.org/operation_0347' - Label 'Sequence database search (by motif or pattern)'\n", + "Entity 'http://edamontology.org/operation_0348' - Label 'Sequence database search (by amino acid composition)'\n", + "Entity 'http://edamontology.org/operation_0348' - Label 'Sequence database search (by amino acid composition)'\n", + "Entity 'http://edamontology.org/operation_0349' - Label 'Sequence database search (by property)'\n", + "Entity 'http://edamontology.org/operation_0350' - Label 'Sequence database search (by sequence using word-based methods)'\n", + "Entity 'http://edamontology.org/operation_0350' - Label 'Sequence database search (by sequence using word-based methods)'\n", + "Entity 'http://edamontology.org/operation_0351' - Label 'Sequence database search (by sequence using profile-based methods)'\n", + "Entity 'http://edamontology.org/operation_0351' - Label 'Sequence database search (by sequence using profile-based methods)'\n", + "Entity 'http://edamontology.org/operation_0352' - Label 'Sequence database search (by sequence using local alignment-based methods)'\n", + "Entity 'http://edamontology.org/operation_0352' - Label 'Sequence database search (by sequence using local alignment-based methods)'\n", + "Entity 'http://edamontology.org/operation_0353' - Label 'Sequence database search (by sequence using global alignment-based methods)'\n", + "Entity 'http://edamontology.org/operation_0353' - Label 'Sequence database search (by sequence using global alignment-based methods)'\n", + "Entity 'http://edamontology.org/operation_0354' - Label 'Sequence database search (by sequence for primer sequences)'\n", + "Entity 'http://edamontology.org/operation_0354' - Label 'Sequence database search (by sequence for primer sequences)'\n", + "Entity 'http://edamontology.org/operation_0355' - Label 'Sequence database search (by molecular weight)'\n", + "Entity 'http://edamontology.org/operation_0355' - Label 'Sequence database search (by molecular weight)'\n", + "Entity 'http://edamontology.org/operation_0356' - Label 'Sequence database search (by isoelectric point)'\n", + "Entity 'http://edamontology.org/operation_0356' - Label 'Sequence database search (by isoelectric point)'\n", + "Entity 'http://edamontology.org/operation_0357' - Label 'Structure retrieval (by code)'\n", + "Entity 'http://edamontology.org/operation_0357' - Label 'Structure retrieval (by code)'\n", + "Entity 'http://edamontology.org/operation_0358' - Label 'Structure retrieval (by keyword)'\n", + "Entity 'http://edamontology.org/operation_0358' - Label 'Structure retrieval (by keyword)'\n", + "Entity 'http://edamontology.org/operation_0359' - Label 'Structure database search (by sequence)'\n", + "Entity 'http://edamontology.org/operation_0359' - Label 'Structure database search (by sequence)'\n", + "Entity 'http://edamontology.org/operation_0360' - Label 'Structural similarity search'\n", + "Entity 'http://edamontology.org/operation_0360' - Label 'Structural similarity search'\n", + "Entity 'http://edamontology.org/operation_0361' - Label 'Sequence annotation'\n", + "Entity 'http://edamontology.org/operation_0361' - Label 'Sequence annotation'\n", + "Entity 'http://edamontology.org/operation_0361' - Label 'Sequence annotation'\n", + "Entity 'http://edamontology.org/operation_0362' - Label 'Genome annotation'\n", + "Entity 'http://edamontology.org/operation_0362' - Label 'Genome annotation'\n", + "Entity 'http://edamontology.org/operation_0363' - Label 'Reverse complement'\n", + "Entity 'http://edamontology.org/operation_0364' - Label 'Random sequence generation'\n", + "Entity 'http://edamontology.org/operation_0365' - Label 'Restriction digest'\n", + "Entity 'http://edamontology.org/operation_0365' - Label 'Restriction digest'\n", + "Entity 'http://edamontology.org/operation_0365' - Label 'Restriction digest'\n", + "Entity 'http://edamontology.org/operation_0366' - Label 'Protein sequence cleavage'\n", + "Entity 'http://edamontology.org/operation_0366' - Label 'Protein sequence cleavage'\n", + "Entity 'http://edamontology.org/operation_0366' - Label 'Protein sequence cleavage'\n", + "Entity 'http://edamontology.org/operation_0367' - Label 'Sequence mutation and randomisation'\n", + "Entity 'http://edamontology.org/operation_0368' - Label 'Sequence masking'\n", + "Entity 'http://edamontology.org/operation_0369' - Label 'Sequence cutting'\n", + "Entity 'http://edamontology.org/operation_0370' - Label 'Restriction site creation'\n", + "Entity 'http://edamontology.org/operation_0371' - Label 'DNA translation'\n", + "Entity 'http://edamontology.org/operation_0371' - Label 'DNA translation'\n", + "Entity 'http://edamontology.org/operation_0372' - Label 'DNA transcription'\n", + "Entity 'http://edamontology.org/operation_0372' - Label 'DNA transcription'\n", + "Entity 'http://edamontology.org/operation_0377' - Label 'Sequence composition calculation (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_0377' - Label 'Sequence composition calculation (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_0378' - Label 'Sequence composition calculation (protein)'\n", + "Entity 'http://edamontology.org/operation_0378' - Label 'Sequence composition calculation (protein)'\n", + "Entity 'http://edamontology.org/operation_0379' - Label 'Repeat sequence detection'\n", + "Entity 'http://edamontology.org/operation_0379' - Label 'Repeat sequence detection'\n", + "Entity 'http://edamontology.org/operation_0380' - Label 'Repeat sequence organisation analysis'\n", + "Entity 'http://edamontology.org/operation_0380' - Label 'Repeat sequence organisation analysis'\n", + "Entity 'http://edamontology.org/operation_0383' - Label 'Protein hydropathy calculation (from structure)'\n", + "Entity 'http://edamontology.org/operation_0383' - Label 'Protein hydropathy calculation (from structure)'\n", + "Entity 'http://edamontology.org/operation_0384' - Label 'Accessible surface calculation'\n", + "Entity 'http://edamontology.org/operation_0384' - Label 'Accessible surface calculation'\n", + "Entity 'http://edamontology.org/operation_0385' - Label 'Protein hydropathy cluster calculation'\n", + "Entity 'http://edamontology.org/operation_0385' - Label 'Protein hydropathy cluster calculation'\n", + "Entity 'http://edamontology.org/operation_0386' - Label 'Protein dipole moment calculation'\n", + "Entity 'http://edamontology.org/operation_0386' - Label 'Protein dipole moment calculation'\n", + "Entity 'http://edamontology.org/operation_0387' - Label 'Molecular surface calculation'\n", + "Entity 'http://edamontology.org/operation_0388' - Label 'Protein binding site prediction (from structure)'\n", + "Entity 'http://edamontology.org/operation_0388' - Label 'Protein binding site prediction (from structure)'\n", + "Entity 'http://edamontology.org/operation_0389' - Label 'Protein-nucleic acid interaction analysis'\n", + "Entity 'http://edamontology.org/operation_0389' - Label 'Protein-nucleic acid interaction analysis'\n", + "Entity 'http://edamontology.org/operation_0390' - Label 'Protein peeling'\n", + "Entity 'http://edamontology.org/operation_0391' - Label 'Protein distance matrix calculation'\n", + "Entity 'http://edamontology.org/operation_0391' - Label 'Protein distance matrix calculation'\n", + "Entity 'http://edamontology.org/operation_0392' - Label 'Contact map calculation'\n", + "Entity 'http://edamontology.org/operation_0392' - Label 'Contact map calculation'\n", + "Entity 'http://edamontology.org/operation_0393' - Label 'Residue cluster calculation'\n", + "Entity 'http://edamontology.org/operation_0393' - Label 'Residue cluster calculation'\n", + "Entity 'http://edamontology.org/operation_0394' - Label 'Hydrogen bond calculation'\n", + "Entity 'http://edamontology.org/operation_0394' - Label 'Hydrogen bond calculation'\n", + "Entity 'http://edamontology.org/operation_0395' - Label 'Residue non-canonical interaction detection'\n", + "Entity 'http://edamontology.org/operation_0395' - Label 'Residue non-canonical interaction detection'\n", + "Entity 'http://edamontology.org/operation_0396' - Label 'Ramachandran plot calculation'\n", + "Entity 'http://edamontology.org/operation_0396' - Label 'Ramachandran plot calculation'\n", + "Entity 'http://edamontology.org/operation_0397' - Label 'Ramachandran plot validation'\n", + "Entity 'http://edamontology.org/operation_0397' - Label 'Ramachandran plot validation'\n", + "Entity 'http://edamontology.org/operation_0398' - Label 'Protein molecular weight calculation'\n", + "Entity 'http://edamontology.org/operation_0398' - Label 'Protein molecular weight calculation'\n", + "Entity 'http://edamontology.org/operation_0398' - Label 'Protein molecular weight calculation'\n", + "Entity 'http://edamontology.org/operation_0399' - Label 'Protein extinction coefficient calculation'\n", + "Entity 'http://edamontology.org/operation_0399' - Label 'Protein extinction coefficient calculation'\n", + "Entity 'http://edamontology.org/operation_0400' - Label 'Protein pKa calculation'\n", + "Entity 'http://edamontology.org/operation_0400' - Label 'Protein pKa calculation'\n", + "Entity 'http://edamontology.org/operation_0400' - Label 'Protein pKa calculation'\n", + "Entity 'http://edamontology.org/operation_0401' - Label 'Protein hydropathy calculation (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0401' - Label 'Protein hydropathy calculation (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0402' - Label 'Protein titration curve plotting'\n", + "Entity 'http://edamontology.org/operation_0402' - Label 'Protein titration curve plotting'\n", + "Entity 'http://edamontology.org/operation_0402' - Label 'Protein titration curve plotting'\n", + "Entity 'http://edamontology.org/operation_0403' - Label 'Protein isoelectric point calculation'\n", + "Entity 'http://edamontology.org/operation_0403' - Label 'Protein isoelectric point calculation'\n", + "Entity 'http://edamontology.org/operation_0404' - Label 'Protein hydrogen exchange rate calculation'\n", + "Entity 'http://edamontology.org/operation_0404' - Label 'Protein hydrogen exchange rate calculation'\n", + "Entity 'http://edamontology.org/operation_0405' - Label 'Protein hydrophobic region calculation'\n", + "Entity 'http://edamontology.org/operation_0406' - Label 'Protein aliphatic index calculation'\n", + "Entity 'http://edamontology.org/operation_0406' - Label 'Protein aliphatic index calculation'\n", + "Entity 'http://edamontology.org/operation_0407' - Label 'Protein hydrophobic moment plotting'\n", + "Entity 'http://edamontology.org/operation_0407' - Label 'Protein hydrophobic moment plotting'\n", + "Entity 'http://edamontology.org/operation_0407' - Label 'Protein hydrophobic moment plotting'\n", + "Entity 'http://edamontology.org/operation_0408' - Label 'Protein globularity prediction'\n", + "Entity 'http://edamontology.org/operation_0408' - Label 'Protein globularity prediction'\n", + "Entity 'http://edamontology.org/operation_0409' - Label 'Protein solubility prediction'\n", + "Entity 'http://edamontology.org/operation_0409' - Label 'Protein solubility prediction'\n", + "Entity 'http://edamontology.org/operation_0410' - Label 'Protein crystallizability prediction'\n", + "Entity 'http://edamontology.org/operation_0410' - Label 'Protein crystallizability prediction'\n", + "Entity 'http://edamontology.org/operation_0411' - Label 'Protein signal peptide detection (eukaryotes)'\n", + "Entity 'http://edamontology.org/operation_0411' - Label 'Protein signal peptide detection (eukaryotes)'\n", + "Entity 'http://edamontology.org/operation_0412' - Label 'Protein signal peptide detection (bacteria)'\n", + "Entity 'http://edamontology.org/operation_0412' - Label 'Protein signal peptide detection (bacteria)'\n", + "Entity 'http://edamontology.org/operation_0413' - Label 'MHC peptide immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0413' - Label 'MHC peptide immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0414' - Label 'Protein feature prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0414' - Label 'Protein feature prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0415' - Label 'Nucleic acid feature detection'\n", + "Entity 'http://edamontology.org/operation_0415' - Label 'Nucleic acid feature detection'\n", + "Entity 'http://edamontology.org/operation_0415' - Label 'Nucleic acid feature detection'\n", + "Entity 'http://edamontology.org/operation_0415' - Label 'Nucleic acid feature detection'\n", + "Entity 'http://edamontology.org/operation_0416' - Label 'Epitope mapping'\n", + "Entity 'http://edamontology.org/operation_0416' - Label 'Epitope mapping'\n", + "Entity 'http://edamontology.org/operation_0416' - Label 'Epitope mapping'\n", + "Entity 'http://edamontology.org/operation_0417' - Label 'Post-translational modification site prediction'\n", + "Entity 'http://edamontology.org/operation_0417' - Label 'Post-translational modification site prediction'\n", + "Entity 'http://edamontology.org/operation_0418' - Label 'Protein signal peptide detection'\n", + "Entity 'http://edamontology.org/operation_0418' - Label 'Protein signal peptide detection'\n", + "Entity 'http://edamontology.org/operation_0418' - Label 'Protein signal peptide detection'\n", + "Entity 'http://edamontology.org/operation_0419' - Label 'Protein binding site prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0419' - Label 'Protein binding site prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_0420' - Label 'Nucleic acids-binding site prediction'\n", + "Entity 'http://edamontology.org/operation_0421' - Label 'Protein folding site prediction'\n", + "Entity 'http://edamontology.org/operation_0421' - Label 'Protein folding site prediction'\n", + "Entity 'http://edamontology.org/operation_0422' - Label 'Protein cleavage site prediction'\n", + "Entity 'http://edamontology.org/operation_0422' - Label 'Protein cleavage site prediction'\n", + "Entity 'http://edamontology.org/operation_0423' - Label 'Epitope mapping (MHC Class I)'\n", + "Entity 'http://edamontology.org/operation_0423' - Label 'Epitope mapping (MHC Class I)'\n", + "Entity 'http://edamontology.org/operation_0424' - Label 'Epitope mapping (MHC Class II)'\n", + "Entity 'http://edamontology.org/operation_0424' - Label 'Epitope mapping (MHC Class II)'\n", + "Entity 'http://edamontology.org/operation_0425' - Label 'Whole gene prediction'\n", + "Entity 'http://edamontology.org/operation_0425' - Label 'Whole gene prediction'\n", + "Entity 'http://edamontology.org/operation_0426' - Label 'Gene component prediction'\n", + "Entity 'http://edamontology.org/operation_0426' - Label 'Gene component prediction'\n", + "Entity 'http://edamontology.org/operation_0427' - Label 'Transposon prediction'\n", + "Entity 'http://edamontology.org/operation_0428' - Label 'PolyA signal detection'\n", + "Entity 'http://edamontology.org/operation_0429' - Label 'Quadruplex formation site detection'\n", + "Entity 'http://edamontology.org/operation_0429' - Label 'Quadruplex formation site detection'\n", + "Entity 'http://edamontology.org/operation_0430' - Label 'CpG island and isochore detection'\n", + "Entity 'http://edamontology.org/operation_0430' - Label 'CpG island and isochore detection'\n", + "Entity 'http://edamontology.org/operation_0431' - Label 'Restriction site recognition'\n", + "Entity 'http://edamontology.org/operation_0431' - Label 'Restriction site recognition'\n", + "Entity 'http://edamontology.org/operation_0432' - Label 'Nucleosome position prediction'\n", + "Entity 'http://edamontology.org/operation_0433' - Label 'Splice site prediction'\n", + "Entity 'http://edamontology.org/operation_0433' - Label 'Splice site prediction'\n", + "Entity 'http://edamontology.org/operation_0434' - Label 'Integrated gene prediction'\n", + "Entity 'http://edamontology.org/operation_0434' - Label 'Integrated gene prediction'\n", + "Entity 'http://edamontology.org/operation_0435' - Label 'Operon prediction'\n", + "Entity 'http://edamontology.org/operation_0436' - Label 'Coding region prediction'\n", + "Entity 'http://edamontology.org/operation_0437' - Label 'SECIS element prediction'\n", + "Entity 'http://edamontology.org/operation_0437' - Label 'SECIS element prediction'\n", + "Entity 'http://edamontology.org/operation_0438' - Label 'Transcriptional regulatory element prediction'\n", + "Entity 'http://edamontology.org/operation_0438' - Label 'Transcriptional regulatory element prediction'\n", + "Entity 'http://edamontology.org/operation_0439' - Label 'Translation initiation site prediction'\n", + "Entity 'http://edamontology.org/operation_0439' - Label 'Translation initiation site prediction'\n", + "Entity 'http://edamontology.org/operation_0440' - Label 'Promoter prediction'\n", + "Entity 'http://edamontology.org/operation_0441' - Label 'cis-regulatory element prediction'\n", + "Entity 'http://edamontology.org/operation_0442' - Label 'Transcriptional regulatory element prediction (RNA-cis)'\n", + "Entity 'http://edamontology.org/operation_0442' - Label 'Transcriptional regulatory element prediction (RNA-cis)'\n", + "Entity 'http://edamontology.org/operation_0443' - Label 'trans-regulatory element prediction'\n", + "Entity 'http://edamontology.org/operation_0443' - Label 'trans-regulatory element prediction'\n", + "Entity 'http://edamontology.org/operation_0444' - Label 'S/MAR prediction'\n", + "Entity 'http://edamontology.org/operation_0445' - Label 'Transcription factor binding site prediction'\n", + "Entity 'http://edamontology.org/operation_0446' - Label 'Exonic splicing enhancer prediction'\n", + "Entity 'http://edamontology.org/operation_0446' - Label 'Exonic splicing enhancer prediction'\n", + "Entity 'http://edamontology.org/operation_0447' - Label 'Sequence alignment validation'\n", + "Entity 'http://edamontology.org/operation_0447' - Label 'Sequence alignment validation'\n", + "Entity 'http://edamontology.org/operation_0448' - Label 'Sequence alignment analysis (conservation)'\n", + "Entity 'http://edamontology.org/operation_0449' - Label 'Sequence alignment analysis (site correlation)'\n", + "Entity 'http://edamontology.org/operation_0449' - Label 'Sequence alignment analysis (site correlation)'\n", + "Entity 'http://edamontology.org/operation_0450' - Label 'Chimera detection'\n", + "Entity 'http://edamontology.org/operation_0451' - Label 'Recombination detection'\n", + "Entity 'http://edamontology.org/operation_0452' - Label 'Indel detection'\n", + "Entity 'http://edamontology.org/operation_0453' - Label 'Nucleosome formation potential prediction'\n", + "Entity 'http://edamontology.org/operation_0453' - Label 'Nucleosome formation potential prediction'\n", + "Entity 'http://edamontology.org/operation_0455' - Label 'Nucleic acid thermodynamic property calculation'\n", + "Entity 'http://edamontology.org/operation_0455' - Label 'Nucleic acid thermodynamic property calculation'\n", + "Entity 'http://edamontology.org/operation_0456' - Label 'Nucleic acid melting profile plotting'\n", + "Entity 'http://edamontology.org/operation_0456' - Label 'Nucleic acid melting profile plotting'\n", + "Entity 'http://edamontology.org/operation_0456' - Label 'Nucleic acid melting profile plotting'\n", + "Entity 'http://edamontology.org/operation_0457' - Label 'Nucleic acid stitch profile plotting'\n", + "Entity 'http://edamontology.org/operation_0458' - Label 'Nucleic acid melting curve plotting'\n", + "Entity 'http://edamontology.org/operation_0459' - Label 'Nucleic acid probability profile plotting'\n", + "Entity 'http://edamontology.org/operation_0460' - Label 'Nucleic acid temperature profile plotting'\n", + "Entity 'http://edamontology.org/operation_0461' - Label 'Nucleic acid curvature calculation'\n", + "Entity 'http://edamontology.org/operation_0461' - Label 'Nucleic acid curvature calculation'\n", + "Entity 'http://edamontology.org/operation_0463' - Label 'miRNA target prediction'\n", + "Entity 'http://edamontology.org/operation_0464' - Label 'tRNA gene prediction'\n", + "Entity 'http://edamontology.org/operation_0464' - Label 'tRNA gene prediction'\n", + "Entity 'http://edamontology.org/operation_0465' - Label 'siRNA binding specificity prediction'\n", + "Entity 'http://edamontology.org/operation_0465' - Label 'siRNA binding specificity prediction'\n", + "Entity 'http://edamontology.org/operation_0467' - Label 'Protein secondary structure prediction (integrated)'\n", + "Entity 'http://edamontology.org/operation_0467' - Label 'Protein secondary structure prediction (integrated)'\n", + "Entity 'http://edamontology.org/operation_0468' - Label 'Protein secondary structure prediction (helices)'\n", + "Entity 'http://edamontology.org/operation_0469' - Label 'Protein secondary structure prediction (turns)'\n", + "Entity 'http://edamontology.org/operation_0470' - Label 'Protein secondary structure prediction (coils)'\n", + "Entity 'http://edamontology.org/operation_0471' - Label 'Disulfide bond prediction'\n", + "Entity 'http://edamontology.org/operation_0472' - Label 'GPCR prediction'\n", + "Entity 'http://edamontology.org/operation_0472' - Label 'GPCR prediction'\n", + "Entity 'http://edamontology.org/operation_0473' - Label 'GPCR analysis'\n", + "Entity 'http://edamontology.org/operation_0473' - Label 'GPCR analysis'\n", + "Entity 'http://edamontology.org/operation_0474' - Label 'Protein structure prediction'\n", + "Entity 'http://edamontology.org/operation_0474' - Label 'Protein structure prediction'\n", + "Entity 'http://edamontology.org/operation_0474' - Label 'Protein structure prediction'\n", + "Entity 'http://edamontology.org/operation_0474' - Label 'Protein structure prediction'\n", + "Entity 'http://edamontology.org/operation_0475' - Label 'Nucleic acid structure prediction'\n", + "Entity 'http://edamontology.org/operation_0475' - Label 'Nucleic acid structure prediction'\n", + "Entity 'http://edamontology.org/operation_0475' - Label 'Nucleic acid structure prediction'\n", + "Entity 'http://edamontology.org/operation_0476' - Label 'Ab initio structure prediction'\n", + "Entity 'http://edamontology.org/operation_0477' - Label 'Protein modelling'\n", + "Entity 'http://edamontology.org/operation_0477' - Label 'Protein modelling'\n", + "Entity 'http://edamontology.org/operation_0477' - Label 'Protein modelling'\n", + "Entity 'http://edamontology.org/operation_0478' - Label 'Molecular docking'\n", + "Entity 'http://edamontology.org/operation_0478' - Label 'Molecular docking'\n", + "Entity 'http://edamontology.org/operation_0478' - Label 'Molecular docking'\n", + "Entity 'http://edamontology.org/operation_0478' - Label 'Molecular docking'\n", + "Entity 'http://edamontology.org/operation_0479' - Label 'Backbone modelling'\n", + "Entity 'http://edamontology.org/operation_0480' - Label 'Side chain modelling'\n", + "Entity 'http://edamontology.org/operation_0481' - Label 'Loop modelling'\n", + "Entity 'http://edamontology.org/operation_0482' - Label 'Protein-ligand docking'\n", + "Entity 'http://edamontology.org/operation_0482' - Label 'Protein-ligand docking'\n", + "Entity 'http://edamontology.org/operation_0482' - Label 'Protein-ligand docking'\n", + "Entity 'http://edamontology.org/operation_0483' - Label 'RNA inverse folding'\n", + "Entity 'http://edamontology.org/operation_0483' - Label 'RNA inverse folding'\n", + "Entity 'http://edamontology.org/operation_0484' - Label 'SNP detection'\n", + "Entity 'http://edamontology.org/operation_0485' - Label 'Radiation Hybrid Mapping'\n", + "Entity 'http://edamontology.org/operation_0485' - Label 'Radiation Hybrid Mapping'\n", + "Entity 'http://edamontology.org/operation_0486' - Label 'Functional mapping'\n", + "Entity 'http://edamontology.org/operation_0486' - Label 'Functional mapping'\n", + "Entity 'http://edamontology.org/operation_0487' - Label 'Haplotype mapping'\n", + "Entity 'http://edamontology.org/operation_0487' - Label 'Haplotype mapping'\n", + "Entity 'http://edamontology.org/operation_0488' - Label 'Linkage disequilibrium calculation'\n", + "Entity 'http://edamontology.org/operation_0488' - Label 'Linkage disequilibrium calculation'\n", + "Entity 'http://edamontology.org/operation_0489' - Label 'Genetic code prediction'\n", + "Entity 'http://edamontology.org/operation_0489' - Label 'Genetic code prediction'\n", + "Entity 'http://edamontology.org/operation_0489' - Label 'Genetic code prediction'\n", + "Entity 'http://edamontology.org/operation_0490' - Label 'Dot plot plotting'\n", + "Entity 'http://edamontology.org/operation_0490' - Label 'Dot plot plotting'\n", + "Entity 'http://edamontology.org/operation_0490' - Label 'Dot plot plotting'\n", + "Entity 'http://edamontology.org/operation_0491' - Label 'Pairwise sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0491' - Label 'Pairwise sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0492' - Label 'Multiple sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0493' - Label 'Pairwise sequence alignment generation (local)'\n", + "Entity 'http://edamontology.org/operation_0493' - Label 'Pairwise sequence alignment generation (local)'\n", + "Entity 'http://edamontology.org/operation_0493' - Label 'Pairwise sequence alignment generation (local)'\n", + "Entity 'http://edamontology.org/operation_0494' - Label 'Pairwise sequence alignment generation (global)'\n", + "Entity 'http://edamontology.org/operation_0494' - Label 'Pairwise sequence alignment generation (global)'\n", + "Entity 'http://edamontology.org/operation_0494' - Label 'Pairwise sequence alignment generation (global)'\n", + "Entity 'http://edamontology.org/operation_0495' - Label 'Local alignment'\n", + "Entity 'http://edamontology.org/operation_0496' - Label 'Global alignment'\n", + "Entity 'http://edamontology.org/operation_0497' - Label 'Constrained sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0497' - Label 'Constrained sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0498' - Label 'Consensus-based sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0498' - Label 'Consensus-based sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0499' - Label 'Tree-based sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0499' - Label 'Tree-based sequence alignment'\n", + "Entity 'http://edamontology.org/operation_0500' - Label 'Secondary structure alignment generation'\n", + "Entity 'http://edamontology.org/operation_0500' - Label 'Secondary structure alignment generation'\n", + "Entity 'http://edamontology.org/operation_0501' - Label 'Protein secondary structure alignment generation'\n", + "Entity 'http://edamontology.org/operation_0501' - Label 'Protein secondary structure alignment generation'\n", + "Entity 'http://edamontology.org/operation_0502' - Label 'RNA secondary structure alignment'\n", + "Entity 'http://edamontology.org/operation_0502' - Label 'RNA secondary structure alignment'\n", + "Entity 'http://edamontology.org/operation_0502' - Label 'RNA secondary structure alignment'\n", + "Entity 'http://edamontology.org/operation_0502' - Label 'RNA secondary structure alignment'\n", + "Entity 'http://edamontology.org/operation_0503' - Label 'Pairwise structure alignment'\n", + "Entity 'http://edamontology.org/operation_0504' - Label 'Multiple structure alignment'\n", + "Entity 'http://edamontology.org/operation_0505' - Label 'Structure alignment (protein)'\n", + "Entity 'http://edamontology.org/operation_0505' - Label 'Structure alignment (protein)'\n", + "Entity 'http://edamontology.org/operation_0506' - Label 'Structure alignment (RNA)'\n", + "Entity 'http://edamontology.org/operation_0506' - Label 'Structure alignment (RNA)'\n", + "Entity 'http://edamontology.org/operation_0507' - Label 'Pairwise structure alignment generation (local)'\n", + "Entity 'http://edamontology.org/operation_0507' - Label 'Pairwise structure alignment generation (local)'\n", + "Entity 'http://edamontology.org/operation_0507' - Label 'Pairwise structure alignment generation (local)'\n", + "Entity 'http://edamontology.org/operation_0508' - Label 'Pairwise structure alignment generation (global)'\n", + "Entity 'http://edamontology.org/operation_0508' - Label 'Pairwise structure alignment generation (global)'\n", + "Entity 'http://edamontology.org/operation_0508' - Label 'Pairwise structure alignment generation (global)'\n", + "Entity 'http://edamontology.org/operation_0509' - Label 'Local structure alignment'\n", + "Entity 'http://edamontology.org/operation_0510' - Label 'Global structure alignment'\n", + "Entity 'http://edamontology.org/operation_0511' - Label 'Profile-profile alignment (pairwise)'\n", + "Entity 'http://edamontology.org/operation_0511' - Label 'Profile-profile alignment (pairwise)'\n", + "Entity 'http://edamontology.org/operation_0511' - Label 'Profile-profile alignment (pairwise)'\n", + "Entity 'http://edamontology.org/operation_0512' - Label 'Sequence alignment generation (multiple profile)'\n", + "Entity 'http://edamontology.org/operation_0512' - Label 'Sequence alignment generation (multiple profile)'\n", + "Entity 'http://edamontology.org/operation_0512' - Label 'Sequence alignment generation (multiple profile)'\n", + "Entity 'http://edamontology.org/operation_0513' - Label '3D profile-to-3D profile alignment (pairwise)'\n", + "Entity 'http://edamontology.org/operation_0513' - Label '3D profile-to-3D profile alignment (pairwise)'\n", + "Entity 'http://edamontology.org/operation_0513' - Label '3D profile-to-3D profile alignment (pairwise)'\n", + "Entity 'http://edamontology.org/operation_0513' - Label '3D profile-to-3D profile alignment (pairwise)'\n", + "Entity 'http://edamontology.org/operation_0514' - Label 'Structural profile alignment generation (multiple)'\n", + "Entity 'http://edamontology.org/operation_0514' - Label 'Structural profile alignment generation (multiple)'\n", + "Entity 'http://edamontology.org/operation_0514' - Label 'Structural profile alignment generation (multiple)'\n", + "Entity 'http://edamontology.org/operation_0514' - Label 'Structural profile alignment generation (multiple)'\n", + "Entity 'http://edamontology.org/operation_0515' - Label 'Data retrieval (tool metadata)'\n", + "Entity 'http://edamontology.org/operation_0515' - Label 'Data retrieval (tool metadata)'\n", + "Entity 'http://edamontology.org/operation_0516' - Label 'Data retrieval (database metadata)'\n", + "Entity 'http://edamontology.org/operation_0516' - Label 'Data retrieval (database metadata)'\n", + "Entity 'http://edamontology.org/operation_0517' - Label 'PCR primer design (for large scale sequencing)'\n", + "Entity 'http://edamontology.org/operation_0517' - Label 'PCR primer design (for large scale sequencing)'\n", + "Entity 'http://edamontology.org/operation_0518' - Label 'PCR primer design (for genotyping polymorphisms)'\n", + "Entity 'http://edamontology.org/operation_0518' - Label 'PCR primer design (for genotyping polymorphisms)'\n", + "Entity 'http://edamontology.org/operation_0519' - Label 'PCR primer design (for gene transcription profiling)'\n", + "Entity 'http://edamontology.org/operation_0519' - Label 'PCR primer design (for gene transcription profiling)'\n", + "Entity 'http://edamontology.org/operation_0520' - Label 'PCR primer design (for conserved primers)'\n", + "Entity 'http://edamontology.org/operation_0520' - Label 'PCR primer design (for conserved primers)'\n", + "Entity 'http://edamontology.org/operation_0521' - Label 'PCR primer design (based on gene structure)'\n", + "Entity 'http://edamontology.org/operation_0521' - Label 'PCR primer design (based on gene structure)'\n", + "Entity 'http://edamontology.org/operation_0522' - Label 'PCR primer design (for methylation PCRs)'\n", + "Entity 'http://edamontology.org/operation_0522' - Label 'PCR primer design (for methylation PCRs)'\n", + "Entity 'http://edamontology.org/operation_0523' - Label 'Mapping assembly'\n", + "Entity 'http://edamontology.org/operation_0524' - Label 'De-novo assembly'\n", + "Entity 'http://edamontology.org/operation_0525' - Label 'Genome assembly'\n", + "Entity 'http://edamontology.org/operation_0525' - Label 'Genome assembly'\n", + "Entity 'http://edamontology.org/operation_0526' - Label 'EST assembly'\n", + "Entity 'http://edamontology.org/operation_0527' - Label 'Sequence tag mapping'\n", + "Entity 'http://edamontology.org/operation_0527' - Label 'Sequence tag mapping'\n", + "Entity 'http://edamontology.org/operation_0528' - Label 'SAGE data processing'\n", + "Entity 'http://edamontology.org/operation_0528' - Label 'SAGE data processing'\n", + "Entity 'http://edamontology.org/operation_0529' - Label 'MPSS data processing'\n", + "Entity 'http://edamontology.org/operation_0529' - Label 'MPSS data processing'\n", + "Entity 'http://edamontology.org/operation_0530' - Label 'SBS data processing'\n", + "Entity 'http://edamontology.org/operation_0530' - Label 'SBS data processing'\n", + "Entity 'http://edamontology.org/operation_0531' - Label 'Heat map generation'\n", + "Entity 'http://edamontology.org/operation_0531' - Label 'Heat map generation'\n", + "Entity 'http://edamontology.org/operation_0531' - Label 'Heat map generation'\n", + "Entity 'http://edamontology.org/operation_0532' - Label 'Gene expression profile analysis'\n", + "Entity 'http://edamontology.org/operation_0532' - Label 'Gene expression profile analysis'\n", + "Entity 'http://edamontology.org/operation_0533' - Label 'Expression profile pathway mapping'\n", + "Entity 'http://edamontology.org/operation_0533' - Label 'Expression profile pathway mapping'\n", + "Entity 'http://edamontology.org/operation_0533' - Label 'Expression profile pathway mapping'\n", + "Entity 'http://edamontology.org/operation_0533' - Label 'Expression profile pathway mapping'\n", + "Entity 'http://edamontology.org/operation_0534' - Label 'Protein secondary structure assignment (from coordinate data)'\n", + "Entity 'http://edamontology.org/operation_0534' - Label 'Protein secondary structure assignment (from coordinate data)'\n", + "Entity 'http://edamontology.org/operation_0535' - Label 'Protein secondary structure assignment (from CD data)'\n", + "Entity 'http://edamontology.org/operation_0535' - Label 'Protein secondary structure assignment (from CD data)'\n", + "Entity 'http://edamontology.org/operation_0536' - Label 'Protein structure assignment (from X-ray crystallographic data)'\n", + "Entity 'http://edamontology.org/operation_0536' - Label 'Protein structure assignment (from X-ray crystallographic data)'\n", + "Entity 'http://edamontology.org/operation_0537' - Label 'Protein structure assignment (from NMR data)'\n", + "Entity 'http://edamontology.org/operation_0537' - Label 'Protein structure assignment (from NMR data)'\n", + "Entity 'http://edamontology.org/operation_0538' - Label 'Phylogenetic inference (data centric)'\n", + "Entity 'http://edamontology.org/operation_0539' - Label 'Phylogenetic inference (method centric)'\n", + "Entity 'http://edamontology.org/operation_0540' - Label 'Phylogenetic inference (from molecular sequences)'\n", + "Entity 'http://edamontology.org/operation_0540' - Label 'Phylogenetic inference (from molecular sequences)'\n", + "Entity 'http://edamontology.org/operation_0541' - Label 'Phylogenetic inference (from continuous quantitative characters)'\n", + "Entity 'http://edamontology.org/operation_0541' - Label 'Phylogenetic inference (from continuous quantitative characters)'\n", + "Entity 'http://edamontology.org/operation_0542' - Label 'Phylogenetic inference (from gene frequencies)'\n", + "Entity 'http://edamontology.org/operation_0542' - Label 'Phylogenetic inference (from gene frequencies)'\n", + "Entity 'http://edamontology.org/operation_0542' - Label 'Phylogenetic inference (from gene frequencies)'\n", + "Entity 'http://edamontology.org/operation_0543' - Label 'Phylogenetic inference (from polymorphism data)'\n", + "Entity 'http://edamontology.org/operation_0543' - Label 'Phylogenetic inference (from polymorphism data)'\n", + "Entity 'http://edamontology.org/operation_0544' - Label 'Species tree construction'\n", + "Entity 'http://edamontology.org/operation_0545' - Label 'Phylogenetic inference (parsimony methods)'\n", + "Entity 'http://edamontology.org/operation_0546' - Label 'Phylogenetic inference (minimum distance methods)'\n", + "Entity 'http://edamontology.org/operation_0547' - Label 'Phylogenetic inference (maximum likelihood and Bayesian methods)'\n", + "Entity 'http://edamontology.org/operation_0548' - Label 'Phylogenetic inference (quartet methods)'\n", + "Entity 'http://edamontology.org/operation_0549' - Label 'Phylogenetic inference (AI methods)'\n", + "Entity 'http://edamontology.org/operation_0550' - Label 'DNA substitution modelling'\n", + "Entity 'http://edamontology.org/operation_0550' - Label 'DNA substitution modelling'\n", + "Entity 'http://edamontology.org/operation_0550' - Label 'DNA substitution modelling'\n", + "Entity 'http://edamontology.org/operation_0550' - Label 'DNA substitution modelling'\n", + "Entity 'http://edamontology.org/operation_0551' - Label 'Phylogenetic tree topology analysis'\n", + "Entity 'http://edamontology.org/operation_0552' - Label 'Phylogenetic tree bootstrapping'\n", + "Entity 'http://edamontology.org/operation_0552' - Label 'Phylogenetic tree bootstrapping'\n", + "Entity 'http://edamontology.org/operation_0553' - Label 'Gene tree construction'\n", + "Entity 'http://edamontology.org/operation_0553' - Label 'Gene tree construction'\n", + "Entity 'http://edamontology.org/operation_0553' - Label 'Gene tree construction'\n", + "Entity 'http://edamontology.org/operation_0554' - Label 'Allele frequency distribution analysis'\n", + "Entity 'http://edamontology.org/operation_0555' - Label 'Consensus tree construction'\n", + "Entity 'http://edamontology.org/operation_0555' - Label 'Consensus tree construction'\n", + "Entity 'http://edamontology.org/operation_0556' - Label 'Phylogenetic sub/super tree construction'\n", + "Entity 'http://edamontology.org/operation_0557' - Label 'Phylogenetic tree distances calculation'\n", + "Entity 'http://edamontology.org/operation_0557' - Label 'Phylogenetic tree distances calculation'\n", + "Entity 'http://edamontology.org/operation_0558' - Label 'Phylogenetic tree annotation'\n", + "Entity 'http://edamontology.org/operation_0559' - Label 'Immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0559' - Label 'Immunogenicity prediction'\n", + "Entity 'http://edamontology.org/operation_0560' - Label 'DNA vaccine design'\n", + "Entity 'http://edamontology.org/operation_0560' - Label 'DNA vaccine design'\n", + "Entity 'http://edamontology.org/operation_0561' - Label 'Sequence formatting'\n", + "Entity 'http://edamontology.org/operation_0561' - Label 'Sequence formatting'\n", + "Entity 'http://edamontology.org/operation_0562' - Label 'Sequence alignment formatting'\n", + "Entity 'http://edamontology.org/operation_0562' - Label 'Sequence alignment formatting'\n", + "Entity 'http://edamontology.org/operation_0563' - Label 'Codon usage table formatting'\n", + "Entity 'http://edamontology.org/operation_0563' - Label 'Codon usage table formatting'\n", + "Entity 'http://edamontology.org/operation_0564' - Label 'Sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_0564' - Label 'Sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_0564' - Label 'Sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_0564' - Label 'Sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_0565' - Label 'Sequence alignment visualisation'\n", + "Entity 'http://edamontology.org/operation_0565' - Label 'Sequence alignment visualisation'\n", + "Entity 'http://edamontology.org/operation_0566' - Label 'Sequence cluster visualisation'\n", + "Entity 'http://edamontology.org/operation_0566' - Label 'Sequence cluster visualisation'\n", + "Entity 'http://edamontology.org/operation_0567' - Label 'Phylogenetic tree visualisation'\n", + "Entity 'http://edamontology.org/operation_0567' - Label 'Phylogenetic tree visualisation'\n", + "Entity 'http://edamontology.org/operation_0567' - Label 'Phylogenetic tree visualisation'\n", + "Entity 'http://edamontology.org/operation_0568' - Label 'RNA secondary structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0568' - Label 'RNA secondary structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0569' - Label 'Protein secondary structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0569' - Label 'Protein secondary structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0570' - Label 'Structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0570' - Label 'Structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0570' - Label 'Structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0570' - Label 'Structure visualisation'\n", + "Entity 'http://edamontology.org/operation_0571' - Label 'Expression data visualisation'\n", + "Entity 'http://edamontology.org/operation_0571' - Label 'Expression data visualisation'\n", + "Entity 'http://edamontology.org/operation_0571' - Label 'Expression data visualisation'\n", + "Entity 'http://edamontology.org/operation_0572' - Label 'Protein interaction network visualisation'\n", + "Entity 'http://edamontology.org/operation_0572' - Label 'Protein interaction network visualisation'\n", + "Entity 'http://edamontology.org/operation_0573' - Label 'Map drawing'\n", + "Entity 'http://edamontology.org/operation_0573' - Label 'Map drawing'\n", + "Entity 'http://edamontology.org/operation_0574' - Label 'Sequence motif rendering'\n", + "Entity 'http://edamontology.org/operation_0574' - Label 'Sequence motif rendering'\n", + "Entity 'http://edamontology.org/operation_0575' - Label 'Restriction map drawing'\n", + "Entity 'http://edamontology.org/operation_0575' - Label 'Restriction map drawing'\n", + "Entity 'http://edamontology.org/operation_0577' - Label 'DNA linear map rendering'\n", + "Entity 'http://edamontology.org/operation_0577' - Label 'DNA linear map rendering'\n", + "Entity 'http://edamontology.org/operation_0578' - Label 'Plasmid map drawing'\n", + "Entity 'http://edamontology.org/operation_0579' - Label 'Operon drawing'\n", + "Entity 'http://edamontology.org/operation_0579' - Label 'Operon drawing'\n", + "Entity 'http://edamontology.org/operation_1768' - Label 'Nucleic acid folding family identification'\n", + "Entity 'http://edamontology.org/operation_1768' - Label 'Nucleic acid folding family identification'\n", + "Entity 'http://edamontology.org/operation_1769' - Label 'Nucleic acid folding energy calculation'\n", + "Entity 'http://edamontology.org/operation_1769' - Label 'Nucleic acid folding energy calculation'\n", + "Entity 'http://edamontology.org/operation_1774' - Label 'Annotation retrieval'\n", + "Entity 'http://edamontology.org/operation_1774' - Label 'Annotation retrieval'\n", + "Entity 'http://edamontology.org/operation_1777' - Label 'Protein function prediction'\n", + "Entity 'http://edamontology.org/operation_1777' - Label 'Protein function prediction'\n", + "Entity 'http://edamontology.org/operation_1777' - Label 'Protein function prediction'\n", + "Entity 'http://edamontology.org/operation_1778' - Label 'Protein function comparison'\n", + "Entity 'http://edamontology.org/operation_1778' - Label 'Protein function comparison'\n", + "Entity 'http://edamontology.org/operation_1778' - Label 'Protein function comparison'\n", + "Entity 'http://edamontology.org/operation_1780' - Label 'Sequence submission'\n", + "Entity 'http://edamontology.org/operation_1780' - Label 'Sequence submission'\n", + "Entity 'http://edamontology.org/operation_1781' - Label 'Gene regulatory network analysis'\n", + "Entity 'http://edamontology.org/operation_1781' - Label 'Gene regulatory network analysis'\n", + "Entity 'http://edamontology.org/operation_1781' - Label 'Gene regulatory network analysis'\n", + "Entity 'http://edamontology.org/operation_1812' - Label 'Parsing'\n", + "Entity 'http://edamontology.org/operation_1813' - Label 'Sequence retrieval'\n", + "Entity 'http://edamontology.org/operation_1813' - Label 'Sequence retrieval'\n", + "Entity 'http://edamontology.org/operation_1814' - Label 'Structure retrieval'\n", + "Entity 'http://edamontology.org/operation_1814' - Label 'Structure retrieval'\n", + "Entity 'http://edamontology.org/operation_1816' - Label 'Surface rendering'\n", + "Entity 'http://edamontology.org/operation_1816' - Label 'Surface rendering'\n", + "Entity 'http://edamontology.org/operation_1817' - Label 'Protein atom surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1817' - Label 'Protein atom surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1818' - Label 'Protein atom surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1818' - Label 'Protein atom surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1819' - Label 'Protein residue surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1819' - Label 'Protein residue surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1820' - Label 'Protein residue surface calculation (vacuum accessible)'\n", + "Entity 'http://edamontology.org/operation_1820' - Label 'Protein residue surface calculation (vacuum accessible)'\n", + "Entity 'http://edamontology.org/operation_1821' - Label 'Protein residue surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1821' - Label 'Protein residue surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1822' - Label 'Protein residue surface calculation (vacuum molecular)'\n", + "Entity 'http://edamontology.org/operation_1822' - Label 'Protein residue surface calculation (vacuum molecular)'\n", + "Entity 'http://edamontology.org/operation_1823' - Label 'Protein surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1823' - Label 'Protein surface calculation (accessible molecular)'\n", + "Entity 'http://edamontology.org/operation_1824' - Label 'Protein surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1824' - Label 'Protein surface calculation (accessible)'\n", + "Entity 'http://edamontology.org/operation_1825' - Label 'Backbone torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1825' - Label 'Backbone torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1826' - Label 'Full torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1826' - Label 'Full torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1827' - Label 'Cysteine torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1827' - Label 'Cysteine torsion angle calculation'\n", + "Entity 'http://edamontology.org/operation_1828' - Label 'Tau angle calculation'\n", + "Entity 'http://edamontology.org/operation_1828' - Label 'Tau angle calculation'\n", + "Entity 'http://edamontology.org/operation_1829' - Label 'Cysteine bridge detection'\n", + "Entity 'http://edamontology.org/operation_1830' - Label 'Free cysteine detection'\n", + "Entity 'http://edamontology.org/operation_1831' - Label 'Metal-bound cysteine detection'\n", + "Entity 'http://edamontology.org/operation_1831' - Label 'Metal-bound cysteine detection'\n", + "Entity 'http://edamontology.org/operation_1832' - Label 'Residue contact calculation (residue-nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_1832' - Label 'Residue contact calculation (residue-nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_1834' - Label 'Protein-metal contact calculation'\n", + "Entity 'http://edamontology.org/operation_1835' - Label 'Residue contact calculation (residue-negative ion)'\n", + "Entity 'http://edamontology.org/operation_1835' - Label 'Residue contact calculation (residue-negative ion)'\n", + "Entity 'http://edamontology.org/operation_1836' - Label 'Residue bump detection'\n", + "Entity 'http://edamontology.org/operation_1837' - Label 'Residue symmetry contact calculation'\n", + "Entity 'http://edamontology.org/operation_1837' - Label 'Residue symmetry contact calculation'\n", + "Entity 'http://edamontology.org/operation_1838' - Label 'Residue contact calculation (residue-ligand)'\n", + "Entity 'http://edamontology.org/operation_1838' - Label 'Residue contact calculation (residue-ligand)'\n", + "Entity 'http://edamontology.org/operation_1839' - Label 'Salt bridge calculation'\n", + "Entity 'http://edamontology.org/operation_1841' - Label 'Rotamer likelihood prediction'\n", + "Entity 'http://edamontology.org/operation_1841' - Label 'Rotamer likelihood prediction'\n", + "Entity 'http://edamontology.org/operation_1842' - Label 'Proline mutation value calculation'\n", + "Entity 'http://edamontology.org/operation_1842' - Label 'Proline mutation value calculation'\n", + "Entity 'http://edamontology.org/operation_1843' - Label 'Residue packing validation'\n", + "Entity 'http://edamontology.org/operation_1844' - Label 'Protein geometry validation'\n", + "Entity 'http://edamontology.org/operation_1845' - Label 'PDB file sequence retrieval'\n", + "Entity 'http://edamontology.org/operation_1845' - Label 'PDB file sequence retrieval'\n", + "Entity 'http://edamontology.org/operation_1846' - Label 'HET group detection'\n", + "Entity 'http://edamontology.org/operation_1846' - Label 'HET group detection'\n", + "Entity 'http://edamontology.org/operation_1847' - Label 'DSSP secondary structure assignment'\n", + "Entity 'http://edamontology.org/operation_1847' - Label 'DSSP secondary structure assignment'\n", + "Entity 'http://edamontology.org/operation_1848' - Label 'Structure formatting'\n", + "Entity 'http://edamontology.org/operation_1848' - Label 'Structure formatting'\n", + "Entity 'http://edamontology.org/operation_1850' - Label 'Protein cysteine and disulfide bond assignment'\n", + "Entity 'http://edamontology.org/operation_1850' - Label 'Protein cysteine and disulfide bond assignment'\n", + "Entity 'http://edamontology.org/operation_1913' - Label 'Residue validation'\n", + "Entity 'http://edamontology.org/operation_1913' - Label 'Residue validation'\n", + "Entity 'http://edamontology.org/operation_1914' - Label 'Structure retrieval (water)'\n", + "Entity 'http://edamontology.org/operation_1914' - Label 'Structure retrieval (water)'\n", + "Entity 'http://edamontology.org/operation_2008' - Label 'siRNA duplex prediction'\n", + "Entity 'http://edamontology.org/operation_2008' - Label 'siRNA duplex prediction'\n", + "Entity 'http://edamontology.org/operation_2089' - Label 'Sequence alignment refinement'\n", + "Entity 'http://edamontology.org/operation_2089' - Label 'Sequence alignment refinement'\n", + "Entity 'http://edamontology.org/operation_2120' - Label 'Listfile processing'\n", + "Entity 'http://edamontology.org/operation_2120' - Label 'Listfile processing'\n", + "Entity 'http://edamontology.org/operation_2121' - Label 'Sequence file editing'\n", + "Entity 'http://edamontology.org/operation_2121' - Label 'Sequence file editing'\n", + "Entity 'http://edamontology.org/operation_2122' - Label 'Sequence alignment file processing'\n", + "Entity 'http://edamontology.org/operation_2122' - Label 'Sequence alignment file processing'\n", + "Entity 'http://edamontology.org/operation_2123' - Label 'Small molecule data processing'\n", + "Entity 'http://edamontology.org/operation_2123' - Label 'Small molecule data processing'\n", + "Entity 'http://edamontology.org/operation_2222' - Label 'Data retrieval (ontology annotation)'\n", + "Entity 'http://edamontology.org/operation_2222' - Label 'Data retrieval (ontology annotation)'\n", + "Entity 'http://edamontology.org/operation_2224' - Label 'Data retrieval (ontology concept)'\n", + "Entity 'http://edamontology.org/operation_2224' - Label 'Data retrieval (ontology concept)'\n", + "Entity 'http://edamontology.org/operation_2233' - Label 'Representative sequence identification'\n", + "Entity 'http://edamontology.org/operation_2234' - Label 'Structure file processing'\n", + "Entity 'http://edamontology.org/operation_2234' - Label 'Structure file processing'\n", + "Entity 'http://edamontology.org/operation_2237' - Label 'Data retrieval (sequence profile)'\n", + "Entity 'http://edamontology.org/operation_2237' - Label 'Data retrieval (sequence profile)'\n", + "Entity 'http://edamontology.org/operation_2238' - Label 'Statistical calculation'\n", + "Entity 'http://edamontology.org/operation_2239' - Label '3D-1D scoring matrix generation'\n", + "Entity 'http://edamontology.org/operation_2239' - Label '3D-1D scoring matrix generation'\n", + "Entity 'http://edamontology.org/operation_2239' - Label '3D-1D scoring matrix generation'\n", + "Entity 'http://edamontology.org/operation_2239' - Label '3D-1D scoring matrix generation'\n", + "Entity 'http://edamontology.org/operation_2241' - Label 'Transmembrane protein visualisation'\n", + "Entity 'http://edamontology.org/operation_2241' - Label 'Transmembrane protein visualisation'\n", + "Entity 'http://edamontology.org/operation_2241' - Label 'Transmembrane protein visualisation'\n", + "Entity 'http://edamontology.org/operation_2246' - Label 'Demonstration'\n", + "Entity 'http://edamontology.org/operation_2246' - Label 'Demonstration'\n", + "Entity 'http://edamontology.org/operation_2264' - Label 'Data retrieval (pathway or network)'\n", + "Entity 'http://edamontology.org/operation_2264' - Label 'Data retrieval (pathway or network)'\n", + "Entity 'http://edamontology.org/operation_2265' - Label 'Data retrieval (identifier)'\n", + "Entity 'http://edamontology.org/operation_2265' - Label 'Data retrieval (identifier)'\n", + "Entity 'http://edamontology.org/operation_2284' - Label 'Nucleic acid density plotting'\n", + "Entity 'http://edamontology.org/operation_2284' - Label 'Nucleic acid density plotting'\n", + "Entity 'http://edamontology.org/operation_2403' - Label 'Sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2403' - Label 'Sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2404' - Label 'Sequence motif analysis'\n", + "Entity 'http://edamontology.org/operation_2405' - Label 'Protein interaction data processing'\n", + "Entity 'http://edamontology.org/operation_2405' - Label 'Protein interaction data processing'\n", + "Entity 'http://edamontology.org/operation_2406' - Label 'Protein structure analysis'\n", + "Entity 'http://edamontology.org/operation_2406' - Label 'Protein structure analysis'\n", + "Entity 'http://edamontology.org/operation_2406' - Label 'Protein structure analysis'\n", + "Entity 'http://edamontology.org/operation_2407' - Label 'Annotation processing'\n", + "Entity 'http://edamontology.org/operation_2407' - Label 'Annotation processing'\n", + "Entity 'http://edamontology.org/operation_2408' - Label 'Sequence feature analysis'\n", + "Entity 'http://edamontology.org/operation_2408' - Label 'Sequence feature analysis'\n", + "Entity 'http://edamontology.org/operation_2409' - Label 'Data handling'\n", + "Entity 'http://edamontology.org/operation_2409' - Label 'Data handling'\n", + "Entity 'http://edamontology.org/operation_2410' - Label 'Gene expression analysis'\n", + "Entity 'http://edamontology.org/operation_2410' - Label 'Gene expression analysis'\n", + "Entity 'http://edamontology.org/operation_2411' - Label 'Structural profile processing'\n", + "Entity 'http://edamontology.org/operation_2411' - Label 'Structural profile processing'\n", + "Entity 'http://edamontology.org/operation_2412' - Label 'Data index processing'\n", + "Entity 'http://edamontology.org/operation_2412' - Label 'Data index processing'\n", + "Entity 'http://edamontology.org/operation_2413' - Label 'Sequence profile processing'\n", + "Entity 'http://edamontology.org/operation_2413' - Label 'Sequence profile processing'\n", + "Entity 'http://edamontology.org/operation_2414' - Label 'Protein function analysis'\n", + "Entity 'http://edamontology.org/operation_2414' - Label 'Protein function analysis'\n", + "Entity 'http://edamontology.org/operation_2415' - Label 'Protein folding analysis'\n", + "Entity 'http://edamontology.org/operation_2415' - Label 'Protein folding analysis'\n", + "Entity 'http://edamontology.org/operation_2415' - Label 'Protein folding analysis'\n", + "Entity 'http://edamontology.org/operation_2415' - Label 'Protein folding analysis'\n", + "Entity 'http://edamontology.org/operation_2416' - Label 'Protein secondary structure analysis'\n", + "Entity 'http://edamontology.org/operation_2416' - Label 'Protein secondary structure analysis'\n", + "Entity 'http://edamontology.org/operation_2416' - Label 'Protein secondary structure analysis'\n", + "Entity 'http://edamontology.org/operation_2417' - Label 'Physicochemical property data processing'\n", + "Entity 'http://edamontology.org/operation_2417' - Label 'Physicochemical property data processing'\n", + "Entity 'http://edamontology.org/operation_2419' - Label 'Primer and probe design'\n", + "Entity 'http://edamontology.org/operation_2419' - Label 'Primer and probe design'\n", + "Entity 'http://edamontology.org/operation_2419' - Label 'Primer and probe design'\n", + "Entity 'http://edamontology.org/operation_2420' - Label 'Operation (typed)'\n", + "Entity 'http://edamontology.org/operation_2420' - Label 'Operation (typed)'\n", + "Entity 'http://edamontology.org/operation_2421' - Label 'Database search'\n", + "Entity 'http://edamontology.org/operation_2421' - Label 'Database search'\n", + "Entity 'http://edamontology.org/operation_2422' - Label 'Data retrieval'\n", + "Entity 'http://edamontology.org/operation_2422' - Label 'Data retrieval'\n", + "Entity 'http://edamontology.org/operation_2422' - Label 'Data retrieval'\n", + "Entity 'http://edamontology.org/operation_2423' - Label 'Prediction and recognition'\n", + "Entity 'http://edamontology.org/operation_2424' - Label 'Comparison'\n", + "Entity 'http://edamontology.org/operation_2425' - Label 'Optimisation and refinement'\n", + "Entity 'http://edamontology.org/operation_2426' - Label 'Modelling and simulation'\n", + "Entity 'http://edamontology.org/operation_2426' - Label 'Modelling and simulation'\n", + "Entity 'http://edamontology.org/operation_2427' - Label 'Data handling'\n", + "Entity 'http://edamontology.org/operation_2427' - Label 'Data handling'\n", + "Entity 'http://edamontology.org/operation_2428' - Label 'Validation'\n", + "Entity 'http://edamontology.org/operation_2429' - Label 'Mapping'\n", + "Entity 'http://edamontology.org/operation_2430' - Label 'Design'\n", + "Entity 'http://edamontology.org/operation_2432' - Label 'Microarray data processing'\n", + "Entity 'http://edamontology.org/operation_2432' - Label 'Microarray data processing'\n", + "Entity 'http://edamontology.org/operation_2433' - Label 'Codon usage table processing'\n", + "Entity 'http://edamontology.org/operation_2433' - Label 'Codon usage table processing'\n", + "Entity 'http://edamontology.org/operation_2433' - Label 'Codon usage table processing'\n", + "Entity 'http://edamontology.org/operation_2434' - Label 'Data retrieval (codon usage table)'\n", + "Entity 'http://edamontology.org/operation_2434' - Label 'Data retrieval (codon usage table)'\n", + "Entity 'http://edamontology.org/operation_2435' - Label 'Gene expression profile processing'\n", + "Entity 'http://edamontology.org/operation_2435' - Label 'Gene expression profile processing'\n", + "Entity 'http://edamontology.org/operation_2436' - Label 'Gene-set enrichment analysis'\n", + "Entity 'http://edamontology.org/operation_2436' - Label 'Gene-set enrichment analysis'\n", + "Entity 'http://edamontology.org/operation_2436' - Label 'Gene-set enrichment analysis'\n", + "Entity 'http://edamontology.org/operation_2436' - Label 'Gene-set enrichment analysis'\n", + "Entity 'http://edamontology.org/operation_2437' - Label 'Gene regulatory network prediction'\n", + "Entity 'http://edamontology.org/operation_2437' - Label 'Gene regulatory network prediction'\n", + "Entity 'http://edamontology.org/operation_2437' - Label 'Gene regulatory network prediction'\n", + "Entity 'http://edamontology.org/operation_2438' - Label 'Pathway or network processing'\n", + "Entity 'http://edamontology.org/operation_2438' - Label 'Pathway or network processing'\n", + "Entity 'http://edamontology.org/operation_2438' - Label 'Pathway or network processing'\n", + "Entity 'http://edamontology.org/operation_2439' - Label 'RNA secondary structure analysis'\n", + "Entity 'http://edamontology.org/operation_2439' - Label 'RNA secondary structure analysis'\n", + "Entity 'http://edamontology.org/operation_2440' - Label 'Structure processing (RNA)'\n", + "Entity 'http://edamontology.org/operation_2440' - Label 'Structure processing (RNA)'\n", + "Entity 'http://edamontology.org/operation_2441' - Label 'RNA structure prediction'\n", + "Entity 'http://edamontology.org/operation_2441' - Label 'RNA structure prediction'\n", + "Entity 'http://edamontology.org/operation_2442' - Label 'DNA structure prediction'\n", + "Entity 'http://edamontology.org/operation_2442' - Label 'DNA structure prediction'\n", + "Entity 'http://edamontology.org/operation_2443' - Label 'Phylogenetic tree processing'\n", + "Entity 'http://edamontology.org/operation_2443' - Label 'Phylogenetic tree processing'\n", + "Entity 'http://edamontology.org/operation_2444' - Label 'Protein secondary structure processing'\n", + "Entity 'http://edamontology.org/operation_2444' - Label 'Protein secondary structure processing'\n", + "Entity 'http://edamontology.org/operation_2445' - Label 'Protein interaction network processing'\n", + "Entity 'http://edamontology.org/operation_2445' - Label 'Protein interaction network processing'\n", + "Entity 'http://edamontology.org/operation_2446' - Label 'Sequence processing'\n", + "Entity 'http://edamontology.org/operation_2446' - Label 'Sequence processing'\n", + "Entity 'http://edamontology.org/operation_2447' - Label 'Sequence processing (protein)'\n", + "Entity 'http://edamontology.org/operation_2447' - Label 'Sequence processing (protein)'\n", + "Entity 'http://edamontology.org/operation_2448' - Label 'Sequence processing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2448' - Label 'Sequence processing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2451' - Label 'Sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2451' - Label 'Sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2451' - Label 'Sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2451' - Label 'Sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2452' - Label 'Sequence cluster processing'\n", + "Entity 'http://edamontology.org/operation_2452' - Label 'Sequence cluster processing'\n", + "Entity 'http://edamontology.org/operation_2453' - Label 'Feature table processing'\n", + "Entity 'http://edamontology.org/operation_2453' - Label 'Feature table processing'\n", + "Entity 'http://edamontology.org/operation_2454' - Label 'Gene prediction'\n", + "Entity 'http://edamontology.org/operation_2454' - Label 'Gene prediction'\n", + "Entity 'http://edamontology.org/operation_2454' - Label 'Gene prediction'\n", + "Entity 'http://edamontology.org/operation_2456' - Label 'GPCR classification'\n", + "Entity 'http://edamontology.org/operation_2456' - Label 'GPCR classification'\n", + "Entity 'http://edamontology.org/operation_2457' - Label 'GPCR coupling selectivity prediction'\n", + "Entity 'http://edamontology.org/operation_2457' - Label 'GPCR coupling selectivity prediction'\n", + "Entity 'http://edamontology.org/operation_2459' - Label 'Structure processing (protein)'\n", + "Entity 'http://edamontology.org/operation_2459' - Label 'Structure processing (protein)'\n", + "Entity 'http://edamontology.org/operation_2460' - Label 'Protein atom surface calculation'\n", + "Entity 'http://edamontology.org/operation_2460' - Label 'Protein atom surface calculation'\n", + "Entity 'http://edamontology.org/operation_2461' - Label 'Protein residue surface calculation'\n", + "Entity 'http://edamontology.org/operation_2461' - Label 'Protein residue surface calculation'\n", + "Entity 'http://edamontology.org/operation_2462' - Label 'Protein surface calculation'\n", + "Entity 'http://edamontology.org/operation_2462' - Label 'Protein surface calculation'\n", + "Entity 'http://edamontology.org/operation_2463' - Label 'Sequence alignment processing'\n", + "Entity 'http://edamontology.org/operation_2463' - Label 'Sequence alignment processing'\n", + "Entity 'http://edamontology.org/operation_2464' - Label 'Protein-protein binding site prediction'\n", + "Entity 'http://edamontology.org/operation_2464' - Label 'Protein-protein binding site prediction'\n", + "Entity 'http://edamontology.org/operation_2464' - Label 'Protein-protein binding site prediction'\n", + "Entity 'http://edamontology.org/operation_2465' - Label 'Structure processing'\n", + "Entity 'http://edamontology.org/operation_2465' - Label 'Structure processing'\n", + "Entity 'http://edamontology.org/operation_2466' - Label 'Map annotation'\n", + "Entity 'http://edamontology.org/operation_2466' - Label 'Map annotation'\n", + "Entity 'http://edamontology.org/operation_2467' - Label 'Data retrieval (protein annotation)'\n", + "Entity 'http://edamontology.org/operation_2467' - Label 'Data retrieval (protein annotation)'\n", + "Entity 'http://edamontology.org/operation_2468' - Label 'Data retrieval (phylogenetic tree)'\n", + "Entity 'http://edamontology.org/operation_2468' - Label 'Data retrieval (phylogenetic tree)'\n", + "Entity 'http://edamontology.org/operation_2469' - Label 'Data retrieval (protein interaction annotation)'\n", + "Entity 'http://edamontology.org/operation_2469' - Label 'Data retrieval (protein interaction annotation)'\n", + "Entity 'http://edamontology.org/operation_2470' - Label 'Data retrieval (protein family annotation)'\n", + "Entity 'http://edamontology.org/operation_2470' - Label 'Data retrieval (protein family annotation)'\n", + "Entity 'http://edamontology.org/operation_2471' - Label 'Data retrieval (RNA family annotation)'\n", + "Entity 'http://edamontology.org/operation_2471' - Label 'Data retrieval (RNA family annotation)'\n", + "Entity 'http://edamontology.org/operation_2472' - Label 'Data retrieval (gene annotation)'\n", + "Entity 'http://edamontology.org/operation_2472' - Label 'Data retrieval (gene annotation)'\n", + "Entity 'http://edamontology.org/operation_2473' - Label 'Data retrieval (genotype and phenotype annotation)'\n", + "Entity 'http://edamontology.org/operation_2473' - Label 'Data retrieval (genotype and phenotype annotation)'\n", + "Entity 'http://edamontology.org/operation_2474' - Label 'Protein architecture comparison'\n", + "Entity 'http://edamontology.org/operation_2474' - Label 'Protein architecture comparison'\n", + "Entity 'http://edamontology.org/operation_2475' - Label 'Protein architecture recognition'\n", + "Entity 'http://edamontology.org/operation_2475' - Label 'Protein architecture recognition'\n", + "Entity 'http://edamontology.org/operation_2475' - Label 'Protein architecture recognition'\n", + "Entity 'http://edamontology.org/operation_2476' - Label 'Molecular dynamics'\n", + "Entity 'http://edamontology.org/operation_2476' - Label 'Molecular dynamics'\n", + "Entity 'http://edamontology.org/operation_2476' - Label 'Molecular dynamics'\n", + "Entity 'http://edamontology.org/operation_2476' - Label 'Molecular dynamics'\n", + "Entity 'http://edamontology.org/operation_2476' - Label 'Molecular dynamics'\n", + "Entity 'http://edamontology.org/operation_2476' - Label 'Molecular dynamics'\n", + "Entity 'http://edamontology.org/operation_2478' - Label 'Nucleic acid sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2478' - Label 'Nucleic acid sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2478' - Label 'Nucleic acid sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2479' - Label 'Protein sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2479' - Label 'Protein sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2479' - Label 'Protein sequence analysis'\n", + "Entity 'http://edamontology.org/operation_2480' - Label 'Structure analysis'\n", + "Entity 'http://edamontology.org/operation_2480' - Label 'Structure analysis'\n", + "Entity 'http://edamontology.org/operation_2481' - Label 'Nucleic acid structure analysis'\n", + "Entity 'http://edamontology.org/operation_2481' - Label 'Nucleic acid structure analysis'\n", + "Entity 'http://edamontology.org/operation_2481' - Label 'Nucleic acid structure analysis'\n", + "Entity 'http://edamontology.org/operation_2482' - Label 'Secondary structure processing'\n", + "Entity 'http://edamontology.org/operation_2482' - Label 'Secondary structure processing'\n", + "Entity 'http://edamontology.org/operation_2483' - Label 'Structure comparison'\n", + "Entity 'http://edamontology.org/operation_2483' - Label 'Structure comparison'\n", + "Entity 'http://edamontology.org/operation_2483' - Label 'Structure comparison'\n", + "Entity 'http://edamontology.org/operation_2485' - Label 'Helical wheel drawing'\n", + "Entity 'http://edamontology.org/operation_2485' - Label 'Helical wheel drawing'\n", + "Entity 'http://edamontology.org/operation_2486' - Label 'Topology diagram drawing'\n", + "Entity 'http://edamontology.org/operation_2486' - Label 'Topology diagram drawing'\n", + "Entity 'http://edamontology.org/operation_2487' - Label 'Protein structure comparison'\n", + "Entity 'http://edamontology.org/operation_2487' - Label 'Protein structure comparison'\n", + "Entity 'http://edamontology.org/operation_2487' - Label 'Protein structure comparison'\n", + "Entity 'http://edamontology.org/operation_2487' - Label 'Protein structure comparison'\n", + "Entity 'http://edamontology.org/operation_2488' - Label 'Protein secondary structure comparison'\n", + "Entity 'http://edamontology.org/operation_2488' - Label 'Protein secondary structure comparison'\n", + "Entity 'http://edamontology.org/operation_2489' - Label 'Subcellular localisation prediction'\n", + "Entity 'http://edamontology.org/operation_2489' - Label 'Subcellular localisation prediction'\n", + "Entity 'http://edamontology.org/operation_2490' - Label 'Residue contact calculation (residue-residue)'\n", + "Entity 'http://edamontology.org/operation_2490' - Label 'Residue contact calculation (residue-residue)'\n", + "Entity 'http://edamontology.org/operation_2491' - Label 'Hydrogen bond calculation (inter-residue)'\n", + "Entity 'http://edamontology.org/operation_2491' - Label 'Hydrogen bond calculation (inter-residue)'\n", + "Entity 'http://edamontology.org/operation_2492' - Label 'Protein interaction prediction'\n", + "Entity 'http://edamontology.org/operation_2492' - Label 'Protein interaction prediction'\n", + "Entity 'http://edamontology.org/operation_2492' - Label 'Protein interaction prediction'\n", + "Entity 'http://edamontology.org/operation_2493' - Label 'Codon usage data processing'\n", + "Entity 'http://edamontology.org/operation_2493' - Label 'Codon usage data processing'\n", + "Entity 'http://edamontology.org/operation_2495' - Label 'Expression analysis'\n", + "Entity 'http://edamontology.org/operation_2495' - Label 'Expression analysis'\n", + "Entity 'http://edamontology.org/operation_2496' - Label 'Gene regulatory network processing'\n", + "Entity 'http://edamontology.org/operation_2496' - Label 'Gene regulatory network processing'\n", + "Entity 'http://edamontology.org/operation_2497' - Label 'Pathway or network analysis'\n", + "Entity 'http://edamontology.org/operation_2497' - Label 'Pathway or network analysis'\n", + "Entity 'http://edamontology.org/operation_2497' - Label 'Pathway or network analysis'\n", + "Entity 'http://edamontology.org/operation_2498' - Label 'Sequencing-based expression profile data analysis'\n", + "Entity 'http://edamontology.org/operation_2498' - Label 'Sequencing-based expression profile data analysis'\n", + "Entity 'http://edamontology.org/operation_2499' - Label 'Splicing analysis'\n", + "Entity 'http://edamontology.org/operation_2499' - Label 'Splicing analysis'\n", + "Entity 'http://edamontology.org/operation_2499' - Label 'Splicing analysis'\n", + "Entity 'http://edamontology.org/operation_2499' - Label 'Splicing analysis'\n", + "Entity 'http://edamontology.org/operation_2500' - Label 'Microarray raw data analysis'\n", + "Entity 'http://edamontology.org/operation_2500' - Label 'Microarray raw data analysis'\n", + "Entity 'http://edamontology.org/operation_2501' - Label 'Nucleic acid analysis'\n", + "Entity 'http://edamontology.org/operation_2501' - Label 'Nucleic acid analysis'\n", + "Entity 'http://edamontology.org/operation_2501' - Label 'Nucleic acid analysis'\n", + "Entity 'http://edamontology.org/operation_2502' - Label 'Protein analysis'\n", + "Entity 'http://edamontology.org/operation_2502' - Label 'Protein analysis'\n", + "Entity 'http://edamontology.org/operation_2502' - Label 'Protein analysis'\n", + "Entity 'http://edamontology.org/operation_2503' - Label 'Sequence data processing'\n", + "Entity 'http://edamontology.org/operation_2503' - Label 'Sequence data processing'\n", + "Entity 'http://edamontology.org/operation_2504' - Label 'Structural data processing'\n", + "Entity 'http://edamontology.org/operation_2504' - Label 'Structural data processing'\n", + "Entity 'http://edamontology.org/operation_2505' - Label 'Text processing'\n", + "Entity 'http://edamontology.org/operation_2505' - Label 'Text processing'\n", + "Entity 'http://edamontology.org/operation_2505' - Label 'Text processing'\n", + "Entity 'http://edamontology.org/operation_2506' - Label 'Protein sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2506' - Label 'Protein sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2507' - Label 'Nucleic acid sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2507' - Label 'Nucleic acid sequence alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2508' - Label 'Nucleic acid sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2508' - Label 'Nucleic acid sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2509' - Label 'Protein sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2509' - Label 'Protein sequence comparison'\n", + "Entity 'http://edamontology.org/operation_2510' - Label 'DNA back-translation'\n", + "Entity 'http://edamontology.org/operation_2510' - Label 'DNA back-translation'\n", + "Entity 'http://edamontology.org/operation_2511' - Label 'Sequence editing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2511' - Label 'Sequence editing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2512' - Label 'Sequence editing (protein)'\n", + "Entity 'http://edamontology.org/operation_2512' - Label 'Sequence editing (protein)'\n", + "Entity 'http://edamontology.org/operation_2513' - Label 'Sequence generation (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2513' - Label 'Sequence generation (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2514' - Label 'Sequence generation (protein)'\n", + "Entity 'http://edamontology.org/operation_2514' - Label 'Sequence generation (protein)'\n", + "Entity 'http://edamontology.org/operation_2515' - Label 'Nucleic acid sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_2515' - Label 'Nucleic acid sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_2516' - Label 'Protein sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_2516' - Label 'Protein sequence visualisation'\n", + "Entity 'http://edamontology.org/operation_2518' - Label 'Nucleic acid structure comparison'\n", + "Entity 'http://edamontology.org/operation_2518' - Label 'Nucleic acid structure comparison'\n", + "Entity 'http://edamontology.org/operation_2518' - Label 'Nucleic acid structure comparison'\n", + "Entity 'http://edamontology.org/operation_2519' - Label 'Structure processing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2519' - Label 'Structure processing (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_2520' - Label 'DNA mapping'\n", + "Entity 'http://edamontology.org/operation_2520' - Label 'DNA mapping'\n", + "Entity 'http://edamontology.org/operation_2520' - Label 'DNA mapping'\n", + "Entity 'http://edamontology.org/operation_2520' - Label 'DNA mapping'\n", + "Entity 'http://edamontology.org/operation_2521' - Label 'Map data processing'\n", + "Entity 'http://edamontology.org/operation_2521' - Label 'Map data processing'\n", + "Entity 'http://edamontology.org/operation_2574' - Label 'Protein hydropathy calculation'\n", + "Entity 'http://edamontology.org/operation_2574' - Label 'Protein hydropathy calculation'\n", + "Entity 'http://edamontology.org/operation_2574' - Label 'Protein hydropathy calculation'\n", + "Entity 'http://edamontology.org/operation_2575' - Label 'Binding site prediction'\n", + "Entity 'http://edamontology.org/operation_2575' - Label 'Binding site prediction'\n", + "Entity 'http://edamontology.org/operation_2575' - Label 'Binding site prediction'\n", + "Entity 'http://edamontology.org/operation_2844' - Label 'Structure clustering'\n", + "Entity 'http://edamontology.org/operation_2871' - Label 'Sequence tagged site (STS) mapping'\n", + "Entity 'http://edamontology.org/operation_2871' - Label 'Sequence tagged site (STS) mapping'\n", + "Entity 'http://edamontology.org/operation_2928' - Label 'Alignment'\n", + "Entity 'http://edamontology.org/operation_2928' - Label 'Alignment'\n", + "Entity 'http://edamontology.org/operation_2929' - Label 'Protein fragment weight comparison'\n", + "Entity 'http://edamontology.org/operation_2929' - Label 'Protein fragment weight comparison'\n", + "Entity 'http://edamontology.org/operation_2930' - Label 'Protein property comparison'\n", + "Entity 'http://edamontology.org/operation_2930' - Label 'Protein property comparison'\n", + "Entity 'http://edamontology.org/operation_2931' - Label 'Secondary structure comparison'\n", + "Entity 'http://edamontology.org/operation_2931' - Label 'Secondary structure comparison'\n", + "Entity 'http://edamontology.org/operation_2931' - Label 'Secondary structure comparison'\n", + "Entity 'http://edamontology.org/operation_2932' - Label 'Hopp and Woods plotting'\n", + "Entity 'http://edamontology.org/operation_2932' - Label 'Hopp and Woods plotting'\n", + "Entity 'http://edamontology.org/operation_2934' - Label 'Cluster textual view generation'\n", + "Entity 'http://edamontology.org/operation_2934' - Label 'Cluster textual view generation'\n", + "Entity 'http://edamontology.org/operation_2935' - Label 'Clustering profile plotting'\n", + "Entity 'http://edamontology.org/operation_2936' - Label 'Dendrograph plotting'\n", + "Entity 'http://edamontology.org/operation_2936' - Label 'Dendrograph plotting'\n", + "Entity 'http://edamontology.org/operation_2937' - Label 'Proximity map plotting'\n", + "Entity 'http://edamontology.org/operation_2938' - Label 'Dendrogram visualisation'\n", + "Entity 'http://edamontology.org/operation_2939' - Label 'Principal component visualisation'\n", + "Entity 'http://edamontology.org/operation_2940' - Label 'Scatter plot plotting'\n", + "Entity 'http://edamontology.org/operation_2941' - Label 'Whole microarray graph plotting'\n", + "Entity 'http://edamontology.org/operation_2941' - Label 'Whole microarray graph plotting'\n", + "Entity 'http://edamontology.org/operation_2942' - Label 'Treemap visualisation'\n", + "Entity 'http://edamontology.org/operation_2943' - Label 'Box-Whisker plot plotting'\n", + "Entity 'http://edamontology.org/operation_2944' - Label 'Physical mapping'\n", + "Entity 'http://edamontology.org/operation_2944' - Label 'Physical mapping'\n", + "Entity 'http://edamontology.org/operation_2944' - Label 'Physical mapping'\n", + "Entity 'http://edamontology.org/operation_2945' - Label 'Analysis'\n", + "Entity 'http://edamontology.org/operation_2946' - Label 'Alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2946' - Label 'Alignment analysis'\n", + "Entity 'http://edamontology.org/operation_2947' - Label 'Article analysis'\n", + "Entity 'http://edamontology.org/operation_2947' - Label 'Article analysis'\n", + "Entity 'http://edamontology.org/operation_2947' - Label 'Article analysis'\n", + "Entity 'http://edamontology.org/operation_2948' - Label 'Molecular interaction analysis'\n", + "Entity 'http://edamontology.org/operation_2948' - Label 'Molecular interaction analysis'\n", + "Entity 'http://edamontology.org/operation_2949' - Label 'Protein-protein interaction analysis'\n", + "Entity 'http://edamontology.org/operation_2949' - Label 'Protein-protein interaction analysis'\n", + "Entity 'http://edamontology.org/operation_2949' - Label 'Protein-protein interaction analysis'\n", + "Entity 'http://edamontology.org/operation_2950' - Label 'Residue distance calculation'\n", + "Entity 'http://edamontology.org/operation_2951' - Label 'Alignment processing'\n", + "Entity 'http://edamontology.org/operation_2951' - Label 'Alignment processing'\n", + "Entity 'http://edamontology.org/operation_2951' - Label 'Alignment processing'\n", + "Entity 'http://edamontology.org/operation_2952' - Label 'Structure alignment processing'\n", + "Entity 'http://edamontology.org/operation_2952' - Label 'Structure alignment processing'\n", + "Entity 'http://edamontology.org/operation_2962' - Label 'Codon usage bias calculation'\n", + "Entity 'http://edamontology.org/operation_2962' - Label 'Codon usage bias calculation'\n", + "Entity 'http://edamontology.org/operation_2963' - Label 'Codon usage bias plotting'\n", + "Entity 'http://edamontology.org/operation_2963' - Label 'Codon usage bias plotting'\n", + "Entity 'http://edamontology.org/operation_2964' - Label 'Codon usage fraction calculation'\n", + "Entity 'http://edamontology.org/operation_2964' - Label 'Codon usage fraction calculation'\n", + "Entity 'http://edamontology.org/operation_2990' - Label 'Classification'\n", + "Entity 'http://edamontology.org/operation_2993' - Label 'Molecular interaction data processing'\n", + "Entity 'http://edamontology.org/operation_2993' - Label 'Molecular interaction data processing'\n", + "Entity 'http://edamontology.org/operation_2995' - Label 'Sequence classification'\n", + "Entity 'http://edamontology.org/operation_2995' - Label 'Sequence classification'\n", + "Entity 'http://edamontology.org/operation_2996' - Label 'Structure classification'\n", + "Entity 'http://edamontology.org/operation_2996' - Label 'Structure classification'\n", + "Entity 'http://edamontology.org/operation_2997' - Label 'Protein comparison'\n", + "Entity 'http://edamontology.org/operation_2998' - Label 'Nucleic acid comparison'\n", + "Entity 'http://edamontology.org/operation_3023' - Label 'Prediction and recognition (protein)'\n", + "Entity 'http://edamontology.org/operation_3023' - Label 'Prediction and recognition (protein)'\n", + "Entity 'http://edamontology.org/operation_3024' - Label 'Prediction and recognition (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_3024' - Label 'Prediction and recognition (nucleic acid)'\n", + "Entity 'http://edamontology.org/operation_3080' - Label 'Structure editing'\n", + "Entity 'http://edamontology.org/operation_3080' - Label 'Structure editing'\n", + "Entity 'http://edamontology.org/operation_3081' - Label 'Sequence alignment editing'\n", + "Entity 'http://edamontology.org/operation_3083' - Label 'Pathway or network visualisation'\n", + "Entity 'http://edamontology.org/operation_3083' - Label 'Pathway or network visualisation'\n", + "Entity 'http://edamontology.org/operation_3083' - Label 'Pathway or network visualisation'\n", + "Entity 'http://edamontology.org/operation_3084' - Label 'Protein function prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_3084' - Label 'Protein function prediction (from sequence)'\n", + "Entity 'http://edamontology.org/operation_3087' - Label 'Protein sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_3087' - Label 'Protein sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_3088' - Label 'Protein property calculation (from sequence)'\n", + "Entity 'http://edamontology.org/operation_3088' - Label 'Protein property calculation (from sequence)'\n", + "Entity 'http://edamontology.org/operation_3090' - Label 'Protein feature prediction (from structure)'\n", + "Entity 'http://edamontology.org/operation_3090' - Label 'Protein feature prediction (from structure)'\n", + "Entity 'http://edamontology.org/operation_3092' - Label 'Protein feature detection'\n", + "Entity 'http://edamontology.org/operation_3092' - Label 'Protein feature detection'\n", + "Entity 'http://edamontology.org/operation_3092' - Label 'Protein feature detection'\n", + "Entity 'http://edamontology.org/operation_3092' - Label 'Protein feature detection'\n", + "Entity 'http://edamontology.org/operation_3092' - Label 'Protein feature detection'\n", + "Entity 'http://edamontology.org/operation_3093' - Label 'Database search (by sequence)'\n", + "Entity 'http://edamontology.org/operation_3093' - Label 'Database search (by sequence)'\n", + "Entity 'http://edamontology.org/operation_3094' - Label 'Protein interaction network prediction'\n", + "Entity 'http://edamontology.org/operation_3094' - Label 'Protein interaction network prediction'\n", + "Entity 'http://edamontology.org/operation_3095' - Label 'Nucleic acid design'\n", + "Entity 'http://edamontology.org/operation_3095' - Label 'Nucleic acid design'\n", + "Entity 'http://edamontology.org/operation_3096' - Label 'Editing'\n", + "Entity 'http://edamontology.org/operation_3180' - Label 'Sequence assembly validation'\n", + "Entity 'http://edamontology.org/operation_3180' - Label 'Sequence assembly validation'\n", + "Entity 'http://edamontology.org/operation_3180' - Label 'Sequence assembly validation'\n", + "Entity 'http://edamontology.org/operation_3180' - Label 'Sequence assembly validation'\n", + "Entity 'http://edamontology.org/operation_3180' - Label 'Sequence assembly validation'\n", + "Entity 'http://edamontology.org/operation_3182' - Label 'Genome alignment'\n", + "Entity 'http://edamontology.org/operation_3182' - Label 'Genome alignment'\n", + "Entity 'http://edamontology.org/operation_3183' - Label 'Localised reassembly'\n", + "Entity 'http://edamontology.org/operation_3184' - Label 'Sequence assembly visualisation'\n", + "Entity 'http://edamontology.org/operation_3185' - Label 'Base-calling'\n", + "Entity 'http://edamontology.org/operation_3185' - Label 'Base-calling'\n", + "Entity 'http://edamontology.org/operation_3186' - Label 'Bisulfite mapping'\n", + "Entity 'http://edamontology.org/operation_3186' - Label 'Bisulfite mapping'\n", + "Entity 'http://edamontology.org/operation_3187' - Label 'Sequence contamination filtering'\n", + "Entity 'http://edamontology.org/operation_3189' - Label 'Trim ends'\n", + "Entity 'http://edamontology.org/operation_3189' - Label 'Trim ends'\n", + "Entity 'http://edamontology.org/operation_3190' - Label 'Trim vector'\n", + "Entity 'http://edamontology.org/operation_3190' - Label 'Trim vector'\n", + "Entity 'http://edamontology.org/operation_3191' - Label 'Trim to reference'\n", + "Entity 'http://edamontology.org/operation_3191' - Label 'Trim to reference'\n", + "Entity 'http://edamontology.org/operation_3192' - Label 'Sequence trimming'\n", + "Entity 'http://edamontology.org/operation_3194' - Label 'Genome feature comparison'\n", + "Entity 'http://edamontology.org/operation_3194' - Label 'Genome feature comparison'\n", + "Entity 'http://edamontology.org/operation_3195' - Label 'Sequencing error detection'\n", + "Entity 'http://edamontology.org/operation_3195' - Label 'Sequencing error detection'\n", + "Entity 'http://edamontology.org/operation_3196' - Label 'Genotyping'\n", + "Entity 'http://edamontology.org/operation_3197' - Label 'Genetic variation analysis'\n", + "Entity 'http://edamontology.org/operation_3198' - Label 'Read mapping'\n", + "Entity 'http://edamontology.org/operation_3198' - Label 'Read mapping'\n", + "Entity 'http://edamontology.org/operation_3199' - Label 'Split read mapping'\n", + "Entity 'http://edamontology.org/operation_3200' - Label 'DNA barcoding'\n", + "Entity 'http://edamontology.org/operation_3201' - Label 'SNP calling'\n", + "Entity 'http://edamontology.org/operation_3201' - Label 'SNP calling'\n", + "Entity 'http://edamontology.org/operation_3202' - Label 'Polymorphism detection'\n", + "Entity 'http://edamontology.org/operation_3202' - Label 'Polymorphism detection'\n", + "Entity 'http://edamontology.org/operation_3203' - Label 'Chromatogram visualisation'\n", + "Entity 'http://edamontology.org/operation_3204' - Label 'Methylation analysis'\n", + "Entity 'http://edamontology.org/operation_3205' - Label 'Methylation calling'\n", + "Entity 'http://edamontology.org/operation_3205' - Label 'Methylation calling'\n", + "Entity 'http://edamontology.org/operation_3206' - Label 'Whole genome methylation analysis'\n", + "Entity 'http://edamontology.org/operation_3206' - Label 'Whole genome methylation analysis'\n", + "Entity 'http://edamontology.org/operation_3207' - Label 'Gene methylation analysis'\n", + "Entity 'http://edamontology.org/operation_3208' - Label 'Genome visualisation'\n", + "Entity 'http://edamontology.org/operation_3208' - Label 'Genome visualisation'\n", + "Entity 'http://edamontology.org/operation_3209' - Label 'Genome comparison'\n", + "Entity 'http://edamontology.org/operation_3209' - Label 'Genome comparison'\n", + "Entity 'http://edamontology.org/operation_3211' - Label 'Genome indexing'\n", + "Entity 'http://edamontology.org/operation_3211' - Label 'Genome indexing'\n", + "Entity 'http://edamontology.org/operation_3211' - Label 'Genome indexing'\n", + "Entity 'http://edamontology.org/operation_3212' - Label 'Genome indexing (Burrows-Wheeler)'\n", + "Entity 'http://edamontology.org/operation_3212' - Label 'Genome indexing (Burrows-Wheeler)'\n", + "Entity 'http://edamontology.org/operation_3213' - Label 'Genome indexing (suffix arrays)'\n", + "Entity 'http://edamontology.org/operation_3213' - Label 'Genome indexing (suffix arrays)'\n", + "Entity 'http://edamontology.org/operation_3214' - Label 'Spectral analysis'\n", + "Entity 'http://edamontology.org/operation_3214' - Label 'Spectral analysis'\n", + "Entity 'http://edamontology.org/operation_3215' - Label 'Peak detection'\n", + "Entity 'http://edamontology.org/operation_3215' - Label 'Peak detection'\n", + "Entity 'http://edamontology.org/operation_3216' - Label 'Scaffolding'\n", + "Entity 'http://edamontology.org/operation_3216' - Label 'Scaffolding'\n", + "Entity 'http://edamontology.org/operation_3216' - Label 'Scaffolding'\n", + "Entity 'http://edamontology.org/operation_3217' - Label 'Scaffold gap completion'\n", + "Entity 'http://edamontology.org/operation_3218' - Label 'Sequencing quality control'\n", + "Entity 'http://edamontology.org/operation_3218' - Label 'Sequencing quality control'\n", + "Entity 'http://edamontology.org/operation_3219' - Label 'Read pre-processing'\n", + "Entity 'http://edamontology.org/operation_3219' - Label 'Read pre-processing'\n", + "Entity 'http://edamontology.org/operation_3221' - Label 'Species frequency estimation'\n", + "Entity 'http://edamontology.org/operation_3221' - Label 'Species frequency estimation'\n", + "Entity 'http://edamontology.org/operation_3222' - Label 'Peak calling'\n", + "Entity 'http://edamontology.org/operation_3223' - Label 'Differential gene expression profiling'\n", + "Entity 'http://edamontology.org/operation_3224' - Label 'Gene set testing'\n", + "Entity 'http://edamontology.org/operation_3224' - Label 'Gene set testing'\n", + "Entity 'http://edamontology.org/operation_3225' - Label 'Variant classification'\n", + "Entity 'http://edamontology.org/operation_3225' - Label 'Variant classification'\n", + "Entity 'http://edamontology.org/operation_3226' - Label 'Variant prioritisation'\n", + "Entity 'http://edamontology.org/operation_3227' - Label 'Variant calling'\n", + "Entity 'http://edamontology.org/operation_3227' - Label 'Variant calling'\n", + "Entity 'http://edamontology.org/operation_3228' - Label 'Structural variation detection'\n", + "Entity 'http://edamontology.org/operation_3229' - Label 'Exome assembly'\n", + "Entity 'http://edamontology.org/operation_3230' - Label 'Read depth analysis'\n", + "Entity 'http://edamontology.org/operation_3232' - Label 'Gene expression QTL analysis'\n", + "Entity 'http://edamontology.org/operation_3233' - Label 'Copy number estimation'\n", + "Entity 'http://edamontology.org/operation_3237' - Label 'Primer removal'\n", + "Entity 'http://edamontology.org/operation_3258' - Label 'Transcriptome assembly'\n", + "Entity 'http://edamontology.org/operation_3258' - Label 'Transcriptome assembly'\n", + "Entity 'http://edamontology.org/operation_3258' - Label 'Transcriptome assembly'\n", + "Entity 'http://edamontology.org/operation_3259' - Label 'Transcriptome assembly (de novo)'\n", + "Entity 'http://edamontology.org/operation_3259' - Label 'Transcriptome assembly (de novo)'\n", + "Entity 'http://edamontology.org/operation_3260' - Label 'Transcriptome assembly (mapping)'\n", + "Entity 'http://edamontology.org/operation_3260' - Label 'Transcriptome assembly (mapping)'\n", + "Entity 'http://edamontology.org/operation_3267' - Label 'Sequence coordinate conversion'\n", + "Entity 'http://edamontology.org/operation_3267' - Label 'Sequence coordinate conversion'\n", + "Entity 'http://edamontology.org/operation_3267' - Label 'Sequence coordinate conversion'\n", + "Entity 'http://edamontology.org/operation_3278' - Label 'Document similarity calculation'\n", + "Entity 'http://edamontology.org/operation_3279' - Label 'Document clustering'\n", + "Entity 'http://edamontology.org/operation_3279' - Label 'Document clustering'\n", + "Entity 'http://edamontology.org/operation_3280' - Label 'Named-entity and concept recognition'\n", + "Entity 'http://edamontology.org/operation_3282' - Label 'ID mapping'\n", + "Entity 'http://edamontology.org/operation_3282' - Label 'ID mapping'\n", + "Entity 'http://edamontology.org/operation_3283' - Label 'Anonymisation'\n", + "Entity 'http://edamontology.org/operation_3289' - Label 'ID retrieval'\n", + "Entity 'http://edamontology.org/operation_3289' - Label 'ID retrieval'\n", + "Entity 'http://edamontology.org/operation_3348' - Label 'Sequence checksum generation'\n", + "Entity 'http://edamontology.org/operation_3348' - Label 'Sequence checksum generation'\n", + "Entity 'http://edamontology.org/operation_3348' - Label 'Sequence checksum generation'\n", + "Entity 'http://edamontology.org/operation_3349' - Label 'Bibliography generation'\n", + "Entity 'http://edamontology.org/operation_3349' - Label 'Bibliography generation'\n", + "Entity 'http://edamontology.org/operation_3350' - Label 'Protein quaternary structure prediction'\n", + "Entity 'http://edamontology.org/operation_3351' - Label 'Molecular surface analysis'\n", + "Entity 'http://edamontology.org/operation_3351' - Label 'Molecular surface analysis'\n", + "Entity 'http://edamontology.org/operation_3351' - Label 'Molecular surface analysis'\n", + "Entity 'http://edamontology.org/operation_3352' - Label 'Ontology comparison'\n", + "Entity 'http://edamontology.org/operation_3353' - Label 'Ontology comparison'\n", + "Entity 'http://edamontology.org/operation_3353' - Label 'Ontology comparison'\n", + "Entity 'http://edamontology.org/operation_3357' - Label 'Format detection'\n", + "Entity 'http://edamontology.org/operation_3357' - Label 'Format detection'\n", + "Entity 'http://edamontology.org/operation_3359' - Label 'Splitting'\n", + "Entity 'http://edamontology.org/operation_3429' - Label 'Generation'\n", + "Entity 'http://edamontology.org/operation_3430' - Label 'Nucleic acid sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_3430' - Label 'Nucleic acid sequence feature detection'\n", + "Entity 'http://edamontology.org/operation_3431' - Label 'Deposition'\n", + "Entity 'http://edamontology.org/operation_3432' - Label 'Clustering'\n", + "Entity 'http://edamontology.org/operation_3433' - Label 'Assembly'\n", + "Entity 'http://edamontology.org/operation_3433' - Label 'Assembly'\n", + "Entity 'http://edamontology.org/operation_3434' - Label 'Conversion'\n", + "Entity 'http://edamontology.org/operation_3435' - Label 'Standardisation and normalisation'\n", + "Entity 'http://edamontology.org/operation_3436' - Label 'Aggregation'\n", + "Entity 'http://edamontology.org/operation_3437' - Label 'Article comparison'\n", + "Entity 'http://edamontology.org/operation_3437' - Label 'Article comparison'\n", + "Entity 'http://edamontology.org/operation_3438' - Label 'Calculation'\n", + "Entity 'http://edamontology.org/operation_3439' - Label 'Pathway or network prediction'\n", + "Entity 'http://edamontology.org/operation_3439' - Label 'Pathway or network prediction'\n", + "Entity 'http://edamontology.org/operation_3439' - Label 'Pathway or network prediction'\n", + "Entity 'http://edamontology.org/operation_3439' - Label 'Pathway or network prediction'\n", + "Entity 'http://edamontology.org/operation_3440' - Label 'Genome assembly'\n", + "Entity 'http://edamontology.org/operation_3440' - Label 'Genome assembly'\n", + "Entity 'http://edamontology.org/operation_3441' - Label 'Plotting'\n", + "Entity 'http://edamontology.org/operation_3441' - Label 'Plotting'\n", + "Entity 'http://edamontology.org/operation_3443' - Label 'Image analysis'\n", + "Entity 'http://edamontology.org/operation_3443' - Label 'Image analysis'\n", + "Entity 'http://edamontology.org/operation_3445' - Label 'Diffraction data analysis'\n", + "Entity 'http://edamontology.org/operation_3446' - Label 'Cell migration analysis'\n", + "Entity 'http://edamontology.org/operation_3446' - Label 'Cell migration analysis'\n", + "Entity 'http://edamontology.org/operation_3447' - Label 'Diffraction data reduction'\n", + "Entity 'http://edamontology.org/operation_3450' - Label 'Neurite measurement'\n", + "Entity 'http://edamontology.org/operation_3450' - Label 'Neurite measurement'\n", + "Entity 'http://edamontology.org/operation_3453' - Label 'Diffraction data integration'\n", + "Entity 'http://edamontology.org/operation_3454' - Label 'Phasing'\n", + "Entity 'http://edamontology.org/operation_3455' - Label 'Molecular replacement'\n", + "Entity 'http://edamontology.org/operation_3456' - Label 'Rigid body refinement'\n", + "Entity 'http://edamontology.org/operation_3457' - Label 'Single particle analysis'\n", + "Entity 'http://edamontology.org/operation_3457' - Label 'Single particle analysis'\n", + "Entity 'http://edamontology.org/operation_3457' - Label 'Single particle analysis'\n", + "Entity 'http://edamontology.org/operation_3458' - Label 'Single particle alignment and classification'\n", + "Entity 'http://edamontology.org/operation_3458' - Label 'Single particle alignment and classification'\n", + "Entity 'http://edamontology.org/operation_3459' - Label 'Functional clustering'\n", + "Entity 'http://edamontology.org/operation_3459' - Label 'Functional clustering'\n", + "Entity 'http://edamontology.org/operation_3460' - Label 'Taxonomic classification'\n", + "Entity 'http://edamontology.org/operation_3461' - Label 'Virulence prediction'\n", + "Entity 'http://edamontology.org/operation_3461' - Label 'Virulence prediction'\n", + "Entity 'http://edamontology.org/operation_3461' - Label 'Virulence prediction'\n", + "Entity 'http://edamontology.org/operation_3463' - Label 'Expression correlation analysis'\n", + "Entity 'http://edamontology.org/operation_3463' - Label 'Expression correlation analysis'\n", + "Entity 'http://edamontology.org/operation_3465' - Label 'Correlation'\n", + "Entity 'http://edamontology.org/operation_3465' - Label 'Correlation'\n", + "Entity 'http://edamontology.org/operation_3469' - Label 'RNA structure covariance model generation'\n", + "Entity 'http://edamontology.org/operation_3469' - Label 'RNA structure covariance model generation'\n", + "Entity 'http://edamontology.org/operation_3469' - Label 'RNA structure covariance model generation'\n", + "Entity 'http://edamontology.org/operation_3470' - Label 'RNA secondary structure prediction (shape-based)'\n", + "Entity 'http://edamontology.org/operation_3470' - Label 'RNA secondary structure prediction (shape-based)'\n", + "Entity 'http://edamontology.org/operation_3471' - Label 'Nucleic acid folding prediction (alignment-based)'\n", + "Entity 'http://edamontology.org/operation_3471' - Label 'Nucleic acid folding prediction (alignment-based)'\n", + "Entity 'http://edamontology.org/operation_3472' - Label 'k-mer counting'\n", + "Entity 'http://edamontology.org/operation_3478' - Label 'Phylogenetic reconstruction'\n", + "Entity 'http://edamontology.org/operation_3478' - Label 'Phylogenetic reconstruction'\n", + "Entity 'http://edamontology.org/operation_3480' - Label 'Probabilistic data generation'\n", + "Entity 'http://edamontology.org/operation_3481' - Label 'Probabilistic sequence generation'\n", + "Entity 'http://edamontology.org/operation_3481' - Label 'Probabilistic sequence generation'\n", + "Entity 'http://edamontology.org/operation_3482' - Label 'Antimicrobial resistance prediction'\n", + "Entity 'http://edamontology.org/operation_3482' - Label 'Antimicrobial resistance prediction'\n", + "Entity 'http://edamontology.org/operation_3482' - Label 'Antimicrobial resistance prediction'\n", + "Entity 'http://edamontology.org/operation_3501' - Label 'Enrichment analysis'\n", + "Entity 'http://edamontology.org/operation_3501' - Label 'Enrichment analysis'\n", + "Entity 'http://edamontology.org/operation_3502' - Label 'Chemical similarity enrichment'\n", + "Entity 'http://edamontology.org/operation_3502' - Label 'Chemical similarity enrichment'\n", + "Entity 'http://edamontology.org/operation_3503' - Label 'Incident curve plotting'\n", + "Entity 'http://edamontology.org/operation_3504' - Label 'Variant pattern analysis'\n", + "Entity 'http://edamontology.org/operation_3545' - Label 'Mathematical modelling'\n", + "Entity 'http://edamontology.org/operation_3545' - Label 'Mathematical modelling'\n", + "Entity 'http://edamontology.org/operation_3552' - Label 'Microscope image visualisation'\n", + "Entity 'http://edamontology.org/operation_3552' - Label 'Microscope image visualisation'\n", + "Entity 'http://edamontology.org/operation_3553' - Label 'Image annotation'\n", + "Entity 'http://edamontology.org/operation_3557' - Label 'Imputation'\n", + "Entity 'http://edamontology.org/operation_3559' - Label 'Ontology visualisation'\n", + "Entity 'http://edamontology.org/operation_3560' - Label 'Maximum occurrence analysis'\n", + "Entity 'http://edamontology.org/operation_3561' - Label 'Database comparison'\n", + "Entity 'http://edamontology.org/operation_3561' - Label 'Database comparison'\n", + "Entity 'http://edamontology.org/operation_3562' - Label 'Network simulation'\n", + "Entity 'http://edamontology.org/operation_3562' - Label 'Network simulation'\n", + "Entity 'http://edamontology.org/operation_3562' - Label 'Network simulation'\n", + "Entity 'http://edamontology.org/operation_3563' - Label 'RNA-seq read count analysis'\n", + "Entity 'http://edamontology.org/operation_3564' - Label 'Chemical redundancy removal'\n", + "Entity 'http://edamontology.org/operation_3565' - Label 'RNA-seq time series data analysis'\n", + "Entity 'http://edamontology.org/operation_3566' - Label 'Simulated gene expression data generation'\n", + "Entity 'http://edamontology.org/operation_3625' - Label 'Relation extraction'\n", + "Entity 'http://edamontology.org/operation_3627' - Label 'Mass spectra calibration'\n", + "Entity 'http://edamontology.org/operation_3627' - Label 'Mass spectra calibration'\n", + "Entity 'http://edamontology.org/operation_3628' - Label 'Chromatographic alignment'\n", + "Entity 'http://edamontology.org/operation_3628' - Label 'Chromatographic alignment'\n", + "Entity 'http://edamontology.org/operation_3629' - Label 'Deisotoping'\n", + "Entity 'http://edamontology.org/operation_3629' - Label 'Deisotoping'\n", + "Entity 'http://edamontology.org/operation_3630' - Label 'Protein quantification'\n", + "Entity 'http://edamontology.org/operation_3630' - Label 'Protein quantification'\n", + "Entity 'http://edamontology.org/operation_3630' - Label 'Protein quantification'\n", + "Entity 'http://edamontology.org/operation_3631' - Label 'Peptide identification'\n", + "Entity 'http://edamontology.org/operation_3631' - Label 'Peptide identification'\n", + "Entity 'http://edamontology.org/operation_3632' - Label 'Isotopic distributions calculation'\n", + "Entity 'http://edamontology.org/operation_3632' - Label 'Isotopic distributions calculation'\n", + "Entity 'http://edamontology.org/operation_3632' - Label 'Isotopic distributions calculation'\n", + "Entity 'http://edamontology.org/operation_3633' - Label 'Retention time prediction'\n", + "Entity 'http://edamontology.org/operation_3634' - Label 'Label-free quantification'\n", + "Entity 'http://edamontology.org/operation_3635' - Label 'Labeled quantification'\n", + "Entity 'http://edamontology.org/operation_3636' - Label 'MRM/SRM'\n", + "Entity 'http://edamontology.org/operation_3637' - Label 'Spectral counting'\n", + "Entity 'http://edamontology.org/operation_3638' - Label 'SILAC'\n", + "Entity 'http://edamontology.org/operation_3639' - Label 'iTRAQ'\n", + "Entity 'http://edamontology.org/operation_3640' - Label '18O labeling'\n", + "Entity 'http://edamontology.org/operation_3641' - Label 'TMT-tag'\n", + "Entity 'http://edamontology.org/operation_3642' - Label 'Stable isotope dimethyl labelling'\n", + "Entity 'http://edamontology.org/operation_3643' - Label 'Tag-based peptide identification'\n", + "Entity 'http://edamontology.org/operation_3644' - Label 'de Novo sequencing'\n", + "Entity 'http://edamontology.org/operation_3644' - Label 'de Novo sequencing'\n", + "Entity 'http://edamontology.org/operation_3645' - Label 'PTM identification'\n", + "Entity 'http://edamontology.org/operation_3646' - Label 'Peptide database search'\n", + "Entity 'http://edamontology.org/operation_3646' - Label 'Peptide database search'\n", + "Entity 'http://edamontology.org/operation_3647' - Label 'Blind peptide database search'\n", + "Entity 'http://edamontology.org/operation_3648' - Label 'Validation of peptide-spectrum matches'\n", + "Entity 'http://edamontology.org/operation_3648' - Label 'Validation of peptide-spectrum matches'\n", + "Entity 'http://edamontology.org/operation_3649' - Label 'Target-Decoy'\n", + "Entity 'http://edamontology.org/operation_3649' - Label 'Target-Decoy'\n", + "Entity 'http://edamontology.org/operation_3658' - Label 'Statistical inference'\n", + "Entity 'http://edamontology.org/operation_3659' - Label 'Regression analysis'\n", + "Entity 'http://edamontology.org/operation_3660' - Label 'Metabolic network modelling'\n", + "Entity 'http://edamontology.org/operation_3660' - Label 'Metabolic network modelling'\n", + "Entity 'http://edamontology.org/operation_3660' - Label 'Metabolic network modelling'\n", + "Entity 'http://edamontology.org/operation_3661' - Label 'SNP annotation'\n", + "Entity 'http://edamontology.org/operation_3662' - Label 'Ab-initio gene prediction'\n", + "Entity 'http://edamontology.org/operation_3663' - Label 'Homology-based gene prediction'\n", + "Entity 'http://edamontology.org/operation_3664' - Label 'Statistical modelling'\n", + "Entity 'http://edamontology.org/operation_3666' - Label 'Molecular surface comparison'\n", + "Entity 'http://edamontology.org/operation_3666' - Label 'Molecular surface comparison'\n", + "Entity 'http://edamontology.org/operation_3672' - Label 'Gene functional annotation'\n", + "Entity 'http://edamontology.org/operation_3675' - Label 'Variant filtering'\n", + "Entity 'http://edamontology.org/operation_3677' - Label 'Differential binding analysis'\n", + "Entity 'http://edamontology.org/operation_3680' - Label 'RNA-Seq analysis'\n", + "Entity 'http://edamontology.org/operation_3680' - Label 'RNA-Seq analysis'\n", + "Entity 'http://edamontology.org/operation_3694' - Label 'Mass spectrum visualisation'\n", + "Entity 'http://edamontology.org/operation_3695' - Label 'Filtering'\n", + "Entity 'http://edamontology.org/operation_3703' - Label 'Reference identification'\n", + "Entity 'http://edamontology.org/operation_3704' - Label 'Ion counting'\n", + "Entity 'http://edamontology.org/operation_3705' - Label 'Isotope-coded protein label'\n", + "Entity 'http://edamontology.org/operation_3715' - Label 'Metabolic labeling'\n", + "Entity 'http://edamontology.org/operation_3730' - Label 'Cross-assembly'\n", + "Entity 'http://edamontology.org/operation_3731' - Label 'Sample comparison'\n", + "Entity 'http://edamontology.org/operation_3741' - Label 'Differential protein expression profiling'\n", + "Entity 'http://edamontology.org/operation_3741' - Label 'Differential protein expression profiling'\n", + "Entity 'http://edamontology.org/operation_3742' - Label 'Differential gene expression analysis'\n", + "Entity 'http://edamontology.org/operation_3742' - Label 'Differential gene expression analysis'\n", + "Entity 'http://edamontology.org/operation_3744' - Label 'Multiple sample visualisation'\n", + "Entity 'http://edamontology.org/operation_3745' - Label 'Ancestral reconstruction'\n", + "Entity 'http://edamontology.org/operation_3755' - Label 'PTM localisation'\n", + "Entity 'http://edamontology.org/operation_3760' - Label 'Service management'\n", + "Entity 'http://edamontology.org/operation_3761' - Label 'Service discovery'\n", + "Entity 'http://edamontology.org/operation_3762' - Label 'Service composition'\n", + "Entity 'http://edamontology.org/operation_3763' - Label 'Service invocation'\n", + "Entity 'http://edamontology.org/operation_3766' - Label 'Weighted correlation network analysis'\n", + "Entity 'http://edamontology.org/operation_3766' - Label 'Weighted correlation network analysis'\n", + "Entity 'http://edamontology.org/operation_3767' - Label 'Protein identification'\n", + "Entity 'http://edamontology.org/operation_3767' - Label 'Protein identification'\n", + "Entity 'http://edamontology.org/operation_3767' - Label 'Protein identification'\n", + "Entity 'http://edamontology.org/operation_3778' - Label 'Text annotation'\n", + "Entity 'http://edamontology.org/operation_3778' - Label 'Text annotation'\n", + "Entity 'http://edamontology.org/operation_3778' - Label 'Text annotation'\n", + "Entity 'http://edamontology.org/operation_3778' - Label 'Text annotation'\n", + "Entity 'http://edamontology.org/operation_3791' - Label 'Collapsing methods'\n", + "Entity 'http://edamontology.org/operation_3792' - Label 'miRNA expression analysis'\n", + "Entity 'http://edamontology.org/operation_3793' - Label 'Read summarisation'\n", + "Entity 'http://edamontology.org/operation_3795' - Label 'In vitro selection'\n", + "Entity 'http://edamontology.org/operation_3797' - Label 'Rarefaction'\n", + "Entity 'http://edamontology.org/operation_3798' - Label 'Read binning'\n", + "Entity 'http://edamontology.org/operation_3799' - Label 'Quantification'\n", + "Entity 'http://edamontology.org/operation_3800' - Label 'RNA-Seq quantification'\n", + "Entity 'http://edamontology.org/operation_3801' - Label 'Spectral library search'\n", + "Entity 'http://edamontology.org/operation_3801' - Label 'Spectral library search'\n", + "Entity 'http://edamontology.org/operation_3802' - Label 'Sorting'\n", + "Entity 'http://edamontology.org/operation_3803' - Label 'Natural product identification'\n", + "Entity 'http://edamontology.org/operation_3809' - Label 'DMR identification'\n", + "Entity 'http://edamontology.org/operation_3840' - Label 'Multilocus sequence typing'\n", + "Entity 'http://edamontology.org/operation_3860' - Label 'Spectrum calculation'\n", + "Entity 'http://edamontology.org/operation_3860' - Label 'Spectrum calculation'\n", + "Entity 'http://edamontology.org/operation_3860' - Label 'Spectrum calculation'\n", + "Entity 'http://edamontology.org/operation_3890' - Label 'Trajectory visualization'\n", + "Entity 'http://edamontology.org/operation_3890' - Label 'Trajectory visualization'\n", + "Entity 'http://edamontology.org/operation_3891' - Label 'Essential dynamics'\n", + "Entity 'http://edamontology.org/operation_3891' - Label 'Essential dynamics'\n", + "Entity 'http://edamontology.org/operation_3893' - Label 'Forcefield parameterisation'\n", + "Entity 'http://edamontology.org/operation_3893' - Label 'Forcefield parameterisation'\n", + "Entity 'http://edamontology.org/operation_3893' - Label 'Forcefield parameterisation'\n", + "Entity 'http://edamontology.org/operation_3894' - Label 'DNA profiling'\n", + "Entity 'http://edamontology.org/operation_3896' - Label 'Active site prediction'\n", + "Entity 'http://edamontology.org/operation_3897' - Label 'Ligand-binding site prediction'\n", + "Entity 'http://edamontology.org/operation_3898' - Label 'Metal-binding site prediction'\n", + "Entity 'http://edamontology.org/operation_3899' - Label 'Protein-protein docking'\n", + "Entity 'http://edamontology.org/operation_3899' - Label 'Protein-protein docking'\n", + "Entity 'http://edamontology.org/operation_3899' - Label 'Protein-protein docking'\n", + "Entity 'http://edamontology.org/operation_3900' - Label 'DNA-binding protein prediction'\n", + "Entity 'http://edamontology.org/operation_3900' - Label 'DNA-binding protein prediction'\n", + "Entity 'http://edamontology.org/operation_3900' - Label 'DNA-binding protein prediction'\n", + "Entity 'http://edamontology.org/operation_3901' - Label 'RNA-binding protein prediction'\n", + "Entity 'http://edamontology.org/operation_3901' - Label 'RNA-binding protein prediction'\n", + "Entity 'http://edamontology.org/operation_3901' - Label 'RNA-binding protein prediction'\n", + "Entity 'http://edamontology.org/operation_3902' - Label 'RNA binding site prediction'\n", + "Entity 'http://edamontology.org/operation_3903' - Label 'DNA binding site prediction'\n", + "Entity 'http://edamontology.org/operation_3904' - Label 'Protein disorder prediction'\n", + "Entity 'http://edamontology.org/operation_3904' - Label 'Protein disorder prediction'\n", + "Entity 'http://edamontology.org/operation_3904' - Label 'Protein disorder prediction'\n", + "Entity 'http://edamontology.org/operation_3907' - Label 'Information extraction'\n", + "Entity 'http://edamontology.org/operation_3908' - Label 'Information retrieval'\n", + "Entity 'http://edamontology.org/operation_3918' - Label 'Genome analysis'\n", + "Entity 'http://edamontology.org/operation_3918' - Label 'Genome analysis'\n", + "Entity 'http://edamontology.org/operation_3919' - Label 'Methylation calling'\n", + "Entity 'http://edamontology.org/operation_3920' - Label 'DNA testing'\n", + "Entity 'http://edamontology.org/operation_3920' - Label 'DNA testing'\n", + "Entity 'http://edamontology.org/operation_3921' - Label 'Sequence read processing'\n", + "Entity 'http://edamontology.org/operation_3925' - Label 'Network visualisation'\n", + "Entity 'http://edamontology.org/operation_3925' - Label 'Network visualisation'\n", + "Entity 'http://edamontology.org/operation_3925' - Label 'Network visualisation'\n", + "Entity 'http://edamontology.org/operation_3926' - Label 'Pathway visualisation'\n", + "Entity 'http://edamontology.org/operation_3926' - Label 'Pathway visualisation'\n", + "Entity 'http://edamontology.org/operation_3926' - Label 'Pathway visualisation'\n", + "Entity 'http://edamontology.org/operation_3927' - Label 'Network analysis'\n", + "Entity 'http://edamontology.org/operation_3927' - Label 'Network analysis'\n", + "Entity 'http://edamontology.org/operation_3927' - Label 'Network analysis'\n", + "Entity 'http://edamontology.org/operation_3928' - Label 'Pathway analysis'\n", + "Entity 'http://edamontology.org/operation_3928' - Label 'Pathway analysis'\n", + "Entity 'http://edamontology.org/operation_3928' - Label 'Pathway analysis'\n", + "Entity 'http://edamontology.org/operation_3929' - Label 'Metabolic pathway prediction'\n", + "Entity 'http://edamontology.org/operation_3929' - Label 'Metabolic pathway prediction'\n", + "Entity 'http://edamontology.org/operation_3933' - Label 'Demultiplexing'\n", + "Entity 'http://edamontology.org/operation_3935' - Label 'Dimensionality reduction'\n", + "Entity 'http://edamontology.org/operation_3935' - Label 'Dimensionality reduction'\n", + "Entity 'http://edamontology.org/operation_3935' - Label 'Dimensionality reduction'\n", + "Entity 'http://edamontology.org/operation_3936' - Label 'Feature selection'\n", + "Entity 'http://edamontology.org/operation_3936' - Label 'Feature selection'\n", + "Entity 'http://edamontology.org/operation_3936' - Label 'Feature selection'\n", + "Entity 'http://edamontology.org/operation_3937' - Label 'Feature extraction'\n", + "Entity 'http://edamontology.org/operation_3937' - Label 'Feature extraction'\n", + "Entity 'http://edamontology.org/operation_3937' - Label 'Feature extraction'\n", + "Entity 'http://edamontology.org/operation_3938' - Label 'Virtual screening'\n", + "Entity 'http://edamontology.org/operation_3938' - Label 'Virtual screening'\n", + "Entity 'http://edamontology.org/operation_3938' - Label 'Virtual screening'\n", + "Entity 'http://edamontology.org/operation_3938' - Label 'Virtual screening'\n", + "Entity 'http://edamontology.org/operation_3942' - Label 'Tree dating'\n", + "Entity 'http://edamontology.org/operation_3946' - Label 'Ecological modelling'\n", + "Entity 'http://edamontology.org/operation_3946' - Label 'Ecological modelling'\n", + "Entity 'http://edamontology.org/operation_3946' - Label 'Ecological modelling'\n", + "Entity 'http://edamontology.org/operation_3946' - Label 'Ecological modelling'\n", + "Entity 'http://edamontology.org/operation_3947' - Label 'Phylogenetic tree reconciliation'\n", + "Entity 'http://edamontology.org/operation_3950' - Label 'Selection detection'\n", + "Entity 'http://edamontology.org/operation_3960' - Label 'Principal component analysis'\n", + "Entity 'http://edamontology.org/operation_3961' - Label 'Copy number variation detection'\n", + "Entity 'http://edamontology.org/operation_3962' - Label 'Deletion detection'\n", + "Entity 'http://edamontology.org/operation_3963' - Label 'Duplication detection'\n", + "Entity 'http://edamontology.org/operation_3964' - Label 'Complex CNV detection'\n", + "Entity 'http://edamontology.org/operation_3965' - Label 'Amplification detection'\n", + "Entity 'http://edamontology.org/operation_3968' - Label 'Adhesin prediction'\n", + "Entity 'http://edamontology.org/operation_3968' - Label 'Adhesin prediction'\n", + "Entity 'http://edamontology.org/operation_3968' - Label 'Adhesin prediction'\n", + "Entity 'http://edamontology.org/operation_4008' - Label 'Protein design'\n", + "Entity 'http://edamontology.org/operation_4009' - Label 'Small molecule design'\n", + "Entity 'http://edamontology.org/operation_4031' - Label 'Power test'\n", + "Entity 'http://edamontology.org/operation_4031' - Label 'Power test'\n", + "Entity 'http://edamontology.org/operation_4031' - Label 'Power test'\n", + "Entity 'http://edamontology.org/operation_4031' - Label 'Power test'\n", + "Entity 'http://edamontology.org/operation_4031' - Label 'Power test'\n", + "Entity 'http://edamontology.org/operation_4031' - Label 'Power test'\n", + "Entity 'http://edamontology.org/operation_4032' - Label 'DNA modification prediction'\n", + "Entity 'http://edamontology.org/operation_4032' - Label 'DNA modification prediction'\n", + "Entity 'http://edamontology.org/operation_4032' - Label 'DNA modification prediction'\n", + "Entity 'http://edamontology.org/operation_4032' - Label 'DNA modification prediction'\n", + "Entity 'http://edamontology.org/operation_4032' - Label 'DNA modification prediction'\n", + "Entity 'http://edamontology.org/operation_4032' - Label 'DNA modification prediction'\n", + "Entity 'http://edamontology.org/operation_4033' - Label 'Disease transmission analysis'\n", + "Entity 'http://edamontology.org/operation_4033' - Label 'Disease transmission analysis'\n", + "Entity 'http://edamontology.org/operation_4033' - Label 'Disease transmission analysis'\n", + "Entity 'http://edamontology.org/operation_4033' - Label 'Disease transmission analysis'\n", + "Entity 'http://edamontology.org/operation_4033' - Label 'Disease transmission analysis'\n", + "Entity 'http://edamontology.org/operation_4033' - Label 'Disease transmission analysis'\n", + "Entity 'http://edamontology.org/operation_4034' - Label 'Multiple testing correction'\n", + "Entity 'http://edamontology.org/operation_4034' - Label 'Multiple testing correction'\n", + "Entity 'http://edamontology.org/operation_4034' - Label 'Multiple testing correction'\n", + "Entity 'http://edamontology.org/operation_4034' - Label 'Multiple testing correction'\n", + "Entity 'http://edamontology.org/topic_0077' - Label 'Nucleic acids'\n", + "Entity 'http://edamontology.org/topic_0078' - Label 'Proteins'\n", + "Entity 'http://edamontology.org/topic_0079' - Label 'Metabolites'\n", + "Entity 'http://edamontology.org/topic_0079' - Label 'Metabolites'\n", + "Entity 'http://edamontology.org/topic_0080' - Label 'Sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0081' - Label 'Structure analysis'\n", + "Entity 'http://edamontology.org/topic_0082' - Label 'Structure prediction'\n", + "Entity 'http://edamontology.org/topic_0083' - Label 'Alignment'\n", + "Entity 'http://edamontology.org/topic_0083' - Label 'Alignment'\n", + "Entity 'http://edamontology.org/topic_0083' - Label 'Alignment'\n", + "Entity 'http://edamontology.org/topic_0084' - Label 'Phylogeny'\n", + "Entity 'http://edamontology.org/topic_0084' - Label 'Phylogeny'\n", + "Entity 'http://edamontology.org/topic_0085' - Label 'Functional genomics'\n", + "Entity 'http://edamontology.org/topic_0085' - Label 'Functional genomics'\n", + "Entity 'http://edamontology.org/topic_0089' - Label 'Ontology and terminology'\n", + "Entity 'http://edamontology.org/topic_0090' - Label 'Information retrieval'\n", + "Entity 'http://edamontology.org/topic_0090' - Label 'Information retrieval'\n", + "Entity 'http://edamontology.org/topic_0090' - Label 'Information retrieval'\n", + "Entity 'http://edamontology.org/topic_0091' - Label 'Bioinformatics'\n", + "Entity 'http://edamontology.org/topic_0092' - Label 'Data visualisation'\n", + "Entity 'http://edamontology.org/topic_0094' - Label 'Nucleic acid thermodynamics'\n", + "Entity 'http://edamontology.org/topic_0094' - Label 'Nucleic acid thermodynamics'\n", + "Entity 'http://edamontology.org/topic_0097' - Label 'Nucleic acid structure analysis'\n", + "Entity 'http://edamontology.org/topic_0097' - Label 'Nucleic acid structure analysis'\n", + "Entity 'http://edamontology.org/topic_0099' - Label 'RNA'\n", + "Entity 'http://edamontology.org/topic_0100' - Label 'Nucleic acid restriction'\n", + "Entity 'http://edamontology.org/topic_0100' - Label 'Nucleic acid restriction'\n", + "Entity 'http://edamontology.org/topic_0102' - Label 'Mapping'\n", + "Entity 'http://edamontology.org/topic_0107' - Label 'Genetic codes and codon usage'\n", + "Entity 'http://edamontology.org/topic_0107' - Label 'Genetic codes and codon usage'\n", + "Entity 'http://edamontology.org/topic_0108' - Label 'Protein expression'\n", + "Entity 'http://edamontology.org/topic_0109' - Label 'Gene finding'\n", + "Entity 'http://edamontology.org/topic_0109' - Label 'Gene finding'\n", + "Entity 'http://edamontology.org/topic_0110' - Label 'Transcription'\n", + "Entity 'http://edamontology.org/topic_0110' - Label 'Transcription'\n", + "Entity 'http://edamontology.org/topic_0111' - Label 'Promoters'\n", + "Entity 'http://edamontology.org/topic_0111' - Label 'Promoters'\n", + "Entity 'http://edamontology.org/topic_0112' - Label 'Nucleic acid folding'\n", + "Entity 'http://edamontology.org/topic_0112' - Label 'Nucleic acid folding'\n", + "Entity 'http://edamontology.org/topic_0114' - Label 'Gene structure'\n", + "Entity 'http://edamontology.org/topic_0121' - Label 'Proteomics'\n", + "Entity 'http://edamontology.org/topic_0122' - Label 'Structural genomics'\n", + "Entity 'http://edamontology.org/topic_0122' - Label 'Structural genomics'\n", + "Entity 'http://edamontology.org/topic_0123' - Label 'Protein properties'\n", + "Entity 'http://edamontology.org/topic_0128' - Label 'Protein interactions'\n", + "Entity 'http://edamontology.org/topic_0128' - Label 'Protein interactions'\n", + "Entity 'http://edamontology.org/topic_0130' - Label 'Protein folding, stability and design'\n", + "Entity 'http://edamontology.org/topic_0133' - Label 'Two-dimensional gel electrophoresis'\n", + "Entity 'http://edamontology.org/topic_0133' - Label 'Two-dimensional gel electrophoresis'\n", + "Entity 'http://edamontology.org/topic_0134' - Label 'Mass spectrometry'\n", + "Entity 'http://edamontology.org/topic_0134' - Label 'Mass spectrometry'\n", + "Entity 'http://edamontology.org/topic_0135' - Label 'Protein microarrays'\n", + "Entity 'http://edamontology.org/topic_0135' - Label 'Protein microarrays'\n", + "Entity 'http://edamontology.org/topic_0137' - Label 'Protein hydropathy'\n", + "Entity 'http://edamontology.org/topic_0137' - Label 'Protein hydropathy'\n", + "Entity 'http://edamontology.org/topic_0140' - Label 'Protein targeting and localisation'\n", + "Entity 'http://edamontology.org/topic_0141' - Label 'Protein cleavage sites and proteolysis'\n", + "Entity 'http://edamontology.org/topic_0141' - Label 'Protein cleavage sites and proteolysis'\n", + "Entity 'http://edamontology.org/topic_0143' - Label 'Protein structure comparison'\n", + "Entity 'http://edamontology.org/topic_0143' - Label 'Protein structure comparison'\n", + "Entity 'http://edamontology.org/topic_0144' - Label 'Protein residue interactions'\n", + "Entity 'http://edamontology.org/topic_0144' - Label 'Protein residue interactions'\n", + "Entity 'http://edamontology.org/topic_0147' - Label 'Protein-protein interactions'\n", + "Entity 'http://edamontology.org/topic_0147' - Label 'Protein-protein interactions'\n", + "Entity 'http://edamontology.org/topic_0148' - Label 'Protein-ligand interactions'\n", + "Entity 'http://edamontology.org/topic_0148' - Label 'Protein-ligand interactions'\n", + "Entity 'http://edamontology.org/topic_0149' - Label 'Protein-nucleic acid interactions'\n", + "Entity 'http://edamontology.org/topic_0149' - Label 'Protein-nucleic acid interactions'\n", + "Entity 'http://edamontology.org/topic_0150' - Label 'Protein design'\n", + "Entity 'http://edamontology.org/topic_0150' - Label 'Protein design'\n", + "Entity 'http://edamontology.org/topic_0151' - Label 'G protein-coupled receptors (GPCR)'\n", + "Entity 'http://edamontology.org/topic_0151' - Label 'G protein-coupled receptors (GPCR)'\n", + "Entity 'http://edamontology.org/topic_0152' - Label 'Carbohydrates'\n", + "Entity 'http://edamontology.org/topic_0153' - Label 'Lipids'\n", + "Entity 'http://edamontology.org/topic_0154' - Label 'Small molecules'\n", + "Entity 'http://edamontology.org/topic_0156' - Label 'Sequence editing'\n", + "Entity 'http://edamontology.org/topic_0156' - Label 'Sequence editing'\n", + "Entity 'http://edamontology.org/topic_0156' - Label 'Sequence editing'\n", + "Entity 'http://edamontology.org/topic_0157' - Label 'Sequence composition, complexity and repeats'\n", + "Entity 'http://edamontology.org/topic_0158' - Label 'Sequence motifs'\n", + "Entity 'http://edamontology.org/topic_0158' - Label 'Sequence motifs'\n", + "Entity 'http://edamontology.org/topic_0159' - Label 'Sequence comparison'\n", + "Entity 'http://edamontology.org/topic_0159' - Label 'Sequence comparison'\n", + "Entity 'http://edamontology.org/topic_0160' - Label 'Sequence sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_0163' - Label 'Sequence database search'\n", + "Entity 'http://edamontology.org/topic_0163' - Label 'Sequence database search'\n", + "Entity 'http://edamontology.org/topic_0164' - Label 'Sequence clustering'\n", + "Entity 'http://edamontology.org/topic_0164' - Label 'Sequence clustering'\n", + "Entity 'http://edamontology.org/topic_0166' - Label 'Protein structural motifs and surfaces'\n", + "Entity 'http://edamontology.org/topic_0167' - Label 'Structural (3D) profiles'\n", + "Entity 'http://edamontology.org/topic_0167' - Label 'Structural (3D) profiles'\n", + "Entity 'http://edamontology.org/topic_0172' - Label 'Protein structure prediction'\n", + "Entity 'http://edamontology.org/topic_0172' - Label 'Protein structure prediction'\n", + "Entity 'http://edamontology.org/topic_0173' - Label 'Nucleic acid structure prediction'\n", + "Entity 'http://edamontology.org/topic_0173' - Label 'Nucleic acid structure prediction'\n", + "Entity 'http://edamontology.org/topic_0174' - Label 'Ab initio structure prediction'\n", + "Entity 'http://edamontology.org/topic_0174' - Label 'Ab initio structure prediction'\n", + "Entity 'http://edamontology.org/topic_0175' - Label 'Homology modelling'\n", + "Entity 'http://edamontology.org/topic_0175' - Label 'Homology modelling'\n", + "Entity 'http://edamontology.org/topic_0176' - Label 'Molecular dynamics'\n", + "Entity 'http://edamontology.org/topic_0176' - Label 'Molecular dynamics'\n", + "Entity 'http://edamontology.org/topic_0177' - Label 'Molecular docking'\n", + "Entity 'http://edamontology.org/topic_0177' - Label 'Molecular docking'\n", + "Entity 'http://edamontology.org/topic_0178' - Label 'Protein secondary structure prediction'\n", + "Entity 'http://edamontology.org/topic_0178' - Label 'Protein secondary structure prediction'\n", + "Entity 'http://edamontology.org/topic_0179' - Label 'Protein tertiary structure prediction'\n", + "Entity 'http://edamontology.org/topic_0179' - Label 'Protein tertiary structure prediction'\n", + "Entity 'http://edamontology.org/topic_0180' - Label 'Protein fold recognition'\n", + "Entity 'http://edamontology.org/topic_0180' - Label 'Protein fold recognition'\n", + "Entity 'http://edamontology.org/topic_0182' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0182' - Label 'Sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0183' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/topic_0183' - Label 'Structure alignment'\n", + "Entity 'http://edamontology.org/topic_0184' - Label 'Threading'\n", + "Entity 'http://edamontology.org/topic_0184' - Label 'Threading'\n", + "Entity 'http://edamontology.org/topic_0188' - Label 'Sequence profiles and HMMs'\n", + "Entity 'http://edamontology.org/topic_0188' - Label 'Sequence profiles and HMMs'\n", + "Entity 'http://edamontology.org/topic_0191' - Label 'Phylogeny reconstruction'\n", + "Entity 'http://edamontology.org/topic_0191' - Label 'Phylogeny reconstruction'\n", + "Entity 'http://edamontology.org/topic_0194' - Label 'Phylogenomics'\n", + "Entity 'http://edamontology.org/topic_0194' - Label 'Phylogenomics'\n", + "Entity 'http://edamontology.org/topic_0195' - Label 'Virtual PCR'\n", + "Entity 'http://edamontology.org/topic_0195' - Label 'Virtual PCR'\n", + "Entity 'http://edamontology.org/topic_0196' - Label 'Sequence assembly'\n", + "Entity 'http://edamontology.org/topic_0199' - Label 'Genetic variation'\n", + "Entity 'http://edamontology.org/topic_0199' - Label 'Genetic variation'\n", + "Entity 'http://edamontology.org/topic_0200' - Label 'Microarrays'\n", + "Entity 'http://edamontology.org/topic_0200' - Label 'Microarrays'\n", + "Entity 'http://edamontology.org/topic_0202' - Label 'Pharmacology'\n", + "Entity 'http://edamontology.org/topic_0203' - Label 'Gene expression'\n", + "Entity 'http://edamontology.org/topic_0204' - Label 'Gene regulation'\n", + "Entity 'http://edamontology.org/topic_0208' - Label 'Pharmacogenomics'\n", + "Entity 'http://edamontology.org/topic_0208' - Label 'Pharmacogenomics'\n", + "Entity 'http://edamontology.org/topic_0209' - Label 'Medicinal chemistry'\n", + "Entity 'http://edamontology.org/topic_0209' - Label 'Medicinal chemistry'\n", + "Entity 'http://edamontology.org/topic_0210' - Label 'Fish'\n", + "Entity 'http://edamontology.org/topic_0210' - Label 'Fish'\n", + "Entity 'http://edamontology.org/topic_0211' - Label 'Flies'\n", + "Entity 'http://edamontology.org/topic_0211' - Label 'Flies'\n", + "Entity 'http://edamontology.org/topic_0213' - Label 'Mice or rats'\n", + "Entity 'http://edamontology.org/topic_0213' - Label 'Mice or rats'\n", + "Entity 'http://edamontology.org/topic_0215' - Label 'Worms'\n", + "Entity 'http://edamontology.org/topic_0215' - Label 'Worms'\n", + "Entity 'http://edamontology.org/topic_0217' - Label 'Literature analysis'\n", + "Entity 'http://edamontology.org/topic_0217' - Label 'Literature analysis'\n", + "Entity 'http://edamontology.org/topic_0218' - Label 'Natural language processing'\n", + "Entity 'http://edamontology.org/topic_0218' - Label 'Natural language processing'\n", + "Entity 'http://edamontology.org/topic_0219' - Label 'Data submission, annotation, and curation'\n", + "Entity 'http://edamontology.org/topic_0220' - Label 'Document, record and content management'\n", + "Entity 'http://edamontology.org/topic_0220' - Label 'Document, record and content management'\n", + "Entity 'http://edamontology.org/topic_0221' - Label 'Sequence annotation'\n", + "Entity 'http://edamontology.org/topic_0221' - Label 'Sequence annotation'\n", + "Entity 'http://edamontology.org/topic_0222' - Label 'Genome annotation'\n", + "Entity 'http://edamontology.org/topic_0222' - Label 'Genome annotation'\n", + "Entity 'http://edamontology.org/topic_0222' - Label 'Genome annotation'\n", + "Entity 'http://edamontology.org/topic_0222' - Label 'Genome annotation'\n", + "Entity 'http://edamontology.org/topic_0593' - Label 'NMR'\n", + "Entity 'http://edamontology.org/topic_0593' - Label 'NMR'\n", + "Entity 'http://edamontology.org/topic_0594' - Label 'Sequence classification'\n", + "Entity 'http://edamontology.org/topic_0594' - Label 'Sequence classification'\n", + "Entity 'http://edamontology.org/topic_0595' - Label 'Protein classification'\n", + "Entity 'http://edamontology.org/topic_0595' - Label 'Protein classification'\n", + "Entity 'http://edamontology.org/topic_0598' - Label 'Sequence motif or profile'\n", + "Entity 'http://edamontology.org/topic_0598' - Label 'Sequence motif or profile'\n", + "Entity 'http://edamontology.org/topic_0601' - Label 'Protein modifications'\n", + "Entity 'http://edamontology.org/topic_0602' - Label 'Molecular interactions, pathways and networks'\n", + "Entity 'http://edamontology.org/topic_0605' - Label 'Informatics'\n", + "Entity 'http://edamontology.org/topic_0606' - Label 'Literature data resources'\n", + "Entity 'http://edamontology.org/topic_0606' - Label 'Literature data resources'\n", + "Entity 'http://edamontology.org/topic_0607' - Label 'Laboratory information management'\n", + "Entity 'http://edamontology.org/topic_0608' - Label 'Cell and tissue culture'\n", + "Entity 'http://edamontology.org/topic_0608' - Label 'Cell and tissue culture'\n", + "Entity 'http://edamontology.org/topic_0610' - Label 'Ecology'\n", + "Entity 'http://edamontology.org/topic_0610' - Label 'Ecology'\n", + "Entity 'http://edamontology.org/topic_0611' - Label 'Electron microscopy'\n", + "Entity 'http://edamontology.org/topic_0611' - Label 'Electron microscopy'\n", + "Entity 'http://edamontology.org/topic_0612' - Label 'Cell cycle'\n", + "Entity 'http://edamontology.org/topic_0612' - Label 'Cell cycle'\n", + "Entity 'http://edamontology.org/topic_0613' - Label 'Peptides and amino acids'\n", + "Entity 'http://edamontology.org/topic_0613' - Label 'Peptides and amino acids'\n", + "Entity 'http://edamontology.org/topic_0616' - Label 'Organelles'\n", + "Entity 'http://edamontology.org/topic_0616' - Label 'Organelles'\n", + "Entity 'http://edamontology.org/topic_0617' - Label 'Ribosomes'\n", + "Entity 'http://edamontology.org/topic_0617' - Label 'Ribosomes'\n", + "Entity 'http://edamontology.org/topic_0618' - Label 'Scents'\n", + "Entity 'http://edamontology.org/topic_0618' - Label 'Scents'\n", + "Entity 'http://edamontology.org/topic_0620' - Label 'Drugs and target structures'\n", + "Entity 'http://edamontology.org/topic_0620' - Label 'Drugs and target structures'\n", + "Entity 'http://edamontology.org/topic_0621' - Label 'Model organisms'\n", + "Entity 'http://edamontology.org/topic_0622' - Label 'Genomics'\n", + "Entity 'http://edamontology.org/topic_0623' - Label 'Gene and protein families'\n", + "Entity 'http://edamontology.org/topic_0623' - Label 'Gene and protein families'\n", + "Entity 'http://edamontology.org/topic_0624' - Label 'Chromosomes'\n", + "Entity 'http://edamontology.org/topic_0624' - Label 'Chromosomes'\n", + "Entity 'http://edamontology.org/topic_0625' - Label 'Genotype and phenotype'\n", + "Entity 'http://edamontology.org/topic_0629' - Label 'Gene expression and microarray'\n", + "Entity 'http://edamontology.org/topic_0629' - Label 'Gene expression and microarray'\n", + "Entity 'http://edamontology.org/topic_0632' - Label 'Probes and primers'\n", + "Entity 'http://edamontology.org/topic_0634' - Label 'Pathology'\n", + "Entity 'http://edamontology.org/topic_0635' - Label 'Specific protein resources'\n", + "Entity 'http://edamontology.org/topic_0635' - Label 'Specific protein resources'\n", + "Entity 'http://edamontology.org/topic_0637' - Label 'Taxonomy'\n", + "Entity 'http://edamontology.org/topic_0639' - Label 'Protein sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0639' - Label 'Protein sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0640' - Label 'Nucleic acid sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0640' - Label 'Nucleic acid sequence analysis'\n", + "Entity 'http://edamontology.org/topic_0641' - Label 'Repeat sequences'\n", + "Entity 'http://edamontology.org/topic_0641' - Label 'Repeat sequences'\n", + "Entity 'http://edamontology.org/topic_0642' - Label 'Low complexity sequences'\n", + "Entity 'http://edamontology.org/topic_0642' - Label 'Low complexity sequences'\n", + "Entity 'http://edamontology.org/topic_0644' - Label 'Proteome'\n", + "Entity 'http://edamontology.org/topic_0644' - Label 'Proteome'\n", + "Entity 'http://edamontology.org/topic_0654' - Label 'DNA'\n", + "Entity 'http://edamontology.org/topic_0655' - Label 'Coding RNA'\n", + "Entity 'http://edamontology.org/topic_0655' - Label 'Coding RNA'\n", + "Entity 'http://edamontology.org/topic_0659' - Label 'Functional, regulatory and non-coding RNA'\n", + "Entity 'http://edamontology.org/topic_0659' - Label 'Functional, regulatory and non-coding RNA'\n", + "Entity 'http://edamontology.org/topic_0660' - Label 'rRNA'\n", + "Entity 'http://edamontology.org/topic_0660' - Label 'rRNA'\n", + "Entity 'http://edamontology.org/topic_0663' - Label 'tRNA'\n", + "Entity 'http://edamontology.org/topic_0663' - Label 'tRNA'\n", + "Entity 'http://edamontology.org/topic_0694' - Label 'Protein secondary structure'\n", + "Entity 'http://edamontology.org/topic_0694' - Label 'Protein secondary structure'\n", + "Entity 'http://edamontology.org/topic_0697' - Label 'RNA structure'\n", + "Entity 'http://edamontology.org/topic_0697' - Label 'RNA structure'\n", + "Entity 'http://edamontology.org/topic_0698' - Label 'Protein tertiary structure'\n", + "Entity 'http://edamontology.org/topic_0698' - Label 'Protein tertiary structure'\n", + "Entity 'http://edamontology.org/topic_0722' - Label 'Nucleic acid classification'\n", + "Entity 'http://edamontology.org/topic_0722' - Label 'Nucleic acid classification'\n", + "Entity 'http://edamontology.org/topic_0724' - Label 'Protein families'\n", + "Entity 'http://edamontology.org/topic_0724' - Label 'Protein families'\n", + "Entity 'http://edamontology.org/topic_0736' - Label 'Protein folds and structural domains'\n", + "Entity 'http://edamontology.org/topic_0740' - Label 'Nucleic acid sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0740' - Label 'Nucleic acid sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0741' - Label 'Protein sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0741' - Label 'Protein sequence alignment'\n", + "Entity 'http://edamontology.org/topic_0747' - Label 'Nucleic acid sites and features'\n", + "Entity 'http://edamontology.org/topic_0747' - Label 'Nucleic acid sites and features'\n", + "Entity 'http://edamontology.org/topic_0747' - Label 'Nucleic acid sites and features'\n", + "Entity 'http://edamontology.org/topic_0748' - Label 'Protein sites and features'\n", + "Entity 'http://edamontology.org/topic_0748' - Label 'Protein sites and features'\n", + "Entity 'http://edamontology.org/topic_0748' - Label 'Protein sites and features'\n", + "Entity 'http://edamontology.org/topic_0749' - Label 'Transcription factors and regulatory sites'\n", + "Entity 'http://edamontology.org/topic_0749' - Label 'Transcription factors and regulatory sites'\n", + "Entity 'http://edamontology.org/topic_0749' - Label 'Transcription factors and regulatory sites'\n", + "Entity 'http://edamontology.org/topic_0751' - Label 'Phosphorylation sites'\n", + "Entity 'http://edamontology.org/topic_0751' - Label 'Phosphorylation sites'\n", + "Entity 'http://edamontology.org/topic_0751' - Label 'Phosphorylation sites'\n", + "Entity 'http://edamontology.org/topic_0753' - Label 'Metabolic pathways'\n", + "Entity 'http://edamontology.org/topic_0753' - Label 'Metabolic pathways'\n", + "Entity 'http://edamontology.org/topic_0754' - Label 'Signaling pathways'\n", + "Entity 'http://edamontology.org/topic_0754' - Label 'Signaling pathways'\n", + "Entity 'http://edamontology.org/topic_0767' - Label 'Protein and peptide identification'\n", + "Entity 'http://edamontology.org/topic_0767' - Label 'Protein and peptide identification'\n", + "Entity 'http://edamontology.org/topic_0769' - Label 'Workflows'\n", + "Entity 'http://edamontology.org/topic_0770' - Label 'Data types and objects'\n", + "Entity 'http://edamontology.org/topic_0770' - Label 'Data types and objects'\n", + "Entity 'http://edamontology.org/topic_0771' - Label 'Theoretical biology'\n", + "Entity 'http://edamontology.org/topic_0771' - Label 'Theoretical biology'\n", + "Entity 'http://edamontology.org/topic_0779' - Label 'Mitochondria'\n", + "Entity 'http://edamontology.org/topic_0779' - Label 'Mitochondria'\n", + "Entity 'http://edamontology.org/topic_0780' - Label 'Plant biology'\n", + "Entity 'http://edamontology.org/topic_0781' - Label 'Virology'\n", + "Entity 'http://edamontology.org/topic_0782' - Label 'Fungi'\n", + "Entity 'http://edamontology.org/topic_0782' - Label 'Fungi'\n", + "Entity 'http://edamontology.org/topic_0783' - Label 'Pathogens'\n", + "Entity 'http://edamontology.org/topic_0783' - Label 'Pathogens'\n", + "Entity 'http://edamontology.org/topic_0786' - Label 'Arabidopsis'\n", + "Entity 'http://edamontology.org/topic_0786' - Label 'Arabidopsis'\n", + "Entity 'http://edamontology.org/topic_0787' - Label 'Rice'\n", + "Entity 'http://edamontology.org/topic_0787' - Label 'Rice'\n", + "Entity 'http://edamontology.org/topic_0796' - Label 'Genetic mapping and linkage'\n", + "Entity 'http://edamontology.org/topic_0796' - Label 'Genetic mapping and linkage'\n", + "Entity 'http://edamontology.org/topic_0797' - Label 'Comparative genomics'\n", + "Entity 'http://edamontology.org/topic_0798' - Label 'Mobile genetic elements'\n", + "Entity 'http://edamontology.org/topic_0803' - Label 'Human disease'\n", + "Entity 'http://edamontology.org/topic_0803' - Label 'Human disease'\n", + "Entity 'http://edamontology.org/topic_0804' - Label 'Immunology'\n", + "Entity 'http://edamontology.org/topic_0820' - Label 'Membrane and lipoproteins'\n", + "Entity 'http://edamontology.org/topic_0821' - Label 'Enzymes'\n", + "Entity 'http://edamontology.org/topic_0922' - Label 'Primers'\n", + "Entity 'http://edamontology.org/topic_0922' - Label 'Primers'\n", + "Entity 'http://edamontology.org/topic_1302' - Label 'PolyA signal or sites'\n", + "Entity 'http://edamontology.org/topic_1302' - Label 'PolyA signal or sites'\n", + "Entity 'http://edamontology.org/topic_1304' - Label 'CpG island and isochores'\n", + "Entity 'http://edamontology.org/topic_1304' - Label 'CpG island and isochores'\n", + "Entity 'http://edamontology.org/topic_1305' - Label 'Restriction sites'\n", + "Entity 'http://edamontology.org/topic_1305' - Label 'Restriction sites'\n", + "Entity 'http://edamontology.org/topic_1307' - Label 'Splice sites'\n", + "Entity 'http://edamontology.org/topic_1307' - Label 'Splice sites'\n", + "Entity 'http://edamontology.org/topic_1307' - Label 'Splice sites'\n", + "Entity 'http://edamontology.org/topic_1308' - Label 'Matrix/scaffold attachment sites'\n", + "Entity 'http://edamontology.org/topic_1308' - Label 'Matrix/scaffold attachment sites'\n", + "Entity 'http://edamontology.org/topic_1311' - Label 'Operon'\n", + "Entity 'http://edamontology.org/topic_1311' - Label 'Operon'\n", + "Entity 'http://edamontology.org/topic_1312' - Label 'Promoters'\n", + "Entity 'http://edamontology.org/topic_1312' - Label 'Promoters'\n", + "Entity 'http://edamontology.org/topic_1317' - Label 'Structural biology'\n", + "Entity 'http://edamontology.org/topic_1456' - Label 'Protein membrane regions'\n", + "Entity 'http://edamontology.org/topic_1456' - Label 'Protein membrane regions'\n", + "Entity 'http://edamontology.org/topic_1770' - Label 'Structure comparison'\n", + "Entity 'http://edamontology.org/topic_1770' - Label 'Structure comparison'\n", + "Entity 'http://edamontology.org/topic_1775' - Label 'Function analysis'\n", + "Entity 'http://edamontology.org/topic_1811' - Label 'Prokaryotes and Archaea'\n", + "Entity 'http://edamontology.org/topic_1811' - Label 'Prokaryotes and Archaea'\n", + "Entity 'http://edamontology.org/topic_2225' - Label 'Protein databases'\n", + "Entity 'http://edamontology.org/topic_2225' - Label 'Protein databases'\n", + "Entity 'http://edamontology.org/topic_2226' - Label 'Structure determination'\n", + "Entity 'http://edamontology.org/topic_2226' - Label 'Structure determination'\n", + "Entity 'http://edamontology.org/topic_2229' - Label 'Cell biology'\n", + "Entity 'http://edamontology.org/topic_2230' - Label 'Classification'\n", + "Entity 'http://edamontology.org/topic_2230' - Label 'Classification'\n", + "Entity 'http://edamontology.org/topic_2232' - Label 'Lipoproteins'\n", + "Entity 'http://edamontology.org/topic_2232' - Label 'Lipoproteins'\n", + "Entity 'http://edamontology.org/topic_2257' - Label 'Phylogeny visualisation'\n", + "Entity 'http://edamontology.org/topic_2257' - Label 'Phylogeny visualisation'\n", + "Entity 'http://edamontology.org/topic_2258' - Label 'Cheminformatics'\n", + "Entity 'http://edamontology.org/topic_2259' - Label 'Systems biology'\n", + "Entity 'http://edamontology.org/topic_2269' - Label 'Statistics and probability'\n", + "Entity 'http://edamontology.org/topic_2271' - Label 'Structure database search'\n", + "Entity 'http://edamontology.org/topic_2271' - Label 'Structure database search'\n", + "Entity 'http://edamontology.org/topic_2275' - Label 'Molecular modelling'\n", + "Entity 'http://edamontology.org/topic_2276' - Label 'Protein function prediction'\n", + "Entity 'http://edamontology.org/topic_2276' - Label 'Protein function prediction'\n", + "Entity 'http://edamontology.org/topic_2277' - Label 'SNP'\n", + "Entity 'http://edamontology.org/topic_2277' - Label 'SNP'\n", + "Entity 'http://edamontology.org/topic_2278' - Label 'Transmembrane protein prediction'\n", + "Entity 'http://edamontology.org/topic_2278' - Label 'Transmembrane protein prediction'\n", + "Entity 'http://edamontology.org/topic_2278' - Label 'Transmembrane protein prediction'\n", + "Entity 'http://edamontology.org/topic_2280' - Label 'Nucleic acid structure comparison'\n", + "Entity 'http://edamontology.org/topic_2280' - Label 'Nucleic acid structure comparison'\n", + "Entity 'http://edamontology.org/topic_2280' - Label 'Nucleic acid structure comparison'\n", + "Entity 'http://edamontology.org/topic_2397' - Label 'Exons'\n", + "Entity 'http://edamontology.org/topic_2397' - Label 'Exons'\n", + "Entity 'http://edamontology.org/topic_2399' - Label 'Gene transcription'\n", + "Entity 'http://edamontology.org/topic_2399' - Label 'Gene transcription'\n", + "Entity 'http://edamontology.org/topic_2533' - Label 'DNA mutation'\n", + "Entity 'http://edamontology.org/topic_2533' - Label 'DNA mutation'\n", + "Entity 'http://edamontology.org/topic_2640' - Label 'Oncology'\n", + "Entity 'http://edamontology.org/topic_2661' - Label 'Toxins and targets'\n", + "Entity 'http://edamontology.org/topic_2661' - Label 'Toxins and targets'\n", + "Entity 'http://edamontology.org/topic_2754' - Label 'Introns'\n", + "Entity 'http://edamontology.org/topic_2754' - Label 'Introns'\n", + "Entity 'http://edamontology.org/topic_2807' - Label 'Tool topic'\n", + "Entity 'http://edamontology.org/topic_2807' - Label 'Tool topic'\n", + "Entity 'http://edamontology.org/topic_2809' - Label 'Study topic'\n", + "Entity 'http://edamontology.org/topic_2809' - Label 'Study topic'\n", + "Entity 'http://edamontology.org/topic_2811' - Label 'Nomenclature'\n", + "Entity 'http://edamontology.org/topic_2811' - Label 'Nomenclature'\n", + "Entity 'http://edamontology.org/topic_2813' - Label 'Disease genes and proteins'\n", + "Entity 'http://edamontology.org/topic_2813' - Label 'Disease genes and proteins'\n", + "Entity 'http://edamontology.org/topic_2814' - Label 'Protein structure analysis'\n", + "Entity 'http://edamontology.org/topic_2814' - Label 'Protein structure analysis'\n", + "Entity 'http://edamontology.org/topic_2815' - Label 'Human biology'\n", + "Entity 'http://edamontology.org/topic_2816' - Label 'Gene resources'\n", + "Entity 'http://edamontology.org/topic_2816' - Label 'Gene resources'\n", + "Entity 'http://edamontology.org/topic_2817' - Label 'Yeast'\n", + "Entity 'http://edamontology.org/topic_2817' - Label 'Yeast'\n", + "Entity 'http://edamontology.org/topic_2818' - Label 'Eukaryotes'\n", + "Entity 'http://edamontology.org/topic_2818' - Label 'Eukaryotes'\n", + "Entity 'http://edamontology.org/topic_2819' - Label 'Invertebrates'\n", + "Entity 'http://edamontology.org/topic_2819' - Label 'Invertebrates'\n", + "Entity 'http://edamontology.org/topic_2820' - Label 'Vertebrates'\n", + "Entity 'http://edamontology.org/topic_2820' - Label 'Vertebrates'\n", + "Entity 'http://edamontology.org/topic_2821' - Label 'Unicellular eukaryotes'\n", + "Entity 'http://edamontology.org/topic_2821' - Label 'Unicellular eukaryotes'\n", + "Entity 'http://edamontology.org/topic_2826' - Label 'Protein structure alignment'\n", + "Entity 'http://edamontology.org/topic_2826' - Label 'Protein structure alignment'\n", + "Entity 'http://edamontology.org/topic_2828' - Label 'X-ray diffraction'\n", + "Entity 'http://edamontology.org/topic_2828' - Label 'X-ray diffraction'\n", + "Entity 'http://edamontology.org/topic_2829' - Label 'Ontologies, nomenclature and classification'\n", + "Entity 'http://edamontology.org/topic_2829' - Label 'Ontologies, nomenclature and classification'\n", + "Entity 'http://edamontology.org/topic_2830' - Label 'Immunoproteins and antigens'\n", + "Entity 'http://edamontology.org/topic_2830' - Label 'Immunoproteins and antigens'\n", + "Entity 'http://edamontology.org/topic_2839' - Label 'Molecules'\n", + "Entity 'http://edamontology.org/topic_2839' - Label 'Molecules'\n", + "Entity 'http://edamontology.org/topic_2840' - Label 'Toxicology'\n", + "Entity 'http://edamontology.org/topic_2840' - Label 'Toxicology'\n", + "Entity 'http://edamontology.org/topic_2842' - Label 'High-throughput sequencing'\n", + "Entity 'http://edamontology.org/topic_2842' - Label 'High-throughput sequencing'\n", + "Entity 'http://edamontology.org/topic_2846' - Label 'Gene regulatory networks'\n", + "Entity 'http://edamontology.org/topic_2846' - Label 'Gene regulatory networks'\n", + "Entity 'http://edamontology.org/topic_2847' - Label 'Disease (specific)'\n", + "Entity 'http://edamontology.org/topic_2847' - Label 'Disease (specific)'\n", + "Entity 'http://edamontology.org/topic_2867' - Label 'VNTR'\n", + "Entity 'http://edamontology.org/topic_2867' - Label 'VNTR'\n", + "Entity 'http://edamontology.org/topic_2868' - Label 'Microsatellites'\n", + "Entity 'http://edamontology.org/topic_2868' - Label 'Microsatellites'\n", + "Entity 'http://edamontology.org/topic_2869' - Label 'RFLP'\n", + "Entity 'http://edamontology.org/topic_2869' - Label 'RFLP'\n", + "Entity 'http://edamontology.org/topic_2885' - Label 'DNA polymorphism'\n", + "Entity 'http://edamontology.org/topic_2885' - Label 'DNA polymorphism'\n", + "Entity 'http://edamontology.org/topic_2953' - Label 'Nucleic acid design'\n", + "Entity 'http://edamontology.org/topic_2953' - Label 'Nucleic acid design'\n", + "Entity 'http://edamontology.org/topic_3032' - Label 'Primer or probe design'\n", + "Entity 'http://edamontology.org/topic_3032' - Label 'Primer or probe design'\n", + "Entity 'http://edamontology.org/topic_3038' - Label 'Structure databases'\n", + "Entity 'http://edamontology.org/topic_3038' - Label 'Structure databases'\n", + "Entity 'http://edamontology.org/topic_3039' - Label 'Nucleic acid structure'\n", + "Entity 'http://edamontology.org/topic_3039' - Label 'Nucleic acid structure'\n", + "Entity 'http://edamontology.org/topic_3041' - Label 'Sequence databases'\n", + "Entity 'http://edamontology.org/topic_3041' - Label 'Sequence databases'\n", + "Entity 'http://edamontology.org/topic_3042' - Label 'Nucleic acid sequences'\n", + "Entity 'http://edamontology.org/topic_3042' - Label 'Nucleic acid sequences'\n", + "Entity 'http://edamontology.org/topic_3043' - Label 'Protein sequences'\n", + "Entity 'http://edamontology.org/topic_3043' - Label 'Protein sequences'\n", + "Entity 'http://edamontology.org/topic_3044' - Label 'Protein interaction networks'\n", + "Entity 'http://edamontology.org/topic_3044' - Label 'Protein interaction networks'\n", + "Entity 'http://edamontology.org/topic_3047' - Label 'Molecular biology'\n", + "Entity 'http://edamontology.org/topic_3048' - Label 'Mammals'\n", + "Entity 'http://edamontology.org/topic_3048' - Label 'Mammals'\n", + "Entity 'http://edamontology.org/topic_3050' - Label 'Biodiversity'\n", + "Entity 'http://edamontology.org/topic_3052' - Label 'Sequence clusters and classification'\n", + "Entity 'http://edamontology.org/topic_3052' - Label 'Sequence clusters and classification'\n", + "Entity 'http://edamontology.org/topic_3053' - Label 'Genetics'\n", + "Entity 'http://edamontology.org/topic_3055' - Label 'Quantitative genetics'\n", + "Entity 'http://edamontology.org/topic_3056' - Label 'Population genetics'\n", + "Entity 'http://edamontology.org/topic_3060' - Label 'Regulatory RNA'\n", + "Entity 'http://edamontology.org/topic_3060' - Label 'Regulatory RNA'\n", + "Entity 'http://edamontology.org/topic_3061' - Label 'Documentation and help'\n", + "Entity 'http://edamontology.org/topic_3061' - Label 'Documentation and help'\n", + "Entity 'http://edamontology.org/topic_3062' - Label 'Genetic organisation'\n", + "Entity 'http://edamontology.org/topic_3062' - Label 'Genetic organisation'\n", + "Entity 'http://edamontology.org/topic_3063' - Label 'Medical informatics'\n", + "Entity 'http://edamontology.org/topic_3064' - Label 'Developmental biology'\n", + "Entity 'http://edamontology.org/topic_3065' - Label 'Embryology'\n", + "Entity 'http://edamontology.org/topic_3067' - Label 'Anatomy'\n", + "Entity 'http://edamontology.org/topic_3068' - Label 'Literature and language'\n", + "Entity 'http://edamontology.org/topic_3070' - Label 'Biology'\n", + "Entity 'http://edamontology.org/topic_3071' - Label 'Data management'\n", + "Entity 'http://edamontology.org/topic_3072' - Label 'Sequence feature detection'\n", + "Entity 'http://edamontology.org/topic_3072' - Label 'Sequence feature detection'\n", + "Entity 'http://edamontology.org/topic_3073' - Label 'Nucleic acid feature detection'\n", + "Entity 'http://edamontology.org/topic_3073' - Label 'Nucleic acid feature detection'\n", + "Entity 'http://edamontology.org/topic_3074' - Label 'Protein feature detection'\n", + "Entity 'http://edamontology.org/topic_3074' - Label 'Protein feature detection'\n", + "Entity 'http://edamontology.org/topic_3075' - Label 'Biological system modelling'\n", + "Entity 'http://edamontology.org/topic_3075' - Label 'Biological system modelling'\n", + "Entity 'http://edamontology.org/topic_3077' - Label 'Data acquisition'\n", + "Entity 'http://edamontology.org/topic_3078' - Label 'Genes and proteins resources'\n", + "Entity 'http://edamontology.org/topic_3078' - Label 'Genes and proteins resources'\n", + "Entity 'http://edamontology.org/topic_3118' - Label 'Protein topological domains'\n", + "Entity 'http://edamontology.org/topic_3118' - Label 'Protein topological domains'\n", + "Entity 'http://edamontology.org/topic_3120' - Label 'Protein variants'\n", + "Entity 'http://edamontology.org/topic_3123' - Label 'Expression signals'\n", + "Entity 'http://edamontology.org/topic_3123' - Label 'Expression signals'\n", + "Entity 'http://edamontology.org/topic_3125' - Label 'DNA binding sites'\n", + "Entity 'http://edamontology.org/topic_3125' - Label 'DNA binding sites'\n", + "Entity 'http://edamontology.org/topic_3126' - Label 'Nucleic acid repeats'\n", + "Entity 'http://edamontology.org/topic_3126' - Label 'Nucleic acid repeats'\n", + "Entity 'http://edamontology.org/topic_3127' - Label 'DNA replication and recombination'\n", + "Entity 'http://edamontology.org/topic_3135' - Label 'Signal or transit peptide'\n", + "Entity 'http://edamontology.org/topic_3135' - Label 'Signal or transit peptide'\n", + "Entity 'http://edamontology.org/topic_3139' - Label 'Sequence tagged sites'\n", + "Entity 'http://edamontology.org/topic_3139' - Label 'Sequence tagged sites'\n", + "Entity 'http://edamontology.org/topic_3168' - Label 'Sequencing'\n", + "Entity 'http://edamontology.org/topic_3169' - Label 'ChIP-seq'\n", + "Entity 'http://edamontology.org/topic_3169' - Label 'ChIP-seq'\n", + "Entity 'http://edamontology.org/topic_3170' - Label 'RNA-Seq'\n", + "Entity 'http://edamontology.org/topic_3171' - Label 'DNA methylation'\n", + "Entity 'http://edamontology.org/topic_3171' - Label 'DNA methylation'\n", + "Entity 'http://edamontology.org/topic_3172' - Label 'Metabolomics'\n", + "Entity 'http://edamontology.org/topic_3173' - Label 'Epigenomics'\n", + "Entity 'http://edamontology.org/topic_3173' - Label 'Epigenomics'\n", + "Entity 'http://edamontology.org/topic_3174' - Label 'Metagenomics'\n", + "Entity 'http://edamontology.org/topic_3174' - Label 'Metagenomics'\n", + "Entity 'http://edamontology.org/topic_3175' - Label 'Structural variation'\n", + "Entity 'http://edamontology.org/topic_3175' - Label 'Structural variation'\n", + "Entity 'http://edamontology.org/topic_3176' - Label 'DNA packaging'\n", + "Entity 'http://edamontology.org/topic_3177' - Label 'DNA-Seq'\n", + "Entity 'http://edamontology.org/topic_3177' - Label 'DNA-Seq'\n", + "Entity 'http://edamontology.org/topic_3178' - Label 'RNA-Seq alignment'\n", + "Entity 'http://edamontology.org/topic_3178' - Label 'RNA-Seq alignment'\n", + "Entity 'http://edamontology.org/topic_3179' - Label 'ChIP-on-chip'\n", + "Entity 'http://edamontology.org/topic_3263' - Label 'Data security'\n", + "Entity 'http://edamontology.org/topic_3277' - Label 'Sample collections'\n", + "Entity 'http://edamontology.org/topic_3292' - Label 'Biochemistry'\n", + "Entity 'http://edamontology.org/topic_3292' - Label 'Biochemistry'\n", + "Entity 'http://edamontology.org/topic_3293' - Label 'Phylogenetics'\n", + "Entity 'http://edamontology.org/topic_3293' - Label 'Phylogenetics'\n", + "Entity 'http://edamontology.org/topic_3295' - Label 'Epigenetics'\n", + "Entity 'http://edamontology.org/topic_3297' - Label 'Biotechnology'\n", + "Entity 'http://edamontology.org/topic_3298' - Label 'Phenomics'\n", + "Entity 'http://edamontology.org/topic_3298' - Label 'Phenomics'\n", + "Entity 'http://edamontology.org/topic_3298' - Label 'Phenomics'\n", + "Entity 'http://edamontology.org/topic_3299' - Label 'Evolutionary biology'\n", + "Entity 'http://edamontology.org/topic_3300' - Label 'Physiology'\n", + "Entity 'http://edamontology.org/topic_3301' - Label 'Microbiology'\n", + "Entity 'http://edamontology.org/topic_3302' - Label 'Parasitology'\n", + "Entity 'http://edamontology.org/topic_3303' - Label 'Medicine'\n", + "Entity 'http://edamontology.org/topic_3304' - Label 'Neurobiology'\n", + "Entity 'http://edamontology.org/topic_3305' - Label 'Public health and epidemiology'\n", + "Entity 'http://edamontology.org/topic_3306' - Label 'Biophysics'\n", + "Entity 'http://edamontology.org/topic_3306' - Label 'Biophysics'\n", + "Entity 'http://edamontology.org/topic_3307' - Label 'Computational biology'\n", + "Entity 'http://edamontology.org/topic_3308' - Label 'Transcriptomics'\n", + "Entity 'http://edamontology.org/topic_3308' - Label 'Transcriptomics'\n", + "Entity 'http://edamontology.org/topic_3314' - Label 'Chemistry'\n", + "Entity 'http://edamontology.org/topic_3315' - Label 'Mathematics'\n", + "Entity 'http://edamontology.org/topic_3316' - Label 'Computer science'\n", + "Entity 'http://edamontology.org/topic_3318' - Label 'Physics'\n", + "Entity 'http://edamontology.org/topic_3320' - Label 'RNA splicing'\n", + "Entity 'http://edamontology.org/topic_3320' - Label 'RNA splicing'\n", + "Entity 'http://edamontology.org/topic_3321' - Label 'Molecular genetics'\n", + "Entity 'http://edamontology.org/topic_3321' - Label 'Molecular genetics'\n", + "Entity 'http://edamontology.org/topic_3322' - Label 'Respiratory medicine'\n", + "Entity 'http://edamontology.org/topic_3323' - Label 'Metabolic disease'\n", + "Entity 'http://edamontology.org/topic_3323' - Label 'Metabolic disease'\n", + "Entity 'http://edamontology.org/topic_3324' - Label 'Infectious disease'\n", + "Entity 'http://edamontology.org/topic_3325' - Label 'Rare diseases'\n", + "Entity 'http://edamontology.org/topic_3332' - Label 'Computational chemistry'\n", + "Entity 'http://edamontology.org/topic_3332' - Label 'Computational chemistry'\n", + "Entity 'http://edamontology.org/topic_3334' - Label 'Neurology'\n", + "Entity 'http://edamontology.org/topic_3335' - Label 'Cardiology'\n", + "Entity 'http://edamontology.org/topic_3336' - Label 'Drug discovery'\n", + "Entity 'http://edamontology.org/topic_3336' - Label 'Drug discovery'\n", + "Entity 'http://edamontology.org/topic_3337' - Label 'Biobank'\n", + "Entity 'http://edamontology.org/topic_3338' - Label 'Mouse clinic'\n", + "Entity 'http://edamontology.org/topic_3339' - Label 'Microbial collection'\n", + "Entity 'http://edamontology.org/topic_3340' - Label 'Cell culture collection'\n", + "Entity 'http://edamontology.org/topic_3341' - Label 'Clone library'\n", + "Entity 'http://edamontology.org/topic_3342' - Label 'Translational medicine'\n", + "Entity 'http://edamontology.org/topic_3343' - Label 'Compound libraries and screening'\n", + "Entity 'http://edamontology.org/topic_3344' - Label 'Biomedical science'\n", + "Entity 'http://edamontology.org/topic_3345' - Label 'Data identity and mapping'\n", + "Entity 'http://edamontology.org/topic_3346' - Label 'Sequence search'\n", + "Entity 'http://edamontology.org/topic_3346' - Label 'Sequence search'\n", + "Entity 'http://edamontology.org/topic_3360' - Label 'Biomarkers'\n", + "Entity 'http://edamontology.org/topic_3361' - Label 'Laboratory techniques'\n", + "Entity 'http://edamontology.org/topic_3365' - Label 'Data architecture, analysis and design'\n", + "Entity 'http://edamontology.org/topic_3366' - Label 'Data integration and warehousing'\n", + "Entity 'http://edamontology.org/topic_3368' - Label 'Biomaterials'\n", + "Entity 'http://edamontology.org/topic_3369' - Label 'Chemical biology'\n", + "Entity 'http://edamontology.org/topic_3369' - Label 'Chemical biology'\n", + "Entity 'http://edamontology.org/topic_3370' - Label 'Analytical chemistry'\n", + "Entity 'http://edamontology.org/topic_3371' - Label 'Synthetic chemistry'\n", + "Entity 'http://edamontology.org/topic_3372' - Label 'Software engineering'\n", + "Entity 'http://edamontology.org/topic_3373' - Label 'Drug development'\n", + "Entity 'http://edamontology.org/topic_3374' - Label 'Biotherapeutics'\n", + "Entity 'http://edamontology.org/topic_3375' - Label 'Drug metabolism'\n", + "Entity 'http://edamontology.org/topic_3376' - Label 'Medicines research and development'\n", + "Entity 'http://edamontology.org/topic_3377' - Label 'Safety sciences'\n", + "Entity 'http://edamontology.org/topic_3378' - Label 'Pharmacovigilance'\n", + "Entity 'http://edamontology.org/topic_3379' - Label 'Preclinical and clinical studies'\n", + "Entity 'http://edamontology.org/topic_3379' - Label 'Preclinical and clinical studies'\n", + "Entity 'http://edamontology.org/topic_3382' - Label 'Imaging'\n", + "Entity 'http://edamontology.org/topic_3383' - Label 'Bioimaging'\n", + "Entity 'http://edamontology.org/topic_3384' - Label 'Medical imaging'\n", + "Entity 'http://edamontology.org/topic_3385' - Label 'Light microscopy'\n", + "Entity 'http://edamontology.org/topic_3386' - Label 'Laboratory animal science'\n", + "Entity 'http://edamontology.org/topic_3387' - Label 'Marine biology'\n", + "Entity 'http://edamontology.org/topic_3388' - Label 'Molecular medicine'\n", + "Entity 'http://edamontology.org/topic_3390' - Label 'Nutritional science'\n", + "Entity 'http://edamontology.org/topic_3391' - Label 'Omics'\n", + "Entity 'http://edamontology.org/topic_3393' - Label 'Quality affairs'\n", + "Entity 'http://edamontology.org/topic_3394' - Label 'Regulatory affairs'\n", + "Entity 'http://edamontology.org/topic_3395' - Label 'Regenerative medicine'\n", + "Entity 'http://edamontology.org/topic_3396' - Label 'Systems medicine'\n", + "Entity 'http://edamontology.org/topic_3397' - Label 'Veterinary medicine'\n", + "Entity 'http://edamontology.org/topic_3398' - Label 'Bioengineering'\n", + "Entity 'http://edamontology.org/topic_3399' - Label 'Geriatric medicine'\n", + "Entity 'http://edamontology.org/topic_3400' - Label 'Allergy, clinical immunology and immunotherapeutics'\n", + "Entity 'http://edamontology.org/topic_3401' - Label 'Pain medicine'\n", + "Entity 'http://edamontology.org/topic_3402' - Label 'Anaesthesiology'\n", + "Entity 'http://edamontology.org/topic_3403' - Label 'Critical care medicine'\n", + "Entity 'http://edamontology.org/topic_3404' - Label 'Dermatology'\n", + "Entity 'http://edamontology.org/topic_3405' - Label 'Dentistry'\n", + "Entity 'http://edamontology.org/topic_3406' - Label 'Ear, nose and throat medicine'\n", + "Entity 'http://edamontology.org/topic_3407' - Label 'Endocrinology and metabolism'\n", + "Entity 'http://edamontology.org/topic_3408' - Label 'Haematology'\n", + "Entity 'http://edamontology.org/topic_3409' - Label 'Gastroenterology'\n", + "Entity 'http://edamontology.org/topic_3410' - Label 'Gender medicine'\n", + "Entity 'http://edamontology.org/topic_3411' - Label 'Gynaecology and obstetrics'\n", + "Entity 'http://edamontology.org/topic_3412' - Label 'Hepatic and biliary medicine'\n", + "Entity 'http://edamontology.org/topic_3413' - Label 'Infectious tropical disease'\n", + "Entity 'http://edamontology.org/topic_3413' - Label 'Infectious tropical disease'\n", + "Entity 'http://edamontology.org/topic_3414' - Label 'Trauma medicine'\n", + "Entity 'http://edamontology.org/topic_3415' - Label 'Medical toxicology'\n", + "Entity 'http://edamontology.org/topic_3416' - Label 'Musculoskeletal medicine'\n", + "Entity 'http://edamontology.org/topic_3417' - Label 'Ophthalmology'\n", + "Entity 'http://edamontology.org/topic_3418' - Label 'Paediatrics'\n", + "Entity 'http://edamontology.org/topic_3419' - Label 'Psychiatry'\n", + "Entity 'http://edamontology.org/topic_3420' - Label 'Reproductive health'\n", + "Entity 'http://edamontology.org/topic_3421' - Label 'Surgery'\n", + "Entity 'http://edamontology.org/topic_3422' - Label 'Urology and nephrology'\n", + "Entity 'http://edamontology.org/topic_3423' - Label 'Complementary medicine'\n", + "Entity 'http://edamontology.org/topic_3444' - Label 'MRI'\n", + "Entity 'http://edamontology.org/topic_3448' - Label 'Neutron diffraction'\n", + "Entity 'http://edamontology.org/topic_3448' - Label 'Neutron diffraction'\n", + "Entity 'http://edamontology.org/topic_3452' - Label 'Tomography'\n", + "Entity 'http://edamontology.org/topic_3473' - Label 'Data mining'\n", + "Entity 'http://edamontology.org/topic_3474' - Label 'Machine learning'\n", + "Entity 'http://edamontology.org/topic_3489' - Label 'Database management'\n", + "Entity 'http://edamontology.org/topic_3500' - Label 'Zoology'\n", + "Entity 'http://edamontology.org/topic_3510' - Label 'Protein sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_3510' - Label 'Protein sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_3511' - Label 'Nucleic acid sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_3511' - Label 'Nucleic acid sites, features and motifs'\n", + "Entity 'http://edamontology.org/topic_3512' - Label 'Gene transcripts'\n", + "Entity 'http://edamontology.org/topic_3512' - Label 'Gene transcripts'\n", + "Entity 'http://edamontology.org/topic_3514' - Label 'Protein-ligand interactions'\n", + "Entity 'http://edamontology.org/topic_3514' - Label 'Protein-ligand interactions'\n", + "Entity 'http://edamontology.org/topic_3515' - Label 'Protein-drug interactions'\n", + "Entity 'http://edamontology.org/topic_3515' - Label 'Protein-drug interactions'\n", + "Entity 'http://edamontology.org/topic_3516' - Label 'Genotyping experiment'\n", + "Entity 'http://edamontology.org/topic_3517' - Label 'GWAS study'\n", + "Entity 'http://edamontology.org/topic_3518' - Label 'Microarray experiment'\n", + "Entity 'http://edamontology.org/topic_3519' - Label 'PCR experiment'\n", + "Entity 'http://edamontology.org/topic_3520' - Label 'Proteomics experiment'\n", + "Entity 'http://edamontology.org/topic_3521' - Label '2D PAGE experiment'\n", + "Entity 'http://edamontology.org/topic_3521' - Label '2D PAGE experiment'\n", + "Entity 'http://edamontology.org/topic_3522' - Label 'Northern blot experiment'\n", + "Entity 'http://edamontology.org/topic_3522' - Label 'Northern blot experiment'\n", + "Entity 'http://edamontology.org/topic_3523' - Label 'RNAi experiment'\n", + "Entity 'http://edamontology.org/topic_3524' - Label 'Simulation experiment'\n", + "Entity 'http://edamontology.org/topic_3525' - Label 'Protein-nucleic acid interactions'\n", + "Entity 'http://edamontology.org/topic_3525' - Label 'Protein-nucleic acid interactions'\n", + "Entity 'http://edamontology.org/topic_3526' - Label 'Protein-protein interactions'\n", + "Entity 'http://edamontology.org/topic_3526' - Label 'Protein-protein interactions'\n", + "Entity 'http://edamontology.org/topic_3527' - Label 'Cellular process pathways'\n", + "Entity 'http://edamontology.org/topic_3527' - Label 'Cellular process pathways'\n", + "Entity 'http://edamontology.org/topic_3528' - Label 'Disease pathways'\n", + "Entity 'http://edamontology.org/topic_3528' - Label 'Disease pathways'\n", + "Entity 'http://edamontology.org/topic_3529' - Label 'Environmental information processing pathways'\n", + "Entity 'http://edamontology.org/topic_3529' - Label 'Environmental information processing pathways'\n", + "Entity 'http://edamontology.org/topic_3530' - Label 'Genetic information processing pathways'\n", + "Entity 'http://edamontology.org/topic_3530' - Label 'Genetic information processing pathways'\n", + "Entity 'http://edamontology.org/topic_3531' - Label 'Protein super-secondary structure'\n", + "Entity 'http://edamontology.org/topic_3531' - Label 'Protein super-secondary structure'\n", + "Entity 'http://edamontology.org/topic_3533' - Label 'Protein active sites'\n", + "Entity 'http://edamontology.org/topic_3533' - Label 'Protein active sites'\n", + "Entity 'http://edamontology.org/topic_3534' - Label 'Protein binding sites'\n", + "Entity 'http://edamontology.org/topic_3535' - Label 'Protein-nucleic acid binding sites'\n", + "Entity 'http://edamontology.org/topic_3535' - Label 'Protein-nucleic acid binding sites'\n", + "Entity 'http://edamontology.org/topic_3536' - Label 'Protein cleavage sites'\n", + "Entity 'http://edamontology.org/topic_3536' - Label 'Protein cleavage sites'\n", + "Entity 'http://edamontology.org/topic_3537' - Label 'Protein chemical modifications'\n", + "Entity 'http://edamontology.org/topic_3537' - Label 'Protein chemical modifications'\n", + "Entity 'http://edamontology.org/topic_3538' - Label 'Protein disordered structure'\n", + "Entity 'http://edamontology.org/topic_3539' - Label 'Protein domains'\n", + "Entity 'http://edamontology.org/topic_3539' - Label 'Protein domains'\n", + "Entity 'http://edamontology.org/topic_3540' - Label 'Protein key folding sites'\n", + "Entity 'http://edamontology.org/topic_3540' - Label 'Protein key folding sites'\n", + "Entity 'http://edamontology.org/topic_3541' - Label 'Protein post-translational modifications'\n", + "Entity 'http://edamontology.org/topic_3541' - Label 'Protein post-translational modifications'\n", + "Entity 'http://edamontology.org/topic_3542' - Label 'Protein secondary structure'\n", + "Entity 'http://edamontology.org/topic_3543' - Label 'Protein sequence repeats'\n", + "Entity 'http://edamontology.org/topic_3543' - Label 'Protein sequence repeats'\n", + "Entity 'http://edamontology.org/topic_3544' - Label 'Protein signal peptides'\n", + "Entity 'http://edamontology.org/topic_3544' - Label 'Protein signal peptides'\n", + "Entity 'http://edamontology.org/topic_3569' - Label 'Applied mathematics'\n", + "Entity 'http://edamontology.org/topic_3570' - Label 'Pure mathematics'\n", + "Entity 'http://edamontology.org/topic_3571' - Label 'Data governance'\n", + "Entity 'http://edamontology.org/topic_3572' - Label 'Data quality management'\n", + "Entity 'http://edamontology.org/topic_3573' - Label 'Freshwater biology'\n", + "Entity 'http://edamontology.org/topic_3574' - Label 'Human genetics'\n", + "Entity 'http://edamontology.org/topic_3575' - Label 'Tropical medicine'\n", + "Entity 'http://edamontology.org/topic_3576' - Label 'Medical biotechnology'\n", + "Entity 'http://edamontology.org/topic_3577' - Label 'Personalised medicine'\n", + "Entity 'http://edamontology.org/topic_3656' - Label 'Immunoprecipitation experiment'\n", + "Entity 'http://edamontology.org/topic_3673' - Label 'Whole genome sequencing'\n", + "Entity 'http://edamontology.org/topic_3674' - Label 'Methylated DNA immunoprecipitation'\n", + "Entity 'http://edamontology.org/topic_3676' - Label 'Exome sequencing'\n", + "Entity 'http://edamontology.org/topic_3678' - Label 'Experimental design and studies'\n", + "Entity 'http://edamontology.org/topic_3679' - Label 'Animal study'\n", + "Entity 'http://edamontology.org/topic_3679' - Label 'Animal study'\n", + "Entity 'http://edamontology.org/topic_3697' - Label 'Microbial ecology'\n", + "Entity 'http://edamontology.org/topic_3697' - Label 'Microbial ecology'\n", + "Entity 'http://edamontology.org/topic_3794' - Label 'RNA immunoprecipitation'\n", + "Entity 'http://edamontology.org/topic_3796' - Label 'Population genomics'\n", + "Entity 'http://edamontology.org/topic_3810' - Label 'Agricultural science'\n", + "Entity 'http://edamontology.org/topic_3837' - Label 'Metagenomic sequencing'\n", + "Entity 'http://edamontology.org/topic_3855' - Label 'Environmental sciences'\n", + "Entity 'http://edamontology.org/topic_3892' - Label 'Biomolecular simulation'\n", + "Entity 'http://edamontology.org/topic_3895' - Label 'Synthetic biology'\n", + "Entity 'http://edamontology.org/topic_3895' - Label 'Synthetic biology'\n", + "Entity 'http://edamontology.org/topic_3912' - Label 'Genetic engineering'\n", + "Entity 'http://edamontology.org/topic_3912' - Label 'Genetic engineering'\n", + "Entity 'http://edamontology.org/topic_3922' - Label 'Proteogenomics'\n", + "Entity 'http://edamontology.org/topic_3923' - Label 'Genome resequencing'\n", + "Entity 'http://edamontology.org/topic_3930' - Label 'Immunogenetics'\n", + "Entity 'http://edamontology.org/topic_3930' - Label 'Immunogenetics'\n", + "Entity 'http://edamontology.org/topic_3931' - Label 'Chemometrics'\n", + "Entity 'http://edamontology.org/topic_3934' - Label 'Cytometry'\n", + "Entity 'http://edamontology.org/topic_3939' - Label 'Metabolic engineering'\n", + "Entity 'http://edamontology.org/topic_3940' - Label 'Chromosome conformation capture'\n", + "Entity 'http://edamontology.org/topic_3941' - Label 'Metatranscriptomics'\n", + "Entity 'http://edamontology.org/topic_3941' - Label 'Metatranscriptomics'\n", + "Entity 'http://edamontology.org/topic_3943' - Label 'Paleogenomics'\n", + "Entity 'http://edamontology.org/topic_3944' - Label 'Cladistics'\n", + "Entity 'http://edamontology.org/topic_3944' - Label 'Cladistics'\n", + "Entity 'http://edamontology.org/topic_3945' - Label 'Molecular evolution'\n", + "Entity 'http://edamontology.org/topic_3945' - Label 'Molecular evolution'\n", + "Entity 'http://edamontology.org/topic_3945' - Label 'Molecular evolution'\n", + "Entity 'http://edamontology.org/topic_3948' - Label 'Immunoinformatics'\n", + "Entity 'http://edamontology.org/topic_3948' - Label 'Immunoinformatics'\n", + "Entity 'http://edamontology.org/topic_3954' - Label 'Echography'\n", + "Entity 'http://edamontology.org/topic_3955' - Label 'Fluxomics'\n", + "Entity 'http://edamontology.org/topic_3957' - Label 'Protein interaction experiment'\n", + "Entity 'http://edamontology.org/topic_3958' - Label 'Copy number variation'\n", + "Entity 'http://edamontology.org/topic_3959' - Label 'Cytogenetics'\n", + "Entity 'http://edamontology.org/topic_3966' - Label 'Vaccinology'\n", + "Entity 'http://edamontology.org/topic_3967' - Label 'Immunomics'\n", + "Entity 'http://edamontology.org/topic_3974' - Label 'Epistasis'\n", + "Entity 'http://edamontology.org/topic_4010' - Label 'Open science'\n", + "Entity 'http://edamontology.org/topic_4011' - Label 'Data rescue'\n", + "Entity 'http://edamontology.org/topic_4012' - Label 'FAIR data'\n", + "Entity 'http://edamontology.org/topic_4012' - Label 'FAIR data'\n", + "Entity 'http://edamontology.org/topic_4013' - Label 'Antimicrobial Resistance'\n", + "Entity 'http://edamontology.org/topic_4013' - Label 'Antimicrobial Resistance'\n", + "Entity 'http://edamontology.org/topic_4014' - Label 'Electroencephalography'\n", + "Entity 'http://edamontology.org/topic_4014' - Label 'Electroencephalography'\n", + "Entity 'http://edamontology.org/topic_4016' - Label 'Electrocardiography'\n", + "Entity 'http://edamontology.org/topic_4016' - Label 'Electrocardiography'\n", + "Entity 'http://edamontology.org/topic_4017' - Label 'Cryogenic electron microscopy'\n", + "Entity 'http://edamontology.org/topic_4019' - Label 'Biosciences'\n", + "Entity 'http://edamontology.org/topic_4020' - Label 'Carbon cycle'\n", + "Entity 'http://edamontology.org/topic_4020' - Label 'Carbon cycle'\n", + "Entity 'http://edamontology.org/topic_4020' - Label 'Carbon cycle'\n", + "Entity 'http://edamontology.org/topic_4020' - Label 'Carbon cycle'\n", + "Entity 'http://edamontology.org/topic_4021' - Label 'Multiomics'\n", + "Entity 'http://edamontology.org/topic_4027' - Label 'Ribosome Profiling'\n", + "Entity 'http://edamontology.org/topic_4028' - Label 'Single-Cell Sequencing'\n", + "Entity 'http://edamontology.org/topic_4029' - Label 'Acoustics'\n", + "Entity 'http://edamontology.org/topic_4030' - Label 'Microfluidics'\n", + "Entity 'http://edamontology.org/topic_4030' - Label 'Microfluidics'\n", + "Entity 'http://edamontology.org/topic_4030' - Label 'Microfluidics'\n", + "Entity 'http://edamontology.org/topic_4037' - Label 'Genomic imprinting'\n", + "Entity 'http://edamontology.org/topic_4038' - Label 'Metabarcoding'\n", + "Entity 'http://edamontology.org/topic_4038' - Label 'Metabarcoding'\n", + "Entity 'http://edamontology.org/topic_4038' - Label 'Metabarcoding'\n", + "Entity 'http://www.geneontology.org/formats/oboInOwl#ObsoleteClass' - Label 'Obsolete concept (EDAM)'\n", + "Entity 'http://www.geneontology.org/formats/oboInOwl#ObsoleteClass' - Label 'Obsolete concept (EDAM)'\n" + ] + } + ], + "source": [ + "query=\"\"\"\n", + "PREFIX edam:\n", + "PREFIX xsd: \n", + "\n", + "SELECT DISTINCT ?entity ?property ?label ?reference WHERE {\n", + " {\n", + " VALUES ?property { rdfs:subClassOf\n", + " oboInOwl:replacedBy\n", + " oboInOwl:consider }\n", + " ?entity ?property ?reference .\n", + " ?entity rdfs:label ?label .\n", + " MINUS {?reference rdf:type owl:Restriction . }\n", + " }\n", + " UNION\n", + " {\n", + " ?entity rdfs:subClassOf ?restriction . \n", + " ?restriction rdf:type owl:Restriction ; \n", + " owl:onProperty ?property ; \n", + " owl:someValuesFrom ?reference.\n", + " ?entity rdfs:label ?label .\n", + " }\n", + "\n", + "}\n", + "ORDER BY ?entity\n", + "\"\"\"\n", + "\n", + "results = kg.query(query)\n", + "\n", + "for r in results :\n", + " print(f\"Entity '{r['entity']}' - Label '{r['label']}'\") " + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-02-13T17:40:27.339868Z", + "start_time": "2024-02-13T17:40:18.682864Z" + } + }, + "execution_count": 52 + }, + { + "cell_type": "code", + "outputs": [], + "source": [], + "metadata": { + "collapsed": false + } + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.13" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +}